@charset "UTF-8";
/*************************************************
base-style
*************************************************/
* {
  box-sizing: border-box;
}

.ie_ObjectFit {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  scroll-behavior: smooth;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  min-height: 100dvh;
}

div,
p,
li,
dt,
dd,
th,
td,
a {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 1px;
  color: #595757;
}
@media screen and (max-width: 768px) {
  div,
  p,
  li,
  dt,
  dd,
  th,
  td,
  a {
    font-size: 1.4rem;
    letter-spacing: 0px;
  }
}

section {
  scroll-margin-top: 100px; /* 固定ヘッダーの高さ分を調整 */
}

a[href="#"] {
  pointer-events: none;
  opacity: 0.4;
  cursor: default;
}

.inner {
  width: 86.1111111111vw;
  max-width: 1240px;
  margin: 0 auto;
  padding: 6.9444444444vw 0;
}
@media screen and (max-width: 1023px) {
  .inner {
    width: 85%;
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
    padding: 13.3333333333vw 0vw;
  }
}

.inner-l {
  width: 92.3611111111vw;
  max-width: 1330px;
  margin: 0 auto;
  padding: 6.9444444444vw 0;
}
@media screen and (max-width: 1023px) {
  .inner-l {
    width: 85%;
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  .inner-l {
    width: 90%;
    padding: 10.6666666667vw 0vw;
  }
}

.inner-s {
  width: 72.2222222222vw;
  max-width: 1040px;
  margin: 0 auto;
  padding: 6.9444444444vw 0;
}
@media screen and (max-width: 1023px) {
  .inner-s {
    width: 85%;
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  .inner-s {
    width: 90%;
    padding: 10.6666666667vw 0vw;
  }
}

.font-mincho {
  font-family: "Shippori Mincho B1", serif;
}

.font-en {
  font-family: "Bitter", serif;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.fadeTrigger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fadeLeftTrigger {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-left {
  opacity: 1;
  transform: translateX(0);
}

.fadeRightTrigger {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-right {
  opacity: 1;
  transform: translateX(0);
}

/*************************************************
u-text
*************************************************/
.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-pc-inline {
  display: inline;
}
@media screen and (max-width: 768px) {
  .u-pc-inline {
    display: none;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block !important;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

/*************************************************
parts（共通パーツ）
*************************************************/
a[href="#"] {
  cursor: default;
}

.section-ttl {
  margin-bottom: 2rem;
}

.ttl-en {
  position: relative;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #F8B62D;
}
.ttl-en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 20px;
  height: 1px;
  background: #F8B62D;
}

.ttl-ja {
  display: block;
  font-size: 1.6rem;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .ttl-ja {
    font-size: 1.4rem;
  }
}

h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
h3 span {
  color: #F39800;
}

.implant h3 {
  color: #fff;
}
.implant h3 span {
  color: #f2c97e;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #F39800;
  color: #fff;
  border-radius: 50px;
  padding: 0 26px;
  height: 45px;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn {
    font-size: 1.3rem;
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    min-width: 200px;
  }
}
.btn svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 6px;
  background: #fff;
  border-radius: 50%;
  color: #F39800;
  transition: transform 0.2s ease;
}
.btn:hover svg {
  transform: translateX(5px);
}
.btn--right {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .btn--right {
    justify-content: center;
  }
}

/*------------------------------------------------
more-link（共通「一覧はこちら」ボタン）
------------------------------------------------*/
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  border-bottom: 1px solid #F39800;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .more-link {
    padding-bottom: 0.5rem;
  }
}
.more-link__text {
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .more-link__text {
    font-size: 1.3rem;
  }
}
.more-link__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #F39800;
  border-radius: 50%;
  transition: transform 0.2s ease;
}
.more-link:hover .more-link__icon {
  transform: translateX(5px);
}

/*------------------------------------------------
table
------------------------------------------------*/
.under-content_wrap table,
.post-content_wrap table {
  width: 100%;
  border-collapse: collapse;
  max-width: 1000px;
  margin: 0 auto;
}
.under-content_wrap table th, .under-content_wrap table td,
.post-content_wrap table th,
.post-content_wrap table td {
  text-align: left;
  padding: 3rem;
  border-top: 1px solid #ddd;
}
.under-content_wrap table th:last-child, .under-content_wrap table td:last-child,
.post-content_wrap table th:last-child,
.post-content_wrap table td:last-child {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .under-content_wrap table th:last-child, .under-content_wrap table td:last-child,
  .post-content_wrap table th:last-child,
  .post-content_wrap table td:last-child {
    border-bottom: 0px solid #ddd;
  }
}
@media screen and (max-width: 768px) {
  .under-content_wrap table th, .under-content_wrap table td,
  .post-content_wrap table th,
  .post-content_wrap table td {
    padding: 1rem;
    border-top: 0px solid #ddd;
  }
}
.under-content_wrap table th,
.post-content_wrap table th {
  width: 250px;
  background: #fef5e6;
  font-weight: 700;
  border-bottom: 1px solid #ddd;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .under-content_wrap table th,
  .post-content_wrap table th {
    display: block;
    width: 100%;
    border-bottom: 0px solid #ddd;
  }
}
.under-content_wrap table td,
.post-content_wrap table td {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .under-content_wrap table td,
  .post-content_wrap table td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .under-content_wrap table tr,
  .post-content_wrap table tr {
    display: block;
  }
  .under-content_wrap table tr:first-child th,
  .post-content_wrap table tr:first-child th {
    border-top: 0px solid #ddd;
  }
}
@media screen and (max-width: 768px) {
  .under-content_wrap table.price,
  .post-content_wrap table.price {
    table-layout: fixed;
  }
}
@media screen and (max-width: 768px) {
  .under-content_wrap table.price tr,
  .post-content_wrap table.price tr {
    display: table-row;
  }
}
.under-content_wrap table.price th, .under-content_wrap table.price td,
.post-content_wrap table.price th,
.post-content_wrap table.price td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: none;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .under-content_wrap table.price th, .under-content_wrap table.price td,
  .post-content_wrap table.price th,
  .post-content_wrap table.price td {
    display: table-cell;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    padding: 0.8rem 1rem;
  }
}
.under-content_wrap table.price th,
.post-content_wrap table.price th {
  width: 80%;
  font-weight: 700;
  font-size: 15px;
  padding-left: 2rem;
  text-align: left;
}
.under-content_wrap table.price td,
.post-content_wrap table.price td {
  text-align: right;
  padding-right: 2rem;
}
.under-content_wrap table.price thead th,
.post-content_wrap table.price thead th {
  background: #fef5e6;
  text-align: right;
  font-size: 1.4rem;
}
.under-content_wrap table.price thead th:first-child,
.post-content_wrap table.price thead th:first-child {
  text-align: left;
  padding-left: 2rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .under-content_wrap table.price thead th:first-child,
  .post-content_wrap table.price thead th:first-child {
    width: 65%;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .under-content_wrap table.price thead th:last-child,
  .post-content_wrap table.price thead th:last-child {
    width: 35%;
    font-size: 1.2rem;
  }
}
.under-content_wrap table.price tbody th,
.post-content_wrap table.price tbody th {
  text-align: left;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .under-content_wrap table.price tbody th,
  .post-content_wrap table.price tbody th {
    width: 65%;
    font-size: 1.3rem;
  }
}
.under-content_wrap table.price tbody td,
.post-content_wrap table.price tbody td {
  white-space: nowrap;
  width: 13%;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .under-content_wrap table.price tbody td,
  .post-content_wrap table.price tbody td {
    white-space: normal;
    overflow-wrap: break-word;
    width: 35%;
    font-size: 1.2rem;
  }
}

/*************************************************
header
*************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 115px;
  background-color: #fff;
  z-index: 100;
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}
.header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 50px;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 379px;
  flex-shrink: 0;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 230px;
    gap: 8px;
  }
}
.header__logo img {
  width: 100%;
  height: auto;
}
.header__logo-mark {
  width: 49px;
  height: 45px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .header__logo-mark {
    width: 24px;
    height: 22px;
  }
}
.header__logo-text {
  flex: 1;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media screen and (max-width: 768px) {
  .header__logo-text {
    height: 13px;
  }
}
.header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  .header__right {
    display: none;
  }
}
.header__top-row {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header__tel {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.header__tel-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 12px;
}
.header__tel-icon img {
  width: 100%;
  height: auto;
}
.header__tel-num {
  font-weight: 500;
  font-size: 2.2rem;
  letter-spacing: 1.1px;
  white-space: nowrap;
  line-height: 1;
}
.header__tel-num--preparing {
  font-size: 1.6rem;
}
.header__reserve {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 180px;
  height: 35px;
  padding-left: 19px;
  background-color: #F39800;
  border-radius: 4px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__reserve:hover {
    opacity: 0.7;
  }
}
.header__reserve-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
}
.header__reserve-icon img {
  width: 100%;
  height: auto;
}
.header__reserve-text {
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.header__sns {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 18px;
  transition: opacity 0.2s ease;
}
.header__sns img {
  width: 100%;
  height: auto;
}
@media (hover: hover) and (pointer: fine) {
  .header__sns:hover {
    opacity: 0.7;
  }
}
.header__navi-list {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__navi-item {
  display: flex;
  align-items: center;
}
.header__navi-item--has-child {
  gap: 8px;
}
.header__navi-item--active > .header__navi-link {
  color: #F39800;
}
.header__navi-link {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  line-height: 1.4;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__navi-link:hover {
    color: #F39800;
  }
}
.header__navi-link--btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.header__navi-arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 10px;
  height: 6px;
  transition: transform 0.25s ease;
}
.header__navi-arrow img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__navi-item--has-child {
  position: relative;
}
.header__navi-item--has-child:hover .header__navi-arrow, .header__navi-item--has-child.is-open .header__navi-arrow {
  transform: rotate(180deg);
}
.header__navi-item--has-child:hover .header__mega-menu, .header__navi-item--has-child.is-open .header__mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header__mega-menu {
  position: fixed;
  top: 115px;
  transform: translateY(-8px);
  width: 300px;
  background: #fef5e6;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 99;
}
.header__mega-inner {
  padding: 24px 28px;
}
.header__mega-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__mega-link {
  font-weight: 500;
  font-size: 1.4rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}
.header__mega-link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F39800;
  flex-shrink: 0;
}
.header__mega-link:hover {
  color: #F39800;
}

.hamberger-wrap {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-shrink: 0;
  background: #F39800;
  border-radius: 5px;
}
@media screen and (max-width: 1200px) {
  .hamberger-wrap {
    display: flex;
  }
}

.hamberger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.hamberger-wrap.is-ham-open .hamberger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamberger-wrap.is-ham-open .hamberger-line:nth-child(2) {
  opacity: 0;
}
.hamberger-wrap.is-ham-open .hamberger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.drawer-menu {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  width: 100%;
  height: calc(100dvh - 80px);
  background: #fff;
  z-index: 99;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .drawer-menu {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .drawer-menu {
    top: 60px;
    height: calc(100dvh - 60px);
  }
}
.drawer-menu.is-drawermenu-open {
  transform: translateX(0);
}

.drawer-nav {
  padding: 40px 30px;
}
.drawer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  border-top: 1px solid #e8e8e8;
}
.drawer-nav__item {
  border-bottom: 1px solid #e8e8e8;
}
.drawer-nav__link {
  display: block;
  padding: 18px 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.drawer-nav__link--btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-nav__arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #F39800;
  border-bottom: 2px solid #F39800;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin-right: 4px;
}
.drawer-nav__item--has-child.is-open .drawer-nav__arrow {
  transform: rotate(-135deg);
}
.drawer-nav__sub-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fef5e6;
  border-radius: 4px;
  margin-bottom: 8px;
}
.drawer-nav__sub-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.drawer-nav__sub-item:last-child {
  border-bottom: none;
}
.drawer-nav__sub-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
}
.drawer-nav__sub-link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F39800;
  flex-shrink: 0;
}
.drawer-nav__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 414px) {
  .drawer-nav__contact {
    flex-direction: column;
  }
}
.drawer-nav__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  width: 48%;
  background: #ddd;
  padding: 12px;
  border-radius: 4px;
}
@media screen and (max-width: 640px) {
  .drawer-nav__tel {
    width: 100%;
  }
}
.drawer-nav__tel-num {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 1.1px;
  line-height: 1;
}
@media screen and (max-width: 640px) {
  .drawer-nav__tel-num {
    font-size: 1.8rem;
  }
}
.drawer-nav__reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: #F39800;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.8px;
  width: 48%;
  font-size: 2rem;
}
@media screen and (max-width: 640px) {
  .drawer-nav__reserve {
    font-size: 1.6rem;
    width: 100%;
  }
}

/*************************************************
footer
*************************************************/
footer {
  position: sticky;
  top: 100%;
}

.footer__hero {
  width: 100%;
  height: 20.8333333333vw;
  max-height: 300px;
  overflow: hidden;
}
.footer__hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 60%;
     object-position: center 60%;
}
@media screen and (max-width: 768px) {
  .footer__hero {
    height: 48vw;
  }
}

.footer__body {
  background: linear-gradient(to right, rgba(247, 151, 30, 0.2), rgba(255, 210, 0, 0.2));
}

.inner-s {
  padding: 3.4722222222vw 0;
}
@media screen and (max-width: 1200px) {
  .inner-s {
    width: 90%;
    padding: 5.3333333333vw 0;
  }
}
@media screen and (max-width: 768px) {
  .inner-s {
    width: 90%;
    padding: 10.6666666667vw 0;
  }
}

.footer__info {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  .footer__info {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}

.footer__map {
  flex: 1;
  height: 300px;
  overflow: hidden;
}
.footer__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__map {
    height: 200px;
    width: 100%;
    order: 3;
  }
}

.footer__contact {
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__contact {
    display: contents;
  }
}

.footer__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .footer__cta {
    justify-content: center;
    order: 1;
  }
}
@media screen and (max-width: 414px) {
  .footer__cta {
    gap: 1rem;
  }
}

.footer__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__tel-label {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 414px) {
  .footer__tel-label {
    white-space: normal;
    font-size: 1.1rem;
  }
}

.footer__tel-number {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.footer__tel-number .footer__tel-icon {
  display: flex;
  align-items: center;
  width: 12px;
  flex-shrink: 0;
}
.footer__tel-number .footer__tel-icon img {
  width: 100%;
  height: auto;
}
.footer__tel-number span {
  font-size: 2.8rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 414px) {
  .footer__tel-number span {
    font-size: 2rem;
  }
}

.footer__btn-web {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 220px;
  height: 50px;
  background: #F39800;
  border-radius: 50px;
  padding: 0 22px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 414px) {
  .footer__btn-web {
    height: 40px;
  }
}
.footer__btn-web .footer__btn-web-icon {
  display: flex;
  align-items: center;
  width: 22px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__btn-web .footer__btn-web-icon {
    width: 18px;
  }
}
.footer__btn-web .footer__btn-web-icon img {
  width: 100%;
  height: auto;
}
.footer__btn-web span:last-child {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 414px) {
  .footer__btn-web span:last-child {
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer__btn-web:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .footer__btn-web {
    width: auto;
    padding: 0 20px;
  }
}

.footer__hours {
  background: #fff;
  padding: 22px 30px 20px;
}
@media screen and (max-width: 768px) {
  .footer__hours {
    overflow-x: auto;
    padding: 15px 20px;
    order: 2;
  }
}

.footer__hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
.footer__hours-table th,
.footer__hours-table td {
  text-align: center;
  font-size: 1.4rem;
  padding: 8px 4px;
  border-bottom: 1px solid rgba(250, 214, 153, 0.6);
  white-space: nowrap;
}
.footer__hours-table th {
  font-weight: 400;
}
.footer__hours-table td:first-child {
  text-align: left;
  padding-right: 10px;
}

.footer__hours-dot {
  color: #F39800;
}

.footer__hours-holiday {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  margin-top: 0;
}

.footer__lower {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer__lower {
    flex-direction: column;
    gap: 40px;
  }
}

.footer__logo-area {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .footer__logo-area {
    flex: none;
    align-items: center;
    width: 100%;
  }
}

.footer__logo {
  display: block;
  width: 350px;
  height: 42px;
  text-decoration: none;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 260px;
    height: 32px;
  }
}

.footer__address {
  font-style: normal;
  display: flex;
  flex-direction: column;
}
.footer__address p {
  line-height: 1.8;
  letter-spacing: 0.8px;
}
.footer__address p:first-child {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .footer__address p:first-child {
    font-size: 1.3rem;
  }
}
.footer__address p:last-child {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer__address p:last-child {
    font-size: 1.3rem;
  }
}

.footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  height: 45px;
  background: #fff;
  border-radius: 50px;
  padding: 0 20px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.footer__sns .footer__sns-icon {
  display: flex;
  align-items: center;
  width: 18px;
  flex-shrink: 0;
}
.footer__sns .footer__sns-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.footer__sns span {
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  white-space: nowrap;
  line-height: 1;
}
@media (hover: hover) and (pointer: fine) {
  .footer__sns:hover {
    opacity: 0.7;
  }
}

.footer__nav {
  flex: 1;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-group {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  .footer__nav-group {
    flex: 0 0 calc(50% - 8px);
  }
}

.footer__nav-heading {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 15px;
  border-left: 1px solid rgba(243, 152, 0, 0.4);
  list-style: none;
}
.footer__nav-list a {
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.7px;
  line-height: 1.4;
  display: block;
  transition: color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav-list a:hover {
    color: #F39800;
  }
}

.footer__copy {
  text-align: center;
  padding: 13px 0;
}
.footer__copy p {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    padding: 10px 0;
  }
}

/*************************************************
top
*************************************************/
section h2 {
  font-size: 2.4rem;
}

/*------------------------------------------------
fv
------------------------------------------------*/
.fv {
  position: relative;
  width: 100%;
  height: 850px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    height: auto;
    overflow: visible;
    padding-top: 480px;
  }
}
.fv__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/top/fv_pc.jpg");
  background-size: cover;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  .fv__bg {
    bottom: auto;
    height: 480px;
    background-image: url("../images/top/fv_sp.jpg");
  }
}
.fv__overlay {
  position: absolute;
  inset: 0;
  background: #613C31;
  opacity: 0.1;
  pointer-events: none;
}
.fv__copy {
  position: absolute;
  left: 99px;
  top: 500px;
}
@media screen and (max-width: 768px) {
  .fv__copy {
    position: static;
    padding: 24px 20px 0;
  }
}
.fv__label {
  display: inline-flex;
  align-items: center;
  background: #613C31;
  padding: 9px 11px;
  margin-bottom: 31px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__label {
    padding: 7px 8px;
    margin-bottom: 23px;
  }
}
.fv__label::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 21px;
  background: #613C31;
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
}
@media screen and (max-width: 768px) {
  .fv__label::after {
    bottom: -8px;
    width: 20px;
    height: 15px;
  }
}
.fv__label-text {
  font-weight: 500;
  font-size: 2rem;
  color: #fff;
  letter-spacing: 1px;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .fv__label-text {
    font-size: 1.4rem;
    letter-spacing: 0.5px;
  }
}
.fv__label-arrow {
  display: none;
}
.fv__headline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .fv__headline {
    gap: 10px;
  }
}
.fv__headline-row {
  font-weight: 700;
  font-size: 4.2rem;
  color: #fff;
  letter-spacing: 2.1px;
  line-height: 1;
  text-shadow: 0 0 10px rgba(89, 87, 87, 0.6);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv__headline-row {
    color: #595757;
    font-size: 4rem;
    letter-spacing: 1.3px;
    line-height: 1.2;
    text-shadow: none;
    font-weight: 400;
    white-space: normal;
  }
}
@media screen and (max-width: 640px) {
  .fv__headline-row {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 414px) {
  .fv__headline-row {
    font-size: 2.4rem;
  }
}
.fv__headline-accent {
  color: #F39800;
  font-style: normal;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .fv__headline-accent {
    text-shadow: none;
  }
}
.fv__campaign {
  position: absolute;
  left: 100px;
  top: 690px;
  background: #F39800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .fv__campaign {
    left: auto;
    right: 1rem;
    top: auto;
    bottom: 1rem;
    border-radius: 5px;
    padding: 12px 16px;
    gap: 12px;
  }
}
.fv__campaign-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .fv__campaign-icon {
    width: 40px;
    height: 40px;
  }
}
.fv__campaign-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .fv__campaign-text {
    gap: 0px;
  }
}
.fv__campaign-title {
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fv__campaign-title {
    font-size: 1.3rem;
  }
}
.fv__campaign-price {
  font-weight: 700;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: baseline;
  justify-content: center;
  letter-spacing: 0.8px;
}
.fv__campaign-price-sm {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .fv__campaign-price-sm {
    font-size: 1.6rem;
  }
}
.fv__campaign-price-lg {
  font-size: 4.5rem;
}
@media screen and (max-width: 768px) {
  .fv__campaign-price-lg {
    font-size: 2.2rem;
  }
}

/*------------------------------------------------
event
------------------------------------------------*/
.event .flex-wrap_event {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .event .flex-wrap_event {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }
}
.event .flex-wrap_event .img-wrap {
  width: 41.6666666667vw;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .event .flex-wrap_event .img-wrap {
    width: 100%;
  }
}
.event .flex-wrap_event .img-wrap img {
  width: 100%;
  height: auto;
}
.event .flex-wrap_event .flex-txt {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .event .flex-wrap_event .flex-txt {
    width: 100%;
  }
}
.event .flex-wrap_event .flex-txt .list_items {
  margin-bottom: 2rem;
}
.event .flex-wrap_event .flex-txt .list_item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}
.event .flex-wrap_event .flex-txt .list_item:last-child {
  margin-bottom: 0;
  border-bottom: 0px solid #ddd;
  padding-bottom: 0;
}
.event .flex-wrap_event .flex-txt .list_item .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  color: #F39800;
}
@media screen and (max-width: 768px) {
  .event .flex-wrap_event .flex-txt .list_item .ttl {
    font-size: 1.5rem;
  }
}
.event .flex-wrap_event .flex-txt .list_item ul li {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 2em;
  position: relative;
}
.event .flex-wrap_event .flex-txt .list_item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: url("../images/top/icon_dia.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .event .flex-wrap_event .flex-txt .list_item ul li {
    padding-left: 1.5rem;
  }
}
.event .flex-wrap_event .flex-txt .list_item ul li span {
  display: inline-block;
  font-size: 1.2rem;
  color: #F39800;
  font-weight: 700;
  border: 1px solid #F39800;
  padding: 0.1em 0.6em;
  border-radius: 2px;
  margin-right: 0.5em;
}
.event .flex-wrap_event .flex-txt iframe {
  display: block;
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 768px) {
  .event .flex-wrap_event .flex-txt iframe {
    height: 200px;
  }
}

/*------------------------------------------------
p-opening
------------------------------------------------*/
.p-opening {
  position: relative;
  isolation: isolate;
}
.p-opening .inner {
  position: relative;
  padding: 3.4722222222vw 0;
}
@media screen and (max-width: 768px) {
  .p-opening .inner {
    padding: 30px 0;
  }
}
.p-opening__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.p-opening__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  pointer-events: none;
}
.p-opening__bg-overlay {
  position: absolute;
  inset: 0;
  background: #F8B62D;
  opacity: 0.1;
  pointer-events: none;
}
.p-opening__ttl-bar {
  background: #F39800;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 825px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .p-opening__ttl-bar {
    height: 40px;
    margin-bottom: 16px;
  }
}
.p-opening__ttl {
  font-weight: 700;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 1.6px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-opening__ttl {
    font-size: 2rem;
  }
}
.p-opening__body {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 825px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .p-opening__body {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
}
.p-opening__img-wrap {
  max-width: 300px;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-opening__img-wrap {
    flex: none;
    max-width: none;
    width: 100%;
    height: 230px;
  }
}
.p-opening__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-opening__card-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-opening__card-wrap {
  position: relative;
  padding-top: 23px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-opening__card-wrap {
    padding-top: 16px;
    margin-right: 10px;
  }
}
.p-opening__card-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: -5%;
  width: 78px;
  height: 78px;
  background: url("../images/top/icon_limited.png") no-repeat center/contain;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-opening__card-wrap::before {
    width: 60px;
    height: 60px;
  }
}
.p-opening__limited {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 78px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-opening__limited {
    width: 60px;
    height: 60px;
  }
}
.p-opening__limited::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #F39800;
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.p-opening__limited-text {
  position: absolute;
  top: 10px;
  right: 8px;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  line-height: 1.05;
  transform: rotate(-5deg) skewX(-8deg);
}
@media screen and (max-width: 768px) {
  .p-opening__limited-text {
    font-size: 1rem;
    top: 8px;
    right: 5px;
  }
}
.p-opening__card {
  background: #fff;
  box-shadow: 0 0 10px rgba(89, 87, 87, 0.15);
  height: 110px;
  display: flex;
  align-items: center;
  padding: 0 33px;
}
@media screen and (max-width: 768px) {
  .p-opening__card {
    zoom: 1.5;
    height: auto;
    min-height: 80px;
    padding: 16px;
  }
}
@media screen and (max-width: 640px) {
  .p-opening__card {
    zoom: 1;
  }
}
.p-opening__price-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-opening__price-row {
    gap: 10px;
    flex-wrap: wrap;
  }
}
.p-opening__price-before {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.p-opening__price-label-box {
  border: 1px solid #595757;
  width: 230px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-opening__price-label-box {
    width: 180px;
    height: 22px;
    font-size: 1.2rem;
  }
}
.p-opening__price-original {
  display: flex;
  align-items: baseline;
  line-height: 1;
  position: relative;
}
.p-opening__price-original::after {
  content: "";
  position: absolute;
  top: 60%;
  left: -2%;
  width: 100%;
  height: 2px;
  background: #f36700;
  transform: rotate(7deg);
  transform-origin: center;
  pointer-events: none;
}
.p-opening__price-original-num {
  font-weight: 500;
  font-size: 4.2rem;
}
@media screen and (max-width: 768px) {
  .p-opening__price-original-num {
    font-size: 3rem;
  }
}
.p-opening__price-original-unit {
  font-weight: 600;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .p-opening__price-original-unit {
    font-size: 1.8rem;
  }
}
.p-opening__price-original-tax {
  font-weight: 500;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-opening__price-original-tax {
    font-size: 1.2rem;
  }
}
.p-opening__price-arrow {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.p-opening__price-arrow span {
  display: block;
  width: 12px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='20' viewBox='0 0 12 20' fill='none'%3E%3Cpath d='M1.10229 1.10571L10.1023 9.35571L1.10229 19.1057' stroke='%23F36700' stroke-width='3'/%3E%3C/svg%3E") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .p-opening__price-arrow span {
    width: 8px;
    height: 15px;
  }
}
.p-opening__price-free {
  display: flex;
  align-items: baseline;
  color: #f36700;
  line-height: 1;
  flex-shrink: 0;
}
.p-opening__price-free-num {
  font-weight: 600;
  font-size: 7.2rem;
}
@media screen and (max-width: 768px) {
  .p-opening__price-free-num {
    font-size: 5rem;
  }
}
.p-opening__price-free-unit {
  font-weight: 500;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .p-opening__price-free-unit {
    font-size: 2.2rem;
  }
}
.p-opening__desc {
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  line-height: 1.5;
}
@media screen and (max-width: 640px) {
  .p-opening__desc {
    font-size: 1.2rem;
  }
}
.p-opening__sep {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-opening__sep {
    gap: 10px;
    margin-bottom: 16px;
  }
}
.p-opening__sep-line {
  display: block;
  flex: 0 0 100px;
  height: 1px;
  background: #F39800;
}
@media screen and (max-width: 640px) {
  .p-opening__sep-line {
    display: none;
  }
}
.p-opening__sep-text {
  font-weight: 700;
  font-size: 1.8rem;
  color: #F39800;
  letter-spacing: 0.9px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-opening__sep-text {
    font-size: 1.6rem;
    white-space: normal;
    text-align: center;
  }
}
.p-opening__sep-num {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .p-opening__sep-num {
    font-size: 2rem;
  }
}
.p-opening__visits {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-opening__visits {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
  }
}
.p-opening__visit {
  flex: 0 0 350px;
  background: #fff;
  box-shadow: 0 0 10px rgba(89, 87, 87, 0.15);
  height: 90px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-opening__visit {
    flex: none;
    width: 100%;
    height: auto;
  }
}
.p-opening__visit-head {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.7px;
  line-height: 1.4;
  flex-shrink: 0;
}
.p-opening__visit-head--1 {
  background: #F39800;
}
.p-opening__visit-head--2 {
  background: #F8B62D;
}
.p-opening__visit-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 29px;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.7px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-opening__visit-body {
    padding: 8px 16px;
  }
}
.p-opening__visit-plus {
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.p-opening__bottom {
  text-align: center;
}
.p-opening__bottom-sub {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1.2px;
  line-height: 1.5;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .p-opening__bottom-sub {
    font-size: 1.4rem;
  }
}
.p-opening__bottom-main {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 1.2px;
  line-height: 1.5;
  text-underline-offset: 6px;
  background: linear-gradient(transparent 70%, #F8B62D 70%);
  display: inline;
}
@media screen and (max-width: 768px) {
  .p-opening__bottom-main {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------
picture
------------------------------------------------*/
.picture .inner-l {
  width: 100%;
  max-width: 100%;
}
.picture img {
  display: block;
  width: 100%;
  height: auto;
}

/*------------------------------------------------
doctor
------------------------------------------------*/
.doctor .inner {
  position: relative;
  padding: 0 0 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .doctor .inner {
    padding: 0 0 50px;
  }
}
.doctor .flex-wrap_doctor {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
}
@media screen and (max-width: 1023px) {
  .doctor .flex-wrap_doctor {
    flex-direction: column;
    gap: 2rem;
  }
}
.doctor .flex-wrap_doctor .img-wrap {
  position: relative;
  width: 50rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .doctor .flex-wrap_doctor .img-wrap {
    width: 100%;
  }
}
.doctor .flex-wrap_doctor .img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.doctor .flex-wrap_doctor .img-wrap figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 1.2rem 3rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .img-wrap figcaption {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
  }
}
.doctor .flex-wrap_doctor .img-wrap figcaption .clinic-name {
  font-weight: bold;
  color: #F39800;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .img-wrap figcaption .clinic-name {
    font-size: 1.2rem;
  }
}
.doctor .flex-wrap_doctor .img-wrap figcaption .name {
  font-weight: bold;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .img-wrap figcaption .name {
    font-size: 1.4rem;
  }
}
.doctor .flex-wrap_doctor .img-wrap figcaption .name span {
  font-size: 1.4rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .img-wrap figcaption .name span {
    font-size: 1.2rem;
  }
}
.doctor .flex-wrap_doctor .flex-txt {
  flex: 1;
  min-width: 0;
}
.doctor .flex-wrap_doctor .flex-txt .section-title {
  margin-bottom: 2rem;
}
.doctor .flex-wrap_doctor .flex-txt .list_items {
  margin-bottom: 0;
}
.doctor .flex-wrap_doctor .flex-txt .list_item {
  margin-bottom: 2rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2rem;
}
.doctor .flex-wrap_doctor .flex-txt .list_item:last-child {
  margin-bottom: 0;
  border-bottom: 0px solid #ddd;
  padding-bottom: 0;
}
.doctor .flex-wrap_doctor .flex-txt .list_item h3 {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .flex-txt .list_item h3 {
    font-size: 1.4rem;
  }
}
.doctor .flex-wrap_doctor .flex-txt .list_item h3 span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .flex-txt .list_item h3 span {
    font-size: 1.3rem;
  }
}
.doctor .flex-wrap_doctor .flex-txt .list_item p {
  font-size: 1.4rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .flex-txt .list_item p {
    font-size: 1.3rem;
  }
}
.doctor .flex-wrap_doctor .flex-txt .list_item .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  color: #F39800;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .flex-txt .list_item .ttl {
    font-size: 1.5rem;
  }
}
.doctor .flex-wrap_doctor .flex-txt .list_item ul li {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 1.2em;
  position: relative;
}
.doctor .flex-wrap_doctor .flex-txt .list_item ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 10px;
  height: 10px;
  background: url("../images/top/icon_dia.svg") no-repeat center/contain;
}
.doctor .flex-wrap_doctor .flex-txt .career {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 2rem 0;
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .flex-txt .career {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    margin: 1rem 0 3rem;
  }
}
.doctor .flex-wrap_doctor .flex-txt .career .ttl {
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .doctor .flex-wrap_doctor .flex-txt .career .ttl {
    font-size: 1.5rem;
  }
}
.doctor .flex-wrap_doctor .flex-txt .career ul {
  flex: 1;
}
.doctor .flex-wrap_doctor .flex-txt .career ul li {
  padding: 0 0 0 1.8rem;
  line-height: 1.8;
  position: relative;
}
.doctor .flex-wrap_doctor .flex-txt .career ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background: url("../images/top/icon_dia.svg") no-repeat center/contain;
}

/*------------------------------------------------
adult
------------------------------------------------*/
.adult {
  position: relative;
  overflow: hidden;
  background-image: url("../images/top/bg_adult_img.jpg");
  background-size: 100vw auto;
  background-position: right top;
  background-repeat: no-repeat;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .adult {
    background-image: url("../images/top/bg_adult_img_sp.jpg");
    background-size: 100% auto;
    background-position: center top;
  }
}
.adult::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(-90deg, rgba(255, 255, 255, 0) 50%, #fff 59%), linear-gradient(179deg, rgba(255, 255, 255, 0) 79%, #fff 98%);
  pointer-events: none;
  z-index: -1;
}
.adult__deco {
  position: absolute;
  left: 2.5694444444vw;
  top: 2.7777777778vw;
  font-size: 9.7222222222vw;
  color: #ddd;
  opacity: 0.4;
  mix-blend-mode: multiply;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .adult__deco {
    font-size: 9.6vw;
    top: 5.3333333333vw;
  }
}
.adult .inner-s {
  padding-top: 18.0555555556vw;
  padding-bottom: 6.9444444444vw;
}
@media screen and (max-width: 1023px) {
  .adult .inner-s {
    padding-top: 13.8888888889vw;
  }
}
@media screen and (max-width: 768px) {
  .adult .inner-s {
    padding-top: 16vw;
    padding-bottom: 16vw;
  }
}
.adult__flex {
  display: flex;
  align-items: flex-end;
  gap: 0.9027777778vw;
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 1200px) {
  .adult__flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 8vw;
  }
}
.adult__content {
  flex-shrink: 0;
  width: 31.9444444444vw;
}
@media screen and (max-width: 1200px) {
  .adult__content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .adult__content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .adult__content .btn {
    align-self: center;
  }
}
.adult__ttl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .adult__ttl {
    margin-bottom: 16px;
  }
}
.adult__ttl-en {
  font-size: 1.4rem;
  color: #F8B62D;
  letter-spacing: 0.05em;
  line-height: 1;
}
.adult__ttl-line {
  display: block;
  width: 20px;
  height: 1px;
  background: #F8B62D;
}
.adult__ttl-ja {
  font-size: 1.6rem;
  font-weight: 500;
  color: #595757;
  letter-spacing: 0.05em;
}
.adult__heading {
  font-size: 2.4rem;
  color: #F39800;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-shadow: 0 0 3px #ebe6e6;
  margin-bottom: 1.3888888889vw;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .adult__heading {
    font-size: 1.8rem;
    white-space: normal;
    margin-bottom: 16px;
  }
}
.adult__body {
  font-size: 1.6rem;
  color: #595757;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 30.9027777778vw;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .adult__body {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .adult__body {
    width: 100%;
    margin-bottom: 24px;
  }
}
.adult__body p {
  margin-bottom: 0;
}
.adult__btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #F39800;
  color: #fff;
  border-radius: 50px;
  padding: 0 26px;
  height: 45px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.adult__btn img {
  width: 22px;
  height: 22px;
}
.adult__case {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  width: 40.9722222222vw;
  align-items: flex-start;
}
@media screen and (max-width: 1200px) {
  .adult__case {
    width: 750px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .adult__case {
    width: 100%;
    background: none;
    padding: 0;
    gap: 5px;
  }
}
.adult__case-item {
  flex: 1;
}
.adult__case-item img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .adult__case-item img {
    min-height: 90px;
    max-height: 110px;
  }
}
.adult__case-label {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Shippori Mincho B1", serif;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .adult__case-label {
    height: 20px;
  }
}
.adult__case-label--before {
  background: #595757;
}
@media screen and (max-width: 768px) {
  .adult__case-label--before {
    font-size: 1.2rem;
  }
}
.adult__case-label--after {
  background: #F39800;
}
@media screen and (max-width: 768px) {
  .adult__case-label--after {
    font-size: 1.2rem;
  }
}
.adult__case-arrow {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translate(-50%, -50%);
  width: 23px;
  display: block;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .adult__case-arrow {
    top: 60px;
    width: 15px;
  }
}
.adult__case-arrow svg {
  display: block;
}
.adult__cost {
  position: relative;
  background: linear-gradient(76deg, #ffe8ac 0.26%, #ffd76c 100%);
  box-shadow: 0 0 10px rgba(158, 158, 158, 0.15);
  margin: 0 auto;
  max-width: 750px;
  padding: 30px 50px 10px;
}
@media screen and (max-width: 768px) {
  .adult__cost {
    margin-left: 0;
    padding: 15px 15px 5px;
  }
}
.adult__cost-inner {
  width: 100%;
  height: 8.3333333333vw;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4.0277777778vw;
  gap: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .adult__cost-inner {
    width: 100%;
    height: auto;
    padding: 15px;
    gap: 10px;
    margin-bottom: 12px;
  }
}
.adult__cost-name {
  font-size: 2.6rem;
  font-weight: 700;
  color: #595757;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .adult__cost-name {
    font-size: 1.4rem;
  }
}
.adult__cost-price {
  font-size: 4.5rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(transparent 85%, #F8B62D 85%);
}
@media screen and (max-width: 768px) {
  .adult__cost-price {
    font-size: 2.2rem;
  }
}
.adult__cost-price small {
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .adult__cost-price small {
    font-size: 1.6rem;
  }
}
.adult__cost-num {
  font-size: 7.5rem;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 768px) {
  .adult__cost-num {
    font-size: 3.6rem;
  }
}
.adult__cost-note {
  margin: 1rem auto;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .adult__cost-note {
    width: 100%;
    gap: 0px;
    position: static;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.adult__cost-note p {
  font-size: 1.4rem;
  color: #595757;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .adult__cost-note p {
    font-size: 1.2rem;
  }
}
.adult__cost-badge {
  border: 1px solid #f36700;
  color: #f36700;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 5px 7px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .adult__cost-badge {
    font-size: 1.2rem;
    padding: 0px 4px;
  }
}

/*------------------------------------------------
child
------------------------------------------------*/
.child {
  position: relative;
  background: #fef5e6;
  padding-top: 20.8333333333vw;
}
@media screen and (max-width: 768px) {
  .child {
    padding-top: 16vw;
  }
}
.child__deco {
  position: absolute;
  right: 0vw;
  top: 7.8472222222vw;
  font-size: 9.7222222222vw;
  color: #613C31;
  opacity: 0.6;
  mix-blend-mode: color-burn;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .child__deco {
    font-size: 9.6vw;
    top: 5.3333333333vw;
  }
}
.child .inner {
  padding-top: 0;
  padding-bottom: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .child .inner {
    padding-top: 0;
    padding-bottom: 10.6666666667vw;
  }
}
.child__main {
  display: flex;
  align-items: flex-start;
  gap: 6.25vw;
  margin-bottom: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .child__main {
    flex-direction: column;
    gap: 6.4vw;
    margin-bottom: 10.6666666667vw;
  }
}
.child__img {
  flex-shrink: 0;
  width: 34.7222222222vw;
  margin-left: calc(50% - 50vw);
  margin-top: -23.6111111111vw;
}
@media screen and (max-width: 768px) {
  .child__img {
    width: 34.7222222222vw;
  }
}
.child__img img {
  width: 100%;
  height: auto;
  display: block;
}
.child__content {
  flex: 1;
  min-width: 0;
  max-width: 550px;
}
.child__content .section-ttl {
  margin-bottom: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .child__content .section-ttl {
    margin-bottom: 16px;
  }
}
.child__right-img {
  position: absolute;
  top: 20.8333333333vw;
  right: 0vw;
  width: 15.2777777778vw;
}
@media screen and (max-width: 1200px) {
  .child__right-img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .child__right-img {
    display: block;
    margin-left: auto;
    width: 24.3055555556vw;
    right: 0;
    margin-right: calc(50% - 50vw);
    top: 27.7777777778vw;
  }
}
.child__right-img img {
  width: 100%;
  height: auto;
  display: block;
}
.child__catch {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #595757;
  margin-bottom: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .child__catch {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
.child__catch-accent {
  color: #F39800;
}
.child__body {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #595757;
  letter-spacing: 0.05em;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .child__body {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}
.child__body p + p {
  margin-top: 1em;
}
.child__merit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 1023px) {
  .child__merit {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .child__merit {
    grid-template-columns: 1fr;
    max-width: 300px;
    gap: 16px;
    margin: 0 auto 40px;
  }
}
.child__merit-item {
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(158, 158, 158, 0.15);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .child__merit-item {
    gap: 16px;
  }
}
.child__merit-icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: #fef5e6;
  border-radius: 50%;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  .child__merit-icon {
    width: 60px;
    height: 60px;
    padding: 1rem;
  }
}
.child__merit-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.child__merit-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: #F39800;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .child__merit-ttl {
    text-align: left;
    font-size: 1.4rem;
  }
}
.child__merit-body {
  font-size: 1.4rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .child__merit-body {
    font-size: 1.3rem;
  }
}
.child__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .child__price {
    margin-bottom: 10.6666666667vw;
  }
}
.child__price-box {
  background: linear-gradient(75.5deg, rgba(255, 221, 152, 0.6) 0%, rgb(253, 195, 133) 100%);
  box-shadow: 0px 0px 10px 0px rgba(158, 158, 158, 0.15);
  padding: 3.4722222222vw 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .child__price-box {
    padding: 24px;
    width: 100%;
  }
}
.child__price-inner {
  display: flex;
  align-items: center;
  gap: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .child__price-inner {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}
.child__price-label {
  font-size: 2.6rem;
  font-weight: 700;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .child__price-label {
    font-size: 2rem;
  }
}
.child__price-num {
  background: #fff;
  padding: 1.0416666667vw 1.7361111111vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .child__price-num {
    padding: 12px 20px;
  }
}
.child__price-num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: #595757;
}
.child__price-value {
  color: #595757;
  line-height: 1;
  white-space: nowrap;
}
.child__price-lg {
  font-size: 7.5rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .child__price-lg {
    font-size: 5.5rem;
  }
}
.child__price-unit {
  font-size: 4.5rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .child__price-unit {
    font-size: 3.2rem;
  }
}
.child__price-tax {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .child__price-tax {
    font-size: 2rem;
  }
}
.child__price-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 1.4rem;
  color: #595757;
}
@media screen and (max-width: 768px) {
  .child__price-note {
    flex-wrap: wrap;
  }
}
.child__price-badge {
  display: inline-block;
  border: 1px solid #f36700;
  color: #f36700;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0.2em 0.6em;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.child__cost {
  position: relative;
  background: linear-gradient(86deg, rgba(255, 221, 152, 0.6) 0%, #FDC385 100%);
  box-shadow: 0 0 10px rgba(158, 158, 158, 0.15);
  margin: 0 auto;
  max-width: 750px;
  padding: 30px 50px 10px;
}
@media screen and (max-width: 768px) {
  .child__cost {
    margin-left: 0;
    padding: 15px 15px 5px;
  }
}
.child__cost-inner {
  width: 100%;
  height: 8.3333333333vw;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4.0277777778vw;
  gap: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .child__cost-inner {
    width: 100%;
    height: auto;
    padding: 15px;
    gap: 10px;
    margin-bottom: 12px;
  }
}
.child__cost-name {
  font-size: 2.6rem;
  font-weight: 700;
  color: #595757;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .child__cost-name {
    font-size: 1.4rem;
  }
}
.child__cost-price {
  font-size: 4.5rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(transparent 85%, #F8B62D 85%);
}
@media screen and (max-width: 768px) {
  .child__cost-price {
    font-size: 2.2rem;
  }
}
.child__cost-price small {
  font-size: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .child__cost-price small {
    font-size: 1.6rem;
  }
}
.child__cost-num {
  font-size: 7.5rem;
  font-family: "Shippori Mincho B1", serif;
}
@media screen and (max-width: 768px) {
  .child__cost-num {
    font-size: 3.6rem;
  }
}
.child__cost-note {
  margin: 1rem auto;
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .child__cost-note {
    width: 100%;
    gap: 0px;
    position: static;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.child__cost-note p {
  font-size: 1.4rem;
  color: #595757;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .child__cost-note p {
    font-size: 1.2rem;
  }
}
.child__cost-badge {
  border: 1px solid #f36700;
  color: #f36700;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 5px 7px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .child__cost-badge {
    font-size: 1.2rem;
    padding: 0px 4px;
  }
}
.child__slider {
  overflow: hidden;
  padding-bottom: 4.1666666667vw;
}
@media screen and (max-width: 768px) {
  .child__slider {
    padding-bottom: 8vw;
  }
}
.child__slider-track {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  width: -moz-max-content;
  width: max-content;
  animation: childSliderScroll 25s linear infinite;
}
@media screen and (max-width: 768px) {
  .child__slider-track {
    gap: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .child__slider-track {
    animation: none;
  }
}
.child__slider-item {
  flex-shrink: 0;
  overflow: hidden;
}
.child__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.child__slider-item:nth-child(5n+1) {
  width: 27.7777777778vw;
  height: 24.6527777778vw;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .child__slider-item:nth-child(5n+1) {
    margin-top: 1.5rem;
  }
}
.child__slider-item:nth-child(5n+2) {
  width: 19.4444444444vw;
  height: 15.3472222222vw;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .child__slider-item:nth-child(5n+2) {
    margin-top: 1rem;
  }
}
.child__slider-item:nth-child(5n+3) {
  width: 26.3888888889vw;
  height: 22.9166666667vw;
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .child__slider-item:nth-child(5n+3) {
    margin-top: 3.5rem;
  }
}
.child__slider-item:nth-child(5n+4) {
  width: 20.8333333333vw;
  height: 18.4027777778vw;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .child__slider-item:nth-child(5n+4) {
    margin-top: 1.5rem;
  }
}
.child__slider-item:nth-child(5n) {
  width: 27.7777777778vw;
  height: 24.3055555556vw;
}
@keyframes childSliderScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/*------------------------------------------------
implant
------------------------------------------------*/
.implant {
  position: relative;
  overflow: hidden;
  background-image: url("../images/top/bg_implant_img.jpg");
  background-size: cover;
  background-position: center top;
}
.implant__deco {
  position: absolute;
  right: 2.5694444444vw;
  top: 4.1666666667vw;
  font-size: 11.1111111111vw;
  color: #613C31;
  opacity: 0.6;
  mix-blend-mode: soft-light;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .implant__deco {
    font-size: 16vw;
    right: 0;
    top: 5.3333333333vw;
  }
}
.implant .inner {
  position: relative;
  z-index: 1;
  padding-top: 12.8472222222vw;
  padding-bottom: 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .implant .inner {
    padding-top: 21.3333333333vw;
    padding-bottom: 16vw;
  }
}
.implant__main {
  display: flex;
  align-items: center;
  gap: 3.4722222222vw;
  margin-bottom: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .implant__main {
    flex-direction: column;
    gap: 0vw;
    margin-bottom: 10.6666666667vw;
  }
}
.implant__main-img {
  flex-shrink: 0;
  width: 41.6666666667vw;
}
@media screen and (max-width: 768px) {
  .implant__main-img {
    width: 100%;
  }
}
.implant__main-img img {
  width: 100%;
  height: auto;
  display: block;
}
.implant__main-content {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .implant__main-content {
    display: contents;
  }
}
@media screen and (max-width: 768px) {
  .implant__main h3 {
    order: -1;
    width: 100%;
  }
}
.implant__catch {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .implant__catch {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}
.implant__catch span {
  color: #fff;
}
.implant__catch-accent {
  color: #f2c97e;
}
.implant__body {
  font-size: 1.6rem;
  line-height: 1.8;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .implant__body {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}
.implant__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 5.5555555556vw;
}
@media screen and (max-width: 1200px) {
  .implant__features {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .implant__features {
    grid-template-columns: 1fr;
    margin-bottom: 10.6666666667vw;
    row-gap: 0rem;
  }
}
.implant__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  padding: 0 20px;
}
.implant__feature:last-child {
  border-right: none;
}
@media screen and (max-width: 1200px) {
  .implant__feature:nth-child(2n) {
    border-right: none;
  }
  .implant__feature:nth-child(2n-1) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 768px) {
  .implant__feature:nth-child(2n-1) {
    border-right: 0px solid rgba(255, 255, 255, 0.5);
  }
  .implant__feature {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4vw 4vw;
    gap: 1rem;
  }
  .implant__feature:last-child {
    border-bottom: none;
  }
  .implant__feature:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
}
@media screen and (max-width: 414px) {
  .implant__feature {
    max-width: 300px;
    margin: 0 auto;
  }
}
.implant__feature-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .implant__feature-group {
    gap: 0.5rem;
  }
}
.implant__feature-label {
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .implant__feature-label {
    font-size: 1.6rem;
  }
}
.implant__feature-value {
  font-size: 2.2rem;
  color: #f2c97e;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .implant__feature-value {
    font-size: 1.8rem;
  }
}
.implant__feature-body {
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  width: 320px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .implant__feature-body {
    width: 100%;
  }
}
.implant__consult {
  background: rgba(81, 50, 41, 0.6);
  padding: 2.5vw 2.4305555556vw;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .implant__consult {
    padding: 24px;
    margin-bottom: 10.6666666667vw;
  }
}
.implant__consult-ttl {
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .implant__consult-ttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.implant__consult-cards {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .implant__consult-cards {
    flex-direction: column;
  }
}
.implant__consult-card {
  background: rgba(255, 255, 255, 0.7);
  flex: 1;
  padding: 11px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .implant__consult-card {
    padding: 16px;
  }
}
.implant__consult-card-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .implant__consult-card-ttl {
    font-size: 1.4rem;
  }
}
.implant__consult-card-body {
  font-size: 1.4rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.implant__consult-num {
  display: inline-block;
  background: #fff;
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #F39800;
  letter-spacing: 0.05em;
}
.implant__episode .inner-s {
  padding: 3.4722222222vw 0;
}
@media screen and (max-width: 768px) {
  .implant__episode .inner-s {
    padding: 0 0 8vw 0;
    width: 100%;
  }
}
.implant__episode-ttl-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .implant__episode-ttl-wrap {
    margin-bottom: 24px;
  }
}
.implant__episode-hr {
  display: block;
  width: 100%;
  height: 1px;
  background: #f2c97e;
}
.implant__episode-ttl {
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .implant__episode-ttl {
    font-size: 1.8rem;
  }
}
.implant__episode-content {
  display: flex;
  align-items: center;
  gap: 2.0833333333vw;
}
@media screen and (max-width: 768px) {
  .implant__episode-content {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.implant__episode-txt {
  flex: 1;
  min-width: 0;
}
.implant__episode-txt p {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .implant__episode-txt p {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}
.implant__episode-txt p.implant__episode-quote {
  color: #f2c97e;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .implant__episode-txt p.implant__episode-quote {
    font-size: 1.5rem;
  }
}
.implant__episode-img {
  flex-shrink: 0;
  width: 31.25vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .implant__episode-img {
    width: 100%;
  }
}
.implant__episode-img img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
.implant__second {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.implant__second-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.implant__second-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.implant__second-content {
  max-width: 500px;
  position: relative;
  z-index: 1;
  padding: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  .implant__second-content {
    padding: 25px 10px;
    text-align: center;
    margin: 0 auto;
  }
}
.implant__second-ttl {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-bottom: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .implant__second-ttl {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.implant__second-body {
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 2.2222222222vw;
}
@media screen and (max-width: 768px) {
  .implant__second-body {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
}
.implant__second-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding-top: 2.2222222222vw;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  transition: opacity 0.2s ease;
}
.implant__second-link svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 6px;
  background: #fff;
  border-radius: 50%;
  color: #613C31;
  transition: transform 0.2s ease;
}
.implant__second-link:hover {
  opacity: 0.7;
}
.implant__second-link:hover svg {
  transform: translateX(4px);
}

/*------------------------------------------------
case（症例紹介）
------------------------------------------------*/
.case {
  display: grid;
  position: relative;
  margin-top: 10rem;
  margin-bottom: 3.4722222222vw;
}
@media screen and (max-width: 768px) {
  .case {
    display: flex;
    flex-direction: column;
    margin-top: 0rem;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .case h2 {
    margin-bottom: 0rem;
  }
}
.case__bg-right {
  position: absolute;
  top: 0rem;
  right: 0;
  bottom: 10rem;
  width: 79.8611111111vw;
  background: #fef5e6;
}
@media screen and (max-width: 768px) {
  .case__bg-right {
    display: none;
  }
}
.case__left-imgs {
  grid-area: 1/1;
  align-self: start;
  margin-top: 22.2222222222vw;
  z-index: 0;
}
@media screen and (max-width: 1023px) {
  .case__left-imgs {
    margin-top: 36.1111111111vw;
  }
}
@media screen and (max-width: 768px) {
  .case__left-imgs {
    order: 2;
    width: 90%;
    margin: 0 auto;
    margin-top: 5rem;
  }
}
.case__left-img-main {
  display: block;
  width: 45.1388888889vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .case__left-img-main {
    width: 100%;
  }
}
.case .inner {
  grid-area: 1/1;
  position: relative;
  z-index: 1;
  padding: 6.9444444444vw 0;
}
@media screen and (max-width: 768px) {
  .case .inner {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
    padding-left: 5%;
    padding-right: 5%;
    background: #fef5e6;
    order: 1;
    width: 100%;
  }
}
.case__flex {
  display: flex;
  gap: 5.5555555556vw;
  align-items: flex-start;
  margin-left: 18.75vw;
}
@media screen and (max-width: 768px) {
  .case__flex {
    margin-left: 0;
    flex-direction: column;
    gap: 20px;
  }
}
.case__head {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .case__head {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.case__ttl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case__ttl-en {
  font-size: 1.4rem;
  color: #F8B62D;
  letter-spacing: 0.05em;
  line-height: 1;
}
.case__ttl-line {
  display: block;
  width: 20px;
  height: 1px;
  background: #F8B62D;
}
.case__ttl-ja {
  font-size: 1.6rem;
  font-weight: 500;
  color: #595757;
  letter-spacing: 0.05em;
}
.case__list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-right: 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .case__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 0;
    gap: 20px;
  }
}
@media screen and (max-width: 414px) {
  .case__list {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto;
    padding-right: 0;
  }
}
.case__item {
  min-width: 0;
  border-top: 1px solid rgba(248, 182, 45, 0.4);
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .case__item {
    border-top: 0px solid rgba(248, 182, 45, 0.4);
    padding-top: 0px;
  }
}
@media screen and (max-width: 414px) {
  .case__item {
    border-top: 1px solid rgba(248, 182, 45, 0.4);
    padding-top: 20px;
  }
}
.case__item:first-child {
  border-top: none;
  padding-top: 0px;
}
.case__item-link {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .case__item-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .case__item-link {
    gap: 14px;
    flex-direction: column;
    align-items: start;
  }
}
.case__item-img {
  flex-shrink: 0;
  width: 12.5vw;
  height: 8.3333333333vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .case__item-img {
    width: 100%;
    height: auto;
  }
}
.case__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.case__item-body {
  flex: 1;
  min-width: 0;
}
.case__item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.case__item-date {
  font-size: 1.4rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.4;
  white-space: nowrap;
}
.case__item-cate {
  display: inline-block;
  background: #ffe7bf;
  color: #F39800;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0 8px;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
}
.case__item-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .case__item-title {
    font-size: 1.4rem;
  }
}

/*------------------------------------------------
menu（診療メニュー）
------------------------------------------------*/
.menu .inner {
  max-width: 62.5vw;
  padding-top: 5.5555555556vw;
  padding-bottom: 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .menu .inner {
    padding-top: 10.6666666667vw;
    padding-bottom: 10.6666666667vw;
    max-width: none;
  }
}
.menu__ttl-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .menu__ttl-wrap {
    margin-bottom: 30px;
    gap: 10px;
  }
}
.menu__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F8B62D;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  height: 25px;
  padding: 0 16px;
}
.menu__subtitle {
  font-weight: 700;
  font-size: 1.6rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .menu__subtitle {
    font-size: 1.3rem;
    text-align: center;
  }
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .menu__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .menu__list {
    gap: 15px;
  }
}
.menu__link {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100px;
  background: #fef5e6;
  box-shadow: 0 0 10px rgba(89, 87, 87, 0.15);
  padding: 10px 21px;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .menu__link {
    width: 100%;
    height: auto;
    min-height: 120px;
    gap: 8px;
    padding: 8px 14px;
    flex-direction: column;
    justify-content: center;
  }
}
.menu__link:hover {
  opacity: 0.7;
}
.menu__icon-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .menu__icon-wrap {
    width: 60px;
    height: 60px;
  }
}
.menu__icon {
  display: block;
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .menu__icon {
    width: 38px;
    height: 38px;
  }
}
.menu__name-group {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .menu__name-group {
    justify-content: center;
  }
}
.menu__name {
  font-weight: 700;
  font-size: 1.6rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .menu__name {
    font-size: 1.4rem;
  }
}
.menu__arw {
  display: block;
  flex-shrink: 0;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .menu__arw {
    position: static;
    transform: none;
  }
}

/*------------------------------------------------
insta（インスタグラム）
------------------------------------------------*/
.insta .inner-s {
  padding: 0vw 0;
}
@media screen and (max-width: 768px) {
  .insta .inner-s {
    padding: 0vw 0;
  }
}
.insta__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 0.6944444444vw;
}
@media screen and (max-width: 768px) {
  .insta__grid {
    gap: 4px;
    padding: 0;
    margin-bottom: 20px;
  }
}
.insta__item {
  flex: 0 0 calc(25% - 8px);
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 768px) {
  .insta__item {
    flex: 0 0 calc(50% - 2px);
  }
}
.insta__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .insta__item img {
    transform: scale(1.05);
  }
}
.insta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.insta__btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 35px;
  background: #fff;
  border: 2px solid #F39800;
  border-radius: 5px;
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #595757;
  letter-spacing: 0.05em;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .insta__btn-more {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .insta__btn-more {
    font-size: 1.2rem;
    width: 80px;
    height: 30px;
  }
}
.insta__btn-follow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: 200px;
  height: 35px;
  background: #F39800;
  border-radius: 5px;
  padding: 0 14px;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .insta__btn-follow {
    opacity: 0.85;
  }
}
@media screen and (max-width: 768px) {
  .insta__btn-follow {
    font-size: 1.2rem;
    height: 30px;
  }
}
.insta__btn-follow-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}
.insta__btn-follow span {
  font-weight: 500;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}

/*------------------------------------------------
message（メッセージ）
------------------------------------------------*/
.message {
  position: relative;
  overflow: hidden;
}
.message__deco {
  position: absolute;
  left: 2.5694444444vw;
  top: 5.5555555556vw;
  font-size: 10.4166666667vw;
  color: #F39800;
  opacity: 0.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .message__deco {
    font-size: 16vw;
    left: 0;
  }
}
.message .inner-s {
  position: relative;
  z-index: 1;
  padding-top: 13.8888888889vw;
  padding-bottom: 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .message .inner-s {
    padding-top: 21.3333333333vw;
    padding-bottom: 10.6666666667vw;
  }
}
.message__flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1023px) {
  .message__flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.message__txt {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1023px) {
  .message__txt {
    display: contents;
  }
}
.message__heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 2.0833333333vw;
}
@media screen and (max-width: 1023px) {
  .message__heading {
    margin-bottom: 0;
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .message__heading {
    font-size: 1.6rem;
  }
}
.message__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .message__body {
    gap: 10px;
  }
}
.message__body p:not(.message__quote) {
  font-size: 1.6rem;
  font-weight: 500;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .message__body p:not(.message__quote) {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .message__body {
    order: 3;
  }
}
.message__quote {
  font-size: 1.8rem;
  color: #F39800;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .message__quote {
    font-size: 1.6rem;
  }
}
.message__img-wrap {
  flex-shrink: 0;
  width: 34.7222222222vw;
  position: relative;
  margin-right: max(-10.0694444444vw, -145px);
}
@media screen and (max-width: 1023px) {
  .message__img-wrap {
    width: 100%;
    margin-right: 0;
    order: 2;
  }
}
.message__img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------------------------
news（お知らせ）
------------------------------------------------*/
.news .inner-s {
  padding-top: 0vw;
  padding-bottom: 5.5555555556vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .news .inner-s {
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .news h2 {
    margin-bottom: 0rem;
  }
}
.news .news__more-pc {
  align-self: flex-end;
  margin-top: 2.7777777778vw;
}
@media screen and (max-width: 768px) {
  .news .news__more-pc {
    display: none;
  }
}
.news .news__more-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .news .news__more-sp {
    display: inline-flex;
  }
}
.news__flex {
  display: flex;
  gap: 5.5555555556vw;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .news__flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
  }
}
.news__head {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .news__head {
    gap: 24px;
  }
}
.news__ttl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.news__ttl-en {
  font-size: 1.4rem;
  color: #F8B62D;
  letter-spacing: 0.05em;
  line-height: 1;
}
.news__ttl-line {
  display: block;
  width: 20px;
  height: 1px;
  background: #F8B62D;
}
.news__ttl-ja {
  font-size: 1.6rem;
  font-weight: 500;
  color: #595757;
  letter-spacing: 0.05em;
}
.news__list {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ddd;
  width: 100%;
}
.news__item {
  border-bottom: 1px solid #ddd;
}
.news__item-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .news__item-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .news__item-link {
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
  }
}
.news__item-date {
  font-size: 1.4rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.4;
  white-space: nowrap;
  flex-shrink: 0;
}
.news__item-cate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F39800;
  color: #F39800;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  height: 20px;
  padding: 0 5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.news__item-title {
  font-weight: 500;
  font-size: 1.6rem;
  color: #595757;
  letter-spacing: 0.05em;
  line-height: 1.4;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .news__item-title {
    font-size: 1.4rem;
    width: 100%;
  }
}

/*------------------------------------------------
sub_fv
------------------------------------------------*/
.sub_fv {
  width: 100%;
  position: relative;
}
.sub_fv__bg {
  height: 400px;
  background-image: url("../images/under/sub-fv.jpg");
  background-size: cover;
  background-position: center center;
  margin-top: 110px;
}
@media screen and (max-width: 1200px) {
  .sub_fv__bg {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .sub_fv__bg {
    margin-top: 60px;
    height: 250px;
  }
}
.sub_fv__copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-shadow: 0 0 10px rgba(89, 87, 87, 0.4);
  padding: 0 15rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub_fv__copy {
    padding: 0 3rem;
  }
}
.sub_fv__copy .en {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .sub_fv__copy .en {
    font-size: 1.6rem;
  }
}
.sub_fv__copy h1 {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .sub_fv__copy h1 {
    font-size: 2.4rem;
    letter-spacing: 1.3px;
    line-height: 1.2;
  }
}

/*------------------------------------------------
パンくず
------------------------------------------------*/
.bread {
  padding: 10px 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.bread .inner {
  padding-top: 0.6944444444vw;
  padding-bottom: 0vw;
}
.bread .inner ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.4rem;
}
.bread .inner ul li {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
}
.bread .inner ul li a {
  color: #F39800;
  font-size: 1.2rem;
}
.bread .inner ul li:not(:last-child)::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 0.5px;
  background: #595757;
  margin: 0 10px;
}

/*------------------------------------------------
下層ページ共通スタイル
------------------------------------------------*/
.under-content_wrap p + p {
  margin-top: 1em;
}
.under-content_wrap .inner-s {
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .inner-s {
    padding-bottom: 5rem;
  }
}
.under-content_wrap h2 {
  position: relative;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-align: center;
  margin-bottom: 6rem;
}
.under-content_wrap h2::after {
  content: "";
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: #F39800;
}
@media screen and (max-width: 768px) {
  .under-content_wrap h2::after {
    bottom: -1rem;
  }
}
@media screen and (max-width: 768px) {
  .under-content_wrap h2 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.under-content_wrap .pickup__title {
  position: static;
  font-size: 1.8rem;
  letter-spacing: 0.9px;
  margin-bottom: 3rem;
}
.under-content_wrap .pickup__title::before, .under-content_wrap .pickup__title::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .pickup__title {
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
.under-content_wrap h3 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  background: #fef5e6;
  padding: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .under-content_wrap h3 {
    font-size: 1.8rem;
  }
}
.under-content_wrap .flex-box h3,
.under-content_wrap .flex-box--2col h3 {
  background: none;
  padding: 0;
  margin-bottom: 0;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.under-content_wrap .flow__ttl {
  background: none;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .flow__ttl {
    font-size: 1.6rem;
  }
}
.under-content_wrap h4 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding-left: 1rem;
}
.under-content_wrap h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background-color: #F39800;
}
@media screen and (max-width: 768px) {
  .under-content_wrap h4 {
    font-size: 1.6rem;
  }
}
.under-content_wrap .flex-wrap,
.under-content_wrap .flex-wrap--reverse {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 5rem;
}
.under-content_wrap .flex-wrap:last-child,
.under-content_wrap .flex-wrap--reverse:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .flex-wrap,
  .under-content_wrap .flex-wrap--reverse {
    flex-direction: column;
    gap: 2rem;
  }
}
.under-content_wrap .flex-wrap .flex-img,
.under-content_wrap .flex-wrap--reverse .flex-img {
  width: 40%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .flex-wrap .flex-img,
  .under-content_wrap .flex-wrap--reverse .flex-img {
    width: 100%;
  }
}
.under-content_wrap .flex-wrap .flex-img img,
.under-content_wrap .flex-wrap--reverse .flex-img img {
  width: 100%;
  height: auto;
  display: block;
}
.under-content_wrap .flex-wrap .flex-txt,
.under-content_wrap .flex-wrap--reverse .flex-txt {
  flex: 1;
}
.under-content_wrap .flex-wrap .flex-txt .ttl,
.under-content_wrap .flex-wrap--reverse .flex-txt .ttl {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  margin-bottom: 1.5rem;
  color: #F39800;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .flex-wrap .flex-txt .ttl,
  .under-content_wrap .flex-wrap--reverse .flex-txt .ttl {
    font-size: 1.6rem;
  }
}
.under-content_wrap .flex-wrap .flex-txt p,
.under-content_wrap .flex-wrap--reverse .flex-txt p {
  font-size: 1.5rem;
  line-height: 1.8;
}
.under-content_wrap .flex-wrap--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .flex-wrap--reverse {
    flex-direction: column;
  }
}
.under-content_wrap .content_wrap {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .content_wrap {
    margin-bottom: 4rem;
  }
}
.under-content_wrap .content_wrap:last-child {
  margin-bottom: 0;
}
.under-content_wrap .content_wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/*------------------------------------------------
施術の流れ
------------------------------------------------*/
.flow {
  position: relative;
  isolation: isolate;
  padding: 10rem 0;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 5rem 0;
  }
}
.flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #fef5e6;
  z-index: -1;
}
.flow__list {
  list-style: none;
}
.flow__item {
  display: flex;
  gap: 30px;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .flow__item {
    gap: 15px;
  }
}
.flow__item:last-child .flow__step-line {
  display: none;
}
.flow__item:last-child .flow__content {
  padding-bottom: 0;
}
.flow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 70px;
}
@media screen and (max-width: 768px) {
  .flow__step {
    width: 55px;
  }
}
.flow__step-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #F8B62D;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .flow__step-badge {
    width: 55px;
    height: 55px;
  }
}
.flow__step-label {
  font-family: "Bitter", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .flow__step-label {
    font-size: 1rem;
  }
}
.flow__step-num {
  font-family: "Bitter", sans-serif;
  font-weight: 500;
  font-size: 3.4rem;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .flow__step-num {
    font-size: 2.6rem;
  }
}
.flow__step-line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: #F8B62D;
}
.flow__content {
  flex: 1;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .flow__content {
    padding-bottom: 40px;
  }
}
.flow__head {
  margin-bottom: 20px;
}
.flow__sep {
  width: 100%;
  height: 1px;
  background: #F8B62D;
  opacity: 0.4;
}
.flow__body {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .flow__body {
    flex-direction: column;
  }
}
.flow__txt {
  flex: 1;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.8;
  color: #595757;
}
.flow__img {
  width: 350px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .flow__img {
    width: 100%;
  }
}
.flow__img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .flow__img img {
    height: auto;
    aspect-ratio: 16/9;
  }
}

.flex-box {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .flex-box {
    flex-direction: column;
    gap: 1rem;
  }
}
.flex-box .flex-item {
  flex: 0 0 calc((100% - 4rem) / 3);
  padding: 3rem;
  box-shadow: 0 0 10px 0 rgba(89, 87, 87, 0.15);
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .flex-box .flex-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    gap: 1rem;
  }
}
.flex-box .flex-item img {
  width: 100%;
}
.flex-box .flex-item .ttl {
  font-weight: 700;
  color: #F39800;
  text-align: center;
}
.flex-box .flex-item .txt {
  font-size: 1.4rem;
}

.flex-box--2col {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .flex-box--2col {
    gap: 1rem;
  }
}
.flex-box--2col .flex-item {
  flex: 0 0 calc((100% - 2rem) / 2);
  padding: 3rem;
  box-shadow: 0 0 10px 0 rgba(89, 87, 87, 0.15);
  gap: 2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .flex-box--2col .flex-item {
    flex: 1 1 100%;
    padding: 1.5rem;
    gap: 1rem;
  }
}
.flex-box--2col .flex-item img {
  width: 100%;
}
.flex-box--2col .flex-item .ttl {
  font-weight: 700;
  color: #F39800;
  text-align: center;
}
.flex-box--2col .flex-item .txt {
  font-size: 1.4rem;
}

/*------------------------------------------------
リスト
------------------------------------------------*/
.under-list {
  background: #fef5e6;
  padding: 4rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .under-list {
    padding: 2.5rem 2rem;
    gap: 1.5rem;
  }
}
.under-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.75px;
  line-height: 1.8;
  color: #595757;
}
.under-list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 8px;
  background-image: url("../images/under/list-bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/*------------------------------------------------
テキストボックス（背景のみ・汎用）
------------------------------------------------*/
.under-note {
  background: #fef5e6;
  padding: 4rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .under-note {
    padding: 2rem;
  }
}

/*------------------------------------------------
ピックアップ
------------------------------------------------*/
.pickup {
  background-image: url("../images/under/bg_pickup_img.jpg");
  padding: 4.5rem 8rem;
}
@media screen and (max-width: 768px) {
  .pickup {
    padding: 2rem 2rem;
  }
}
.pickup__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 0.9px;
  padding: 2rem 0;
  border-top: 1px solid #f2c97e;
  border-bottom: 1px solid #f2c97e;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .pickup__title {
    font-size: 1.5rem;
  }
}
.pickup__body {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .pickup__body {
    flex-direction: column;
    gap: 2rem;
  }
}
.pickup__img {
  width: 315px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .pickup__img {
    width: 100%;
  }
}
.pickup__img img {
  width: 100%;
  height: auto;
  display: block;
}
.pickup__txt {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.75px;
  line-height: 1.8;
}

/*------------------------------------------------
メリット・デメリット
------------------------------------------------*/
.merit-demerit {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .merit-demerit {
    flex-direction: column;
  }
}
.merit-demerit__item {
  flex: 1;
  padding: 2.7rem 3.3rem;
}
@media screen and (max-width: 768px) {
  .merit-demerit__item {
    padding: 2rem;
  }
}
.merit-demerit__item--merit {
  background: #fdeee7;
}
.merit-demerit__item--demerit {
  background: rgba(113, 82, 63, 0.1);
}
.merit-demerit__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.merit-demerit__item--merit .merit-demerit__head {
  color: #f36700;
  border-bottom: 1px solid #f36700;
}
.merit-demerit__item--demerit .merit-demerit__head {
  color: #71523f;
  border-bottom: 1px solid #71523f;
}
.merit-demerit__item--merit .merit-demerit__icon {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #f36700;
}
.merit-demerit__item--demerit .merit-demerit__icon {
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: #71523f;
}
.merit-demerit__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.merit-demerit__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.7px;
  line-height: 1.8;
  color: #595757;
}
.merit-demerit__list li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 9px;
}
.merit-demerit__item--merit .merit-demerit__list li::before {
  background-color: #f36700;
}
.merit-demerit__item--demerit .merit-demerit__list li::before {
  background-color: #71523f;
}

/*------------------------------------------------
下層ごとに変更が必要なスタイルはここにまとめる
------------------------------------------------*/
/*------------------------------------------------
治療費用ページ 見出し
------------------------------------------------*/
.under-content_wrap .price-heading {
  font-size: 1.8rem;
  text-align: left;
  letter-spacing: normal;
  margin-bottom: 3rem;
  padding-bottom: 1.2rem;
  padding-left: 2rem;
}
.under-content_wrap .price-heading::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .price-heading {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    padding-left: 1rem;
  }
}

.under-content_wrap .price-note {
  font-size: 1.3rem;
  margin-top: 1.2rem;
  color: #666;
  line-height: 1.7;
  max-width: 1000px;
  margin: 1rem auto 0;
}
@media screen and (max-width: 768px) {
  .under-content_wrap .price-note {
    font-size: 1.2rem;
    width: 100%;
  }
}

/*------------------------------------------------
医院情報
------------------------------------------------*/
.access-map h3:nth-of-type(2) {
  margin-top: 2rem;
}
.access-map iframe {
  width: 100%;
  height: 350px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .access-map iframe {
    height: 250px;
  }
}

.clinic-gallery__main {
  position: relative;
  margin-bottom: 1rem;
}
.clinic-gallery__main .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.clinic-gallery__main .swiper-button-prev,
.clinic-gallery__main .swiper-button-next {
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.clinic-gallery__main .swiper-button-prev::after,
.clinic-gallery__main .swiper-button-next::after {
  font-size: 1.6rem;
}
.clinic-gallery__thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.clinic-gallery__thumbs .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.clinic-gallery__thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

/*------------------------------------------------
院長画像
------------------------------------------------*/
.doctor-img-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.doctor-img-wrap figcaption {
  position: absolute;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 2rem 4rem;
}
@media screen and (max-width: 768px) {
  .doctor-img-wrap figcaption {
    padding: 1rem 1.5rem;
  }
}
.doctor-img-wrap figcaption .clinic-name {
  font-weight: bold;
  color: #F39800;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .doctor-img-wrap figcaption .clinic-name {
    font-size: 1.2rem;
  }
}
.doctor-img-wrap figcaption .name {
  font-weight: bold;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .doctor-img-wrap figcaption .name {
    font-size: 1.4rem;
  }
}
.doctor-img-wrap figcaption .name span {
  font-size: 1.8rem;
  margin-right: 1rem;
}
@media screen and (max-width: 768px) {
  .doctor-img-wrap figcaption .name span {
    font-size: 1.2rem;
  }
}

/*------------------------------------------------
経歴 横並び
------------------------------------------------*/
/*------------------------------------------------
FAQ
------------------------------------------------*/
.faq {
  margin-top: 4rem;
}
.faq__item {
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.faq__q {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.faq__q-mark {
  color: #F39800;
}
.faq__a {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #595757;
  margin: 0;
  padding-left: 1em;
}

/*************************************************
投稿一覧ページ
*************************************************/
.post-content_wrap .inner-s {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .post-content_wrap .inner-s {
    flex-direction: column;
    gap: 4rem;
    padding-top: 4.1666666667vw;
  }
}
.post-content_wrap .main-content {
  flex: 1;
  min-width: 0;
}
.post-content_wrap .main-content .archive h2 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .post-content_wrap .main-content .archive h2 {
    font-size: 2rem;
  }
}
.post-content_wrap .main-content .archive-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .post-content_wrap .main-content .archive-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.post-content_wrap .main-content .archive-wrap .article-item {
  border-bottom: 1px solid #e8ddd8;
  padding-bottom: 3rem;
}
@media screen and (max-width: 1023px) {
  .post-content_wrap .main-content .archive-wrap .article-item {
    border-bottom: 0px solid #e8ddd8;
    padding-bottom: 0rem;
  }
}
.post-content_wrap .main-content .archive-wrap .article-item a {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  transition: opacity 0.3s;
}
.post-content_wrap .main-content .archive-wrap .article-item a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1023px) {
  .post-content_wrap .main-content .archive-wrap .article-item a {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
.post-content_wrap .main-content .archive-wrap .article-item a .img-box {
  width: 30rem;
  height: 20rem;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .post-content_wrap .main-content .archive-wrap .article-item a .img-box {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
}
.post-content_wrap .main-content .archive-wrap .article-item a .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-content_wrap .main-content .archive-wrap .article-item a .txt-box {
  flex: 1;
  min-width: 0;
}
.post-content_wrap .main-content .archive-wrap .article-item a .txt-box .tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.post-content_wrap .main-content .archive-wrap .article-item a .txt-box .tag .date {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .post-content_wrap .main-content .archive-wrap .article-item a .txt-box .tag .date {
    font-size: 1.3rem;
  }
}
.post-content_wrap .main-content .archive-wrap .article-item a .txt-box .tag .cate {
  font-size: 1.5rem;
  color: #F39800;
  border: 1px solid #F39800;
  padding: 0rem 0.5rem;
  border-radius: 2px;
}
@media screen and (max-width: 768px) {
  .post-content_wrap .main-content .archive-wrap .article-item a .txt-box .tag .cate {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .post-content_wrap .main-content .archive-wrap .article-item a .txt-box .tag {
    gap: 0.6rem;
    margin-bottom: 0.6rem;
  }
}
.post-content_wrap .main-content .archive-wrap .article-item a .txt-box .ttl {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 1023px) {
  .post-content_wrap .main-content .archive-wrap .article-item a .txt-box .ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .post-content_wrap .main-content .archive-wrap .article-item a .txt-box .ttl {
    font-size: 1.3rem;
  }
}
.post-content_wrap .main-content .pagination {
  margin: 7rem auto 0;
}
@media screen and (max-width: 768px) {
  .post-content_wrap .main-content .pagination {
    margin: 4rem auto 0;
  }
}
.post-content_wrap .main-content .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.post-content_wrap .main-content .pagination .nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fef5e6;
  color: #F39800;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .post-content_wrap .main-content .pagination .nav-links .page-numbers {
    width: 3.5rem;
  }
}
.post-content_wrap .main-content .pagination .nav-links a.page-numbers:not(.next):not(.prev) {
  transition: background-color 0.3s, color 0.3s;
}
.post-content_wrap .main-content .pagination .nav-links a.page-numbers:not(.next):not(.prev):hover {
  background-color: #F39800;
  color: #fff;
}
.post-content_wrap .main-content .pagination .nav-links .current {
  background-color: #F39800;
  color: #fff;
}
.post-content_wrap .main-content .pagination .nav-links .next,
.post-content_wrap .main-content .pagination .nav-links .prev {
  width: 4.5rem;
  aspect-ratio: unset;
  background-color: transparent;
  border-radius: 0;
  transition: opacity 0.3s;
}
.post-content_wrap .main-content .pagination .nav-links .next:hover,
.post-content_wrap .main-content .pagination .nav-links .prev:hover {
  background-color: none;
  color: inherit;
  opacity: 0.6;
}
.post-content_wrap .main-content .pagination .nav-links .back-link {
  width: auto;
  aspect-ratio: unset;
  border-radius: 50px;
  padding: 0.6rem 2rem;
}
.post-content_wrap aside {
  align-self: stretch;
  width: 100%;
  max-width: 26.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .post-content_wrap aside {
    max-width: 100%;
  }
}
.post-content_wrap aside .side-wrap {
  position: sticky;
  top: 0;
  padding-top: 14rem;
  margin-top: -14rem;
}
@media screen and (max-width: 768px) {
  .post-content_wrap aside .side-wrap {
    padding-top: 0;
    margin-top: 0;
  }
}
.post-content_wrap .category,
.post-content_wrap .popular,
.post-content_wrap .month {
  margin-bottom: 4rem;
}
.post-content_wrap .category .ttl,
.post-content_wrap .popular .ttl,
.post-content_wrap .month .ttl {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.post-content_wrap .category .ttl::before,
.post-content_wrap .popular .ttl::before,
.post-content_wrap .month .ttl::before {
  position: absolute;
  top: 120%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #F39800 0, #F39800 50px, #ddd 50px, #ddd 100%);
}
.post-content_wrap .category ul li {
  border-bottom: 1px solid #e0ddd9;
}
.post-content_wrap .category ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  font-size: 1.5rem;
  transition: opacity 0.3s;
}
.post-content_wrap .category ul li a:hover {
  opacity: 0.7;
}
.post-content_wrap .category ul li a::after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #F39800;
  border-right: 2px solid #F39800;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.post-content_wrap .month .side-month_wrap {
  position: relative;
  margin-top: 2.5rem;
}
.post-content_wrap .month .side-month_wrap::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid #F39800;
  border-right: 2px solid #F39800;
  transform: translateY(-70%) rotate(135deg);
  pointer-events: none;
}
.post-content_wrap .month select {
  width: 100%;
  padding: 1.2rem 3.5rem 1.2rem 1.5rem;
  border: 1px solid #e0ddd9;
  border-radius: 3px;
  font-size: 1.4rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  cursor: pointer;
}
.post-content_wrap .popular .popular-item {
  border-bottom: 1px solid #e0ddd9;
}
.post-content_wrap .popular .popular-item a {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
  transition: opacity 0.3s;
}
.post-content_wrap .popular .popular-item a:hover {
  opacity: 0.7;
}
.post-content_wrap .popular .popular-item a .img-box {
  width: 10rem;
  aspect-ratio: 1/0.75;
  overflow: hidden;
  background-color: #d5e2e8;
  flex-shrink: 0;
}
.post-content_wrap .popular .popular-item a .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-content_wrap .popular .popular-item a p {
  font-size: 1.4rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}
.post-content_wrap .popular.u-sp {
  margin-top: 10rem;
}

/*************************************************
投稿詳細ページ
*************************************************/
/*------------------------------------------------
目次（Table of Contents Plus）
------------------------------------------------*/
#toc_container {
  border: 1px solid #F39800;
  padding: 42px 68px;
  margin-bottom: 6rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  #toc_container {
    padding: 3rem 2.5rem;
    margin-bottom: 4rem;
  }
}
#toc_container p.toc_title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #F39800;
  letter-spacing: 0.8px;
  margin-bottom: 2.4rem;
  text-align: left;
}
#toc_container ul.toc_list {
  list-style: none !important;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
#toc_container ul.toc_list > li > a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #595757;
  letter-spacing: 0.75px;
  text-decoration: none;
}
#toc_container ul.toc_list > li > a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  min-width: 12px;
  margin-top: 6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M11.4301 5.86702L12 6L11.4301 6.13298C8.80211 6.7504 6.7504 8.80211 6.13299 11.4301L5.99999 12L5.86701 11.4301C5.2496 8.80211 3.19789 6.7504 0.569918 6.13298L0 6L0.569918 5.86702C3.19789 5.2496 5.2496 3.19789 5.86701 0.569921L5.99999 0L6.13299 0.569921C6.7504 3.19789 8.80211 5.2496 11.4301 5.86702Z' fill='%23F8B62D'/%3E%3C/svg%3E") no-repeat center/contain;
}
#toc_container ul.toc_list > li > ul {
  list-style: none !important;
  padding: 0;
  margin: 1rem 0 0 23px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#toc_container ul.toc_list > li > ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 500;
  color: #595757;
  letter-spacing: 0.75px;
  text-decoration: none;
}
#toc_container ul.toc_list > li > ul li a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 10px;
  min-width: 10px;
  height: 1px;
  background: #F39800;
}

.single .main-content h2 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  background: #fef5e6;
  padding: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .single .main-content h2 {
    font-size: 2.2rem;
  }
}
.single .main-content h3 {
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.single .main-content h3 span {
  color: inherit;
}
.single .main-content h3::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background-color: #F39800;
}
@media screen and (max-width: 768px) {
  .single .main-content h3 {
    font-size: 2rem;
  }
}
.single .main-content h4 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .single .main-content h4 {
    font-size: 1.6rem;
  }
}
.single .main-content p, .single .main-content table {
  margin-bottom: 4rem;
}
.single .main-content .img-wrap img {
  width: 100%;
}
.single .main-content .img-wrap .caption {
  text-align: center;
  font-size: 1.5rem;
}
.single .main-content .img-wrap--2col {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .single .main-content .img-wrap--2col {
    flex-direction: column;
  }
}
.single .main-content .img-wrap_flex {
  flex: 1;
}
.single .main-content .img-wrap_flex img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}