/* 調整用スタイル */
@charset "utf-8";

/* *****共通設定***** */

body{ 
     font-size: 17px; 
       font-family: 'Noto Sans JP', sans-serif;
       color: #545550;
          }
p{
  line-height: 1.8;       
  letter-spacing: 0.02em;
  text-align:justify;
  word-break:break-all; 
  text-justify:inter-ideograph;
  text-justify:inter-character;
  word-wrap:break-word;
  overflow-wrap:break-word;
}
a {
  text-decoration: none;
   color: #1a0dab;
}

ul,
li {
  list-style: none;
}


main {
  background-color: #fff;
}

img{
  max-width: 100%;
}
.main {
  margin: auto;
}

section .container{
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 0.8rem;
   max-width: 1200px;
}

/* 監修 */

.kanshu{
  border: 1px solid #ccc;
  padding: 1rem 2rem;
  width: fit-content;
  margin: 2rem auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}


.kanshu .title{
  padding: 1rem 1rem 2rem;
  font-weight: bold;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.kanshu .title::after {
  content: "";
  flex-grow: 1;          /* 棒を残りスペースいっぱいに伸ばす */
  height: 1px;           /* 棒の太さ */
  background: #ccc;      /* 棒の色 */
  margin-left: 1rem;     /* 文字との間の余白 */
}
a .kanshu-in{
  color: #333;
}

.circle-image {
  width: 150px;       /* 任意の幅 */
  height: 150px;      /* 幅と同じ数値にする */
  border-radius: 50%; /* これで丸くなる */
  object-fit: cover;  /* 重要：縦横比を維持して枠を埋める */
  object-position: center; /* 中央をトリミング */
  display: block;
  margin: 0 auto;
}
.kanshu .text{
  margin-top:2rem;
}
.kanshu .text h3{
  margin: 0 0 1rem 0;
}
.kanshu .text ul{
  font-size: 1rem;
  line-height: 1.8;
}

.kanshu .kanshu-bt{
  text-align: right;
  margin: 1rem 0 0.5rem;
}


/* ヘッダー */


.header {
  background-color: #fff;
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header__inner {
  padding: 0 20px ;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;

}


/* ヘッダーのロゴ部分 */
h1.header__title {
  width: 200px;
}


.header__title a{
}
.header__title img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translatex(100%);
  background-color: rgba(0, 0, 0, 0.7);
  transition: ease .2s;
}



/* ナビのリンク */
.nav-items__item a {
  color: #fff;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 20px;
  margin-bottom: 24px;

}



/* .nav-items__item:last-child a {
  margin-bottom: 0;
} */



/* ハンバーガーメニュー */

.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9996;
}



/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span{  background-color: #fff;}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}





/* *****LP全体***** */


.sec-btn{
  width: 70%;
  text-align: center;
  margin: 2rem auto;
}




/* *****mv***** */

#mv{ 
  background: url("../img/sp-mv.avif") no-repeat center center; 
  background-size: cover;
  /* max-width: 100%; */
  height: 630px;
  position: relative;
}
#mv #headline{
  position: relative;
    max-width: 100%;
  height: 630px;
}
#mv #headline h1{
  font-family: "Kyoukasho ICA Medium";
display: none!important;
}

#mv #headline .mv_logo{
display: none!important;
}
#mv .scroll {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
}

#mv .scroll img {
  margin-top: 8px;
}

@keyframes scrollAnimation {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  50.1% {
    transform: scaleY(1);
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

#mv .scroll img {
  animation-name: scrollAnimation;
  animation-duration: 1.8s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}




/* section#page_anchor */

section#page_anchor .page_anchor_contents{
  margin: 2rem auto 1rem;
}
section#page_anchor ul{
  display: grid;
    grid-template-columns: repeat(auto-fit, 70px);
    gap: 1.5rem;
    place-content: center;
}
section#page_anchor li a{
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap:1rem;
  font-size: 0.8rem;
  color: #333;
  position: relative;
  z-index: 2;
}

section#page_anchor li a {
  transition: transform 0.3s ease;
}

section#page_anchor li a:hover {
  transform: translateY(-20px) scale(1.1);
    /* transform: translateY(-10px); */
}

/* *****voice***** */


 section.voice{
  padding: 3rem 0;
 }

 section.voice h2.lead{
   margin: 0 1rem 3rem; 
   line-height: 1.2;
   text-align: left;
   color: #d4af37;
   font-size: 1.4rem;
   max-width: 100%;
 }
section.voice h2.lead span.left-center{display: inline-block; text-align: left;}


/* カルーセル全体の配置調整用 */
.carousel-container {
  max-width: 1200px;
  margin: 50px auto;
  /* 上下に余白を設定 */
  padding: 0 20px;
}


/* Swiperの表示領域 */

.swiper {
  width: 100%;
  padding: 40px 0;
}


/* スライド幅固定（ズレ防止の最重要ポイント） */
.swiper-slide {
  width: 360px !important;
  transition: transform 0.4s ease;
  display: flex;
  justify-content: center;
  overflow: visible; /* これも有効 */
}

.testimonial-card {
  width: 350px;
  min-height: 280px;
  background: #fff;
  border: 2px solid #ddd;
  text-align: center;
  border-radius: 10px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
    /* padding: 2px;  */
      /* border-radius: 12px;
  background: #fff; */
  overflow: hidden; /* ← これが重要 */

}


.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
    display: block;
  margin-bottom: 10px; 
}

.review-text {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
  text-align: left;
  font-weight: bold;
  padding: 0.5rem;
  margin-bottom: 1rem;

}

/* Swiperナビゲーションボタンのスタイル */
.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.7);
  /* 背景を半透明の白に */
  width: 50px;
  height: 50px;
  /* border-radius: 50%;  */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* 影をつける */
}

/* 矢印のサイズ調整 */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
  font-weight: bold;
  color: #178ae7;
}

/* スマホ表示時の調整（画面端に寄りすぎないようにする） */
@media screen and (max-width: 640px) {

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px;
  }
}



/* *****sec1***** */

section#sec1{
  padding: 2rem 0 1rem;
 }



 #sec1 h2.lead{
   margin: 0 0 3rem; 
   line-height: 1.2;
   text-align: center;
   color: #d4af37;
   font-size: 1.4rem;
   max-width: 100%;
     text-align: left;
 }

 #sec1 h3.lead{
  box-sizing: border-box;
   text-align: center;
   font-size: 1.3rem;
   color: #815107;
   line-height: 1.3; 
   margin: 3rem 0 2rem;
     text-align: left;
 }

 
 #sec1 .sec1-text p{
   margin: 0 0 1.2rem;
   line-height: 1.8;
   font-size: 1.1rem;
 }
 
 #sec1 .sec1-img{
   max-width: 100%;
   margin: 2rem auto;
   text-align: center;
 }
 #sec1 .sec1-img img{
   max-width: 100%;
 }
 


/* *****sec2***** */
section#sec2{
      /* 方眼紙模様 */ 
  /* background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
  linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 10px 10px;
  background-repeat: repeat;  */

  background-color: #fbfbf3;        
  padding:3rem 0 1rem;
    position: relative;
}


 #sec2 h2.lead{
   margin: 0 0 2rem; 
   line-height: 1.2;
   text-align: center;
   color: #d4af37;
   font-size: 1.5rem;
   max-width: 100%;
     text-align: left;
 }

 #sec2 h3.lead{
  box-sizing: border-box;
   text-align: center;
   font-size: 1.3rem;
   color: #815107;
   line-height: 1.3; 
   margin: 3rem 0 2rem;
     text-align: left;
 }


#sec2 .sec2-img{
  margin: 0 auto;
  text-align: center;
}
#sec2 .sec2-img img{
  max-width: 100%;
}

/* *****sec2-2***** */
section#sec2-2{
      /* 方眼紙模様 */ 
  /* background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
  linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 10px 10px;
  background-repeat: repeat;  */

  background: #fbfbf3;       
  padding:0 0 2rem;
}

 #sec2-2 h2.lead{
   margin: 3rem 0 2rem; 
   line-height: 1.2;
   text-align: center;
   color: #d4af37;
   font-size: 1.5rem;
   max-width: 100%;
     text-align: left;
 }
#sec2-2 .sec2-2-img{
  margin: 0 auto 2rem;
  text-align: center;
}
#sec2-2 .sec2-2-img img{
  max-width: 100%;
  box-sizing: border-box;
}

 #sec2-2 .sec2-2-text p{
   margin: 0 0 1.2rem;
   line-height: 1.8;
   font-size: 1.1rem;
 }



/* *****sec3***** */

section#sec3{
padding:3em 0;
}


 #sec3 h2.lead{
   margin: 0 0 2rem; 
   line-height: 1.2;
   text-align: center;
   color: #d4af37;
   font-size: 1.5rem;
   max-width: 100%;
     text-align: left;
 }
 #sec3 h3.lead{
  box-sizing: border-box;
   text-align: center;
   font-size: 1.3rem;
   color: #815107;
   line-height: 1.3; 
   margin: 3rem 0 2rem;
     text-align: left;
 }

#sec3 .sec3-img{
    margin: 0 auto 3rem;
    text-align: center;
}

#sec3 .sec3-img img{
max-width: 100%;
}
/* #sec3 .sec3-text{
 margin: 1rem  1rem 0;
} */


 #sec3 .sec3-text p{
   margin: 0 0 1.2rem;
   line-height: 1.8;
   font-size: 1.1rem;
 }
 


/* *****sec4***** */

section#sec4{
  background: #fbfbf3;
  padding: 2rem 0 1rem;
  position: relative;
}
section#sec4::after{
    content: "";
    position: absolute;
    bottom: -30px; /* 下にピッタリくっつけたいので三角の高さ分下にずらす */
    height: 30px;
    width: 100%;
    clip-path: polygon(0 0,50% 100%,100% 0); /* 下向き三角形 */
    background-color: #f8faed;
/*    border-top: 1px solid #f8faed;*/
border-top: 1px solid transparent;
}

 #sec4 h2.lead{
   margin: 0 0 2rem; 
   line-height: 1.2;
   text-align: center;
   color: #d4af37;
   font-size: 1.5rem;
   max-width: 100%;
     text-align: left;
 }
 #sec4 h3.lead{
  box-sizing: border-box;
   text-align: center;
   font-size: 1.3rem;
   color: #815107;
   line-height: 1.3; 
   margin: 3rem 0 2rem;
     text-align: left;
 }


#sec4 .sec4-text p{  line-height: 2rem;}


#sec4 .sec4-img{
  width: 100%;
  margin: 2rem auto;
  text-align: center;
}


/* *****sec5***** */


section#sec5{
  background-color: #fff;
  padding: 0 0 3rem;
  position: relative;
}



 #sec5 h2.lead{
   margin: 3rem 0 2rem; 
   line-height: 1.2;
   text-align: center;
   color: #d4af37;
   font-size: 1.5rem;
   max-width: 100%;
     text-align: left;
 }
 #sec5 h3.lead{
  box-sizing: border-box;
   text-align: center;
   font-size: 1.3rem;
   color: #815107;
   line-height: 1.3; 
   margin: 3rem 0 2rem;
     text-align: left;
 }

#sec5 h4{
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.5rem;
  margin: 1rem 0;
}

#sec5 .sec5-img{
  width: 100%;
  text-align: center;
  margin: 2rem auto;
}

#sec5 .sec5-img img{
  max-width: 100%;
}


#sec5 .sec5-text p{
  line-height: 2rem;
  margin-bottom: 0.8rem;
}


.box8 {
    padding: 1rem 1rem 0.2rem;
    margin: 2rem auto;
    color: #232323;
    background: #fff8e8;
    border-left: solid 10px #ffc06e;
    width: 90%;
}
.box8 p{
  margin: 0!important; 
  padding: 0; 
}


.midashi-box {
    position: relative;
    margin: 2rem 0;
    padding: 1rem 1rem 0.5rem;
    border: solid 3px #007bff;
    border-radius: 8px;
}
.midashi-box .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #007bff;
    font-weight: bold;
}
.midashi-box p {
    margin: 0!important; 
    padding: 0!important;
}

.isharyo {max-width: 700px; margin: 3rem auto 0; background: white; padding: 25px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.isharyo h3 { font-size: 1.1rem; text-align: center; color: #333; margin-bottom: 2rem;}
.input-group { margin-bottom: 2rem; }
label { display: block; margin-bottom: 1rem; font-weight: bold; font-size: 0.9rem; }
input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; }
button { width: 100%; padding: 12px; background-color: #007bff; color: white; border: none; border-radius: 5px; cursor: pointer; font-size: 1rem; margin-top: 10px; }
button:hover { background-color: #0056b3; }
.result-area { margin-top: 25px; padding: 15px; line-height: 1.5; background-color: #e9ecef; border-radius: 5px; display: none; }
.price { font-size: 1.5rem; color: #d9534f; font-weight: bold; }
.note { font-size: 0.8rem; color: #666; margin-top: 15px; }



/* *****sec6***** */

section#sec6{
  background: #fbfbf3;
  padding: 3rem 0 ;
}
 #sec6 h2.lead{
   margin: 0 0 2rem; 
   line-height: 1.2;
   text-align: center;
   color: #d4af37;
   font-size: 1.5rem;
   max-width: 100%;
     text-align: left;
 }
 #sec6 h3.lead{
  box-sizing: border-box;
   text-align: center;
   font-size: 1.3rem;
   color: #815107;
   line-height: 1.3; 
   margin: 3rem 0 2rem;
     text-align: left;
 }
#sec6 .sec6-img{
  width: 100%;
  text-align: center;
}

#sec6 .sec6-img img{
  max-width: 100%;
}

/* #sec6 .sec6-text p{
  line-height: 2rem;
  margin-bottom: 0.8rem;
} */


 /* 治療の流れ */

.chiryo-flow{

}
 #sec6 .btn-tel a{
  display: block;
 background: linear-gradient(to bottom, #a76a0f ,#815107);
 padding: 0.5rem 1rem;
 color: #fff;
 margin: 1rem auto 1rem;
 text-align: center;
 border-radius: 5px;
}
 #sec6 .chiryo-box{
    position: relative;
    margin: 1rem 0;
}

.gradient-border {
  position: relative;
  /* ボーダーの太さを設定 */
  border: 2px solid transparent; 
  /* グラデーションを設定 */
  border-image: linear-gradient(to right, #815107, #d4af37);
    border-image: linear-gradient(to right, #815107, #d4af37);
  /* border-image-slice は必須。ボーダー全体にグラデーションを適用するために 1 を設定 */
  border-image-slice: 1; 
}

 #sec6 .square-container {
    position: absolute; 
    top: 0;
    left: 0;
    
    /* 正方形のサイズ */
    width: 30px;
    height: 30px;
    
    /* グラデーション（左上から右下へ） */
    background: linear-gradient(to bottom right, #815107, #d4af37);
        background: linear-gradient(to bottom right, #815107 ,#815107);
    /* 数字の中央揃え、フォントなど */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; 
    font-size: 1rem;
    font-weight: bold;
    z-index: 10; /* 他のコンテンツより手前に表示 */
}
#sec6 .chiryo-text{
  /* border: 1px solid #e4e1ce;
  border-left: none!important; */
  padding: 0.5rem 1rem;
  line-height: 1.7rem;
  font-size: 1rem;

}

#sec6 .chiryo-text h3{
  color: #545550;
  font-size: 1.1rem;
  font-weight: bold;
   margin: 3rem 0 2rem;
}



.triangle2{
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #815107;
}


#sec6 .arrow{
  margin: 0 auto;
}


/* *****sec7***** */

section#sec7{
  background: #fff;
  padding: 2rem 0 1rem;
}
 #sec7 h2.lead{
   margin: 0 0 2rem; 
   line-height: 1.2;
   text-align: center;
   color: #d4af37;
   font-size: 1.5rem;
   max-width: 100%;
     text-align: left;
 }
 #sec7 h3{
  box-sizing: border-box;
   text-align: center;
   font-size: 1.3rem;
   color: #815107;
   line-height: 1.3; 
   margin: 3rem 1rem 1rem;
     text-align: left;
 }
 #sec7 h4{
  font-size: 1.3rem;
  font-weight: bold;
  margin: 2rem 0;
 }
 #sec7 h5{
  font-size: 1.2rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
 }


#sec7 .sec7-img{
  width: 100%;
  text-align: center;
  margin: 0 0 2rem;
}

#sec7 .sec7-img img{
  max-width: 100%;
}

#sec7 .sec7-text p{
  line-height: 2rem;
  margin-bottom: 0.8rem;
}


/* *****sec8***** */
section#sec8{
  /**/
  background-color: #f8faed;
  padding: 2rem 0 1.5rem;
}
#sec8 h2{
  font-size: 1.5rem;
  color: #545550;
  text-align: center;
  margin-bottom:2rem;
}
#sec8 .sec8-text{
  margin:1rem 0.7rem 1rem 0.7rem;
}

#sec8 .sec8-text p{
  line-height: 2.0rem;
}
.price_box {
    max-width: 100%;
    margin: 0 auto;
}

.price_box table {
  width: 95%;
  margin: 0 auto 1rem;
}

.price_box th {
    padding: 18px;
    background-color: #1d4899;
    color: #FFF;
    white-space: nowrap;
    border-bottom:1px solid #fff ;
    max-width: 100%;
    display: block;
    border-radius: 5px 5px 0 0;
}
.price_box td {
    padding: 18px;
    background: #fff;
    border: 1px solid #E8E8E8;
    max-width: 100%;
    display: block;
    border-radius: 0 0 5px 5px;
}

.price_box td > span{
font-weight: bold;
font-size: 1.5rem;
}

.price_box p.membership{
  font-size: 0.9rem;
  margin: 0 1rem 0.5rem;
}
.price_box .reason a{
    font-size: 0.9rem;
    color: #1d4899;
  border-bottom: 2px solid #91a3c9;
    margin: 0 1rem;
}

/* 時間割 */

#sec8 .wrap{
margin: 0 0.8rem;
}

#sec8 .js-scrollable{

}
table.timetable {
  border-collapse: collapse;
  margin: 0.8rem auto;
  padding: 0;
  table-layout: fixed;
  width: 100%;

}
table.timetable thead th{
  padding:0.7rem 0;
  background: #e4e1ce;
  color: #545550;
  font-size: 1rem;
  font-weight: normal;
}
table.timetable thead th.plan1,
table.timetable thead th.plan2,
table.timetable thead th.plan3{
border-left: 1px solid #d2d2d2;  
border-right: 1px solid #d2d2d2;

}

table.timetable th.lesson.tm{
border-left: 1px solid #d2d2d2;  
border-bottom: 1px solid #d2d2d2;
font-size: 0.9rem;
font-weight: normal;
padding: 0.7rem 0.5rem;
}
table.timetable th.timeno.ti{
border-left: 1px solid #d2d2d2;  
border-bottom: 1px solid #d2d2d2;
}


table.timetable thead th.timeno{
 border-radius: 5px 0 0 0 ;
}
table.timetable thead th.plan4{
 border-radius: 0 5px 0 0 ;
}
table.timetable th.timeno{
 padding: 0.7rem 0.5rem;
}


table.timetable tr {
  background-color: #fff;
}
table.timetable tr:nth-child(even){
  background-color: #f6f6f6;
}
table.timetable td {
  padding: 0.7rem 0;
  text-align: center;
}
table.timetable td.plan1_i,
table.timetable td.plan2_i, 
table.timetable td.plan3_i {
border-left: 1px solid #d2d2d2;  
border-right: 1px solid #d2d2d2;
border-bottom: 1px solid #d2d2d2;
}

 
table.timetable td.plan4_i {
border-bottom: 1px solid #d2d2d2 ;
border-right: 1px solid #d2d2d2;
}


table.timetable td i.fa-circle-check{
color: #008ce5;
}
table.timetable td i.fa-xmark{
color: #999999;
}

table.timetable th {
  font-size: 1em;
}
table.timetable th.lesson {
  font-size: 0.75em;
}

i{
  font-size:1.5em
}


#sec8 .pi-tex{
  margin: 0.5rem 0.8rem 0.5rem 0;
  font-size: 0.9rem;
  width: 100%;
  line-height: 1.3rem;
}
#sec8 .pi-tex p{

}

/* *****sec-tel***** */

/* *****sec4の下のみ***** */
section.sec-tel.mt-minus-3{margin-top: -1rem;}
section.sec-tel.pt-5{padding-top: 5rem;}



section.sec-tel{
    background: #e5dfb9;
    padding: 2rem 0 0;
    margin-bottom: 0!important;
}

section.sec-tel .container{
  padding: 0 0.8rem;
}


section.sec-tel .sec-tel-left{
  margin: 0 auto;
  text-align: center;
}
section.sec-tel .sec-tel-left p.yoyaku{
  font-size: 1.6rem;
    color: #815107;
    letter-spacing: 3px;
    font-weight: 500;
    margin: 0rem 1rem 1rem;
    text-align: center;
}


section.sec-tel .sec-tel-right{
  margin: 1.5rem auto 0;
  text-align: center;
}

section.sec-tel .sec-tel-right p{
  letter-spacing: 2px;
  text-align: center;
}

section.sec-tel .sec-tel-right p.denwa{
  font-weight: bold;
  font-size: 1.6rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

section.sec-tel .sec-tel-right p.denwa span{
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 3px;
  transform: scaleY(1.3)!important;
  color: #d4af37;
}

/* *****sec-app***** */

section.sec-app{
    background: #e5dfb9;
    margin-top: -1px!important;
}


.sec-app .sec-app-in{
  padding:2rem 0.5rem;
}
.sec-app .app{
  text-align: center;
  color: #545550;
  font-size: 0.8rem;
  margin: 1rem;
}

.sec-app .sec-btn-app{
  width: 80%;
  margin: 0 auto;
}


.button_gold {
	 width : 90%;
	height: 70px;
	margin: 0 auto;
	padding : 20px 15px;
}

.button_gold a{
  display : block;
  position: relative;
  color : #815107;
  text-align  :center;
  text-decoration:none; 
  font-weight : bold;
  font-size: 20px;
   line-height: 70px; 
   background-color: #d4af37;
    background: -moz-linear-gradient(top, #f5d892, #d4af37);
    background: -webkit-gradient(linear, left top, left bottom, from(#f5d892), to(#d4af37));
    background: -webkit-linear-gradient(top, #f5d892, #d4af37);
    background: linear-gradient(to bottom, #f5d892, #d4af37);
  /* border-top-right-radius: 10px; 
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomright: 10px;
  -moz-border-radius-bottomleft: 10px;
  box-shadow: 3px 3px 10px 0px rgba(255,255,255,0.75) inset,-3px -3px 10px 0px rgba(0,0,0,0.75) inset; */
}



.app a{
    background-color: #2cbf13;
  display: inline-block;
  color: #fff;
  padding: 0.5rem;
  font-size: 0.9rem;
}
/* *****sec9***** */
section#sec9{
  padding: 0 0 1.5rem;
}
#sec9 .sec9-img{
  width: 100%;
  display: flex;
}
#sec9 .sec9-img img{
  max-width: 50%;
}
#sec9 .sec9-in{
  margin: 1rem 0.8rem ;
}
#sec9 .sec9-in img{
  width: 100%;
}

#sec9 p.chizu-link{
  bottom: 2px solid #1d4899;
  display: inline-block;
  margin-top: 0.5rem;
  margin-right: 1rem;
    padding-bottom: 0.3rem;
  border-bottom: 2px solid #008ce5;
}
#sec9 p.chizu-link2{
  bottom: 2px solid #1d4899;
  display: inline-block;
  margin-top: 0.5rem;
  margin-left: 1rem;
    padding-bottom: 0.3rem;
  border-bottom: 2px solid #008ce5;
}
#sec9 .address{
  width: 100%;
  margin: 1rem auto 0;
}
#sec9 .address table{
margin: 1rem 0;
   width: 100%;
}

#sec9 .address table th{
  color: #545550;
  border-width: 1px 0px;
  border-color: #cccccc;
   border-style: solid;
   padding: 0.8rem;
   text-align: left;
}
#sec9 .address table td{
  border-width: 1px 0px;
  border-color: #cccccc;
   border-style: solid;
   padding: 0.8rem;
   line-height: 1.5rem;

}

#sec9 .address p{

}


/* *****sec10***** */

section#sec10{
  padding: 3rem 0;
}

#sec10 h2{
  font-size: 1.5rem;
  color: #545550;
  text-align: center;
  margin-bottom:2rem;
}

/* *****sec11***** */

section#sec11{
  padding: 2rem 0 1.5rem;
}

#sec11 .sec11-title{
  position: relative;
  height: 50px;
}
#sec11 .sec11-img{
  position: absolute;
  right: 13%;
  top: 30%;
}
#sec11 .sec11-img img{
  width: 60%;
}

#sec11 h2{
  font-size: 1.5rem;
  color: #545550;
  text-align: center;
  margin-bottom:2rem;
  position: relative;
}


div#news div#information div {
  margin: 1rem 0.8rem;
  border-width: 1px 0px;
  border-color: #cccccc;
   border-style: solid;
  padding: 1rem 0;
  line-height: 1.5rem;

}

div#news div#information div:last-child {
  border-top: none;
  padding-top: 0;
}
div#news div#information div dt{
  color: #2a8f4b!important;
}

/* *****sec12***** */


section#sec12{
  padding-bottom: 1rem;
}


#sec12 h2{
  margin: 2rem 1rem; 
  text-align: center;
  line-height: 1.9rem;
}

#sec12 h2 span.blue{color: #2a8f4b;}

#sec12 h2 span.left-center{display: inline-block; text-align: left;}

#sec12 .sec12-text{
  margin: 0.8rem;
}

#sec12 .sec12-text p{
  margin-bottom: 0.7rem;
  line-height: 2.0rem;
}

#sec12 .sec12-img{
  width: 100%;
}
#sec12 .sec12-img img{
  max-width: 100%;
}

/* *****sec-houmon***** */

section.sec-houmon{
    background: #e5dfb9;
    padding: 3rem 0 1rem;
    margin-bottom: 0!important;
}



section.sec-houmon .sec-houmon-in{

}
section.sec-houmon .sec-houmon-left{
  margin: 0 auto;
  text-align: center;
}
section.sec-houmon .sec-houmon-left p.yoyaku{
  font-size: 1.8rem;
    color: #815107;
    letter-spacing: 3px;
    font-weight: bold;
    margin: 0rem 1rem 2rem;
    line-height: 1.5;
}

section.sec-houmon .sec-houmon-left p{
    letter-spacing: 2px;
    line-height: 1.5rem;
}

section.sec-houmon .sec-houmon-right{
  margin: 1.5rem auto 0;
  text-align: center;
}

section.sec-houmon .sec-houmon-right p{
  letter-spacing: 2px;
}

section.sec-houmon .sec-houmon-right p.denwa{
  font-weight: 800;
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

section.sec-houmon .sec-houmon-right p.denwa a{
  color: #d4af37;
}
section.sec-houmon .sec-houmon-right p.denwa span{
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 3px;
/*  transform: scaleY(1.3)!important;*/
}

section.sec-houmon .sec-houmon-text{
  margin: 2rem auto;
}
section.sec-houmon .sec-houmon-text p{
  line-height: 1.7;
}


/* *****フッター***** */

#footer{
  padding: 3rem 0;
  background-color: #e5dfb9;
}

#footer .flogo{
  margin: 0 auto 2rem;
  text-align: center;
  width: 50%;
}
#footer .flogo img{
  max-width: 100%;

}

#footer .ft-text{
  margin: 1rem 2rem 1rem 3rem;
  font-style: normal;
}


#footer .ft-text p{
  color: #545550;
  line-height: 1.7rem;
}

#footer .snsbtniti{
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
    margin: 3rem auto;
    width:80%;

}
ul.snsbtniti li a{
  background-color:#815107 ;
  color: #fff!important;
  margin-left: 0.5rem;
  border: 2px solid #815107;
  border-radius: 50%;
  margin-left: 0.5rem;
  display: inline-grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 0.3rem; 
  line-height: 1;
  font-size: 1.1rem;
}
#footer .footer-navi1{
  display: flex;
 flex-wrap: wrap;
 gap: 1rem;
 margin: 1rem auto;
text-align: center;
} 
#footer .footer-navi1 li{
  width: 47%;
}
#footer .footer-navi li a{
  color: #545550;
  line-height: 1.5rem;
    font-size: 0.9rem;
}

#footer #copyright{
  margin: 2rem auto 0;
  text-align: center;
}

#footer #copyright p{
    color: #545550;
    font-size: 0.8rem;
    text-align: center;
}

#footer #copyright a{
    color: #545550;
        font-size: 0.8rem;
}

  /* フッターメニュー */
  .f_menu_wrap{
    width: 100%;
   background: #815107;
   /* background-color: rgba(228,225,206, 1)!important; */
    position: fixed;
  bottom: 0;
  margin: 0!important;
  padding: 0!important;
  z-index: 6;
}
#f_menu {
    position: relative;
    min-height: auto;
  padding: 0;
  margin: 0!important;
  padding: 0!important;
}
#f_menu ul{
    display: table;
    width: 100%;
    margin: 0;
    table-layout: fixed;
  border-top: 1px solid #cfcdcd;  
  margin: 0!important;
  padding: 0!important; 
}

#f_menu li {
    display: table-cell;
  border-right: 1px solid #fff;
  border-top: 5px solid #rgba(0,0,0, 0.6);
  border-bottom: 5px solid #rgba(0,0,0, 0.6);
    font-size: 1rem;
  text-align: center;
  padding:0.7rem 0.3rem; 
}
#f_menu li:last-child {
    border-right:none;
}
.line_c {color: #2cbf13;}
.tel_c{color: #545550;}
.con_c{color: #545550;}


#f_menu li a{
    display: block;
  padding:0;
  margin: 0;
    text-decoration: none;

}

#f_menu li.bco a{color:#fff;}
#f_menu li.bli a{color:#fff;margin-left: 0.5rem;}
#f_menu li.bte a{color:#545550;}

#f_menu li.bco a:before {
  /*予約アイコン*/
  font-family: FontAwesome;
  content: '\f3c0';
  font-weight: normal;
  font-size: 1.1em;
  color: #fff;
  padding-right : 5px;/*文字との隙間*/
}

#f_menu li.bli a:before {
  /*電話アイコン*/
  font-family: FontAwesome;
  content: '\f879';
  font-weight: normal;
  font-size: 1.1em;
  color: #fff;
  padding-right : 5px;/*文字との隙間*/
}



#f_menu li span::before{
  font-size: 20px;
  margin-right: 0.2rem; 
}
#f_menu .utility-menu_item span{
  display: inline;
  vertical-align: middle;
  padding:0;
  margin: 0;
}

/* ページ上部へ戻る
==================================================
*/

.pagetop {
  position: fixed;
  bottom: 70px;
  right: 50px;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(0.3);
  -moz-transform: scale(0.3);
  -ms-transform: scale(0.3);
  -o-transform: scale(0.3);
  transform: scale(0.3);
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}
.pagetop a {
  display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    line-height: 70px;
    background-color: #e1e3d7;
    position: relative;

}
.pagetop .fa-arrow-up{
  font-size: 7rem;
line-height: 8rem;
}
.pagetop.show {
  opacity: .7;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
z-index: 9999;
}

.page-up-triangle{
  position: absolute;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 13px solid #815107;
    top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 30;
}



/*Youtube*/

.youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
    overflow: hidden;
    margin: 1rem 0.5rem 2rem;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



/*Google map*/

.chizu iframe {
  width: 100%;
  aspect-ratio: 16/9;
}


/* ページ内リンクのズレ調整 */

/*a.ap{
  display: block;
  margin-top: -50px;
  padding-top: 50px;
}*/

.ap{
  display: block;
  margin-top: -50px;
  padding-top: 50px;
}



/* *****パンくずナビ***** */

.breadcrumb {
  margin: 0;
  padding: 0.3rem 0.5rem;
  list-style: none;
  line-height: 1.5;
  font-size: 0.9rem;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
}

.breadcrumb li:after {/* ▶を表示*/
  font-family: FontAwesome;
  content: '\f0da';
  padding: 0 0.2em;
  color: #815107;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
  position: relative;
  text-decoration: none;
  color: #888;
  z-index: 2;
}

.breadcrumb li:first-child a:before {
  /*家アイコン*/
  font-family: FontAwesome;
  content: '\f015';
  font-weight: normal;
  font-size: 1.1em;
  color: #815107;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}


 /*チェックボックス*/

ul.check {
  padding: 0.5rem 1em 0.5em 2em;
  position: relative;
  margin: 1rem 0.5rem;
  background-color: #f7f2d1;
  border-radius: 5px;
}

ul.check li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
  font-weight: bold;
  font-size: 1rem;
}

ul.check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #815107; /*アイコン色*/
}

 /*チェックボックス 背景白*/

ul.check2 {
  padding: 0em 1em 0.5em 2em;
  position: relative;
  margin: 0 0 0.5rem 0;
  background-color: #f7f2d1;
}

ul.check2 li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
  font-weight: bold;
  font-size: 1.1rem;
}

ul.check2 li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  left : 0.3em; /*左端からのアイコンまで*/
  color: #d4af37; /*アイコン色*/
}
 /*こんなことで困っていませんかチェックボックス*/

ul.trouble {
  padding: 0;
  position: relative;
  margin: 1rem 0.8rem 0.5rem;
}
ul.trouble li {
  line-height: 1.5;
  padding: 0.7em 0.5em 0.7em 1.9em;
  list-style-type: none!important;
  font-weight: bold;
  margin-bottom: 0.5rem;
  border-radius: 5px;
  color: #545550;
  position: relative;
}
ul.trouble li:before {
  /*リストのアイコン*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  position: absolute;
  left :0.5em; /*左端からのアイコンまでの距離*/
  color: #fb916c!important;
  margin-top:0.1rem ;
}



/* *****よくある質問***** */


section.qa{
  box-sizing: border-box;
  background: #fff;
  padding: 1rem 0;
}

.qa .qabox{
  background-color: #fff;
  padding: 0.5rem;
  margin-bottom: 1rem;
   /* background: #f3f3f3; */
     border-radius: 5px;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2); 
    
}

.qa .qbox,.qa .abox{
  display: flex;
  justify-content: start;
  align-items: center;
}
.qa .qbox{
  margin-bottom: 1rem;
}


.qa .qwrap,.qa .awrap{
  width: 10%;
  margin-right: 0.5rem;

}
.qa .qtext,.qa .atext{
  width: 87%;
  line-height: 1.8rem;
}
.qa .qtext{
  color:#545550;
  font-weight: bold;
  font-size: 1rem;
}
.qa .circle-q{
  /* font-family: 'Noto Serif JP', serif; */
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #815107;
  text-align:center;
  line-height: 30px;
  color: #fff;
}

.qa .circle-a{
  /* font-family: 'Noto Serif JP', serif; */
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #815107;
  border-radius: 50%;
  text-align:center;
  line-height: 30px;
  color:#815107;
}





/* *****拡張用***** */


.lh25{line-height: 2.5rem;}

 /* 目次 */

  #mokuji {
  border: solid 2px #545550;
  padding: 0 0.5em 1rem;
  margin-bottom: 3rem;
  font-size: 1rem;
  border-radius: 5px;
  }

  #mokuji .m-t{
    text-align: center;
  }
  #mokuji div.m-in{
  border-bottom: 2px solid #2a8f4b;
  color: #545550;
  font-weight: bold;
  padding: 1rem 0 0 0;
  margin: 0 auto 1rem;
  display: inline-block;
  letter-spacing: 1px;
  }


  #mokuji ul {
  padding: 0 0.5em;
  position: relative;
  }
  
  #mokuji ul li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
  }
  
  #mokuji ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";/*アイコン種類*/
  position: absolute;
  left : 0.5em; /*左端からのアイコンまで*/
  color: #545550; /*アイコン色*/
  font-weight: 900;
  }
  
  #mokuji ul li:last-of-type {
  border-bottom: none;
  }


/*見出し付きBOX1*/

.midashi_box1 {
  position: relative;
  margin: 2rem 0;
  padding: 1rem;
  border: solid 3px #c7a536;
  border-radius: 4px;
}
.midashi_box1 .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #c7a536;
  font-weight: bold;
}
.midashi_box1 p {
  margin: 0; 
  padding: 0;
}


/* 引用 */

blockquote {
    position: relative;
    padding: 10px 10px 10px 32px;
    box-sizing: border-box;
    font-size: 0.9rem;
    font-style: italic;
    color: #464646;
    background: #e0e0e0;
    margin-bottom: 2rem;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    content: "\f10d";
    font-family: FontAwesome;
    color: #e0e0e0;
    font-size: 22px;
    line-height: 1;
    z-index: 2;
    font-weight: 900;
}

blockquote:after{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    border-width: 0 0 40px 40px;
    border-style: solid;
    border-color: transparent #ffffff;
}

blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}



 .b{font-weight: bold;}
 .f12{font-size: 1.2rem}
 .f13{font-size: 1.3rem}
 .f14{font-size: 1.4rem}
 .red{color: #ff0000}
 .orange{color: #fd7e00;}



