@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500;700;900&display=swap');

html {
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size:1.25vw;
	text-align:center;
	line-height:2.25;
	color:#555;
}
@media screen and (max-width:768px){
	body {
		line-height:1.8;
		font-size:3.2vw;
	}
}
a {
	color:#555;
	-webkit-transition : opacity 0.4s;
	transition : opacity 0.4s;
	opacity:1;
	outline:none;
}
a:hover {opacity: 0.7;}
img{max-width:100%;}
.only_smart,
.only_smart_i{display:none !important;}

@media screen and (max-width:768px){
	.only_pc{display:none !important;}
	.only_smart{display:block !important;}
	.only_smart_i{display:inline-block !important;}
}

/* 色 */
.pink{color:#dc7b7e;}
.bg_pink{color:#fff;background-color:#dc7b7e;}
.green{color:#00a4a0 !important;}
.bg_green{color:#fff;background-color:#00a4a0;}

/* 書式 */
.bold{font-weight:bold;}
.text_right{text-align:right;}
.center {text-align: center;}
.cont h3 {
    font-size: 18px;
}
.cont p {
    font-size: 16px;
    text-align: justify;
    letter-spacing:-0.03em;
}
@media screen and (max-width:768px){
.cont p {
    line-height: 2.2;
}

}

/* ボタン */
.btn{
	display:block;
	width:14.5em;
	line-height:3;
	font-size:1.5vw;
	box-shadow:2px 2px 5px rgba(0,0,0,0.2);
	border-radius:100px;
	text-align:center;
	padding-right:1em;
	position:relative;
    border:2px solid;
    margin: auto;
}
.btn img{
	width:1.5em;
	position:absolute;
	right:1em;
	top:50%;
	transform:translateY(-50%);
}
@media screen and (max-width:768px){
	.btn{
        width:60%;
		font-size:16px;
        line-height:3;
	}
}

/* .arrow_btn */
.arrow_btn{
	display:block;
	width:12em;
	font-size:1.4vw;
	font-weight:bold;
	border-bottom:0.2vw solid;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
}
.arrow_btn:after{
	content:'';
	display:block;
	width:0.6em;
	height:0.6em;
	border-top:0.3vw solid;
	border-right:0.3vw solid;
	transform:rotate(45deg);
}

@media screen and (max-width:768px){
	.arrow_btn{
        width:10em;
		font-size:3.3vw;
		border-bottom:0.4vw solid;
	}
	.arrow_btn:after{
		border-top:0.5vw solid;
		border-right:0.5vw solid;
	}
}


#wrapper{
	padding:60px 0 0 50%;
}

@media screen and (max-width:768px){
	#wrapper{
		padding:50px 0 0;
	}
}

.inner{
	width:88%;
	margin:auto;
}


/* header */
header{
	width:100%;
	height:60px;
	padding-left:20px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	background-color:#fff;
	box-shadow:0 0 5px rgba(0,0,0,0.3);
	position:fixed;
	top:0;
	left:0;
	z-index:100;
}
header .head_logo{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
header .head_logo img{
	width:80px;
	line-height:0;
}
header .head_logo span{
	margin-left:0.5em;
	line-height:1.5;
	font-size:13px;
	text-align:left;
}
header .head_nav ul{
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
}
header .head_nav ul li:nth-child(n+2){
	margin-left:2em;
}
header .head_nav ul li a{
	font-size:16px;
}
header .head_nav ul li:last-child a{
	display:block;
	width:150px;
	line-height:60px;
}

@media screen and (max-width:768px){
	header{
		height:50px;
		padding-left:10px;
	}
	header .head_logo img{
		width:65px;
	}
	header .head_logo span{
		font-size:10px;
	}
	header .head_nav{
        width: 100%;
        height: calc(100vh - 50px);
        padding-top: 50px;
        background-color: #ECD5D6;
        position: fixed;
        top: 50px;
        left: 0;
        z-index: 101;
        display: none;
	}
	header .head_nav ul{
		display: block;
	}
	header .head_nav ul li:nth-child(n+2){
		margin:30px 0 0;
	}
	header .head_nav ul li a{
		font-size:18px;
		color:#666;
	}
	header .head_nav ul li:last-child a{
		display:block;
		width:250px;
		line-height:50px;
		font-size:18px;
		margin:auto;
        color:#FFF;
	}
}


/* #btnmenu */
#btnmenu{
	width:50px;
	height:50px;
	margin:0;
	padding:0;
	position:relative;
	z-index:101;
	cursor:pointer;
}
#btnmenu span{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 22px;
	height: 2px;
	border-radius:2px;
	margin: -1px 0 0 -11px;
	background: #555;
	-webkit-transition: .2s;
	-moz-transition: .2s;
	-ms-transition: .2s;
	-o-transition: .2s;
	transition: .2s;
}
#btnmenu span:before,
#btnmenu span:after{
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 22px;
	height: 2px;
	background: #555;
	border-radius:2px;
	-webkit-transition: .3s;
	transition: .3s;
}

#btnmenu span:before{
	margin-top: -10px;
}

#btnmenu span:after{
	margin-top: 7px;
}
#btnmenu.close span{
	width:50px;
	height:50px;
	margin-top:-25px;
	margin-left:-25px;
	box-shadow:none;
	background-color:transparent;
	border-radius:0;
}

#btnmenu.close span:before,
#btnmenu.close span:after{
	margin-top: 0;
	background-color:#555;
}

#btnmenu.close span:before{
	width: 22px;
	height: 2px;
	margin: -1px 0 0 15px;
	border-radius:2px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
#btnmenu.close span:after{
	width: 22px;
	height: 2px;
	margin: -1px 0 0 15px;
	border-radius:2px;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
}


/* article */
article{
}

/* .cont */
.cont{
	padding:5% 0 12%;
}

/* .bottom_nav */
.bottom_nav{
}
.bottom_nav div{
	aspect-ratio:800 / 270;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
	-webkit-flex-direction: column;
	flex-direction: column;
}
.bottom_nav .recruit{
	background:url(../images/bottom_nav_recruit.png)no-repeat;
	background-size:cover;
}
.bottom_nav .company{
	background:url(../images/bottom_nav_company.png)no-repeat;
	background-size:cover;
}
.bottom_nav .apply{
	aspect-ratio:800 / 370;
	background:url(../images/bottom_nav_apply.png)no-repeat;
	background-size:cover;
}
.bottom_nav div dt{
	line-height:1.6;
	font-size:3.1vw;
	font-weight:900;
	color:#fff;
	letter-spacing:0.1em;
	text-indent:0.1em;
}
.bottom_nav .recruit dt{
	text-shadow:1px 1px 5px rgba(220,123,126,0.8);
}
.bottom_nav .company dt{
	text-shadow:1px 1px 5px rgba(0,164,160,0.8);
}
.bottom_nav .apply dt{
	font-size:2.3vw;
	font-weight:bold;
}
.bottom_nav div dd .btn,
.bottom_nav div dd .arrow_btn{
	margin:7% auto 0;
}
.bottom_nav div dd .arrow_btn{
	width:10em;
	font-size:1.75vw;
	letter-spacing:0.2em;
}
.bottom_nav .apply dd{
} 
.bottom_nav .apply dd .btn{
    border: none;
}   
@media screen and (max-width:768px){
	.bottom_nav div dt{
		font-size:6.2vw;
	}
	.bottom_nav .apply dt{
		font-size:4.6vw;
	}
	.bottom_nav div dd .arrow_btn{
		font-size:4.0vw;
	}
	.bottom_nav .apply dd{
        width: 100%;
	} 
	.bottom_nav .apply dd .btn{
	}   
}


/* footer */
footer{
	padding-top:5%;
}
footer .foot_logo{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
	align-items: center;
}
footer .foot_logo img{
	width:13.2%;
	line-height:0;
}
footer .foot_logo span{
	margin-left:0.5em;
	line-height:1.5;
	font-size:1vw;
	text-align:left;
}

footer .foot_nav{
	width:70%;
	margin:7% auto 0;
}
footer .foot_nav ul{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}
footer .foot_nav ul li{
	line-height:1.8;
	padding:0 1em;
	font-size:1.25vw;
}
footer .copy{
	margin-top:5%;
	padding:1em 0;
	font-size:0.8vw;
	letter-spacing:0.1em;
	text-indent:0.1em;
	color:#8f8f90;
}

@media screen and (max-width:768px){
	footer{
		padding-top:7%;
	}
	footer .foot_logo img{
		width:18%;
	}
	footer .foot_logo span{
		font-size:2.8vw;
	}
	footer .foot_nav{
		width:auto;
	}
	footer .foot_nav ul li{
		font-size:3.2vw;
	}
	footer .copy{
		font-size:2.4vw;
	}
}


/* top_top */
#topbtn{
	width:50px;
	line-height:50px;
	font-family:sans-serif;
	font-size:18px;
	border-radius:50%;
	color:#fff;
	background-color:rgba(0,0,0,0.5);
	position:fixed;
	z-index:90;
	right:30px;
	bottom:-150px;
	-webkit-transition: bottom 0.8s;
	-moz-transition: bottom 0.8s;
	-ms-transition: bottom 0.8s;
	transition: bottom 0.8s;
}
@media screen and (max-width:768px){
	#topbtn{
		width:40px;
		line-height:40px;
		right:20px;
	}
}


/* fadein */
.fadein {
	opacity : 0;
	-webkit-transform : translate(0, 70px);
	transform : translate(0, 70px);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_0 {
	opacity : 0;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_l {
	opacity : 0;
	-webkit-transform : translate(-100px, 0);
	transform : translate(-100px, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.fadein_r {
	opacity : 0;
	-webkit-transform : translate(100px, 0);
	transform : translate(100px, 0);
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
}
.delay1 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.2s;
	transition-delay : 0.2s;
}
.delay2 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.4s;
	transition-delay : 0.4s;
}
.delay3 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.6s;
	transition-delay : 0.6s;
}
.delay4 {
	-webkit-transition-property: transform,opacity;
	transition-property : transform,opacity;
	-webkit-transition-duration: 1s;
	transition-duration : 1s;
	-webkit-transition-delay: 0.8s;
	transition-delay : 0.8s;
}

.fadein.scrollin,
.fadein_0.scrollin,
.fadein_l.scrollin,
.fadein_r.scrollin{
	opacity : 1;
	-webkit-transform : translate(0, 0);
	transform : translate(0, 0);
}
