@charset "utf-8";

/* ---------------------------------------- 
 - html
---------------------------------------- */
html,
body {
  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', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;*/
	font-family: 'Lato', 'Noto Sans JP', sans-serif;
	font-size:16px;
	font-size:1.6em;
	color:#222;
	line-height:2.0;
	letter-spacing: 0.05em;
	text-size-adjust: 100%; /* 文字の拡大縮小を防ぐ */
}

/* font */
.ft-train {
	font-family: 'Train One', system-ui;
}

/* inview */
.inview {
    transition: 0.8s;
    opacity: 0;
    transform: translate(0,20px);
}
.inview.mv {
    opacity: 1.0;
    transform: translate(0,0);
}

/* telLink（スマホ用電話リンク） */
.telLink a {
	text-decoration: underline;
}

/* PC&SP切り替え */
@media screen and (min-width: 769px) {
	.pc-none {
		display:none !important;
	}
}
@media screen and (max-width: 768px) {
	.sp-none {
		display:none !important;
	}
}

/* ---------------------------------------- 
 - #loading
---------------------------------------- */
#loading {
	position: fixed;
	z-index: 1000;
	background-color: #ffffff;
	width:100%;
	height: 100%;
	top:0;
	left: 0;
	animation: disappear 0.8s ease-in-out 0.8s both;
}
@keyframes disappear {
	0% {
		display: block;
		opacity: 1;
	}
	99% {
		display: block;
		opacity: 0;
	}
	100% {
		display: none;
		opacity: 0;
		visibility: hidden;
	}
}
html.onload body div#loading {
	animation-play-state: paused;
}
#loading .loader,
#loading .loader:after {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
#loading .loader {
	display:none;
	z-index: 1000;
	margin: auto;
	margin-top: -25px;
	margin-left: -25px;
	font-size: 5px;
	position: absolute;
	top:50%;
	left:50%;
	text-indent: -9999em;
	border-top: 2px solid rgba(204, 204, 204, 0.2);
	border-right: 2px solid rgba(204, 204, 204, 0.2);
	border-bottom: 2px solid rgba(204, 204, 204, 0.2);
	border-left: 2px solid #ccc;
	transform: translateZ(0);
	animation: load8 1.1s infinite linear;
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ---------------------------------------- 
 - header
---------------------------------------- */
#header{
	text-align: center;
    position: fixed;
	top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
	height: 65px;
	background: #fff;
}
#header a{
    transition: .3s;
}
#header a:hover{
	opacity: 0.6;
}
#header #header_inner{
	width: 100%;	
	height: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
	border-bottom: solid 1px #c3c3c3;
    z-index: 1000;
}
#header .header_logo{	
	width: 33%;
    max-width: 193px;
	margin-left: 35px;
	position: relative;
    z-index: 110;
}
#header .header_logo a{
	text-decoration: none;
	display: flex;
    align-items: center;
}
#header .header_logo a img{
	display: inline-block;
	backface-visibility: hidden;
}
#header .header_department{	
	width: 40%;
    max-width: 240px;
	margin-right: 20px;
	position: relative;
    z-index: 110;
}
#header .header_request{
	width: 145px;
	height: 100%;
	margin-right: 95px;
	border-left: solid 1px #c3c3c3;
	border-right: solid 1px #c3c3c3;
	position: relative;
    z-index: 110;
}
#header .header_request a{
	width: 100%;
	height: 100%;
	position: relative;
    transition: .3s;
	text-decoration: none;
	font-size: 1.7rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 18px;
}
#header .header_request a:hover{
	opacity: 0.7;
}
#header .header_request a img{
	display: none;
}
#header .header_request a span{
	position: relative;
	display: inline-block;
	padding-left: 30px;
	word-break:keep-all;
}
#header .header_request a span::before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	width: 20px;
	height: 16px;
	background-image: url("../images/common/ico_request.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
#header .header_notice{
	margin-right: auto;
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: left;
	text-indent: -1.0em;
	margin-left: 1.0em;
	padding-right: 30px;	
	padding-left: 30px;
}
@media screen and (max-width: 1000px) {
	#header .header_request{
		width: 20%;
		max-width: 145px;
		margin-right: 95px;
	}
	#header .header_request a{
		font-size: 1.8vw;
		padding: 0 15px;
	}
	#header .header_request a span{
		padding-left: 25px;
	}
	#header .header_request a span::before{
		width: 18px;
    	height: 14px;
	}
	#header .header_notice{
		padding-left: 2%;
		padding-right: 2%;
		font-size: 1.2vw;
		width: 23%;
	}
}
@media screen and (max-width: 768px) {
	#header .header_logo{
		margin-left: 4%;
	}
	#header .header_department{
		margin-right: 3%;
   		margin-left: 3%;
	}
	#header .header_request{
		width: 20%;
		margin-right: calc(30px + 8%);
	}
	#header .header_request a {
		padding: 0 12%;
	}
	#header .header_request a span{
		display: none;
	}
	#header .header_request a img{
		display: block;
		max-height: 45px;
	}	
	#header .header_notice{
		padding-left: 1%;
		padding-right: 0;
		font-size: 1.4vw;
	}
}
@media screen and (max-width: 600px) {
	#header .header_notice{
		font-size: 2.5vw;
		font-size: 10px;
		letter-spacing: 0;
		position: absolute;
		bottom: 0;
		left: 4%;
		width: auto;
		padding-left: 0;
	}
}
@media screen and (max-width: 480px) {
	#header .header_notice{
		font-size: 2.5vw;
	}
}

/* hamburger */
.hamburger {
	width: 30px;
	height: 24px;
	position: absolute;
    top: 50%;
    right: 35px;
	cursor: pointer;
	z-index: 1000;
    transform: translate(0,-50%);
}
.hamburger i {
	position: absolute;
    top: 0;
	left: 0;
    display: block;
    width: 30px;
    height: 2px;
    margin: 0 auto;
    background: #222;
}
.hamburger i::before,
.hamburger i::after{
	display: block;
    width: 30px;
    height: 2px;
    margin-top: 8px;
    content: '';
    transition: .3s;
    background: #222;
}
.hamburger i::before{
    margin-top: 10px;
}
.hamburger.active {
	position: fixed;
	top: 38px;
}
.hamburger.active i {
	margin-top: 5px;
    transform: rotate(-45deg);
	background: #222 !important;
}
.hamburger.active i::before {
	display: none;
}
.hamburger.active i::after {
	transform: rotate(90deg);
	margin-top: 0;
	background: #222 !important;
}
.hamburger:hover {
	opacity:0.6;
}
@media screen and (max-width: 768px) {
	.hamburger {
		right: 4%;
	}
	.hamburger.active {
		right: 4%;
	}
}

/* ---------------------------------------- 
 - gnavi
---------------------------------------- */
#gnavi{
	background:#fff;
	margin:0 auto;
	position: fixed;
	top: 0;
	left: 0;	
	text-align:left;
	overflow: auto;
	width: 100%;
    height: 100%;
    transition: .8s;
	opacity: 0;
    z-index: 1;
    visibility: hidden;
}
#gnavi.active{
	opacity: 1;
    z-index: 100;
    visibility: visible;
}
#gnavi a{
    transition: .3s;
	text-decoration: none;
}
#gnavi a:hover{
	opacity: 0.6;
}
#gnavi #gnavi_inner{
	width:90%;
	max-width: 1200px;
	margin:0 auto;
	padding:220px 0 60px;
}
#gnavi ul.list{
    display: flex;
    justify-content: space-between;
	flex-wrap: wrap;
}
#gnavi ul.list > li{
	width: 48%;
	border-bottom:solid 1px #c3c3c3;
	padding: 20px 0;
}
#gnavi ul.list > li .en{
	display: block;
	font-size: 1.4rem;
}
#gnavi ul.list > li .jp{	
	font-size: 2.6rem;
	line-height: 1.6;
	font-weight: 700;
}
#gnavi ul.list > li > a{
	display: block;
	position: relative;
	margin-bottom: 5px;
}
#gnavi ul.list > li > a::before,
#gnavi ul.list > li > a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
#gnavi ul.list > li > a::before{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #7f7f7f;
}
#gnavi ul.list > li > a::after{
	right: 29px;
    box-sizing: border-box;
    width: 14px;
    height: 8px;
    border: 4px solid transparent;
    border-left: 10px solid #fff;
}
#gnavi ul.sub{
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 1.6rem;
	font-weight: 500;
}
#gnavi ul.sub > li{
	margin-right: 30px;
}
#gnavi ul.sub > li:last-child{
	margin-right: 0;
}
#gnavi ul.sub > li a{
	display: block;
	position: relative;
	padding-right: 25px;
}
#gnavi ul.sub > li a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	content: "";
	vertical-align: middle;	
	right: 0;
    width: 15px;
    height: 10px;
    border: 5px solid transparent;
    border-left: 10px solid #c3c3c3;
}
@media screen and (max-width: 768px) {
	#gnavi #gnavi_inner{
		padding:120px 0 60px;
	}
	#gnavi ul.list{
		display: block;
	}
	#gnavi ul.list > li{
		width: 100%;
		padding: 15px 0;
	}
	#gnavi ul.list > li .en{
		font-size: 1.2rem;
	}
	#gnavi ul.list > li .jp{	
		font-size: 2.2rem;
	}
	#gnavi ul.sub > li{
		margin-right: 15px;
	}
}
@media screen and (max-width: 480px) {
	#gnavi ul.list > li > a::before,
	#gnavi ul.list > li > a::after{
		right: 0;
	}
	#gnavi ul.list > li > a::before{
		width: 25px;
		height: 25px;
	}
	#gnavi ul.list > li > a::after{
		right: 4px;
		box-sizing: border-box;
		width: 12px;
		height: 6px;
		border: 4px solid transparent;
		border-left: 8px solid #fff;
	}
	#gnavi ul.sub{
		font-size: 3.3vw;
    	letter-spacing: 0;
	}
}

/* ---------------------------------------- 
 - #contents
---------------------------------------- */
#contents {
	width:100%;
	margin:65px auto 0;
	box-sizing:border-box;
	position: relative;
    overflow:hidden;
}

/* ---------------------------------------- 
 - contents（link_btn）共通ボタン
---------------------------------------- */
/* link_btn */
.link_btn a{	
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: .3s;
	text-decoration: none;
	font-size: 3.0rem;
	font-weight: 700;	
	line-height: 1.6;
	width: 100%;
	max-width: 550px;
	padding: 0.6em 35px 0.6em 25px;
	box-sizing: border-box;
	border: solid 2px #7f7f7f;
	background: #fff;
	font-weight: 700;
	margin: 0 auto;
}
.link_btn a:hover{
	opacity: 0.7;
}
.link_btn a::before,
.link_btn a::after{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 25px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.link_btn a::before{
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #7f7f7f;
}
.link_btn a::after{
	right: 29px;
    box-sizing: border-box;
    width: 16px;
    height: 14px;
    border: 7px solid transparent;
    border-left: 16px solid #fff;
}
@media screen and (max-width: 768px) {
	.link_btn a{
		font-size: 4.2vw;
		padding: 0.8em 25px 0.8em 15px;
	}
	.link_btn a::before,
	.link_btn a::after{
		right: 15px;
	}
	.link_btn a::before{
		width: 30px;
		height: 30px;
	}
	.link_btn a::after{
		right: 20px;
		width: 14px;
		height: 9px;
		border: 4px solid transparent;
		border-left: 8px solid #fff;
	}	
}

/* ---------------------------------------- 
 - contents（accordion）アコーディオン
---------------------------------------- */
.accordion {
	margin-bottom: 1.0em;
	line-height: 1.8;
}
.accordion .ttl_box {
    position: relative;
	cursor: pointer;
    transition: .3s;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 88px;
    height: 90px;
    width: 100%;
    box-sizing: border-box;
    border: solid 2px #7f7f7f;
}
.accordion .ttl_box:hover{
	opacity: 0.7;
}
.accordion .ttl_box .ttl_btn {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    display: block;
    width: 40px;
    height: 40px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.accordion .ttl_box .ttl_btn:before,
.accordion .ttl_box .ttl_btn:after {
    display: block;
    content: '';
    background-color: #222;
    position: absolute;
    width: 40px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    transition: all .4s;
}	
.accordion .ttl_box .ttl_btn:before {
    transform: translate(-50%, -50%) rotate(90deg);
}
.accordion .ttl_box.active .ttl_btn:before {
    transform: translate(-50%, -50%) rotate(180deg);
}	
.accordion .txt_box {
    display: none;
    padding: 40px 40px;
    border: solid 2px #7f7f7f;
	border-top:none;
}
@media screen and (max-width: 768px) {
	.accordion .ttl_box {
		font-size: 4.2vw;
		line-height: 53px;
		height: 55px;
	}
	.accordion .ttl_box .ttl_btn {
		right: 5%;
		width: 25px;
		height: 25px;
	}
	.accordion .ttl_box .ttl_btn:before,
	.accordion .ttl_box .ttl_btn:after {
		width: 25px;
	}
	.accordion .txt_box {
		padding: 20px 5%;
	}
}

/* ---------------------------------------- 
 - footer
---------------------------------------- */
#footer {
	position: relative;
	width:100%;
	border-top:solid 15px #e9e9e9;
}
#footer_inner {
	padding: 65px 3%;
}
#footer .copy {
	font-size: 1.6rem;
	color: #666;
	text-align: center;
}
@media screen and (max-width: 768px) {
	#footer {
		border-width: 10px;
	}
	#footer_inner {
		padding: 45px 3%;
	}
	#footer ul.list{
		margin-bottom:20px;
		justify-content: space-between;
	}
	#footer ul.list li {
		width: 48%;
		margin: 0.5em 0;
		box-sizing: border-box;
	}
	#footer ul.list li.w100 {
		width: 100%;
	}
	#footer #footer_menu{
		padding-top:40px;
		padding-bottom:40px;
	}
	#footer ul.footer_nav {
		width: 100%;
	}
	#footer ul.footer_nav li {
		margin: 0.7em 0;
		padding: 0 5%;
	}
	#footer ul.footer_other {
		letter-spacing: 0;
		line-height: 1.6;
	}
	#footer .footer_logo{
		margin-top:35px;
		width: 65%;
	}
	#footer #footer_hotels {
		padding-top: 20px;
	}
	#footer ul.hotels_list{
		font-size: 1.2rem;
		letter-spacing: 0;
	}
	#footer ul.hotels_list li{
		text-align: left;
	}	
	#footer #footer_corporate{
		padding-top: 35px;
	}
	#footer ul.corporate_links {
		font-size: 1.2rem;
		letter-spacing: 0;
	}
	#footer .copy {
		font-size: 1.2rem;
	}
}

/* ---------------------------------------- 
 - #recruitFooter
---------------------------------------- */
#recruitFooter {
	width: 100%;
	text-align:left;
	margin: 0 auto;	
	position: relative;
	box-sizing: border-box;
	border-top: 1px solid #e9e9e9;
}
#recruitFooter #recruitFooter_inner{
	padding:30px 3%;
}
#recruitFooter #recruitFooter_inner a {
	color:#000;
}
#recruitFooter #recruitFooter_inner img {
	width:auto;
}