@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@600&display=swap');

body {
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	font-size: 16px;
	color: #333333;
	line-height: 1.8;
	outline: none;
	opacity: 0;
	-webkit-transition: opacity .8s;
	transition: opacity .8s;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.-load{
	opacity: 1;
}

.sec .inner {
	max-width: 1184px;
	padding: 0 30px;
	margin: 0 auto;
}

.hover-opacity a{
	opacity: 1;
	transition: .3s ease-in-out;
}

.hover-opacity a:hover{
	opacity: 0.5;
}

.vis-sp{
	display: none;
}

.vis-home{
	display: none;
}

.-home .vis-home{
	display: block;
}

.-home.scrolled .vis-home,
.-home .header.-open .vis-home{
	display: none;
}

.-home .hide-home{
	display: none;
}

.-home.scrolled .hide-home,
.-home .header.-open .hide-home{
	display: block;
}

.-serif{
	font-family: 'Noto Serif JP', serif;
}

.-en{
	font-family: 'Cormorant Garamond', serif;
}

.img img{
	width: 100%;
}

/* parallax_animate */
.-parallax_animate{
	opacity: 0; 
	transform: translateY(70px);
	transition: 0.7s, opacity .7s ease;
	transition-delay: .3s;
}
.-parallax_animate.-done{
	opacity : 1;
	transform : translate(0, 0);
}

/* container */
.container{
	min-width: 1124px;
	padding-top: 75px;
}

.-home .container{
	padding-top: 0;
}

/* breadcrumd */
.breadcrumd{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 24px 0 57px 57px;
	font-size: 12px;
	font-weight: 500;
}

.breadcrumd li{
	list-style: none;
	color: #9A9A9A;
}

.breadcrumd li a{
	color: #EA6876;
	transition: .3s ease-in-out;
}

.breadcrumd li a:hover{
	opacity: 0.5;
}

.breadcrumd li .arrow{
	padding: 0 6px;
}

/* ttl */
.ttl{
    font-size: 14px;
}

.ttl .-en{ 
    font-size: 35px;
    font-weight: bold;
    color: #EA6876;
}

/* btn */
.btn{
    width: 283px;
    height: 62px;
}

.btn a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-left: 24px;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Noto Serif JP', serif;
    color: #fff;
    background: #000 url(/recruit/img/cmn/img-arrow-more-white.svg) center right 25px / 28.7px auto no-repeat;
    transition: .3s ease-in-out;
}

.btn a:hover{
    opacity: 0.7;
    background-position: center right 15px;
}

/* hero */
.hero{
	text-align: center;
	padding-bottom: 36px;
}

.hero-ttl{
	margin-bottom: 32px;
	z-index: 10;
	opacity: 0;
	-webkit-transform: translateY(-40px);
	transform: translateY(-40px);
	-webkit-transition: opacity .6s, -webkit-transform .6s;
	transition: opacity .6s, -webkit-transform .6s;
	transition: transform .6s, opacity .6s;
	transition: transform .6s, opacity .6s, -webkit-transform .6s;
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

body.-load .hero-ttl{
	z-index: 10;
	opacity: 1;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}

.hero-ttl .-en{
	display: block;
	margin-bottom: 6px;
	font-size: 45px;
	font-weight: bold;
	color: #EA6876;
}

.hero-txt{
	line-height: 2.3;
}

/* header */
.header{
	/* position: absolute; */
	position: fixed;
	top: 0;
	width: 100%;
	height: 75px;
	background: transparent;transition: .3s ease-in-out;
	z-index: 100;
	background: #fff;
	transition: .3s ease-in-out;
}

.-home .header{
	background: transparent;
}

.-home.scrolled .header,
.-home .header.-open{
	background: #fff;
}

.header .inner{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 100%;
	margin: auto;
}

.header .inner .logo{
	display: flex;
	align-items: center;
	width: 349px;
	margin-left: 19px;
}

.header .inner .logo a{
	display: inline-block;
	transition: .3s ease-in-out;
}

.header .inner .logo a:hover{
	opacity: 0.5;
}

.header .inner .nav{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 22px;
	height: 100%;
	margin-right: 19px;
}

.header .inner .nav ul{
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 22px;
}

.header .inner .nav ul a{
	position: relative;
}

.-home .header .inner .nav ul a::before{
	content: none;
}

.header .inner .nav ul a::before,
.-home.scrolled .header .inner .nav ul a::before{
	content: "";
    display: block;
    width: 100%;
    height: 1.6px;
    background: #EA6876;
    position: absolute;
    left: 0;
    bottom: -10px;
	border-radius: 1px;
    transform: scaleX(0);
    transition: transform .6s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}

.header .inner .nav ul a:hover::before,
.-home.scrolled .header .inner .nav ul a:hover::before{
	transform: scaleX(1);
	transition: transform .8s cubic-bezier(0.45, 0.12, 0.04, 0.96);
}

.header .inner .nav ul a,
.-home.scrolled .header .inner .nav ul a{
	color: #EA6876;
	transition: .3s ease-in-out;
}

.-home .header .inner .nav ul a{
	color: #fff;
	transition: .3s ease-in-out;
}

.-home .header .inner .nav ul a:hover{
	color: #EA6876;
	opacity: 1;
}

.header .recruit-btn{
	width: 141px;
	height: 100%;
}

.header .recruit-btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #fff;
	background: #EA6876; 

}

.header .menu,
.header .sp-nav{
	display: none;
}

/* entry */
.entry{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	width: 100%;
	height: 412px;
	background: #EA6876;
}

.entry .ttl{
	margin-bottom: 30px;
	color: #fff;
	text-align:  center;
}

.entry .ttl .-en{
    display: block;
    margin-bottom: 6px;
    font-size: 45px;
    font-weight: bold;
	color: #fff;
}

.entry .btn:first-of-type{
	margin-bottom: 18px;
}

.entry .btn:nth-of-type(2) a{
	font-size: 18px;
}

/* footer */
.footer{
	padding: 82px 0 67px;
	background: #F6F6F6;
}

.footer .inner{
	width: 1184px;
	margin: auto;
	padding: 0 30px;
}

.footer .inner .foot-logo{
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer .inner a{
	font-size: 14px;
}

.footer .inner .logo{
	width: 409px;
}

.footer .nav{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 29px;
}

.footer .inner-nav{
	display: grid;
	grid-template-columns: 170px 168px 120px 154px;
    grid-template-rows: 1fr 1fr;
	gap: 10px 0;
}

.footer .outer-nav{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	/* grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr; */
	gap: 10px 18px;
}

.footer .outer-nav li:first-of-type{ grid-area: 1 / 1 / 2 / 2; }
.footer .outer-nav li:nth-of-type(2){ grid-area: 2 / 1 / 3 / 2; }
.footer .outer-nav li:nth-of-type(3) { grid-area: 2 / 2 / 3 / 3; }
.footer .outer-nav li:nth-of-type(4) { grid-area: 3 / 1 / 4 / 2; }
.footer .outer-nav li:nth-of-type(5) { grid-area: 3 / 2 / 4 / 3; }

.footer .outer-nav a{
	padding-right: 19px;
	background: url(/recruit/img/cmn/img-ic-link.svg) center right / 13px auto no-repeat;
	color: #EA6876;
}

.footer .copy{
	margin-top: 44px;
	font-size: 12px;
}

@media screen and (max-width:1475px) {
	.hide-tbl{
		display: none;
	}
}

@media screen and (max-width:1220px) {
	.header{
		height: 60px;
	}

	.header .inner .nav{
		margin-right: 10px;
	}

	.header .inner .nav ul{
		gap: 10px;
	}

	.header .inner .nav a{
		font-size: 12px;
	}

	.header .recruit-btn {
		width: 100px;
	}

	.header .inner .logo {
		width: 280px;
		margin-left: 10px;
	}

}

@media screen and (max-width:949px) {

	.header.-open .inner{
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	}

	.header .inner .logo{
		width: 261.21px;
		margin-left: 4.8%;
	}

	.header .inner .nav{
		display: none;
	}

	.header .menu{
		position: relative;
		display: block;
		width: 60px;
		height: 60px;
		cursor: pointer;
		overflow: hidden;
	}

	.header .menu .box{
		display: flex;
		justify-content: center;
		align-items: center;
		flex-flow: column;
		gap: 7px;
		width: 100%;
		height: 100%;
		background: #EA6876;
		transition: .3s ease;
	}

	.header.-open .menu .box{
		transform: translateY(-60px);
	}

	.header .menu .bar{
		width: 32px;
		height: 2px;
		background: #fff;
	}

	.header.-open .menu .bar{
		display: none;
	}

	.header .menu p{
		display:none;
	}

	.header.-open .menu p{
		display: block;
		font-size: 12px;
		font-weight: 500;
		color: #fff;
	}

	.header .sp-nav{
		height: calc(100vh - 60px);
		overflow-x: hidden;
		overflow-y: scroll;
	}

	.header .sp-nav ul{
		height: auto;
		max-height: none;
		background: #fff;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	}

	.header .sp-nav li:not(:last-of-type){
		border-bottom: 1px solid #E5E5E5;
	}

	.header .sp-nav a{
		display: block;
		padding: 17px 18px;
		font-size: 14px;
		font-weight: 500;
		color: #EA6876;
		background: url(/recruit/img/cmn/img-arrow-more-gray.svg) center right 18px / 37.55px auto no-repeat;
	}

	.header .sp-nav .out-link a{
		background: none;
	}

	.header .sp-nav .out-link a span{
		padding-right: 25px;
		background: url(/recruit/img/cmn/img-ic-link.svg) center right / 13px auto no-repeat;
	}

	body{
		font-size: 14px;
	}

	.vis-sp {
		display: block;
	}

	.hide-sp {
		display: none;
	}

	.sec .inner {
		padding: 0 4.8%;
	}

	/* container */
	.container{
		min-width: auto;
		padding-top: 60px;
	}

	/* breadcrumd */
	.breadcrumd{
		display: none;
	}

	/* ttl */

	.ttl .-en{ 
		line-height: 1;
	}

	/* btn */
	.btn{
		width: 100%;
		max-width: 283px;
		height: 62px;
	}

	.btn a{
		padding-left: 16px;
		font-size: 16px;
		background-size: 25px auto;
		background-position: center right 20px;
	}

	.btn a:hover{
		background-position: center right 20px;
	}

	/* hero */
	.hero{
		padding: 36px 4.8% 48px;
	}

	.hero-ttl{
		margin-bottom: 20px;
	}

	.hero-ttl .-en{
		margin-bottom: 0;
		font-size: 35px;
		line-height: 1;
	}

	/* entry */
	.entry{
		height: 280px;
		padding: 0 4.8%;
	}

	.entry .ttl{
		margin-bottom: 11px;
		font-size: 14px;
	}

	.entry .ttl .-en{
		margin-bottom: 6px;
		font-size: 30px;
	}

	.entry .btn:nth-of-type(2) a{
		font-size: 16px;
	}

	/* footer */
	.footer{
		padding: 58px 0 54px;
	}

	.footer .inner{
		width: 100%;
		padding: 0 4.8%;
	}

	.footer .inner .foot-logo{
		display: flex;
		align-items: center;
		justify-content: flex-start;
		flex-flow: column;
		gap: 0;
	}

	.footer .inner .logo{
		width: 100%;
		max-width: 321px;
		margin: auto;
	}

	.footer .inner .foot-logo p{
		margin-top: -10px;
	}

	.footer .inner .foot-logo p a{
		padding-left:1em;
		font-size: min(14px, 3.7vw);
	}

	.footer .nav{
		display: block;
		margin-top: 20px;
	}

	.footer ul{
		width: 100%;
	}

	.footer .inner-nav{
		display: flex;
		flex-wrap: wrap;
		gap: 10px 0;
	}

	.footer .inner-nav li{
		width: 50%;
	}

	.footer .outer-nav{
		display: flex;
		flex-flow: column;
		gap: 10px 0; 
		margin-top: 19px;
	}

	.footer .copy{
		margin-top: 26px;
	}
}

@media print {
}
