@charset "utf-8";
/*************************************
* CSSリセット
*************************************/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,small, strong,
sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details,
figcaption, figure, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  font-style: normal;
  vertical-align:baseline;
  background:transparent;
}
html{
	scroll-behavior: smooth;
}
body {
  line-height:1;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display:block;
}
article{
  outline: none;
}
h1, h2, h3, h4, h5, h6{
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
a {
  margin:0;
  padding:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
}
em{
  font-style: normal;
}
table {
  border-collapse:collapse;
  border-spacing:0;
}
input, select {
  vertical-align:middle;
}
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*************************************
* 共通
*************************************/
body {
  min-width: 1020px;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  font-family:"游ゴシック Medium",YuGothic,YuGothicM,"Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro",メイリオ,Meiryo,sans-serif,"pedi_icon";
  color:#292929;
  word-break : break-all;
  -webkit-text-size-adjust: 100%;
}
img{
  max-width: 100%;
  height: auto;
}
a{
  color: #292929;
  text-decoration: none;
}
a:hover{
  text-decoration: none;
}
a img{
  transition: opacity .2s ease-in-out;
}
a:hover img{
  opacity: 0.8;
}
table {
  width: 100%;
}
table th,
table td{
  vertical-align: middle;
  text-align: left;
  font-weight: normal;
}
hr{
  height: 0px;
  border-top: 1px solid #dcdcdc;
  max-width: 460px;
  margin: 40px auto;
}
.al_center{
	text-align: center;
}
.al_right{
	text-align: right;
}
.al_left{
	text-align: left;
}
.mb0{
	margin-bottom: 0;
}
.mB1em{
	 margin-bottom:1em;
}
.mB2em{
	 margin-bottom:2em;
}
.m_Btm3,.mB3em{
	margin-bottom: 3em;
}
.mB4em{
	 margin-bottom:4em;
}
.mB5em{
	 margin-bottom:5em;
}
.mB8em{
	 margin-bottom:8em;
}
.m_Btm3p{
	margin-bottom: 3%;
}
.m_Btm5p{
	margin-bottom: 5%;
}
.m_Btm8p{
	margin-bottom: 8%;
}
.m_Btm10p{
	margin-bottom: 10%;
}
.mt1em{
	 margin-top:1em;
}
.mt2em{
	 margin-top:2em;
}
.mt3em{
	 margin-top:3em;
}
.mt4em{
	 margin-top:4em;
}
.mt5p{
	margin-top: 5%;
}
.mt8p{
	margin-top: 8%;
}
.font-bold{
	font-weight: bold;
}
.sp{
  display: none!important;
}
.clearfix:after {
  content:'';
  display:block;
  clear:both;
}
.button{
  -webkit-appearance: none;
  width: 260px;
  cursor: pointer;
  outline: none;
  display: block;
  text-align: center;
  border-radius: 23px;
  height: 46px;
  line-height: 46px;
  transition: all .2s ease-in-out;
  position: relative;
  text-decoration: none;
  font-size: 16px;
  max-width: 100%;
  background: #96cc86;
  background: -moz-linear-gradient(left, #96cc86 0%, #96cc86 100%);
  background: -webkit-linear-gradient(left, #96cc86 0%,#96cc86 100%);
  background: linear-gradient(to right, #96cc86 0%,#96cc86 100%);
}
.button.green{
  color: #fff;
  border: none;
}
.button.white{
  color: #96cc86;
}
.button:after{
  content: '';
  position: absolute;
  background: #fff;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 1px #96cc86 solid;
  border-radius: 23px;
  transition: opacity .2s ease-in-out;
}
.button.green:after{
  opacity: 0;
}
.button.green:hover{
  color: #96cc86;
}
.button.white:hover{
  color: #fff;
}
.button.green:hover:after {
  opacity: 1;
}
.button.white:hover:after {
  opacity: 0;
}
.button span{
  display: inline-block;
  height: 100%;
  z-index: 1;
  position: relative;
  padding-right: 20px;
}
.button span:after{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 13px;
  height: 13px;
  background: url(../img/common/icon_button.png) no-repeat;
  margin-top: -7px;
}
.button.green span:after{
  background-position: left;
}
.button.green:hover span:after{
  background-position: right;
}
.button.white span:after{
  background-position: right;
}
.button.white:hover span:after{
  background-position: left;
}
p.annotation {
    padding-left: 1em;
    text-indent: -1em;
}
.sp_block{
	display: none;
}
.pc_block{
	display: block;
}
@media screen and (max-width:768px) {
  body{
    min-width: 100%;
    font-size: 14px;
  }
  .pc{
    display: none!important;
  }
  .sp{
    display: block!important;
  }
  .button{
    width: 280px;
    height: 54px;
    line-height: 54px;
    font-size: 18px;
    border-radius: 27px;
  }
  .button:after{
    border-radius: 27px;
  }
	.sp_block{
	display: block;
}
.pc_block{
	display: none;
}
}

/*************************************
* ヘッダー
*************************************/
header{
height: 130px;
    min-width: 1020px;
    background: rgba(255,255,255,0.85);
    z-index: 999;
    border-bottom: 3px solid #96cc86;
    width: 100%;
	position: relative;
}
header .pc_header{
	max-width: 1000px;
	margin: auto;
	    width: 98%;
}
header > .container{
  height: 100%;
}
#header_logo{
  float: left;
  margin-top: 6px;
}
#header_logo img{
	width: 440px;
}

/*グローバルナビここから*/
#g_menu {
    bottom: 0;
    left: 10px;
    display: table;
    width: calc(100% - 20px);
    text-align: center;
}
#g_menu input {
  display: none;
}
#g_menu a li {
	position: relative;
	white-space: nowrap;
	float: left;
	margin: 0px 4px;
	line-height: 60px;
	font-weight: normal;
	transition: .2s;
}

#g_menu a:hover li{
	background: #96cc86;
	color: #fff;
}


/* パソコン用 */
@media screen and (min-width: 769px) {
	#g_menu{
		display: flex;
		margin-top: 8px;
		width: auto;
    max-width: 1000px;
		float: right;
	}
	#g_menu a li{
		padding: 9px 24px;
		font-size: 16px;
		margin: 0;
		line-height: initial;
		white-space: normal;
				float: right;
	}
	#g_menu a li::before{
content: "";
    display: inline-block;
    width: 2px;
    height: 19px;
    position: absolute;
    top: 13px;
    left: -1px;
    border-right: 2px dotted #96cc86;
	}
	
	#g_menu a:last-child li::after{
		content: "";
    display: inline-block;
    width: 2px;
    height: 19px;
    position: absolute;
    top: 13px;
    right: -1px;
    border-right: 2px dotted #96cc86;
	}
	
	#g_menu a:hover li{
		    border-radius: 6px 6px 0 0;
	}
	
/*固定ヘッダー*/	

.header-change{
	display: inline-table;
	background:rgba(255,255,255,.85);
	    border-bottom: 3px solid #96cc86;
	justify-content: space-between;
	position: fixed;
	top: -200px;
	transition: .5s;
	width: 100%;
	opacity: 1;
	z-index: 99;
}
.header-change.show{/*ゆっくり上から降りてくる*/
	top: 0;
}
.header-change div{
	    max-width: 1020px;
    margin: auto;
    display: flex;
    padding: 0 10px;
	align-items: center;
}
.header-change div div.logo{
	display: flex;
	align-items: center;
}
	.header-change div div.logo img{
		width: 43px;
	}
	
.header-change div .g_nav{
	justify-content: flex-end;
}	
	.header-change #g_menu{
		margin-top: 11px;
		
	}
	.header-change #g_menu a li{
		    padding: 9px;
		line-height: 1.3em;
		font-size: 15px;
	}
	
	.button_link{
background: #f0eae6;
    padding: 6px;
    box-sizing: border-box;
    font-size: 14px;
		line-height: 1.3em;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 10px 0 5px 10px;
	}	
	.button_link img{
		    width: 23px;
    margin-right: 6px;
	}
	a.button_link:hover{
	opacity: 0.7;
	}
	
}

/* タブレット用 */
@media screen and (max-width: 1000px){
	.header-change #g_menu a li{
		font-size: 13px;
		padding: 9px;
	}
	.button_link{
		font-size: 13px;
	}
}

/* スマホ用 */
@media screen and (max-width: 768px) {
		#g_menu {
		position: initial;
		width: 100%;
	} 
	#g_menu a li {
		height: auto;
		width: 100%;
		border-bottom:  2px dotted #96cc86;
		white-space: nowrap;
	}
	.header-change{
		display: none;
	}
	.h_sub{
	margin-top: 20px;
    font-size: 13px;
    color: #999;
	}
	.h_sub::before{
	content: "";
    background: url(../img/news/icon_next.png) no-repeat left;
    padding-right: 22px;
    width: 13px;
	}
	

}
/*グローバルナビここまで*/

header .box_headweLR{
	display: flex;
	max-width: 1000px;
	width: 100%;
	margin: auto;
}
header .box_headweL {
     width: 47%;
    margin-right: 3%;
	    margin-top: 6px;
}
header .box_headweL p{
	font-size: 12px;
	color: #434343;
}
header .box_headweR {
   margin-left: auto;
	    padding-top: 10px;
}
header .box_headweR .pc_sub-nav{
	margin-bottom: 2%;
	vertical-align: top;
	display: inline-flex;
	justify-content: flex-end;
	float: right;
}

header .box_headweR .pc_sub-nav li{
    background: #f0eae6;
    margin-left: 12px;
    height: 60px;
    width: 220px;
    padding: 7px;
    box-sizing: border-box;
    font-size: 14px;
	line-height: 1.3em;
    letter-spacing: -0.02em;
	    display: flex;
    align-items: center;
	justify-content: center;
	    border-radius: 9px;
}
header .box_headweR .pc_sub-nav a:hover li{
	opacity: 0.7;
}
header .box_headweR .pc_sub-nav li img{
	width: 30px;
	margin-right: 6px;
}
header .box_headweR .pc_sub-nav li.tel{
	font-size: 18px;
    color: #a6937c;
    letter-spacing: 0.1em;
    font-weight: bold;
}
header .box_headweR .pc_sub-nav li.tel img{
	width: 24px;
	margin-right: 13px;
}
.sp_f_navi,.sp_h_navi{
	display: none;
}




@media(max-width:950px) {
header .box_headweR .pc_sub-nav li{
		font-size: 12px;
	}
	header .box_headweR .pc_sub-nav li.tel{
		font-size: 16px;
	}
}
@media(max-width:863px) {
	#sp_tel{
		position: absolute;
		width: 62px;
		height: 55px;
		right: 50px;
		top: 0;
		display: block;
		background: #f5faf3;
		padding: 4px 5px 0;
	}
	#sp_tel p{
		color: #434343;
		text-align: center;
		font-size: 10px;
		line-height: 1.3;
	}
	#sp_tel p i{
		color: #96cc86;
		font-size: 20px;}
}
@media screen and (max-width:768px) {
	header{
		min-width: 100%;
		position: fixed;
		top: 0;
		left: 0;
		height: 55px;
		z-index: 999;
		border-bottom: 0;
		background:rgba(255,255,255,0.9);
	}
	header .pc_header{
	    width: 100%;
}
	header .box_headweL{
		margin-left: 2%;
		width: 87%;
	}
	header .box_headweL p{
		display: none;
	}
	#header_logo {
		margin-top:6px;
		width: 90%;
	}
	#header_nav{
		display: none;
		background:rgba(255,255,255,0.9);
		top: 55px;
		position: fixed;
		right: 0;
		width: 55%;
		height: calc(100vh - 55px);
		padding: 30px;
		z-index: 99;
	}
	#open_menu {
		position: absolute;
		width: 50px;
		height: 55px;
		right: 0;
		top: 0;
		display: block;
		background: #99ce87;
	}
	#open_menu span {
		position: absolute;
		left: 20%;
		width: 59%;
		height: 2px;
		background: #fff;
		transition: all .4s;
		border-radius: 2px;
	}
	#open_menu span:nth-of-type(1) {
		top: 20px;
	}
	#open_menu span:nth-of-type(2) {
		top: 28px;
	}
	#open_menu span:nth-of-type(3) {
		top: 36px;
	}
	#open_menu.active span:nth-of-type(1) {
		transform: translateY(8px) rotate(-45deg);
	}
	#open_menu.active span:nth-of-type(2) {
		opacity: 0;
	}
	#open_menu.active span:nth-of-type(3) {
		transform: translateY(-8px) rotate(45deg);
	}
	#open_menu p{
		color: #fff;
		text-align: center;
		position: absolute;
		top: 35px;
		left: 6px;
		font-size: 12px;
	}
	.sp_f_navi{
		display: flex;
		position: fixed;
		bottom: 0;
		right: 0;
		z-index: 1;
		width: 100%;
		background: #fbfaf1;
		padding: 2%;
		font-size: 15px;
		border-top: 1px solid #96cc86;
	}
	.sp_f_navi a{
		display: contents;
	}
	.sp_f_navi li{
	    border: 1px solid #a6937c;
    border-radius: 6px;
    background: #f0eae6;
    width: 49%;
    margin-right: 2%;
    padding: 10px;
    text-align: center;
		display: flex;
    justify-content: center;
    align-items: center;
		font-size: 12px;
	}
	.sp_f_navi li img{
		margin-right: 6px;
	}
	.sp_f_navi li.web img{
		width: 28px;
	}
	.sp_f_navi li.tel img{
		width: 20px;
	}
	.sp_f_navi li.tel{
		color: #a6937c;
		font-weight: bold;
		font-size: 14px;
	}
	.sp_h_navi{
		display: block;
	}	
	.sp_h_navi ul{
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		border-top: #76ba60 solid 1px;
		line-height: 1.3em;
	}
	.sp_h_navi li{
		width: 33.33%;
		border-right: #76ba60 solid 1px;
		border-bottom: #76ba60 solid 1px;
	}
	.sp_h_navi li:nth-of-type(3),.sp_h_navi li:nth-of-type(6){
		border-right: 0;
	}
	.sp_h_navi li a{
		text-align: center;
		background: #f3f9f1;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.sp_h_navi li a:hover{
		background: #76ba60;
		color: #fff;
	}
	.current_page_item a,.current-menu-item {
		background: #76ba60!important;
		color: #fff!important;
	}		
}
@media screen and (max-width: 340px){
  #header_logo {
    width: 200px;
    margin-top: 14px;
  }
}








/*************************************
* パンくずリスト
*************************************/
#breadcrumb{
  padding-top: 50px;
  margin-bottom: 50px;
  font-size: 14px;
}
#breadcrumb a{
  text-decoration: underline;
}
#breadcrumb a:hover{
  text-decoration: none;
}
@media screen and (max-width:768px) {
  #breadcrumb{
    font-size: 12px;
  }
}
/*************************************
* コンテンツエリア
*************************************/

.container{
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 10px;
	position: relative;
	line-height: 1.8em;
}
.container:after {
  content:'';
  display:block;
  clear:both;
}
header .container{
	padding: 0;
}
#main{
	display: block;
	padding-bottom: 100px;
}
#page_eyecatch{
	width: 100%;
	position: relative;
	font-family: "筑紫A丸ゴシック","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}
#page_eyecatch:before {
    content: "";
    display: block;
    padding-top: 26%;
}
#page_eyecatch img {
    width: 100%;
	position: absolute;
    top: -130px;
}
#page_eyecatch div.h1_box {
	transform: translateY(-50%);
	    height: 114px;
    position: absolute;
    top: 46%;
        padding: 10px 22% 10px 7%;
    background: linear-gradient(90deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.8) 45%, rgba(255,255,255,0.7) 90%, rgba(255,255,255,0.1) 100%);	
}
#page_eyecatch div.h1_box h1 {
    background: url(../img/common/main_title.png)no-repeat;
	background-size: contain;
    height: 92px;
    font-size: 30px;
    font-weight: normal;
    line-height: 1.8em;
    padding: 18px 0 0 67px;
    text-shadow: #fff 1px 1px 3px, #fff -1px 1px 3px;
    color: #4c4c4c;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
#page_eyecatch div.sub_box{
	background: linear-gradient(45deg, rgba(255, 255, 255,0.6) 65%, transparent);
    position: absolute;
    bottom: 8%;
    padding: 10px 13% 10px 4%;
    height: 84px;
    margin-left: -4%;
}
#page_eyecatch div.sub_box p{
	font-weight: 600;
	font-size: 20px;
	color: #333;
}
#page_eyecatch div.sub_box p span{
	color: #BB675F;
	font-size: 25px;
}
#page_eyecatch .sub_box p spna.title{
	color: #333;
	font-size: 25px;
	line-height: 2.6;
}
.title-head{
  text-align: center;
  margin-bottom: 2em;
}
.title-head span:first-of-type{
  font-size: 14px;
  display: block;
  position: relative;
  padding-bottom: 10px;
  margin-top: 5px;
	    margin-bottom: 20px;
}
.title-head span:first-of-type:after{
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 28px;
  background: #96cc86;
  margin-left: -14px;
}
.title-head span:last-of-type{
  font-size: 28px;
  color: #14baec;
  display: block;
}
.title-head + .title-sub{
  text-align: center;
  font-size: 24px;
  color: #96cc86;
  margin-bottom: 2em;
}
.title-border{
  font-size: 22px;
  text-align: center;
  color: #29bdea;
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto 1.5em;
}
.title-border span{
  position: relative;
  display: inline-block;
}
.title-border span:before,
.title-border span:after{
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -2px;
  width: 1000px;
  border-width: 0 0 4px;
  border-style: dotted;
  border-color: #96cc86;
}
.title-border span:before{
  right: calc(100% + 40px);
}
.title-border span:after{
  left: calc(100% + 40px);
}
@media screen and (max-width:1270px) {
	#page_eyecatch div.h1_box{
		    height: 100px;
	}
	#page_eyecatch div.h1_box h1{
		font-size: 25px;
		    height: 79px;
	}
	#page_eyecatch div.sub_box{
		bottom: 3%;
	}
	#page_eyecatch div.sub_box p{
		font-size: 20px;
	}
	#page_eyecatch .sub_box p spna.title,#page_eyecatch div.sub_box p span{
		font-size: 22px;
	}
}
@media screen and (max-width:768px) {
  #wrapper{
   overflow: hidden;
  }
  #main{
	  padding-top: 0;
	  padding-bottom: 50px;
  }
	#page_eyecatch{
		display: inline-block;
		margin-top: 0;
	}
	#page_eyecatch:before{
		content: none;
	}
	#page_eyecatch img{
	height: 250px;
    object-fit: cover;
    position: relative;
    top: 0;
	}
	#page_eyecatch div.h1_box {
		top: 50%;
		height: auto;
}
	#page_eyecatch div.h1_box h1{
		height: 60px;
		font-size: 20px;
		padding: 11px 0 0 27px;
	}
	#page_eyecatch div.sub_box{
		padding: 5% 3%;
		bottom: 6%;
		margin-left: 0;
		line-height: 1.5;
		background: rgba(255,255,255,0.6);
		width: 100%;
	}
	#page_eyecatch div.sub_box p{
		font-size: 16px;
	}
	#page_eyecatch div.sub_box p span {
		font-size: 17px;
	}
  .container{
    max-width: 100%;
	      margin-bottom: 1em;
  }
  .title-head span:first-of-type{
    font-size: 10px;
  }
  .title-head span:last-of-type{
    font-size: 18px;
  }
  .title-head + .title-sub{
    font-size: 16px;
  }
  .title-border{
    font-size: 16px;
  }
  .title-border span:before{
    right: calc(100% + 20px);
  }
  .title-border span:after{
    left: calc(100% + 20px);
  }
}

/*************************************
* フッター
*************************************/
.grecaptcha-badge{
	margin-bottom: 75px;
	visibility: hidden;
}
#pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: #80c269;
  font-size: 0;
  z-index: 1;
}
#pagetop:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
  margin: -5px 0 0 -8px;
}
#pagetop:hover{
  opacity: 0.7;
}
footer{
}
.order_f{
	display: grid;
	background: url(../img/common/footer_bg_pc.jpg) no-repeat bottom #96cc86;
	background-size: contain;
	padding: 20px 0 0 0;
}
.order_f .order01{
	    order: 1;
	    width: 100%;
}
.order_f .order02{
	  order: 2;
    width: 100%;
}
#footer_global_nav{
	font-size: 16px;

}
#footer_global_nav ul{
    display: flex;
    float: right;
    margin-bottom: 60px;
}
#footer_global_nav ul a{
	color: #fff;
}
#footer_global_nav ul a:hover{
	opacity: 0.7;
}
#footer_global_nav ul li {
	display: inline-block;
	margin: 0 13px;
}
#footer_global_nav ul li h2,#footer_global_nav ul li a h2{
    font-size: 14px;
    font-weight: bold;
    color: #fff;
	text-align: left;
}
#footer_global_nav ul li + li{
	margin-left: 35px;
}
#footer_global_nav ul li a:hover,#footer_global_nav ul li a:hover h2{
	text-decoration: underline;
	color: #fff;
}
#footer_global_nav .child{
	text-align: left;
}
#footer_global_nav .child a{
	display: block;
    margin-top: 6px;
    font-size: 13px;
    position: relative;
    padding-left: 15px;
    color: #fff;
}
#footer_global_nav .child a::before{
	content: '\e908';
	font-size: 10px;
	margin-right: 5px;
	position: absolute;
	left: 0px;
	top: 2px;
}
#box_reserve_banner_fotter{
	margin: 2em;
	text-align: center;
}
footer .col-left{
	float: left;
	width: 33%;
	margin-top: 20px;
	margin-bottom: 30px;
}
footer .col-left a{
	display: contents;
}
footer .col-left .web_f{
	background: #fbfaf1;
	padding: 20px;
	border-radius: 19px;
	text-align: center;
	box-shadow: 0px 9px 0px 0px #f0eae6;
}
footer .col-left a:hover .web_f{
	    background: #f0eae6;
    margin-top: 9px;
    box-shadow: none;
}
footer .col-left .web_f img.img_web{
	width: 50px;
	margin-bottom: 9px;
}
footer .col-right{
	float: right;
	width: 62%;
}
footer .col-right .f_txt{
	color: #fff;
	    display: flex;
    flex-wrap: wrap;
    width: 100%;
	padding-bottom: 30px;

}
footer .col-right .f_txt div.left{
	margin-right: 3%;
    width: 70%;
}
footer .col-right .f_txt div.right{
    width: 27%;
	text-align: right;
}
footer .col-right .bt{
	margin-bottom: 30px;
	    margin-top: -20px;
}
footer .col-right .bt a{
background: #f4f4f4;
    height: 60px;
    width: max-content;
    padding: 0 2em;
    box-sizing: border-box;
    line-height: 1.3em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
/*    color: #a6937c;*/
    letter-spacing: 0.06em;
}
footer .col-right .bt img{
	    margin-left: 10px;
}

footer .col-right .bt a:hover{
	opacity: 0.9;
}

#footer_contact{
	float: right;
	margin-bottom: 35px;
}
#footer_contact li{
	float: left;
}
#footer_contact li + li{
	margin-left: 15px;
}
#footer_contact li.contact{
	width: 220px;
}
#footer_contact li.reserve{
	width: 270px;
}
#footer_contact li.contact a,
#footer_contact li.reserve a{
	height: 65px;
	line-height: 65px;
	text-align: center;
	font-size: 18px;
	border-radius: 5px;
	display: block;
	transition: all .2s ease-in-out;
}
#footer_contact li.contact a{
	color: #96cc86;
	border: 1px #96cc86 solid;
	background: #fff;
}
#footer_contact li.contact a:hover{
	color: #fff;
	background: #96cc86;
}
#footer_contact li.reserve a:hover{
	color: #96cc86;
	background: #fff;
}
#footer_contact li.reserve a{
	color: #fff;
	background: #96cc86;
	border: 1px #96cc86 solid;
}
#footer_contact li.contact a span,
#footer_contact li.reserve a span{
	display: inline-block;
	position: relative;
}
#footer_contact li.contact a span{
	padding-left: 45px;
}
#footer_contact li.reserve a span{
  padding-left: 50px;
}
#footer_contact li.contact a span:before,
#footer_contact li.reserve a span:before{
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
}
#footer_contact li.contact a span:before{
  width: 32px;
  height: 23px;
  margin-top: -11px;
  background: url(../img/common/icon_mail.png) no-repeat left;
  background-size: cover;
}
#footer_contact li.reserve a span:before{
  width: 34px;
  height: 35px;
  margin-top: -17px;
  background: url(../img/common/icon_reserve.png) no-repeat left;
  background-size: cover;
}
#footer_contact li.contact a:hover span:before,
#footer_contact li.reserve a:hover span:before{
  background-position: right;
}
#footer_time table{
  width: 100%;
  font-size: 20px;
	margin-bottom: 10px;
}
#footer_time table th,
#footer_time table td{
  border: 1px #c9c9c9 solid;
  text-align: center;
  padding: 12px 5px;
}
#footer_time table thead th{
  background: #ebffe4;
}
#footer_time table tbody th,
#footer_time table tbody td{
  background: #fff;
}
#footer_time table tbody td{
  font-size: 0;
}
#footer_time table tbody td:empty{
    	background-image: url(../img/common/f_line.svg);
}
#footer_time table tbody td div{
  position: relative;
}
#footer_time table tbody td:not(:empty) div:before{
  content: '';
  width: 20px;
  height: 20px;
  background: #b3d465;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -7px 0 0 -7px;
}
#footer_time table tbody td div.asterisk::after{
    content: '※';
    color: #96cc86;
    position: absolute;
    top: -14px;
    right: -3px;
    font-size: 13px;
}
#footer_time p{
  color: #fff;
  font-size: 15px;
}
#footer_time p span{
  float: right;
}
#footer_logo{
  margin-bottom: 25px;
  display: inline-block;
}
#footer_address{
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
#footer_address span{
  font-size: 14px;
  display: block;
}
#footer_tel{
  color: #96cc86;
  font-size: 32px;
  background: url(../img/common/icon_tel.png) no-repeat left;
  padding-left: 35px;
  font-weight: bold;
  transition: opacity .2s ease-in-out;
}
#footer_tel:hover{
  opacity: 0.7;
}
.fotter_tel_box p{
color: #fff;
padding-left: 4em;
}
.container.mrsbnr {
  margin: 1em auto;
}
.container.mrsbnr img{
  margin: 0 auto;
  display:block;
}
.container.mrsbnr img.sp{
max-width:350px ;
}

#footer_sub_nav{
  text-align: center;
      margin: 5% 0 2% 0;
}
#footer_sub_nav li{
  display: inline-block;
}
#footer_sub_nav li + li{
  margin-left: 50px;
}
#footer_sub_nav li a{
  display: block;
  position: relative;
  padding-left: 20px;
  color: #fff;
  font-size: 14px;
}
#footer_sub_nav li a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: -6px;
}
#footer_sub_nav li a:hover{
  text-decoration: underline;
}
footer .box_address{
}
footer .box_address .f_address{
	background: #fbfaf1;
	padding: 20px 0;
	margin: auto;
	text-align: center;
}
footer .box_address .f_address img{
	width: 80%;
	max-width: 570px;
	margin-bottom: 10px;
}
#copyright{
  text-align: center;
  color: #b09a77;
	font-size: 14px;
	margin: 20px 0;
}

@media screen and (max-width:768px) {
	.grecaptcha-badge{
		margin-bottom: 115px;
	}
	#pagetop{
		right: 15px;
		bottom: 12%;	  
	}
	footer{
		margin-bottom: 100px;
	}
	.order_f .order01{
	    order: 2;
}
.order_f .order02{
	  order: 1;
}
	#footer_global_nav{
		font-size: 13px;
	}
	#footer_global_nav ul{
    text-align: center;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
		justify-content: center;
	}
	#footer_global_nav ul a{
		display: contents;
	}
	#footer_global_nav ul li {
    position: relative;
    width: 36%;
    margin: 10px 2%;
    padding-left: 20px;
    text-align: left;
}
	#footer_global_nav ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 9px;
    height: 9px;
    border-left: 1px solid #fff;
    border-top: 1px solid #fff;
    transform: rotate(135deg);
    margin-left: 0px;
	}
	footer .col-right{
		float: none;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
	}
	footer .col-right .f_txt div.left,
	footer .col-right .f_txt div.right{
		margin-right: 0%;
    width: 100%;
		text-align: left;
		font-size: 12px;
    line-height: 1.5em;
	}
	footer .col-right .bt a{
		margin: auto;
    margin-top: 10px;
    max-width: 300px;
    letter-spacing: 0;
    font-size: 13px;
    width: 100%;
		padding: 0 1em;
	}
	footer .col-left{
		float: none;
		width: 100%;
		text-align: center;
		margin-top: 0;
	}
	#footer_time{
		width: 100%;
	}
	#footer_time table{
		font-size: 14px;
	}
	#footer_time p{
		font-size: 14px;
	}
	#footer_time p span{
		display: block;
		float: none;
	}
	#footer_contact{
		float: none;
		width: 100%;
		order: 2;
	}
	#footer_contact li.contact,
	#footer_contact li.reserve{
		margin: 0 auto;
		width: 100%;
		max-width: 300px;
		float: none;
	}
	#footer_contact li.reserve{
		margin-top: 20px;
	}
	#footer_contact li.contact a,
	#footer_contact li.reserve a {
		font-size: 20px;
	}
	#footer_logo {
		max-width: 250px;
	}
	#footer_address {
		width: 14em;
		margin: 0 auto;
		text-align: left;
		margin-bottom: 5%;
	}
	#footer_sub_nav {
		padding-top: 20px;
		margin-bottom: 40px;
		width: 10em;
		text-align: left;
		margin: 0 auto 30px;
	}
	#footer_sub_nav li{
		display: block;
	}
	#footer_sub_nav li + li{
		margin: 10px 0 0;
	}
	.fotter_tel_box p{
		text-align: center;
		padding-left: 0;
	}
	#footer_time table th, #footer_time table td{
		padding: 7px 5px;
	}
	#footer_time table tbody td:not(:empty) div:before{
		width: 15px;
		height: 15px;
	}
	#footer_time table tbody td div.asterisk::after{
		font-size: 10px;
		top: -10px;
    right: -3px;
	}
	footer .col-left .web_f{
		padding: 10px;
    margin: auto;
		max-width: 300px;
	}
	footer .col-left a:hover .web_f{
		box-shadow: 0px 9px 0px 0px #f0eae6;
		    margin-top: 0;
		background: #fbfaf1;
	}
	footer .col-left .web_f img.img_web{
		width: 36px;
	}
	
	footer .box_address .f_address,
	#copyright{
		font-size: 11px;
	}
	footer .box_address .f_address img{
		    max-width: 360px;
	}
}
