body.home{
  background: #faf8f0;
}
#top{
  padding: 100px 0 0;
}
@media (max-width: 768px) {
  #top{
  padding: 30px 0 0;
}
}




.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
  transition: transform .4s ease;
}

.site-header.hide {
  transform: translateY(-100%);
}

.header-inner {
  margin: 0 auto;
  padding: 5px 5px 5px 20px;
  display: flex;
  align-items: center;
}

.header-inner .logo img {
  height: 45px;
}

.navigation {
  margin-left: auto;
}

.gmenu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.gmenu li a {
  color: #2f383d;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.gmenu li a:hover {
  color: #138a76;
}

/* 現在のページ */
.gmenu li.current-menu-item > a,
.gmenu li.current-menu-parent > a {
  color: #d6720d;
}

/* 右側ボタン */
.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 30px;
}

.btn-instagram{
      width: 30px;
  height: 30px;
   border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
      background: #faf8f0;
      color: #d6720d;
}

@media(max-width: 1200px){
  .btn-instagram{
    width: 100%;
  color: #138a76;
  font-weight: 600;
  font-size: 14px;
  margin-top: 30px;
}
.sp_instagram{
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  margin-right: 5px;
}
}

.btn-instagram svg{
width: 17px;
height: 17px;
  stroke-width: 0;
  fill: #d6720d;
    color: #d6720d;
}

.btn-reserve {
background: #d6720d;
    color: #fff;
    padding: 13px 18px;
    border-radius: 10px;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.btn-reserve svg{
     width: 24px!important;
  height: 24px!important;
  stroke-width: 0;
  fill: #fff;
    color: #fff;
}



/* ハンバーガー */
.hamburger {
  width: 30px;
  height: 30px;
  padding: 0;
border: none;
background: none;
z-index: 9999;
position: absolute;
top:1rem;
right: 1rem;
}

@media (min-width: 1200px) {
  .hamburger {
    display: none;
  }
}


/* =========================
  ヘッダー共通
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99999;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner .logo img {
  max-height: 48px;
}





/* =========================
  ハンバーガー
========================= */
/*.hamburger {
  width: 30px;
  height: 30px;
  position: relative;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #138a76;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 17px; }
.hamburger span:nth-child(3) { top: 24px; }*/

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: #138a76;
  position: relative;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 6px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
/*.header__nav.active {
  transform: translateX(0);
}

.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);
}*/

.navigation.sp{
  display: none;
}

/* =================================
  SPメニュー（1200px以下）
================================= */
@media (max-width: 1200px) {

  /* 通常時は非表示 */
  .navigation,
  .navigatio.pc,
  .header-actions {
    display: none;
  }

  .hamburger {
    display: block;
  }

  /* ===== メニューオープン ===== */
  .site-header.is-open {
    height: auto;
    background: #f9f6ef;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    transition: .3s;
  }

  .site-header.is-open .header-inner {
    align-items: flex-start;
            position: relative;
                    overflow-y: scroll;
        height: 100vh;
  }

  /* ナビ全体 */
  .site-header.is-open .navigation.sp {
    display: block;
    position: relative;
    inset: 0;
    padding: 0 20px 40px;
    background: #faf8f0;
    width: 100%;
    margin-top: 85px;
  }

  /* 白いカード */
  .site-header.is-open .gmenu {
    max-width: 680px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #fff;
    border-radius: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;

    list-style: none;
  }

  /* メニュー文字 */
  .site-header.is-open .gmenu li a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }

  /* 英字見出し */
  .site-header.is-open .gmenu li.menu-title a {
    color: #d88a2c;
    font-size: 16px;
    letter-spacing: .08em;
  }

  /* × ボタン */
  .site-header.is-open .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 6px;
  }

  .site-header.is-open .hamburger span:nth-child(2) {
    opacity: 0;
    margin: 1px 0;
  }

  .site-header.is-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
  }
}


/* メニューオープン ロゴ */
.site-header.is-open .logo{
  position: absolute;
}












.mv {
  background: #fff;
  padding: 100px 0 50px;
  overflow: hidden;
}

.mv-inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 20px;
}

/* 左側 */
.mv-content {
  width: 40%;
  padding: 50px;
}

.mv-logo img {
  max-width: 120px;
}

.mv-access {
  color: #d6720d;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .15em;
  line-height: 1.6;
  margin: 20px 0 0;
}

.mv-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: .1em;
  color: #138a76;
}
.mv-title br.ri{
display: none;
}

.mv-title span{
  font-size: 18px;
  font-weight: 600;
}

.mv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-tags li {
  font-size: 14px;
  color: #4d4d4d;
  font-weight: 600;
  padding-right: 10px;
  border-right: 1px solid #e3d8bc;
}
.mv-tags li:last-child {
    padding-right: 0;
  border-right: none;
}

/* 右側スライダー */
.mv-slider {
  width: 60%;
  position: relative;
}

.slider {
  display: flex;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 1.2s ease;
  will-change: transform;
}

.slider-track.no-transition {
  transition: none;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: 846px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .slide img {
    height: 300px;
  }
}



.slide.is-active {
  opacity: 1;
  position: relative;
}

.slide img {
  width: 1000px;
  height: 846px;
  object-fit: cover;
}

/* 矢印 */
.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d6720d;
  color: #fff;
  border: none;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.slide-btn.prev {
  left: 10px;
}

.slide-btn.next {
  right: 10px;
}

/* ドット */
.slide-dots {
  position: absolute;
  bottom: 15px;
      right: 0;
    left: 0;
    width: 38px;
    margin: auto;
  display: flex;
  justify-content: center;
  gap: 4px;
  background: #e3d8bc;
      border-radius: 49px;
      padding: 4px 4px;
}

.dot {
  width: 6px;
  height: 6px;
  background: #d6720d;
  opacity: 0.5;
  border-radius: 50%;
}

.dot.is-active {
  opacity: 1;
}

@media (max-width: 768px) {
  .mv{
    padding-top: 70px;
  }
  .mv-inner {
    flex-direction: column;
  }
  .mv-logo{
    display: none;
  }
  .mv-content,
  .mv-slider {
    width: 100%;
    text-align: center;
  }
  .mv-content{
    padding: 0;
  }
  .mv-tags{
    justify-content: center;
  }
  .slide img {
    height: 740px;
  }
}
@media (max-width: 576px) {
  .mv{
    padding-bottom: 40px;
  }
  .mv-title br.ri{
display: block;
}
  .slide img {
    height: auto;
  }
  .mv-inner {
    gap: 30px;
}
.mv-access{
  margin: 0;
}
}






/* トップmv下テキスト */
.top_main_txt{
  text-align: center;
  max-width: 800px;
  margin: auto;
}
.top_main_txt .logo{
  max-width: 291px;
  margin: auto;
}
.top_main_txt h2{
  color: rgb(214, 114, 13);
  font-size: 18px;
  font-weight: 600;
}
.top_main_txt h3{
  color: rgb(33, 33, 33);
  font-size: 28px;
  letter-spacing: .1em;
  line-height: 1.6;
}
.top_main_txt p{
  text-align: left;
  color: #212121;
  font-size: 14px;
}

@media (max-width: 768px) {
  .top_main_txt{
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .top_main_txt h2{
    font-size: 16px;
  }
  .top_main_txt h3{
    font-size: 24px;
  }
}




/* トップ診療メニュー */
.top_menu {
  background: #fbf8f2;
  padding: 80px 20px;
}

.top_menu-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.top_menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0 0 60px;
  padding: 0;
  list-style: none;
}

.top_menu-item {
  text-align: center;
}

.top_menu-item a{
  background: #fff;
  border-radius: 10px;
  padding: 13px 0;
  text-decoration: none;
  display:block;
  width: 100%;
  height: 100%;
}

.top_menu-item img {
  width: 40px;
  height: auto;
  margin-bottom: 9px;
  line-height: 0;
}

.top_menu-item p {
  font-size: 14px;
  font-weight: 600;
  color: #2f2f2f;
  margin: 0;
  line-height: 1;
}

.top_menu-btn {
  text-align: center;
}

.top_menu-btn a {
  display: inline-block;
  background: #7f8484;
  color: #fff;
  font-size: 16px;
  padding: 18px 48px;
  border-radius: 14px;
  text-decoration: none;
}

.top_menu-item a:hover,.top_menu-btn a:hover {
  transform: translateY(-4px);
}


@media (max-width: 1024px) {
  .top_menu-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .top_menu {
    padding: 30px 16px;
  }
  .top_menu-list {
    gap: 6px;
    margin-bottom: 30px;
  }
  .top_menu-item p {
    font-size: 16px;
  }
}



.top_contact{
  max-width: 1200px;
  margin: 0 auto 100px;
  background: white;
  border-radius: 8px;
  padding: 50px;
}
.top_contact.under{
  margin: 100px auto 0;
}
.top_contact-inner{
  display: flex;
      gap: 50px;
}
.top_contact-inner>div{
  flex: 1;
}
.top_contact-inner .img img{
  border-radius: 10px;
}
.top_contact-inner .txt .ei{
  color: rgb(19, 138, 118);
  font-size: 20px;
  letter-spacing: .1em;
  margin: 0;
}
.top_contact-inner .txt h2{
  font-size: 35px;
  font-weight: 200;
  color: #212121;
  margin: 0 0 20px;
}
.top_contact-inner .txt .yi{
  font-size: 14px;
}
.top_contact-inner .txt .list_link{
  display: flex;
  gap: 10px;
}
.top_contact-inner .txt .list_link a{
  display: flex;
  align-items: center;
  gap: 5px;
  background: #faf8f0;
    border-radius: 50px;
    color: #138a76;
    font-weight: 600;
    font-size: 14px;
          padding: 10px 15px;
}
.top_contact-inner .txt .list_link a svg{
    width: 24px!important;
  height: 24px!important;
  stroke-width: 0;
  fill: #d6720d;
    color: #d6720d;
}
.top_contact-inner .txt .list_link a p{
  margin: 0;
}
.top_contact-inner .txt .list_link a:hover {
  transform: translateY(-4px);
}
.top_contact-inner .txt .ri{
  text-align: center;
  font-size: 14px;
  color: #212121;
  margin: 20px auto 10px;
}
.top_contact-inner .txt .reservation a{
  background: #138a76;
      border-radius: 10px;
      display: flex;
align-items: center;
justify-content: center;
    gap: 10px;
    width: 100%;
    height: 100px;
    padding: 16px 25px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}
.top_contact-inner .txt .reservation a svg{
width: 34px!important;
height: 34px!important;
}
.top_contact-inner .txt .reservation a:hover {
  transform: translateY(-4px);
}
.top_contact-inner .txt .ti,
.top_contact-inner .txt .tel{
  color: #138a76;
  text-align: center;
  letter-spacing: .1em;

}
.top_contact-inner .txt .ti{
  font-size: 13px;
  margin: 20px 0 0;
}
.top_contact-inner .txt .tel{
  font-size: 40px;
  margin: 0;
  line-height: 1;
}
.top__images{
  width: 100%;
  height: 300px;
}
.top__images img{
display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: cover;
}
.sp_tel{
    display: none;
    margin-top: 15px;
   }
   .sp_tel .tel a{
    background: #d6720d;
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 80px;
    padding: 16px 25px;
    color: white;
    font-size: 20px;
    font-weight: 600;
   }
   .sp_tel .tel a svg{
    width: 24px!important;
    height: 24px!important;
   }
@media (max-width: 768px) {
  .pc_tel{
    display: none;
   }
   .sp_tel{
    display: block;
   }
   .top_contact-inner .txt .reservation a{
    height: 80px;
   }
   .top_contact-inner .txt .reservation a svg {
    width: 24px!important;
    height: 24px!important;
}
}
@media (max-width: 576px) {
  .top_contact{
    margin-bottom: 40px;
  }
  .top__images{
    height: 150px;
  }
}



.top_concept {
  background: #fbf8f2;
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}
.top_concept .tlt{
   letter-spacing: .1em;
}
.top_concept .tlt .ei{
  color: #138a76;
  font-size: 70px;
  margin: 0;
  line-height: 1;
}
.top_concept .tlt h2{
  font-size: 18px;
  font-weight: 600;
  color: #2f383d;
  margin-bottom: 4px;
}
.top_concept .tlt .ri{
  color: #828282;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
}

.top_concept-inner {
  max-width: 1280px;
  margin: 50px auto 0;
}

.top_concept-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.top_concept-item {
  position: relative;
}

.top_concept-num {
  display: block;
  font-size: 40px;
  font-weight: 400;
  color: #d6720d;
  margin-bottom: 19px;
}

.top_concept-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.top_concept-item h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #2f2f2f;
}

.top_concept-item p {
  font-size: 15px;
  line-height: 1.9;
  color: #2f2f2f;
}

@media (max-width: 768px) {
  .top_contact{
    max-width: 90%;
    padding: 30px 20px;
  }
  .top_contact-inner{
    flex-direction: column;
    gap: 30px;
  }
  .top_contact-inner .txt h2{
    font-size: 24px;
  }
  .top_concept-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
  }
   .top_contact-inner>div.img img{
    max-height: 300px;
    width: 100%;
    object-fit: cover;
   }
   .top_contact-inner .txt .list_link{
    flex-direction: column;
   }
   .top_contact-inner .txt .list_link a{
        width: min-content;
    height: min-content;
    overflow: hidden;
        white-space: pre;
   }
}
@media (max-width: 600px) {
  .top_concept {
    padding: 34px 16px;
  }
.top_contact.under {
    margin: 30px auto 0;
}
  .top_concept-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .top_concept-num {
    font-size: 36px;
  }

  .top_concept-item h3 {
    font-size: 18px;
  }

  .top_concept-item p {
    font-size: 14px;
  }
  .top_concept .tlt .ei{
    font-size: 45px;
  }
  .top_concept-inner{
    margin-top: 10px;
  }
}




.top_staff {
  background: #fff;
  padding: 100px 20px;
}

.top_staff-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  letter-spacing: .1em;
}

.top_staff-photo{
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.top_staff-photo-txt{
  letter-spacing: .1em;
  margin: auto;
}

.top_staff-photo img {
  width: 100%;
  height: 684px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.top_staff-en {
  font-size:70px;
  font-weight: 400;
  color: #d6720d;
  margin: 0 0 8px;
  line-height: 1;
}

.top_staff-title {
  font-size: 18px;
  color: #2f383d;
  margin-bottom: 8px;
}

.top_staff-sub {
  font-size: 12px;
  color: #7a8182;
  line-height: 1.5;
  margin-bottom: 21px;
}

.top_staff-head{
font-size: 20px;
color: #2f383d;
border-left: 3px solid #138a76;
padding-left: 12px;
font-weight: 600;
line-height: 1.5;
}

.top_staff-position {
  font-size: 14px;
  margin-bottom: 16px;
}

.top_staff-name {
  font-size: 35px;
  margin: 4px 0 10px;
  color: #2f383d;
  font-weight: 300;
}

.top_staff-name-en {
  color: #d6720d;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 32px;
}

.top_staff-heading {
  font-size: 16px;
  font-weight: 500;
  color: #2a9d8f;
  margin-bottom: 8px;
}

.top_staff-list {
  margin-bottom: 24px;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.top_staff-list li {
  font-size: 14px;
  line-height: 1.8;
  color: #2f383d;
}

.top_staff-message {
  font-size: 14px;
  line-height: 2;
  margin-top: 0;
  margin-bottom: 32px;
}

.top_staff-btn {
  display: table;
  background: #7f8484;
  color: #fff;
  padding: 16px 20px;
  min-width: 250px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.top_staff-btn:hover {
  transform: translateY(-4px);
}

@media (max-width: 768px) {
    .top_staff-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .top_staff-btn{
    margin: auto;
  }
  .top_staff-photo-txt{
    text-align: center;
  }
     .top_staff-photo img{
    height: auto;
   }
}
@media (max-width: 600px) {
  .top_staff {
    padding: 34px 16px;
  }
  .top_staff-en {
    font-size: 36px;
  }
  .top_staff-name {
    font-size: 22px;
  }
}





.top_policy {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 100px auto;
  padding: 40px 0;
  max-width: 1200px;
  letter-spacing: .1em;
}

/* 背景画像 */
.top_policy-bg {
  position: absolute;
  inset: 0;
  background: url("../img/top_policy.jpg") center / cover no-repeat;
}

/* オーバーレイ */
.top_policy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,84,70,0.8);
  z-index: 1;
}

.top_policy-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  color: #fff;
  text-align: center;
}

.top_policy-en {
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 16px;
  margin: 0;
  letter-spacing: 0;
}

.top_policy-ja {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #e3d8bc;
  line-height: 1;
}

.top_policy-sub {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 18px;
  color: #e3d8bc;
}

.top_policy-text {
  text-align: left;
  font-size: 15px;
  line-height: 2;
  margin-bottom: 33px;
}

.top_policy-text p + p {
  margin-top: 24px;
}

.top_policy-btn {
  display: inline-block;
  background: #fff;
  color: #138a76;
  padding: 16px 18px;
  border-radius: 10px;
  min-width: 250px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

.top_policy-btn:hover {
  transform: translateY(-4px);
}

@media(max-width: 1200px){
  .top_policy {
    max-width: 95%;
  }
}
@media(max-width: 576px){
  .top_policy {
    margin: 40px auto;
  }
}





.top_information{
  max-width: 1200px;
  margin: auto;
  letter-spacing: .1em;
  background: #faf8f0;
}
.top_information .tlt{
  text-align: center;
}
.top_information .ei{
  color: #d6720d;
  font-size: 70px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
}
.top_information .ri{
  color: #2f383d;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.top_information h2{
  color: #7a8182;
  font-size: 12px;
  margin-top: 5px;
}
.top_information h3{
  font-size: 20px;
  font-weight: 600;
  border-left: 3px solid #d6720d;
  padding-left: 10px;
  line-height: 1.5;
}
.top_information_inner01,
.top_information_inner02{
  display: flex;
  gap: 60px;
}
.top_information_inner01>div,
.top_information_inner02>div{
  flex: 1;
}
.top_information_inner01 a.link{
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid #e3d8bc;
  background: #fff;
  padding: 11px 10px;
}
.top_information_inner01 a.link:last-of-type{
  border-bottom: 1px solid #e3d8bc;
}
.top_information_inner01 a.link:hover{
  transform: translateY(-4px);
}
.top_information_inner01 a.link svg{
    width: 24px;
  height: 24px;
  stroke-width: 0;
  fill: #d6720d;
    color: #d6720d;
}
.top_information_inner01 a.link p.date_format{
  margin: 0;
  color: rgb(153, 153, 153);
  font-size: 13px;
  line-height: 1.5;
}
.top_information_inner01 a.link h4{
  margin: 0;
  font-size: 14px;
  color: #2f383d;
  line-height: 1.5;
}
.top_information_inner02 .ch{
  display: flex;
  text-align: center;
}
.top_information_inner02 dl{
width: 62px;
}
.top_information_inner02 dl dt,
.top_information_inner02 dl dd{
   font-size: 13px;
  font-weight: 400;
  padding: 10px 0;
}
.top_information_inner02 dl dt{
  color: #fff;
  background: #138a76;
  margin: 0;
 border-right: 1px solid #fff;
}
.top_information_inner02 dl dd{
  color: #d6720d;
  font-weight: 600;
  background: #fff;
  margin: 0;
  border-right: 1px solid #7a8182;
}
.top_information_inner02 dl:last-child dt,
.top_information_inner02 dl:last-child dd{
  border-right: none;
}
.top_information_inner02 h4{
  color: #2f383d;
  font-size: 14px;
  font-weight: 600;
}
.top_information_inner02 p{
  font-size: 14px;
  color: #2f383d;
}
.top_information_inner02 p.ui{
  border: 1px solid #d6720d;
  color: #d6720d;
  padding: 10px;
  margin-bottom: 0;
}
.top_information_inner02 p.oi{
  display: flex;
  align-items: center;
}
.top_information_inner02 p.oi svg{
      width: 34px!important;
  height: 34px!important;
  stroke-width: 0;
  fill: #d6720d;
    color: #d6720d;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    margin-right: 3px;
}

@media(max-width: 1200px){
  .top_information {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media(max-width: 768px){
  .top_information_inner01, .top_information_inner02{
    flex-direction: column;
  }
  .top_information .ei{
  font-size: 45px;
}
}
@media(max-width: 576px){
  .top_information h3,.top_information_inner02 h4{
    margin: 10px 0;
  }
  .top_information_inner01, .top_information_inner02{
    gap: 30px;
  }
}



.site-footer{
  background: #e3d8bc;
}
.footer_contact_wrap{
  background: #fbf8f2;
  padding: 100px 0;
}
.footer_content{
  display: flex;
  padding: 100px 0;
  max-width: 1200px;
  margin: auto;
}
.footer_logo{
  flex: 1;
}
.footer_logo img{
  max-width: 291px;
}
.footer_logo p{
  color: #4d4d4d;
  font-size: 13px;
  line-height: 1.5;
}
.footer_menu{
  flex: 2;
}
.footer_menu{
  display: flex;
      justify-content: center;
    gap: 100px;
}
.footer_menu h5{
  color: #d6720d;
  font-size: 14px;
  margin: 0 0 10px;
}
.footer_menu ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer_menu a{
  font-weight: 600;
  color: #2f383d;
  font-size: 14px;
  padding: 10px 0;
  display: block;
}
.copyright{
  color: #2f383d;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 50px 0;
  background: #fff;
}
.footer_menu a:hover{
  transform: translateY(-4px);
}

@media(max-width: 1200px){
  .footer_content {
    max-width: 100%;
    padding: 100px 20px;
  }
  .footer_menu{
    gap: 30px;
    }
}
@media(max-width: 768px){
  .footer_content {
        flex-direction: column;
    }
    .footer_menu{
      flex-direction: column;
    }
}
@media(max-width: 576px){
  .footer_contact_wrap{
    padding: 50px 0;
  }
  .footer_content{
    padding: 50px 20px;
  }
  .copyright{
    padding-bottom: 90px;
  }
}




/*  セカンドページ  */
.page-mv {
  width: 100%;
  height: 450px;
  margin-top: 80px;
  background: #d9780c;
}

.page-mv__inner {
  display: flex;
  height: 100%;
    width: 100%;
}

.page-mv__title {
  width: 40%;
  padding: 50px 20px 50px 70px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
      flex: 2 0 0;
}

.page-mv__title img{
  display: block;
  position: absolute;
  bottom: -145px;
      left: 0;
}

.page-mv__title h1 {
  font-size: 33px;
  font-weight: 600;
  margin: 0;
  letter-spacing: .1em;
}

.page-mv__en {
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: lowercase;
  margin: 0;
  color: #fff;
  display: block;
}

.page-mv__en:first-letter{
  text-transform: capitalize;
}

.page-mv__image {
 flex: 3 0 0;
}

.page-mv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== スマホ ===== */
@media (max-width: 768px) {
  .page-mv__inner {
    flex-direction: column;
  }

  .page-mv__title {
    width: 100%;
    padding: 30px 20px;
    text-align: center;
    gap: 5px;
  }

  .page-mv__image {
    width: 100%;
    height: 240px;
  }

  .page-mv__image img {
    height: 240px;
  }
}
@media (max-width: 576px) {
  .page-mv{
    height: auto;
  }
  .page-mv__title {
        min-height: 130px;
      }
.page-mv__title img {
    position: absolute;
    bottom: -23px;
    height: unset;
    left: unset;
    right: -336px;
    top: -5px;
}
.page-mv__title {
  text-align: left;
}
.page-mv__title h1{
  font-size: 30px;
}
.page-mv__en{
  font-size: 15px;
}
}



main.lowers .container{
      max-width: 960px;
      margin: auto;
}
/* パンクず */
.breadcrumbs{
  padding: 16px 16px 16px 20px;
  margin: 0;
  color: #d6720d;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
}
.breadcrumbs a,.breadcrumbs span{
  color: #d6720d;
}


h2.tlt_{
  font-size: 35px;
  font-weight: 300;
  color: #2f383d;
  position: relative;
  text-align: center;
}
h2.tlt_:before{
  content: '';
background: url(../img/tlt_.png)no-repeat;
background-size: contain;
width: 51px;
height: 21px;
display: block;
margin: 0 auto 10px;
}

main.lowers{
  padding: 70px 0px 150px;
}

body:not(body.home) main.lowers p{
  color: #2f383d;
  letter-spacing: .1em;
  font-size: 14px;
}

.dorder-10{
  border-radius: 10px;
}

.gen{color: #138a76;}
.gold{color: #b3851b;}

.figures{
  margin-bottom: 40px;
}
.figures img{
      border-radius: 10px;
      width: 100%;
      height: auto;
}

.txt_{
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 576px) {
  main.lowers {
    padding: 20px 0px 50px;
}
main.lowers .container{
  width: 90%;
  margin: auto;
}
h2.tlt_{
  font-size: 24px;
}
}



/* 当院について */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}

.feature-item.reverse {
  flex-direction: row-reverse;
}

.feature-text {
  flex: 1;
}

.feature-num {
  color: #138a76!important;
  font-weight: 500;
  font-size: 18px!important;
  margin-bottom: 16px;
}

.feature-title {
  position: relative;
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid #d6720d;
  letter-spacing: .1em;
  color: #2f383d;
}

.feature-desc {
  font-size: 14px;
  line-height: 2;
  color: #2f383d;
  letter-spacing: .1em;
}

.feature-image {
  flex: 1;
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .feature-item,
  .feature-item.reverse {
    flex-direction: column;
    gap: 10px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-desc {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .features{
    padding: 0;
  }
}






/* 初めての方へ */
.flows-inner{
  display: flex;
  gap:40px;
  flex-direction: column;
}
.flows-item{
  display: flex;
  gap: 40px;
}
.flows-step{
  color: #7a8182;
  font-size: 38px;
  flex: 1 0 0;
  font-family: "Poppins", "Poppins Placeholder", sans-serif;
}
.flows-desc{
  display: flex;
  gap:15px;
  flex-direction: column;
  flex: 3 0 0;
}
.flows-desc *{
  margin: 0;
}
.flows-desc h3{
  font-size: 20px;
  color: #2f383d;
  letter-spacing: .1em;
}
.flows-desc p{
  font-size: 14px;
}
.flows-line{
  height: 30px;
    position: relative;
    width: 2px;
    background: #138a76;
    margin: auto;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .flows{
    width: 90%;
    margin: auto;
  }
  .flows-item,
  .flows-item.reverse {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
  }
}
@media (max-width: 576px) {
  .flows-step{
    font-size: 35px;
  }
  .flows-desc h3{
    font-size: 18px;
  }
  .flows-item, .flows-item.reverse{
    margin-bottom: 0;
  }
}



/* スタッフ紹介 */
.staffs-item{
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.staffs-desc{
  display: flex;
  gap: 20px;
  flex-direction: column;
}
.staffs-desc *{
  margin: 0;
  line-height: 1;
}
.staffs-desc h3{
color: #138a76;
font-size: 14px;
}
.staffs-desc p{
  font-size: 35px;
  font-weight: 300;
  color: #2f383d;
}
.staffs-desc span{
  color: #d6720d;
  font-size: 14px;
}
.staffs-career-wrap{
  display: flex;
  gap: 50px;
}
.staffs-career-wrap h3{
  border-left: 3px solid #d6720d;
  font-size: 20px;
  line-height: 1.4;
  padding-left: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  color: #2f383d;
}
.staffs-career{
  flex: 1 0 0;
}
.staffs-career ul{
margin: 0;
padding: 0;
list-style: none;
}
.staffs-career ul li{
font-size: 14px;
    color: #212121;
    margin-bottom: 10px;
    text-indent: -.8em;
    padding-left: 2em;
    line-height: 1.5;
}
.staffs-career ul li:before{
  content: '●';
  display: inline-block;
  color: #d6720d;
  font-size: 11px;
  margin-right: 10px;
}
.staffs-career-txt{
flex: 2 0 0;
}
.staffs-career-txt p{
  margin: 0;
  font-size: 14px;
  color: #212121;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .staffs-item{
    gap: 20px;
  }
.staffs-career-wrap {
    gap: 0;
    flex-direction: column;
  }
}








/* 診療メニュー */
.treatment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.treatment-item {
  flex: 1 1 calc(50% - 32px);
  display: flex;
  flex-direction: column;
}

.treatment-item h2{
  color: #2f383d;
  font-size: 28px;
  font-weight: 600;
}

.treatment-img {
  overflow: hidden;
  margin: 0;
}

.treatment-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.treatment-body {
  margin-top: 16px;
  text-align: center;
}

.treatment-body p {
  margin-bottom: 12px;
  font-size: 14px;
  text-align: left;
}

.treatment-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 14px 24px;
  border: 1px solid #4fa6a0;
  border-radius: 30px;
  color: #4fa6a0;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.treatment-btn:hover {
  background: #4fa6a0;
  color: #fff;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .treatment-item {
    flex: 1 1 100%;
  }
}






/* 初診費用・お支払い方法 */
.price-section {
  max-width: 1000px;
  margin: 0 auto;
}

.price-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding-left: 14px;
}

.price-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: #d28b3c;
}

.price-note {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #444;
}

.price-subtitle {
  font-size: 22px;
  color: #d28b3c;
  margin-bottom: 24px;
}

.price-table {
  border: 1px solid #e2d3b5;
  margin-bottom: 60px;
}

.price-table.under {
  margin-bottom: 30px;
}

.price-row {
  display: flex;
  border-bottom: 1px solid #e2d3b5;
}

.price-row:last-child {
  border-bottom: none;
}

.price-item {
  width: 40%;
  padding: 24px;
  background: #fbf9f2;
  font-weight: 600;
  line-height: 1.6;
  font-size: 14px;
}

.price-item .small {
  font-size: 13px;
  font-weight: 400;
}

.price-value {
  width: 60%;
  padding: 24px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #2f383d;
  line-height: 1.8;
}

p.bgf{
  background: #faf8f0;
  padding: 20px;
  border-radius: 20px;
  font-size: 13px;
}
p.sr{
font-size: 17px!important;
border: 2px solid red;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .price-row {
    flex-direction: column;
  }

  .price-item,
  .price-value {
    width: 100%;
  }

  .price-value {
    font-weight: 400;
  }
}



/* 医院紹介 */
.facility {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px 80px;
}

.facility-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

.facility-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 14px;
  line-height: 1.4;
  position: relative;
}

.facility-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 3px;
  height: 80%;
  background: #d6720d;
}

.facility-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 16px;
}

.facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-text {
  line-height: 1.8;
  font-size: 15px;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 1024px) {
  .facility-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .facility{
    padding: 0;
  }
  .facility-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}






/* アクセス */
.clinic-info {
  max-width: 1000px;
  margin: 60px auto 0;
}

.clinic-table {
  border: 1px solid #e2d3b5;
}

.clinic-row {
  display: flex;
  border-bottom: 1px solid #e2d3b5;
}

.clinic-row:last-child {
  border-bottom: none;
}

.clinic-label {
  width: 30%;
  padding: 24px;
  background: #fbf9f2;
  color: #212121;
  font-size: 14px;
  font-weight: 600;
}

.clinic-data {
  width: 70%;
  padding: 24px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.clinic-data a {
  color: inherit;
  text-decoration: none;
}

.clinic-data a:hover {
  text-decoration: underline;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .clinic-row {
    flex-direction: column;
  }

  .clinic-label,
  .clinic-data {
    width: 100%;
  }

  .clinic-label {
    padding-bottom: 12px;
  }
}









.caries {
  max-width: 1000px;
  margin: 0 auto;
}

.caries-item {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.caries-img img {
  width: 100%;
  height: auto;
  min-height: 250px;
  border-radius: 10px;
  object-fit: cover;
}

.caries-text {
  position: relative;
}

.caries-text h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  color: #2f383d;
  gap: 10px;
}

.caries-text .bar {
  width: 5px;
  height: 28px;
  background: #d6720d;
  display: inline-block;
}

.caries-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}

.stage {
  display: block;
  font-size: 40px;
  font-weight: 400;
  color: #d6720d;
  margin-bottom: 8px;
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .caries-item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 0;
  }

  .stage {
    font-size: 24px;
  }

  .caries-text h3 {
    font-size: 18px;
  }
}



.list_ri{
  list-style: none;
  margin: 0;
  padding: 0;
  background: #faf8f0;
      padding: 20px;
      border-radius: 20px;
}
.list_ri li{
  font-size: 18px;
  line-height: 1.9;
  color: #2f383d;
  letter-spacing: .1em;
}


.bortlt{
  color: #2f383d;
  font-weight: 600;
  letter-spacing: .1em;
  border-left: 5px solid #d6720d;
  padding-left: 15px;
}


.sec-wrap{
  display: flex;
  flex-flow: column;
    gap: 60px;
}

.cols-2{
  display: flex;
  gap:50px;
  margin-bottom: 20px;
}
.cols-2>div{
  flex: 1;
}

.cols-3{
    display: flex;
    gap: 20px;
}
.cols-3>div{
  flex: 1;
}

.img_fulls img{
      aspect-ratio: 2.25 / 1;
    border-radius: 10px;
    flex: 0 0 auto;
    object-fit: cover;
    position: relative;
}

.be_num{
  background: #f5f2ed;
      padding: 20px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
}
.be_num *{
  margin: 0;
}
.be_num span{
  color: #d6720d;
  font-size: 40px;
}
.be_num h3{
  color: #138a76;
  font-size: 19px;
  font-weight: 600;
}
.be_num p{
  font-size: 15px;
  color: #2f383d;
}

.bg_sc{
  background: #faf8f0;
}

.bg_sc_b{
  background: #faf8f0;
      padding: 20px;
      border-radius: 10px;
}

.linksri a{
  background: #138a76;
  color: #fff;
  display: inline-block;
  border-radius: 10px;
  padding: 10px 20px;
}
.linksri a:hover {
  transform: translateY(-4px);
}

.ptb-60{
  padding: 60px 0;
  margin: 60px 0;
}

.mtb-60{
  margin: 60px 0;
}


.bg_w_box{
      display: flex;
    flex-flow: column;
    gap: 20px;
}
.bg_w_box>div{
  background-color: rgb(255, 255, 255);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    flex: 0 0 auto;
    flex-flow: row;
    gap: 20px;
    height: min-content;
    overflow: hidden;
    padding: 30px;
}
.bg_w_box>div .stenum{
  color: #d6720d;
  font-size: 40px;
}
.bg_w_box>div h3{
color: #2f383d;
font-size: 20px;
font-weight: 600;
letter-spacing: .1em;
}
.bg_w_box_txt{
    background-color: rgb(255, 255, 255);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    padding: 30px;
    margin: 20px 0;
}
.bg_w_box_txt h3{
  color: #138a76;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .1em;
}



/* =========================
   レスポンシブ
========================= */
@media (max-width: 768px) {
  .sec-wrap{
    gap: 30px;
  }
  .cols-2,.cols-3 {
gap: 0;
    flex-direction: column;
    margin-bottom: 0;
}
.cols-3 {
  gap: 10px;
}
.bortlt{
  font-size: 18px;
  line-height: 1.5;
}
.bg_sc_b {
    padding: 0 20px;
    margin-bottom: 10px;
}
}
@media (max-width: 576px) {
  .bg_w_box>div{
    flex-direction: column;
    gap: 0;
  }
}




/* アーカイブ */
.archive-news {
  padding: 60px 0;
}

.archive-news .inner{
  max-width: 900px;
  margin: auto;
}

.archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.archive-item + .archive-item {
  margin-top: 40px;
}

.archive-link {
  display: flex;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

.archive-link:hover {
  transform: translateY(-4px);
}

.archive-thumb {
  width: 150px;
  height: 120px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  flex-shrink: 0;
}

.archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.archive-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #2f383d;
}

.archive-date {
  font-size: 14px;
  font-weight: 600;
  font-family: "Poppins", "Poppins Placeholder", sans-serif;
  color: rgb(153, 153, 153);
}

/* =========================
   レスポンシブ
========================= */
@media (max-width: 992px) {
  main.archive-news{
    width: 90%;
    margin: auto;
  }
}
@media (max-width: 768px) {
  .archive-link {
    flex-direction: column;
    gap: 16px;
  }

  .archive-thumb {
    width: 150px;
  }

  .archive-title {
    font-size: 18px;
  }
}



/* シングル */
.single-main{
  max-width: 800px;
  margin: auto;
}
.entry-header{
  text-align: center;
}
h2.entry-title{
  font-size: 33px;
  text-align: left;
  color: #333333;
  letter-spacing: .1em;
}
.single-date{
  color: rgb(153, 153, 153);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.em;
}
.post-thumbnail {
  margin: 40px 0 0;
    border-radius: 10px;
    width: 100%;
    max-height: 421px;
    position: relative;
    overflow: hidden;
}
.post-thumbnail img{
    display: block;
    width: 100%;
    height: 100%;
    object-position: center center;
    object-fit: cover;
}
.nav-links *{
  color: rgb(153, 153, 153);
}

@media (max-width: 768px) {
  main.single-main{
width: 90%;
margin: auto;
  }
  h2.entry-title{
    font-size: 30px;
  }
}


/* スマホ下部固定ボタン */
.sp-fixed-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
}

/* 各ボタン共通 */
.sp-fixed-cta .cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 17px 0;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

/* 色分け */
.cta-web {
  background: #d07a2d;
  color: #fff;
      border-top-left-radius: 20px;
}

.cta-tel {
  background: #3f8f7a;
  color: #fff;
}

.cta-access {
  background: #e6dcc2;
  color: #333;
  border-top-right-radius: 20px;
}

/* アイコン */
.sp-fixed-cta .icon {
  font-size: 18px;
}

.sp-fixed-cta .icon svg{
  width: 24px!important;
  height: 24px!important;
}

/* PCでは非表示 */
@media screen and (min-width: 768px) {
  .sp-fixed-cta {
    display: none;
  }
}
