@charset "utf-8";
/*=================================================================================*/
/** 768px未満 スマホサイズ画面 ＜これが基本＞ **/

#main{
	width:100%;
	margin:0 auto;
	overflow: hidden;
	/*box-shadow: 0 0 4px #4D3A33;*/
	position: relative;
}

/***  ロゴ  ***/
.page_logo{

	display:block;
	width:30%;
	z-index:150;
	bottom:0.3em;
	right:0.3em;
}




/*==================
	電話番号タップ
==================*/
a.telLink0 { cursor: pointer; pointer-events: auto; text-decoration:underline; color:#4D4D4D; }

/*==================
	SVG
==================*/
svg {
	max-height:30px;
  }
img[src$=".svg"] {
	width: 100%;
}

.disp_fix { position:fixed; top:0; left:0; z-index:500; width:100%; }

/*============
nav
=============*/
.nav_s {
	display: block;
	position: fixed;
	top: 0;
	right: -90%;
	width: 90%;
	bottom: 0;
	background: #000000;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: 3;
	opacity: 0;
	overflow: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.nav_s::-webkit-scrollbar{
	display: none;
}

.open .nav_s {
	right: 0;
	opacity: 1;
}
.nav_s .inner {
	padding: 4em 2em 2em;
	box-sizing: border-box;
}

.nav_s .inner>ul {
	list-style: none;
	margin: 0;
}
.nav_s .inner>ul>li {
	position: relative;
	padding:0.7em 1em;
	border-bottom:1px #D6D6D6 solid;
}
.nav_s .inner>ul>li>a {
	color: #FFFFFF;
	text-decoration: none;
	transition-duration: 0.2s;
	display: block;
	width:100%;
}
.nav_s .inner>ul>li>a:hover {
	color: #666666;
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  /*width: 30px;
  /height: 30px;*/
  transition: all .5s;
  cursor: pointer;
  z-index: 30;
	position: relative;

}

.nav_s {
	right: -80%;
	width: 80%;
	max-width: 400px;
}


/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn2{
  position: relative;/*ボタン内側の基点となるためrelativeを指定*/
  width: 70px;
    height:70px;
  cursor: pointer;
}
  
/*ボタン内側*/

.openbtn2 span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 13px;
    height: 2px;
  background-color: #B09A80;
  }

.black .openbtn2 span{
  background-color: #B09A80;
	
}


.openbtn2 span:nth-of-type(1) {
  top:22px; 
    width: 50%;
}

.openbtn2 span:nth-of-type(2) {
  top:34px;
    width:50%;
}

.openbtn2 span:nth-of-type(3) {
  top:48px;
    width:50%;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn2.activemenu span:nth-of-type(1) {
    top: 25px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    width: 45%;
  background-color: #FFFFFF;
}

.openbtn2.activemenu span:nth-of-type(2) {
    width: 0;
}
.openbtn2.activemenu span:nth-of-type(3) {
    top: 37px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 45%;
  background-color: #FFFFFF;
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F7F7F7;
  opacity: .5;
  z-index: 2;
  cursor: pointer;
}



/*==========================
	ヘッダー
=========================***/

.navi{
	position: relative;
	width: 100%;
}
.navi>ul{
	display: flex;
	flex-wrap:wrap;
	width:100%;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.navi>ul>li{
	padding:0 1em;
	box-sizing: border-box;
}

.navi>ul>li a{
	text-decoration: none;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;

	}
.navi>ul>li a:hover{
	color:#A28E80;
}

.navi>ul>li a:hover img{
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.navi a{
	color:#666666;
	text-decoration: none;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.navi a:hover{
	color:#A28E80;
}

.hmb_block  a{
	display: block;
}
.hmb_block  a.toggle{
	cursor: pointer !important;
	
}

.hmb_block .inner {
	width:100%;
	padding: 0.5em 0 1em;
}
.hmb_block .inner li{
	padding:0.5em 0;
}



.hmb_block .hmb_block_title .hmb_h3{
	display: block;
	padding:0 3em 0 0;
	position: relative;
}

.hmb_block .hmb_block_title .hmb_h3:after {
	position: absolute;
	content: '';
	background:url("../img/common/hbg_plus.svg") no-repeat;
	background-size: contain;
	width:9px;
	height:6px;
	top: 50%;
	right: 2%;
	transform: translate(-50%,-50%);
}

.hmb_block .hmb_block_title.active .hmb_h3:after {
	position: absolute;
	content: '';
	background:url("../img/common/hbg_mainasu.svg") no-repeat;
	background-size: contain;
	width:9px;
	height:6px;
	top: 50%;
    right: 2%;
    transform: translate(-50%,-50%);
}



.head_block>ul{
	display: flex;
	flex-wrap:wrap;
	width:100%;
	justify-content:space-between;
}

.head_block>ul>li:nth-child(1){/*1600 288*/
	max-width: 288px;
	width:18%;
	position: relative;
}
.head_block>ul>li:nth-child(2){/*1600 510*/
	max-width: 510px;
	width:31.875%;
}

.navi_cont>ul{
	display: flex;
	flex-wrap:wrap;
	width:100%;
	align-items: center;
	justify-content: flex-end;
}
.navi_cont>ul>li{
	width: 100%;
	box-sizing: border-box;
	max-width: 50px;
}

.side_menu_navi>ul>li a,
.side_menu_navi a{
	display: inline-block;
	color:#FFFFFF;
	text-decoration: none;
	font-size: 120%;
	position: relative;
	padding:0 0 0 22px;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
.side_menu_navi a{
	padding:0 0 10px 42px;
	
}

.side_menu_navi a{
	color:#333333;
	
}

.side_menu_navi>ul>li a:hover{
	color:#666666;
}

.side_menu_navi a:hover{
	color:#B09A80;
}


.side_menu_navi>ul>li a::before,
.side_menu_navi a::before{
	content: '';
	background:#666666;
	width:10px;
	height:1px;
	position: absolute;
	top:50%;
	left:0;
	-webkit-transition: .4s ease-in-out;
	transition: .4s ease-in-out;
}

.side_menu_navi a::before{
	width:20px;
	
}

.side_menu_navi>ul>li a:hover::before{
	width:13px;
}
.side_menu_navi a:hover::before{
	width:26px;
}

.side_menu_insta{
	position: relative;
}

.side_menu_insta a{
	padding:0.5em 1em 0.5em 2.5em;
	text-decoration: none;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	color:#FFFFFF;
}

.side_menu_insta a:hover{
	color:#666666;
}

.side_menu_insta::before{
	content: '';
	background: url("../img/common/side_insta.svg") no-repeat;
	background-size: contain;
	width:23px;
	height:23px;
	position: absolute;
	top: 53%;
	left: 0.5em;
	transform: translate(-50%,-50%);
}


.side_menu_tel{
	padding:0.5em 0;
}
.side_menu_tel a{
	max-width: 300px;
	margin:0 auto !important;
	display: block !important;
	background:linear-gradient(to right,rgba(229, 0, 18, 1),rgba(238, 162, 137, 1));
	border-radius: 50px;
	padding:0.5em 1em 0.5em 2em !important;
	box-sizing: border-box;
	color:#FFFFFF;
	text-align: center;
	text-decoration: none;
	position: relative;
}

.side_menu_tel a::before{
	content: '';
	background: url("../img/common/side_tel.svg") no-repeat;
	background-size: contain;
	width:16px;
	height:16px;
	position: absolute;
	top: 50%;
	left: 2em;
	transform: translate(-50%,-50%);
}

.side_menu_time,
.side_menu_map,
.side_menu_time_808080,
.side_menu_map_808080,
.side_menu_tel_808080{
	position: relative;
	padding:0.5em 1em 0.5em 2em;
}

.side_menu_time::before,
.side_menu_map::before,
.side_menu_time_808080::before,
.side_menu_map_808080::before,
.side_menu_tel_808080::before{
	content: '';
	background:url("../img/common/side_time.svg") no-repeat;
	background-size: contain;
	width:16px;
	height:16px;
	position: absolute;
	top: 0.8em;
	left: 0;
}
.side_menu_map::before{
	content: '';
	background:url("../img/common/side_map.svg") no-repeat;
	background-size: contain;
	width:14px;
	height:19px;
}
.side_menu_map_808080::before{
	content: '';
	background:url("../img/top/top_map.svg") no-repeat;
	background-size: contain;
	width:16px;
	height:20px;
}
.side_menu_tel_808080::before{
	content: '';
	background:url("../img/top/top_tel.svg") no-repeat;
	background-size: contain;
	width:18px;
	height:18px;
}
.side_menu_time_808080::before{
	content: '';
	background:url("../img/top/top_time.svg") no-repeat;
	background-size: contain;
	width:18px;
	height:18px;
}

.side_menu_time>dl,
.side_menu_time_808080>dl{
	display: flex;
	flex-wrap:wrap;
	width:100%;
}
.side_menu_time>dl>dt,
.side_menu_time_808080>dl>dt{
	width:25%;
}
.side_menu_time>dl>dd,
.side_menu_time_808080>dl>dd{
	width:75%;
	padding:0 0 0 0.5em;
	box-sizing: border-box;
}


.recr_kote{
	position: fixed;
	width:100%;
	max-width: 560px;
	margin:0 auto;
	padding:0.5em 0;
	background:linear-gradient(to top,rgba(0,0,0,0.4),rgba(0,0,0,0));
	bottom:0;
	z-index: 10;
}
.recr_kote>ul{
	display: flex;
	flex-wrap:wrap;
	width:100%;
	justify-content:space-between;
}

.recr_kote>ul>li{
	width:80%;/*400 720*/
	margin:0 auto;
	box-sizing: border-box;
	position: relative;
}

/***  ページTOP  ***/
#page_tops {
	position: fixed;
	display:block;
	width:13%;
	z-index:150;
	bottom:5em;
	right:0.3em;
}



/*サイドのブロック　ロゴ*/
.side_head{/*440*/
	position: fixed;
	width:25%;
	max-width:440px;
	top:1em;
	left:1%;
}

.side_head_logo{
	max-width: 200px;
	width:40%;
}

/*サイドのブロック　メニュー*/
.side_menu{/*315*/
	position: fixed;
	width:25%;
	max-width:315px;
	top:1em;
	right:1%;
}







/*=================================================================================*/
/** 768px以上　タブレット縦　サイズ画面  **/
@media (min-width : 560px) {

/*==================
  電話番号タップ
==================*/
a.telLink0 { display:inline-block; cursor: default; pointer-events: none; text-decoration:none; margin: 0; padding: 0;}


/***  ページTOP  ***/
#page_tops {
	width:90px;
	bottom:1em;
}	
	
#main{
	max-width: 560px;
}
	
	
}

@media (min-width : 1200px) {

}


@media (min-width : 1500px) {

	
/*サイドのブロック　ロゴ*/
.side_head{/*440*/
	width:30%;
	max-width:440px;
}


/*サイドのブロック　メニュー*/
.side_menu{/*315*/
	width:30%;
	max-width:315px;
	right:9%;
}

}

