@charset "utf-8";

/* ========================================
common.css
------------------------------------------

======================================== */
* -webkit-transform-style: preserve-3d;
/* ---------------------------------------- 
 - html
---------------------------------------- */
html,
body {
  background:#fff;
  margin: 0;
  padding: 0;
}
html{
    font-size: 62.5%;
}
html.hamburger-active { /* ハンバーガーメニュー */
	height: 100%;
	overflow: hidden;
	touch-action: none;
}
@media screen and (max-width: 320px) {
	html{
		font-size: 52.5%;
	}
}

/* ---------------------------------------- 
 - img
---------------------------------------- */
img {
	width: 100%;
}

/* ---------------------------------------- 
 - body
---------------------------------------- */
body{
	font-family: 'Lato', 'Noto Sans JP', 'Yu Gothic Medium', '游ゴシック Medium', 'Yu Gothic', '游ゴシック体', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	font-size:18px;
	font-size:1.8em;
	color:#272a44;
	line-height:2.0;
	-webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
}

/* font */
.ft-NotoSans {
	font-family: 'Noto Sans JP', sans-serif;
}
.ft-Lato {
	font-family: "Lato", sans-serif;
}
.ft-Barlow {
	font-family: "Barlow", sans-serif;
	letter-spacing: 0.05em;
}
.fc-red {
	color:#d90429;
}

/* inview */
.inview {
    transition: 0.8s;
    opacity: 0;
    /*transform: translate(0,20px);*/
}
.inview.is-mv {
    opacity: 1.0;
    /*transform: translate(0,0);*/
}

/* telLink（スマホ用電話リンク） */
.telLink a {
	text-decoration: underline;
}

/* anchor-target（アンカーリンク箇所） */
.anchor-target { /* margin,paddingを使用しない箇所のみ */
	padding-top: 100px; 
	margin-top: -100px;
}

/* ---------------------------------------- 
 - #container
---------------------------------------- */
#container {
	width:100%;
	margin:0 auto;
}
#container .pc {
	display:inline-block !important;
}
#container .sp {
	display:none !important;
}
@media screen and (max-width: 768px) {
	#container .sp {
		display:inline-block !important;
	}
	#container .pc {
		display:none !important;
	}
}

#container .flex {
    display: flex;
}
#container .flex.wrap {
  	flex-wrap: wrap;
}

/* ---------------------------------------- 
 - header
---------------------------------------- */
#header{
	position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
	width: 100%;
	height:100px;
	background: #fff;
	z-index: 100;
}
#header .header-inner{
	width:100%;
	height:100%;
	margin:0 auto;
	position:relative;
   	display: flex;
   	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
#header .logo{
	width:50%;
	max-width:370px;
	margin-left: 30px;
}
#header .logo a{
    transition: opacity .3s;
}
#header .logo a:hover{
	opacity: 0.6;
}
@media screen and (max-width: 768px) {
	#header{
		height:60px;
	}
	#header .logo{
		max-width:220px;
		margin-left: 3%;
	}
}

/* hamburger */
.hamburger {
	width: 100px;
	height: 100px;
	position: fixed;
    top: 0;
    right: 0;
	cursor: pointer;
	z-index: 800;
	background: #272a44;
    transition: .3s;
}
.hamburger i {
	position: absolute;
    top: 50%;
	left: 50%;
    display: block;
    width: 50px;
    height: 2px;
    margin: 0 auto;
    transform: translate(-50%,-50%);
    background: #fff;
	margin-top: -18px;
}
.hamburger i::before {
    display: block;
    width: 50px;
    height: 2px;
    margin-top: 18px;
    content: '';
    transition: .3s;
    background: #fff;
}
.hamburger i::after {
	display: block;
    width: 50px;
    height: 2px;
    margin-top: 16px;
    content: '';
    transition: .3s;
    background: #fff;
}
.hamburger.is-active {
	background: none;
	z-index: 110;
}
.hamburger.is-active i::before {
    display:none;
}
.hamburger.is-active i {
    transform: rotate(-45deg);
	margin-top: 0px;
    margin-left: -20px;
	background: #272a44;
}
.hamburger.is-active i::after {
	transform: rotate(90deg);
	margin-top: 0;
	background: #272a44;
}
@media screen and (max-width: 768px) {
	.hamburger {
		width: 60px;
		height: 60px;
	}
	.hamburger i {
		width: 30px;
		margin-top: -11px;
	}
	.hamburger i::before {
		width: 30px;
    	margin-top: 11px;
	}
	.hamburger i::after {
		width: 30px;
    	margin-top: 11px;
	}
}

/* ---------------------------------------- 
 - gnavi
---------------------------------------- */
#gnavi{
	background: #bec4cc;
	margin:0 auto;
	position: fixed;
	top: 0;
	right: -81vw;	
	text-align:left;
	overflow: auto;
	width: 80vw;
	max-width: 480px;
    height: 100%;
	z-index: 12;
	opacity: 0;
	padding: 100px 0 30px;
}
#gnavi a{
	position: relative;
	display: block;
	text-decoration: none;
    transition: opacity .3s;
}
#gnavi a:hover{
	opacity: 0.6;
}
#gnavi ul.gnavi-list{
	width:100%;
	margin: 0 auto;
}
#gnavi .accordion-title {
	position: relative;
	cursor: pointer;
	font-size: 2.0rem;
	font-weight: bold;
	padding: 25px 40px;
	background-color: #bec4cc;
}
#gnavi .accordion-title::before {
	border-bottom: solid 1px #fff;
	content: "";
	display: block;
	width: calc(100% - 80px);
	position: absolute;
	left: 40px;
	bottom: 0;
}
#gnavi .accordion-title::after {
	border-right: solid 4px #272a44;
	border-top: solid 4px #272a44;
	content: "";
	display: block;
	position: absolute;
	right: 55px;
	top: 25px;
	transform: rotate(135deg);
	transition: transform .3s ease-in-out, top .3s ease-in-out;
	width: 28px;
	height: 28px;
}
#gnavi .accordion-title.open::after {
	top: 45%;
	transform: rotate(-45deg);
}
#gnavi .accordion-content {
	display: none;
	padding: 0 40px;
	background-color: #edf2f4;
}
#gnavi .accordion-content > ul.list {
	font-size: 1.4rem;
  	line-height: 1.5;
}
#gnavi .accordion-content > ul.list li {
  	padding: 25px 0;
	position: relative;
}
#gnavi .accordion-content > ul.list li::before {
	border-bottom: solid 1px #272a44;
	content: "";
	display: block;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
#gnavi .accordion-content > ul.list li:last-child::before {
	display: none;
}
/* #gnavi-overlay */
#gnavi-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 11;
	background-color: #222;
	opacity: 0;
	visibility: hidden;
	transition: all .6s;
	cursor: pointer;
	display: block;
}
#gnavi-overlay.is-active {
	opacity: .5;
	visibility: visible;
}
@media screen and (max-width: 768px) {
	#gnavi{
		right: -101%;
		width: 100%;
		max-width: 100%;
		padding: 60px 0 20px;
	}
	#gnavi .accordion-title {
		font-size: clamp(1.6rem, 4.8vw, 2.0rem);
		padding: 15px 8%;
	}
	#gnavi .accordion-title::before {
		width: calc(100% - 16%);
		left: 8%;
	}
	#gnavi .accordion-title::after {
		border-width: 3px;
		right: 12%;
		top: 20px;
		width: 20px;
		height: 20px;
	}
	#gnavi .accordion-content {
		padding: 0 8%;
	}
	#gnavi .accordion-content > ul.list li {
		padding: 20px 0;
	}
}

/* ---------------------------------------- 
 - #contents
---------------------------------------- */
#contents {
	width:100%;
	margin:0 auto;
	box-sizing:border-box;
	padding-top: 100px;
}
@media screen and (max-width: 768px) {
	#contents {
		padding-top: 60px;
	}
}

/* telLink */
#contents .telLink a {
	text-decoration: underline;
}

/* ---------------------------------------- 
 - oc-box 
---------------------------------------- */
#oc-box{
	position:relative;
    background: #f7d60f;
}
#oc-box .oc-box-inner {
	position:relative;
	width:86%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 75px 0 80px;
}
#oc-box .ttl {
    font-size: 8.0rem;
	font-weight: bold;
	line-height: 1.2;
	margin-bottom: 30px;
	text-shadow: #fff 4px 5px;
}
#oc-box .lead {
    font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 50px;
}
#oc-box .btn {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
    z-index: 0;
    transition: opacity .3s;
}
#oc-box .btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 8px;
    left: 8px;
    background: #272a44;
    z-index: -1;
}
#oc-box .btn:hover{
	opacity: 0.6;
}
#oc-box .btn a {
	display: block;
	background: #fff;
	font-size: 2.0rem;
	font-weight: bold;
	color:#272a44;
	text-decoration: none;
	padding: 0.25em;
	border:solid 1px #272a44;
	position: relative;
}
#oc-box .btn a::before,
#oc-box .btn a::after{
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    top: 0;
    bottom: 0;    
	margin: auto;
	border-radius: 9px;
    background: #272a44;
}
#oc-box .btn a::before {
    left: 18px;
}
#oc-box .btn a::after {
    right: 18px;
}
@media screen and (max-width: 768px) {
	#oc-box .oc-box-inner {
		padding: 40px 0;
	}
	#oc-box .ttl {
		font-size: clamp(3rem, 11vw, 8.0rem);
        margin-bottom: 15px;
        text-shadow: #fff 3px 4px;
	}
	#oc-box .lead {
		font-size: clamp(1.6rem, 4.2vw, 2.4rem);
		margin-bottom: 25px;
	}
	#oc-box .btn::after {
		top: 5px;
		left: 5px;
	}
	#oc-box .btn a {
		font-size: clamp(1.6rem, 4vw, 2.0rem);
	}
	#oc-box .btn a::before,
	#oc-box .btn a::after{
		width: 7px;
		height: 7px;
		border-radius: 7px;
	}
}

/* ---------------------------------------- 
 - footer
---------------------------------------- */
#footer {
	position:relative;
}
#footer .footer-inner {
	position:relative;
	width:94%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 70px 0;
}
#footer .logo {
	width: 75%;
	max-width:400px;
	margin: 0 auto 15px;
}
#footer .address {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.6;
	color: #222;
}
@media screen and (max-width: 768px) {
	#footer .footer-inner {
		padding: 40px 0;
	}
	#footer .address {
		font-size: 2.4rem;
		font-size: clamp(1.6rem, 4vw, 2.4rem);
	}
}

/* ---------------------------------------- 
 - #recruitFooter
---------------------------------------- */
#recruitFooter {
	width: 100%;
	text-align:left;
	margin: 0 auto;	
	position: relative;
	box-sizing: border-box;
}
#recruitFooter #recruitFooter-inner{
	padding:30px 3%;
}
#recruitFooter #recruitFooter-inner a {
	color:#000;
}
#recruitFooter #recruitFooter-inner img {
	width:auto;
}