html {
	font-size: calc(10 / 1440 * 100vw);
}
:root {
	--main-color: #00CBCC;
	--scale: calc(1440 / 1280);
}
body {
	font-family: noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	color: #1E1E1E;
}
.bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/bg-gradation.png);
	background-size: cover;
	background-position: center;
	z-index: -1;
}
@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;
	}
}


.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_ja {
	font-size: 1.7rem;
	color: var(--main-color);
	line-height: 1;
}
.title_en {
	font-family: "Montserrat", sans-serif;
	font-weight: normal;
	font-size: 7.2rem;
	color: #1E1E1E;
	line-height: 1;
}
.title_en span {
	display: inline-block;
	clip-path: inset(0 100% 0 0);
	transition: 0.5s ease-in-out;
}
.title_en span.active {
	clip-path: inset(0 0 0 0);
	color: var(--main-color);
}
.title_en.-sm {
	font-size: 4.8rem;
}
@media (max-width: 767px) {
	.title_ja {
		font-size: 1.4rem;
	}
	.title_en {
		font-size: 4.2rem;
	}
	.title_en.-sm {
		font-size: 3.2rem;
	}
}


/* ボタン */
.link_btn {
	font-family: "Montserrat",noto-sans-cjk-jp, sans-serif;
	font-weight: 500;
	font-size: 1.7rem;
	width: 18rem;
	height: 4.5rem;
	background-color: #fff;
	padding: 0 1.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
}
.link_btn.-black {
	background-color: #1E1E1E;
	color: #fff;
}
.link_btn span {
	transition: .3s;
}
.link_btn:hover span {
  transform: translateX(2.8rem);
}
.link_btn:after {
	content: "";
	width: .8rem;
	height: 1.1rem;
	background-image: url(../img/link-btn-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: .3s;
}
.link_btn:hover:after {
	transform: scale(0);
}
@media (max-width: 767px) {
	.link_btn {
		font-size: 1.4rem;
		width: 14rem;
		height: 3.5rem;
	}
}

.icon_btn {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 1.7rem;
	color: #fff;
	height: 6rem;
	border-radius: 100vmax;
	background-color: #2E2E2E;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding-left: 1.3rem;
	padding-right: 2.5rem;
	transition: .3s;
}
.icon_btn:before {
	content: "";
	width: 3.5rem;
	height: 3.5rem;
	background-color: #fff;
	border-radius: 50%;
	transition: .3s;
}
.icon_btn:hover:before {
	transform: scale(0);
}
.icon_btn span {
	transition: .3s;
	display: inline-block;
}
@media (max-width: 767px) {
	.icon_btn {
		font-size: 1.4rem;
		height: 5rem;
		padding-left: 1rem;
		padding-right: 1rem;
		gap: .4rem;
	}
}




/* テキストアニメーション */
.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;
}



/* sns */
.sns_fixed {
	position: fixed;
	z-index: 99;
	top: 0;
	height: 100dvh;
	right: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3.5rem;
}
.sns_fixed_item {
	width: 3rem;
	transition: .3s;
}
.sns_fixed_item:hover {
	opacity: .5;
}
@media (max-width: 767px) {
	.sns_fixed {
		display: none;
	}
} 


/* information */
.information {
	margin: 15rem 0 13.5rem;
}
.information_inner {
  max-width: 123.75rem;
	margin: auto;
}
.information .title_en {
	text-align: center;
}
.information .title_en span {
	color: #1E1E1E;
}
.information .title_en span.active {
	color: #fff;
}
.information .title_ja {
	color: #fff;
	text-align: center;
	margin-top: 1.6rem;
}
.information_box {
	margin-top: 10rem;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 2.812rem;
}
.information_box_item {
	padding: 6.75rem 3.375rem 2.812rem;
	border-radius: 2.25rem;
	position: relative;
}
.information_box_item:nth-of-type(1) {
	background: linear-gradient(119deg, rgba(245, 177, 92, 1) 0%, rgba(255, 146, 13, 1) 100%);
}
.information_box_item:nth-of-type(2) {
	background: linear-gradient(119deg, rgba(82, 212, 133, 1) 0%, rgba(0, 185, 0, 1) 100%);
}
.information_box_item_woman {
	position: absolute;
	z-index: -1;
	top: -30rem;
	left: -2rem;
	width: 40rem;
}
.information_box_item_bubble {
	position: absolute;
	z-index: 2;
	top: -3.94rem;
	right: 5.74rem;
	width: 21.15rem;
}
.information_box_item_title {
	font-size: 4.8rem;
	color: #fff;
	text-align: center;
}
.information_box_item_title span {
	font-size: 3.2rem;
	margin-left: 1rem;
	display: inline-block;
}
.information_box_item_title_en {
	font-family: "Montserrat", sans-serif !important;
	font-size: 6rem !important;
	line-height: 1;
}
.information_box_item_flex {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 1rem;
	margin-top: 3rem;
	margin-bottom: 1rem;
}
.information_box_item_flex_item {
	font-size: 1.7rem;
	color: #00B900;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	border-radius: 1.238rem;
	background-color: rgb(255 255 255 / .8);
	padding: 1.4rem 0;
}
.information_box_item_flex_item:before {
	content: "";
	width: 2rem;
	height: 2rem;
	background-image: url(../img/check-icon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.information_box_item_text {
	font-size: 1.4rem;
	color: #fff;
	line-height: 1.6;
	letter-spacing: 0.08em;
}
.information_box_item:nth-of-type(1) .information_box_item_text {
	margin-top: 4.8rem;
}
.information_box_item_visit_btn {
	width: 100%;
	max-width: 26rem;
	height: 6rem;
	border-radius: 100vmax;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	margin: 5.2rem auto 0;
}
.information_box_item_visit_btn span {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 2rem;
	color: transparent;
	display: inline-block;
	background: linear-gradient(119deg, rgba(245, 177, 92, 1) 0%, rgba(255, 146, 13, 1) 100%);
	background-clip: text;
}
.information_box_item_line_btn {
	width: 100%;
	max-width: 26rem;
	height: 6rem;
	border-radius: 100vmax;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.4rem;
	background-color: #fff;
	margin: 3rem auto 0;
}
.information_box_item_line_btn:before {
	content: "";
	width: 2.5rem;
	height: 2.4rem;
	background-image: url(../img/line-icon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.information_box_item_line_btn span {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 2rem;
	color: transparent;
	display: inline-block;
	background: linear-gradient(119deg, rgba(82, 212, 133, 1) 0%, rgba(0, 185, 0, 1) 100%);
	background-clip: text;
}
@media (max-width: 767px) {
	.information {
    margin: 8rem 0 6rem;
	}
	.information_inner {
		max-width: inherit;
		padding: 0 2.4rem;
	}
	.information .title_ja {
		margin-top: 1rem;
	}
	.information_box {
		grid-template-columns: 1fr;
		gap: 5rem;
		margin-top: 15rem;
	}
	.information_box_item {
		padding: 4.5rem 2rem 3rem;
	}
	.information_box_item_woman {
		top: -15rem;
		width: 20rem;
	}
	.information_box_item_bubble {
		top: -2.5rem;
		right: 2rem;
		width: 14rem;
	}
	.information_box_item_title {
		font-size: 3.2rem;
	}
	.information_box_item_title span {
		font-size: 2rem;
	}
	.information_box_item_text {
		font-size: 1.3rem;
	}
	.information_box_item:nth-of-type(1) .information_box_item_text {
    margin-top: 3rem;
	}
	.information_box_item_visit_btn {
		margin-top: 3rem;
		max-width: 23rem;
		height: 5rem;
	}
	.information_box_item_visit_btn span {
		font-size: 1.6rem;
	}
	.information_box_item_title_en {
		font-size: 4.2rem !important;
	}
	.information_box_item_flex_item {
		font-size: 1.4rem;
	}
	.information_box_item_flex_item:before {
		width: 1.5rem;
		height: 1.5rem;
	}
	.information_box_item_line_btn {
		margin-top: 3rem;
		max-width: 23rem;
		height: 5rem;
	}
	.information_box_item_line_btn span {
		font-size: 1.6rem;
	}
	.information_box_item_line_btn:before {
		width: 2rem;
		height: 1.9rem;
	}
}


/* recruit */
.recruit {
	background-image: url(../img/recruit-bg.png);
	background-size: 100%;
	background-position: center;
	background-repeat: repeat;
	padding: 10rem 0;
}
.recruit_text_en {
	font-family: "Montserrat", sans-serif;
	font-size: 2.8rem;
	color: #F0FFA3;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 2.3rem;
}
.recruit_scroll {
	overflow: hidden;
	display: flex;
	gap: 2rem;
}
.recruit_scroll_item {
	font-family: "Montserrat", sans-serif;
	font-size: 11rem;
	color: transparent;
	line-height: 8.8rem;
	background: linear-gradient(119deg,rgba(255, 153, 0, 1) 0%, rgba(90, 190, 204, 1) 45%, rgba(42, 252, 255, 1) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	white-space: nowrap;
}
.recruit_text_ja {
	font-size: 1.7rem;
	color: #fff;
	line-height: 1.2;
	text-align: center;
	margin-top: 3rem;
}
.recruit_btn {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: bold;
	font-size: 2rem;
	color: #1E1E1E;
	width: 35.7rem;
	height: 6rem;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	margin: 6rem auto 0;
	transition: .3s;
	padding: .4rem 1.4rem 0;
	box-sizing: border-box;
}
.recruit_btn span {
	transition: .3s;
	display: inline-block;
}
.recruit_btn:hover span {
	transform: translateX(1.31rem);
}
.recruit_btn:after {
	content: "";
	width: .8rem;
	height: 1.1rem;
	background-image: url(../img/link-btn-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	transition: .3s;
}
.recruit_btn:hover:after {
	transform: scale(0);
}
@media (max-width: 767px) {
	.recruit {
		padding: 6rem 0;
		background-size: 400%;
	}
	.recruit_text_en {
		font-size: 2rem;
	}
	.recruit_scroll_item {
		font-size: 4.8rem;
		line-height: 4.8rem;
	}
	.recruit_text_ja {
		font-size: 1.4rem;
	}
	.recruit_btn {
		font-size: 1.6rem;
		width: 30rem;
    height: 5rem;
		margin-top: 4rem;
	}
}


/* パンくず */
.breadcrumb {
	padding: 3rem 0;
}
.breadcrumb_inner {
	max-width: calc(110rem * var(--scale));
	margin: auto;
}
.breadcrumb_list {
	display: flex;
	align-items: center;
	gap: .6rem;
}
.breadcrumb_list_item {
	display: flex;
	align-items: center;
	gap: .6rem;
}
.breadcrumb_list_item:not(:first-child):before {
	content: "";
	display: inline-block;
	background-image: url(../img/arrow-right-blue.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: .55rem;
	height: .7rem;
}
.breadcrumb_list_item_link {
	font-size: 1.2rem;
	color: #2E2E2E;
	line-height: 1;
}
@media (max-width: 767px) {
	.breadcrumb {
		padding: 2rem;
	}
}