html {
	font-size: calc(10 / 1440 * 100vw);
}
:root {
	--main-color: #0C6170;
	--scale: calc(1440 / 1280);
}
body {
	font-family: "Noto Sans JP", sans-serif;
	color: #1E1E1E;
	background-color: #F2F3F5;
	position: relative;
}

@keyframes transformTop {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}
@keyframes transformBottom {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes transformLeftRight {
	0% {
		transform: translateX(0);
	}
	50% {
		transform: translateX(50%);
		opacity: 0;
	}
	51% {
		transform: translateX(-50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}
@keyframes transformLeftRight2 {
	0% {
		transform: translateX(0) translateY(-50%);
	}
	50% {
		transform: translateX(50%) translateY(-50%);
		opacity: 0;
	}
	51% {
		transform: translateX(-50%) translateY(-50%);
		opacity: 0;
	}
	100% {
		transform: translateX(0) translateY(-50%);
		opacity: 1;
	}
}
@keyframes transformRightLeft {
	0% {
		transform: translateX(0) rotate(180deg);
	}
	50% {
		transform: translateX(-50%) rotate(180deg);
		opacity: 0;
	}
	51% {
		transform: translateX(50%) rotate(180deg);
		opacity: 0;
	}
	100% {
		transform: translateX(0) rotate(180deg);
		opacity: 1;
	}
}
@keyframes transformpagetop {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-50%);
		opacity: 0;
	}
	51% {
		transform: translateY(50%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@-webkit-keyframes scrollBorder {
	0% {
		height: 0;
	}
	100% {
		height: 5.4rem;
	}
}


.sp {
	display: none !important;
}
.inner {
	max-width: calc(110rem * var(--scale));
	margin: auto;
}
@media (max-width: 767px) {
	html {
		font-size: calc(10 / 393 * 100vw);
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
	.inner {
		padding: 0 2.4rem;
	}
}





.title_flex {
	display: flex;
	align-items: baseline;
	gap: 1.5rem;
}
.title_en {
	font-family: ivymode, sans-serif;
	font-weight: 300;
	line-height: 1;
}
.title_box .title_en {
	font-size: 7.2rem;
}
.title_flex .title_en {
	font-size: 5.8rem;
}
.title_en span {
	display: inline-block;
}
.title_ja {
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	line-height: 1;
	display: flex;
	gap: 1.5rem;
}
.title_box .title_ja {
	align-items: center;
	margin-bottom: 1.8rem;
}
.title_flex .title_ja {
	align-items: baseline;
}
.title_box .title_ja:before {
	content: "";
	display: inline-block;
	width: 3.8rem;
	height: .1rem;
	background-color: #1E1E1E;
}
.title_flex .title_ja:before {
	content: "/";
	font-family: ivymode, sans-serif;
	font-weight: 300;
	font-size: 2.4rem;
}
@media (max-width: 767px) {
	.title_box .title_en {
		font-size: 4.8rem;
	}
	.title_flex .title_en {
		font-size: 3.6rem;
	}
	.title_ja {
		font-size: 1.2rem;
		gap: 1rem;
	}
	.title_box .title_ja {
		margin-bottom: 1.2rem;
	}
	.title_flex .title_ja {
		align-items: flex-end;
	}
	.title_box .title_ja:before {
		width: 3rem;
	}
	
	.title_flex .title_ja:before {
    	content: "/";
    	font-size: 2rem;
	    transform: translate(-2px, -1px);
	}
}


/* ボタン */
.link_btn {
	border-bottom: .2rem solid #1E1E1E;
	padding-bottom: 1.5rem;
	display: inline-flex;
	align-items: center;
	gap: 4.5rem;
}
.link_btn:after {
	content: "";
	display: inline-block;
	width: 1.2rem;
	height: .7rem;
	background-image: url("../img/arrow-black.svg");
	background-size: contain;
	background-repeat: no-repeat;
	align-self: center;
}
.link_btn:hover:after {
	animation-name: transformLeftRight;
	animation-fill-mode: forwards;
	animation-duration: .7s;
	transition-timing-function: ease-out;
}
.link_btn.external:after {
	width: 1.3rem;
	height: 1.42rem;
	background-image: url("../img/blank-icon.svg");
	transition: .3s;
}
.link_btn.external:hover:after {
	transform: scale(.9);
	animation: none;
}
.link_btn_text {
	font-size: 1.4rem;
	color: #1E1E1E;
	line-height: 1;
}


.action_btn {
	position: relative;
	padding-bottom: 1.5rem;
	border-bottom: .2rem solid #1E1E1E;
	width: 18rem;
	text-align: left;
	transition: .3s;
}
.action_btn.hide {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
.action_btn:before {
	content: "";
	position: absolute;
	top: 1.6rem;
	right: 0;
	width: 1.3rem;
	height: 1.3rem;
	background-image: url(../img/plus.svg);
	background-size: contain;
	background-repeat: no-repeat;
}
.action_btn_en {
	font-family: ivymode, sans-serif;
	font-weight: 300;
	font-size: 2.2rem;
	line-height: 1;
	letter-spacing: 0.02em;
}
.action_btn_ja {
	font-size: 1.25rem;
	margin-top: .8rem;
}

/* テキストアニメーション */
.link_text_animation_box {
	overflow: hidden;
	position: relative;
} 
.link_text_animation_box span {
	display: inline-block;
	line-height: 1.1;
	padding: 0.1rem 0;
}
.link_text_animation.active .link_text_animation_box span:nth-of-type(1) {
	animation-name: transformTop;
	animation-fill-mode: forwards;
	animation-duration: .3s;
	transition-timing-function: ease-out;
}
.link_text_animation .link_text_animation_box span:nth-of-type(2) {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(101%);
}
.link_text_animation.active .link_text_animation_box span:nth-of-type(2) {
	animation-name: transformBottom;
	animation-fill-mode: forwards;
	animation-duration: .3s;
	transition-timing-function: ease-out;
}


/* recruit */
.recruit {
	background-image: url(../img/recruit-bg.jpg);
	background-size: cover;
	height: 59.1rem;
	padding-top: 10rem;
	box-sizing: border-box;
	overflow: hidden;
}
.recruit_box {
	width: 50.2rem;
	margin: auto;
}
.recruit_box_text_en {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	color: #fff;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
	margin-bottom: 3rem;
}
.recruit_box_text_img1 {
	width: 27.8rem;
	margin-left: 7.3rem;
}
.recruit_box_flex {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 2.5rem;
}
.recruit_box_flex_text {
	font-family: source-han-serif-japanese, serif;
	font-size: 1.8rem;
	color: #fff;
	line-height: 1.5;
	letter-spacing: 0.04em;
}
.recruit_box_flex_text span {
	display: block;
}
.recruit_box_text_img2 {
	width: 19.3rem;
}
.recruit_box_text_img3 {
	width: 39.6rem;
}
.recruit_link {
	margin-top: 6rem;
	text-align: center;
}
.recruit .link_btn {
	border-color: #fff;
}
.recruit .link_btn_text {
	color: #fff;
}
.recruit .link_btn:after {
	filter: brightness(10);
}
@media (max-width: 767px) {
	.recruit {
		padding-top: 13.3rem;
		background-image: url(../img/recruit-bg-sp.jpg);
		height: 58rem;
	}
	.recruit_box_text_en {
		margin-bottom: 2rem;
	}
	.recruit_box {
		width: 33.9rem;
	}
	.recruit_box_text_img1 {
		width: 21.7rem;
		margin-left: 5.3rem;
	}
	.recruit_box_flex {
		gap: 1.5rem;
	}
	.recruit_box_flex_text {
		font-size: 1.4rem;
	}
	.recruit_box_text_img2 {
		width: 14.5rem;
	}
	.recruit_box_text_img3 {
		width: 30.7rem;
	}
	.recruit_link {
		margin-top: 5rem;
	}
}


/* 多言語ボタン */
.fixed_language {
	background-color: rgb(0 203 204 / .3);
	backdrop-filter: blur(25px);
	border-radius: 2rem;
	padding: .8rem 1.2rem;
	position: fixed;
	top: 2.5rem;
	left: 2rem;
	z-index: 9999;
	display: none;
}
.fixed_language.open {
	background-color: #00CBCC;
}
.fixed_language_item {
	display: flex;
	align-items: center;
	gap: .5rem;
}
.fixed_language_item_link {
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.3rem;
	color: #fff;
	letter-spacing: 0.05em;
}
.fixed_language_item_arrow {
	width: .8rem;
	transition: transform .3s;
}
.fixed_language.active .fixed_language_item_arrow {
	transform: rotate(180deg);
}
.fixed_language_accordion {
	display: none;
}
.fixed_language_accordion .fixed_language_item {
	margin-top: .8rem;
}
@media (max-width: 767px) {
	.fixed_language {
		padding: .6rem 1.4rem;
		display: block;
	}
	.fixed_language_item_link {
		font-size: 1.1rem;
	}
	.fixed_language_accordion .fixed_language_item {
		margin-top: 1.8rem;
	}
}


/* パンくず */
.breadcrumb {
	margin-top: 13.5rem;
}
.breadcrumb_list {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.breadcrumb_list_item {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.breadcrumb_list_item:not(:first-child):before {
	content: "/";
	display: inline-block;
	font-size: 1.25rem;
	color: var(--main-color);
	line-height: 1;
}
.breadcrumb_list_item_link {
	font-size: 1.25rem;
	color: var(--main-color);
	line-height: 1;
}
@media (max-width: 767px) {
	.breadcrumb {
		margin-top: 6.8rem;
	}
	.breadcrumb > .inner {
        padding: 0;
    }
}