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


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

svg {
	height:auto;
	max-height:100%;
}
img[src$=".svg"] {
	width: auto;
}

.h1_text{
	display: none;
}


.disp_p { display:none; }/*PC時だけ表示*/
.disp_s { display:block; }/*スマホ時だけ表示*/
.disp_pt { display:none; }/*PC時とタブレット時表示*/
.disp_st { display:block; }/*スマホ時とタブレット時表示*/

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


.navi{
	padding:0 0.8em;
	box-sizing: border-box;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.navi01logo svg{
	fill:#FFFFFF;
}
.navi01logo img{
	width:100%;
}

h1{
	/*color:#FFFFFF;*/
}

.colo_999999 h1{
	color:#999999;
}

.black h1{
	color:#4D4D4D;
}

.navi {
	background: none;
}
.black .navi{
	background:rgba(255,255,255,0.7);
}

.navi01logo svg{
	fill:#FFFFFF;
	width:100%;
}
.black .navi01logo svg{
	fill:#666666;
}

.toggle_btn svg{
	stroke: #B09A80;
}

.navi>ul>li:nth-child(1){/*1600 245*/
	max-width: 139px;
	width:30%;
	margin:0 1%;
}
.navi>ul>li:nth-child(2){/*1600 1015*/
	width:30%;
	max-width: 139px;
	margin:0.3em 0;
}

.navi>ul>li:nth-child(3){/*1600 430*/
	max-width: 430px;
	width:30%;
}

/*============
nav
=============*/
.nav_s {
	display: block;
	position: fixed;
	top: 0;
	right: -90%;
	width: 90%;
	bottom: 0;
	background: #F7F7F7;
	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 0.5em;
	border-bottom:1px #D6D6D6 solid;
}
.nav_s .inner>ul>li>a {
	color: #666666;
	text-decoration: none;
	transition-duration: 0.2s;
	display: block;
	width:100%;
}
.nav_s .inner>ul>li>a:hover {
	color: #A28E80;
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  /*width: 30px;
  /height: 30px;*/
  transition: all .5s;
  cursor: pointer;
  z-index: 30;
	position: relative;

}

.nav_s {
	right: -100%;
	width: 100%;
}


/*ボタン外側※レイアウトによって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: #666666;
	
}


.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: #666666;
}

.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: #666666;
}

/*============
#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%);
}




.head00 {
	width:100%;
	margin:-1px auto 0;
	/*background:#000000;*/
	/*box-shadow: 0px 6px 2px -2px rgba(0,0,0,0.23);*/
	position:relative;
	z-index:2;
}


.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;
}


.foot_logo{
	width:60%;
	margin:0 auto;
}

.foot_icon>ul{
	justify-content:flex-start;
}
.foot01_01>ul:nth-child(1),
.foot01_01>ul:nth-child(2){
	width:46%;
	max-width: 225px;
	padding:0 0 1em;
	box-sizing: border-box;
}
.foot01_01>ul:nth-child(3){
	width:100%;
	padding:0 0 1em;
	box-sizing: border-box;
}

.foot02_01>ul>li a{
	display: inline-block;
	position: relative;
	padding:0.2em 0 0 1em;
}

.foot02_01>ul>li a::before{
	content: '';
	background: url("../img/common/foot_top_arrow.svg") no-repeat;
	position: absolute;
	background-size: contain;
	width:8px;
	height:5px;
	top: 45%;
	left: 0;
	transform: translate(-50%,-50%);
	transform: rotate( 90deg );
}

.foot03_01>ul{
	display: flex;
	flex-wrap:wrap;
	width:100%;
	align-items: center;
}
.foot03_01>ul>li{
	width:20%;
	margin:1em 2%;
	max-width: 31px;
	
}

.nav_s .foot03_01>ul{ 
	justify-content: center;
}

.child{
	display: none;
}

.back_sub{
	background : linear-gradient(135deg, rgba(245, 242, 238, 1) 0%, rgba(241, 228, 224, 1) 90%);
}

/*===============================
  下固定バナー
===============================*/

.kote_bg{
	width:100%;
	position: fixed;
	z-index:5;
	bottom:0;
}
.kote_block_bg img{
	width:100%;
	height:100%;
}


.kote_s>ul{
	display: flex;
	flex-wrap:wrap;
	width:100%;
	justify-content: center;
}

.kote_s>ul>li{
	width:73%;
	max-width: 730px;
	margin:0 auto 0.5em;
}



/***  ページTOP  ***/
#page_tops {
	position: fixed;
	display:block;
	width:auto;
	max-width:15%;
	z-index:50000;
	bottom:4em;
	right:1em;
}


/*==========================
	フッター
=========================***/
.back_foot{
	background:#FFFFFF;
}

.foot_block{
	display: flex;
	flex-wrap:wrap;
	width:100%;
}
.foot_blockimg{
	width:80%;
	margin:3em 10% 1em;
	order: 2;
}
.foot_blocktext{
	width:90%;
	margin:0 auto;
	order: 1;
	font-size: 93%;
}

.foot_blocktext a{
	display: block;
	color:#808080;
	text-decoration: none;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

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

.foot_blocktext>div>ul{
	display: flex;
	flex-wrap:wrap;
	width:100%;
	
}
.foot_blocktext>div>ul>li{
	width:100%;
	padding:1em 0;
	border-bottom:1px solid #D6D6D6;
	
}
.foot_blocktext .hmb_block .inner li{
	padding:0.3em 0;
}


/*=============================
	サブ共通
=============================*/
.pan>ol>li{
	display: inline-block;
	padding:0.5em 0 0.5em 0.5em;
}
.pan>ol>li::after{
	content: '／';
	color:#CCCCCC;
	padding:0 0 0 1em;
}

.pan>ol>li:last-child::after{
	content: '';
	padding:0;
}
.pan>ol>li a{
	color:#B3B3B3;
}
.pan>ol>li{
	color:#666666;
}


.pan>ol>li{
	display: inline;
	padding:0 1em 0 0;
}

.pan>ol>li::after{
	content: '/';
	color:#CCCCCC;
}

.pan {
	color:#CCCCCC; 
}
.pan a,
.pan p {
	display: inline-block;
	padding:0.5em 0.8em 0.5em 0.5em;
	color:#666666;
	text-decoration: none;
}
.pan a {
	color:#B3B3B3;
}

.pan p {
	padding:0 0.8em;
}


.sub_title_bg{
	padding:2em 0;
	position: relative;
	z-index: 2;
}
.sub_title_bg::after{
	content: '';
	background:#EDE8DA;
	border-radius: 20px 0 0 20px;
	position: relative;
	position: absolute;
	top:0;
	right:0;
	width:75%;
	height:100%;
	z-index: -1;
}

.sub_title_block p{
	display: inline-block;
	background: #000000;
	border-radius: 50px;
	color:#FFFFFF;
	padding:0.5em 2.5em;
}


/*=================================================================================*/
/** 768px以上　タブレット縦　サイズ画面  **/
@media (min-width : 768px) {
/*==================
  電話番号タップ
==================*/
a.telLink0 { display:inline-block; cursor: default; pointer-events: none; text-decoration:none; }


.disp_p { display:block; }/*PC時・タブレット時表示*/
.disp_s { display:none; }/*スマホ時だけ表示*/

/***  ヘッダー  ***/
.head00 {
	box-shadow:none;
	background: none;
}
.head_block{
	/*border-bottom:#E6E6E6 1px solid;*/
	position: absolute;
	width: 100%;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.navi_cont>ul>li{
	width: 31%;
	padding:0.2em 1% 0;
	margin:0 0.8%;
}


.nav_s {
	right: -60%;
	width: 60%;
}

.nav_s>.inner {
	padding: 5em 4em 4em;
	box-sizing: border-box;
}


/***  フッター  ***/
	
.foot_blockimg{/*1200 264*/
	width:32%;
	margin:0;
	order: 1;
}
.foot_blocktext{
	width:51%;
	margin:0 0 0 8%;
	order: 2;
}
	
	
.foot_blocktext>div>ul>li{
	width:50%;
	padding:0.2em 0;
	border:none;
}
.foot_blocktext a{
	display: inline-block;
}
	

/*===============================
  下固定バナー
===============================*/

.kote_s>ul>li{
	width:90%;
}

	
/***  ページTOP  ***/
#page_tops {
	bottom:1em;
	right:1em;
}

}

@media (min-width : 1200px) { 

.disp_pt { display:block; }/*PC時だけ表示*/
.disp_st { display:none; }/*スマホ時とタブレット時表示*/

.nav_s {
	right: -30%;
	width: 30%;
}
	
/*header*/

	
.navi>ul>li:nth-child(1){/*1200 139*/
	max-width: 187px;
	width: 13%;
	margin:1em 1%;
}
.navi>ul>li:nth-child(2){/*1600 1015*/
	max-width: 805px;
	width:67.083333%;
	margin:0;
}

.navi>ul>li:nth-child(3){/*1600 150*/
	max-width: 150px;
	width:9.375%;
	margin:0 1% 0 0;
}
.navi_cont>ul>li{
	width: 54%;
	padding:0.1em 2% 0 0;
}
/***  ページTOP  ***/
#page_tops {
	width:auto;
}
}
