@charset "utf-8";
/* CSS Document */
*, ::before, ::after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, "sans-serif";
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  color: #333;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  z-index: 0;
  font-feature-settings: "pkna"1;
  overflow-x: hidden;
  line-height: 1.6em;
  letter-spacing: .1em;
}
a {
  text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
  font-weight: 400;
  font-size: inherit;
  font-feature-settings: "palt";
  line-height: 1.65;
}
p {
  margin-bottom: 0;
}
pre {
  margin-bottom: 0;
}
dl {
  margin-bottom: 0;
}
ul {
  margin-bottom: 0;
}
ol {
  margin-bottom: 0;
  list-style: decimal;
  padding-left: 1em;
}
img {
  max-width: 100%;
}
a:hover
{
    opacity: 0.6;
}
.fadeDown{
animation-name:fadeDownAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.fadeDownTrigger{
    opacity: 0;
}

/*========= ぼかしのためのCSS ===============*/

.mainblur{
  filter: blur(8px);
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
  z-index: -1;
  opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
  top:0;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:rgba(231, 255, 229, 0.5);/*背景を少し透過させる*/
    /*動き*/
  transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
  opacity: 1;
  z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(55,119,79,.6)
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 20%;
}

#g-nav.panelactive ul {
    display: block;
}
/*リストのレイアウト設定*/

#g-nav li{
  list-style: none;
    text-align: center; 
}

#g-nav li a{
  color: #333333;
  text-decoration: none;
  padding:2.5rem 0;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
    font-size: 2rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    border-bottom: 1px solid #333333;
}
/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:0;
  right: 9rem;
  cursor: pointer;
    width: 9rem;
height: 8rem;
background: #6EBD4C;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 25px;
    height: 2px;
    border-radius: 2px;
  background-color: #FFFFFF;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:18px;
    width: 15%;
}

.openbtn1 span:nth-of-type(2) {
  top:26px;
    width: 30%;
}

.openbtn1 span:nth-of-type(3) {
  top:34px;
    width: 45%
}
.openbtn1 span:nth-of-type(4) {
  top:46px;
    text-align: center;
    border: none;
    font-size: 1.6rem;
    height: 0;
    color: #FFFFFF;
    left: 20px;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 30px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 30px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.flow04 {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.flow04 > li {
  list-style-type: none;
  width: 100%;
  max-width: 350px;
  display: flex;
}

.flow04 > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: #37774F;
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}

.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: #37774F;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow04 > li dl {
  padding: 30px 20px;
  margin: 0;
  border: 3px solid #37774F;
  position: relative;
}

.flow04 > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid #37774F;
  border-right: 4px solid #37774F;
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flow04 > li dl dt {
  font-size: 1.6rem;
  font-weight: 600;
  color: #37774F;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 10px;
  text-align: center;
}

.flow04 > li dl dd {
  margin-left: 0;
    font-size: 1.6rem;
}

@media(max-width: 767px){
  .flow04 {
    gap: 20px;
  }
  .flow04 > li {
    max-width: unset;
    display: block;
  }
  .flow04 > li:not(:first-child) dl::before {
    display: none;
  }
}

.qa-007 {
    max-width: 90%;
    margin: 10px auto;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
}

.qa-007 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    font-size: 2rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
}

.qa-007 summary::before,
.qa-007 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.8rem;;
}

.qa-007 summary::before {
    color: #60CC88;
    content: "Q";
}

.qa-007 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-007[open] summary::after {
    transform: rotate(225deg);
}

.qa-007 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-007[open] p {
    transform: none;
    opacity: 1;
    font-size: 1.6rem;
    line-height: 1.6;
}

.qa-007 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}


/*-----------------------------------------------------------------*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.headerinner
{
    position: relative;
}
.logo {
  width: 440px;
  padding: 1rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.60);
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  z-index: 1;
}
.logo_inner {
  padding: 2rem;
  border: 3px solid #FFFFFF;
}
.city {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}
.sitettl {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1.2;
  font-weight: 600;
}
.logoimg {
  font-size: 1.8rem;
  display: block;
}
.logoimg img {
  vertical-align: middle;
}
.h_menu_btn
{
    position: fixed;
    top: 0;
    right: 9rem;
    height: 8rem;
    width: 9rem;
    background: #6EBD4C;
    z-index: 100;
    text-align: center;
}
.h_menu_btn p
{
    font-size: 1.6rem;
    color: #FFFFFF;
}
.header_r_btn
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
.header_r_btn img
{
    padding-bottom: 1rem;
}
.h_reserve_btn
{
    position: fixed;
    top: 0;
    right: 0;
    height: 8rem;
    width: 9rem;
    background: #60CC88;
    z-index: 100;
    text-align: center;
    display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.h_reserve_btn p
{
    font-size: 1.6rem;
    color: #FFFFFF;
}
.mv {
  position: relative;
}
.mv_img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.catch {
  position: absolute;
  left: 12rem;
  top: 46vh;
}
.catch span {
  font-size: 3.4rem;
  color: #FFFFFF;
  padding: 1rem 2rem;
  margin-bottom: 3rem;
  background: #60CC88;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif"
}
.catch p {
  margin-bottom: 5rem;
}
.mv_en {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  left: 0;
}
.mv_en img {
  max-width: 100%;
}
.container {
  max-width: calc(1600px + 6%);
  margin: 0 auto;
  padding: 3%;
    position: relative;
}
.worries {
  background: url("images/worries_bg.png") top center;
  background-size: cover;
  padding-bottom: 10rem;
}
.worries_ttl {
  font-size: 3.8rem;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  text-align: center;
  padding: 2rem 0 10rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.img {
  width: 48%;
}
.txt {
  width: 48%;
}
.worries_list {
  margin-bottom: 5rem;
}
.worries_list li {
  position: relative;
  font-size: 2.4rem;
  padding-left: 5rem;
  margin: 3rem 0;
  border-bottom: 1px #CCCCCC dashed;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  padding-bottom: 3rem;
}
.worries_list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  background: url("images/check-circle.png") no-repeat center;
  width: 30px;
  height: 30px;
  background-size: 100%;
}
.messe {
  position: relative;
}
.en_ttl {
  font-family: "Cinzel", cursive;
  font-weight: 500;
  font-size: 7rem;
  letter-spacing: .2rem;
  line-height: .3em;
  text-align: center;
  color: #B8DBC5;
  opacity: .3;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
}
.messe_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 3.8rem;
  letter-spacing: .1em;
  font-weight: 600;
  color: #333333;
  line-height: 1em;
  margin: 0 5px;
  text-align: center;
}
.messe_txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 5rem;
  line-height: 1.6em;
  letter-spacing: .1em;
}
.medical .container
{
    max-width: calc(1800px + 6%);
  margin: 0 auto;
  padding: 3%;
}
.med_ttl
{
    padding: 4rem 0;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    font-weight: 600;
    font-family: "Shippori Mincho", serif;
    text-align: center;
    position: relative;
}
.med_ttl::before
{
    content: "";
    top: 0;
    left: 50%;
    width: 20rem;
    height: 1px;
    background: #60CC88;
    position: absolute;
    transform: translateX(-50%);
}
.med_ttl::after
{
    content: "";
    bottom: 0;
    left: 50%;
    width: 20rem;
    height: 3px;
    background: #60CC88;
    position: absolute;
    transform: translateX(-50%);
}
    
.med_ttl_en
{
    font-size: 6rem;
    margin-bottom: 4rem;
    font-family: "Cinzel", cursive;
    text-align: center;
    font-weight: 500;
    color: #B8DBC5;
}
.med_txt
{
    font-size: 1.6rem;
margin-top: 5rem;
line-height: 1.6em;
letter-spacing: .1em;
    margin-bottom: 3rem;
}
.med_btn {
  padding-top: 5rem;
}
.med_btn a
{
    padding: 2rem 10rem 2rem 5rem;
    background: #60CC88;
    color: #FFFFFF;
    font-size: 1.6rem;
    position: relative;
}
.med_btn a::before
{
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    background: url("images/right-circle.png") no-repeat center;
    height: 30px;
    width: 30px;
    background-size: 100%;
    transform: translateY(-50%);
}
.rev
{
    flex-direction: row-reverse;
}
.wrap2
{
    max-width: calc(1700px + 6%);
    padding: 3%;
    margin: 0 auto
}
.merit_ttl
{
    background: url("images/merit_bg.png") no-repeat center;
    background-size: cover;
    padding: 11rem 0;
    position: relative;
    margin-bottom: 5rem;
}
.merit_en
{
    font-size: 7rem;
    font-family: "Cinzel", cursive;
    text-align: center;
    font-weight: 500;
    color: #FFFFFF;
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}
.merit_h3
{
    font-size: 3.8rem;
    text-align: center;
    color: #FFFFFF;
    padding-top: 4rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
}
.bg_ttl
{
        text-align: center;
    font-size: 2.8rem;
    color: #FFFFFF;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 5rem;
}
.bg_ttl span
{
    background: url("images/merit_ttl_bg.png")no-repeat center;
    background-size: cover;
    height: 63px;
    padding: 1rem 6rem;
}
.flex_m
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 5rem 0;
}

.sub_ttl
{
    font-size: 2.4rem;
    text-align: center;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 3rem;
    font-weight: 600;
}
.sub_ttl::after
{
    content: "";
    height: 3px;
    width: 10rem;
    background: #60CC88;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
.merit_bgbox
{
    
}
.demerit_bgbox
{
    

}
.merit-demerit .flex
{
    align-items: center;
}
.merit_num
{
    width: 16%;
    font-size: 7rem;
    font-family: 'Playball', cursive;
    margin-bottom: 5rem;
    text-align: center;
}
.merit_txt
{
    font-size: 1.6rem;
    width: 78%;
    margin-bottom: 5rem;
}
.m_txt
{
    width: 48%;
    background: url("images/merit_bg01.png") top center;
    padding: 5rem 5rem 0rem;
    color: #FFFFFF;
    background-size: cover;
    
}
.dem_txt
{
    width: 48%;
    background: url("images/merit_bg02.png") top center;
    padding: 5rem 5rem 0rem;
    color: #FFFFFF;
    background-size: cover;
}
.contact
{
   background: url("images/contact_bg.png") no-repeat center top;
    padding: 30rem 0 8rem;
    margin: 5rem 0;
    position: relative;
    text-align: center;
}
.contact_en
{
    font-size: 7rem;
    color: #FFFFFF;
    opacity: .3;
    font-family: "Cinzel", cursive;
    position: absolute;
    top:20rem;
    left: 0;
    width: 100%;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1rem;
}
.contact_txt
{
    font-size: 2.8rem;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    padding-bottom: 15rem;
}
.contact .flex
{
    justify-content: center;
}
.tel_btn
{
    padding: 2rem;
}
.reserve_btn
{
    padding: 2rem;
}
.reserve_btn span
{
    font-size: 1.4rem;
}
.reserve_btn a
{
    padding: 2rem 4rem 2rem 8rem;
    color: #FFFFFF;
    background: #6EBD4C;
    position: relative;
    font-size: 2rem;
}
.tel_btn a
{
    padding: 2rem 4rem 2rem 8rem;
    color: #FFFFFF;
    background: #6EBD4C;
    position: relative;
    font-size: 2rem;
    font-family: "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
}
.tel_btn a::after
{
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 38px;
    background: url("images/icon-telephone.png") no-repeat top center;
    background-size: 100%;
}
.reserve_btn a::after
{
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 30px;
    background: url("images/icon-calendar-alt.png") no-repeat top center;
    background-size: 100%;
}
.bnr_area .flex
{
    justify-content: space-around;
    align-items: flex-end;
}
#footer
{
    background: #E7F3E1;
    position: relative;
}
.footer_en
{
    margin-bottom: 5rem
}
#footer .flex
{
    justify-content: center;
    align-items: center;
}
.footer_title
{
    font-size: 3.8rem;
    text-align: center;
    margin-bottom: 5rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
    line-height: 1.6;
}
.footer_title span
{
    display: block;
    font-size: 1.6rem;
}
.f_l
{
    width: 48%;
}
.f_l p
{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}
.f_r
{
    width: 48%;
    margin-left: 4rem;
}
#footer table {
  width: 100%;
  border-top: 1px solid #37774F;
    margin: 10px 0;
    border-collapse: collapse;
border-spacing: 0;
}
#footer table th {
  vertical-align: middle;
  padding: 3px 10px;
  font-weight: bold;
  line-height: 1.5;
  background: #333333;
  color: #fff;
}
#footer table th, #footer table td {
  background: none;
  border: none;
  font-size: 1.6rem;
  letter-spacing: .1em;
  color: #333333;
  text-align: center;
  border-bottom: 1px solid #37774F;
  padding: 10px;
}
#footer table td {
  padding: 5px 10px;
  vertical-align: middle;
    color: #37774F;
}
.footer_wrap
{
    max-width: calc(1200px + 6%);
    margin: 5rem auto;
    padding: 0 3%;
}
.copy
{
    padding: 1rem 0;
    font-size: 1.4rem;
    text-align: center;
    background: #6EBD4C;
    color: #FFFFFF;
}

/*-------------------------------------------------------------------------

下層ページ

--------------------------------------------------------------------------*/
.u_container
{
    max-width: calc(1300px + 6%);
margin: 0 auto;
padding: 3%;
position: relative;
}
.h2_ttl
{
    background: url("images/h2_ttl.png") no-repeat center top;
    background-size: cover;
    font-size: 10rem;
    color: #FFFFFF;
    text-align: center;
    padding: 30rem 0 12rem;
    font-family: "Cinzel", cursive;
    font-weight: 400;
}
.h2_ttl span
{
    font-size: 2.8rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    display: block;
    font-weight: 600;
}
.h3_ttl
{
    font-size: 3rem;
    position: relative;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 5rem;
    font-weight: 600;
    margin-top: -3rem;
}
.under_en_ttl {
  font-family: "Cinzel", cursive;
  font-weight: 500;
  font-size: 10rem;
  letter-spacing: .2rem;
  line-height: .8em;
  text-align: left;
  color: #CCCCCC;
  opacity: .3;
  margin: auto;
}
.h4_ttl
{
    font-size: 2.8rem;
    font-weight: 600;
    padding: 1rem 1rem 1rem 3rem;
    border-left: 5px solid #60CC88;
    margin-bottom: 3rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
}
.t16
{
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}
.faq_area
{
    background: #E9E9E9;
    padding: 5rem;
}
.u_sub_ttl
{
    font-size: 2rem;
    font-weight: 800;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 3rem;
    color: #37774F;
    border-bottom: 1px solid #37774F;
    padding-bottom: 2rem;
}
.name
{
    font-size: 1.8rem;
    font-weight: 800;
    text-align: right;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 5rem;
}
.h5_ttl
{
    font-size: 2rem;
    padding: 2rem 1rem;
    font-weight: 800;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 3rem;
    border-top: 1px solid #B8DBC5;
    border-bottom: 3px solid #B8DBC5;
}
.list_career li {
  padding-bottom: 2rem;
    font-size: 1.6rem;
}
.list_career li:not(:last-of-type) {
  margin-bottom: 2rem;
  border-bottom: 1px dashed #333;
}
.price table
{
    width: 100%;
border-top: 1px solid #eee;
margin-top: 3rem;
    margin-bottom: 5rem;
}
.price table th
{
    background: rgba(198, 232, 203, 0.2);
font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
font-size: 1.8rem;
letter-spacing: .1em;
font-weight: 600;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
    padding: 1rem;
    text-align: center;
    width: 30%
}
.price table th span {
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  font-size: 1.4rem;
  letter-spacing: .1em;
  font-weight: 600;
}
.price table td {
  border-left: 1px solid #eee;
    font-size: 1.6rem;
    border-bottom: 1px solid #eee;
padding: 1.2em .8em;
text-align: center;
    vertical-align: middle;
    width: 30%;
}

/*-------------------------------------------------------------------------

tablet

--------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 845px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: none !important;
  }
    
    #header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.headerinner
{
    position: relative;
}
.logo {
  width: 440px;
  padding: 1rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.60);
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  z-index: 1;
}
.logo_inner {
  padding: 2rem;
  border: 3px solid #FFFFFF;
}
.city {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}
.sitettl {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1.2;
  font-weight: 600;
}
.logoimg {
  font-size: 1.8rem;
  display: block;
}
.logoimg img {
  vertical-align: middle;
}
.h_menu_btn
{
    position: fixed;
    top: 0;
    right: 9rem;
    height: 8rem;
    width: 9rem;
    background: #6EBD4C;
    z-index: 100;
    text-align: center;
}
.h_menu_btn p
{
    font-size: 1.6rem;
    color: #FFFFFF;
}
.header_r_btn
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
.header_r_btn img
{
    padding-bottom: 1rem;
}
.h_reserve_btn
{
    position: fixed;
    top: 0;
    right: 0;
    height: 8rem;
    width: 9rem;
    background: #60CC88;
    z-index: 100;
    text-align: center;
    display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.h_reserve_btn p
{
    font-size: 1.6rem;
    color: #FFFFFF;
}
.mv {
  position: relative;
}
.mv_img {
  height: 62vh;
  width: 100%;
  object-fit: cover;
}
.catch {
  position: absolute;
  left: 2rem;
  top: 30vh;
}
.catch span {
  font-size: 2.4rem;
  color: #FFFFFF;
  padding: 1rem 2rem;
  margin-bottom: 3rem;
  background: #60CC88;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif"
}
.catch p {
  margin-bottom: 5rem;
}
.mv_en {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  left: 0;
}
.mv_en img {
  max-width: 100%;
}
.container {
  max-width: calc(1600px + 6%);
  margin: 0 auto;
  padding: 3%;
}
.worries {
  background: url("images/worries_bg.png") top center;
  background-size: cover;
  padding-bottom: 2rem;
}
.worries_ttl {
  font-size: 3rem;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  text-align: center;
  padding: 2rem 0 4rem;
}
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.img {
  width: 48%;
}
.txt {
  width: 48%;
}
.worries_list {
  margin-bottom: 5rem;
}
.worries_list li {
  position: relative;
  font-size: 2rem;
  padding-left: 5rem;
  margin: 3rem 0;
  border-bottom: 1px #CCCCCC dashed;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  padding-bottom: 3rem;
    line-height: 1.6;
}
.worries_list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  background: url("images/check-circle.png") no-repeat center;
  width: 30px;
  height: 30px;
  background-size: 100%;
}
.messe {
  position: relative;
}
.en_ttl {
  font-family: "Cinzel", cursive;
  font-weight: 500;
  font-size: 4rem;
  letter-spacing: .2rem;
  line-height: .3em;
  text-align: center;
  color: #B8DBC5;
  opacity: .3;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
}
.messe_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 3rem;
  letter-spacing: .1em;
  font-weight: 600;
  color: #333333;
  line-height: 1em;
  margin: 0 5px;
  text-align: center;
}
.messe_txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 5rem;
  line-height: 1.6em;
  letter-spacing: .1em;
}
.medical .container
{
    max-width: calc(1800px + 6%);
  margin: 0 auto;
  padding: 3%;
}
.med_ttl
{
    padding: 4rem 0;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    font-weight: 600;
    font-family: "Shippori Mincho", serif;
    text-align: center;
    position: relative;
}
.med_ttl::before
{
    content: "";
    top: 0;
    left: 50%;
    width: 20rem;
    height: 1px;
    background: #60CC88;
    position: absolute;
    transform: translateX(-50%);
}
.med_ttl::after
{
    content: "";
    bottom: 0;
    left: 50%;
    width: 20rem;
    height: 3px;
    background: #60CC88;
    position: absolute;
    transform: translateX(-50%);
}
    
.med_ttl_en
{
    font-size: 6rem;
    margin-bottom: 4rem;
    font-family: "Cinzel", cursive;
    text-align: center;
    font-weight: 500;
    color: #B8DBC5;
}
.med_txt
{
    font-size: 1.6rem;
margin-top: 5rem;
line-height: 1.6em;
letter-spacing: .1em;
    margin-bottom: 3rem;
}
.med_btn {
  padding-top: 5rem;
}
.med_btn a
{
    padding: 2rem 10rem 2rem 5rem;
    background: #60CC88;
    color: #FFFFFF;
    font-size: 1.6rem;
    position: relative;
}
.med_btn a::before
{
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    background: url("images/right-circle.png") no-repeat center;
    height: 30px;
    width: 30px;
    background-size: 100%;
    transform: translateY(-50%);
}
.rev
{
    flex-direction: row-reverse;
}
.wrap2
{
    max-width: calc(1700px + 6%);
    padding: 3%;
    margin: 0 auto
}
.merit_ttl
{
    background: url("images/merit_bg.png") no-repeat center;
    background-size: cover;
    padding: 11rem 0;
    position: relative;
    margin-bottom: 5rem;
}
.merit_en
{
    font-size: 7rem;
    font-family: "Cinzel", cursive;
    text-align: center;
    font-weight: 500;
    color: #FFFFFF;
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}
.merit_h3
{
    font-size: 3.8rem;
    text-align: center;
    color: #FFFFFF;
    padding-top: 4rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
}
.bg_ttl
{
        text-align: center;
    font-size: 2.8rem;
    color: #FFFFFF;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 5rem;
}
.bg_ttl span
{
    background: url("images/merit_ttl_bg.png")no-repeat center;
    background-size: cover;
    height: 63px;
    padding: 1rem 6rem;
}
.flex_m
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 5rem 0;
}

.sub_ttl
{
    font-size: 2.4rem;
    text-align: center;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 3rem;
    font-weight: 600;
}
.sub_ttl::after
{
    content: "";
    height: 3px;
    width: 10rem;
    background: #60CC88;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
.merit_bgbox
{
    
}
.demerit_bgbox
{
    

}
.merit-demerit .flex
{
    align-items: center;
}
.merit_num
{
    width: 16%;
    font-size: 7rem;
    font-family: 'Playball', cursive;
    margin-bottom: 5rem;
    text-align: center;
}
.merit_txt
{
    font-size: 1.6rem;
    width: 78%;
    margin-bottom: 5rem;
}
.m_txt
{
    width: 48%;
    background: url("images/merit_bg01.png") top center;
    padding: 5rem 5rem 0rem;
    color: #FFFFFF;
    background-size: cover;
    
}
.dem_txt
{
    width: 48%;
    background: url("images/merit_bg02.png") top center;
    padding: 5rem 5rem 0rem;
    color: #FFFFFF;
    background-size: cover;
}
.contact
{
   background: url("images/contact_bg.png") no-repeat center top;
    padding: 30rem 0 8rem;
    margin: 5rem 0;
    position: relative;
    text-align: center;
}
.contact_en
{
    font-size: 4rem;
    color: #FFFFFF;
    opacity: .3;
    font-family: "Cinzel", cursive;
    position: absolute;
    top:20rem;
    left: 0;
    width: 100%;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1rem;
}
.contact_txt
{
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    padding-bottom: 15rem;
}
.contact .flex
{
    justify-content: center;
}
.tel_btn
{
    padding: 2rem;
}
.reserve_btn
{
    padding: 2rem;
}
.reserve_btn span
{
    font-size: 1.4rem;
}
.reserve_btn a
{
    padding: 2rem 4rem 2rem 8rem;
    color: #FFFFFF;
    background: #6EBD4C;
    position: relative;
    font-size: 2rem;
}
.tel_btn a
{
    padding: 2rem 4rem 2rem 8rem;
    color: #FFFFFF;
    background: #6EBD4C;
    position: relative;
    font-size: 2rem;
    font-family: "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
}
.tel_btn a::after
{
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 38px;
    background: url("images/icon-telephone.png") no-repeat top center;
    background-size: 100%;
}
.reserve_btn a::after
{
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 30px;
    background: url("images/icon-calendar-alt.png") no-repeat top center;
    background-size: 100%;
}
.bnr_area .flex
{
    justify-content: space-around;
    align-items: flex-end;
}
    .bnr_box
    {
        margin-bottom: 3rem;
    }
#footer
{
    background: #E7F3E1;
    position: relative;
}
.footer_en
{
    margin-bottom: 5rem
}
#footer .flex
{
    justify-content: center;
    align-items: center;
}
.footer_title
{
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
    line-height: 1.6;
}
.footer_title span
{
    display: block;
    font-size: 1.6rem;
}
.f_l
{
    width: 48%;
}
.f_l p
{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}
.f_r
{
    width: 100%;
    margin-left: 0rem;
}
#footer table {
  width: 100%;
  border-top: 1px solid #37774F;
    margin: 10px 0;
    border-collapse: collapse;
border-spacing: 0;
}
#footer table th {
  vertical-align: middle;
  padding: 3px 10px;
  font-weight: bold;
  line-height: 1.5;
  background: #333333;
  color: #fff;
}
#footer table th, #footer table td {
  background: none;
  border: none;
  font-size: 1.6rem;
  letter-spacing: .1em;
  color: #333333;
  text-align: center;
  border-bottom: 1px solid #37774F;
  padding: 10px;
}
#footer table td {
  padding: 5px 10px;
  vertical-align: middle;
    color: #37774F;
}
.footer_wrap
{
    max-width: calc(1200px + 6%);
    margin: 5rem auto;
    padding: 0 3%;
}
.copy
{
    padding: 1rem 0;
    font-size: 1.4rem;
    text-align: center;
    background: #6EBD4C;
    color: #FFFFFF;
}
}

/*-------------------------------------------------------------------------

SP

--------------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .pc-tab-only {
    display: none !important;
  }
    .openbtn1 span {
  left: 18px;
}
    .openbtn1 span:nth-of-type(4) {
display: none;
}
    .openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 6rem;
  cursor: pointer;
  width: 6rem;
  height: 5rem;
  background: #6EBD4C;
}
    #header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.headerinner
{
    position: relative;
}
.logo {
  width: 262px;
  padding: 1rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.60);
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  z-index: 1;
}
.logo_inner {
  padding: 0;
  border: 3px solid #FFFFFF;
}
.city {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  display: block;
}
.sitettl {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  display: block;
  line-height: 1.2;
  font-weight: 600;
}
.logoimg {
  font-size: 1.2rem;
  display: block;
}
.logoimg img {
  vertical-align: middle;
}
.h_menu_btn
{
    position: fixed;
    top: 0;
    right: 9rem;
    height: 8rem;
    width: 9rem;
    background: #6EBD4C;
    z-index: 100;
    text-align: center;
}
.h_menu_btn p
{
    font-size: 1.6rem;
    color: #FFFFFF;
}
.header_r_btn
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}
.header_r_btn img
{
    padding-bottom: 1rem;
}
.h_reserve_btn
{
    position: fixed;
    top: 0;
    right: 0;
    height: 5rem;
    width: 6rem;
    background: #60CC88;
    z-index: 100;
    text-align: center;
    display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.h_reserve_btn p
{
    font-size: 1.6rem;
    color: #FFFFFF;
}
.mv {
  position: relative;
}
.mv_img {
  height: 50vh;
  width: 100%;
  object-fit: cover;
}
.catch {
  position: absolute;
  left: 1rem;
  top: 23vh;
}
.catch span {
  font-size: 1.6rem;
  color: #FFFFFF;
  padding: 1rem 2rem;
  margin-bottom: 3rem;
  background: #60CC88;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif"
}
.catch p {
  margin-bottom: 3rem;
}
.mv_en {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  left: 0;
}
.mv_en img {
  max-width: 100%;
}
.container {
  max-width: calc(1600px + 6%);
  margin: 0 auto;
  padding: 3%;
}
.worries {
  background: url("images/worries_bg.png") top center;
  background-size: cover;
  padding-bottom: 2rem;
}
.worries_ttl {
  font-size: 2rem;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  text-align: center;
  padding: 2rem 0 4rem;
}
    .worries .flex
    {
        flex-direction: column-reverse;
    }
.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}
.img {
  width: 100%;
    margin-bottom: 2rem;
}
.txt {
  width: 100%;
}
.worries_list {
  margin-bottom: 5rem;
}
.worries_list li {
  position: relative;
  font-size: 1.8rem;
  padding-left: 5rem;
  margin: 3rem 0;
  border-bottom: 1px #CCCCCC dashed;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
  padding-bottom: 3rem;
    line-height: 1.6;
}
.worries_list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  background: url("images/check-circle.png") no-repeat center;
  width: 30px;
  height: 30px;
  background-size: 100%;
}
.messe {
  position: relative;
}
.en_ttl {
  font-family: "Cinzel", cursive;
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: .2rem;
  line-height: .8em;
  text-align: center;
  color: #B8DBC5;
  opacity: .3;
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
}
.messe_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 2rem;
  letter-spacing: .1em;
  font-weight: 600;
  color: #333333;
  line-height: 1em;
  margin: 0 5px;
  text-align: center;
    padding-top: 2rem;
}
.messe_txt {
  font-size: 1.6rem;
  text-align: center;
  margin-top: 5rem;
  line-height: 1.6em;
  letter-spacing: .1em;
}
.medical .container
{
    max-width: calc(1800px + 6%);
  margin: 0 auto;
  padding: 3%;
}
.med_ttl
{
    padding: 4rem 0;
    margin-bottom: 1rem;
    font-size: 2.4rem;
    font-weight: 600;
    font-family: "Shippori Mincho", serif;
    text-align: center;
    position: relative;
}
.med_ttl::before
{
    content: "";
    top: 0;
    left: 50%;
    width: 20rem;
    height: 1px;
    background: #60CC88;
    position: absolute;
    transform: translateX(-50%);
}
.med_ttl::after
{
    content: "";
    bottom: 0;
    left: 50%;
    width: 20rem;
    height: 3px;
    background: #60CC88;
    position: absolute;
    transform: translateX(-50%);
}
    
.med_ttl_en
{
    font-size: 6rem;
    margin-bottom: 4rem;
    font-family: "Cinzel", cursive;
    text-align: center;
    font-weight: 500;
    color: #B8DBC5;
}
.med_txt
{
    font-size: 1.6rem;
margin-top: 5rem;
line-height: 1.6em;
letter-spacing: .1em;
    margin-bottom: 3rem;
}
.med_btn {
  padding-top: 5rem;
}
.med_btn a
{
    padding: 2rem 10rem 2rem 5rem;
    background: #60CC88;
    color: #FFFFFF;
    font-size: 1.6rem;
    position: relative;
}
.med_btn a::before
{
    content: "";
    position: absolute;
    right: 2rem;
    top: 50%;
    background: url("images/right-circle.png") no-repeat center;
    height: 30px;
    width: 30px;
    background-size: 100%;
    transform: translateY(-50%);
}
.rev
{
    flex-direction: row-reverse;
}
.wrap2
{
    max-width: calc(1700px + 6%);
    padding: 3%;
    margin: 0 auto
}
.merit_ttl
{
    background: url("images/merit_bg.png") no-repeat center;
    background-size: cover;
    padding: 11rem 0;
    position: relative;
    margin-bottom: 5rem;
}
.merit_en
{
    font-size: 4rem;
    font-family: "Cinzel", cursive;
    text-align: center;
    font-weight: 500;
    color: #FFFFFF;
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
}
.merit_h3
{
    font-size: 2.8rem;
    text-align: center;
    color: #FFFFFF;
    padding-top: 4rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
}
.bg_ttl
{
        text-align: center;
    font-size: 2rem;
    color: #FFFFFF;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 2rem;
}
.bg_ttl span
{
    background: url("images/merit_ttl_bg.png")no-repeat center;
    background-size: cover;
    padding: 1rem 6rem;
}
.flex_m
{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 5rem 0;
}

.sub_ttl
{
    font-size: 2.4rem;
    text-align: center;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    margin-bottom: 5rem;
    position: relative;
    padding-bottom: 3rem;
    font-weight: 600;
}
.sub_ttl::after
{
    content: "";
    height: 3px;
    width: 10rem;
    background: #60CC88;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
.merit_bgbox
{
    
}
.demerit_bgbox
{
    

}
.merit-demerit .flex
{
    align-items: center;
}
.merit_num
{
    width: 16%;
    font-size: 7rem;
    font-family: 'Playball', cursive;
    margin-bottom: 5rem;
    text-align: center;
}
.merit_txt
{
    font-size: 1.6rem;
    width: 78%;
    margin-bottom: 5rem;
}
.m_txt
{
    width: 100%;
    background: url("images/merit_bg01.png") top center;
    padding: 5rem 3rem 0rem;
    color: #FFFFFF;
    background-size: cover;
    
}
.dem_txt
{
    width: 100%;
    background: url("images/merit_bg02.png") top center;
    padding: 5rem 3rem 0rem;
    color: #FFFFFF;
    background-size: cover;
}
.contact
{
   background: url("images/contact_bg.png") no-repeat center top;
    padding: 24rem 0 8rem;
    margin: 5rem 0;
    position: relative;
    text-align: center;
}
.contact_en
{
    font-size: 4rem;
    color: #FFFFFF;
    opacity: .3;
    font-family: "Cinzel", cursive;
    position: absolute;
    top:12rem;
    left: 0;
    width: 100%;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.1rem;
}
.contact_txt
{
    font-size: 2rem;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    padding-bottom: 12rem;
}
.contact .flex
{
    justify-content: center;
}
.tel_btn
{
    padding: 2rem;
    margin-bottom: 2rem;
}
.reserve_btn
{
    padding: 2rem;
}
.reserve_btn span
{
    font-size: 1.4rem;
}
.reserve_btn a
{
    padding: 2rem 4rem 2rem 8rem;
    color: #FFFFFF;
    background: #6EBD4C;
    position: relative;
    font-size: 2rem;
}
.tel_btn a
{
    padding: 2rem 4rem 2rem 8rem;
    color: #FFFFFF;
    background: #6EBD4C;
    position: relative;
    font-size: 2rem;
    font-family: "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
}
.tel_btn a::after
{
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 38px;
    background: url("images/icon-telephone.png") no-repeat top center;
    background-size: 100%;
}
.reserve_btn a::after
{
    content: "";
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 30px;
    background: url("images/icon-calendar-alt.png") no-repeat top center;
    background-size: 100%;
}
.bnr_area .flex
{
    justify-content: space-around;
    align-items: flex-end;
}
    .bnr_box
    {
        margin-bottom: 3rem;
    }
#footer
{
    background: #E7F3E1;
    position: relative;
}
.footer_en
{
    margin-bottom: 5rem
}
#footer .flex
{
    justify-content: center;
    align-items: center;
}
.footer_title
{
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
    font-weight: 600;
    line-height: 1.6;
}
.footer_title span
{
    display: block;
    font-size: 1.6rem;
}
.f_l
{
    width: 100%;
}
.f_l p
{
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4;
}
.f_r
{
    width: 100%;
    margin-left: 0rem;
}
#footer table {
  width: 100%;
  border-top: 1px solid #37774F;
    margin: 10px 0;
    border-collapse: collapse;
border-spacing: 0;
}
#footer table th {
  vertical-align: middle;
  padding: 3px 10px;
  font-weight: bold;
  line-height: 1.5;
  background: #333333;
  color: #fff;
}
#footer table th, #footer table td {
  background: none;
  border: none;
  font-size: 1.4rem;
  letter-spacing: .1em;
  color: #333333;
  text-align: center;
  border-bottom: 1px solid #37774F;
  padding: 0.5rem;
}
#footer table td {
  padding: 5px 10px;
  vertical-align: middle;
    color: #37774F;
}
.footer_wrap
{
    max-width: calc(1200px + 6%);
    margin: 5rem auto;
    padding: 0 3%;
}
.copy
{
    padding: 1rem 0;
    font-size: 1.4rem;
    text-align: center;
    background: #6EBD4C;
    color: #FFFFFF;
}#g-nav ul {
  width: 60%;
}
    .openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
    .openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
    .under_en_ttl {
  font-family: "Cinzel", cursive;
  font-weight: 500;
  font-size: 5rem;
  letter-spacing: .2rem;
  line-height: .8em;
  text-align: left;
  color: #CCCCCC;
  opacity: .3;
  margin: auto;
}
    .faq_area {
  background: #E9E9E9;
  padding: 1rem;
}
    .qa-007 summary {
  font-size: 1.6rem;
  font-family: "Shippori Mincho", "Hiragino Mincho ProN", YuMincho, "Yu Mincho", "serif";
}
    .h2_ttl {
  background: url("images/h2_ttl.png") no-repeat center top;
    background-size: auto;
  background-size: cover;
  font-size: 5rem;
  color: #FFFFFF;
  text-align: center;
  padding: 18rem 0 6rem;
  font-family: "Cinzel", cursive;
  font-weight: 400;
}
    .h4_ttl {
  font-size: 2rem;
}
    .h3_ttl {
  margin-bottom: 2rem;
}
}
