@charset "utf-8";
/* ==========================================================================
   common
   ========================================================================== */
.blue{
	color:#4f926d;
	color:#4f926d;
}

form.post-password-form{
width: 90%;
background: #eee;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
padding: 40px 22px;
margin: 0 auto;
}
@media (min-width: 960px){
form.post-password-form{
width: 600px;
padding: 30px 56px;
margin: 0 auto 60px;
}
}

form.post-password-form p{
	text-align: left;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
}
@media (min-width: 960px){
form.post-password-form p{
	text-align: center;
}
}

form.post-password-form input[type="password"]{
	width: 150px;
	height: 40px;
	resize: vertical;
	font-size: 1.4rem;
	border: 1px solid #ddd;
  border-radius: 3px;
	background-color: #F8F8F8;
	box-sizing: border-box;
	margin: 0;
	outline: none;
	appearance: none;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: 0.08em;
	padding: 0 10px;
	margin: 0 5px 0 2px;
}
@media (min-width: 960px){
form.post-password-form input[type="password"]{
	width: 200px;
  font-size: 1.5rem;
	height: 40px;
	padding: 0 15px;
	margin: 0 6px 0 10px;
}
}

form.post-password-form input[type="submit"]{
	color: #fff;
	width: 50px;
	height: 36px;
	line-height: 54px;
	font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #4f926d;
	outline: none;
	border: 0;
  border-radius: 3px;
	cursor: pointer;
	appearance: none;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
.form.post-password-form input[type="submit"]{
	width: 60px;
	height: 36px;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
}
}


/* ==========================================================================
   btn
   ========================================================================== */
.btn{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn a{
	color: #fff;
	width: 100%;
	height: 50px;
	font-size: 1.4rem;
  font-weight: 500;
	line-height: 1;
  letter-spacing: 0.06em;
	text-align: center;
  display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
	background-color: #4f926d;
	border-radius: 7px;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
.btn a{
	width: 400px;
	height: 58px;
  font-size: 1.6rem;
}
}

.btn a::after,
.btn-2 a::after{
	content: "";
	width: 13px;
	height: 13px;
	background-image: url(../img/common/icon-arrow-rp.svg);
	background-size: 13px 13px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 20px;
	margin: -6.5px 0 0 0;
}
@media (min-width: 960px){
.btn a::after,
.btn-2 a::after{
	width: 13px;
	height: 13px;
	background-size: 13px 13px;
  margin: -6.5px 0 0 0;
}
}

@media (min-width: 960px){
.btn a:hover{
	background-color: #0579D3;
	background-color: rgba(90, 170, 125, 1);
}
}

.btn-2{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-2 a{
	color: #4f926d;
	width: 100%;
	height: 50px;
	font-size: 1.4rem;
  font-weight: 500;
	line-height: 1;
  letter-spacing: 0.06em;
	text-align: center;
  display: flex;
	align-items: center;
	justify-content: center;
  position: relative;
	background-color: #fff;
	border: 1px solid #4f926d;
	border-radius: 7px;
	box-sizing: border-box;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
.btn-2 a{
	width: 400px;
	height: 58px;
  font-size: 1.6rem;
}
}

@media (min-width: 960px){
.btn-2 a:hover{
	color: rgba(90, 170, 125, 1);
}
}


/* ==========================================================================
   loading
   ========================================================================== */
#splash{
	position: fixed;
	width: 100vw;
	z-index: 9999;
	background: #000;
	text-align:center;
	top: 0;
	left: 0;
}

#splash_logo{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash_logo svg{
	width: 100px;
	stroke-width: 0.5;
	margin: 0 0 0 0;
}
@media (min-width: 960px){
#splash_logo svg{
	width: 110px;
	margin: 0 0 0 0;
}
}
@media (min-width: 960px){
#splash_logo svg{
	width: 160px;
	margin: -20px 0 0 0;
}
}

#splash_logo .splash_text{
	color: #F4E7D3;
	font-size: 1.5rem;
	line-height: 1.8;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	white-space: nowrap;
	letter-spacing: 0.1em;
	margin: 24px 0 0 0;
}
@media (min-width: 960px){
#splash_logo .splash_text{
	font-size: 1.7rem;
	line-height: 1;
	letter-spacing: 0.2em;
	margin: 30px 0 0 0;
}
}

#mask path{
	fill-opacity: 0;
	transition: fill-opacity .5s;
	fill: none;
	stroke: #363C40;
	stroke: #666;
}

#mask.done path{
	fill: #f4e7d3;
	fill-opacity: 1;
	stroke: none;
}


/* ==========================================================================
   header
   ========================================================================== */
header{
	width: 100%;
	height: 66px;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	box-sizing: border-box;
	background-color: #fff;
	padding: 0 4%;
	z-index: 200;
}
@media (min-width: 960px){
header{
	height: 90px;
	position: absolute;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px;
}
}

/* logo */
header .logo{
	width: 200px;
	height: auto;
}
@media (min-width: 440px){
header .logo{
	width: 200px;
}
}
@media (min-width: 960px){
header .logo{
	width: 260px;
}
}

.logo img{
	width: 100%;
	height: auto;
	display: block;
}

/* global-nav */
header .menu-global-nav-container{
	width: auto;
	padding-left: 30px;
}

header ul#menu-global-nav{
	display:none;
}
@media (min-width: 960px){
header ul#menu-global-nav{
	width: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
}
}

header #menu-global-nav li{
  width: auto;
	display: block;
	position: relative;
	overflow: hidden;
}

header #menu-global-nav li a{
	color: #222;
	width: auto;
  height: 30px;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
	display: flex;
	align-items: center;
  transition: all 0.2s ease;
	padding: 0 0 0 20px;
}

header #menu-global-nav li a:hover{
	color: #4f926d;
}


/* ==========================================================================
   btn_contact fixed
   ========================================================================== */
.btn-wrap{
	width: 100vw;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1000;
}
@media (min-width: 440px){
.btn-wrap{
	width: auto;
	justify-content: flex-start;
	bottom: 0;
	right: 0;
	left: auto;
}
}

/*.btn-reservation{
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1000;
}
@media (min-width: 440px){
.btn-reservation{
	bottom: 0;
	right: 0;
	left: auto;
}
}*/

/*#page_contact .btn-reservation{
	display: none!important;
}*/

.btn-inbound-pc a{
	display: none;
}
@media (min-width: 440px){
.btn-inbound-pc a{
	color: #fff;
	width: 174px;
	height: 174px;
	font-size: 1.95rem;
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.25;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 200px;
	background-color: #D6C1A2;
	background-color: #f59ca6;
	transition: all 0.2s ease;
	box-sizing: border-box;
	position: absolute;
	top: 8.5vw;
	top: 126px;
	right: 30px;
	z-index: 1000;
	padding: 10px 0 0 0;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}
}

.btn-inbound-pc a:hover{
	background-color: #D6C1A2;
}

.btn-inbound-pc a svg{
	fill: #fff;
	width: 13px;
	height: 13px;
	display: block;
	margin-top: 14px;
}

.btn-inbound a{
	color: #fff;
	width: 40vw!important;
	height: 66px;
	font-size: 1.5rem;
	font-family: "Prompt", sans-serif;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.05;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	border-radius: 0px 0px 0px 0px;
	background-color: #D6C1A2;
	box-sizing: border-box;
	padding: 1px 0 0 12px;
	transition: all 0.2s ease;
}
@media (min-width: 440px){
.btn-inbound a{
	display: none;
}
}

.btn-inbound a::after{
	content: "";
	width: 12px;
	height: 12px;
	background-image: url(../img/common/icon-link-w.svg);
	background-size: 12px 12px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 14px;
	margin: -6px 0 0 0;
}

.btn-reservation a{
	color: #fff;
	width: 60vw!important;
	height: 66px;
	font-size: 1.65rem;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	border-radius: 0px 0px 0px 0px;
	background-color: #4f926d;
	box-sizing: border-box;
	padding: 0 0 0 15px;
	transition: all 0.2s ease;
}
@media (min-width: 440px){
.btn-reservation a{
	width: 330px!important;
	height: 80px;
	font-size: 1.7rem;
	letter-spacing: 0.12em;
	line-height: 1;
	border-radius: 20px 0px 0px 0px;
	padding: 0 0 0 26px;
}
}

.btn-reservation a::after{
	content: "";
	width: 22px;
	height: 22px;
	background-image: url(../img/top/use-arrow.svg);
	background-size: 22px 22px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	right: 16px;
	margin: -11px 0 0 0;
}
@media (min-width: 960px){
.btn-reservation a::after{
	width: 26px;
	height: 26px;
	background-size: 26px 26px;
	right: 25px;
  margin: -13px 0 0 0;
}
}

@media (min-width: 960px){
.btn-reservation a:hover{
	background-color: #0579D3;
	background-color: rgba(90, 170, 125, 1);
}
}




/* ==========================================================================
   btn_view
   ========================================================================== */
.btn_view{
	height: 24px;
	position: relative;
	display: inline-block;
	margin: 0 0 3px 0;
}

.btn_view a{
	color: #aaa;
	display: inline-block;
	font-size: 1.8rem;
	font-family: 'Cinzel', serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1em;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.btn_view a:before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.19, 1, .22, 1);
  background: #D6C1A2;
  z-index: 3;
}

@media (min-width: 960px){
.btn_view a:hover:before{
  transform: scaleX(1);
  transform-origin: left;
}
}

.btn_view:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
  z-index: 2;
}



/* //////////////////////////////////////////////////////////////////////////
   pages
   ////////////////////////////////////////////////////////////////////////// */
/* ==========================================================================
   page contents wrap
   ========================================================================== */
.contents_wrap{
	width: 100vw;
	margin: 0 0 60px 0;
}
@media (min-width: 960px){
.contents_wrap{
	margin: 0 0 100px 0;
}
}


/* ==========================================================================
   page head
   ========================================================================== */
#page_head{
	width: 100vw;
  height: auto;
  display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
  padding: 80px 5.5vw 70px;
	margin: 0 auto;
}
@media (min-width: 960px){
#page_head{
	max-width: calc(1100px + 10vw + 10vw);
	padding: 190px 10vw 90px;
}
}

#page_head h2.page_title_en{
	color: #222;
	font-size: 3.0rem;
	font-family: "Prompt", sans-serif;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1;
}
@media (min-width: 960px){
#page_head h2.page_title_en{
	font-size: 5.0rem;
}
}

#page_head h2.page_title_en span{
	font-size: 76%;
	padding-left: 3px;
}

#page_head h1.page_title{
	color: #222;
  font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
	letter-spacing: 0.06em;
}
@media (min-width: 960px){
#page_head h1.page_title{
  font-size: 1.8rem;
}
}


/* ==========================================================================
   page section_title
   ========================================================================== */
.page .section_title_en{
	color: #222;
	font-size: 2.8rem;
	font-family: "Prompt", sans-serif;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
	padding-left: 0.08em;
}
@media (min-width: 960px){
.page .section_title_en{
	font-size: 5.0rem;
}
}

.page h2.section_title{
	color: #222;
  font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
	letter-spacing: 0.06em;
	text-align: center;
	padding-left: 0.06em;
}
@media (min-width: 960px){
.page h2.section_title{
  font-size: 1.8rem;
}
}


/* ==========================================================================
   diagonal
   ========================================================================== */
.diagonal-top{
	width: 100vw;
	position: absolute;
	top: -1px;
	left: 0;
}

.diagonal-bottom{
	width: 100vw;
	position: absolute;
	bottom: -1px;
	left: 0;
}


/* ==========================================================================
   page contents section wrap
   ========================================================================== */
.page .contents_wrap .wrap{
	width: 100%;
	box-sizing: border-box;
	padding: 0 5.5vw;
	margin: 0 auto;
}
@media (min-width: 960px){
.page .contents_wrap .wrap{
	max-width: calc(1200px + 10vw + 10vw);
	padding: 0 10vw;
}
}


/* ==========================================================================
   page pankuzu
   ========================================================================== */
.page .pankuzu{
	color: #888888;
	font-size: 1.25rem;
	font-family: 'Cinzel', serif;
	letter-spacing: 0.08em;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 0 0 32px 0;
}
@media (min-width: 960px){
.page .pankuzu{
	color: #888888;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	margin: 0 0 75px 0;
}
}

.page .pankuzu a{
	color: #eeeeee;
	font-size: 1.3rem;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
.page .pankuzu a{
	color: #eeeeee;
	font-size: 1.6rem;
}
}

.page .pankuzu a:hover{
	color: #888888;
}

.page .pankuzu .line{
	width: 30px;
	height: 1px;
	background-color: #888888;
	margin: 0 10px;
}
@media (min-width: 960px){
.page .pankuzu .line{
	width: 70px;
	margin: 0 22px;
}
}

.page_title{
	font-size: 4.2rem;
	font-family: 'Cinzel', serif;
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1;
	margin: 0 0 0 0;
}
@media (min-width: 440px){
.page_title{
	font-size: 6.0rem;
	letter-spacing: 0.08em;
}
}
@media (min-width: 960px){
.page_title{
	font-size: 10.0rem;
}
}

.page_title__shoulder{
	font-size: 1.5rem!important;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.6;
	text-align: left;
	margin-top: 5px;
}
@media (min-width: 960px){
.page_title__shoulder{
	font-size: 2.0rem!important;
	letter-spacing: 0.1em;
	margin-top: 16px;
}
}


/* ==========================================================================
   text mask
   ========================================================================== */
.mask{
	overflow: hidden;
	margin: 10px 0 0 0;
	padding: 0 0 5px 0;
}

.mask2{
	margin: -8px 0 0 0;
}


/* ==========================================================================
   section_title__block
   ========================================================================== */
.page .section_title__block{
	width: 100%;
	height: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin: 0 0 8px 0;
}
@media (min-width: 960px){
.page .section_title__block{
	height: 30px;
	margin: 0 0 30px 0;
}
}
@media (min-width: 960px){
.page .section_title__block{
	height: 32px;
	margin: 0 0 18px 0;
}
}

.section_title__block .section_title{
	font-size: 1.8rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
}
@media (min-width: 960px){
.section_title__block .section_title{
	font-size: 3.0rem;
}
}
@media (min-width: 960px){
.section_title__block .section_title{
	font-size: 3.0rem;
	padding: 0 0 0 0.1em;
}
}

.section_title__line{
	width: 60px;
	height: 2px;
	background-color: #D6C1A2;
	margin: 0 auto;
	position: relative;
}
@media (min-width: 960px){
.section_title__line{
	width: 100px;
}
}
@media (min-width: 960px){
.section_title__line{
	width: 100px;
	height: 2px;
}
}


/* ==========================================================================
   section_s_title__block
   ========================================================================== */
.section_s_title__block{
	overflow: hidden;
}

.section_s_title{
	font-size: 1.6rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.2;
}
@media (min-width: 440px){
.section_s_title{
	font-size: 2.4rem;
}
}
@media (min-width: 960px){
.section_s_title{
	font-size: 2.4rem;
	padding: 0 0 0 0.1em;
}
}

.section_s_title__line{
	width: 40px;
	height: 2px;
	background-color: #D6C1A2;
	position: relative;
	margin: 14px 0 0 0;
}
@media (min-width: 440px){
.section_s_title__line{
	width: 40px;
	margin: 16px 0 0 0;
}
}


/* ==========================================================================
  section_m_title__block
   ========================================================================== */
.section_m_title__block{
}

.section_m_title_no{
	color: #D6C1A2;
	font-size: 1.8rem;
	font-family: 'Cinzel', serif;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1;
}
@media (min-width: 440px){
.section_m_title_no{
	font-size: 2.4rem;
	margin: 18px 0 0 0;
}
}
@media (min-width: 960px){
.section_m_title_no{
	font-size: 2.4rem;
}
}

.section_m_title_en{
	font-size: 3.1rem;
	font-family: 'Cinzel', serif;
	font-weight: 300;
	letter-spacing: 0.04em;
	line-height: 1;
}
@media (min-width: 440px){
.section_m_title_en{
	font-size: 5.0rem;
	letter-spacing: 0.08em;
}
}
@media (min-width: 960px){
.section_m_title_en{
	font-size: 7.4rem;
}
}

.section_m_title{
	font-size: 1.45rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1;
	margin: 6px 0 0 0;
}
@media (min-width: 960px){
.section_m_title{
	font-size: 1.8rem;
	letter-spacing: 0.08em;
	margin: 15px 0 0 0;
}
}
@media (min-width: 960px){
.section_m_title{
	font-size: 1.8rem;
}
}


/* ==========================================================================
   page text
   ========================================================================== */
/*.page .text p{
	font-size: 2.0rem;
	font-size: clamp(1.4rem, 0.95vw, 2.0rem);
	line-height: 2.2em;
	text-align-last: justify;
}
@media (min-width: 960px){
.page .text p{
	font-size: 2.0rem;
	font-size: clamp(1.4rem, 0.95vw, 2.0rem);
	line-height: 2.2em;
}
}*/

.page p.text{
	text-align: justify;
}


/* ==========================================================================
   page contents title
   ========================================================================== */
#page #contents .title{
	font-size: 1.8rem;
	font-family: 'Cinzel', 'Noto Serif JP', serif;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
	margin: 70px 0 50px 0;
}
@media (min-width: 960px){
#page #contents .title{
	font-size: 2.0rem;
	margin: 140px 0 90px 0;
}
}
@media (min-width: 960px){
#page #contents .title{
	font-size: 3.0rem;
	margin: 0 0 100px 0;
}
}

#page #contents h3{
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.4;
	border-left: 5px solid #363C40;
	padding: 0 0 0 8px;
	margin: 30px 0 15px 0;

}
@media (min-width: 960px){
#page #contents h3{
	font-size: 1.7rem;
	border-left: 6px solid #363C40;
	padding: 0 0 0 14px;
	margin: 50px 0 15px 0;
}
}

#page #contents p,
#page #contents li{
	color: #888;
	font-size: 1.35rem;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt" 1;
	line-height: 2.0;
	margin: 0 0 10px 0;
}
@media (min-width: 960px){
#page #contents p,
#page #contents li{
	font-size: 1.4rem;
}
}

#page #contents ol{
	margin: 0 0 0 1.2em;
}

#page #contents li{
	line-height: 1.2;
	list-style-type: decimal;
	padding-left: 0.5em;
}

#page #contents p a{
	color: #888;
	text-decoration: underline;
}


/* ==========================================================================
   breadcrumb
   ========================================================================== */
#breadcrumb .wrap,
#breadcrumb-2 .wrap{
	padding: 0 6.5vw;
	margin: 0 auto;
	box-sizing: border-box;
}
@media (min-width: 960px){
#breadcrumb .wrap,
#breadcrumb-2 .wrap{
  max-width: calc(1000px + 10vw + 10vw);
	padding: 0 10vw;
}
}

.aioseo-breadcrumbs{
	height: 40px;
	display: flex;
  flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	line-height: 1.6;
}
@media (min-width: 960px){
.aioseo-breadcrumbs{
	height: 60px;
}
}

.aioseo-breadcrumbs span.aioseo-breadcrumb a{
	color: #222;
	font-size: 1.3rem;
	font-weight: 400;
	transition: all 0.2s ease;
}

@media (min-width: 960px){
.aioseo-breadcrumbs span.aioseo-breadcrumb a:hover{
  color: #999;
}
}

.aioseo-breadcrumbs span.aioseo-breadcrumb-separator{
	color: #222;
	font-size: 1.3rem;
	margin: 0 10px;
}

.aioseo-breadcrumbs span.aioseo-breadcrumb{
	color: #222;
	font-size: 1.3rem;
	font-weight: 300;
}

#top #breadcrumb,
#page_single #breadcrumb{
	display: none;
}


/* ==========================================================================
   footer
   ========================================================================== */
#footer{
  width: 100vw;
	display: flex;
	flex-direction: column;
	background-color: #FFF5F5;
	box-sizing: border-box;
	padding: 60px 0 50px 0;
	position: relative;
}
@media (min-width: 960px){
#footer{
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 110px 0 120px 0;
}
}

#footer .wrap{
	width: 100%;
  display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	position: relative;
	padding: 0 6vw;
}
@media (min-width: 960px){
#footer .wrap{
	max-width: calc(1000px + 10vw + 10vw);
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	padding: 0 10vw;
}
}

/* left_block
============================================================ */
#footer .left_block{
  width: 100%;
  height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
@media (min-width: 960px){
#footer .left_block{
  width: 32%;
	align-items: flex-start;
	justify-content: flex-start;
}
}

#footer .f_logo{
  width: 290px;
  height: auto;
	margin-right: 10px;
}
@media (min-width: 960px){
#footer .f_logo{
	width: 320px;
	margin-right: 0;
}
}

#footer .f_logo img{
	width: 100%;
	height: auto;
	display: block;
}

#footer .text{
	color: #e26b6b;
	width: 94%;
	height: 30px;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1;
	border-radius: 100px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	border: 1px solid #f59ca6;
	box-sizing: border-box;
	margin: 20px 0 0 0;
}
@media (min-width: 960px){
#footer .text{
	width: 100%;
	height: 32px;
	font-size: 1.5rem;
	margin: 25px 0 0 0;
}
}

#footer .address{
	font-size: 1.3rem;
  line-height: 1;
	letter-spacing: 0.02em;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	margin: 15px 0 0 0;
}
@media (min-width: 960px){
#footer .address{
	font-size: 1.3rem;
	letter-spacing: 0.03em;
	text-align: left;
	margin: 10px 0 0 0;
}
}

#footer .address a{
	color: #4f926d;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1;
	border-radius: 100px;
	text-align: center;
	border: 1px solid #4f926d;
	background-color: #FFF;
	display: inline-block;
	padding: 4px 7px 5px 7px;
	margin-left: 12px;
}
@media (min-width: 960px){
#footer .address a{
	font-size: 0.9rem;
	transition: all 0.2s ease;
	padding: 5px 7px;
	margin-left: 12px;
}
}

@media (min-width: 960px){
#footer .address a:hover{
	color: #fff;
	background-color: #4f926d;
  border: 1px solid #4f926d;
}
}

#footer .map a span{
  font-size: 0.6rem;
	vertical-align: 0.4em;
	margin: 0 6px 0 0;
}

#footer ul.f_nav{
	width: 100%;
	display: none;
}
@media (min-width: 960px){
#footer ul.f_nav{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
  align-items: flex-start;
	justify-content: flex-start;
}
}

#footer ul.f_nav li{
	width: 53%;
	margin: 0;
	padding: 0;
}

#footer ul.f_nav li.right{
	width: 47%;
}

#footer ul.f_nav li a{
	color: #222;
  font-size: 1.4rem;
	line-height: 1;
	margin: 0 0 10px 0;
  font-weight: 400;
  display: block;
	position: relative;
	transition: all 0.2s ease;
}
@media (min-width: 960px){
#footer ul.f_nav li a{
  font-size: 1.45rem;
	margin: 0 0 11px 0;
}
}

@media (min-width: 960px){
#footer ul.f_nav li a:hover{
  opacity: 0.7;
}
}

/* right_block
============================================================ */
#footer .right_block{
	width: 100%;
	box-sizing: border-box;
	margin: 30px 0 0 0;
	padding: 0 2vw;
}
@media (min-width: 960px){
#footer .right_block{
	width: 58%;
	margin: 6px -24px 0 0;
	padding: 0;
	display: block;
}
}

#footer .f_contact{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (min-width: 960px){
#footer .f_contact{
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
}

#footer .f_contact .tel_block p{
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1;
	text-align: center;
	margin: 0 0 14px 0;
}
@media (min-width: 960px){
#footer .f_contact .tel_block p{
	font-size: 1.4rem;
	text-align: left;
	margin: 0 0 14px 0;
	padding: 4px 0 0 0;
}
}

#footer .f_contact .tel_block .tel{
	line-height: 1;
}

#footer .f_contact .tel_block .tel a{
	color: #4f926d;
	font-size: 3.1rem;
	font-family: "Prompt", sans-serif;
	font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media (min-width: 960px){
#footer .f_contact .tel_block .tel a{
	font-size: 3.1rem;
}
}

#footer .f_contact .tel_block .tel a span{
	font-size: 68%;
	letter-spacing: 0.04em;
	padding-right: 6px;
	vertical-align: 0.05em;
}

#footer .f_contact .btn{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
@media (min-width: 960px){
#footer .f_contact .btn{
	width: 240px;
}
}

#footer .f_contact .btn a{
	color: #FFF;
	width: 100%;
	height: 54px;
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1;
	border-radius: 7px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 101, 179, 1);
	background-color: #4f926d;
	transition: all 0.2s ease;
	position: relative;
}
@media (min-width: 960px){
#footer .f_contact .btn a{
	height: 60px;
	font-size: 1.7rem;
}
}

@media (min-width: 960px){
#footer .f_contact .btn a:hover{
	background-color: #3c6250;
	background-color: #0065B3;
	background-color: rgba(90, 170, 125, 1);
}
}

#footer .hours table{
	width: 100%;
	border-collapse: collapse;
	margin: 0;
	padding: 0;
}

#footer .hours table tr{
	line-height: 1;
}

#footer .hours table tr td{
	width: 8.0%;
	font-size: 1.3rem;
	letter-spacing: 0.04em;
	text-align: center;
	padding: 16px 0;
}
@media (min-width: 960px){
#footer .hours table tr td{
	width: 10.5%;
	font-size: 1.5rem;
  padding: 18px 0;
}
}

#footer .hours table tr td.column-1{
	color: #222;
	width: 26.5%;
	text-align: left;
}
@media (min-width: 960px){
#footer .hours table tr td.column-1{
	width: 28%;
}
}

#footer .hours table tr.row-1 td{
	color: #222;
	font-size: 1.3rem;
	font-weight: 500;
	border: 0;
	padding-bottom: 10px;
}
@media (min-width: 960px){
#footer .hours table tr.row-1 td{
	font-size: 1.4rem;
	border: 0;
	padding-bottom: 12px;
}
}

#footer .hours table tr.row-2 td{
	color: #4f926d;
	font-size: 1.4rem;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 900;
	vertical-align: middle;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}
@media (min-width: 960px){
#footer .hours table tr.row-2 td{
	font-size: 1.6rem;
}
}

#footer .hours table tr.row-2 td.column-1{
	color: #222;
	font-size: 1.5rem;
	font-family: "Prompt", sans-serif;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.1;
}
@media (min-width: 960px){
#footer .hours table tr.row-2 td.column-1{
	font-size: 1.8rem;
	letter-spacing: 0.07em;
	padding-left: 3px;
}
}

#footer .hours table tr.row-2 td.column-1 span{
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0;
	font-feature-settings: "palt" 1;
}
@media (min-width: 960px){
#footer .hours table tr.row-2 td.column-1 span{
	font-size: 1.3rem;
	letter-spacing: 0.04em;
	font-feature-settings: "palt" 1;
	padding-left: 0.5em;
}
}

#footer ul.note{
	font-size: 1.2rem;
}
@media (min-width: 960px){
#footer ul.note{
	font-size: 1.4rem;
}
}

#footer ul.note li{
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.5;
	padding: 0;
}
@media (min-width: 960px){
#footer ul.note li{
	font-size: 1.4rem;
}
}

#footer .notes_block{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
@media (min-width: 960px){
#footer .notes_block{
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
}

#footer .notes-a{
	color: #fff;
	width: 100%;
	height: 30px;
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	background-color: #4f926d;
	border: 1px solid #4f926d;
	box-sizing: border-box;
}
@media (min-width: 960px){
#footer .notes-a{
	width: 36%;
	height: 40px;
	font-size: 1.4rem;
}
}

#footer .notes-b{
	color: #222;
	width: 100%;
	height: 30px;
	font-size: 1.35rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	border: 1px solid #4f926d;
	box-sizing: border-box;
}
@media (min-width: 960px){
#footer .notes-b{
	width: 62.5%;
	height: 40px;
	font-size: 1.4rem;
}
}

/* copyright
============================================================ */
#footer .copyright{
  font-size: 1.0rem;
	line-height: 1;
	letter-spacing: 0.02em;
	text-align: center;
	padding: 30px 0 0 0;
}
@media (min-width: 960px){
#footer .copyright{
	font-size: 1.1rem;
	text-align: right;
	padding: 0;
	position: absolute;
	bottom: 26px;
	right: 36px;
}
}
