@charset "utf-8";

:root {
	--main-color: #7769ac;
	--accent-color: #2E75B6;
	--t-text-color: #000000;
}

@font-face {
	font-family: "NotoSansJP";
	src: url("../fonts/SourceHanSansJP-VF.otf.woff2") format("woff2"), url("../fonts/SourceHanSansJP-VF.otf") format("opentype");
}

@font-face {
	font-family: "icomoon";
	src: url("../fonts/icomoon.ttf?f67iz7") format("truetype"), url("../fonts/icomoon.woff?f67iz7") format("woff"), url("../fonts/icomoon.svg?f67iz7#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: "icomoon" !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
}

.icon-facebook:before {
	content: "\f082";
}
.icon-linkedin:before {
	content: "\f08c";
}
.icon-twitter:before {
	content: "\f099";
}
.icon-pinterest:before {
	content: "\f0d2";
}
.icon-youtube:before {
	content: "\f16a";
}
.icon-instagram:before {
	content: "\f16d";
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	text-decoration: none;
	color: inherit;
}
ol,
ul {
	list-style: none;
}

body {
	line-height: 1.8;
	letter-spacing: 0.05em;
	font-family: "Meiryo", sans-serif;
	width: 100%;
	overflow-x: hidden;
}

body.no-scroll {
	overflow: hidden;
}

.main-wrapper {
	padding-top: 5vw;
	padding-left: max(80px, 5vw);
}

.is-sp {
	display: none;
}
.is-pc {
	display: inherit;
}

@media screen and (max-width: 479px) {
	.is-sp {
		display: inherit;
	}
	.is-pc {
		display: none;
	}
}

#transition-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--accent-color);
	z-index: 10000;
	transition: height 0.5s ease-in-out;
}

/* 下から上に向かって画面を覆う（スライドイン） */
#transition-overlay.slide-in {
	top: auto;
	bottom: 0;
	height: 100%;
}

/* 上方向に抜けていく（スライドアウト） */
#transition-overlay.slide-out {
	top: 0;
	bottom: auto;
	height: 0px;
	transition-delay: 0.5s;
}

.index-wrapper {
	max-width: 800px;
	margin: 0 auto;
	padding: 80px 0;
}
.index-header {
	text-align: center;
	margin-bottom: 30px;
}
.index-title {
	font-size: 2rem;
}
.index-description {
	font-size: 1.2rem;
	color: #666;
}
.index-posts {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
.index-post {
	display: flex;
	gap: 20px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}
.index-post-thumbnail img {
	width: 150px;
	height: auto;
}
.index-post-content {
	flex: 1;
}
.index-post-title {
	font-size: 1.5rem;
}
.index-post-meta {
	font-size: 0.9rem;
	color: #999;
}
.index-post-excerpt {
	font-size: 1rem;
	color: #666;
}
.index-post-readmore {
	display: inline-block;
	margin-top: 10px;
	color: #0073aa;
	text-decoration: none;
}
.index-pagination {
	text-align: center;
	margin-top: 30px;
}
.index-no-posts {
	text-align: center;
	font-size: 1.2rem;
	color: #666;
}

.container {
	max-width: 1440px;
	margin: 0 auto 120px;
}

.subtitle {
	font-size: min(3vw, 42px);
	color: var(--accent-color);
	font-weight: 500;
	font-style: italic;
	letter-spacing: 0.1em;
	line-height: 1.2;
}

.section-title {
	font-size: min(2vw, 20px);
	letter-spacing: 0.1em;
	color: var(--t-text-color);
	font-weight: 400;
	margin-bottom: 40px;
}
.text-animation span {
	opacity: 0;
	transform: translateY(20px);
	display: inline-block;
	transition: opacity 0.4s ease, transform 0.4s ease-in-out;
}

.text-animation.inview span {
	opacity: 1;
	transform: translateY(0);
}

/* コンポーネント（デザイン込み要素） */
.c-button {
	display: inline-block;
	padding: 12px 32px;
	color: var(--accent-color);
	background-color: #fff;
	border: 1px solid var(--accent-color);
	border-radius: 999px;
	font-weight: bold;
	font-size: 18px;
	cursor: pointer;
	transition: 0.2s ease-in-out;
}

.c-button:hover {
	background-color: #fff;
	color: var(--accent-color);
}

.button-view-more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--accent-color);
	cursor: pointer;
	text-decoration: none;
}

.button-view-more__icon {
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.button-view-more__text {
	font-size: 20px;
	letter-spacing: 0.5px;
	transition: 0.3s ease-in-out;
}

.view-all-link {
	text-decoration: none;
}


.button-view-more__arrow {
	color: white;
	font-size: 16px;
	display: inline-block;
	position: relative;
	font-family: auto;
}

.button-view-more:hover .button-view-more__arrow {
	animation: arrowSlide 0.3s ease-in-out;
}

@keyframes arrowSlide {
	0% {
		transform: translateX(0);
		opacity: 1;
	}
	40% {
		transform: translateX(10px);
		opacity: 0;
	}
	60% {
		transform: translateX(-10px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}


@keyframes textAnimation {
	to {
		opacity: 1;
	}
}

.interview {
	padding: 60px 0;
	background-color: #f3f3f3;
	margin-bottom: 120px;
}
.other-interview {
	padding: 60px 0;
	background-color: #f3f3f3;
	margin-bottom: 0px;
}

.interview-container {
	margin: 0 auto 0 calc((100% - 1440px) / 2);
}

.interview-swiper {
	padding: 20px 0;
}

.interview-swiper .swiper-wrapper {
	transform: translateX(20px);
	opacity: 0;
	transition: 0.6s ease-in-out;
}
.interview-swiper.is-show .swiper-wrapper {
	transform: translateX(0);
	opacity: 1;
}

.swiper-slide {
	overflow: hidden;
}
.interview-card__imagewrapper {
	position: relative;
	border-radius: 10px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}
.interview-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.interview-card__content {
	padding: 20px 10px;
}

.interview-card__title {
	font-weight: bold;
	margin: 10px 0;
}

.interview-card__tag {
	display: inline-block;
	background: #D9D9D9;
	color: var(--t-text-color);
	border-radius: 20px;
	padding: 4px 16px 3px;
	font-size: 14px;
	margin-bottom: 10px;
}

.interview-card__desc {
	font-size: min(2vw, 24px);
	line-height: 1.5;
	color: var(--t-text-color);
	font-weight: 500;
}

.interview-company {
	//position: absolute;
	font-size: min(1.5vw, 20px);
	//letter-spacing: 0.2em;
	font-weight: 500;
	bottom: 16px;
	left: 24px;
	//color: #fff;
	color: var(--accent-color);
}

.works-fieldname {
	font-size: min(1.5vw, 20px);
	margin-bottom: 1em;
	font-weight: 500;
	color: var(--accent-color);
}

.interview-viewall {
	width: 100%;
	max-width: 1440px;
	text-align: right;
}

@media screen and (max-width: 763px) {
	.interview-viewallwrapper {
		padding: 0 min(5%, 40px);
	}
}

@media screen and (max-width: 479px) {
	.subtitle {
		font-size: 7vw;
	}

	.section-title {
		font-size: 4vw;
	}

	.container {
		margin: 0 auto 50px;
	}

	.interview {
		margin-bottom: 60px;
		width: 100%;
		overflow-x: hidden;
	}

	.interview-container {
		margin: 0 auto 0 min(5%, 40px);
	}

	.interview-viewall {
		padding-right: min(5%, 40px);
		padding-right: min(2%, 8px);
	}

	.interview-swiper {
		padding-right: min(5%, 40px);
		width: 100%;
		overflow: hidden;
	}

	.interview-card__desc {
		font-size: 4vw;
	}

	.interview-company {
		font-size: 4vw;
		bottom: 10px;
		left: 12px;
	}
	.works-fieldname {
		font-size: 4vw;
	}
	.button-view-more__text {
		font-size: 4vw;
	}
}