@charset "UTF-8";

/* スライダーの次へ/戻る ボタンを見やすくするため */
body {
  color: #333;
  font-size: 16px;
  font-family: Hiragino Sans、ヒラギノ角ゴシック;
}

@media screen and (max-width: 979px) {
  body {
    font-size: 14px;
  }
}

img {
  vertical-align: top;
}

a {
  color: #333;
  text-decoration: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 979px) {
  .sp {
    display: block;
  }
}

.co_brown {
  color: #69491A;
}


section {
  padding-top: 80px;
  margin: auto;
}

@media screen and (max-width: 979px) {
  section {
    padding-top: 40px;
  }
}

.section__inner {
  width: min(calc(100% - 20px), 980px);
  margin: auto;
}

.f-box {
  display: flex;
  flex-wrap: wrap;
}

.f-box__justify-sb {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}


/*!!!!!!! title !!!!!!!!!!*/

/* heading */
.front-section-title {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 979px) {
  .front-section-title {
    margin-bottom: 20px;
  }
}


.heading,
.is-style-heading {
  font-family: serif, YuMincho、游明朝体;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin: 0;
}

.is-style-heading {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 979px) {
  .heading,
  .is-style-heading {
    font-size: 20px;
  }
  .is-style-heading {
    margin-bottom: 20px;
  }
}

.heading::before,
.heading::after,
.is-style-heading::before,
.is-style-heading::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #f2ab39;
}

.heading::before,
.is-style-heading::before {
  margin-right: 30px;
}

.heading::after,
.is-style-heading::after {
  margin-left: 30px;
}

.em {
  font-size: 14px;
  color: #F2AB39;
  margin-bottom: 30px;
}

@media screen and (max-width: 979px) {
  .em {
    margin-bottom: 20px;
  }
}

.brown_title {
  padding: .5em 0;
  color: #fff;
  background: #69491A;
  display: inline;
}

.title__line {
  text-align: center;

  span {
    background: linear-gradient(transparent 60%, rgb(255, 224, 102) 60%);
  }
}

.title__underline {
  position: relative;
  text-align: center;
  font-size: 30px;
}

@media screen and (max-width: 979px) {
  .title__underline {
    font-size: 20px;
  }
}

.title__underline::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #F2AC41;
  transform: translate(-50%);
  left: 50%;
  top: 120%;
}

@media screen and (max-width: 979px) {
  .title__underline::after {
    width: 80px;
    height: 2px;
  }
}

.title__border-bg,
.treatmemt-main h3 {
  padding: .5em .7em;
  border-left: 5px solid #F2AC41;
  background-color: #FFFDEC;
  margin-block: 20px;
}

.article__title {
  font-size: 32px;
  border-bottom: solid 3px #EFEFEF;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 979px) {
  .article__title {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}

/*!!!!!!! title !!!!!!!!!!*/

/*!!!! header !!!!*/

header {
  background-color: rgb(255, 255, 255, .8);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 5;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 1200px);
  height: 80px;
  margin: auto;
}

nav {
  li {
    font-family: serif, YuMincho、游明朝体;
    font-weight: bolder;
  }

  ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
  }

  .mail:hover {
    opacity: .8;
    transition: all .3s;
  }
}


.mail {
  background: #F2AB39;
  border-radius: 15px;
  color: #fff;
  padding: 8px 10px;
  transition: all .3s;
}


@media screen and (max-width: 1024px) {
  .menu {
    a.mail {
      color: #fff;
    }
  }
}


.heder__pc {
  display: block;
}

.header__sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .heder__pc {
    display: none;
  }

  .header__sp {
    display: block;
  }
}

/*!!!!!!! ドロップダウンメニューの基本設定 !!!!!!!!!!*/

.dropdown {
  cursor: pointer;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;

  i {
    margin-left: 5px;
  }

  li {
    font-family: Hiragino Sans、ヒラギノ角ゴシック;
    font-weight: normal;
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: rgb(255, 255, 255, .8);
  padding: 10px;
  z-index: 10;
  transition: all .3s;

}

.dropdown-menu {
  display: flex;
  width: min(100%, 1200px);
  margin: auto;
  flex-wrap: wrap;
  gap: 10px;
}

.dropdown-menu li {
  padding: 5px;
  white-space: nowrap;
  width: calc(100% / 5);
}

.dropdown-menu li:before {
  position: relative;
  top: -2px;
  left: -6px;
  display: inline-block;
  width: 4px;
  height: 4px;
  content: '';
  border-radius: 100%;
  background: #000;
}

.dropdown-content li:hover {
  background-color: #F2AB39;
  color: #fff;
}

.dropdown-content li:hover a {
  color: #fff;
}
.dropdown-menu li a {
  display: inline-block;
  width: 100%;
}

/* ドロップダウンメニューを表示させる */
.dropdown:hover .dropdown-content {
  display: block;
  transition: all .3s;
}

/*!!!!!!! SP アコーディオン !!!!!!!!!!*/
.header__sp {
  .menu {
    li {
      padding-inline: .5em 1em;
      font-family: serif, YuMincho、游明朝体;
    }
  }
}

.accordion-003 {}

.accordion-003 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
  display: none;
}

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

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

.accordion-003 .accordion-menu {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 1.5em;
  transition: transform .5s, opacity .5s;
}

.accordion-003[open] .accordion-menu {
  transform: none;
  opacity: 1;
  display: flex;
  flex-direction: column;
}

.accordion-menu li:before {
  position: relative;
  top: -2px;
  left: -6px;
  display: inline-block;
  width: 4px;
  height: 4px;
  content: '';
  border-radius: 100%;
  background: #000;
}

.menu {
  li {
    .accordion-menu li {
      padding: 0;
      margin: 0;
      border: none;
      display: inline-block;
      margin-right: 10px;
      margin-bottom: 10px;
      font-family: Hiragino Sans、ヒラギノ角ゴシック;
    }
  }
}

/*!!!! ハンバーガーメニュー !!!!*/
.header__sp {
  background-color: rgb(255, 255, 255, .85);
  position: fixed;
  width: 100%;
  height: 52px;
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background-color: rgb(255, 255, 255, .85);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.menu-btn:checked~.menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #333;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 10px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 20px 10px;
  background-color: #F2AC41;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin-left: auto;
  margin-right: 10px;
}

.navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked~.menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
  top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked~.menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 4px;
  font-size: 20px;
  margin-left: 10px;

  img {
    width: 70%;
  }
}

/*!!!! ハンバーガーメニュー !!!!*/


/*!!!! 固定ページ MV !!!!*/
@media screen and (max-width: 1024px) {
  .page-header {
    margin-top: 52px;
  }
}

.page-header .container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 152px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position-x: center;
}

.page-header h2 {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
}

@media screen and (max-width: 979px) {
  .page-header h2 {
    font-size: 24px;
  }
}

.container {
  /* background-image: url(../img/bg-sub.JPG); */
  background: linear-gradient(#69491a52, #69491a52), url(../img/bg-sub.JPG);
  background-position: 50% 40%;
}

@media (min-width: 1400px) {

  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1200px;
  }
}

/*!!!! 固定ページ MV !!!!*/

/*!!!! パンクず !!!!*/

/* .nav {
  width: min(calc(100% - 20px), 1200px);
  margin: auto;

  ul {
    display: flex;
    gap: 30px;
    margin-top: 20px;

    li {
      position: relative;
    }

    li:first-of-type {
      a {
        color: #69491A;
      }
    }

    li::before {
      content: ">";
      position: absolute;
      top: -7%;
      transform: translate(-50%);
      right: -1.2em;
    }

    li:last-of-type::before {
      display: none;
    }
  }
} */


.page-breadcrumbs {
  width: min(calc(100% - 20px), 1200px);
  margin: auto;
}

.page-breadcrumbs .breadcrumbs {
  padding: .6rem;
  color: #444;
}

.page-breadcrumbs a {
  color: #69491A;
}

.page-breadcrumbs .breadcrumbs li {
  display: inline-block;
  margin-right: .6rem;
  font-size: 1rem;
}

.page-breadcrumbs .breadcrumbs li:not(:first-child):before {
  content: ">";
  margin-right: .6rem;
}

.page-breadcrumbs .breadcrumbs li:last-child a {
  cursor: text;
  color: #444;
}

/*!!!! パンクず !!!!*/


/*!!!! footer !!!!*/

.footer__top {
  padding-top: 80px;
  background: url(../img/town.png)repeat-x;
  background-size: contain;
  background-position: bottom;
}

@media screen and (max-width: 979px) {
  .footer__top {
    padding-top: 40px;
  }
}

.footer__inner {
  background-color: #FFFDEC;
  padding-top: 50px;
}

@media screen and (max-width: 979px) {
  .footer__inner {
    padding-top: 20px;
  }
}

.footer__box {
  width: min(calc(100% - 20px), 1200px);
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.btn-box {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.footer__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 7px 10px 5px;
  width: 130px;
  background-color: #F2AB39;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  color: #fff;
  transition: all .3s;
}

.footer__btn::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border: 1px solid #333;
  border-radius: 50px;
}

.footer__left,
.footer__right {
  width: 50%;
}

@media screen and (max-width: 767px) {

  .footer__left,
  .footer__right {
    width: 100%;
  }
}


.footer__right {
  .btn-box {
    gap: 25px;
  }
}


.footer_table {
  width: min(100%, 490px);
  text-align: center;
  margin-bottom: 5px;

  .time {
    width: 7em;
  }

  th {
    background-color: #69491A;
    color: #fff;
    padding: 5px;
  }

  td {
    border-bottom: solid 2px #DDDDDD;
    padding: 5px;
  }
}

.sns {
  width: 30px;
  margin-bottom: 15px;
}

.footer__lik {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: min(calc(100% - 20px), 1200px);
  margin: auto;


  ul {
    width: calc(100% / 5);
    line-height: 2;
  }

  li::before {
    position: relative;
    top: -2px;
    left: -6px;
    display: inline-block;
    width: 4px;
    height: 4px;
    content: '';
    border-radius: 100%;
    background: #000;
  }

  @media screen and (max-width: 767px) {
    ul {
      width: 50%;
    }
  }
}

.list_title {
  color: #F2AC41;
}

.list_title::before {}

.list_title-no {
  margin-top: 2em;
}

@media screen and (max-width: 979px) {
  .list_title {
    margin-top: .5em;
  }

  .list_title-no {
    margin-top: 2.5em;
  }

  .list_title-no:last-of-type {
    margin-top: .5em;
  }
}

.footer__bottom {
  text-align: center;
  font-size: 12px;
  margin-top: 16px;
  padding-bottom: 16px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 auto;
    width: 45%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 55%;
  }
}

@media screen and (max-width: 991px) {
  .col-lg-8 {
    width: 100%;
  }

  .col-lg-4 {
    width: 100%;
  }
}

.footer-container {
  width: min(calc(100% - 20px), 1200px);
  margin: auto;
}

.footer-menu h3 {
  font-size: 16px;
  color: #F2AB39;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding-left: 1.6rem;
  height: 160px;
  list-style: disc;
  /* line-height: 2; */
  row-gap: 10px;
}

.footer-container li {
  list-style: none;
}

.footer-menu .footer-nav li::before {
  position: relative;
  top: -2px;
  left: -6px;
  display: inline-block;
  width: 4px;
  height: 4px;
  content: '';
  border-radius: 100%;
  background: #000;
}

/*!!!! footer !!!!*/

/*!!!! contact !!!!*/

.contact {
  color: #fff;
  background: linear-gradient(#69491a52, #69491a52), url(../img/bg-01.JPEG)no-repeat;
  background-size: cover;
  background-position-y: -110px;
  padding: 80px 0;

  p {
    text-align: center;
    font-size: 16px;
  }
}

@media screen and (max-width: 979px) {
  .contact {
    padding: 40px 0;
    background-position-y: center;
    background-position-x: center;
  }
}

.contact__box {
  border: solid 1px #fff;
  background-color: rgb(196 196 196 / 50%);
  padding: 40px 40px 46px;
  box-sizing: border-box;

  h2 {
    font-size: 30px;
    text-align: center;
  }

  @media screen and (max-width: 979px) {
    h2 {
      font-size: 24px;
    }
  }

  h2+p {
    text-align: center;
    margin-top: 30px;
  }

  @media screen and (max-width: 767px) {
    h2+p {
      margin-top: 10px;
      text-align: left;
    }
  }
}

@media screen and (max-width: 979px) {
  .contact__box {
    padding: 20px 20px 40px;

  }
}

.tel {
  pointer-events: none;
  text-align: center;
  font-size: 48px;
  color: #F2AB39;
  font-weight: bold;
  display: block;
  margin-block: 40px;
}

@media screen and (max-width: 979px) {
  .tel {
    font-size: 34px;
    pointer-events: auto;
    white-space: nowrap;
    margin-block: 10px;
  }
}

.btn {
  width: calc(100% / 2 - 30px);
  text-align: center;
  line-height: 3;
  font-size: 22px;
  font-weight: bold;
  margin: 0 auto;

}

@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
    font-size: 18px;
  }
}

a.btn-border__brown {
  width: 100%;
  background: #69491A;
  color: #fff;
  display: inline-block;
  -webkit-box-shadow: 6px 6px 0 #ffffffb8;
  box-shadow: 6px 6px 0 #ffffffb8;
  transition: all .3s;
  position: relative;
}

.btn-border__brown::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #69491A;
  transition: 0.2s ease 0s;
}

.btn-border__brown::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #69491A;
  transition: 0.2s ease 0.2s;
}

@media screen and (max-width: 979px) {
  a.btn-border__brown {
    margin-bottom: 20px;
  }
}

/* a.btn-border__brown:hover {
  -webkit-box-shadow: -6px -6px 0 #fff;
  box-shadow: -6px -6px 0 #000000;
  transition: all .3s;
} */

a.btn-border__orange {
  width: 100%;
  background: #F2AB39;
  color: #fff;
  display: inline-block;
  -webkit-box-shadow: 6px 6px 0 #ffffffb8;
  box-shadow: 6px 6px 0 #ffffffb8;
  transition: all .3s;
  position: relative;
}

.btn-border__orange::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: -7px;
  width: 100%;
  height: 2px;
  background-color: #F2AB39;
  transition: 0.2s ease 0s;
}

.btn-border__orange::after {
  content: '';
  position: absolute;
  top: 7px;
  right: -7px;
  width: 2px;
  height: 100%;
  background-color: #F2AB39;
  transition: 0.2s ease 0.2s;
}

/* a.btn-border__orange:hover {
  -webkit-box-shadow: -6px -6px 0 #fff;
  box-shadow: -6px -6px 0 #fff;
  transition: all .3s;
} */

.contact.second {
  margin-top: 80px;
  background: none;
  color: #333;

  .contact__box {
    border: none;
    background-color: #FFFDEC;
    padding: 40px 40px 46px;
    box-sizing: border-box;
  }

  @media screen and (max-width: 979px) {
    .contact__box {
      padding: 30px 20px 36px;
    }
  }
}

@media screen and (max-width: 979px) {
  .contact.second {
    margin-top: 0;
  }

}

/*!!!! contact !!!!*/

/* 404 page */
.title__line {
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 3.5rem;
  line-height: 1.5;
  position: relative;
}

.sp-view {
  display: none;
}

@media screen and (max-width: 680px) {
  .sp-view {
    display: block;
  }
}

.title__line::before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 100px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #f2ac41;
}