:root {
  /* カラー変数 */
  --color-primary: #FF9A3C; /* オレンジ系メインカラー */
  --color-secondary: #7CCA30; /* 緑系アクセントカラー */
  --color-tertiary: #5BBCE5; /* 青系アクセントカラー */
  --color-pink: #F897B4; /* ピンク系アクセントカラー */
  --color-background: #FFFFFF; /* 背景色 */
  --color-text: #333333; /* 文字色 */
  --color-light-text: #666666; /* 薄い文字色 */
  --color-footer: #F2A358; /* フッター背景色 */
  --color-yellow: #FFDB63; /* マーカー黄色 */
  
  
  
  /* フォント変数 */
  --font-main: "Noto Sans JP", sans-serif; /* メインフォント */
  --font-accent: "M PLUS Rounded 1c", sans-serif; /* アクセントフォント */
  
  /* サイズ変数 */
  --container-width: 1200px; /* コンテナ最大幅 */
  --header-height: 70px; /* ヘッダー高さ */
  --gap-small: 8px; /* 小さい余白 */
  --gap-medium: 16px; /* 中くらい余白 */
  --gap-large: 32px; /* 大きい余白 */
  --gap-xl: 64px; /* とても大きい余白 */
  
  /* 境界線 */
  --border-radius: 8px; /* 角丸 */
  --border-radius-large: 16px; /* 大きい角丸 */
  /* navicon */
  --nav-home: url(../img/navmenu-00.svg) no-repeat center;
  --nav-hoiku: url(../img/navmenu-01.svg) no-repeat center;
  --nav-about: url(../img/navmenu-02.svg) no-repeat center;
  --nav-nyuen: url(../img/navmenu-03.svg) no-repeat center;
  --nav-oneday: url(../img/navmenu-04.svg) no-repeat center;
  --nav-faq: url(../img/navmenu-05.svg) no-repeat center;
  --nav-contact: url(../img/navmenu-06.svg) no-repeat center;
  --nav-recruit: url(../img/navmenu-07.svg) no-repeat center;
}
  
/* ベースレイアウト */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-background);
}
.grecaptcha-badge{
  opacity: 0;/*recaptchaの非表示*/
}

.none{display: none;}
p{
  color: #A3703A;
  font-family: var(--font-main);
}
.sp{
  display: block;
  @media (min-width: 768px){
    display: none;
  }
}
.pc{
  display: none;
  @media (min-width: 768px){
    display: block;
  }
}
br.sp{
  font-size: 0;
}
br.pc{
  font-size: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.3;
}
.container-width{
  max-width: var(--container-width);
  margin: auto;
}
.higashihie {
  background-color: var(--color-tertiary);
}

.imajuku {
  background-color: var(--color-secondary);
}
.default {
  background-color: var(--color-footer);
}
  
.brown{color: #A3703A;}
.white{color: #fff;}
.pink{color: var(--color-pink);}
.bg_brown{background: #A3703A;}
.bg_white{background: #fff;}
.bg_pink{background: var(--color-pink);}
.bg_footer{background: var(--color-footer);}
.bg_tertiary{background: var(--color-tertiary);}
.bg_secondary{background: var(--color-secondary);}


.section-title {
  margin-bottom: var(--gap-large);
  color: var(--color-primary);
  .ja {
    display: block;
    font-size: 18px;
    margin-bottom: var(--gap-small);
    @media(min-width:768px){
      font-size: 24px;
    }
  }
  .en {
    display: block;
    font-size: 14px;
    font-weight: normal;
  }


  &.h2deco{
    text-align: center;
    .ja::before,
    .ja::after{
      content: "";
      display: inline-block;
      width: 3em;
      height: .75em;
      background-size: contain;
      margin:0 .5em;
      @media (min-width: 768px) {
        width: 5em;
      }
    }
    &.deco_white{
      .ja::before,
      .ja::after{
        content: "";
        background: url(../img/h2_deco_white.svg) center no-repeat;
      }
    }
    &.deco_orenge{
      .ja::before,
      .ja::after{
        content: "";
        background: url(../img/h2_deco_orenge.svg) center no-repeat;
      }
    }
    &.deco_pink{
      .ja::before,
      .ja::after{
        content: "";
        background: url(../img/h2_deco_pink.svg) center no-repeat;
      }
    }
    &.deco_green{
      color: #28b478;
      .ja::before,
      .ja::after{
        content: "";
        background: url(../img/h2_deco_green.svg) center no-repeat;
      }
    }
  }
}
  
/* 共通ボタンスタイル */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  position: relative;
  
  &::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -4px;
  }
}

.arrow_btn{
  display: inline-block;
  font-weight: bold;
  color: #fff;
  /* background: var(--color-secondary); */
  border-radius: 3em;
  box-shadow: 4px 4px 0 #fff;
  transition: .3s;
  padding: .5em 4em .5em 3em;
  position: relative;
  width: 13em;
  &:hover{
    translate: 0 4px;
    box-shadow: 0px 0px 0 #fff;
    &::after {
      right: 1em;
    }
  }
  
  &::after {
    content: "";
    display: block;
    width: 1.25em;
    height: 1.25em;
    background: url(../img/btn_arrow.svg) center no-repeat;
    background-size:contain;
    position: absolute;
    right: 1.25em;
    top: 50%;
    translate:0 -50%;
    transition: .3s;
  }
}

.btn-primary {
  background-color: var(--color-primary);
  color: white;
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: white;
}

.btn-tertiary {
  background-color: var(--color-tertiary);
  color: white;
}

/* ヘッダー */
header {
  width: 100%;
  z-index: 1000;
  position: absolute;
  top: 0;
  padding: 1.5em 0;
  @media (min-width: 768px){
    padding: 2em 0;
  }

  &::before {
      content: "";
      position: absolute;
      top: 0%;
      left: 0%;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      filter: blur(8px); /* ぼかし効果 */
      background-blend-mode: multiply;
      -webkit-filter: blur(8px); /* WebKitブラウザ用 */
      z-index: -1;
  }
  
  .headerwrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: var(--header-height);
    padding: 0 var(--gap-medium);
    
    @media (min-width: 768px) {
      padding: 0 var(--gap-large);
      max-width: var(--container-width);
      margin: 0 auto;
    }
    
    &::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,.5);
      opacity: 0;
      visibility: hidden;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      z-index: 99;
    }
    
    &.active::before {
      opacity: 1;
      visibility: visible;
    }
  }
  
  .branch-btns {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap:0 10px;
      max-width: clamp(160px, 20vw, 250px);
      @media (min-width: 768px) {
        margin-top: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        translate: -50% -50%;
        z-index: 1002;
      }
      
      a.btn-higashihie,
      a.btn-imajuku {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 8em;
        padding: .25em 0;
        border-radius: 50px;
        font-size: clamp(8px, 1vw, 14px);;
        text-align: center;
        color: #fff;
        border: 1px solid #fff;
      }
      
      
  .logo {
      max-width: 160px;
      
      @media (min-width: 768px) {
          max-width: 100%;
      }
      
      & img {
        width: auto;
      }
    }
  }
  
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 60px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    background: #fff;
    border-radius: 10px 0 0 10px;
    padding: 10px;
    position: fixed;
    right: 0;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    @media (min-width: 768px) {
      display: none;
    }

    p{
      font-size: 10px;
      line-height: 1;
      margin: 0;
    }
    
    span {
      display: block;
      width: 100%;
      height: 3px;
      background-color: var(--color-primary);
      border-radius: 3px;
      transition: all 0.3s;
    }
    
    &.active {
      right: 80%;
      span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
      }
      
      span:nth-child(2) {
        opacity: 0;
      }
      
      span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
      }
    }
  }
  
  .global-nav{
      position: fixed;
      top: 0;
      right: -80%;
      z-index: 1000;
      width: 80%;
      height: 100vh;
      color: #fff;
      background: rgba(0, 0, 0, 0.2);
      transition: .3s;
      &.active {
        right: 0;
      }
      ul{
          display: flex;
          flex-direction: column;
          justify-content: center;
          width: 100%;
          height: 100vh;
          margin: 0 0 0 auto;
          padding: 5%;
          background: #FF9A3C;
          padding-top: var(--header-height);
          li{
              border-top: 1px dotted #fff;
              padding: 1em;
              font-size: 14px;
              text-align: center;
              &:last-child {
                border-bottom: 1px dotted #fff;
              }
              a{
                display: flex;
                justify-content: flex-start;
                align-items: center;
                gap: 1em;
                  &::before{
                      content: '';
                      display: block;
                      width: 2em;
                      height: auto;
                      aspect-ratio: 1/1;
                      background-size: contain;
                  }
                  &.nav-home::before{background: var(--nav-home);}
                  &.nav-hoiku::before{background: var(--nav-hoiku);}
                  &.nav-about::before{background: var(--nav-about);}
                  &.nav-nyuen::before{background: var(--nav-nyuen);}
                  &.nav-oneday::before{background: var(--nav-oneday);}
                  &.nav-faq::before{background: var(--nav-faq);}
                  &.nav-contact::before{background: var(--nav-contact);}
              }
          }
      }
      
      @media (min-width: 768px) {
        background: transparent;
        width: 100%;
        height: calc(var(--header-height) + 80px);
        display: flex;
        align-items: center;
        position: static;
        transform: translateX(0%);
        ul{
            display: flex;
            flex-direction:row;
            justify-content: center;
            width: 100%;
            height: auto;
            margin: 0;
            padding: 3%;
            background: transparent;
            li{
                width: calc((100% - clamp(160px, 25vw, 250px)) / 6);
                border: 0;
                border-left: 1px dotted #fff;
                padding: 1em .5em;
                font-size: clamp(8px, 1vw, 14px);
                a{
                  display: inline;
                    &::before{
                        width: 50%;
                        margin: auto;
                    }
                }
            }
            li:nth-child(4) {
                margin-right: clamp(160px, 25vw, 280px);
                border-right: 1px dotted #fff;
            }
            li:last-child {
              border-top: 0;
              border-bottom: 0;
              border-right: 1px dotted #fff;
            }
        }
      }
  }
}


/* フッターの前のコンテンツ用 */
section.lastcontent{
  padding: var(--gap-xl) var(--gap-medium) 40%;
  background: url(../img/footer_sp_illust.svg) center bottom no-repeat;
  background-size: 110% auto;
  position: relative;
  @media (min-width: 768px) {
    padding: var(--gap-xl) var(--gap-large) min(25%,25vw);
    background: url(../img/footer_pc_illust.svg) center bottom no-repeat;
    background-size:110% auto;
  }
}


/* フッター */
footer {
  background-color: var(--color-footer);
  padding: var(--gap-xl) var(--gap-medium) var(--gap-large);
  
  @media (min-width: 768px) {
    padding: var(--gap-xl) var(--gap-large) var(--gap-large);
  }
  
  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--gap-xl);
    
    @media (min-width: 768px) {
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
    }
    
    .footer-links{
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 5px;
      margin: 0;
      padding: 0;
      color: #fff;
      &::after{
        content: "";
        width: calc(50% - 10px);
        max-width: 200px;
        min-width: 160px;
      }
      li{
          border-bottom: 1px dotted #fff;
          padding: .5em;
          font-size: 14px;
          text-align: center;
          width: calc(50% - 10px);
          max-width: 200px;
          min-width: 160px;
          a{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: .5em;
              &::before{
                  content: '';
                  display: block;
                  width: 2em;
                  height: auto;
                  aspect-ratio: 1/1;
                  background-size: contain;
              }
              &.nav-home::before{background: var(--nav-home);}
              &.nav-hoiku::before{background: var(--nav-hoiku);}
              &.nav-about::before{background: var(--nav-about);}
              &.nav-nyuen::before{background: var(--nav-nyuen);}
              &.nav-oneday::before{background: var(--nav-oneday);}
              &.nav-faq::before{background: var(--nav-faq);}
              &.nav-contact::before{background: var(--nav-contact);}
              &.nav-recruit::before{background: var(--nav-recruit);}
          }
      }
  }
  @media (min-width: 768px) {
    background: transparent;
    height: calc(var(--header-height) + 80px);
    display: flex;
    align-items: center;
    position: static;
    transform: translateX(0%);
    .footer-links{
        display: flex;
        flex-direction:row;
        justify-content: center;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 3%;
        background: transparent;
        &::after{
          content: none;
        }
        li{
            width: calc((90% - clamp(160px, 25vw, 300px)) / 6);
            border: 0;
            border-left: 1px dotted #fff;
            padding: 1em .5em;
            font-size: clamp(8px, 1vw, 14px);
            max-width: auto;
            min-width: auto;
            a{
              display: inline;
                &::before{
                    width: 50%;
                    margin: auto;
                }
            }
        }
        li:last-child {
          border-top: 0;
          border-bottom: 0;
          border-right: 1px dotted #fff;
        }
    }
  }
  }
  
  .footer-info {
    display: flex;
    flex-direction: column;
    
    margin: var(--gap-large) auto;
    
    @media (min-width: 768px) {
      flex-direction: row;
      justify-content: space-between;
    }
    
    .garden-info {
      padding: var(--gap-medium);
      text-align: center;
      color: #fff;
      @media (min-width: 768px) {
        &:first-child{order: 1;}
        &:last-child{order: 3;}
      }
      .garden-name {
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        padding: .5em 1em;
        border-radius: var(--border-radius);
      }

      .garden-tel {
        font-size: 150%;
        font-weight: bold;
        display: flex;
        justify-content: center;
        align-items: center;
        &::before{
          content: "";
          display: inline-block;
          width: 1em;
          height: 1em;
          background: url(../img/icon_phone.svg) center no-repeat;
          background-size: contain;
        }
      }
      p{
        color: #fff;
      }
    }
    
    
    .footer-logo {
      background: #fff;
      border-radius: var(--border-radius);
      padding: 1em 2em;
      display: flex;
      justify-content: center;
      align-items: center;
      @media (min-width: 768px) {
        margin-bottom: 0;
        order: 2;
      }
    }
  }
  
  .footer-bottom {
    border-top: 2px dotted #fff;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .25em;
    gap: 1em;
    p{
      color: #fff;
    }
    
    .privacy-policy {
      a {
        font-size: 12px;
        display: flex;
        align-items: center;
        &::after{
          content: "";
          display: inline-block;
          width: 1em;
          height: 1em;
          background: url(../img/btn_arrow.svg) center no-repeat;
          background-size: contain;

        }
      }
    }
    
    .copyright {
      font-size: 12px;
    }
  }
}

/* コンテンツ */

.page-mv {
  position: relative;
  overflow: hidden;
  background: #f0fcfa;
}
.page-mv .page-mv-inner {
  /* max-width: var(--container-width); */
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.page-mv .page-mv-content {
  position: relative;
  width: 100%;
  height: 50vh;
}
.page-mv .illust_frame {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  translate: 0 1px;
}
@media (min-width: 768px) {
  .page-mv .illust_frame {
    translate: 0 1px;
  }
}
.page-mv .illust_frame img {
  width: 100%;
  max-height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.page-mv .page-mv-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-mv .page-mv-image-container .page-mv-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-mv .page-mv-image-container .page-mv-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像の比率を保ちながら領域を埋める */
  -o-object-position: center;
     object-position: center; /* 画像の中心を表示 */
}
.page-mv .page-mv-text {
  position: absolute;
  bottom: 15%;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 0 var(--gap-medium);
  color: #fff;
}
@media (min-width: 768px) {
  .page-mv .page-mv-text {
    font-size: 1.5em;
    bottom: 15%;
  }
}
.page-mv .page-mv-text .main-catch {
  font-size: 24px;
  color: white;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page_content section:not(.page-mv):not(.lastcontent):not(.radius_box):not(.archive_visual):not(.single_visual){margin: 0 var(--gap-medium);}
.page_content .center {text-align: center;}
.page_content .margin-y-s {margin: 8px 0;}
.page_content .margin-b-s {margin-bottom: 8px;}
.page_content .margin-y-m {margin: 16px 0;}
.page_content .margin-b-m {margin-bottom: 16px;}
.page_content .margin-y-l {margin: 32px 0;}
.page_content .margin-b-l {margin-bottom: 32px;}
.page_content .margin-y-xl {margin: 64px 0;}
.page_content .margin-b-xl {margin-bottom: 64px;}
.page_content .bgFBE0C7 {background: #FBE0C7;}
.page_content .bgCEEEE0 {background: #CEEEE0;}
.page_content .bgFACB5C {background: #FACB5C;}
.bgf7921e{background: #f7921e;}
.bgfe8baa{background: #fe8baa;}
.bg86c960{background: #86c960;}
.bg67bbf7{background: #67bbf7;}
.bgf26837{background: #f26837;}
.colf7921e{color: #f7921e;}
.colfe8baa{color: #fe8baa;}
.col86c960{color: #86c960;}
.col67bbf7{color: #67bbf7;}
.colf26837{color: #f26837;}


.page_content .flexbox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page_content section:not(.page-mv) > .inner {
  max-width: var(--container-width);
  margin: auto;
}
.page_content section.radius_box {
  border-radius: 40px;
  padding: 2em;
}
@media (min-width: 768px) {
  .page_content section.radius_box {
    border-radius: 80px;
    padding: 3em;
  }
}

.deco_ballon{
  background: url(../img/deco_ballon_pink.svg) center no-repeat;
  background-size: contain;
  margin-bottom: var(--gap-small);
  padding: 1em 1em 2em;
  color: #A3703A;
  font-size: clamp(14px,4.5vw,1.5em);
  text-align: center;
  @media (min-width: 768px) {
    padding: 1.5em 1em 3em;
  }
}

