@charset "UTF-8";

/**************************/
/* home hero */
/**************************/
.homeHero {
	padding: 25px 0 74px;
	@media (max-width: 750px) {
		width: 100%;
		padding: 10px 0 42px 0;
	}
}

.homeHeroInner {
	align-items: center;
	height: 400px;
	height: 230px;
	height: clamp(18.75rem, 40vw, 25rem);
	position:relative;
	@media (max-width: 750px) {
		height: auto;
	}
}

.homeHero h1 {
	width: 10em;
	color: var(--blue);
	font-size: 54px;
	font-weight: 800;
	line-height: 1.28;
	padding-top: 0px;
	/*	background: linear-gradient(180deg, var(--base1), #2F7596);*/
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	padding-top: clamp(0rem, -13.393rem + 28.57vw, 6.25rem);
	padding-top: 0;
	font-size: clamp(2.625rem, 1.018rem + 3.43vw, 3.375rem);
	@media (max-width: 750px) {
		width: auto;
		padding-top: 0;
		font-size: 42px;
	}
	@media (max-width: 420px) {
		font-size: 36px;
	}
}


.animated-gradient-text {
	font-size: 3rem;
	font-weight: bold;

	/* 1. グラデーションの設定 */
	background: linear-gradient(
	to right,
	#1D2088,
	#1B274A,
	#00A0EA
	);

	/* 2. 背景のサイズを横に大きくする */
	background-size: 300% 100%;

	/* 3. 背景をテキストで切り抜いて透明にする */
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;

	/* 4. アニメーションの実行設定 */
	animation: gradientFlow 15s ease infinite;

	display: inline-block;
}

/* ▼ 背景の位置を動かすキーフレーム ▼ */
@keyframes gradientFlow {
	0% {
		background-position: 0% 50%; /* 最初は左端 */
	}
	50% {
		background-position: 100% 50%; /* 半分で右端までスライド */
	}
	100% {
		background-position: 0% 50%; /* 最後は左端に戻る */
	}
}


.homeHero p {
	margin-top: 28px;
	color: #273a65;
	font-size: 16px;
	font-weight: 300;
	line-height: 2;
	text-shadow : 
       2px  2px 1px #FFFEE5,
      -2px  2px 1px #FFFEE5,
       2px -2px 1px #FFFEE5,
      -2px -2px 1px #FFFEE5,
       2px  0px 1px #FFFEE5,
       0px  2px 1px #FFFEE5,
      -2px  0px 1px #FFFEE5,
       0px -2px 1px #FFFEE5;        /* 文字の影 */
   	@media (max-width: 750px) {
		margin-top: 10px;
		font-size: 15px;
		line-height: 1.8;
	}
}


.scrollAnim {
	width: 96%;
	margin: 0 auto;
}
.heroGraphic {
	width: 800px;
	position: absolute;
	right: -100px;
	top: 0;
	@media (max-width: 750px) {
		position: static;
		width: 105%;
		margin-top: -100px;
		margin-right: -20px;
	}
}

.heroGraphic img {
	right: 0;
	position: absolute;
	@media (max-width: 1000px) { width: 90%; }
	@media (max-width: 950px) { width: 90%; }
	@media (max-width: 900px) { width: 80%; }
	@media (max-width: 850px) { width: 80%; }
	@media (max-width: 750px) {
	position: relative;
	width: 100%;
	}
}

.homeHeroInner {
  position: relative;
}

.homeHeroInner > .scrollAnim:first-child {
  position: relative;
  z-index: 2;
}

.heroGraphic {
  z-index: 1;
}

/**************************/
/* marquee */
/**************************/
.marqueeArea {
	font-family: "Manrope", sans-serif;
	font-weight: 100;
	font-size: 48px;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	padding: 8px 0 50px;
	overflow: hidden;
	white-space: nowrap;
	@media (max-width: 750px) {
		padding-bottom: 48px;
	}
}

.marqueeLine {
	display: flex;
	flex-wrap: nowrap;
	width: -webkit-max-content;
	width: max-content;
	min-width: -webkit-max-content;
	min-width: max-content;
	color: rgba(115, 137, 147, 0.2);
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 500;
	line-height: 1.25;
	white-space: nowrap;
	-webkit-animation: marquee 28s linear infinite;
	animation: marquee 28s linear infinite;
	will-change: transform;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	margin-bottom: 20px;
}

.marqueeLine:nth-child(2) {
	-webkit-animation-duration: 34s;
	animation-duration: 34s;
	-webkit-animation-delay: -8s;
	animation-delay: -8s;
}

.marqueeLine:nth-child(3) {
	-webkit-animation-duration: 31s;
	animation-duration: 31s;
	-webkit-animation-delay: -16s;
	animation-delay: -16s;
}

.marqueeLine span {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 26px;
	padding-right: 26px;
	white-space: nowrap;
}

.marqueeLine img,
.marqueeLine video {
	width: 76px;
	height: 46px;
	border-radius: 6px;
	object-fit: cover;
	@media (max-width: 750px) {
		width: 70px;
		height: 35px;
	}
}

@keyframes marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@-webkit-keyframes marquee {
	from {
		-webkit-transform: translate3d(0, 0, 0);
	}
	to {
		-webkit-transform: translate3d(-50%, 0, 0);
	}
}

/**************************/
/* why */
/**************************/
.why {
	padding: 40px 0 100px;
	@media (max-width: 750px) {
		padding: 0 0px 75px 0px;
	}
}

.whyCard {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	background: #22a6dd;
	padding: 52px 48px;
	color: var(--white);
	@media (max-width: 750px) {
		padding: 35px 10px;
	}
}

.whyCard::after {
	content: "WHY";
	position: absolute;
	top: 24px;
	right: -20px;
	color: rgba(255, 255, 255, 0.12);
	font-size: 116px;
	font-weight: bold;
	@media (max-width: 750px) {
		top: 0px;
		font-size: 76px;
	}
}

.whyCard h2 {
	position: relative;
	z-index: 1;
	margin-bottom: 46px;
	font-size: clamp(24px, 4vw, 48px);
	font-weight: bold;
}

.whyLabel {
	font-family: "Barlow Semi Condensed", sans-serif;
	position: relative;
	z-index: 1;
	display: block;
	margin-bottom: 8px;
	color: var(--yellow);
	font-size: 16px;
	font-weight: bold;

}

.whyContent {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 34px;
	align-items: center;
	@media (max-width: 750px) {
		display: block;
	}
}

.whyPhoto {
	flex: 1 1 0;
	border-radius: 4px;
	height: 380px;
	width: 50%;
	max-width: 450px;
	object-fit: cover;
	width: 100%;
	@media (max-width: 750px) {
		height: auto;
		max-width: 100%;
	}
}

.reasonList {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	gap: 34px;
	@media (max-width: 750px) {
		margin-top: 34px;
	}
}

.reasonItem {
	width: 95%;
	display: flex;
	gap: 10px;
	@media (max-width: 750px) {
		gap: 10px;
	}
}

.reasonNumber {
	flex: 0 0 58px;
	color: var(--yellow);
	font-family: "Barlow Semi Condensed", sans-serif;
	font-size: 48px;
	font-weight: 400;
	line-height: 1;
	@media (max-width: 750px) {
		flex-basis: 48px;
	}
}

.reasonTitle {
	font-size: 24px;
	font-weight: bold;
	@media (max-width: 750px) {
		font-size: 20px;
	}
}

.reasonText {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	line-height: 1.8;
}

/**************************/
/* service */
/**************************/
.service {
	padding-bottom: 125px;
	@media (max-width: 750px) {
		padding: 0 10px 75px 10px;
	}
}

.serviceInner {
	display: flex;
	gap: 44px;
	align-items: start;
	@media (max-width: 750px) {
		display: block;
	}
}

.serviceInner > div:first-child {
	flex: 0 0 220px;
}

.serviceList {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 18px;
	padding: 20px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.92);
}

.serviceItem {
	display: flex;
	gap: 26px;
	padding-bottom: 18px;
	border-bottom: 1px solid rgba(20, 37, 77, 0.12);
	@media (max-width: 750px) {
		gap: 18px;
	}
	@media (max-width: 520px) {
		display: block;
	}
}

.serviceItem:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.serviceItem img {
	flex: 0 0 160px;
	width: 160px;
	height: 200px;
	border-radius: 6px;
	object-fit: cover;
	@media (max-width: 750px) {
		flex-basis: 112px;
		width: 112px;
		height: 128px;
	}
	@media (max-width: 520px) {
		width: 100%;
		height: 190px;
	}
}

.serviceItem h3 {
	color: #233763;
	font-size: 24px;
	font-weight: bold;
}

.serviceItem p {
	margin-top: 10px;
	text-align: justify;
	padding-right: 10px;
	color: #3f4962;
	font-size: 14px;
	line-height: 1.9;
	@media (max-width: 750px) {
		font-size: 14px;
		padding-right: 0px;
	}
}

/**************************/
/* recruit link */
/**************************/
.recruitLink {
	padding-bottom: 116px;
	@media (max-width: 750px) {
		padding-bottom: 72px;
	}
}

.recruitPanel {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: var(--base0);
	padding: 70px 50px;
	color: var(--white);
	@media (max-width: 750px) {
		padding: 44px 28px;
	}
}

.recruitPanel::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(12, 28, 64, 0.96), rgba(12, 28, 64, 0.72));
}

.recruitPanelMovie {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recruitPanelText {
	position: relative;
	z-index: 2;
}

.recruitPanel h2 {
	margin-top: 28px;
	font-size: clamp(30px, 4.5vw, 52px);
	font-weight: bold;
}

.recruitPanel p {
	max-width: 520px;
	margin: 28px 0 48px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 16px;
	line-height: 2;
}

/**************************/
/* area */
/**************************/
.area {
	padding-bottom: 82px;
}

.area p {
	margin: 22px 0 10px;
	color: #26365b;
	font-weight: normal;
}

.officeGrid {
	display: flex;
	gap: 50px;
	margin-top: 30px;
	max-width: 740px;
	@media (max-width: 750px) {
		display: block;
		gap: 30px;
	}
}

.officeCard {
	flex: 1 1 0;
	border-top: 5px solid var(--sky);
	background: rgba(255, 255, 255, 0.88);
	padding: 28px 30px 10px 30px;
	@media (max-width: 750px) {
		margin-top: 24px;
	}
}

.officeCard small {
	color: #8fb5ce;
	font-size: 12px;
	font-weight: 800;
}

.officeCard h3 {
	margin: 8px 0 10px;
	color: var(--blue);
	font-size: 22px;
	font-weight: bold;
}

.officeCard address {
	min-height: 48px;
	border-bottom: 1px solid rgba(20, 37, 77, 0.16);
	padding-bottom: 10px;
	color: #303b5e;
	font-style: normal;
	font-weight: normal;
}

.officeTel {
	margin-top: 0px;
	font-family: "Barlow Semi Condensed", sans-serif;
	color: var(--blue);
	font-size: 24px;
	font-weight: 800;
}
.officeTel span {
	font-size: 16px;
}

@media (max-width: 750px) {
	.homeHero h1 {
		width: auto;
		padding-top: 0;
		font-size: 42px;
	}

	.homeHero p {
		font-size: 15px;
		line-height: 1.8;
	}
}

@media (max-width: 420px) {
	.homeHero h1 {
		font-size: 36px;
	}
}
