:root {
    --brand-color: #D89ABD;
    --sub-font:'Yu Mincho', '游明朝', 'YuMincho', serif;
    --sub-brand-color: #DEB6CD;
    --font-color:#230068
 ;
    
  }
  @media screen and (min-width: 751px) {
    :root {
      --section-margin:120px;
      --h2-font-size: 3.2rem; 
    }
  }
  @media screen and (max-width: 750px) {
    :root {
      --section-margin:60px;
      --h2-font-size: 2.2rem; 
    }
  }
  html {
    font-size: 10px; /* 1rem = 10px に設定 */
    font-family: "Noto Serif JP", serif;
    scroll-behavior: smooth;
  }
  body{
    font-size: 1.6rem;
    font-family: 'Yu Gothic', '游ゴシック', 'YuGothic', sans-serif;
    margin:0!important;
   
  }
  /*ヘッダーで隠れるのを防ぐ*/
  :target::before {
    content: "";
    display: block;
    height: 240px; /* ヘッダーの高さ */
    margin-top: -240px; /* ヘッダーの高さ */
    visibility: hidden;
}
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
  a{
    color: #000;
  }

  .fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  input:-webkit-autofill
  {
    /* 色はinput要素の背景色（ここでは#fff）にそろえる */
    box-shadow: 0 0 0px 999px #fff inset;
  }
  
  input[type="text"]::placeholder {
    
  }
  
  /* Microsoft Edge */
  input[type="text"]::-ms-input-placeholder {
    
  }
  
  /* Internet Explorer */
  input[type="text"]:-ms-input-placeholder {
    
  }
  textarea::placeholder {
     /* プレースホルダーの文字色を指定 */
  }
  input {
      border-radius:5px;
      -webkit-box-sizing: content-box;
      -webkit-appearance: button;
      appearance: button;
      border: none;
      box-sizing: border-box;
      cursor: pointer;
  
    border: 1px solid #CCC;
      border-radius:5px;
      padding:10px;
      width:100%
  }
  
  textarea {
      border-radius:5px;
      -webkit-box-sizing: content-box;
      -webkit-appearance: button;
      appearance: button;
      border: none;
      box-sizing: border-box;
      cursor: pointer;
  
    border: 1px solid #CCC;
      border-radius:5px;
      padding:10px;
      width:100%
  }
  .fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    
  }
  .zoom_wrap{
    width:100%;
    overflow: hidden;
  }
  .zoom-in-section {
    opacity: 0.6;

    transform: scale(1.2); /* 初期状態を拡大 */
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
  }
  
  .zoom-in-section.is-visible {
    opacity: 1;
    transform: scale(1); /* 通常のサイズに戻す */
  }
  

  
  
  .padding-width{
    padding-left:4%;
    padding-right: 4%;
  }
  
  .modal {
    display: none; /* デフォルトでは非表示 */
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 40px 0;
    border: 1px solid #888;
    width: 800px;
    position: relative;
    top: 50%;
    transform: translateY(-50%); /* 垂直方向に中央揃え */
}

.close {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.ad_btn{
  width:100%;
  position: relative;
  background: var(--brand-color);
  color: #FFF;
  font-size:1.5rem;
  font-weight: 600;
  padding:20px 0;
  text-align: center;
  border: 3px solid var(--brand-color);
  display: inline-block;
  transition: all 0.3s ease;
}
.ad_btn:hover {
  opacity: 0.6;
}
.google_map_wrap{
  width:100%;filter: grayscale(100%);
}
.google_map_wrap iframe {
  width: 100%;
}


.qa_contents{
  width:100%;
  background: #FFF;
  border-radius: 10px;
  padding:20px;
  margin:0 0 40px;
  border: 3px solid var(--brand-color);;
}

.faq-item {
  margin-left: auto;
  margin-right: auto;

}

.faq-question__wrap {
  position: relative;
  padding: 10px 5px 10px 35px;
  cursor: pointer;

}

.minus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: var(--brand-color);
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.plus-icon {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background: var(--brand-color);
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
}

.plus-icon.active {
  transform: translateY(-50%);
}

.faq-question__title {
  font-weight: bold;
  font-size: 2.0rem;
  position: relative;
  width: 90%;
  padding: 0 0 0 20px;
  line-height: 140%;
}
.faq-question__title::before {
  position: absolute;
   content: "Q";
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  font-family: "Barlow", sans-serif;
  font-size: 3.2rem;
  background: var(--brand-color);
  color: white;
  display: inline-block;
  width: 4.0rem;
  height: 4.0rem;
  line-height: 3.5rem;
  text-align: center;
  border-radius: 50%;
  }

.faq-answer__wrap {
  background: #fff;
  padding: 10px 5px 10px 35px;
  transition: ease all 0.5s; /* 擬似要素のトランジションを追加 */
  height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

.faq-answer__wrap.active {
  height: auto;
  
}
.faq-answer__wrap {
  background: #fff;
  opacity: 0;
  padding: 10px 5px 10px 35px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: ease all 0.7s; /* 擬似要素のトランジションを追加 */
}

.faq-answer__wrap.active {
  opacity: 1;
  padding: 10px 5px 10px 35px;
}

.faq-answer__title {
  position: relative;
  font-weight: 500;
  color: #000;
  font-size: 2.0rem;
  padding: 0 0 0 20px;
  line-height: 140%;
  width: 100%;
}



.faq-answer__text {
  margin-top: 5px;
}
.front_order{
  width:100%;
  text-align: center;
  margin:0 0 calc(var(--section-margin) / 2)
}
.front_order p{
  width:100%;
  font-size: 1.8rem;
  text-align: center;
}
.front_order img.icon_insta{
  width:80px;
  margin: auto;
  display: block;
}
.para_wrap{
  width:100%;
  padding-bottom:var(--section-margin) ;
}

.para_title h2{
  width: 100%;
  background-color: var(--back-gray);
  padding: 12px 30px;
  border-left: 5px solid var(--brand-color);
  font-size: 3.2rem;
  margin-bottom: calc(var(--section-margin) / 2) ;;

}
.para_box{
  width:100%;
  padding:0 4%;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 calc(var(--section-margin) / 2);
  align-items: center;
}
.para_box .box_01{
  width:70%;
  padding-right: 10%;
}
.para_box .box_02{
  width:30%;

}
.para_wrap .para_box:last-child{
  margin: 0;
}
h2.highlighter {
  font-size: var(--h2-font-size);
  font-weight: 700;
  text-align: center;
  margin: 0 0 calc((var(--section-margin) * 2 ) / 3 );
  text-decoration: underline; /* 下線 */
text-decoration-thickness: 0.5em; /* 線の太さ */
text-decoration-color: #D9F631; /* 線の色 */
text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */

}
.sub_mb{
  margin-bottom: calc(var(--section-margin) / 1)!important;
}
.para_mb{
  margin-bottom: calc(var(--section-margin) / 2);
}
.mb0{
  margin-bottom:0!important;
}
header input[type=checkbox] {
  display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);
}
#overlay-button {
  position: fixed;
        right: 4px;
        top: 4px;
        z-index: 15;
        cursor: pointer;
        user-select: none;
        padding: 26px 0;
        background: var(--brand-color);
        padding: 30px 10px;
        border-radius: 30px;

  
}
header.scrolled #overlay-button {

  
}
#overlay-button span {
  height: 2px;
  width: 40px;
  border-radius: 2px;
  background-color: #FFF;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
header.scrolled #overlay-button span{
  background-color: #FFF;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 2px;
  width: 40px;
  border-radius: 2px;
  background-color: #FFF;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background-color: #FFF;
}
header.scrolled #overlay-button:hover span, header.scrolled #overlay-button:hover span:before, header.scrolled #overlay-button:hover span:after {
  background-color: #FFF;
}
header.scrolled #overlay-button span:before, header.scrolled #overlay-button span:after {
  background-color: #FFF;
}


#overlay {
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
  visibility: hidden;
  position: fixed;
  top: 0;
  overflow-y: auto;
  padding:80px 0 200px
}
#overlay.active {

}

header #overlay ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 60px;
}

header #overlay ul li {
  text-align: left;
  width: 100%;
  padding: 0 4%;
  position: relative;
}

header #overlay ul li a {
  font-size: 2.4rem;
  line-height: 120%;
  font-weight: 700;
  color: #FFF;
  cursor: pointer;
}

#overlay label {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  border-top: 0.5px solid #c7c5c5;
  color: #FFF;
}
#overlay label p{
  color: #FFF;
  margin: 0;
  padding:0;
  font-size: 1.6rem;
}
#overlay label a{
  color: #FFF;
}
#overlay input {
  display: none;
}
#overlay .accshow {
  height: 0;
  overflow: hidden;
}
#overlay .accshow p {
  padding: 1.5rem;
  margin: 0;
  color: #FFF;
}
#overlay .accshow p a{
  color: #FFF;
  font-size: 1.4rem;
}
#overlay .cssacc:checked + .accshow {
  height: auto;
}
.carendar{
  position: fixed;
  top:50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
}
  @media screen and (min-width: 751px) {
    .moca_sp{display: none;}
    .moca_pc{display: initial;}
    .main_wrap{
      max-width: 1200px;
      min-width: 1000px;
      margin: auto;
      padding-left:4%;
    padding-right: 4%;
    }
    h2.title {
      font-size: var(--h2-font-size);
      font-weight: 700;
      font-family: var(--sub-font);
      text-align: center;
      margin: 0 0 calc((var(--section-margin) * 1 ) / 4 );
      position: relative;
  }
  h3.sub_title{
    width: 100%;
    font-size: calc(var(--h2-font-size) * 3 / 4);
    font-weight: 700;
    font-family: "Fira Sans Condensed", serif;
    color: var(--brand-color);
    text-align: center;
    margin:0 0 calc(var(--section-margin) / 2);
   }
 
    h3.sub{
      width: 100%;
      font-family: var(--sub-font);
      font-size: calc(var(--h2-font-size) * 3 / 4);
      font-weight: 700;
      color: var(--brand-color);
      text-align: center;
      margin:0 0 10px;
     }
     h4.sub{
      width: 100%;
      font-size: calc(var(--h2-font-size) * 2.5 / 4);
      font-weight: 700;
      text-align: center;
      margin:0 0 2rem
     }
    
    a{
      
      font-size:1.6rem;
      transition: opacity 0.5s
    }
    a:hover{
      opacity: 0.6;
    }
    p{
      font-size:1.6rem;
      line-height: 180%;
      margin-bottom:1.2rem;
      letter-spacing: 0.1rem;
      
    }
    p:last-child {
      margin-bottom: 0;
  }
    .btn_wrap{
      width:100%;
      text-align: center;
    }
    .more_btn{
      position: relative;
      color: var(--brand-color);
      font-size:1.8rem;
      padding:20px 80px;
      font-weight: 700;
      text-align: center;
      border: 1px solid var(--brand-color);
      z-index: 2;
      display: inline-flex;
        justify-content: center;
        align-items: center;
        background: #FFF;
       border-radius: 50px;
     
    }
    
  

  
    .modal-content .ad_wrap{
      width:80%;
      margin:0 10%;
  }
  .modal-content .ad_wrap ul{
      width:100%;
      display: flex;
      flex-wrap: wrap;
      gap:30px 40px;
      justify-content: center;
  }
  .modal-content .ad_wrap ul li{
      width:calc((100% - 80px) / 3);
      display: flex;
      flex-wrap: wrap;
  }
  .modal-content .ad_wrap ul li h3{
    width:100%;
    text-align: center;
    margin:0 0 20px;
  }
  .modal-content .ad_wrap ul li img{
      width:60%;
      margin:0 20% 10px;
      text-align: center;
  }
  #pic_gallery{
    width: 100%;
    padding:var(--section-margin) 0;
    position: relative;
  }
  
  
  .pic_gallery_wrap ul{
    width:100%;
    display: flex;
    flex-wrap: wrap;
    gap:40px;
    margin:0 0 calc(var(--section-margin) / 2)
  }
  .pic_gallery_wrap ul li{
    width:calc((100% - 80px) / 3);
    position: relative;
  }
  .pic_gallery_wrap ul li .date{
    font-size: 1.4rem;
    font-family: "Fira Sans Condensed", serif;
    color: var(--brand-color);
    padding: 10px 0
  }
  .pic_gallery_wrap ul li h3{
    color: #000;
    text-align: left;
    font-size: 1.6rem;
  }
  .pic_gallery_wrap ul li img{
    width:100%;
    height: auto;
    object-fit: cover;
  }
  }
  
  @media screen and (max-width: 750px) {
    .moca_pc{display: none !important;}
    .moca_sp{display: block;}
    .main_wrap{
      width:100%;
      margin: auto;
      padding-left:4%;
    padding-right: 4%;
    }
    h2.title {
      font-size: var(--h2-font-size);
      font-weight: 700;
      line-height: 140%;
      text-align: center;
      margin: 0 0 calc((var(--section-margin) * 1 ) / 4 );
      position: relative;
  }
  h3.sub_title{
    width: 100%;
    font-size: calc(var(--h2-font-size) * 3 / 4);
    font-weight: 700;
    font-family: "Fira Sans Condensed", serif;
    color: var(--brand-color);
    text-align: center;
    margin:0 0 calc(var(--section-margin) / 2);
   }
    h3.sub{
      width: 100%;
      font-size: calc(var(--h2-font-size) * 3 / 4);
      font-weight: 700;
      text-align: center;
      margin:0 0 2rem!important
     }
     h4.sub{
      width: 100%;
      font-size: calc(var(--h2-font-size) * 2.5 / 4);
      font-weight: 700;
      text-align: center;
      margin:0 0 2rem
     }
    
    a{
      color: #000;
      font-size:1.2rem;
      transition: opacity 0.5s
    }
    a:hover{
      opacity: 0.6;
    }
    a:hover img {
      opacity: 1; /* 画像には半透明を適用しない */
    }
    p{
      font-size:1.2rem;
      line-height: 140%;
      margin-bottom:1.2rem;
      letter-spacing: 0.3rem;
    }
    p:last-child{
      margin-bottom:0
    }
    .btn_wrap{
      width:100%;
      text-align: center;
    }
    .more_btn{
      position: relative;
      color: var(--brand-color);
      font-size:1.8rem;
      padding:20px 80px;
      font-weight: 700;
      text-align: center;
      border: 1px solid var(--brand-color);
      z-index: 2;
      display: inline-flex;
        justify-content: center;
        align-items: center;
        background: #FFF;
       border-radius: 50px;
     
    }
    .modal-content .ad_wrap{
        width:80%;
        margin:0 10%;
    }
    .modal-content .ad_wrap ul{
        width:100%;
        display: flex;
        flex-wrap: wrap;
        gap:20px
    }
    .modal-content .ad_wrap ul li{
        width:calc((100% - 20px) / 2);
        display: flex;
        flex-wrap: wrap;
    }
    .modal-content .ad_wrap ul li img{
        width:60%;
        margin:0 20% 10px;
        text-align: center;
    }
    .carendar{display: none;}
    #pic_gallery{
      width: 100%;
      padding:var(--section-margin) 0;
      position: relative;
    }
    
    
    .pic_gallery_wrap ul{
      width:100%;
      display: flex;
      flex-wrap: wrap;
      gap:20px;
      margin:0 0 calc(var(--section-margin) / 2)
    }
    .pic_gallery_wrap ul li{
      width:calc((100% - 20px) / 2);
      position: relative;
    }
    .pic_gallery_wrap ul li .date{
      font-size: 1.4rem;
      font-family: "Fira Sans Condensed", serif;
      color: var(--brand-color);
      padding: 10px 0
    }
    .pic_gallery_wrap ul li h3{
      color: #000;
      text-align: left;
      font-size: 1.6rem;
    }
    .pic_gallery_wrap ul li img{
      width:100%;
      height: auto;
      object-fit: cover;
    }
  }

.ad-link{
text-align: center;
}
  /**ここまでGLOBA**/