@charset "UTF-8";

@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

body {
	min-width: 1240px;
	color: #333333;
	font-size: 16px;
	line-height: 1.75;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	outline: none;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

body::after {
	content: '';
	width: 100%;
	height: 100vh;
	background: #5D5D5D;
	mix-blend-mode: multiply;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 9999;
}

body.-open::after {
	opacity: 1;
	pointer-events: auto;
}

.inner {
	max-width: 1380px;
	margin: 0 auto;
	padding: 0 40px;
}

.vis-hidden {
	display: block;
	visibility: visible;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 4px;
	height: 4px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: none;
}

.vis-sp,
.vis-tb {
	display: none;
}


a:hover {
	cursor: pointer;
}


.cmn_btn {
	font-size: 17px;
	line-height: 20px;
	padding: 15px 22px;
	border-radius: 7px;
	display: block;
	width: fit-content;
	text-align: center;
	color: #fff;
	transition-duration: 0.5s;
}

.cmn_btn:hover {
	background: #242424;
}

.hovact {
	transition-duration: 0.5s;
}

.hovact:hover {
	cursor: pointer;
}

.-medium {
	font-weight: 500;
}

.ft-18 {
	font-size: 18px;
}


/* cmnhd */

.cmnhd {
	background: #fff;
	transition-duration: 0.5s;
	position: fixed;
	width: 100%;
	z-index: 10000;
}

.-open .cmnhd {
	transition-duration: 0.4s;
	background: #fff !important;
}

.cmnhd.-active {
	border-bottom: solid 2px #0E3CB4;
}

.cmnhd_wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 30px;
}

.cmnhd_list_cnt {
	display: flex;
	justify-content: right;
	align-items: center;
	gap: 20px;
}

.cmnhd_list_cnt.-link {
	margin-top: 10px;
}

.cmnhd_list_cnt.-link a {
	font-size: 18px;
	transition-duration: 0.5s;
}

.cmnhd_list_cnt.-link a:hover {
	opacity: 0.7;
}

.cmnhd_list_cnt.-link .cmnhd_btn.-open {
	position: relative;
}

.cmnhd_list_cnt.-link .cmnhd_btn.-open::after {
	content: '';
	width: 100%;
	height: 2px;
	background: #0E3CB4;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -5px;
    right: 50%;
    transform: translateX(50%);
}

.cmnhd_list_cnt .contact {
	color: #fff;
	background: #0E3CB4;
	border-radius: 6px;
	padding: 5px 30px;
	font-size: 17px;
	border: solid 2px #0E3CB4;
}

.cmnhd_list_cnt .contact:hover {
	color: #0E3CB4;
	background: #fff;
}

.cmnhd_list_cnt .language {
	padding: 0 30px;
	position: relative;
	transition-duration: 0.5s;
}

.cmnhd_list_cnt .recruit {
	padding-right: 20px;
	border-right: solid 1px #C6C6C6;
	transition-duration: 0.5s;
}

.cmnhd_list_cnt .recruit:hover {
	opacity: 0.7;
}

.cmnhd_list_cnt .language:hover {
	cursor: pointer;
	opacity: 0.7;
}

.cmnhd_list_cnt .language::before {
	content: '';
	width: 15px;
	height: 15px;
	background: url(/img/cmn/icon-language.svg);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
}

.cmnhd_list_cnt .language::after {
	content: '';
	width: 7px;
	height: 4px;
	background: url(/img/cmn/icon-arrow_language.svg);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

.cmnhd_sub {
	display: none;
}

.cmnhd_sub_list {
	background: #fff;
	padding: 50px 10%;
}

.cmnhd_sub_list ul {
	display: flex;
	gap: 10px 20%;
	flex-wrap: wrap;
}

.btn01 .cmnhd_sub_list ul {
	width: 800px;
}

.btn01 .cmnhd_sub_list ul li {
	width: 230px;
}

.cmnhd_sub_list li a {
	font-size: 20px;
	font-weight: 500;
	position: relative;
	display: block;
	transition-duration: 0.5s;
}

.cmnhd_sub_list li a::after {
	content: '';
	width: 30px;
	height: 30px;
	background: url(/img/cmn/icon-arrow_gray.svg);
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	bottom: 50%;
	right: -40px;
	transform: translateY(50%);
}

.cmnhd_sub_list li a:hover {
	opacity: 0.7;
}

.youtube:hover,
.insta:hover {
	opacity: 0.7;
}

.cmnnav {
	width: 100%;
	height: 100vh;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 1000;
	overflow: scroll;
}


.cmnhd_sub_list_sub {
	width: 50%;
	display: flex;
    gap: 10px 100px;
    flex-wrap: wrap;
}

.cmnhd_sub_list .-bdb {
	padding-bottom: 50px;
	margin-bottom: 50px;
	border-bottom: solid 1px #C6C6C6;
}

.cmnhd_sub_list .cmnhd_sub_list_sub a::after {
	content: none;
}

.cmnhd_sub_list .cmnhd_sub_list_sub a::before {
	content: '';
	width: 15px;
	height: 11px;
	background: url(/img/cmn/icon-arrow.svg);;
	position: absolute;
	top: 50%;
	left: -25px;
	transform: translateY(-50%);
}

/* section */

.sec {
	padding: 120px 0;
}




/* cmnft */

.cmnft {
	padding: 90px 0 140px;
	background: #000;
}

.cmnft_wrapper {
	display: flex;
	justify-content: space-between;
}

.logo-cmnft {
	display: block;
	margin-bottom: 40px;
}

.cmnft_cnt_ttl {
	font-size: 26px;
	color: #fff;
	font-family: 'Special Gothic Expanded One', serif;
}

.address {
	margin-bottom: 30px;
}

.address p {
	color: #fff;
	position: relative;
}

.address p:first-child {
	padding-left: 15px;
}

.address p:first-child::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 50px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.cmnft_list {
	display: flex;
	gap: 70px;
	margin-bottom: 90px;
}

.cmnft_list ul li a {
	display: block;
	color: #fff;
	margin-bottom: 10px;
	transition-duration: 0.5s;
}

.cmnft_list ul li a:hover {
	opacity: 0.7;
}

.cmnft_link {
	display: flex;
	gap: 20px;
}

.cmnft_link a {
	position: relative;
	color: #fff;
	transition-duration: 0.5s;
}

.cmnft_link a:hover {
	opacity: 0.7;
}

.cmnft_link a:first-child::after {
	content: '/';
	position: absolute;
	top: 50%;
	right: -15px;
	transform: translateY(-50%);
	color: #fff;
}

.cmnft_btm {
	padding: 40px 70px;
	border-radius: 16px 16px 0 0;
	background: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	margin: -50px auto 0;
}

.cmnft_btm.-top {
	display: none;
}

.cmnft_btm_cnt {
	display: flex;
	align-items: center;
	gap: 20px;
}

.lang_list {
	display: flex;
}

.lang_list li a {
	padding: 0 20px;
	border-right: solid 1px #C6C6C6;
}

.lang_list li a:hover {
	opacity: 0.7;
}

.copy {
	color: #ACACAC;
}


/* contact */

.contact.sec {
	position: relative;
	padding: 80px 0;
	background: #F6F7FA;
}

.contact .inner {
	position: relative;
	z-index: 10;
}

.bg-contact01 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.bg-contact02 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}

.contact_ttl {
	text-align: center;
}

.contact_ttl.-en {
	color: #0E3CB4;
	font-size: 28px;
	font-family: 'Special Gothic Expanded One', serif;
	margin-bottom: 20px;
}

.contact_ttl.-ja {
	font-size: 35px;
	font-weight: 500;
	margin-bottom: 20px;
	line-height: 50px;
}

.contact .cmn_btn {
	font-size: 27px;
	color: #fff;
	background: #0E3CB4;
	width: 100%;
	max-width: 355px;
	text-align: center;
	padding: 25px 20px;
	margin: 0 auto 50px;
}

.contact .cmn_btn:hover {
	background: #000;
}

.tel {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 25px;
	position: relative;
	z-index: 10;
}

.tel_cnt {
	border: solid 1px #C6C6C6;
	padding: 45px 10px;
	width: 37%;
	text-align: center;
}

.tel .tel_cnt:first-child {
	border-radius: 11px 0 0 11px;
	border-right: none;
}

.tel .tel_cnt:last-child {
	border-radius: 0 11px 11px 0;
}

.tel_ttl {
	font-size: 20px;
	text-align: center;
}

.tel_number {
	font-size: 27px;
	font-family: 'Poppins', sans-serif;
	color: #0E3CB4;
}

.tel_number a {
	font-size: 44px;
}

.tel_number em {
	font-family: 'Noto Sans JP', sans-serif;
}

.note {
	text-align: center;
	font-size: 20px;
}


/* page */

.page_hd {
	position: relative;
	padding: 200px 0 20px;
}

.page_ttl {
	font-size: 50px;
	line-height: 60px;
	font-weight: 500;
	margin-bottom: 145px;
}

.pnkz {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.pnkz a {
	text-decoration: underline;
}

.pnkz a:hover {
	text-decoration: none;
}

.pnkz p {
	color: #5D5D5D;
}

.pnkz span {
	width: 5px;
	height: 5px;
	background: #0E3CB4;
}

.sec_ttl {
	font-size: 40px;
	color: #0E3CB4;
	font-weight: 500;
	/* line-height: 60px; */
}


.page_link_wrapper {
	display: flex;
	justify-content: center;
	align-content: center;
	gap: 20px;
	padding: 70px 0 20px;
	background: #F6F7FA;
}

.page_link.-bottom .page_link_wrapper {
	padding: 50px 0;
	/* background: #fff; */
}

.page_link_wrapper a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	font-weight: 500;
	color: #0E3CB4;
	background: #fff;
	padding: 20px 30px;
	width: 100%;
	max-width: 310px;
	text-align: center;
	border-radius: 7px;
	transition-duration: 0.5s;
}

.page_link_wrapper a:hover {
	color: #fff;
	background: #0E3CB4;
}

.page_link_wrapper a.-active {
	background: #0E3CB4;
	color: #fff;
}


/* movie */

.movie_cnt.-movie:hover .icon-play {
    background: #000;
}

.icon-play {
    width: 187px;
    height: 187px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 300px;
    position: absolute;
    bottom: 50%;
    right: 50%;
    transform: translateX(50%) translateY(50%);
    backdrop-filter: blur(50px) brightness(95%);
    transition-duration: 0.5s;
}

@media screen and (max-width:1240px) {
	.vis-tb {
		display: block;
	}

	.hide-tb {
		display: none;
	}

	.icon-cmnhd {
		width: 40%;
	}

	.cmnhd_list_cnt.-link a {
		font-size: 14px;
	}
}

@media screen and (max-width:767px) {
	body {
		min-width: 0;
	}

	.inner {
		padding: 0 20px;
	}

	.vis-sp {
		display: block;
	}

	.hide-sp {
		display: none;
	}

	.sec {
		padding: 40px 0;
	}


	/* cmnhd */

	.cmnhd {
		padding: 20px 15px;
	}

	.cmnhd_wrapper {
		padding: 0;
	}

	.icon-cmnhd {
		width: 60%;
	}

	.cmnhd_list_cnt .language {
		font-size: 11px;
	}

	.cmnhd_list_cnt .language::before {
		left: 10px;
	}

	.cmnhd_list_cnt .language::after {
		right: 25px;
	}

	.menu {
		position: relative;
	}

	.menu span {
		display: block;
		position: absolute;
		left: -40px;
		bottom: 50%;
		width: 23px;
		height: 2px;
		background: #0E3CB4;
		transition: all 0.4s;
	}

	.menu span:first-child {
		transform: translate(50%, calc(50% - 6px));
	}

	.menu span:nth-child(2) {
		transform: translate(50%, 50%);
	}

	.menu span:last-child {
		transform: translate(50%, calc(50% + 6px));
	}

	.menu.-open span:first-child {
		transform: translate(50%, 50%) rotate(45deg);
	}

	.menu.-open span:nth-child(2) {
		opacity: 0;
	}

	.menu.-open span:last-child {
		transform: translate(50%, 50%) rotate(-45deg);
	}

	.cmnmav_list {
		padding-top: 70px;
		margin-bottom: 20px;
	}

	.cmnmav_list ul li a {
		display: block;
		width: 100%;
		padding: 18px 25px;
		border-bottom: solid 1px #F2F1F0;
		position: relative;
	}

	.open_cnt {
		display: none;
	}

	.open_cnt a {
		display: block;
		padding: 10px 25px !important;
		background: #F6F7FA;
		border-bottom: solid 1px #F2F1F0;
	}

	.cmnmav_list ul li a::after,
	.open_cnt a::after {
		content: '';
		width: 23px;
		height: 23px;
		background: url(/img/cmn/icon-arrow_gray.svg);
		background-size: cover;
		background-repeat: no-repeat;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}

	.cmnmav_list ul li a.-sub::after {
		content: none;
	}

	.cmnmav_list ul li a.-sub {
		padding-left: 50px !important;
	}

	.cmnmav_list ul li a.-sub::before {
		content: '';
		width: 15px;
		height: 11px;
		background: url(/img/cmn/icon-arrow.svg);
		position: absolute;
		top: 50%;
		left: 25px;
		transform: translateY(-50%);
	}

	.cmnmav_list ul .open_btn::after {
		content: '';
		width: 23px;
		height: 23px;
		background: url(/img/cmn/icon-arrow_gray_open.svg);
		background-size: cover;
		background-repeat: no-repeat;
		position: absolute;
		top: 50%;
		transition-duration: 0.5s;
	}

	.cmnmav_list ul .open_btn.-open::after {
		background: url(/img/cmn/icon-arrow_gray_close.svg);
		background-size: cover;
		background-repeat: no-repeat;
		transition-duration: 0.5s;
	}

	.cmnnav .cmn_btn {
		background: #0E3CB4;
		width: 85%;
		text-align: center;
		margin: 0 auto 20px;
	}

	.cmnnav .sns_link {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 10px;
	}


	/* seciton */

	.page_hd {
		padding: 100px 0 20px;
	}

	.page_ttl {
		margin-bottom: 40px;
		font-size: 32px;
		line-height: 40px;
	}

	.sec_ttl {
		font-size: 30px;
	}

	.page_link_wrapper {
		flex-wrap: wrap;
		gap: 10px;
		padding: 30px 0;
	}

	.page_link_wrapper a {
		font-size: 15px;
		padding: 10px;
		max-width: 45%;
	}

	.page_link_wrapper a:nth-child(3) {
		padding: 3px 10px;
		line-height: 21px;
	}




	/* footer */

	.cmnft {
		padding: 60px 0 80px;
	}

	.cmnft_list {
		margin-bottom: 20px;
	}

	.contact_ttl.-ja {
		font-size: 18px;
		line-height: 30px;
	}

	.contact .cmn_btn {
		font-size: 22px;
	}

	.tel {
		flex-flow: column;
	}

	.tel_cnt {
		width: 100%;
		padding: 20px 10px;
		background: #fff;
	}

	.tel .tel_cnt:first-child {
		border-radius: 11px 11px 0 0;
		border: solid 1px #C6C6C6;
	}

	.tel .tel_cnt:last-child {
		border-radius: 0 0 11px 11px;
		border-top: 0px;
	}

	.tel_ttl {
		font-size: 16px;
	}

	.tel_number {
		font-size: 20px;
	}

	.tel_number a {
		font-size: 30px;
	}
	
	.bg-contact01 {
		width: 60%;
	}

	.note {
		font-size: 14px;
	}

	.logo-cmnft {
		width: 80%;
		margin: 0 auto 40px;
	}


	/* movie */

	.icon-play {
        width: 122px;
        height: 122px;
    }

    .icon-play img {
        width: 60%;
    }


	.cmnft_wrapper {
		flex-flow: column;
	}

	.cmnft_wrapper .cmnft_cnt:first-child {
		margin-bottom: 30px;
		border-bottom: solid 1px #4B4B4B;
	}

	.cmnft_btm {
		flex-flow: column;
		padding: 25px 20px;
	}

	.cmnft_link a {
		font-size: 14px;
	}

	.cmnft_btm_cnt {
        flex-flow: column-reverse;
        align-items: center;
        width: 100%;
		gap: 10px;
    }

	.cmnft_btm .sns_link {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
	}

    .cmnft_btm_cnt.-lang {
        flex-flow: column;
        gap: 10px;
        align-items: start;
		margin-bottom: 10px;
    }

    .lang_list li a {
        font-size: 15px;
        padding: 0 10px;
    }


}

@media print {}