@charset "UTF-8";
:root {
  --base-color: #ffffff;
  --font-color: #333333;
  --color-beige: #b4a48c;
  --color-light-beige: #bcb19f;
  --color-brown: #782b0d;
  --color-cream: #f2efea;
  --color-olive: #9c8c70;
  --lh-12: 1.2;
  --lh-14: 1.4;
  --lh-16: 1.6;
  --lh-18: 1.8;
}

/* ------------------------------------------------------------

Reset

------------------------------------------------------------ */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
main {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  background: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  /*
      font:inherit;
      font-family:inherit;
      */
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

input,
textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

textarea {
  display: block;
}

:root {
  --scrollbar: 17px;
}

html {
  font-size: calc((100vw - var(--scrollbar)) / 1920 * 10 / 1620 * 1440);
  /*-ブレイクポイント1920px-*/
  /*-ブレイクポイント1620px-*/
  /*-ブレイクポイント1440px-*/
  /*-ブレイクポイント1200px-*/
  /*-ブレイクポイント767px-*/
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 1620px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1620 * 10);
  }
}
@media screen and (max-width: 1440px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 9);
  }
}
@media screen and (max-width: 1200px) {
  html {
    font-size: calc((100vw - var(--scrollbar)) / 1440 * 9.5);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary,
textarea {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

picture {
  display: block;
}

dialog {
  padding: 0;
  border: none;
}

/*a,
a:link,
a:visited,
a:hover,
a:active{
	outline:none;
	text-decoration:none;
}*/
/*a:focus-visible{outline: 2px dotted #333;}*/
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.focus-visible {
  outline: 2px dotted #333;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  object-fit: cover;
}

button {
  color: var(--font-color);
  background: none;
  appearance: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 100%;
}

a {
  color: var(--font-color);
}

/*button:focus-visible{outline: thin dotted #333;}*/
* {
  font-family: "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Meiryo", "MS PGothic", sans-serif;
}

html {
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background: var(--base-color);
  color: var(--font-color);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-feature-settings: "palt";
}

.svg_symbol {
  display: none;
}

.br-pc {
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}

.italiana {
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* ------------------------------------------------------------

Shortcodes

------------------------------------------------------------ */
.normal {
  font-weight: 400 !important;
}

.bold {
  font-weight: 700 !important;
}

.italic {
  font-style: italic !important;
}

.none {
  display: none !important;
}

.mb-none {
  margin-bottom: 0 !important;
}

sub {
  vertical-align: sub !important;
  font-size: 50%;
}

sup {
  vertical-align: super !important;
  font-size: 50%;
}

.txt-mail::after {
  content: "@";
}

.red01 {
  color: #ff0000;
}

.indent-1 {
  text-indent: -1em;
  padding-left: 1em;
}

/* ------------------------------------------------------------

404ページ

------------------------------------------------------------ */
.page-404 .content {
  padding: 8rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-404 .content {
    padding: 8rem 2rem;
  }
}
.page-404 .content > p {
  margin-bottom: 4.8rem;
  font-weight: 700;
  text-align: center;
}
.page-404 .content .c-button {
  margin-inline: auto;
}

/* ------------------------------------------------------------

section関連の記述

------------------------------------------------------------ */
main {
  overflow-x: clip;
}
main:not(.page-top):not(.page-404):not(.page-archive):not(.page-single) {
  background: url(../images/bg_main-content.webp) repeat-y center/contain;
  position: relative;
}
main .mainContent {
  width: min(100rem, 100%);
  margin-inline: auto;
}
main .mainContent section:not(.c-pickup),
main .mainContent .divSection:not(.c-pickup) {
  padding-top: 12rem;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  main .mainContent section:not(.c-pickup),
  main .mainContent .divSection:not(.c-pickup) {
    padding: 8rem 2rem 0;
  }
}
main .mainContent section:not(.c-pickup) > .h2-title,
main .mainContent .divSection:not(.c-pickup) > .h2-title {
  margin-bottom: 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  main .mainContent section:not(.c-pickup) > .h2-title,
  main .mainContent .divSection:not(.c-pickup) > .h2-title {
    margin-bottom: 4rem;
  }
}
main .mainContent section:not(.c-pickup).sectionBtm,
main .mainContent .divSection:not(.c-pickup).sectionBtm {
  padding-bottom: 6.4rem;
}

.SVG-Sprites {
  display: flex;
  flex-wrap: wrap;
}
.SVG-Sprites svg {
  width: 25%;
}

/* ------------------------------------------------------------

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  width: min(100rem, 100%);
  padding: 0 2rem;
  margin-inline: auto;
}
.breadcrumb__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .breadcrumb__list {
    justify-content: unset;
    gap: 0 0.5rem;
  }
}
.breadcrumb__item {
  display: flex;
  align-items: center;
}
.breadcrumb__item:not(:last-child)::after {
  content: "|";
  margin-left: 0.5rem;
  color: var(--font-color);
}
.breadcrumb__link {
  color: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .breadcrumb__link:hover {
    color: var(--color-brown);
  }
}

/* ------------------------------------------------------------

TOPのアコーディオン

------------------------------------------------------------ */
.c-accordion {
  width: 100%;
  padding: 1rem 0;
  border: 1px solid #bcb19f;
  border-radius: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-accordion.is-open {
    border-radius: 1rem;
  }
}
.c-accordion.is-open .c-accordion__content {
  display: block;
}
.c-accordion.is-open .c-accordion__btn {
  padding-bottom: 2rem;
}
.c-accordion.is-open .c-accordion__btn span::after {
  display: none;
}
.c-accordion__content {
  display: none;
  padding: 3rem 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-accordion__content {
    padding: 1rem 2rem 2rem;
  }
}
.c-accordion__row {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid #bcb19f;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-accordion__row {
    align-items: unset;
    flex-direction: column;
    gap: 1rem;
  }
}
.c-accordion__row:nth-of-type(1) {
  padding-top: 0;
}
.c-accordion__row dt {
  flex: none;
  min-width: 10rem;
  padding: 0 1rem;
  border-radius: 5px;
  border: 1px solid #bcb19f;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-accordion__row dt {
    width: fit-content;
  }
}
.c-accordion__btn {
  text-align: center;
  position: relative;
  cursor: pointer;
}
@media (hover: hover) {
  .c-accordion__btn:hover span {
    transform: scale(1.2);
  }
}
.c-accordion__btn span {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 0.5rem;
  right: 6rem;
  transition: transform 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-accordion__btn span {
    right: 4rem;
  }
}
.c-accordion__btn span::before, .c-accordion__btn span::after {
  content: "";
  display: block;
  background: var(--font-color);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-accordion__btn span::before {
  width: 1.6rem;
  height: 1px;
}
.c-accordion__btn span::after {
  width: 1px;
  height: 1.6rem;
}
.c-accordion.white {
  border: 1px solid var(--base-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3rem);
  color: var(--base-color);
}
.c-accordion.white .c-accordion__row {
  border-bottom: 1px solid #f2efea;
}
.c-accordion.white .c-accordion__row dt {
  border: 1px solid #f2efea;
}
.c-accordion.white .c-accordion__btn span::before,
.c-accordion.white .c-accordion__btn span::after {
  background: var(--base-color);
}

/* ------------------------------------------------------------

治療前・治療後

------------------------------------------------------------ */
.c-beforeAfter {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-beforeAfter {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.c-beforeAfter__item {
  flex: 1;
}
.c-beforeAfter__item h4,
.c-beforeAfter__item p {
  padding: 0.5rem 1rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.c-beforeAfter__item h4.c-beforeAfter__before,
.c-beforeAfter__item p.c-beforeAfter__before {
  background: var(--color-beige);
  color: #ffffff;
}
.c-beforeAfter__item h4.c-beforeAfter__after,
.c-beforeAfter__item p.c-beforeAfter__after {
  background: var(--color-cream);
  color: var(--font-color);
}
.c-beforeAfter__image img {
  width: 100%;
  height: auto;
}
.c-beforeAfter__arrow {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-beforeAfter__arrow svg {
  width: 4.2rem;
  height: 1.7rem;
  fill: var(--color-beige);
  transform: rotate(-90deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-beforeAfter__arrow svg {
    transform: rotate(0deg);
  }
}

/* ------------------------------------------------------------

ボタン

------------------------------------------------------------ */
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(40rem, 100%);
  min-height: 6rem;
  padding: 1rem 4rem;
  background: #f2efea;
  border-radius: 3rem;
  font-size: 1.6rem;
  color: var(--font-color);
  line-height: var(--lh-16);
  transition: opacity 0.3s;
  position: relative;
}
@media (hover: hover) {
  .c-button:hover::after {
    transform: scale(1.5);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-button {
    min-height: 5rem;
    border-radius: 10rem;
  }
}
.c-button::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: #782b0d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 2rem;
  transition: transform 0.3s;
}
.c-button.white {
  background: #fff;
}

.mapBtn {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  width: fit-content;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #9c9a9a;
  color: var(--font-color);
  line-height: 1;
}
.mapBtn svg {
  width: 2rem;
  height: 2rem;
  fill: #c8c8c8;
}

.c-pagelink {
  display: flex;
  gap: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.c-pagelink__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  flex: 1;
  height: 16.6rem;
  padding: 0 3.2rem;
  background: url(../images/bg_pagelink_01.webp) no-repeat 94% center/auto 90%;
  background-color: #9c8c70;
  border-radius: 1rem;
  color: #fff;
  position: relative;
  transition: filter 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink__item {
    height: 14rem;
    padding: 0 1.6rem;
    border-radius: 0.8rem;
    flex: auto;
  }
}
@media (hover: hover) {
  .c-pagelink__item:hover {
    filter: brightness(1.1);
  }
  .c-pagelink__item:hover::after {
    transform: scale(1.5);
  }
}
.c-pagelink__item::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  transition: transform 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink__item::after {
    width: 1rem;
    height: 1rem;
    bottom: 1.6rem;
    right: 1.6rem;
  }
}
.c-pagelink__item.reservation {
  background-color: #782b0d;
}
.c-pagelink__sub {
  display: block;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink__sub {
    font-size: 1.4rem;
  }
}
.c-pagelink__main {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink__main {
    font-size: 2rem;
  }
}
.c-pagelink__main svg {
  flex: none;
  width: 3rem;
  height: 3rem;
  fill: #fff;
}
.reservation .c-pagelink__main {
  font-size: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .reservation .c-pagelink__main {
    font-size: 2.2rem;
  }
}

/* ------------------------------------------------------------

完全予約制

------------------------------------------------------------ */
.c-btnUnit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.c-btnUnit a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 32rem;
  font-weight: 700;
  transition: filter 0.3s;
}
.c-btnUnit a.tel {
  font-size: 3.2rem;
  letter-spacing: 0;
}
.c-btnUnit a.tel svg {
  fill: pink;
  width: 1.6rem;
  height: 2.2rem;
}
.c-btnUnit a.reservation {
  height: 5.5rem;
  background: pink;
  color: var(--base-color);
  font-size: 1.8rem;
  transition: filter 0.3s;
}
@media (hover: hover) {
  .c-btnUnit a.reservation:hover {
    filter: brightness(1.2);
  }
}
.c-btnUnit a.reservation svg {
  width: 1.9rem;
  height: 1.5rem;
  fill: var(--base-color);
}

.c-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.c-card__item {
  background: #f2efea;
  border-radius: 1rem;
  padding: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-card__item {
    padding: 2.4rem;
  }
}
.c-card__title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-brown);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-card__title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
  }
}
.c-card__image {
  margin-bottom: 1.6rem;
}
.c-card__image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.c-card__text {
  text-align: justify;
}
.c-card__list {
  display: flex;
  flex-direction: column;
  padding-inline: 0.8rem;
}
.c-card__list li {
  padding-left: 1.6rem;
  position: relative;
}
.c-card__list li::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 2px;
  background: var(--color-brown);
  position: absolute;
  top: 1.4rem;
  left: 0;
}
.c-card.col2 {
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-card.col2 {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}

/* ------------------------------------------------------------

症例紹介
画像スライダー

------------------------------------------------------------ */
.c-caseBox {
  border-radius: 2rem;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-caseBox {
    border-radius: 1rem;
  }
}
.c-caseBox__title {
  display: flex;
}
.c-caseBox__title p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 4rem;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 1.8rem;
}
.c-caseBox__title p:nth-of-type(1) {
  background: #9d9384;
}
.c-caseBox__title p:nth-of-type(2) {
  background: #8a785c;
}
.c-caseBox .imageSlider {
  position: relative;
  z-index: 0;
}
.c-caseBox .imageSlider__before {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-caseBox .imageSlider__before::before {
  content: "";
  width: 5rem;
  height: 100%;
  background: url(../images/icon_slider.webp) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -2.5rem;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-caseBox .imageSlider__before::before {
    width: 3.6rem;
    right: -1.8rem;
  }
}
.c-caseBox .imageSlider__before::after {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: var(--base-color);
  position: absolute;
  top: 50%;
  right: -0.1rem;
  translate: 0 -50%;
  z-index: 2;
  pointer-events: none;
}
.c-caseBox .imageSlider__before img {
  width: 100%;
  height: 100%;
  aspect-ratio: 455/230;
  position: absolute;
  left: 0;
  bottom: 0;
  object-fit: cover;
  object-position: left center;
}
.c-caseBox .imageSlider__after {
  position: relative;
  z-index: -1;
}
.c-caseBox .imageSlider__after img {
  width: 100%;
  height: auto;
  aspect-ratio: 455/230;
}
.c-caseBox .imageSlider input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: col-resize;
}

/* ------------------------------------------------------------

入れ歯・ブリッジとの比較

------------------------------------------------------------ */
.c-compare {
  display: flex;
  flex-direction: column;
  gap: 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-compare {
    gap: 8rem;
  }
}
.c-compare .c-compareTrouble__header,
.c-compare .c-compareResult__header {
  text-align: center;
  padding: 2rem;
  border-radius: 2rem 2rem 0 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-compare .c-compareTrouble__header,
  .c-compare .c-compareResult__header {
    padding: 1rem;
    border-radius: 1rem 1rem 0 0;
  }
}
.c-compare .c-compareTrouble__header h3,
.c-compare .c-compareResult__header h3 {
  color: var(--base-color);
  font-size: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-compare .c-compareTrouble__header h3,
  .c-compare .c-compareResult__header h3 {
    font-size: 1.8rem;
  }
}
.c-compare .c-compareTrouble {
  display: flex;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-compare .c-compareTrouble {
    flex-direction: column;
    gap: 4rem;
  }
}
.c-compare .c-compareTrouble__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-compare .c-compareTrouble__item::after {
  content: "";
  display: block;
  width: 15.2rem;
  height: 3rem;
  background: #9c8c70;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -3rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-compare .c-compareTrouble__item:nth-of-type(1)::after {
    display: none;
  }
}
.c-compare .c-compareTrouble__header {
  background: #9c8c70;
}
.c-compare .c-compareTrouble__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2rem 3.2rem 4rem;
  background: #f2efea;
  border-radius: 0 0 2rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-compare .c-compareTrouble__body {
    padding: 2rem 2rem 3.2rem;
    border-radius: 0 0 1rem 1rem;
  }
}
.c-compare .c-compareTrouble .c-listBox {
  padding: 0;
  border-radius: 0;
}
.c-compare .c-compareTrouble__image img {
  width: 100%;
  height: auto;
}
.c-compare .c-compareResult__header {
  background: var(--color-brown);
}
.c-compare .c-compareResult__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  padding: 3.2rem 8rem;
  background: #f2efea;
  border-radius: 0 0 2rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-compare .c-compareResult__body {
    flex-direction: column;
    padding: 2rem 2rem 10rem;
    gap: 2rem;
    border-radius: 0 0 1rem 1rem;
    position: relative;
    z-index: 0;
  }
}
.c-compare .c-compareResult__body .c-listBox {
  padding: 0;
  background: none;
  border-radius: 0;
}
.c-compare .c-compareResult__image {
  flex: none;
  width: 18.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-compare .c-compareResult__image {
    width: 14rem;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}
.c-compare .c-compareResult__image img {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------------

患者様ご紹介フォーム

------------------------------------------------------------ */
.c-contact {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  color: var(--font-color);
}
.c-contact__section {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.c-contact__title {
  padding: 1.2rem 1.6rem;
  background: var(--color-beige);
  color: var(--base-color);
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-contact__group {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-contact__item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-contact__short .wpcf7-form-control-wrap {
  width: min(40rem, 100%);
}
.c-contact__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  color: var(--font-color);
}
.c-contact__label .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  background: var(--color-brown);
  color: var(--base-color);
  font-size: 1.2rem;
}
.c-contact input[type=text],
.c-contact input[type=email],
.c-contact input[type=tel],
.c-contact input[type=date],
.c-contact input[type=number],
.c-contact textarea {
  width: 100%;
  padding: 1.2rem 1.4rem;
  border: 1px solid #ccc;
  background: var(--base-color);
  font-size: 1.6rem;
}
.c-contact input[type=text]::placeholder,
.c-contact input[type=email]::placeholder,
.c-contact input[type=tel]::placeholder,
.c-contact input[type=date]::placeholder,
.c-contact input[type=number]::placeholder,
.c-contact textarea::placeholder {
  color: #999;
}
.c-contact input[type=text]:focus,
.c-contact input[type=email]:focus,
.c-contact input[type=tel]:focus,
.c-contact input[type=date]:focus,
.c-contact input[type=number]:focus,
.c-contact textarea:focus {
  outline: none;
  border-color: var(--color-brown);
}
.c-contact textarea {
  min-height: 15rem;
  field-sizing: content;
}
.c-contact .wpcf7-radio,
.c-contact .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.c-contact .wpcf7-radio .wpcf7-list-item,
.c-contact .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.c-contact .wpcf7-radio .wpcf7-list-item label,
.c-contact .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.c-contact .wpcf7-radio .wpcf7-list-item input[type=radio],
.c-contact .wpcf7-radio .wpcf7-list-item input[type=checkbox],
.c-contact .wpcf7-checkbox .wpcf7-list-item input[type=radio],
.c-contact .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  accent-color: var(--color-brown);
  cursor: pointer;
}
.c-contact .wpcf7-checkbox.vertical {
  flex-direction: column;
  gap: 1.2rem;
}
.c-contact__tooth {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-contact__tooth-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-contact__tooth-label {
  font-size: 1.3rem;
  color: var(--color-beige);
  font-weight: bold;
}
.c-contact__tooth-grid {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}
.c-contact__tooth-grid--left {
  flex-direction: row-reverse;
}
.c-contact__tooth-wrapper {
  display: flex;
  gap: 0.2rem;
}
.c-contact__tooth-divider {
  width: 2px;
  background: var(--color-cream);
  margin: 0 0.8rem;
}
.c-contact__tooth-item .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.c-contact__tooth-item .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 3.2rem;
  padding: 0.6rem 0.4rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
}
.c-contact__tooth-item .wpcf7-checkbox .wpcf7-list-item label:hover {
  background: #f5f5f5;
}
.c-contact__tooth-item .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  width: 1.4rem;
  height: 1.4rem;
}
.c-contact__tooth-item .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: none;
}
.c-contact__tooth-item span.num {
  font-size: 1.2rem;
  color: var(--font-color);
  font-weight: bold;
}
.c-contact__tooth-item input[type=checkbox]:checked + .wpcf7-list-item-label {
  background: var(--color-cream);
}
.c-contact__tooth-note {
  font-size: 1.3rem;
  color: var(--color-beige);
  text-align: center;
  margin-top: 0.8rem;
}
.c-contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}
.c-contact__submit input[type=submit] {
  width: 24rem;
  padding: 1.6rem 3rem;
  background: var(--color-brown);
  color: var(--base-color);
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-contact__submit input[type=submit]:hover {
    opacity: 0.8;
  }
}
.c-contact__submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 0;
  right: 2rem;
}
.c-contact__note {
  padding: 1.6rem;
  background: var(--color-cream);
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--font-color);
}
.c-contact .wpcf7-not-valid-tip {
  color: #c94a4a;
  font-size: 1.3rem;
  margin-top: 0.4rem;
}
.c-contact .wpcf7-response-output {
  margin: 2rem 0 0;
  padding: 1.2rem;
  border-radius: 4px;
  text-align: center;
}
.c-contact .wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.c-contact .wpcf7-validation-errors {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.c-contact__value {
  padding: 1.2rem 1.4rem;
  background: #f9f7f4;
  font-size: 1.5rem;
  line-height: 1.8;
}
.c-contact__value p:not(:last-child) {
  margin-bottom: 0.4rem;
}
.c-contact__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  margin-top: 2rem;
}
.c-contact__buttons input[type=submit],
.c-contact__buttons input[type=button] {
  width: 24rem;
  padding: 1.6rem 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-contact__buttons input[type=submit]:hover,
  .c-contact__buttons input[type=button]:hover {
    opacity: 0.8;
  }
}
.c-contact__buttons input[type=submit] {
  background: var(--color-brown);
  color: var(--base-color);
}
.c-contact__buttons input[type=button] {
  background: #ccc;
  color: var(--font-color);
}
.c-contact--confirm .c-contact__label .required {
  display: none;
}

.tooth-chart {
  width: fit-content;
  background: var(--base-color);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .tooth-chart {
    width: unset;
  }
}
.tooth-chart__inner {
  display: flex;
  flex-direction: column;
  min-width: max-content;
  border: 1px solid #ccc;
}
.tooth-chart__row {
  display: flex;
}
.tooth-chart__row:first-child {
  border-bottom: 1px solid #ccc;
}
.tooth-chart__half {
  display: flex;
}
.tooth-chart__half--left {
  border-right: 1px solid #ccc;
}
.tooth-chart__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 4rem;
  border-right: 1px solid #e5e5e5;
}
.tooth-chart__cell:last-child {
  border-right: none;
}
.tooth-chart__half--left .tooth-chart__cell {
  border-right: none;
  border-left: 1px solid #e5e5e5;
}
.tooth-chart__half--left .tooth-chart__cell:first-child {
  border-left: none;
}
.tooth-chart__cell .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.tooth-chart__cell .wpcf7-checkbox .wpcf7-list-item {
  margin: 0;
}
.tooth-chart__cell .wpcf7-checkbox .wpcf7-list-item label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0;
  cursor: pointer;
}
.tooth-chart__cell .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--font-color);
  order: -1;
}
.tooth-chart__cell .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  width: 1.6rem;
  height: 1.6rem;
  accent-color: var(--color-brown);
  cursor: pointer;
}

.c-doctor {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctor {
    margin-left: 0;
    width: 100%;
  }
}
.c-doctor__inner {
  display: flex;
  gap: 8rem;
  width: min(133.8rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctor__inner {
    flex-direction: column;
    gap: 4rem;
  }
}
.c-doctor__image {
  flex: none;
  width: 51%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctor__image {
    width: 100%;
  }
}
.c-doctor__image img {
  width: 100%;
  height: auto;
}
.c-doctor__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}

.c-doctorName__clinic {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctorName__clinic {
    font-size: 2rem;
  }
}
.c-doctorName__name {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 3.4rem;
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-weight: 600;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctorName__name {
    font-size: 2.4rem;
  }
}
.c-doctorName__name span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.2rem;
  margin-right: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctorName__name span {
    font-size: 1.6rem;
  }
}

.c-doctorList__title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.15em;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #bcb19f;
  margin-bottom: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctorList__title {
    font-size: 2rem;
  }
}
.c-doctorList__body {
  display: flex;
  flex-direction: column;
}
.c-doctorList__body li {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  line-height: 2;
}
.c-doctorList__body li::before {
  content: "";
  flex: none;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-brown);
  border-radius: 50%;
}
.c-doctorList__body li a {
  color: var(--color-brown);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-doctorList__body li a:hover {
    text-decoration: none;
  }
}

.c-doctorCareer__title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.15em;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #bcb19f;
  margin-bottom: 1.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctorCareer__title {
    font-size: 2rem;
  }
}
.c-doctorCareer__body {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}
.c-doctorCareer__body::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  border-right: 1px dashed #bcb19f;
  position: absolute;
  top: 0;
  left: 13rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctorCareer__body::after {
    left: 12rem;
  }
}
.c-doctorCareer__row {
  display: flex;
  gap: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctorCareer__row {
    gap: 2.4rem;
  }
}
.c-doctorCareer dt {
  width: 11rem;
}
.c-doctorCareer dd {
  flex: 1;
}

.c-flow {
  display: flex;
  flex-direction: column;
  gap: 9rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow {
    gap: 6rem;
  }
}
.c-flow::before {
  content: "";
  display: block;
  width: 2px;
  min-height: calc(100% - 8rem);
  background-image: radial-gradient(circle, #9c8c70 1px, transparent 1px);
  background-size: 2px 6px;
  background-repeat: repeat-y;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: 50% -50%;
  z-index: -1;
}
.c-flow__item {
  background: #f2efea;
  border-radius: 2rem;
  padding: 5.6rem 4rem 4rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__item {
    padding: 5rem 2.4rem 2.4rem;
    border-radius: 1rem;
  }
}
.c-flow__num {
  font-size: 12rem;
  color: #782b0d;
  opacity: 0.5;
  line-height: 1;
  position: absolute;
  top: -6.3rem;
  left: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__num {
    font-size: 8rem;
    top: -4rem;
    left: 2rem;
  }
}
.c-flow__body {
  display: flex;
  align-items: center;
  gap: 4.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__body {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.c-flow__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__content {
    gap: 0.8rem;
  }
}
.c-flow__title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__title {
    font-size: 2rem;
  }
}
.c-flow__image {
  flex: none;
  width: 30rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__image {
    width: 100%;
  }
}
.c-flow__image img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__image img {
    border-radius: 0.6rem;
  }
}

.c-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-info {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}
.c-info__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-info__item {
    margin-bottom: 0;
  }
}
.c-info__item:nth-of-type(even) {
  margin-top: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-info__item:nth-of-type(even) {
    margin-top: 0;
  }
}
.c-info__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 0.7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-info__title {
    font-size: 2rem;
  }
}
.c-info__title::before {
  content: "";
  flex: none;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-brown);
  border-radius: 50%;
}
.c-info__image {
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-info__image {
    margin-bottom: 1.6rem;
  }
}
.c-info__image img {
  width: 100%;
  height: auto;
}
.c-info__text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-info__text p {
  text-align: justify;
}

/* ------------------------------------------------------------

リスト

------------------------------------------------------------ */
.c-listBox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 5rem 7rem;
  background: #f2efea;
  border-radius: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-listBox {
    padding: 2.4rem;
    border-radius: 1rem;
  }
}
.c-listBox li {
  padding-left: 2rem;
  line-height: var(--lh-16);
  position: relative;
}
.c-listBox li::before {
  content: "";
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--color-brown);
  position: absolute;
  top: 1rem;
  left: 0;
}
.c-listBox li a {
  color: var(--color-brown);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-listBox li a:hover {
    text-decoration: none;
  }
}
.c-listBox.check li {
  padding-left: 3.2rem;
}
.c-listBox.check li::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(../images/icon_check_01.svg) no-repeat center/contain;
  position: absolute;
  top: 0.3rem;
  left: 0;
}

.c-merit {
  display: flex;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-merit {
    flex-direction: column;
    gap: 4rem;
  }
}
.c-merit__item {
  flex: 1;
}
.c-merit__label {
  font-size: 10rem;
  line-height: 1;
  color: var(--color-brown);
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-merit__label {
    font-size: 6rem;
  }
}
.c-merit__label.demerit {
  color: #919191;
}
.c-merit .c-listBox {
  gap: 1.6rem;
  padding: 8rem 3.2rem 5.6rem;
  margin-top: -5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-merit .c-listBox {
    padding: 4.8rem 2.4rem 2.4rem;
    margin-top: -3rem;
    border-radius: 1rem;
  }
}

/* ------------------------------------------------------------

目次

------------------------------------------------------------ */
.c-outline {
  padding: 8rem 6.2rem;
  background: #f2efea;
  border-radius: 2rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-outline {
    padding: 4rem 2rem;
    border-radius: 1rem;
  }
}
.c-outline h2 {
  font-size: 8rem;
  color: #c4b8a6;
  position: absolute;
  top: -7rem;
  left: 6.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-outline h2 {
    font-size: 4rem;
    top: -3.5rem;
    left: 2rem;
  }
}
.c-outline ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-outline ul {
    flex-direction: column;
  }
}
.c-outline li {
  width: calc((100% - 3.2rem) / 2);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-outline li {
    width: 100%;
  }
}
.c-outline li a {
  display: block;
  padding-left: 1.5rem;
  color: var(--font-color);
  line-height: var(--lh-14);
  text-decoration: underline;
  position: relative;
  transition: color 0.3s;
}
@media (hover: hover) {
  .c-outline li a:hover {
    color: #a5a5a5;
  }
}
.c-outline li a::before {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #c4b8a6;
  position: absolute;
  top: 0.8rem;
  left: 0;
}

/* ------------------------------------------------------------

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 26rem 0 6rem;
  margin-bottom: 10rem;
  background: url(../images/bg_page-title.webp) no-repeat center/cover;
  border-radius: 0 0 3rem 3rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle {
    width: 100%;
    margin-inline: 0;
    padding: 18rem 2rem 6rem;
    margin-bottom: 4rem;
    border-radius: 0 0 2rem 2rem;
  }
}
.c-pageTitle::before {
  content: "TANIO DENTAL CLINIC";
  display: block;
  font-size: 5.2083333333vw;
  font-family: "Italiana", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #bcb19f;
  opacity: 0.1;
  mix-blend-mode: multiply;
  position: absolute;
  bottom: -4rem;
  left: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle::before {
    font-size: 3rem;
    bottom: -1rem;
    left: 2rem;
  }
}
.c-pageTitle p {
  font-size: 4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle p {
    font-size: 3rem;
  }
}

/* ------------------------------------------------------------

WEB予約,電話番号

------------------------------------------------------------ */
.c-links {
  display: flex;
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-links {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
}
.c-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-weight: 700;
  white-space: nowrap;
}
.c-links a svg {
  width: 2.4rem;
  height: 2.4rem;
}
.c-links__reservation {
  width: 24rem;
  height: 5.6rem;
  border-radius: 2.8rem;
  background: #782b0d;
  font-size: 1.8rem;
  color: #ffffff;
}
@media (hover: hover) {
  .c-links__reservation:hover svg {
    transform: scale(1.2);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-links__reservation {
    width: 100%;
  }
}
.c-links__reservation svg {
  fill: #ececec;
  transition: transform 0.3s;
}
.c-links__tel {
  color: #333333;
  font-size: 2.5rem;
  text-align: center;
  transition: color 0.3s;
}
.c-links__tel svg {
  fill: #b1a187;
  transition: fill 0.3s;
}

/* ------------------------------------------------------------

Pickup!

------------------------------------------------------------ */
.c-pickup {
  margin-top: 12rem;
  padding: 16rem 0 14rem;
  background: #bcb19f;
  border-radius: 3rem;
  margin-inline: calc(50% - 50vw);
  width: 100vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup {
    margin-top: 8rem;
    padding: 8rem 2rem 6rem;
    border-radius: 2rem;
  }
}
.c-unit__item .c-pickup {
  margin-top: 0;
}
.c-pickup__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 11.6rem 7.3rem 7rem;
  background: #fff;
  border-radius: 2rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__inner {
    padding: 6rem 2rem 3rem;
    border-radius: 1rem;
  }
}
.c-pickup__label {
  font-size: 15rem;
  line-height: 1;
  color: var(--color-brown);
  opacity: 0.5;
  letter-spacing: 0.1em;
  position: absolute;
  top: -7.3rem;
  left: 50%;
  translate: -50% 0;
  white-space: nowrap;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__label {
    font-size: 7rem;
    top: -3rem;
  }
}
.c-pickup__title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.c-pickup__body {
  display: flex;
  gap: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__body {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }
}
.c-pickup__body.reverse {
  flex-direction: row-reverse;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__body.reverse {
    flex-direction: column-reverse;
  }
}
.c-pickup__body.center {
  flex-direction: column-reverse;
  align-items: center;
}
.c-pickup__text {
  flex: 1;
}
.c-pickup__text p {
  text-align: justify;
}
.c-pickup__image {
  flex: none;
  width: 40rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__image {
    width: 100%;
  }
}
.c-pickup__image img {
  width: 100%;
  height: auto;
}
.c-pickup.gray {
  background: url(../images/bg_pickup_01.webp) no-repeat center/cover;
}
.c-pickup.gray .c-pickup__label {
  color: var(--color-light-beige);
}

/* ------------------------------------------------------------

テーブル

------------------------------------------------------------ */
.c-table {
  display: flex;
  flex-direction: column;
}
.c-table__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table tbody {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}
.c-table__table th,
.c-table__table td {
  padding: 1.5rem 2rem;
  line-height: var(--lh-16);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table th,
  .c-table__table td {
    padding: 1.6rem;
    width: 100%;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table tr {
    display: flex;
    flex-direction: column;
    border-radius: 0.8rem;
    overflow: hidden;
  }
}
.c-table__table tr:first-of-type th {
  border-top-left-radius: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table tr:first-of-type th {
    border-top-left-radius: 0;
  }
}
.c-table__table tr:first-of-type td {
  border-top-right-radius: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table tr:first-of-type td {
    border-top-right-radius: 0;
  }
}
.c-table__table tr:last-of-type th {
  border-bottom-left-radius: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table tr:last-of-type th {
    border-bottom-left-radius: 0;
  }
}
.c-table__table tr:last-of-type td {
  border-bottom-right-radius: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table tr:last-of-type td {
    border-bottom-right-radius: 0;
  }
}
.c-table__table th {
  width: 26.5rem;
  background: #9c8c70;
  color: var(--base-color);
  font-size: 1.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table th {
    width: 100%;
    font-size: 1.6rem;
  }
}
.c-table__table td {
  background: #f2efea;
}
.c-table__table td a {
  color: var(--color-brown);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-table__table td a:hover {
    text-decoration: none;
  }
}
.c-table__table td p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.scheduleTable__table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 1.6rem;
  font-size: 1.7rem;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable__table {
    font-size: 1.5rem;
  }
}
.scheduleTable__table thead tr {
  border-bottom: 1px solid #a2a2a2;
}
.scheduleTable__table th,
.scheduleTable__table td {
  padding: 1rem 0;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}
.scheduleTable__table th.scheduleTable__header {
  width: 14rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  border-right: 1px solid #a2a2a2;
  text-align: left;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable__table th.scheduleTable__header {
    width: 12rem;
  }
}
.scheduleTable__table td {
  color: #a2a2a2;
}
.scheduleTable__table td.scheduleTable__time {
  border-right: 1px solid #a2a2a2;
  color: var(--font-color);
  text-align: left;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable__table td.scheduleTable__time {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable__text p {
    text-align: center;
  }
}
.scheduleTable__text p span {
  color: #a2a2a2;
}

.careerTable__title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  position: relative;
}
.careerTable__title::after {
  flex: 1;
  content: "";
  display: block;
  background: #404040;
  width: 100%;
  height: 1px;
}
.careerTable__table {
  width: 100%;
  border-collapse: collapse;
}
.careerTable__table tbody {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.careerTable__table td {
  font-size: 1.5rem;
  line-height: 1.6;
}
.careerTable__table td:first-child {
  width: 9.6rem;
  padding-right: 3rem;
  white-space: nowrap;
}
.careerTable__table td:first-child span:nth-of-type(1) {
  display: inline-block;
  position: relative;
}
.careerTable__table td:first-child span:nth-of-type(1)::after {
  content: "～";
  color: var(--font-color);
  position: absolute;
}
.careerTable__table td:first-child span:nth-of-type(2) {
  display: block;
  text-align: right;
}

/* ------------------------------------------------------------

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit {
    gap: 6rem;
  }
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__item {
    gap: 2.4rem;
  }
}
.c-unit__item:has(.h5-title) .c-unit__content .c-unit__image {
  width: min(42rem, 100%);
}
.c-unit__only {
  width: min(85rem, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.c-unit__content {
  display: flex;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__content {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.c-unit__content.reverse {
  flex-direction: row-reverse;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__content.reverse {
    flex-direction: column;
  }
}
.c-unit__content > .c-unit__image {
  width: min(46rem, 100%);
}
.c-unit__image {
  flex: none;
}
.c-unit__image img {
  width: 100%;
  height: auto;
}
.c-unit__desc {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.c-unit__desc p {
  text-align: justify;
}
.c-unit__desc p a {
  color: var(--color-brown);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-unit__desc p a:hover {
    text-decoration: none;
  }
}
.c-unit__desc .c-listBox {
  margin-top: 2.4rem;
  padding: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__desc .c-listBox {
    margin-top: 0;
    padding: 4rem 2rem;
  }
}
.c-unit__desc .c-table .c-table__table th {
  width: 10rem;
}
.c-unit__info {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__info {
    flex-direction: column;
    gap: 4rem;
  }
}
.c-unit__block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: calc((100% - 8rem) / 2);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__block {
    width: 100%;
  }
}
.c-unit__block h3 {
  padding-left: 1.6rem;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
  position: relative;
}
.c-unit__block h3::before {
  content: "";
  flex: none;
  width: 0.8rem;
  height: 0.8rem;
  background: pink;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
.c-unit__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 850/500;
}
.c-unit__images {
  display: flex;
  gap: 4rem;
  justify-content: center;
  width: min(85rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__images {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.c-unit__images img {
  width: 100%;
  max-width: 40rem;
  height: auto;
}
.c-unit__media {
  display: flex;
  gap: 4rem;
  justify-content: center;
  width: min(85rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit__media {
    flex-direction: column;
    gap: 2rem;
  }
}
.c-unit__media > * {
  width: 100%;
  max-width: 40rem;
}
.c-unit__media img {
  height: auto;
}
.c-unit__media iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.c-tab__nav {
  display: flex;
  gap: 0;
  margin-bottom: 4rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-tab__nav {
    flex-direction: column;
    border-radius: 0.8rem;
  }
}
.c-tab__button {
  font-size: 1.8rem;
  font-weight: 700;
  flex: 1;
  padding: 2rem 2.4rem;
  background: var(--color-cream);
  border: none;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-tab__button {
    font-size: 1.6rem;
    padding: 1.6rem 2rem;
  }
}
.c-tab__button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-light-beige);
  opacity: 0;
  transition: opacity 0.3s;
}
.c-tab__button.is-active {
  background: var(--color-brown);
  color: #fff;
}
.c-tab__button.is-active::after {
  opacity: 0;
}
.c-tab__button:not(:last-child) {
  border-right: 1px solid rgba(156, 140, 112, 0.2);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-tab__button:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(156, 140, 112, 0.2);
  }
}
.c-tab__content {
  display: none;
  animation: tabFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-tab__content.is-active {
  display: block;
}
.c-tab__content h3 {
  margin-bottom: 1.6rem;
}

.c-number {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-number {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}
.c-number__item img {
  width: 100%;
  height: auto;
}

/* ------------------------------------------------------------

虫歯・歯周病のセルフチェック

------------------------------------------------------------ */
.c-selfCheck .c-listBox {
  margin-bottom: 4rem;
  border-radius: 0.5rem;
}
.c-selfCheck .h5-title {
  margin-bottom: 1.6rem;
}
.c-selfCheck__result {
  background: #ededed;
  padding: 3.2rem;
  border-radius: 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-selfCheck__result {
    padding: 2.4rem;
  }
}
.c-selfCheck__body {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .c-selfCheck__body {
    flex-direction: column;
  }
}
.c-selfCheck__image {
  flex-shrink: 0;
  width: 200px;
}
@media (max-width: 768px) {
  .c-selfCheck__image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.c-selfCheck__image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
.c-selfCheck__text {
  flex: 1;
}
.c-selfCheck__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 1rem;
}
.c-selfCheck .c-tab__button {
  background: var(--base-color);
}
.c-selfCheck .c-tab__button.is-active {
  background: var(--color-brown);
}

/* ------------------------------------------------------------

見出し

------------------------------------------------------------ */
.heading01 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.heading01__en {
  width: fit-content;
  padding: 0 0.5rem 0.3rem;
  border-bottom: 1px solid #37474f;
  color: var(--font-color);
}
.heading01__sub {
  font-size: 2rem;
  line-height: 1.8;
}
.heading01 h2 {
  font-size: 2.8rem;
  line-height: 1.7857142857;
}

.h2-title,
.h3-title,
.h4-title,
.h5-title {
  font-weight: 600;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1.6;
}

.h2-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  font-size: 3.5rem;
  letter-spacing: 0.35rem;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h2-title {
    gap: 3rem;
    font-size: 2.4rem;
    letter-spacing: 0.24rem;
    gap: 0.8rem;
  }
}
.h2-title::after {
  content: "";
  display: block;
  margin-inline: auto;
  width: 24rem;
  height: 1rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNDEuNzA2IiBoZWlnaHQ9IjEwLjYwNCIgdmlld0JveD0iMCAwIDI0MS43MDYgMTAuNjA0Ij4gPHBhdGggaWQ9IuODkeOCuV8zNzU4MiIgZGF0YS1uYW1lPSLjg5HjgrkgMzc1ODIiIGQ9Ik0wLS4yNjRzNTkuMTQzLTksMTE5LjE0My05UzI0MC0uMjY0LDI0MC0uMjY0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjg1NCAxMC4wMTQpIiBmaWxsPSJub25lIiBzdHJva2U9IiM3ODJiMGQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48L3N2Zz4=") no-repeat center/contain;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h2-title::after {
    width: 18rem;
    height: 0.7rem;
  }
}

.h3-title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 3rem;
  letter-spacing: 0.3rem;
  border-top: 1px solid var(--color-light-beige);
  border-bottom: 1px solid var(--color-light-beige);
  padding-block: 1.2rem 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h3-title {
    font-size: 2.2rem;
    letter-spacing: 0.22rem;
  }
}
.h3-title::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  border-top: 1px dashed var(--color-light-beige);
}
.h3-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  border-top: 1px dashed var(--color-light-beige);
  padding-block-start: 0.5rem;
  margin-block-start: -0.5rem;
}

.h4-title {
  display: flex;
  gap: 1.6rem;
  font-size: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h4-title {
    font-size: 2rem;
  }
}
.h4-title::before {
  flex: none;
  content: "";
  display: block;
  width: 0.15rem;
  min-height: 100%;
  background: var(--color-brown);
}

.h5-title {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 2.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h5-title {
    font-size: 1.8rem;
  }
}
.h5-title::before {
  content: "";
  flex: none;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-light-beige);
  margin-top: 1.3rem;
  border-radius: 50%;
}

/* ------------------------------------------------------------

Header

------------------------------------------------------------ */
h1 {
  width: 66.6666666667%;
  padding: 0 2.0833333333%;
  font-size: 1.4rem;
  line-height: var(--lh-14);
  position: absolute;
  top: 3rem;
  left: 0;
  z-index: 5;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  h1 {
    width: 100%;
    padding: 0 2rem;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    top: 7rem;
  }
}
.home h1 {
  padding-left: 4.1666666667%;
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home h1 {
    width: calc(100% - 8.5rem);
    padding: 0 0 0 1rem;
    top: 1rem;
  }
}
body:has(.drawerMenu.active) h1 {
  display: none;
}

.home .header {
  background: none;
}
.home .header .header__inner {
  padding-left: 2.0833333333%;
}
.home .header .header__left {
  width: 23.28125vw;
}
.home .header .header__left a img.top {
  display: block;
  opacity: 1;
  visibility: visible;
}
.home .header .header__left a img.base {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.home .header .header__center {
  display: none;
}
.home .header .header__right .menuButton {
  background: var(--base-color);
}
.home .header .header__right .c-links__tel {
  color: var(--base-color);
}
.home .header .header__right .c-links__tel svg {
  fill: var(--base-color);
}
.home .header.is-scroll {
  background: var(--base-color);
}
.home .header.is-scroll .header__inner {
  padding-left: 0;
}
.home .header.is-scroll .header__left {
  width: 20.2604166667vw;
}
.home .header.is-scroll .header__left a img.top {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.home .header.is-scroll .header__left a img.base {
  display: block;
  opacity: 1;
  visibility: visible;
}
.home .header.is-scroll .header__center {
  display: block;
}
.home .header.is-scroll .header__right .menuButton {
  background: #f2efea;
}
.home .header.is-scroll .header__right .c-links__tel {
  color: unset;
}
.home .header.is-scroll .header__right .c-links__tel svg {
  fill: unset;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3rem 0 2.4rem;
  border-radius: 0 0 1rem 1rem;
  background: var(--base-color);
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header {
    padding: 0;
  }
}
.header.is-scroll {
  padding: 2.4rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-scroll {
    padding: 0;
  }
}
.header.is-scroll .header__left,
.header.is-scroll .header__center {
  padding-top: 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95.8333333333%;
}
.header__unit {
  display: flex;
  align-items: center;
  gap: 1.6666666667vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__unit {
    display: none;
  }
}
.header__left {
  width: 20.2604166667vw;
  padding-top: 3rem;
  transition: all 0.3s;
}
.header__left a {
  display: block;
}
.header__left a img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.header__left a img.top {
  display: none;
}
.header__center {
  padding-top: 3rem;
  transition: padding-top 0.3s;
}
.header__center ul {
  display: flex;
  gap: 1.6rem;
}
.header__center ul li {
  display: grid;
  place-content: center;
  width: 8.3333333333vw;
  height: 5.6rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-beige);
  color: var(--color-beige);
  text-align: center;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 0.7291666667vw;
  line-height: var(--lh-14);
}
.header__right {
  display: flex;
  align-items: center;
  gap: 1.6666666667vw;
}
.header__right .c-links {
  gap: 1.6666666667vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__right .c-links {
    display: none;
  }
}
.header__right .c-links__reservation {
  width: 12.5vw;
  font-size: 0.9375vw;
}
.header__right .c-links__tel {
  font-size: 1.3020833333vw;
}
.header__right .menuButton {
  flex: none;
  display: grid;
  place-content: center;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: #f2efea;
  position: relative;
  z-index: 3;
  cursor: pointer;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .header__right .menuButton:hover {
    transform: scale(1.1);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__right .menuButton {
    width: 5.6rem;
    height: 5.6rem;
    background: var(--base-color);
    position: absolute;
    top: 0.5rem;
    right: 1rem;
  }
}
.header__right .menuButton span {
  color: var(--color-brown);
  font-size: 1.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__right .menuButton span {
    font-size: 1.4rem;
  }
}

.drawerMenu {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(0.2rem);
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu {
    height: 100%;
    padding: 5.8rem 2rem 0;
    background: url(../images/header_01_sp.webp) no-repeat center/cover;
  }
}
.drawerMenu.active {
  opacity: 1;
  visibility: visible;
}
.drawerMenu__inner {
  display: flex;
  align-items: center;
  gap: 1.0416666667vw;
  width: 100%;
  padding: 0 2.9166666667%;
  height: 54rem;
  background: url(../images/header_01.webp) no-repeat center/cover;
  border-radius: 0 0 3rem 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__inner {
    display: contents;
  }
}
.drawerMenu__text {
  color: var(--color-light-beige);
  font-size: 6.25vw;
  line-height: var(--lh-12);
  opacity: 0.2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__text {
    order: 2;
    width: fit-content;
    margin: -20rem -1rem 0 auto;
    font-size: 7rem;
    letter-spacing: 0.05em;
  }
}
.drawerMenu__nav {
  flex: 1;
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__nav {
    order: 1;
    flex-direction: column;
  }
}
.drawerMenu__heading p,
.drawerMenu__heading a {
  color: var(--base-color);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.drawerMenu__heading p {
  margin-bottom: 2rem;
}
.drawerMenu__heading a {
  transition: color 0.3s;
}
@media (hover: hover) {
  .drawerMenu__heading a:hover {
    color: var(--color-light-beige);
  }
}
.drawerMenu__item {
  padding: 0 2.6041666667vw;
  border-right: 1px dashed var(--color-light-beige);
  position: relative;
}
@media screen and (max-width: 1620px) {
  .drawerMenu__item {
    padding: 0 2.0833333333vw;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__item {
    padding: 2.4rem 0;
    border-right: none;
    border-bottom: 1px dashed var(--color-light-beige);
  }
}
.drawerMenu__item:nth-of-type(1) {
  padding-left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__item:nth-of-type(1) {
    padding-top: 0;
  }
}
.drawerMenu__item:nth-of-type(3) {
  padding-right: 0;
  border-right: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__item:nth-of-type(3) {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.drawerMenu__list {
  display: flex;
  gap: 3.6458333333vw;
}
@media screen and (max-width: 1620px) {
  .drawerMenu__list {
    gap: 3.125vw;
  }
}
@media screen and (max-width: 1440px) {
  .drawerMenu__list {
    gap: 2.0833333333vw;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__list {
    flex-direction: column;
    gap: 2rem;
  }
}
.drawerMenu__list ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.drawerMenu__list ul li a {
  display: block;
  padding-left: 1.5rem;
  color: var(--base-color);
  line-height: var(--lh-14);
  white-space: nowrap;
  position: relative;
  transition: color 0.3s;
}
@media (hover: hover) {
  .drawerMenu__list ul li a:hover {
    color: var(--color-light-beige);
  }
}
.drawerMenu__list ul li a::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-light-beige);
  position: absolute;
  top: 0.8rem;
  left: 0;
}
.drawerMenu__list ul li span span {
  font-size: 1.4rem;
}
.drawerMenu__bg {
  flex: 1;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .drawerMenu__bg {
    display: none;
  }
}

.spHeader {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .spHeader {
    display: block;
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
  }
}
.spHeader a {
  display: block;
  width: 25.8rem;
  padding: 1rem 2rem;
  background: var(--base-color);
  border-radius: 0 0 1rem 0;
}
.spHeader a img {
  width: 100%;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .spHeader {
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .spHeader.is-show {
    opacity: 1;
    visibility: visible;
  }
}

/* ------------------------------------------------------------

Footer

------------------------------------------------------------ */
.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15rem;
  margin-top: 15rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer {
    gap: 8rem;
    margin-top: 8rem;
  }
}

.f-black {
  width: min(175rem, 100%);
  border-radius: 3rem;
  position: relative;
  clip-path: inset(0 round 3rem);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black {
    border-radius: 2rem;
    clip-path: inset(0 round 2rem);
  }
}
.f-black::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/footer_01.webp) no-repeat center/cover;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black::before {
    background: url(../images/footer_01_sp.webp) no-repeat center/cover;
  }
}
.f-black__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6rem;
  width: min(120rem, 100%);
  margin-inline: auto;
  padding: 12rem 0;
  color: var(--base-color);
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__inner {
    gap: 4rem;
    padding: 6rem 1rem;
  }
}
.f-black__logo {
  width: min(54.9rem, 100%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__logo {
    padding: 0 1rem;
  }
}
.f-black__logo a {
  display: block;
}
.f-black__logo a img {
  width: 100%;
  height: auto;
}
.f-black__feature {
  display: flex;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__feature {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.f-black__feature li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 24rem;
  height: 7.8rem;
  border: 1px solid var(--base-color);
  border-radius: 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__feature li {
    width: calc((100% - 1rem) / 2);
    height: 6.3rem;
  }
}
.f-black__feature li p {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__feature li p {
    font-size: 1.5rem;
  }
}
.f-black__feature li p span {
  font-size: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__feature li p span {
    font-size: 1.5rem;
  }
}
.f-black__unit {
  display: flex;
  gap: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__unit {
    display: contents;
  }
}
.f-black__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__info {
    align-items: center;
    gap: 3rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__info address {
    text-align: center;
  }
}
.f-black__info .c-links {
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__info .c-links {
    padding: 0 1rem;
  }
}
.f-black__info .c-links__reservation {
  width: 28rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__info .c-links__reservation {
    width: 100%;
  }
}
.f-black__info .c-links__tel {
  color: var(--base-color);
}
.f-black__info .c-links__tel svg {
  fill: var(--base-color);
}
.f-black__info .scheduleTable__table thead tr {
  border-bottom: 1px solid var(--base-color);
}
.f-black__info .scheduleTable__table th.scheduleTable__header {
  border-right: 1px solid var(--base-color);
}
.f-black__info .scheduleTable__table td {
  color: var(--base-color);
}
.f-black__info .scheduleTable__table td.scheduleTable__time {
  border-right: 1px solid var(--base-color);
  color: var(--base-color);
}
.f-black__info .scheduleTable__text p span {
  color: var(--base-color);
}
.f-black__sns {
  display: flex;
  gap: 2.4rem;
}
.f-black__sns a {
  display: block;
  width: 4.8rem;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .f-black__sns a:hover {
    transform: scale(1.1);
  }
}
.f-black__sns a img {
  width: 100%;
  height: auto;
}
.f-black__access {
  width: 57rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__access {
    width: 100%;
  }
}
.f-black__map {
  margin-bottom: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__map {
    padding: 0 1rem;
    margin-bottom: 2rem;
  }
}
.f-black__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 570/416;
  border-radius: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__map iframe {
    aspect-ratio: 335/220;
    border-radius: 1rem;
  }
}
.f-black__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__note {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.f-black__note .mapBtn {
  border-bottom: 1px solid var(--base-color);
  color: var(--base-color);
}
.f-black__note .mapBtn svg {
  fill: var(--base-color);
}
.f-black__banners {
  display: flex;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-black__banners {
    flex-direction: column;
    gap: 2.4rem;
    padding: 0 3.5rem;
  }
}
.f-black__banners li {
  flex: 1;
}
.f-black__banners a {
  display: block;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .f-black__banners a:hover {
    transform: scale(1.05);
  }
}
.f-black__banners a img {
  width: 100%;
  height: auto;
}

.f-white {
  border-radius: 3rem 3rem 0 0;
  background: url(../images/footer_02.webp) no-repeat center/cover;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-white {
    border-radius: 2rem 2rem 0 0;
  }
}
.f-white::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/742;
  background: url(../images/bg_wave_02.webp) no-repeat center/contain;
  position: absolute;
  top: -58rem;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-white::before {
    aspect-ratio: 375/639;
    background: url(../images/bg_wave_sp.webp) no-repeat center/contain;
    top: -30rem;
  }
}
.f-white__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
  width: min(120rem, 100%);
  margin-inline: auto;
  padding: 15rem 0 6.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-white__inner {
    gap: 4rem;
    padding: 7.2rem 2rem 12.8rem;
  }
}
.f-white__nav {
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-white__nav {
    display: none;
  }
}
.f-white__item {
  padding: 0 6rem;
  border-right: 1px solid var(--color-light-beige);
}
.f-white__item:first-child {
  padding-left: 0;
}
.f-white__item:last-child {
  padding-right: 0;
  border-right: none;
}
.f-white__heading p,
.f-white__heading a {
  color: var(--color-brown);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
.f-white__heading p {
  margin-bottom: 2rem;
}
.f-white__heading a {
  transition: color 0.3s;
}
@media (hover: hover) {
  .f-white__heading a:hover {
    color: var(--font-color);
  }
}
.f-white__list {
  display: flex;
  gap: 6rem;
}
.f-white__list ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.f-white__list ul li a {
  display: block;
  padding-left: 1.5rem;
  color: var(--font-color);
  line-height: var(--lh-14);
  white-space: nowrap;
  position: relative;
  transition: color 0.3s;
}
@media (hover: hover) {
  .f-white__list ul li a:hover {
    color: var(--color-brown);
  }
}
.f-white__list ul li a::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-brown);
  position: absolute;
  top: 0.8rem;
  left: 0;
}
.f-white__list ul li span span {
  font-size: 1.4rem;
}
.f-white__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.f-white__desc p {
  color: var(--font-color);
  text-align: justify;
}
.f-white__banners {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-white__banners {
    flex-direction: column;
    gap: 1.6rem;
    padding: 0 2.5rem;
  }
}
.f-white__banners li {
  width: calc((100% - 6rem) / 4);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .f-white__banners li {
    width: 100%;
  }
}
.f-white__banners a {
  display: block;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .f-white__banners a:hover {
    transform: scale(1.05);
  }
}
.f-white__banners a img {
  width: 100%;
  height: auto;
}
.f-white__copy {
  text-align: center;
}

/* ------------------------------------------------------------

サイドバー

------------------------------------------------------------ */
.sidebar-content {
  display: flex;
  width: calc(100% - 5.6rem);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.btmLink {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .btmLink {
    display: flex;
    width: 100%;
    height: 5.6rem;
  }
}
.btmLink__reservation, .btmLink__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 50%;
  color: var(--base-color);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.btmLink__reservation svg, .btmLink__tel svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: var(--base-color);
}
.btmLink__reservation {
  background: var(--color-brown);
  border-radius: 1rem 0 0 0;
}
.btmLink__tel {
  background: #b1a187;
}

.pageTop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 50%;
  background: var(--base-color);
  position: fixed;
  bottom: 4rem;
  right: 4rem;
  z-index: 2;
  cursor: pointer;
}
.home .pageTop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .pageTop {
    opacity: 1;
    visibility: visible;
  }
}
.pageTop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .pageTop {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 0 1rem 0 0;
    bottom: 0;
    right: 0;
  }
}
.pageTop svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--color-brown);
}
.pageTop span {
  color: var(--color-brown);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
}

/* ------------------------------------------------------------

Intersection Observer アニメーション

------------------------------------------------------------ */
[data-animate] {
  transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
  will-change: opacity, transform;
}
[data-animate].is-animated {
  will-change: auto;
}

[data-animate=fade-down] {
  opacity: 0;
  transform: translateY(-3rem);
}
[data-animate=fade-down].is-animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate=fade-up] {
  opacity: 0;
  transform: translateY(3rem);
}
[data-animate=fade-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate=fade-left] {
  opacity: 0;
  transform: translateX(3rem);
}
[data-animate=fade-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}

[data-animate=fade-right] {
  opacity: 0;
  transform: translateX(-3rem);
}
[data-animate=fade-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}

[data-animate=fade] {
  opacity: 0;
}
[data-animate=fade].is-animated {
  opacity: 1;
}

[data-animate=zoom-out] {
  opacity: 0;
  transform: scale(1.1);
}
[data-animate=zoom-out].is-animated {
  opacity: 1;
  transform: scale(1);
}

[data-animate=ticket-slide-zoom] {
  opacity: 0;
  transform: translateY(-3rem) scale(1.1);
}
[data-animate=ticket-slide-zoom].is-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}

[data-animate-delay="200"] {
  transition-delay: 0.5s;
}

[data-animate-delay="400"] {
  transition-delay: 0.7s;
}

[data-animate-delay="600"] {
  transition-delay: 0.9s;
}

/* ------------------------------------------------------------

トップページ

------------------------------------------------------------ */
.page-top .bgText {
  font-size: 25rem;
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .bgText {
    font-size: 8rem;
    top: 1rem;
    left: 50%;
    translate: -50% 0;
  }
}
.page-top .c-desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-top .c-desc p {
  text-align: justify;
}
.page-top .mv {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #cbbca7 0%, #ac9d88 75.2%, #897a65 100%);
  position: relative;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv {
    justify-content: unset;
    flex-direction: column;
    gap: 3rem;
    padding: 9rem 1.5rem;
    background: linear-gradient(215deg, #cbbca7 0%, #ac9d88 75.2%, #897a65 100%);
  }
}
.page-top .mv__logo {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__logo {
    display: block;
  }
}
.page-top .mv__logo img {
  width: 100%;
  height: auto;
}
.page-top .mv__bg {
  font-size: 13.0208333333vw;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--color-light-beige);
  white-space: nowrap;
  opacity: 0.2;
  mix-blend-mode: screen;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__bg {
    font-size: 8rem;
    white-space: unset;
    bottom: 6rem;
  }
}
.page-top .mv__slider {
  width: 83.3333333333vw;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__slider {
    width: 100%;
  }
}
.page-top .mv__slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__slider .splide__slide {
    height: 40rem;
    padding: 0 1.5rem;
  }
}
.page-top .mv__slider .splide__slide img {
  width: auto;
  aspect-ratio: 620/760;
  border-radius: 2rem;
  object-fit: cover;
  transform: rotate(-3deg) scale(0.67);
  filter: blur(0.5rem);
  transition: transform 0.8s ease, filter 0.8s ease, opacity 0.8s ease;
}
.page-top .mv__slider .splide__slide.is-active img {
  transform: rotate(3deg) scale(1);
  filter: none;
}
.page-top .mv__slider .splide__slide.is-visible {
  opacity: 1;
}
.page-top .mv__lead {
  width: 40.5729166667vw;
  position: absolute;
  bottom: 8.4210526316vh;
  left: 4.1666666667vw;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__lead {
    width: 31.1rem;
    bottom: 9rem;
    left: 2rem;
  }
}
.page-top .mv__lead img {
  width: 100%;
  height: auto;
}
.page-top .mv .mvNews {
  display: flex;
  gap: 4.8rem;
  width: 75rem;
  padding: 3.2rem 4rem;
  background: var(--color-cream);
  border-radius: 2rem 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv .mvNews {
    display: none;
  }
}
.page-top .mv .mvNews__text {
  flex: none;
}
.page-top .mv .mvNews__text .c-button {
  justify-content: unset;
  width: 16rem;
  min-height: unset;
  height: 5rem;
  padding: 0 2rem;
}
.page-top .mv .mvNews__text .c-button::before {
  background: #919191;
}
.page-top .mv .mvNews__heading {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
  line-height: var(--lh-12);
}
.page-top .mv .mvNews__heading .en {
  font-size: 3.6rem;
  color: var(--color-light-beige);
}
.page-top .mv .mvNews__heading .ja {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .mv .mvNews__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.page-top .mv .mvNews__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid #d7d7d7;
  color: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .page-top .mv .mvNews__item:hover {
    color: var(--color-brown);
  }
}
.page-top .mv .mvNews__item time {
  flex: none;
  width: 8rem;
}
.page-top .mv .mvNews__item p {
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-top .about {
  padding: 21rem 0 16rem;
  background: url(../images/bg_home_01.webp) no-repeat center/cover;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about {
    padding: 10rem 2rem 7rem;
  }
}
.page-top .about__inner {
  display: flex;
  gap: 17rem;
  width: min(120rem, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__inner {
    flex-direction: column;
    gap: 4rem;
  }
}
.page-top .about__info {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 51rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__info {
    width: 100%;
    gap: 3.2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__info .scheduleTable {
    margin: 0 -1rem;
  }
}
.page-top .about__logo {
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__logo {
    padding: 0 1rem;
  }
}
.page-top .about__logo img {
  width: 100%;
  height: auto;
}
.page-top .about__access {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-light-beige);
  border-bottom: 1px solid var(--color-light-beige);
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  color: #503e21;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__access {
    padding: 0.5rem 0;
    font-size: 1.4rem;
  }
}
.page-top .about__address {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__address {
    flex-direction: column;
    gap: 1rem;
  }
}
.page-top .about__address address {
  line-height: var(--lh-16);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__address address {
    text-align: center;
  }
}
.page-top .about__sns {
  display: flex;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__sns {
    justify-content: center;
  }
}
.page-top .about__sns a {
  display: block;
  width: 4.8rem;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .page-top .about__sns a:hover {
    transform: scale(1.1);
  }
}
.page-top .about__sns img {
  width: 100%;
  height: auto;
}
.page-top .about__images {
  position: relative;
}
.page-top .about__main img, .page-top .about__sub img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__main img, .page-top .about__sub img {
    border-radius: 1rem;
  }
}
.page-top .about__main {
  height: 100%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__main {
    width: 25.5rem;
  }
}
.page-top .about__main img {
  height: 100%;
  object-fit: cover;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__main img {
    height: auto;
  }
}
.page-top .about__sub {
  width: 30rem;
  position: absolute;
  bottom: -20rem;
  right: -10.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .about__sub {
    width: 14rem;
    bottom: -10rem;
    right: 0;
  }
}
.page-top .concept {
  background: var(--color-cream);
  border-radius: 3rem;
  position: relative;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept {
    border-radius: 2rem;
  }
}
.page-top .concept .bgText {
  color: #f8f8f8;
}
.page-top .concept__top {
  width: min(85rem, 100%);
  padding: 22rem 0 6.4rem;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__top {
    padding: 12rem 2rem 4rem;
  }
}
.page-top .concept__top h2 {
  margin-bottom: 6rem;
  font-size: 5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__top h2 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
  }
}
.page-top .concept__top h2 span {
  display: contents;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__top h2 span {
    display: inline;
    font-size: 3rem;
  }
}
.page-top .concept__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 23rem 0 15rem;
  background: #503e21;
  color: var(--base-color);
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__bottom {
    padding: 8.4rem 2rem 8rem;
  }
}
.page-top .concept__world {
  width: 100%;
  height: 100%;
  margin-top: -1px;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.page-top .concept__world img {
  width: 100%;
  height: auto;
}
.page-top .concept__lead {
  margin-bottom: 16rem;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__lead {
    margin-bottom: 3.2rem;
  }
}
.page-top .concept__lead p {
  font-size: 7.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__lead p {
    font-size: 3.5rem;
  }
}
.page-top .concept__lead p:nth-of-type(1) {
  font-size: 8rem;
  letter-spacing: 0.6em;
  position: absolute;
  top: -6rem;
  left: 1.4rem;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__lead p:nth-of-type(1) {
    font-size: 4rem;
    top: -3rem;
  }
}
.page-top .concept__lead p:nth-of-type(2) span {
  font-size: 8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__lead p:nth-of-type(2) span {
    font-size: 4.2rem;
  }
}
.page-top .concept__unit {
  display: flex;
  gap: 12rem;
  margin-bottom: 15rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__unit {
    align-items: center;
    flex-direction: column;
    gap: 4rem;
    margin: 0 -2rem 7.2rem;
  }
}
.page-top .concept__icon {
  width: 24.2rem;
  position: absolute;
  top: -12rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__icon {
    order: 2;
    width: 10.2rem;
    position: unset;
    top: unset;
    left: unset;
    translate: 0;
  }
}
.page-top .concept__icon img {
  width: 100%;
  height: auto;
}
.page-top .concept__item {
  flex: 1;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.skill {
    order: 1;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.skill .concept__label {
    top: unset;
    left: 1rem;
    bottom: -2.8rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.skill .concept__image {
    padding-right: 2rem;
  }
}
.page-top .concept__item.skill .concept__image img {
  border-radius: 0 2rem 2rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.skill .concept__image img {
    border-radius: 0 1rem 1rem 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.skill .concept__en {
    bottom: -7rem;
    left: 0;
    translate: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.digital {
    order: 3;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.digital .concept__label {
    top: -2.8rem;
    left: unset;
    right: 1rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.digital .concept__image {
    padding-left: 2rem;
  }
}
.page-top .concept__item.digital .concept__image img {
  border-radius: 2rem 0 0 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.digital .concept__image img {
    border-radius: 1rem 0 0 1rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__item.digital .concept__en {
    bottom: unset;
    top: -7rem;
    right: 0;
  }
}
.page-top .concept__label {
  display: grid;
  place-content: center;
  width: min(56.7rem, 100%);
  height: 13rem;
  background: var(--base-color);
  border-radius: 0.5rem;
  font-size: 8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  color: var(--color-brown);
  letter-spacing: 0.1em;
  position: absolute;
  top: -6rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__label {
    width: 24rem;
    height: 5.5rem;
    font-size: 3.5rem;
    translate: 0;
  }
}
.page-top .concept__image {
  width: 100%;
}
.page-top .concept__image img {
  width: 100%;
  height: auto;
}
.page-top .concept__en {
  font-size: 12rem;
  color: var(--color-light-beige);
  mix-blend-mode: multiply;
  position: absolute;
  bottom: -10rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__en {
    font-size: 5rem;
    mix-blend-mode: unset;
    opacity: 0.2;
    translate: 0;
  }
}
.page-top .concept__text {
  display: flex;
  align-items: center;
  gap: 10rem;
  width: min(120rem, 100%);
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__text {
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
  }
}
.page-top .concept__text h3 {
  flex: none;
  font-size: 4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__text h3 {
    font-size: 2.4rem;
    text-align: center;
  }
}
.page-top .homeDoctor {
  padding: 42rem 0 15rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor {
    padding: 15rem 0 8rem;
  }
}
.page-top .homeDoctor::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/742;
  background: url(../images/bg_wave_02.webp) no-repeat center/contain;
  position: absolute;
  top: 5rem;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor::before {
    aspect-ratio: 375/639;
    background: url(../images/bg_wave_sp.webp) no-repeat center/contain;
    top: 0;
  }
}
.page-top .homeDoctor::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 125rem);
  background: #f2efea;
  position: absolute;
  top: 80rem;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor::after {
    height: calc(100% - 50.2rem);
    top: 50.2rem;
  }
}
.page-top .homeDoctor .bgText {
  color: #f2efea;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .bgText {
    left: 2rem;
    translate: 0;
  }
}
.page-top .homeDoctor .c-doctor {
  width: unset;
  margin-left: unset;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor {
    padding: 0 2rem;
  }
}
.page-top .homeDoctor .c-doctor__inner {
  width: min(176rem, 100%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor__inner {
    gap: 2rem;
  }
}
.page-top .homeDoctor .c-doctor__image {
  width: 41.25vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor__image {
    order: 2;
    width: 100%;
    padding-right: 2.5rem;
  }
}
.page-top .homeDoctor .c-doctor__info {
  justify-content: unset;
  gap: 9.2rem;
  padding-right: 14.5833333333vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor__info {
    display: contents;
  }
}
.page-top .homeDoctor .c-doctor__lead {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor__lead {
    display: contents;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor__lead .c-desc {
    order: 3;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor h2 {
    order: 1;
  }
}
.page-top .homeDoctor .c-doctor h2 > span {
  display: block;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.15em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor h2 > span {
    letter-spacing: 0.05em;
  }
}
.page-top .homeDoctor .c-doctor h2 > span:nth-of-type(1) {
  font-size: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor h2 > span:nth-of-type(1) {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.page-top .homeDoctor .c-doctor h2 > span:nth-of-type(2) {
  font-size: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor h2 > span:nth-of-type(2) {
    font-size: 2.4rem;
  }
}
.page-top .homeDoctor .c-doctor h2 > span:nth-of-type(2) span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor h2 > span:nth-of-type(2) span {
    font-size: 3rem;
  }
}
.page-top .homeDoctor .c-doctor .c-doctorName {
  text-align: right;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-doctor .c-doctorName {
    order: 4;
  }
}
.page-top .homeDoctor__profile {
  display: flex;
  gap: 8rem;
  width: min(108.6rem, 100%);
  margin: -4rem auto 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__profile {
    flex-direction: column;
    gap: 4rem;
    margin: 6rem auto;
  }
}
.page-top .homeDoctor__profile .c-doctorCareer,
.page-top .homeDoctor__profile .c-doctorList {
  flex: 1;
}
.page-top .homeDoctor__profile .c-doctorCareer dt {
  white-space: nowrap;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__profile .c-doctorCareer dt {
    width: 10rem;
    letter-spacing: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__profile .c-doctorCareer__body::after {
    left: 11rem;
  }
}
.page-top .homeDoctor__unit {
  display: flex;
  gap: 12rem;
  margin-bottom: 6.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__unit {
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 5rem;
  }
}
.page-top .homeDoctor__feature {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature {
    gap: 2.4rem;
  }
}
.page-top .homeDoctor__feature.left {
  align-items: flex-end;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature.left {
    align-items: unset;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature.left .homeDoctor__image {
    padding-right: 2rem;
  }
}
.page-top .homeDoctor__feature.left .homeDoctor__image img {
  border-radius: 0 2rem 2rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature.left .homeDoctor__image img {
    border-radius: 0 1rem 1rem 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature.left .homeDoctor__text {
    padding: 0 2rem;
  }
}
.page-top .homeDoctor__feature.right {
  margin-top: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature.right {
    margin-top: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature.right .homeDoctor__image {
    padding-left: 2rem;
  }
}
.page-top .homeDoctor__feature.right .homeDoctor__image img {
  border-radius: 2rem 0 0 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature.right .homeDoctor__image img {
    border-radius: 1rem 0 0 1rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__feature.right .homeDoctor__text {
    padding: 0 2rem;
  }
}
.page-top .homeDoctor__image {
  width: 100%;
}
.page-top .homeDoctor__image img {
  width: 100%;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__image img {
    aspect-ratio: 335/200;
  }
}
.page-top .homeDoctor__text {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
  width: min(56.8rem, 100%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__text {
    gap: 2rem;
  }
}
.page-top .homeDoctor__text h3 {
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__text h3 {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}
.page-top .homeDoctor .c-button {
  margin: 0 auto 15rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor .c-button {
    width: calc(100% - 4rem);
    margin-bottom: 7.2rem;
  }
}
.page-top .homeDoctor__slide {
  display: flex;
}
.page-top .homeDoctor__slide picture {
  flex: none;
  width: 359.1rem;
  height: 100%;
  animation: doctorSlide 40s linear infinite;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .homeDoctor__slide picture {
    width: 148.5rem;
  }
}
.page-top .homeDoctor__slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes doctorSlide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.page-top .approach {
  padding: 23rem 4.4270833333vw 18rem;
  background: var(--color-light-beige);
  border-radius: 3rem 3rem 0 0;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach {
    padding: 10rem 0 11rem;
    border-radius: 2rem 2rem 0 0;
  }
}
.page-top .approach .bgText {
  color: #c4b8a6;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .bgText {
    font-size: 7.5rem;
  }
}
.page-top .approach__heading {
  width: min(85rem, 100%);
  margin: 0 auto 12rem;
  color: var(--base-color);
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__heading {
    padding: 0 2rem;
    margin: 0 auto 4.8rem;
  }
}
.page-top .approach__heading h2 {
  margin-bottom: 6rem;
  font-size: 5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.15em;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__heading h2 {
    margin-bottom: 4rem;
    font-size: 3rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}
.page-top .approach__heading h2 span {
  font-size: 7rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__heading h2 span {
    font-size: 4rem;
  }
}
.page-top .approach__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__inner {
    padding: 0 2rem;
  }
}
.page-top .approach__tab {
  display: flex;
  gap: 7.5rem;
  width: min(120rem, 100%);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__tab {
    flex-direction: column;
    gap: 4rem;
  }
}
.page-top .approach__tab::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px dotted #f2efea;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__tab::before {
    width: 1px;
    height: 100%;
    border-top: none;
    border-right: 1px dotted #f2efea;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
}
.page-top .approach__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 7rem 0 2rem;
  background: var(--base-color);
  border-radius: 2rem;
  color: var(--color-brown);
  position: relative;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .page-top .approach__step:hover {
    opacity: 0.7;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__step {
    gap: 1rem;
    padding: 4.5rem 0 1rem;
    border-radius: 1rem;
  }
}
.page-top .approach__step:nth-child(2) {
  background: #f5f1eb;
}
.page-top .approach__step:nth-child(3) {
  background: #ebe7e1;
}
.page-top .approach__step svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: var(--color-light-beige);
  transform: scale(1, -1);
}
.page-top .approach__num {
  font-size: 10rem;
  line-height: 1;
  position: absolute;
  top: -5rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__num {
    font-size: 5rem;
    top: -2.5rem;
  }
}
.page-top .approach__label {
  font-size: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__label {
    font-size: 1.8rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__label br {
    display: none;
  }
}
.page-top .approach__contents {
  padding-top: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__contents {
    padding-top: 10rem;
  }
}
.page-top .approach__item {
  background: var(--base-color);
  padding: 1rem 6.5104166667vw 8rem;
  border-radius: 3rem;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__item {
    padding: 0 2rem 6rem;
    border-radius: 1rem;
    margin: -1rem;
  }
}
.page-top .approach__item::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1750/816;
  background: url(../images/bg_wave_03.webp) no-repeat center/contain;
  position: absolute;
  bottom: 4rem;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__item::before {
    aspect-ratio: 375/639;
    background: url(../images/bg_wave_sp.webp) no-repeat center/contain;
    top: 0;
    bottom: unset;
  }
}
.page-top .approach__title {
  display: flex;
  align-items: baseline;
  gap: 2.4rem;
  margin-bottom: 4rem;
  color: var(--color-brown);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__title {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: -6rem 0 2rem;
  }
}
.page-top .approach__title p:nth-of-type(1) {
  font-size: 10rem;
  line-height: var(--lh-16);
  letter-spacing: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__title p:nth-of-type(1) {
    font-size: 8rem;
  }
}
.page-top .approach__title p:nth-of-type(2) {
  font-size: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__title p:nth-of-type(2) {
    font-size: 1.8rem;
  }
}
.page-top .approach__wrap {
  display: flex;
  align-items: center;
  gap: 15rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__wrap {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.page-top .approach__image {
  flex: none;
  width: 30vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__image {
    width: 100%;
  }
}
.page-top .approach__image img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__image img {
    border-radius: 1rem;
  }
}
.page-top .approach__text {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__text {
    gap: 2rem;
  }
}
.page-top .approach__text h3 {
  color: var(--color-brown);
  font-size: 5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.15em;
  white-space: nowrap;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach__text h3 {
    font-size: 2.4rem;
    line-height: var(--lh-14);
    text-align: center;
    white-space: unset;
  }
}
.page-top .approach .approachItem_01 .approach__wide {
  margin-bottom: 7.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_01 .approach__wide {
    margin-bottom: 2.4rem;
  }
}
.page-top .approach .approachItem_01 .approach__wide img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_01 .approach__wide img {
    border-radius: 1rem;
  }
}
.page-top .approach .approachItem_01 .approach__content {
  display: flex;
  gap: 5.2083333333%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_01 .approach__content {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.page-top .approach .approachItem_01 .approach__text {
  flex: none;
  width: 62.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_01 .approach__text {
    width: 100%;
  }
}
.page-top .approach .approachItem_01 .approach__list {
  display: flex;
  gap: 4.1666666667%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_01 .approach__list {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.page-top .approach .approachItem_01 .approach__point {
  flex: 1;
}
.page-top .approach .approachItem_01 .approach__point img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.page-top .approach .approachItem_01 .approach__point p {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: var(--lh-16);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_01 .approach__point p {
    font-size: 1.8rem;
    text-align: center;
  }
}
.page-top .approach .approachItem_02 {
  padding: 1rem 14.3229166667vw 8rem 6.5104166667vw;
  background: #f5f1eb;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_02 {
    padding: 0 2rem 6rem;
  }
}
.page-top .approach .approachItem_03 {
  padding: 1rem 14.3229166667vw 8rem 6.5104166667vw;
  background: #ebe7e1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_03 {
    padding: 0 2rem 6rem;
  }
}
.page-top .approach .approachItem_03 .approach__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_03 .approach__tags {
    gap: 1rem;
  }
}
.page-top .approach .approachItem_03 .approach__tags li {
  display: grid;
  place-content: center;
  width: calc((100% - 2.5rem) / 2);
  height: 6.4rem;
  background: var(--color-light-beige);
  border-radius: 0.5rem;
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_03 .approach__tags li {
    width: calc((100% - 1rem) / 2);
    height: 3.2rem;
    font-size: 1.4rem;
  }
}
.page-top .approach .approachItem_03 .approach__tags li span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .approach .approachItem_03 .approach__tags li span span {
  font-size: 1.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .approach .approachItem_03 .approach__tags li span span {
    font-size: 1.2rem;
  }
}
.page-top .c-treatment {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8rem;
  padding-bottom: 15rem;
  margin-top: -3rem;
  background: #f5f4f3;
  border-radius: 3rem 3rem 0 0;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment {
    gap: 4rem;
    padding-bottom: 8rem;
    border-radius: 2rem 2rem 0 0;
  }
}
.page-top .c-treatment::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/742;
  background: url(../images/bg_wave_01.webp) no-repeat center/contain;
  position: absolute;
  bottom: 42rem;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment::after {
    aspect-ratio: 375/639;
    background: url(../images/bg_wave_sp.webp) no-repeat center/contain;
  }
}
.page-top .c-treatment .bgText {
  color: var(--color-light-beige);
  mix-blend-mode: multiply;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment .bgText {
    font-size: 6.5rem;
    top: 20rem;
    left: 0;
    translate: 0;
    z-index: 1;
  }
}
.page-top .c-treatment__visual {
  width: 100%;
}
.page-top .c-treatment__visual img {
  width: 100%;
  height: auto;
}
.page-top .c-treatment__lead {
  width: min(120rem, 100%);
  margin-top: -16rem;
  padding-top: 8rem;
  background: #f5f4f3;
  border-radius: 3rem 3rem 0 0;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__lead {
    width: calc(100% - 4rem);
    margin-top: -12rem;
    padding-top: 5rem;
    border-radius: 2rem 2rem 0 0;
  }
}
.page-top .c-treatment__inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6rem;
  width: min(85rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__inside {
    gap: 3rem;
  }
}
.page-top .c-treatment__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__title {
    gap: 1rem;
    text-align: center;
  }
}
.page-top .c-treatment__title span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.2em;
}
.page-top .c-treatment__title span:nth-of-type(1) {
  font-size: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__title span:nth-of-type(1) {
    font-size: 2rem;
  }
}
.page-top .c-treatment__title span:nth-of-type(2) {
  font-size: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__title span:nth-of-type(2) {
    font-size: 3rem;
    white-space: nowrap;
  }
}
.page-top .c-treatment__icon {
  width: 40rem;
  position: absolute;
  top: -28rem;
  right: -10rem;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__icon {
    width: 14rem;
    top: -14rem;
    right: -2rem;
  }
}
.page-top .c-treatment__icon img {
  width: 100%;
  height: auto;
}
.page-top .c-treatment__unit {
  display: flex;
  align-items: center;
  gap: 12rem;
  width: 100%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__unit {
    flex-direction: column;
    gap: 2.4rem;
    padding: 0 2rem;
  }
}
.page-top .c-treatment__image {
  flex: none;
  width: 43.75vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__image {
    width: calc(100% + 2rem);
    margin-left: -2rem;
  }
}
.page-top .c-treatment__image img {
  width: 100%;
  height: auto;
  border-radius: 0 2rem 2rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__image img {
    border-radius: 0 1rem 1rem 0;
    aspect-ratio: 355/200;
  }
}
.page-top .c-treatment__text {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 60rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__text {
    gap: 2rem;
    width: 100%;
  }
}
.page-top .c-treatment__text h2,
.page-top .c-treatment__text h3 {
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__text h2,
  .page-top .c-treatment__text h3 {
    font-size: 2.2rem;
    line-height: var(--lh-16);
  }
}
.page-top .c-treatment__text h2 span,
.page-top .c-treatment__text h3 span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .c-treatment__text h2 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__text h2 {
    gap: 1rem;
  }
}
.page-top .c-treatment__label {
  width: fit-content;
  padding: 0.2rem 2.4rem;
  background: var(--color-light-beige);
  border-radius: 1rem;
  font-size: 2.4rem;
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__label {
    font-size: 1.8rem;
  }
}
.page-top .c-treatment__list {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  width: min(120rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__list {
    gap: 2.4rem;
    padding: 0 2rem;
  }
}
.page-top .c-treatment__list ul {
  display: flex;
  gap: 7.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__list ul {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.page-top .c-treatment__list ul:nth-of-type(2) {
  justify-content: flex-end;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__list ul:nth-of-type(2) {
    flex-direction: column;
  }
}
.page-top .c-treatment__list li {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__list li {
    gap: 1.6rem;
  }
  .page-top .c-treatment__list li:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.page-top .c-treatment__list li img {
  flex: none;
  width: 25rem;
  height: 100%;
  border-radius: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__list li img {
    width: 16rem;
  }
}
.page-top .c-treatment__list li h3,
.page-top .c-treatment__list li h4 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__list li h3,
  .page-top .c-treatment__list li h4 {
    gap: 1rem;
    font-size: 1.6rem;
    line-height: var(--lh-16);
  }
}
.page-top .c-treatment__list li h3::after,
.page-top .c-treatment__list li h4::after {
  content: "";
  display: block;
  width: 7.2rem;
  height: 1px;
  background: var(--color-brown);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__list li h3::after,
  .page-top .c-treatment__list li h4::after {
    width: 5.6rem;
  }
}
.page-top .c-treatment__link {
  display: flex;
  justify-content: center;
  gap: 8rem;
  width: min(88rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__link {
    padding: 0 2rem;
    flex-direction: column;
    gap: 3.2rem;
  }
}
.page-top .c-treatment__feature {
  display: flex;
  gap: 4.5rem;
  width: min(120rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__feature {
    flex-direction: column;
    gap: 2.4rem;
    padding: 0 2rem;
  }
}
.page-top .c-treatment__feature li {
  flex: 1;
  padding: 6.4rem 3.2rem;
  background: #bcb19f;
  border-radius: 2rem;
  color: var(--base-color);
  font-size: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment__feature li {
    padding: 2.4rem;
    border-radius: 1rem;
    font-size: 1.8rem;
  }
}
.page-top .c-treatment .opinion,
.page-top .c-treatment .inhouse {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(120rem, 100%);
  margin: 12rem 0 auto;
  background: var(--color-cream);
  border-radius: 2rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment .opinion,
  .page-top .c-treatment .inhouse {
    width: calc(100% - 4rem);
    padding: 6rem 1.5rem;
    margin: 6rem 0 auto;
  }
}
.page-top .c-treatment .opinion__en,
.page-top .c-treatment .inhouse__en {
  font-size: 15rem;
  letter-spacing: 0.1em;
  color: #bfaea7;
  mix-blend-mode: multiply;
  white-space: nowrap;
  position: absolute;
  top: -14rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .c-treatment .opinion__en,
  .page-top .c-treatment .inhouse__en {
    font-size: 5rem;
    letter-spacing: 0.05em;
    top: -4rem;
  }
}
.page-top .implant .opinion {
  padding: 12rem 10rem 7.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .implant .opinion {
    padding: 6rem 1.5rem;
  }
}
.page-top .implant .opinion h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .implant .opinion h3 {
    gap: 3rem;
    margin-bottom: 5.2rem;
  }
}
.page-top .implant .opinion h3 span:nth-of-type(1) {
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  color: var(--color-brown);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: rgba(120, 43, 13, 0.6);
  text-underline-offset: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .implant .opinion h3 span:nth-of-type(1) {
    font-size: 1.8rem;
    text-underline-offset: 0.5rem;
  }
}
.page-top .implant .opinion h3 span:nth-of-type(2) {
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .implant .opinion h3 span:nth-of-type(2) {
    font-size: 2.2rem;
  }
}
.page-top .implant .opinion__links {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .implant .opinion__links {
    flex-direction: column;
    gap: 2rem;
  }
}
.page-top .implant .opinion__links::after {
  order: 2;
  content: "";
  display: block;
  width: 1px;
  height: 7rem;
  background: #bfaea7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .implant .opinion__links::after {
    width: 100%;
    height: 1px;
  }
}
.page-top .implant .opinion__btn {
  order: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 3rem;
  background: var(--base-color);
  border-radius: 3.2rem;
  color: var(--font-color);
  transition: opacity 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .implant .opinion__btn {
    gap: 0.5rem;
    padding: 1rem;
  }
}
@media (hover: hover) {
  .page-top .implant .opinion__btn:hover svg {
    transform: scale(1.4);
  }
}
.page-top .implant .opinion__btn svg {
  width: 1.9rem;
  height: 1.9rem;
  fill: var(--color-brown);
  transition: transform 0.3s;
}
.page-top .implant .opinion__btn span {
  line-height: var(--lh-14);
}
.page-top .esthe .bgText {
  color: #f2efea;
  mix-blend-mode: soft-light;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .bgText {
    color: var(--color-light-beige);
    mix-blend-mode: multiply;
  }
}
.page-top .esthe::after {
  background: url(../images/bg_wave_02.webp) no-repeat center/contain;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe::after {
    aspect-ratio: 375/639;
    background: url(../images/bg_wave_sp.webp) no-repeat center/contain;
  }
}
.page-top .esthe .c-treatment__unit {
  flex-direction: row-reverse;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .c-treatment__unit {
    align-items: unset;
    flex-direction: column;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .c-treatment__unit h2 {
    order: 1;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .c-treatment__unit .c-desc {
    order: 3;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .c-treatment__image {
    order: 2;
    margin: 0 -2rem 0 0;
  }
  .page-top .esthe .c-treatment__image img {
    border-radius: 1rem 0 0 1rem;
  }
}
.page-top .esthe .c-treatment__text {
  gap: 3.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .c-treatment__text {
    display: contents;
  }
}
.page-top .esthe .inhouse {
  flex-direction: row;
  gap: 8rem;
  padding: 7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .inhouse {
    gap: 4rem;
    flex-direction: column-reverse;
    padding: 6rem 1.5rem;
  }
}
.page-top .esthe .inhouse__image {
  width: min(37.6rem, 100%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .inhouse__image {
    padding: 0 1rem;
  }
}
.page-top .esthe .inhouse__image img {
  width: 100%;
  height: auto;
}
.page-top .esthe .inhouse__text {
  flex: 1;
}
.page-top .esthe .inhouse__text h3 {
  width: 100%;
  margin-bottom: 2rem;
  border-bottom: 1px solid #bfaea7;
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .inhouse__text h3 {
    padding-bottom: 2rem;
    font-size: 2.2rem;
    text-align: center;
  }
}
.page-top .esthe .inhouse__text ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.page-top .esthe .inhouse__text li {
  padding-left: 1.5rem;
  font-size: 2.2rem;
  line-height: var(--lh-14);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .esthe .inhouse__text li {
    font-size: 1.8rem;
  }
}
.page-top .esthe .inhouse__text li::before {
  content: "";
  flex: none;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  background: var(--color-light-beige);
  border-radius: 50%;
  position: absolute;
  top: 1rem;
  left: 0;
}
.page-top .case {
  padding: 28rem 0 20rem;
  background: url(../images/home_23.webp) no-repeat center top/cover;
  color: #fff;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case {
    padding: 10rem 0 8rem;
    background: url(../images/home_23_sp.webp) no-repeat center top/cover;
  }
}
.page-top .case::before {
  content: "";
  display: block;
  width: 100%;
  height: 50rem;
  background: #f5f4f3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case::before {
    height: 5rem;
  }
}
.page-top .case .bgText {
  color: #bcb19f;
  opacity: 0.2;
  left: 50%;
  translate: -50% 0;
}
.page-top .case h2 {
  margin-bottom: 15rem;
  font-size: 5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.2em;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case h2 {
    margin-bottom: 10rem;
    font-size: 3rem;
    letter-spacing: 0.1em;
  }
}
.page-top .case__unit {
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__unit {
    gap: 2.4rem;
    margin-bottom: 9rem;
  }
}
.page-top .case__main img, .page-top .case__sub img {
  width: 100%;
  height: auto;
}
.page-top .case__item {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.page-top .case__item.before .case__main img {
  border-radius: 0 2rem 2rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.before .case__main img {
    border-radius: 0 1rem 1rem 0;
  }
}
.page-top .case__item.before .case__main p {
  top: 0;
  right: -30rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.before .case__main p {
    top: -6rem;
    right: unset;
    left: 2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.before .case__main p::before {
    margin-top: 2.4rem;
  }
}
.page-top .case__item.before .case__sub {
  margin-top: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.before .case__sub {
    margin: 0 0 0 auto;
  }
}
.page-top .case__item.before .case__sub img {
  border-radius: 2rem 0 0 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.before .case__sub img {
    border-radius: 1rem 0 0 1rem;
  }
}
.page-top .case__item.after {
  flex-direction: row-reverse;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.after {
    flex-direction: column-reverse;
  }
}
.page-top .case__item.after .case__main {
  margin-top: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.after .case__main {
    margin: 0 0 0 auto;
  }
}
.page-top .case__item.after .case__main img {
  border-radius: 2rem 0 0 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.after .case__main img {
    border-radius: 1rem 0 0 1rem;
  }
}
.page-top .case__item.after .case__main p {
  flex-direction: row-reverse;
  bottom: 0;
  left: -30rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.after .case__main p {
    flex-direction: unset;
    bottom: -6rem;
    left: unset;
    right: 2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.after .case__main p::before {
    border-top: none;
    border-bottom: 1px solid #bcb19f;
    margin-top: -2.4rem;
  }
}
.page-top .case__item.after .case__sub img {
  border-radius: 0 2rem 2rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item.after .case__sub img {
    border-radius: 0 1rem 1rem 0;
  }
}
.page-top .case__main {
  width: 55.2083333333vw;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__main {
    width: 33.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__main img {
    aspect-ratio: 355/180;
  }
}
.page-top .case__main p {
  display: flex;
  gap: 3rem;
  align-items: center;
  font-size: 5rem;
  color: #bcb19f;
  position: absolute;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__main p {
    gap: 1rem;
    align-items: unset;
    font-size: 3.2rem;
  }
}
.page-top .case__main p::before {
  content: "";
  display: block;
  width: 22.3rem;
  height: 1px;
  border-top: 1px solid #bcb19f;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__main p::before {
    width: 8rem;
    height: 4.8rem;
    border-left: 1px solid #bcb19f;
  }
}
.page-top .case__sub {
  width: 40.625vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__sub {
    width: 28.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__sub img {
    aspect-ratio: 285/150;
  }
}
.page-top .case__detail {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  width: min(85rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__detail {
    padding: 0 2rem;
  }
}
.page-top .case__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
  height: 15rem;
  background: #a49782;
  border-radius: 2rem;
  color: var(--base-color);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__link {
    padding: 0 2.4rem;
    justify-content: space-between;
    height: 12rem;
    border-radius: 1rem;
  }
}
@media (hover: hover) {
  .page-top .case__link:hover svg {
    transform: rotate(90deg) scale(1.2);
  }
}
.page-top .case__link span {
  font-size: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__link span {
    font-size: 2rem;
    line-height: var(--lh-14);
  }
}
.page-top .case__link svg {
  width: 2rem;
  height: 2rem;
  fill: var(--base-color);
  transform: rotate(90deg);
  transition: transform 0.3s;
}
.page-top .case__link img {
  width: auto;
  height: 100%;
  aspect-ratio: 161/150;
  position: absolute;
  top: 0;
  left: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__link img {
    left: 1rem;
  }
}
.page-top .case.caseImplant {
  padding: 28rem 0 23rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case.caseImplant {
    padding: 12rem 0 11rem;
  }
}
.page-top .case.caseEsthe {
  border-radius: 0 0 3rem 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case.caseEsthe {
    border-radius: 0 0 2rem 2rem;
  }
}
.page-top .fullMouth {
  margin: 35rem 0 15rem;
  padding: 15rem 0;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth {
    margin: 12rem 0 8rem;
    padding: 7rem 3rem 8rem 2rem;
  }
}
.page-top .fullMouth::before {
  content: "";
  display: block;
  width: calc(100% - 12rem);
  height: 100%;
  background: #f2efea;
  border-radius: 0 3rem 3rem 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth::before {
    width: calc(100% - 1rem);
    border-radius: 0 2rem 2rem 0;
  }
}
.page-top .fullMouth::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/742;
  background: url(../images/bg_wave_01.webp) no-repeat center/contain;
  position: absolute;
  top: -35rem;
  left: 0;
  z-index: -2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth::after {
    aspect-ratio: 375/639;
    background: url(../images/bg_wave_sp.webp) no-repeat center/contain;
    top: -20rem;
  }
}
.page-top .fullMouth .bgText {
  color: #e2dcd1;
  mix-blend-mode: multiply;
  top: -25rem;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth .bgText {
    font-size: 6rem;
    top: -5rem;
    left: 1rem;
    translate: 0;
  }
}
.page-top .fullMouth__inner {
  width: min(120rem, 100%);
  margin-inline: auto;
}
.page-top .fullMouth__text {
  display: flex;
  align-items: center;
  gap: 7.2916666667vw;
  margin-bottom: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__text {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
  }
}
.page-top .fullMouth__title {
  flex: none;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__title {
    text-align: center;
  }
}
.page-top .fullMouth__title span {
  display: block;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.page-top .fullMouth__title span:nth-of-type(1) {
  margin-bottom: 2rem;
  font-size: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__title span:nth-of-type(1) {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
.page-top .fullMouth__title span:nth-of-type(2) {
  font-size: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__title span:nth-of-type(2) {
    font-size: 3rem;
  }
}
.page-top .fullMouth__case {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__case {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 4rem;
  }
}
.page-top .fullMouth__item {
  flex: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__item {
    width: 100%;
  }
}
.page-top .fullMouth__item p {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #bcb19f;
  font-size: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__item p {
    gap: 1rem;
    font-size: 3.2rem;
  }
}
.page-top .fullMouth__item p::after {
  flex: 1;
  content: "";
  height: 1px;
  background: #bcb19f;
}
.page-top .fullMouth__item img {
  width: 100%;
  height: auto;
  border-radius: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__item img {
    border-radius: 1rem;
    aspect-ratio: 325/175;
  }
}
.page-top .fullMouth__arrow {
  flex: none;
  width: 3rem;
  height: 5rem;
  margin-top: 6rem;
  background: #cccccc;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__arrow {
    width: 4rem;
    height: 2rem;
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.page-top .fullMouth__detail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6rem;
  width: min(85rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullMouth__detail {
    gap: 4rem;
  }
}
.page-top .menu {
  padding: 20rem 0 18rem;
  background: #f5f4f3;
  border-radius: 3rem 3rem 0 0;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu {
    padding: 8rem 1rem 11rem;
    border-radius: 2rem 2rem 0 0;
  }
}
.page-top .menu::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/742;
  background: url(../images/bg_wave_02.webp) no-repeat center/contain;
  position: absolute;
  bottom: 30rem;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu::before {
    aspect-ratio: 375/639;
    background: url(../images/bg_wave_sp.webp) no-repeat center/contain;
    bottom: 60rem;
  }
}
.page-top .menu .bgText {
  top: -5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .bgText {
    font-size: 7rem;
    top: 1.5rem;
  }
}
.page-top .menu h2 {
  margin-bottom: 10rem;
  font-size: 5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu h2 {
    margin-bottom: 4.2rem;
    font-size: 3rem;
  }
}
.page-top .menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  width: min(120rem, 100%);
  margin: 0 auto 21rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__list {
    gap: 1rem;
    margin-bottom: 12rem;
  }
}
.page-top .menu__list a {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  width: calc((100% - 9rem) / 4);
  aspect-ratio: 1/1;
  padding: 4rem 2rem 0;
  background: #f2efea;
  border-radius: 1rem;
  text-align: center;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__list a {
    justify-content: center;
    gap: 0.5rem;
    width: calc((100% - 1rem) / 2);
    padding: 1.5rem 0 0;
  }
}
@media (hover: hover) {
  .page-top .menu__list a:hover::after {
    transform: scale(1.2);
  }
}
.page-top .menu__list a::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: #ac6c53;
  border-radius: 50%;
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  transition: transform 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__list a::after {
    width: 1rem;
    height: 1rem;
    right: 1.2rem;
    bottom: 1.2rem;
  }
}
.page-top .menu__list a img {
  width: 10rem;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__list a img {
    width: 6rem;
  }
}
.page-top .menu__list a span {
  line-height: var(--lh-14);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__list a span {
    font-size: 1.4rem;
  }
}
.page-top .menu__list a span:nth-of-type(2) {
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__list a span:nth-of-type(2) {
    font-size: 1.8rem;
  }
}
.page-top .menu .dental {
  width: min(120rem, 100%);
  margin-inline: auto;
  padding: 12.5rem 8rem 8rem;
  border-radius: 3rem;
  background: #f2efea;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental {
    padding: 6rem 1.5rem;
    border-radius: 2rem;
  }
}
.page-top .menu .dental__en {
  font-size: 15rem;
  letter-spacing: 0.1em;
  color: #bfaea7;
  mix-blend-mode: multiply;
  white-space: nowrap;
  position: absolute;
  top: -12rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__en {
    font-size: 5rem;
    letter-spacing: 0.05em;
    top: -3.9rem;
  }
}
.page-top .menu .dental__inner {
  display: flex;
  gap: 7.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__inner {
    flex-direction: column;
    gap: 4rem;
  }
}
.page-top .menu .dental__text {
  flex: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__text {
    display: contents;
  }
}
.page-top .menu .dental__text h3 {
  width: 100%;
  margin-bottom: 2rem;
  border-bottom: 1px solid #bfaea7;
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__text h3 {
    order: 1;
    padding-bottom: 2rem;
    margin-bottom: -2rem;
    font-size: 2.2rem;
    text-align: center;
  }
}
.page-top .menu .dental__text .c-desc {
  margin-bottom: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__text .c-desc {
    order: 2;
    margin-bottom: 0;
  }
}
.page-top .menu .dental__text .c-button {
  order: 4;
}
.page-top .menu .dental__case {
  flex: none;
  width: 45.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__case {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.page-top .menu .dental__case .c-caseBox {
  margin-bottom: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__case .c-caseBox {
    width: 100%;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__case .c-accordion {
    width: 100%;
  }
}
.page-top .menu .dental__case .c-accordion__content {
  padding: 0 3.2rem 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .dental__case .c-accordion__content {
    padding: 0 2rem 2rem;
  }
}
.page-top .menu .dental__case .c-accordion__row {
  align-items: unset;
  flex-direction: column;
  gap: 1rem;
}
.page-top .menu .dental__case .c-accordion__row dt {
  width: fit-content;
}
.page-top .recruit {
  background: #ffffff;
}
.page-top .recruit::after {
  bottom: 0;
}
.page-top .recruit .bgText {
  color: #f2efea;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .recruit .bgText {
    color: var(--color-light-beige);
  }
}
.page-top .recruit .c-treatment__lead {
  background: #ffffff;
}
.page-top .news {
  width: min(120rem, 100%);
  padding: 7rem;
  margin: 6rem auto 15rem;
  background: var(--color-cream);
  border-radius: 2rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news {
    width: calc(100% - 2rem);
    padding: 6rem 1rem;
    margin: 4rem auto 8rem;
  }
}
.page-top .news__bg {
  color: var(--color-light-beige);
  font-size: 25rem;
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__bg {
    font-size: 8rem;
  }
}
.page-top .news__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: min(86rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__inner {
    gap: 4rem;
  }
}
.page-top .news__heading {
  font-size: 5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__heading {
    font-size: 3rem;
  }
}
.page-top .news__tab {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__tab {
    gap: 1rem;
    flex-wrap: wrap;
  }
}
.page-top .news__tab button {
  flex: 1;
  display: grid;
  place-content: center;
  height: 5rem;
  border: 1px solid var(--color-light-beige);
  border-radius: 2.5rem;
  color: var(--color-olive);
  cursor: pointer;
  transition: all 0.3s;
}
@media (hover: hover) {
  .page-top .news__tab button:hover {
    background: var(--color-olive);
    color: var(--base-color);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__tab button {
    flex: unset;
    width: calc((100% - 1rem) / 2);
    height: 3rem;
    font-size: 1.4rem;
  }
}
.page-top .news__tab button.active {
  background: var(--color-olive);
  color: var(--base-color);
  position: relative;
}
.page-top .news__tab button.active::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.5rem;
  background: var(--base-color);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__tab button.active::after {
    width: 0.6rem;
    height: 0.3rem;
    bottom: 0.3rem;
  }
}
.page-top .news__unit {
  display: none;
}
.page-top .news__unit.active {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__unit.active {
    gap: 2rem;
  }
}
.page-top .news__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px dotted #d7d7d7;
  color: var(--font-color);
  line-height: var(--lh-16);
  transition: color 0.3s;
}
@media (hover: hover) {
  .page-top .news__item:hover {
    color: var(--color-brown);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__item {
    padding-bottom: 2rem;
  }
}
.page-top .news__category {
  display: grid;
  place-content: center;
  min-width: 10rem;
  height: 3rem;
  padding: 0 1.5rem;
  background: var(--color-olive);
  border-radius: 1.5rem;
  font-size: 1.4rem;
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__category {
    min-width: 8rem;
  }
}
.page-top .news__title {
  width: 100%;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .news__title {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}
.page-top .news .c-button {
  margin-inline: auto;
}

/* ------------------------------------------------------------

記事一覧

------------------------------------------------------------ */
.archive {
  padding-top: 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .archive {
    padding: 8rem 2rem 0;
  }
}
.archive__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.archive__links .c-button {
  width: calc((100% - 2rem) / 3);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .archive__links .c-button {
    width: 100%;
  }
}
.archive__inner {
  padding-top: 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .archive__inner {
    grid-template-columns: 1fr;
  }
}

.articleUnit {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #f2efea;
  padding: 2rem;
  border-radius: 0.5rem;
}
.articleUnit__meta {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 1.4rem;
  line-height: 1;
}
.articleUnit__category {
  display: grid;
  place-content: center;
  min-width: 8rem;
  height: 3rem;
  padding: 0 1rem;
  background: var(--color-olive);
  border-radius: 1.5rem;
  color: var(--base-color);
  white-space: nowrap;
}
.articleUnit__title {
  flex: 1;
  line-height: var(--lh-16);
  font-weight: 700;
}
.articleUnit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 460/305;
  object-fit: cover;
}
.articleUnit__image .c-caseBox {
  border-radius: 0.5rem;
}
.articleUnit__image .c-caseBox .imageSlider__before img,
.articleUnit__image .c-caseBox .imageSlider__after img {
  aspect-ratio: 460/305;
}
.articleUnit .c-button {
  min-height: 5rem;
  padding: 0 4rem;
}

.PageNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .PageNavi {
    gap: 1rem;
  }
}
.PageNavi .page-numbers {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  background: var(--color-cream);
  color: var(--font-color);
  border-radius: 0.5rem;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .PageNavi .page-numbers:hover {
    opacity: 0.7;
  }
}
.PageNavi .page-numbers.current {
  background: var(--color-brown);
  color: var(--base-color);
  pointer-events: none;
}
.PageNavi .page-numbers.dots {
  background: transparent;
}
.PageNavi .page-numbers.prev, .PageNavi .page-numbers.next {
  width: auto;
  background: transparent;
  border-radius: 0;
}

/* ------------------------------------------------------------

記事詳細

------------------------------------------------------------ */
.single {
  padding-top: 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single {
    padding: 8rem 2rem 0;
  }
}
.single .h2-title {
  margin-bottom: 4rem;
}
.single .h3-title {
  margin-bottom: 3.2rem;
}
.single__unit {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__unit {
    flex-direction: column;
  }
}
.single__unit figure {
  width: calc((100% - 4rem) / 2);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__unit figure {
    width: 100%;
  }
}
.single__unit figure img {
  width: 100%;
  height: auto;
}
.single__unit figure figcaption {
  margin-top: 2rem;
  padding: 1.2rem;
  background: var(--color-cream);
  line-height: var(--lh-16);
  text-align: center;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.single__desc:not(:last-child) {
  margin-bottom: 4rem;
}
.single__desc p,
.single__desc li {
  font-size: 1.6rem;
  line-height: 1.8;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
.single__desc strong {
  font-weight: 900;
  font-size: 1.8rem;
}
.single__desc ol {
  margin-left: 2.5rem;
}
.single__desc ol li {
  list-style-type: decimal;
}
.single__desc ul {
  margin-left: 2.5rem;
}
.single__desc ul li {
  list-style-type: disc;
}
.single__desc a {
  color: #fff;
  text-decoration: underline;
}
.single__desc hr {
  width: 100%;
  border-style: solid;
  border-color: var(--color-beige);
}
.single__desc del {
  text-decoration: line-through;
}
.single__desc em {
  font-style: italic;
}
.single__desc blockquote {
  padding: 1rem;
  background: var(--color-cream);
}
.single__desc h2,
.single__desc h3,
.single__desc h4,
.single__desc h5,
.single__desc h6 {
  font-weight: 600;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1.6;
}
.single__desc h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  font-size: 3.5rem;
  letter-spacing: 0.35rem;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h2 {
    gap: 3rem;
    font-size: 2.4rem;
    letter-spacing: 0.24rem;
    gap: 0.8rem;
  }
}
.single__desc h2::after {
  content: "";
  display: block;
  margin-inline: auto;
  width: 24rem;
  height: 1rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNDEuNzA2IiBoZWlnaHQ9IjEwLjYwNCIgdmlld0JveD0iMCAwIDI0MS43MDYgMTAuNjA0Ij4gPHBhdGggaWQ9IuODkeOCuV8zNzU4MiIgZGF0YS1uYW1lPSLjg5HjgrkgMzc1ODIiIGQ9Ik0wLS4yNjRzNTkuMTQzLTksMTE5LjE0My05UzI0MC0uMjY0LDI0MC0uMjY0IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjg1NCAxMC4wMTQpIiBmaWxsPSJub25lIiBzdHJva2U9IiM3ODJiMGQiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLXdpZHRoPSIxLjUiLz48L3N2Zz4=") no-repeat center/contain;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h2::after {
    width: 18rem;
    height: 0.7rem;
  }
}
.single__desc h3 {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 3rem;
  letter-spacing: 0.3rem;
  border-top: 1px solid var(--color-light-beige);
  border-bottom: 1px solid var(--color-light-beige);
  padding-block: 1.2rem 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h3 {
    font-size: 2.2rem;
    letter-spacing: 0.22rem;
  }
}
.single__desc h3::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  border-top: 1px dashed var(--color-light-beige);
}
.single__desc h3::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  border-top: 1px dashed var(--color-light-beige);
  padding-block-start: 0.5rem;
  margin-block-start: -0.5rem;
}
.single__desc h4 {
  display: flex;
  gap: 1.6rem;
  font-size: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h4 {
    font-size: 2rem;
  }
}
.single__desc h4::before {
  flex: none;
  content: "";
  display: block;
  width: 0.15rem;
  min-height: 100%;
  background: var(--color-brown);
}
.single__desc h5 {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 2.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h5 {
    font-size: 1.8rem;
  }
}
.single__desc h5::before {
  content: "";
  flex: none;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--color-light-beige);
  margin-top: 1.3rem;
  border-radius: 50%;
}
.single__desc h6 {
  font-size: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h6 {
    font-size: 1.8rem;
  }
}
.single .c-table {
  margin-bottom: 8rem;
}
.single .supervision,
.single .overview {
  padding: 4.8rem 3.2rem;
  border: 1px solid var(--color-olive);
  border-radius: 0.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .supervision,
  .single .overview {
    padding: 3.2rem 2rem;
  }
}
.single .supervision__title,
.single .overview__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.4rem;
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.single .supervision__title span,
.single .overview__title span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.single .supervision__title span:nth-of-type(1),
.single .overview__title span:nth-of-type(1) {
  font-size: 1.8rem;
}
.single .supervision__unit,
.single .overview__unit {
  display: flex;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .supervision__unit,
  .single .overview__unit {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.single .supervision__image,
.single .overview__image {
  flex: none;
  width: 30rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .supervision__image,
  .single .overview__image {
    width: 100%;
  }
}
.single .supervision__image figure,
.single .overview__image figure {
  margin-bottom: 1.6rem;
}
.single .supervision__image img,
.single .overview__image img {
  width: 100%;
  height: auto;
}
.single .supervision__desc,
.single .overview__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single .supervision__desc p,
.single .overview__desc p {
  text-align: justify;
}
.single .supervision {
  margin-bottom: 6rem;
}
.single .supervision__name {
  font-weight: 700;
  text-align: center;
}
.single .supervision__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.single .overview__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.single .overview__info a {
  text-decoration: underline;
  color: var(--font-color);
}
@media (hover: hover) {
  .single .overview__info a:hover {
    text-decoration: none;
  }
}
.single .overview__info dl > div {
  display: flex;
  gap: 1.6rem;
}
.single .overview__info dl > div dt {
  flex: none;
  width: 4rem;
  font-weight: 700;
}

.singleNavi {
  padding-top: 8rem;
}
.singleNavi__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
}
.singleNavi__prev, .singleNavi__archive, .singleNavi__next {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--font-color);
  transition: color 0.3s;
}
@media (hover: hover) {
  .singleNavi__prev:hover, .singleNavi__archive:hover, .singleNavi__next:hover {
    color: var(--color-brown);
  }
  .singleNavi__prev:hover svg, .singleNavi__archive:hover svg, .singleNavi__next:hover svg {
    fill: var(--color-brown);
  }
}
.singleNavi__prev svg, .singleNavi__archive svg, .singleNavi__next svg {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: -0.2rem;
  fill: var(--font-color);
  transition: fill 0.3s;
}
.singleNavi__prev svg {
  rotate: -90deg;
}
.singleNavi__next svg {
  rotate: 90deg;
}
/*# sourceMappingURL=style.css.map */
