@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
.en { font-family: "Inter", sans-serif; }
@media screen and (min-width: 768px){
	body { min-width: 1200px; }
	a[href^='tel:'] { pointer-events: none;}
}

/*==================================================================
	Style setting
===================================================================*/
html {
	font-size: 62.5%;
	overflow-x:hidden;
}
body {
	background: #fff;
	color: #000;
	font-family: 'Noto Sans JP';
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
	overflow-x:hidden;
	-webkit-text-size-adjust:none;
	-ms-text-size-adjust:none;
	word-wrap:break-word;
	opacity: 0;
	transition: opacity ease-in-out 0.8s;
	position: relative;
}
body.loaded {
	opacity: 1;
}
@media screen and (max-width: 1200px){
	body {
		font-size: 1.4rem;
	}
}
a { color: #000; text-decoration: none; transition: all ease-in-out 0.4s; }
a:hover { color: #000; text-decoration: none; }
a:hover img { opacity: 0.8; transition: all ease-in-out 0.4s; }
.pos-rel { position: relative; }
.pos-link {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
}
.bg-gray { background: #f7f7f7; }
.bg-blue {
	background: #1F469D;
	color: #fff;
}
.full { width: 100%; }
.white { color: #FFF;}
.blue { color: #1F469D;}
.inner-1200 {
	margin: auto;
	max-width: 1200px;
	width: calc(100% - 30px);
}
.inner-970 {
	margin: auto;
	max-width: 970px;
	width: calc(100% - 30px);
}
.vrl {
	-webkit-writing-mode: vertical-rl;
	-moz-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-ms-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
}
.d-in-block { display: inline-block; }
.fw500 { font-weight: 500; }
@media screen and (min-width: 1201px){/* >=1201 screen */
	.sp {
		display: none!important;
	}
}
@media screen and (max-width: 1200px){/* <=1200 screen */
	.pc {
		display: none!important;
	}	
}


@media screen and (min-width: 768px){/* >=768 screen */
	.sp767 {
		display: none!important;
	}
}
@media screen and (max-width: 767px){/* <=767 screen */
	.pc767 {
		display: none!important;
	}	
}


/*==================================================================
	Slogan setting
===================================================================*/
#slogan {
	color: #fff;
	position: fixed;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.2;
	top: 30px;
	left: 30px;
	z-index: 100;
}
#slogan a {
	color: #fff;
	transition: all 0.3s ease;
}
#slogan a:hover {
	opacity: 0.7;
}
@media screen and (max-width: 767px) {
	#slogan {
		font-size: 1.6rem;
		top: 15px;
		left: 15px;
	}
}

/*==================================================================
	menu-bars setting
===================================================================*/
.menu-bars {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 201;
}
.menu-bars .cont {
	display: flex;
	align-items: flex-end;
	text-align: center;
	position: relative;
	z-index: 20;
}
.menu-bars .cont .item {
	width: 25%;
	padding: 10px 5px 5px;
	position: relative;
	z-index: 0;
}
.menu-bars .cont .item:before {
	background: #fff;
	content: "";
	height: 20px;
	width: 1px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.menu-bars .cont .item:nth-child(1):before { display: none; }
.menu-bars .cont .item .box {
	display: block;
	color: #fff;
	font-weight: 500;
	font-size: 1.2rem;
	letter-spacing: 0;
}
.menu-bars .cont .item .box .icon {
	width: 32px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	position: relative;
}
.menu-bars .cont .item .box .lines {
	display: block;
	height: 2px;
	background: #fff;
	width: 100%;
	transition: all 0.3s linear;
}
.menu-bars .cont .item .box .lines:before {
	background: #fff;
	content: "";
	height: 2px;
	width: 100%;
	position: absolute;
	top: 5px;
	left: 0;
	transition: all 0.3s linear;
}
.menu-bars .cont .item .box .lines:after {
	background: #fff;
	content: "";
	height: 2px;
	width: 100%;
	position: absolute;
	bottom: 5px;
	left: 0;
	transition: all 0.3s linear;
}
.menu-bars .cont .item .is-open .lines {
	transform: rotate(225deg);
	background: none;
}
.menu-bars .cont .item .is-open .lines:before {
	top: calc(50% - 1px);
}
.menu-bars .cont .item .is-open .lines:after {
	bottom: calc(50% - 1px);
	transform: rotate(90deg);
}
.menu-bars .nav {
	position: fixed;
	bottom: 68px;
	max-height: calc(100vh - 65px);
	overflow: auto;
	padding: 0;
	width: 100%;
	transform: translateY(30px);
	clip-path: inset(100% 0 0 0);
	transition: .7s cubic-bezier(0.165, 0.84, 0.44, 1);
	will-change: clip-path;
	visibility: hidden;
	z-index: 10;
}
.menu-open .menu-bars .cont {
	border-top: 1px solid #fff;
}
.menu-open .menu-bars .nav {
	transform: translateY(0);
	clip-path: inset(0);
	visibility: visible;
}
.menu-bars .nav .nav-list {
	display: grid;
	grid-template-columns: auto;
}
.menu-bars .nav .nav-list .item a {
	color: #fff;
	display: block;
	padding: 12px 15px;
	text-align: center;
	border-bottom: 1px solid #fff;
	font-size: 1.5rem;
}
/*.menu-bars .nav .nav-list .item:last-child a { border: none; }*/

.menu-bars .nav .bnr-btn {
	display : block;
	width : 260px;
	margin :  10px auto;
}

@media screen and (max-width: 1200px) {
	.menu-bars { display: block !important; }
	.menu-bars {
		transition: all 0.5s ease;
		visibility: hidden;
		transform: translateY(101%);
	}
	.menu-bars.is-show {
		visibility: visible;
		transform: translateY(0);
	}
}
/*==================================================================
	Footer setting
===================================================================*/
#footer {
	background: #1F469D;
	color: #fff;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	padding: 30px 15px 20px;
	width: 100%;
	max-width: 1560px;
	margin: 0 auto;
}
.footer-content .cont {
	padding-right: 60px;
}
.footer-content .cont .address {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0;
	margin: 0 0 55px;
}
.footer-content .cont .address .large {
	font-weight: 700;
	font-size: 128%;
}
.footer-content .cont .address a {
	color: #fff;
	text-decoration: underline;
	transition: all 0.3s ease;
}
.footer-content .cont .address a:hover {
	opacity: 0.7;
	text-decoration: none;
}
.footer-content .cont .phone {
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0;
}
.footer-content .cont .phone .tel {
	display: inline-block;
	margin-left: 10px;
	color: #fff;
	font-size: 247%;
	line-height: 1;
}
.navi-list {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin: 0 0 39px;
}
.navi-list .item {
	list-style: none;
	margin-left: 25px;
}
.navi-list .item a {
	color: #fff;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1.2;
	transition: all 0.3s ease;
}
.navi-list .item a:hover {
	opacity: 0.7;
}
.ft-buttons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.ft-buttons .item {
	margin-left: 15px;
}
.ft-buttons .line-btn {
	width: 162px;
}
.ft-buttons .f-btn {
	background: #fff;
	color: #1F469D;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
	min-width: 260px;
	display: inline-block;
	padding: 10px;
	text-align: center;
	transition: all 0.3s ease;
}
.ft-buttons .f-btn:hover {
	opacity: 0.7;
}
.copyright {
	background: #000;
	color: #fff;
	padding: 10px 15px;
	text-align: center;
}
.copyright .txt {
	font-size: 1rem;
	line-height: 1.2;
	letter-spacing: 0;
}
@media screen and (max-width: 1200px) {
	.navi-list .item {
		margin-left: 15px;
	}
	.navi-list .item a {
		font-size: 1.4rem;
	}
	.ft-buttons .f-btn {
		font-size: 1.4rem;
		min-width: 180px;
	}
	.ft-buttons .line-btn {
		width: 124px;
	}
	.navi-list {
		margin: 0 0 20px;
	}	
	.footer-content .cont .address {
		font-size: 1.4rem;
		margin: 0 0 35px;
	}
	.footer-content .cont .phone {
		font-size: 1.6rem;
	}
	.footer-content .cont {
		padding-right: 30px;
		max-width: 320px;
	}
	.footer-content .cont .phone .tel {
		display: block;
		margin: 0;
	}
}
@media screen and (max-width: 1200px) {
	.footer-content {
		padding-top: 0;
		flex-wrap: wrap;
		flex-direction: column-reverse;
		align-items: center;
	}
	.footer-content .group {
		width: 100%;
	}
	.footer-content .cont {
		padding-right: 0;
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
		justify-content: center;
	}
	.ft-buttons {
		flex-wrap: wrap;
		flex-direction: column;
		padding-top: 30px;
	}
	.navi-list {
		border: 1px solid #000;
		border-bottom: none;
		background: #fff;
		margin: 0;
		width: calc(100% + 30px);
		margin-left: -15px;
	}
	.navi-list .item {
		border-bottom: 1px solid #000;
		margin-left: 0;
		width: 50%;
		text-align: center;
	}
	.navi-list .item:nth-child(2n) {
		border-left: 1px solid #000;
	}
	.navi-list .item a {
		color: #000;
		font-weight: 300;
		font-size: 1.4rem;
		display: block;
		padding: 12px 5px;
	}
	.ft-buttons .f-btn {
		font-size: 1.4rem;
		min-width: 260px;
		margin-bottom: 15px;
		padding: 12px;
	}
	.ft-buttons .f-btn.bnr-btn {
		padding : 0;
		width : 200px;
	}
	.ft-buttons .line-btn {
		order: 3;
		width: 144px;
	}
	.footer-content .cont .address {
		margin: 0;
		font-size: 1.2rem;
	}
	.footer-content .cont .phone {
		font-size: 1.4rem;
		text-align: center;
		margin: 15px 0 30px;
		position: relative;
		padding: 10px 5px;
		border: 1px solid #fff;
		width: 90%;
	}
	.footer-content .cont .phone:before {
		content: "";
		background: url(../img/common/icon_tel.svg) no-repeat center center / 100% auto;
		display: inline-block;
		margin: 0 10px 0 0;
		width: 18px;
		height: 20px;
		vertical-align: middle;
	}
	.footer-content .cont .phone .tel {
		opacity: 0;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		margin: 0;
		z-index: 1;
	}
}


/* Swipe icon */
.swipe-scroll{position: relative;}
.swipe-icon {display: none;}
@media only screen and (max-width: 767px) {
	.swipe-scroll {
		overflow-x: auto;
		padding-bottom: 15px;
	}
	.swipe-scroll img {
		width: 950px !important;
		max-width: inherit;
	}
	.swipe-icon {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 70px;
		height: 70px;
		display: block;
		margin: -35px;
		animation:horizontal 1s ease-in-out infinite alternate;
		z-index: 10;
	}
	.swipe-icon img {
		max-width: 100%!important;
		width: 70px!important;
	}
	@keyframes horizontal {
		0% { transform:translate(-20%,-20%); }
		100% { transform:translate(30%,-20%); }
	}
}

.page-btn {
	background: #1F469D;
	border: 1px solid #1F469D;
	border-radius: 35px;
	color: #fff;
	font-size: 2.5rem;
	font-weight: 500;
	padding: 13px 30px;
	display: inline-block;
	width: 510px;
	transition: all 0.3s ease;
	text-align: center;
}
.page-btn:hover {
	opacity: 0.8;
	color: #fff;
}
@media screen and (max-width: 767px) {
	.page-btn {
		font-size: 1.8rem;
		padding: 10px 5px;
		width: 96%;
		max-width: 320px;
	}
}

.page-more {
	display: inline-block;
	font-size: 1.2rem;
	letter-spacing: 0;
	line-height: 2;
	position: relative;
	padding: 0 30px 0 0;
	transition: all 0.3s ease;
}
.page-more::before {
	content: "";
	border-bottom: 1px solid #000;
	border-right: 1px solid #000;
	width: 100%;
	height: 10px;
	position: absolute;
	bottom: 0;
	left: -5px;
	transform: skewX(45deg);
	transition: all 0.3s ease;
}
a:hover ~ .page-more, .page-more:hover { opacity: 0.6; }
a:hover ~ .page-more::before, .page-more:hover:before {
	width: calc(100% + 10px);
}

.sec-headline {
	padding-top: 189px;
}
.sec-title {
	margin: 0 0 86px;
	text-align: center;
}
.sec-title .jp {
	color: #1F469D;
	font-size: 8rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	margin: 0 0 15px;
}
.bg-blue .sec-title .jp { color: #fff; }
.sec-title .sub {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
}
.sec-title .sub .small {
	font-size: 87.5%;
}
.sec-title .sub.en {
	font-size: 1.7rem;
	font-weight: 400;
}
.sec-text {
	font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 2.5;
}
@media screen and (max-width: 767px) {
	.sec-headline {
		padding-top: 60px;
	}
	.sec-title {
		margin: 0 0 30px;
	}
	.sec-title .jp {
		font-size: 4.3rem;
	}
	.sec-title .sub {
		font-size: 1.68rem;
	}
	.sec-text {
		font-size: 1.44rem;
		line-height: 2.2;
	}
}

/* .recruit-box */
.recruit-box .img {
	margin: 0 0 17px;
}
.recruit-box .img img {
	width : 100%;
	height: 100%;
	min-height: 194px;
}
.recruit-box img:is([sizes="auto" i], 
.recruit-box [sizes^="auto," i]) {
    contain-intrinsic-size: revert;
    contain: none!important;
}
.recruit-box .lbl {
	background: #EEEEEE;
	font-size: 2rem;
	letter-spacing: 0;
	line-height: 1.7;
	display: inline-block;
	margin: 0 0 17px;
	padding: 3px 15px;
}
.recruit-box .ttl {
	font-size: 2.9rem;
	letter-spacing: 0;
	line-height: 1.4;
	margin: 0 0 17px;
}
.recruit-box .txt {
	font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 1.5;
	margin: 0 0 17px;
}
.recruit-box .type {
	border: 1px solid #333333;
	color: #333;
	font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 1.75;
	display: inline-block;
	padding: 3px 15px;
	margin: 0 0 17px;
}
.recruit-box .type-blue {
	color: #20A1FF;
	border-color: #20A1FF;
}
.recruit-box .type-purple {
	color: #7F50BD;
	border-color: #7F50BD;
}
.recruit-box .list li {
	font-size: 1.6rem;
	letter-spacing: 0;
	line-height: 1.4;
}
.recruit-box .list li .large {
	font-weight: 700;
}
.recruit-box .dates {
	color: #777;
	font-size: 1.3rem;
	letter-spacing: 0;
	line-height: 2.2;
	position: relative;
	padding-left: 15px;
	margin: 0 0 17px;
}
.recruit-box .dates .icon {
	background: url(../img/common/icon_date.svg) no-repeat center center / 100% 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
}
@media screen and (max-width: 767px) {
	.recruit-box .lbl {
		font-size: 1.8rem;
	}
	.recruit-box .ttl {
		font-size: 2.4rem;
	}
	.recruit-box .list li,
	.recruit-box .type,
	.recruit-box .txt {
		font-size: 1.44rem;
	}
	.recruit-box .dates {
		font-size: 1.2rem;
		margin: 0;
	}
}

/* modal settings */
.bg-md-none .modaal-container {
	background: none;
	box-shadow: none;
	color: #fff;
}
#modaal-close {
	opacity: 0;
	visibility: hidden;
}
.modaal-content-container {
	position: relative;
	padding: 45px;
	z-index: 0;
}
.btn-close {
	cursor: pointer;
	position: absolute;
	top: 25px;
	right: 25px;
	width: 35px;
	height: 35px;
	z-index: 10;
	transform: rotate(45deg);
	transition: all 0.3s ease;
}
.btn-close:hover {
	opacity: 0.7;
}
.btn-close:before {
	content: "";
	width: 100%;
	height: 1px;
	background: #000;
	top: 49.5%;
	left: 0;
	position: absolute;
	transition: all 0.3s ease;
}
.btn-close:after {
	content: "";
	height: 100%;
	width: 1px;
	background: #000;
	left: 49.5%;
	top: 0;
	position: absolute;
	transition: all 0.3s ease;
}
.bg-md-none .btn-close:before,
.bg-md-none .btn-close:after {
	background: #fff;
}
@media screen and (max-width: 767px) {
	.modaal-content-container {
		padding: 25px 20px;
	}
	.btn-close {
		width: 20px;
		height: 20px;
		top: 5px;
		right: 5px;
	}
	.bg-md-none .btn-close {
		top: 0;
		right: 0;
	}
}