@charset "UTF-8";
:root {
  --base-color: #ffffff;
  --font-color: #333333;
  --color-turquoise: #50b0b8;
  --color-brown: #867565;
  --color-cream: #f8f6f1;
  --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.2727272727vw;
  }
}

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;
}

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

/*button:focus-visible{outline: thin dotted #333;}*/
@font-face {
  font-family: "Cormorant Onum";
  src: url(../css/cormorant-onum.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+30-39, U+41-5A, U+61-7A;
}
* {
  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: var(--lh-18);
  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;
  }
}

.c-desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-desc p {
  text-align: justify;
}

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

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-top: 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-404 .content {
    padding: 8rem 2.4rem 0;
  }
}
.page-404 .content > p {
  margin-bottom: 4.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
}
.page-404 .content .c-button {
  margin-inline: auto;
}

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

パンくずリスト

------------------------------------------------------------ */
.breadcrumb {
  padding: 4rem 0 6.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .breadcrumb {
    padding: 4rem 2.4rem;
  }
}
.breadcrumb__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0.5rem;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  line-height: var(--lh-14);
}
.breadcrumb__item:not(:last-child)::after {
  content: "|";
  margin-left: 0.5rem;
  color: var(--font-color);
}
.breadcrumb__link {
  color: var(--color-brown);
  text-decoration: underline;
}
.breadcrumb__link:hover {
  text-decoration: none;
}

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

ボタン

------------------------------------------------------------ */
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: fit-content;
  min-height: 5.2rem;
  padding: 1.5rem 6.4rem;
  border: 1px solid #919191;
  color: var(--font-color);
  font-size: 1.6rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  transition: opacity 0.3s;
  position: relative;
}
@media (hover: hover) {
  .c-button:hover::after {
    scale: 1.2;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-button {
    margin-inline: auto;
  }
}
.c-button::after {
  flex: none;
  content: "";
  display: block;
  width: 0.8rem;
  height: 1rem;
  margin-bottom: 0.2rem;
  background: #919191;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transition: scale 0.3s;
}

.mapBtn {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  width: fit-content;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #c8c8c8;
  color: var(--font-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
}
.mapBtn svg {
  width: 2.4rem;
  height: 2.4rem;
  fill: var(--color-turquoise);
}

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

カードタイプ

------------------------------------------------------------ */
.c-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.4rem 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-card {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.c-card__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  background: var(--color-cream);
  padding: 4rem 2.4rem;
}
.c-card__title {
  font-size: 2.4rem;
  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;
}
.c-card__image img {
  width: 100%;
  height: auto;
}
.c-card.triple {
  grid-template-columns: repeat(3, 1fr);
  gap: 4.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-card.triple {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.c-card.arrow .c-card__item:not(:last-of-type) {
  position: relative;
}
.c-card.arrow .c-card__item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 2.4rem;
  background: var(--color-brown);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: -3rem;
  transition: scale 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-card.arrow .c-card__item:not(:last-of-type)::after {
    width: 2.4rem;
    height: 1.6rem;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    top: unset;
    right: unset;
    bottom: -2.8rem;
    left: 50%;
    translate: -50% 0;
  }
}

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

症例紹介
画像スライダー

------------------------------------------------------------ */
.c-caseBox__title {
  display: flex;
  height: 3.4rem;
}
.c-caseBox__title p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--base-color);
  font-size: 1.7rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  white-space: nowrap;
}
.c-caseBox__titleBefore {
  width: var(--slider-pos, 50%);
  background: #9d9384;
  border-right: 0.2rem solid #fff;
  overflow: hidden;
}
.c-caseBox__titleAfter {
  flex: 1;
  background: #8a785c;
  overflow: hidden;
}
.c-caseBox .imageSlider {
  position: relative;
  z-index: 0;
}
.c-caseBox .imageSlider__before {
  width: var(--slider-pos, 50%);
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-caseBox .imageSlider__before::before {
  content: "";
  width: 4.2rem;
  height: 100%;
  background: url(../images/bg_slider.webp) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -2.2rem;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
.c-caseBox .imageSlider__before::after {
  content: "";
  width: 0.2rem;
  height: 100%;
  background: var(--base-color);
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  z-index: 2;
  pointer-events: none;
}
.c-caseBox .imageSlider__before img {
  width: 100%;
  height: 100%;
  aspect-ratio: 380/235;
  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: 380/235;
}
.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-caseBox details {
  display: flex;
  flex-direction: column-reverse;
}
.c-caseBox details[open] summary {
  height: 6rem;
}
.c-caseBox details[open] summary::after {
  display: none;
}
.c-caseBox details summary {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  padding: 0 2rem;
  background: #f8f6f1;
  color: #867565;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  text-align: center;
  position: relative;
  cursor: pointer;
}
.c-caseBox details summary::-webkit-details-marker {
  display: none;
}
.c-caseBox details summary::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: #8a7a59;
  position: absolute;
  top: 50%;
  right: 2rem;
  translate: 0 -50%;
}
.c-caseBox details summary::after {
  content: "";
  width: 1px;
  height: 1.4rem;
  background: #8a7a59;
  position: absolute;
  top: 50%;
  right: 2.6rem;
  translate: 0 -50%;
}
.c-caseBox details summary span {
  width: 1.5rem;
  height: 1rem;
  fill: var(--base-color);
  position: absolute;
  right: 2.2rem;
  top: 50%;
  translate: 0 -50%;
  transform: rotate(-90deg);
  transition: translate 0.3s;
}
.c-caseBox details .content {
  padding: 2rem 2rem 0;
  background: var(--color-cream);
}
.c-caseBox details .content dl {
  padding-bottom: 2rem;
  border-bottom: 1px dotted #c6b99c;
}
.c-caseBox details .content dl + dl {
  padding-top: 2rem;
}
.c-caseBox details .content dl dt {
  display: inline-block;
  min-width: 8rem;
  padding: 0.2rem 1rem;
  background: var(--base-color);
  margin-bottom: 1.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.c-caseBox details .content dl dd {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}

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

院長紹介

------------------------------------------------------------ */
.c-doctor__name {
  margin-bottom: 3.2rem;
}
.c-doctor__name p,
.c-doctor__name h3 {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
.c-doctor__name p {
  font-size: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctor__name p {
    font-size: 1.8rem;
  }
}
.c-doctor__name h3 {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  font-size: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctor__name h3 {
    font-size: 2.4rem;
  }
}
.c-doctor__name h3 span {
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-doctor__inner {
  display: flex;
  gap: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctor__inner {
    flex-direction: column;
  }
}
.c-doctor__image {
  flex: none;
  width: min(50rem, 100%);
}
.c-doctor__image img {
  width: 100%;
  height: auto;
}
.c-doctor__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-doctor__list {
  background: var(--color-cream);
  padding: 4rem 6.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-doctor__list {
    padding: 4rem 2.4rem;
  }
}
.c-doctor__list ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-doctor__list ul li {
  padding-left: 2rem;
  line-height: var(--lh-16);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
.c-doctor__list ul li::before {
  content: "";
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--color-turquoise);
  position: absolute;
  top: 1rem;
  left: 0;
}
.c-doctor__list ul li a {
  color: #40260e;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-decoration: underline;
}
@media (hover: hover) {
  .c-doctor__list ul li a:hover {
    text-decoration: none;
  }
}
.c-doctor__title {
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.1em;
}

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

Q＆A

------------------------------------------------------------ */
.c-faq {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.c-faq details {
  text-align: justify;
  border-top: 2px solid var(--color-brown);
  position: relative;
}
.c-faq details summary {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 8rem 1.5rem 4rem;
  background: var(--color-cream);
  text-align: justify;
  position: relative;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-faq details summary {
    padding: 1.5rem 6rem 1.5rem 1.5rem;
  }
}
.c-faq details summary::-webkit-details-marker {
  display: none;
}
.c-faq details summary .question {
  flex: none;
  display: inline-block;
  margin-top: -0.5rem;
  font-family: "Cormorant";
  color: var(--font-color);
  font-size: 2.4rem;
  line-height: var(--lh-14);
}
.c-faq details summary .txt {
  margin-block: auto;
  color: var(--font-color);
  line-height: var(--lh-18);
  text-align: justify;
}
.c-faq details summary .ico {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  translate: 0 -50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-faq details summary .ico {
    right: 2rem;
  }
}
.c-faq details summary .ico::before, .c-faq details summary .ico::after {
  content: "";
  background: var(--color-brown);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-faq details summary .ico::before {
  width: 1.6rem;
  height: 0.2rem;
}
.c-faq details summary .ico::after {
  width: 0.2rem;
  height: 1.6rem;
}
.c-faq details[open] summary .ico::after {
  opacity: 0;
  rotate: 90deg;
}
.c-faq details[open] summary .ico::before {
  rotate: 180deg;
}
.c-faq details .content {
  background: var(--base-color);
}
.c-faq details .content__inner {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem 8rem 1.5rem 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-faq details .content__inner {
    padding: 1.5rem 6rem 1.5rem 1.5rem;
  }
}
.c-faq details .content .answer {
  flex: none;
  display: inline-block;
  margin-top: -0.5rem;
  font-family: "Cormorant";
  font-size: 2.4rem;
  line-height: var(--lh-16);
}

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

流れパターン

------------------------------------------------------------ */
.c-flow {
  display: flex;
  flex-direction: column;
  gap: 9.2rem;
  padding-top: 4.5rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow {
    gap: 6rem;
  }
}
.c-flow::before {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 4.5rem);
  background-image: radial-gradient(circle, #ae9e89 1px, transparent 1px);
  background-size: 2px 6px;
  background-repeat: repeat-y;
  position: absolute;
  top: 4.5rem;
  left: 50%;
  translate: 50% 0;
  z-index: -1;
}
.c-flow__item {
  padding: 5.6rem 4rem;
  background: var(--color-cream);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__item {
    padding: 4.8rem 2.4rem 4rem;
  }
}
.c-flow__num {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  color: var(--color-brown);
  font-size: 10.6rem;
  font-family: "Cormorant Onum", "Cormorant";
  opacity: 0.5;
  line-height: 1;
  position: absolute;
  top: -7rem;
  left: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__num {
    gap: 1rem;
    font-size: 8rem;
    top: -5rem;
    left: 3.2rem;
  }
}
.c-flow__num span {
  font-size: 4.4rem;
  font-family: "Cormorant Onum", "Cormorant";
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__num span {
    font-size: 3.2rem;
  }
}
.c-flow__unit {
  display: flex;
  align-items: center;
  gap: 4.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__unit {
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
.c-flow__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-flow__text {
    gap: 0.8rem;
  }
}
.c-flow__title {
  font-size: 2.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
}
@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.5rem;
  }
}

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

医院紹介

------------------------------------------------------------ */
.c-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8.4rem 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-info {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.c-info__item {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.c-info__title {
  display: flex;
  gap: 1rem;
  font-size: 2.4rem;
  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-info__title {
    font-size: 1.8rem;
  }
}
.c-info__title::before {
  content: "";
  flex: none;
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  margin-top: 1rem;
  background: var(--color-brown);
  border-radius: 50%;
}
.c-info__image img {
  width: 100%;
  height: auto;
}

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

リンクのコンポーネント

------------------------------------------------------------ */
.c-links {
  display: flex;
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-links {
    flex-direction: column;
    gap: 2rem;
  }
}
.c-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 25rem;
  height: 6rem;
  color: var(--base-color);
}
@media (hover: hover) {
  .c-links a:hover svg {
    scale: 1.2;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-links a {
    width: 100%;
  }
}
.c-links a svg {
  width: 2rem;
  height: 2rem;
  fill: var(--base-color);
  transition: scale 0.3s;
}
.c-links a span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  white-space: nowrap;
}
.c-links__reservation {
  background: var(--color-turquoise);
  font-size: 1.8rem;
}
.c-links__reservation .sub span {
  font-size: 1.5rem;
}
.c-links__tel {
  background: var(--color-brown);
  font-size: 2rem;
}

.c-anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-anchor {
    gap: 1rem;
  }
}

.c-pagelink {
  display: flex;
  gap: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.c-pagelink__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  min-height: 16.6rem;
  padding: 0 6.6rem 0 3.2rem;
  color: var(--base-color);
  line-height: var(--lh-16);
  position: relative;
}
@media (hover: hover) {
  .c-pagelink__item:hover::after {
    scale: 1.2;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink__item {
    min-height: 12rem;
    padding: 0 6rem 0 2.4rem;
  }
}
.c-pagelink__item::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2.2rem;
  background: var(--base-color);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 2.4rem;
  transition: scale 0.3s;
}
.c-pagelink__item.blue {
  background: var(--color-turquoise);
}
.c-pagelink__item.blue .c-pagelink__main {
  font-size: 3rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink__item.blue .c-pagelink__main {
    font-size: 2.4rem;
  }
}
.c-pagelink__item.blue .c-pagelink__main span {
  font-size: 3.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink__item.blue .c-pagelink__main span {
    font-size: 3rem;
  }
}
.c-pagelink__item.brown {
  background: var(--color-brown);
}
.c-pagelink__main {
  font-size: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pagelink__main {
    font-size: 2rem;
  }
}

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

リスト

------------------------------------------------------------ */
.c-listBox {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 5rem 7.2rem;
  background: var(--color-cream);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-listBox {
    padding: 4rem 2.4rem;
  }
}
.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-turquoise);
  position: absolute;
  top: 1rem;
  left: 0;
}
.c-listBox li a {
  color: #40260e;
  text-decoration: underline;
}
@media (hover: hover) {
  .c-listBox li a:hover {
    text-decoration: none;
  }
}

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

newsのリスト

------------------------------------------------------------ */
.c-newsList {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.c-newsList__noarticle {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.c-newsList .item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--font-color);
  padding-bottom: 1.5rem;
  border-bottom: 1px dotted #d7d7d7;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-newsList .item {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.c-newsList .item__category {
  display: grid;
  place-content: center;
  width: 8rem;
  height: 2.5rem;
  border: 1px solid #ae9e89;
  font-size: 1.4rem;
  line-height: var(--lh-16);
}
.c-newsList .item time {
  width: 9rem;
  line-height: var(--lh-16);
}
.c-newsList .item__title {
  flex: 1;
  line-height: var(--lh-16);
  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) {
  .c-newsList .item__title {
    flex: auto;
    width: 100%;
    text-decoration: underline;
  }
}

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

目次

------------------------------------------------------------ */
.c-outline {
  padding: 8.4rem 5.6rem;
  background: var(--color-cream);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-outline {
    padding: 4rem 2.4rem;
  }
}
.c-outline h2 {
  color: #dce5e6;
  font-size: 7rem;
  font-family: "Cormorant";
  line-height: 1;
  letter-spacing: 0.1em;
  mix-blend-mode: multiply;
  position: absolute;
  top: -3rem;
  left: 5.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-outline h2 {
    font-size: 4.2rem;
    top: -2rem;
    left: 2.4rem;
  }
}
.c-outline ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-outline ul {
    flex-direction: column;
  }
}
.c-outline li {
  width: calc((100% - 4rem) / 2);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-outline li {
    width: 100%;
  }
}
.c-outline li a {
  display: block;
  padding-left: 2.4rem;
  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: 1.4rem;
  height: 2px;
  background: var(--color-turquoise);
  position: absolute;
  top: 1rem;
  left: 0;
}

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

ページタイトル

------------------------------------------------------------ */
.c-pageTitle {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding: 20rem 0 8rem;
  background: #edf7f8;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle {
    padding: 22rem 2.4rem 4rem;
  }
}
.c-pageTitle::after {
  content: "";
  display: block;
  width: 47.65625vw;
  aspect-ratio: 915/1026;
  background: url(../images/bg_icon_03_page-title.webp) no-repeat center/contain;
  position: absolute;
  top: -5rem;
  right: -5rem;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pageTitle::after {
    width: 30rem;
    top: 20rem;
    right: -2rem;
  }
}
.c-pageTitle p {
  width: min(100rem, 100%);
  margin-inline: auto;
  font-size: 4rem;
  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) {
  .c-pageTitle p {
    font-size: 3.2rem;
  }
}

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

PICK UP

------------------------------------------------------------ */
.c-pickup {
  width: 100vw;
  margin: 12rem calc(50% - 50vw) 0;
  padding: 10rem 0 8.6rem;
  background: var(--color-cream);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup {
    width: 100%;
    margin: 8rem 0 0;
    padding: 8rem 2.4rem !important;
  }
}
.c-pickup__inner {
  max-width: 100rem;
  margin-inline: auto;
  padding: 11rem 7.2rem 6.4rem;
  background: var(--base-color);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__inner {
    padding: 6rem 2rem 3rem;
  }
}
.c-pickup__inner::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 50%;
  background: var(--color-turquoise);
  position: absolute;
  top: 50%;
  left: -0.5rem;
  translate: 0 -50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__inner::before {
    width: 50%;
    height: 0.5rem;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
}
.c-pickup__label {
  color: var(--color-turquoise);
  font-size: 11rem;
  font-family: "Cormorant";
  line-height: 1;
  opacity: 0.5;
  letter-spacing: 0.1em;
  white-space: nowrap;
  position: absolute;
  top: -5rem;
  left: 7.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__label {
    font-size: 6rem;
    top: -11rem;
    left: 50%;
    translate: -50% 0;
  }
}
.c-pickup__title {
  font-size: 2.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  margin-bottom: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__title {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.c-pickup__unit {
  display: flex;
  gap: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__unit {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }
}
.c-pickup__unit.reverse {
  flex-direction: row-reverse;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-pickup__unit.reverse {
    flex-direction: column-reverse;
  }
}
.c-pickup__unit.center {
  flex-direction: column-reverse;
  align-items: center;
}
.c-pickup__unit:not(:last-of-type) {
  margin-bottom: 0.8rem;
}
.c-pickup__image {
  flex: none;
  width: min(40rem, 100%);
}
.c-pickup__image img {
  width: 100%;
  height: auto;
}
.c-pickup.blue {
  background: #edf7f8;
}
.c-pickup.blue .c-pickup__label {
  color: var(--color-brown);
}
.c-pickup.blue .c-pickup__inner::before {
  background: #ae9e89;
}

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

TOP：ポイント

------------------------------------------------------------ */
.c-point__title {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 3.2rem;
  color: #50b0b8;
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-point__title {
    gap: 1rem;
    font-size: 2.4rem;
  }
}
.c-point__title::after {
  flex: 1;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #96c9ce;
}
.c-point ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-point ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3.2rem;
  }
}
.c-point ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-point ul li {
    gap: 1.6rem;
  }
}
.c-point__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
  text-align: center;
}
.c-point__text > span {
  width: fit-content;
  border-bottom: 2px dotted #50b0b8;
  font-size: 2.1rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-point__text > span {
    font-size: 1.5rem;
  }
}
.c-point__image {
  width: 100%;
}
.c-point__image img {
  width: 100%;
  height: auto;
}

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

テーブル

------------------------------------------------------------ */
.c-table {
  display: flex;
  flex-direction: column;
}
.c-table__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.5rem;
  table-layout: fixed;
}
@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 {
    width: 100%;
    padding: 1.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-table__table tr {
    display: flex;
    flex-direction: column;
    border-radius: 0.8rem;
  }
}
.c-table__table th {
  width: 26.5rem;
  background: var(--color-brown);
  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: var(--color-cream);
}
.c-table__table td a {
  color: #40260e;
  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.8rem;
}

.scheduleTable__table {
  width: 100%;
  margin-bottom: 1.8rem;
  table-layout: fixed;
}
.scheduleTable__table tr {
  border-bottom: 1px solid #d8e5e6;
}
.scheduleTable__table tr:nth-of-type(1) th {
  padding: 0 0 1rem;
  color: var(--font-color);
}
.scheduleTable__table tr:nth-of-type(1) th.scheduleTable__header {
  padding: 0 1rem 1rem;
}
.scheduleTable__table th,
.scheduleTable__table td {
  padding: 1rem 0;
  color: #ae9e89;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  white-space: nowrap;
  text-align: center;
}
.scheduleTable__table th.scheduleTable__header {
  width: 17rem;
  padding: 0 1rem 1rem;
  text-align: left !important;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .scheduleTable__table th.scheduleTable__header {
    width: 12rem;
  }
}
.scheduleTable__table td.scheduleTable__time {
  padding: 1rem;
  color: var(--font-color);
  text-align: left !important;
}
.scheduleTable__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.scheduleTable__text p {
  line-height: var(--lh-16);
}
.scheduleTable__text p span {
  color: #ae9e89;
}

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

下層のパーツ

------------------------------------------------------------ */
.c-unit {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .c-unit {
    gap: 6rem;
  }
}
.c-unit__item {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@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 {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: min(85rem, 100%);
  margin-inline: auto;
}
.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__content > .c-unit__desc {
  flex: 1;
}
.c-unit__image {
  flex: none;
}
.c-unit__image img {
  width: 100%;
  height: auto;
}
.c-unit__desc {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.c-unit__desc p {
  text-align: justify;
}
.c-unit__desc p a {
  color: #40260e;
  text-decoration: underline;
}
@media (hover: hover) {
  .c-unit__desc p a:hover {
    text-decoration: none;
  }
}
.c-unit__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 850/500;
}
.c-unit.half {
  gap: 4rem;
}
.c-unit.half .c-unit__content {
  gap: 5rem;
}
.c-unit.half .c-unit__item {
  flex: 1;
  gap: 3rem;
}
.c-unit.half .c-unit__desc p:has(a) {
  text-align: unset;
}
.c-unit.half .c-unit__desc p a {
  color: #50b0b8;
}

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

見出し

------------------------------------------------------------ */
.headingEN {
  font-size: 11.9791666667vw;
  font-family: "Cormorant";
  font-weight: 300;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingEN {
    font-size: 8rem;
  }
}
.headingEN.small {
  mix-blend-mode: multiply;
  position: absolute;
  top: -11rem;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingEN.small {
    font-size: 6rem;
    top: -3rem;
  }
}

.headingJP {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingJP {
    font-size: 2.8rem;
  }
}
.headingJP.center {
  align-items: center;
}
.headingJP.blue span {
  font-size: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingJP.blue span {
    font-size: 2.8rem;
    text-align: center;
  }
}
.headingJP.blue .headingJP__sub {
  font-size: 2.8rem;
}
.headingJP.blue .headingJP__main {
  background: #50b0b8;
  color: #fff;
}
.headingJP.blue .headingJP__main::after {
  background: #fff;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingJP.blue .headingJP__big {
    margin-top: 1rem;
    font-size: 3.5rem;
  }
}
.headingJP span {
  display: inline-block;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: var(--lh-14);
}
.headingJP span.headingJP__main {
  width: fit-content;
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  background: #fff;
  color: var(--font-color);
  font-size: 5.6rem;
  letter-spacing: 0.2em;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingJP span.headingJP__main {
    font-size: 3.5rem;
    letter-spacing: 0.1em;
  }
}
.headingJP span.headingJP__main::after {
  content: "";
  display: block;
  width: 8.8rem;
  height: 0.3rem;
  background: #50b0b8;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingJP span.headingJP__main::after {
    width: 6.4rem;
  }
}
.headingJP span.headingJP__sub {
  padding-left: 1rem;
}
.headingJP span.headingJP__big {
  font-size: 5.6rem;
  letter-spacing: 0.2em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingJP span.headingJP__big {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }
}
.headingJP span.headingJP__normal {
  font-size: 4.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .headingJP span.headingJP__normal {
    font-size: 2.8rem;
  }
}

.h2-title,
.h3-title,
.h4-title,
.h5-title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}

.h2-title {
  font-size: 3.5rem;
  padding: 1.5rem 2.4rem;
  background: #edf7f8;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h2-title {
    font-size: 2.4rem;
    padding: 1rem 1.5rem;
  }
}
.h2-title::after {
  content: "";
  display: block;
  width: 8.8rem;
  height: 3px;
  background: var(--color-turquoise);
  position: absolute;
  bottom: 0;
  left: 0;
}

.h3-title {
  font-size: 3rem;
  padding-bottom: 2.4rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h3-title {
    font-size: 2.2rem;
  }
}
.h3-title::before, .h3-title::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
.h3-title::before {
  height: 1px;
  bottom: 0.8rem;
  border-top: 1px dotted var(--color-turquoise);
}
.h3-title::after {
  height: 1px;
  bottom: 0;
  border-top: 1px solid var(--color-turquoise);
}

.h4-title {
  font-size: 3rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-brown);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .h4-title {
    font-size: 2.2rem;
  }
}

.h5-title {
  display: flex;
  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;
  margin-top: 1rem;
  background: var(--color-turquoise);
  border-radius: 50%;
}

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

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,
main .mainContent .divSection {
  padding-top: 12rem;
  position: relative;
  z-index: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  main .mainContent section,
  main .mainContent .divSection {
    padding: 8rem 2.4rem 0;
  }
}
main .mainContent section > .h2-title,
main .mainContent .divSection > .h2-title {
  margin-bottom: 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  main .mainContent section > .h2-title,
  main .mainContent .divSection > .h2-title {
    margin-bottom: 3.2rem;
  }
}
main .mainContent section.sectionBtm,
main .mainContent .divSection.sectionBtm {
  padding-bottom: 12rem;
}

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

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

Header

------------------------------------------------------------ */
h1 {
  width: 57.2916666667vw;
  padding: 0 2.9166666667vw;
  font-size: 1.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  position: absolute;
  top: 2.6rem;
  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: calc(100% - 13.6rem);
    padding: 0;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    top: 2rem;
    left: 2.4rem;
  }
  body:has(.gnav.active) h1 {
    display: none;
  }
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 13rem;
  padding: 0 2.9166666667vw;
  background: var(--base-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  transition: height 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header {
    height: 17rem;
    padding: 0 2.4rem;
  }
}
.header.is-scroll {
  height: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-scroll {
    height: 6.4rem;
  }
}
.header.is-scroll .header__left {
  padding-top: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header.is-scroll .header__left {
    width: 26rem;
  }
}
.header__left {
  width: 19.8958333333vw;
  padding-top: 3.2rem;
  transition: padding-top 0.3s, width 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__left {
    width: 100%;
    padding-top: 6rem;
  }
}
.header__left a {
  display: block;
}
.header__left a img {
  width: 100%;
  height: auto;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 2.6041666667vw;
}
.header__right .c-links {
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header__right .c-links {
    display: none;
  }
}
.header__right .c-links a {
  width: 11.4583333333vw;
}
.header .menuButton {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .header .menuButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6.4rem;
    height: 6.4rem;
    background: var(--color-cream);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4;
    cursor: pointer;
    transition: all 0.3s;
  }
}
.header .menuButton .text {
  margin-top: 2rem;
  color: var(--color-brown);
  font-size: 1.4rem;
  font-family: "Cormorant";
}
.header .menuButton .border {
  width: 3.5rem;
  height: 0.1rem;
  margin-bottom: 2rem;
  background: var(--color-brown);
  position: absolute;
  transition: transform 0.4s, opacity 0.4s;
}
.header .menuButton .border:nth-child(1) {
  transform: translateY(-0.6rem);
}
.header .menuButton .border:nth-child(3) {
  transform: translateY(0.6rem);
}
.header .menuButton.active .border:nth-child(1) {
  transform: rotate(25deg);
}
.header .menuButton.active .border:nth-child(2) {
  opacity: 0;
}
.header .menuButton.active .border:nth-child(3) {
  transform: rotate(-25deg);
}

.gnav {
  background: #f5f4f3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav {
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
  .gnav.active {
    opacity: 1;
    visibility: visible;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__inner {
    width: 100%;
    height: 100%;
    padding: 6.6rem 4.8rem;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
.gnav__list {
  display: flex;
  align-items: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__list {
    flex-direction: column;
    align-items: unset;
  }
}
.gnav__item {
  padding: 1.4rem 0;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__item {
    padding: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__item:not(:last-of-type) {
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
    border-bottom: 1px solid #c8c8c8;
  }
}
.gnav__item:not(:last-of-type) > a {
  border-right: 1px solid #c8c8c8;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__item:not(:last-of-type) > a {
    border-right: none;
  }
}
.gnav__item > a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 1.25vw;
  color: var(--font-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  white-space: nowrap;
  transition: color 0.3s;
}
@media (hover: hover) {
  .gnav__item > a:hover {
    color: var(--color-turquoise);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__item > a {
    padding: 0;
    font-size: 1.8rem;
  }
}
@media (hover: hover) {
  .gnav__item.has-child > a:hover {
    color: var(--font-color);
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__item.has-child > a {
    margin-bottom: 1.6rem;
    pointer-events: none;
  }
}
.gnav__item.has-child > a svg {
  flex: none;
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  fill: #50b0b8;
  rotate: 180deg;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__item.has-child > a svg {
    display: none;
  }
}
@media (hover: hover) {
  .gnav__item.has-child:hover .gnav__sub {
    opacity: 1;
    visibility: visible;
    translate: -50% 0;
  }
}
@media screen and (hover: hover) and (orientation: portrait) and (max-width: 767px) {
  .gnav__item.has-child:hover .gnav__sub {
    translate: none;
  }
}
.gnav__sub {
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 5;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__sub {
    position: static;
    translate: none;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav.active .gnav__sub {
    opacity: 1;
    visibility: visible;
  }
}
.gnav__sub ul {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
  background: #f5f4f3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__sub ul {
    gap: 1.2rem;
    background: none;
    padding: 0;
  }
}
.gnav__sub ul li:not(:last-of-type) {
  border-bottom: 1px solid #c8c8c8;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__sub ul li:not(:last-of-type) {
    border-bottom: none;
  }
}
.gnav__sub ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--font-color);
  font-size: 1.5rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  white-space: nowrap;
  transition: color 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__sub ul li a {
    justify-content: unset;
    padding: 0;
    font-size: 1.6rem;
  }
}
.gnav__sub ul li a svg {
  flex: none;
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  fill: #50b0b8;
  rotate: 90deg;
  transition: fill 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .gnav__sub ul li a svg {
    order: -1;
  }
}
@media (hover: hover) {
  .gnav__sub ul li a:hover {
    color: #50b0b8;
  }
  .gnav__sub ul li a:hover svg {
    fill: #50b0b8;
  }
}

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

Footer

------------------------------------------------------------ */
.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12rem;
  margin-top: 15rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer {
    gap: 6.2rem;
    margin: 10rem 0 5.6rem;
  }
}
.footer .f-white__inner,
.footer .f-brown__inner {
  width: min(120rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white__inner,
  .footer .f-brown__inner {
    display: contents;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white {
    padding: 0 2.4rem;
  }
}
.footer .f-white__top {
  display: flex;
  align-items: center;
  gap: 10rem;
  margin-bottom: 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white__top {
    flex-direction: column;
    gap: 3.2rem;
    margin-bottom: 2.4rem;
  }
}
.footer .f-white__logo {
  width: min(53rem, 100%);
}
.footer .f-white__logo a {
  display: block;
}
.footer .f-white__logo a img {
  width: 100%;
  height: auto;
}
.footer .f-white__feature {
  display: flex;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white__feature {
    width: 100%;
    gap: 1.6rem;
  }
}
.footer .f-white__feature li {
  display: grid;
  place-content: center;
  padding: 0.5rem 2rem;
  background: #edf7f8;
  border-radius: 2rem;
  color: var(--color-turquoise);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white__feature li {
    flex: 1;
    padding: 1rem;
    border-radius: 3.2rem;
    text-align: center;
    white-space: nowrap;
  }
}
.footer .f-white__unit {
  display: flex;
  gap: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white__unit {
    flex-direction: column;
    gap: 3.2rem;
  }
}
.footer .f-white__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white__info {
    flex-direction: column;
  }
}
.footer .f-white__info address {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white__info .c-links {
    width: 34.4rem;
    margin-inline: auto;
  }
}
.footer .f-white__info .scheduleTable {
  width: 48rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-white__info .scheduleTable {
    background: #f5fbfc;
    width: calc(100% + 4.8rem);
    margin-inline: -2.4rem;
    padding: 2.4rem;
  }
}
.footer .f-white__access {
  width: min(57rem, 100%);
}
.footer .f-white__map {
  margin-bottom: 2rem;
}
.footer .f-white__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 570/308;
}
.footer .f-white__note p {
  margin-bottom: 1.2rem;
}
.footer .f-brown {
  width: 100%;
  background: #584d42;
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-brown {
    padding: 6.4rem 2.4rem 2.4rem;
  }
}
.footer .f-brown__inner {
  padding: 12.6rem 0 3rem;
}
.footer .f-brown__nav {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .footer .f-brown__nav {
    display: none;
  }
}
.footer .f-brown__heading p,
.footer .f-brown__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);
}
.footer .f-brown__heading p {
  margin-bottom: 2rem;
}
.footer .f-brown__heading a {
  transition: color 0.3s;
}
@media (hover: hover) {
  .footer .f-brown__heading a:hover {
    color: var(--color-turquoise);
  }
}
.footer .f-brown__list {
  display: flex;
  gap: 8rem;
}
.footer .f-brown__list ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer .f-brown__list ul li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  white-space: nowrap;
  position: relative;
  transition: color 0.3s;
}
@media (hover: hover) {
  .footer .f-brown__list ul li a:hover {
    color: var(--color-turquoise);
  }
}
.footer .f-brown__list ul li a::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1rem;
  margin-top: -0.3rem;
  background: var(--color-turquoise);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.footer .f-brown .c-desc {
  margin-bottom: 6rem;
}
.footer .f-brown__banner {
  width: 19rem;
  margin: 0 auto 4.2rem;
}
.footer .f-brown__banner a {
  display: block;
  transition: scale 0.3s;
}
@media (hover: hover) {
  .footer .f-brown__banner a:hover {
    scale: 1.05;
  }
}
.footer .f-brown__banner a img {
  width: 100%;
  height: auto;
}
.footer .f-brown__copy {
  color: var(--base-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}

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

サイドバー

------------------------------------------------------------ */
.sidebar-content {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.sidebar-content .c-links {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .sidebar-content .c-links {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: calc(100% - 5.6rem);
  }
}
.sidebar-content .c-links a {
  height: 5.6rem;
}
.sidebar-content .c-links a svg {
  width: 1.8rem;
  height: 1.8rem;
}
.sidebar-content .c-links__reservation {
  font-size: 1.6rem;
}
.sidebar-content .c-links__reservation .sub {
  font-size: 1.4rem;
}
.sidebar-content .c-links__tel {
  font-size: 1.8rem;
}
.sidebar-content .pageTop {
  display: grid;
  place-content: center;
  width: 8rem;
  height: 8rem;
  border: 1px solid #dce5e6;
  border-radius: 50%;
  background: var(--base-color);
  color: var(--color-turquoise);
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: fixed;
  bottom: 4rem;
  right: 2.4rem;
  z-index: 2;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .sidebar-content .pageTop {
    width: 5.6rem;
    height: 5.6rem;
    border-radius: 0;
    font-size: 1.4rem;
    bottom: 0;
    right: 0;
  }
}
.home .sidebar-content .pageTop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .home .sidebar-content .pageTop {
    opacity: 1;
    visibility: visible;
  }
}
.sidebar-content .pageTop.is-show {
  opacity: 1;
  visibility: visible;
}

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

モーダル

------------------------------------------------------------ */
.js-modal {
  opacity: 0;
  translate: 0 3rem;
}
.js-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
.js-modal[open] {
  display: block;
  animation: slideUp 0.3s ease-out forwards;
}
.js-modal[open]::backdrop {
  opacity: 1;
}
.js-modal.closing {
  animation: slideDown 0.2s ease-in forwards;
}
.js-modal.closing::backdrop {
  opacity: 0;
}

@keyframes slideUp {
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes slideDown {
  from {
    opacity: 1;
    translate: 0 0;
  }
  to {
    opacity: 0;
    translate: 0 3rem;
  }
}
/* ------------------------------------------------------------

アニメーション

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

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 > section {
  padding: 0;
}
.page-top .mv {
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv {
    padding-top: 17rem;
  }
}
.page-top .mv__image img {
  width: 100%;
  height: auto;
}
.page-top .mv__text {
  display: flex;
  flex-direction: row-reverse;
  gap: 2.4rem;
  position: absolute;
  bottom: 10.5263157895%;
  right: 21.3541666667vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__text {
    gap: 1.3rem;
    bottom: 3.2rem;
    right: 2.4rem;
  }
}
.page-top .mv__text > span {
  height: fit-content;
  padding: 1rem 0.5rem;
  background: #fff;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-feature-settings: normal;
}
.page-top .mv__text span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  line-height: var(--lh-14);
}
.page-top .mv__text span.sub {
  font-size: 1.7708333333vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__text span.sub {
    font-size: 2.1rem;
  }
}
.page-top .mv__text span.main {
  font-size: 2.2916666667vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .mv__text span.main {
    font-size: 2.9rem;
  }
}
.page-top .mv__text span.blue {
  color: var(--color-turquoise);
}
.page-top .mv__text span.num {
  padding-bottom: 0.5rem;
  -webkit-text-combine: horizontal;
  text-combine-upright: all;
  letter-spacing: 0;
}
.page-top .newsSub {
  padding-top: 19rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsSub {
    padding: 10rem 2.4rem 0;
  }
}
.page-top .newsSub__inner {
  display: flex;
  align-items: center;
  gap: 8rem;
  width: min(120rem, 100%);
  padding: 7.2rem 10rem;
  margin-inline: auto;
  background: #f8f6f1;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsSub__inner {
    flex-direction: column;
    align-items: unset;
    gap: 4.6rem;
    padding: 4.8rem 2.4rem;
  }
}
.page-top .newsSub__en {
  font-size: 9rem;
  font-family: "Cormorant";
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #dce5e6;
  position: absolute;
  top: -4rem;
  left: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsSub__en {
    font-size: 7rem;
    top: -3.2rem;
    left: 2.4rem;
  }
}
.page-top .newsSub__head {
  flex: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsSub__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.page-top .newsSub__head p {
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
  margin-bottom: 4.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsSub__head p {
    margin-bottom: 0;
    font-size: 2.8rem;
  }
}
.page-top .newsSub__head .c-button {
  min-height: 4.5rem;
  padding: 1rem 2.4rem;
  margin-inline: unset;
  border-color: #867565;
}
.page-top .newsSub__head .c-button::after {
  background: #867565;
}
.page-top .newsSub .c-newsList .item {
  transition: color 0.3s;
}
@media (hover: hover) {
  .page-top .newsSub .c-newsList .item:hover {
    color: var(--color-brown);
  }
}
.page-top .info {
  display: flex;
  gap: 8rem;
  width: min(120rem, 100%);
  margin: 10rem auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .info {
    flex-direction: column;
    gap: 4rem;
    margin: 5.6rem 0 4rem;
  }
}
.page-top .info__clinic {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: min(53.2rem, 100%);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .info__clinic {
    padding: 0 2.4rem;
  }
}
.page-top .info__logo {
  display: block;
}
.page-top .info__logo img {
  width: 100%;
  height: auto;
}
.page-top .info__feature {
  display: flex;
  gap: 2.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .info__feature {
    gap: 1.6rem;
  }
}
.page-top .info__feature li {
  display: grid;
  place-content: center;
  padding: 0.5rem 2rem;
  background: #edf7f8;
  border-radius: 2rem;
  color: var(--color-turquoise);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-14);
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .info__feature li {
    flex: 1;
    padding: 0.5rem 1rem;
  }
}
.page-top .info__address {
  display: flex;
  justify-content: space-between;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .info__address {
    flex-direction: column;
    gap: 2rem;
  }
}
.page-top .info__address address {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .info .c-links {
    padding: 0 2.4rem;
  }
}
.page-top .info .scheduleTable {
  background: #f5fbfc;
  padding: 5.2rem 5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .info .scheduleTable {
    padding: 2.6rem 2.4rem;
  }
}
.page-top .message__top {
  padding: 10rem 0 24.5rem;
  background: url(../images/home_01.webp) no-repeat bottom/cover;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__top {
    padding: 7.2rem 2.4rem 10rem;
    background: url(../images/home_01_sp.webp) no-repeat bottom/cover;
  }
}
.page-top .message__inner {
  width: min(122rem, 100%);
  margin-inline: auto;
}
.page-top .message__inner .headingEN {
  color: #ae9e89;
  margin-bottom: 5.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__inner .headingEN {
    margin-bottom: 4rem;
  }
}
.page-top .message__lead {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7.2rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__lead {
    flex-direction: column;
    gap: 4.2rem;
    margin-bottom: 6rem;
  }
}
.page-top .message__lead .headingJP span.headingJP__main::after {
  background: #867565;
}
.page-top .message__lead .c-desc {
  width: min(48.2rem, 100%);
}
.page-top .message__note {
  width: 120rem;
  margin: -7rem auto 0;
  padding: 7rem 0 5.6rem;
  background: rgba(233, 225, 214, 0.6);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__note {
    width: calc(100% - 4.8rem);
    margin: -4.5rem 2.4rem 0;
  }
}
.page-top .message__note p {
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__note p {
    font-size: 2rem;
  }
}
.page-top .message__note p span {
  padding: 0.4rem 1rem;
  background: #fff;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 500;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__note p span {
    display: inline-block;
    padding: 0 0.5rem;
  }
}
.page-top .message__note p span:nth-of-type(1) {
  padding-right: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__note p span:nth-of-type(1) {
    padding-right: 0.4rem;
    margin-bottom: 1rem;
  }
}
.page-top .message__note p span:nth-of-type(2) {
  padding-left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__note p span:nth-of-type(2) {
    padding-left: 0.4rem;
  }
}
.page-top .message__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__list {
    flex-direction: column;
    gap: 1.6rem;
  }
}
.page-top .message__list li {
  display: grid;
  place-content: center;
  width: calc((100% - 11.2rem) / 3);
  height: 17.2rem;
  margin-bottom: 2.6rem;
  background: #ae9e89;
  border-radius: 1rem;
  text-align: center;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__list li {
    width: 33rem;
    height: 9.8rem;
    margin-bottom: 2rem;
  }
}
.page-top .message__list li::before {
  content: "";
  display: block;
  width: 4rem;
  height: 3.8rem;
  background: url(../images/icon_bubble_01.svg) no-repeat center/contain;
  position: absolute;
  bottom: -2.6rem;
  left: 7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__list li::before {
    width: 3rem;
    height: 2.8rem;
    bottom: -2rem;
    left: 2.4rem;
  }
}
.page-top .message__list li:nth-of-type(4)::before, .page-top .message__list li:nth-of-type(5)::before {
  left: auto;
  right: 7rem;
  scale: -1 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__list li:nth-of-type(5)::before {
    left: 2.4rem;
    right: unset;
    scale: unset;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__list li:nth-of-type(even) {
    margin-inline: auto 0;
  }
  .page-top .message__list li:nth-of-type(even)::before {
    left: unset;
    right: 2.4rem;
    scale: -1 1;
  }
}
.page-top .message__list li p {
  color: #fff;
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__list li p {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: var(--lh-16);
  }
}
.page-top .message__list li p span {
  font-size: 3rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 500;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .message__list li p span {
    font-size: 2.4rem;
  }
}
.page-top .case {
  padding: 3rem 0 7.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case {
    padding: 5.8rem 2rem 11rem;
  }
}
.page-top .case__inner {
  width: min(120rem, 100%);
  margin-inline: auto;
}
.page-top .case__inner .c-button {
  margin-inline: auto;
}
.page-top .case__lead {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  margin-bottom: 4.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__lead {
    flex-direction: column;
    gap: 2.4rem;
    margin-bottom: 4.2rem;
  }
}
.page-top .case__lead .headingEN {
  color: #f5f3ef;
  font-size: 9.4rem;
}
.page-top .case__lead .headingJP {
  font-size: 4.8rem;
}
.page-top .case__slider {
  margin-bottom: 7.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__slider {
    margin-bottom: 4rem;
  }
}
.page-top .case__list {
  display: flex;
  gap: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__list {
    flex-direction: column;
    gap: 5rem;
  }
}
.page-top .case__item {
  width: calc((100% - 8rem) / 3);
  flex-shrink: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .case__item {
    width: 100%;
  }
}
.page-top .case__title {
  display: block;
  margin: 1.6rem 0 3rem;
  font-size: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  transition: color 0.3s;
}
@media (hover: hover) {
  .page-top .case__title:hover {
    color: var(--color-brown);
  }
}
.page-top .case__noarticle {
  font-size: 1.6rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
.page-top .concept {
  background: #edf7f8;
  padding: 18rem 0 12rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept {
    padding: 4.6rem 2.4rem 6.4rem;
  }
  .page-top .concept::before {
    content: "";
    display: block;
    width: 2px;
    height: 10rem;
    background: #50b0b8;
    margin-inline: auto;
  }
}
.page-top .concept::after {
  content: "";
  display: block;
  width: 43.1770833333vw;
  aspect-ratio: 829/1510;
  background: url(../images/bg_icon_04_concept.webp) no-repeat center/contain;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: 0;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept::after {
    width: 39.5rem;
    background: url(../images/bg_icon_04_concept_sp.webp) no-repeat center/contain;
    aspect-ratio: 395/570;
    top: 24.3rem;
    translate: 0;
  }
}
.page-top .concept__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 6rem;
  width: min(120rem, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__inner {
    gap: 4.2rem;
  }
}
.page-top .concept__inner .headingEN {
  color: #50b0b8;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__inner .headingEN {
    margin-top: 2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .concept__inner .headingJP span.headingJP__sub {
    padding-left: 0;
  }
}
.page-top .concept__inner .c-desc {
  width: min(85rem, 100%);
}
.page-top .doctor {
  padding: 22rem 0 19.4rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor {
    padding: 18rem 0 10.8rem;
  }
}
.page-top .doctor::before {
  content: "";
  display: block;
  width: 12rem;
  height: 52rem;
  background: #50b0b8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor::before {
    width: 4.8rem;
    height: 27rem;
  }
}
.page-top .doctor::after {
  content: "";
  display: block;
  width: 54.375vw;
  aspect-ratio: 1044/1632;
  background: url(../images/bg_icon_05_doctor.webp) no-repeat center/contain;
  position: absolute;
  bottom: -7.6rem;
  left: 0;
  z-index: -2;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor::after {
    width: 100%;
    background: url(../images/bg_icon_05_doctor_sp.webp) no-repeat center/contain;
    aspect-ratio: 440/636;
    bottom: 50%;
    translate: 0 50%;
  }
}
.page-top .doctor .headingEN {
  color: #ececec;
  mix-blend-mode: multiply;
  position: absolute;
  top: 8rem;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .headingEN {
    left: auto;
    right: 0;
  }
}
.page-top .doctor__inner:has(.doctorTop) {
  margin-bottom: 16rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor__inner:has(.doctorTop) {
    margin-bottom: 5rem;
  }
}
.page-top .doctor__inner .c-button {
  margin-inline: auto;
}
.page-top .doctor .doctorTop__list,
.page-top .doctor .doctorBottom__list {
  padding: 4.2rem 6.4rem;
  background: var(--color-cream);
  position: absolute;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop__list,
  .page-top .doctor .doctorBottom__list {
    padding: 2.4rem;
  }
}
.page-top .doctor .doctorTop__list p,
.page-top .doctor .doctorBottom__list p {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: 3.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop__list p,
  .page-top .doctor .doctorBottom__list p {
    font-size: 2.2rem;
  }
}
.page-top .doctor .doctorTop__list ul,
.page-top .doctor .doctorBottom__list ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-top .doctor .doctorTop__list ul li,
.page-top .doctor .doctorBottom__list ul li {
  padding-left: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
  position: relative;
}
.page-top .doctor .doctorTop__list ul li::before,
.page-top .doctor .doctorBottom__list ul li::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1px;
  background: var(--color-turquoise);
  position: absolute;
  top: 1.2rem;
  left: 0;
}
.page-top .doctor .doctorTop__name,
.page-top .doctor .doctorBottom__name {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop__name,
  .page-top .doctor .doctorBottom__name {
    order: 4;
    padding: 0 2.4rem;
  }
}
.page-top .doctor .doctorTop__name p,
.page-top .doctor .doctorBottom__name p {
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop__name p,
  .page-top .doctor .doctorBottom__name p {
    font-size: 2rem;
    text-align: right;
  }
}
.page-top .doctor .doctorTop__name p.name span,
.page-top .doctor .doctorBottom__name p.name span {
  margin-left: 2rem;
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop__name p.name span,
  .page-top .doctor .doctorBottom__name p.name span {
    font-size: 2.8rem;
  }
}
.page-top .doctor .doctorTop {
  display: flex;
  gap: 8rem;
  width: min(160rem, 100%);
  padding-left: 4rem;
  margin: 0 0 4rem auto;
}
@media screen and (max-width: 1440px) {
  .page-top .doctor .doctorTop {
    margin: 0 auto 4rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop {
    flex-direction: column;
    gap: 4rem;
    padding-left: 0;
    margin-bottom: 4rem;
  }
}
.page-top .doctor .doctorTop__left {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 7rem;
  width: min(68rem, 100%);
  padding-top: 16rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop__left {
    display: contents;
  }
}
.page-top .doctor .doctorTop__list {
  bottom: 0;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop .headingJP {
    order: 1;
    align-items: center;
  }
}
.page-top .doctor .doctorTop .headingJP__sub {
  display: flex;
  padding-left: 0;
  margin-bottom: 3rem;
  font-size: 2.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop .headingJP__sub {
    flex-direction: column;
    font-size: 2rem;
  }
}
.page-top .doctor .doctorTop .headingJP__sub span {
  width: fit-content;
  border-bottom: 2px solid #50b0b8;
}
.page-top .doctor .doctorTop .headingJP__sub span:nth-of-type(2) {
  padding-right: 4rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop .headingJP__sub span:nth-of-type(2) {
    padding-right: 3.2rem;
    margin-top: 1rem;
  }
}
.page-top .doctor .doctorTop .headingJP__sub span:nth-of-type(2)::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background: #50b0b8;
  position: absolute;
  bottom: 1rem;
  right: -0.4rem;
  transform: rotate(45deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop .headingJP__sub span:nth-of-type(2)::after {
    width: 2rem;
    bottom: 0.4rem;
  }
}
.page-top .doctor .doctorTop .headingJP__main {
  background: #f8f6f1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop .c-desc {
    order: 3;
    padding: 0 2.4rem;
  }
}
.page-top .doctor .doctorTop__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop__right {
    order: 2;
    flex-direction: column;
  }
}
.page-top .doctor .doctorTop__image {
  width: 39.5833333333vw;
  margin: 0 0 4.2rem 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorTop__image {
    width: 39.2rem;
    margin: 0 0 10rem 0;
  }
}
.page-top .doctor .doctorTop__image img {
  width: 100%;
  height: auto;
}
.page-top .doctor .doctorBottom {
  display: flex;
  gap: 8rem;
  width: min(120rem, 100%);
  margin: 0 auto 20rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorBottom {
    align-items: unset;
    flex-direction: column;
    gap: 17rem;
    margin-bottom: 5.2rem;
  }
}
.page-top .doctor .doctorBottom__left {
  width: 28.6458333333vw;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorBottom__left {
    width: 100%;
    padding-right: 5rem;
  }
}
.page-top .doctor .doctorBottom__left img {
  width: 100%;
  height: auto;
}
.page-top .doctor .doctorBottom__list {
  width: 100%;
  bottom: -12rem;
  right: -26.4rem;
}
@media screen and (max-height: 800px) {
  .page-top .doctor .doctorBottom__list {
    bottom: -18rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorBottom__list {
    width: 34rem;
    bottom: -11.4rem;
    right: 0;
  }
}
.page-top .doctor .doctorBottom__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorBottom__right {
    gap: 4.2rem;
    padding: 0 2.4rem;
  }
}
.page-top .doctor .doctorBottom__right h3 {
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .doctor .doctorBottom__right h3 {
    font-size: 2.8rem;
  }
}
.page-top .doctor .doctorBottom__name p {
  text-align: right;
}
.page-top .counseling {
  padding: 17rem 0 22rem;
  background: var(--color-cream);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .counseling {
    padding: 5.4rem 2.4rem 9.2rem;
  }
}
.page-top .counseling .headingEN {
  color: #f2ece4;
}
.page-top .counseling__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7.2rem;
  width: min(120rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .counseling__inner {
    gap: 5.2rem;
  }
}
.page-top .counseling__lead {
  display: flex;
  gap: 6.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .counseling__lead {
    flex-direction: column;
    gap: 4rem;
  }
}
.page-top .counseling__lead .headingJP {
  flex: 1;
}
.page-top .counseling__lead .headingJP span:nth-of-type(2).headingJP__main::after {
  display: none;
}
.page-top .counseling__lead .headingJP span:nth-of-type(3) .headingJP__main::after {
  background: #867565;
}
.page-top .counseling__lead .c-desc {
  flex: none;
  width: min(50rem, 100%);
}
.page-top .counseling .c-point ul {
  grid-template-columns: repeat(2, 1fr);
  gap: 12.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .counseling .c-point ul {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }
}
.page-top .counseling .c-point__text span {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .counseling .c-point__text span {
    font-size: 2.2rem;
  }
}
.page-top .counseling .c-point__text span span {
  color: #50b0b8;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
.page-top .ortho,
.page-top .endo,
.page-top .fullmouth {
  padding-bottom: 22rem;
  background: #edf7f8;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .ortho,
  .page-top .endo,
  .page-top .fullmouth {
    padding-bottom: 9.6rem;
  }
}
.page-top .ortho .headingEN.small,
.page-top .endo .headingEN.small,
.page-top .fullmouth .headingEN.small {
  color: #dce5e6;
  font-size: 10.4166666667vw;
  top: -10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .ortho .headingEN.small,
  .page-top .endo .headingEN.small,
  .page-top .fullmouth .headingEN.small {
    font-size: 4.5rem;
    top: -2rem;
  }
}
.page-top .ortho__wide,
.page-top .endo__wide,
.page-top .fullmouth__wide {
  width: 100%;
}
.page-top .ortho__wide img,
.page-top .endo__wide img,
.page-top .fullmouth__wide img {
  width: 100%;
  height: auto;
}
.page-top .ortho__inner,
.page-top .endo__inner,
.page-top .fullmouth__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8rem;
  width: 120rem;
  margin-inline: auto;
  padding-top: 10rem;
  background: #edf7f8;
  position: relative;
  margin-top: -23rem;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .ortho__inner,
  .page-top .endo__inner,
  .page-top .fullmouth__inner {
    gap: 6.2rem;
    width: calc(100% - 4.8rem);
    margin: -9rem 2.4rem 0;
    padding-top: 5.6rem;
  }
}
.page-top .ortho__lead,
.page-top .endo__lead,
.page-top .fullmouth__lead {
  padding: 0 7.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .ortho__lead,
  .page-top .endo__lead,
  .page-top .fullmouth__lead {
    padding: 0;
  }
}
.page-top .ortho__lead .headingJP,
.page-top .endo__lead .headingJP,
.page-top .fullmouth__lead .headingJP {
  margin-bottom: 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .ortho__lead .headingJP,
  .page-top .endo__lead .headingJP,
  .page-top .fullmouth__lead .headingJP {
    margin-bottom: 4rem;
  }
}
.page-top .ortho__lead .c-desc,
.page-top .endo__lead .c-desc,
.page-top .fullmouth__lead .c-desc {
  width: min(85rem, 100%);
  margin-inline: auto;
}
.page-top .ortho__lead .headingJP {
  white-space: nowrap;
}
.page-top .ortho__lead .headingJP__big {
  font-weight: 500;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .headingJP.blue .headingJP__sub {
    font-size: 2.2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .headingJP.blue .headingJP__big {
    margin-top: 0;
    font-size: 2.8rem;
  }
}
.page-top .endo .contact {
  width: 100%;
  padding-top: 10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .contact {
    padding-top: 2.4rem;
  }
}
.page-top .endo .contact__inner {
  padding: 10rem 8.6rem;
  background: #fff;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .contact__inner {
    padding: 7.2rem 2.4rem;
  }
}
.page-top .endo .contact__inner .headingEN {
  color: #50b0b8;
  font-size: 12rem;
  mix-blend-mode: multiply;
  position: absolute;
  top: -6rem;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .contact__inner .headingEN {
    font-size: 5rem;
    top: -2.5rem;
  }
}
.page-top .endo .contact__inner h3 {
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .contact__inner h3 {
    font-size: 2rem;
    margin-bottom: 4.2rem;
  }
}
.page-top .endo .contact__unit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .contact__unit {
    flex-direction: column;
    gap: 4.2rem;
  }
}
.page-top .endo .contact__unit::after {
  order: 2;
  content: "";
  display: block;
  width: 1px;
  height: 22.4rem;
  background: #c8c8c8;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .contact__unit::after {
    width: 100%;
    height: 1px;
  }
}
.page-top .endo .contact__unit ul {
  order: 1;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-top .endo .contact__unit ul li {
  padding-left: 2.6rem;
  font-size: 1.8rem;
  position: relative;
}
.page-top .endo .contact__unit ul li::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/icon_check_01.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0.8rem;
}
.page-top .endo .contact__unit ul li span {
  color: var(--color-turquoise);
  font-weight: 700;
}
.page-top .endo .contact__side {
  order: 3;
  flex: none;
  width: 29rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .contact__side {
    width: 100%;
  }
}
.page-top .endo .contact__side p {
  margin-bottom: 4.2rem;
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .endo .contact__side p {
    margin-bottom: 2.4rem;
  }
}
.page-top .endo .contact__side .c-links {
  flex-direction: column;
}
.page-top .endo .contact__side .c-links a {
  width: 100%;
}
.page-top .fullmouth .headingEN.small {
  white-space: nowrap;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullmouth .headingEN.small {
    font-size: 5rem;
    top: -2.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullmouth .headingJP {
    white-space: nowrap;
  }
}
.page-top .fullmouth__lead {
  width: 100%;
  padding: 0;
}
.page-top .fullmouth__unit {
  display: flex;
  justify-content: center;
  gap: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullmouth__unit {
    flex-direction: column;
    gap: 4.2rem;
  }
}
.page-top .fullmouth__unit h3 {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-top .fullmouth__unit h3 span {
  font-size: 2.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .fullmouth__unit h3 span {
    font-size: 2.4rem;
  }
}
.page-top .fullmouth__unit h3 span span {
  width: fit-content;
  color: #50b0b8;
  border-bottom: 2px dotted #50b0b8;
}
.page-top .fullmouth__unit .c-desc {
  flex: none;
  width: min(63.4rem, 100%);
  margin-inline: 0;
}
.page-top .sedation {
  padding: 12rem 0 36rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation {
    display: flex;
    flex-direction: column;
    gap: 4.2rem;
    padding: 10rem 2.4rem;
    background: #f8f6f1;
  }
}
.page-top .sedation::before {
  content: "";
  width: 81.25vw;
  height: 70.5919796308%;
  background: #f8f6f1;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation::before {
    display: none;
  }
}
.page-top .sedation__inner {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  width: min(156rem, 100%);
  margin-inline: auto 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__inner {
    display: contents;
  }
}
.page-top .sedation__inner .headingEN {
  color: #f8f6f1;
  font-size: 15rem;
  text-align: left;
  mix-blend-mode: multiply;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__inner .headingEN {
    font-size: 5rem;
    position: absolute;
    top: -5rem;
    left: 2.4rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__inner .headingJP {
    align-items: center;
  }
}
.page-top .sedation__inner .headingJP span.headingJP__main::after {
  background: #867565;
}
.page-top .sedation__inner .headingJP span.headingJP__sub {
  padding-left: 0;
  font-size: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__inner .headingJP span.headingJP__sub {
    font-size: 2.2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__inner .headingJP span:nth-of-type(3) {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    font-size: 2.4rem;
  }
}
.page-top .sedation__unit {
  display: flex;
  gap: 8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__unit {
    flex-direction: column-reverse;
    gap: 2.4rem;
  }
}
.page-top .sedation__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__text {
    gap: 3.2rem;
  }
}
.page-top .sedation__text h3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__text h3 {
    align-items: center;
  }
}
.page-top .sedation__text h3 span {
  font-size: 3.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-16);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__text h3 span {
    font-size: 2.2rem;
  }
}
.page-top .sedation__text h3 span span {
  margin-right: 0.5rem;
  padding: 1rem 1.5rem;
  background: #fff;
}
.page-top .sedation__image {
  width: 48.9583333333vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .sedation__image {
    width: calc(100% + 2.4rem);
    margin-right: -2.4rem;
  }
}
.page-top .sedation__image img {
  width: 100%;
  height: auto;
}
.page-top .greeting {
  padding: 16rem 0 12rem;
  background: url(../images/home_22.webp) no-repeat center/cover;
  color: #fff;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting {
    padding: 7.2rem 2.4rem;
    background: url(../images/home_22_sp.webp) no-repeat center/cover;
  }
}
.page-top .greeting .headingEN {
  color: #e9e1d6;
  mix-blend-mode: multiply;
  position: absolute;
  top: -11rem;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting .headingEN {
    font-size: 7rem;
    top: -4rem;
  }
}
.page-top .greeting__inner {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  width: min(120rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__inner {
    gap: 4rem;
  }
}
.page-top .greeting__inner .headingJP {
  font-size: 3.8rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__inner .headingJP {
    gap: 1rem;
    font-size: 2.4rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__inner .headingJP .headingJP__big,
  .page-top .greeting__inner .headingJP .headingJP__main {
    font-size: 2.4rem;
  }
}
.page-top .greeting__inner .headingJP span.headingJP__main::after {
  background: #867565;
}
.page-top .greeting__unit {
  display: flex;
  gap: 10rem;
  align-items: center;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__unit {
    display: contents;
  }
}
.page-top .greeting__image {
  flex: none;
  width: 29.1666666667vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__image {
    order: 2;
    width: 100%;
  }
}
.page-top .greeting__image img {
  width: 100%;
  height: auto;
}
.page-top .greeting__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__text {
    display: contents;
  }
}
.page-top .greeting__text h3 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__text h3 {
    align-items: center;
  }
}
.page-top .greeting__text h3 span {
  width: fit-content;
  border-bottom: 2px dotted #ffffff;
  font-size: 4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__text h3 span {
    order: 1;
    font-size: 3.5rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .greeting__text .c-desc {
    order: 3;
  }
}
.page-top .menu {
  display: flex;
  flex-direction: column;
  gap: 7.2rem;
  width: min(120rem, 100%);
  margin-inline: auto;
  padding: 12rem 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu {
    gap: 4.2rem;
    padding: 6.4rem 2.4rem 7.2rem;
  }
}
.page-top .menu .headingEN {
  color: #f5f3ef;
  font-size: 20rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu .headingEN {
    font-size: 6rem;
  }
}
.page-top .menu__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
.page-top .menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-bottom: 2rem;
  background: #ae9e89;
  aspect-ratio: 1;
  color: #fff;
  position: relative;
}
.page-top .menu__item::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  transition: scale 0.3s;
}
.page-top .menu__item:nth-child(odd) {
  background: var(--color-brown);
}
.page-top .menu__item:nth-child(odd)::after {
  background: #ae9e89;
}
.page-top .menu__item:nth-child(even)::after {
  background: #d2c7b7;
}
@media (hover: hover) {
  .page-top .menu__item:hover::after {
    scale: 1.5;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__item:nth-child(1), .page-top .menu__item:nth-child(4), .page-top .menu__item:nth-child(5), .page-top .menu__item:nth-child(8), .page-top .menu__item:nth-child(9) {
    background: var(--color-brown);
  }
  .page-top .menu__item:nth-child(1)::after, .page-top .menu__item:nth-child(4)::after, .page-top .menu__item:nth-child(5)::after, .page-top .menu__item:nth-child(8)::after, .page-top .menu__item:nth-child(9)::after {
    background: #ae9e89;
  }
  .page-top .menu__item:nth-child(2), .page-top .menu__item:nth-child(3), .page-top .menu__item:nth-child(6), .page-top .menu__item:nth-child(7), .page-top .menu__item:nth-child(10) {
    background: #ae9e89;
  }
  .page-top .menu__item:nth-child(2)::after, .page-top .menu__item:nth-child(3)::after, .page-top .menu__item:nth-child(6)::after, .page-top .menu__item:nth-child(7)::after, .page-top .menu__item:nth-child(10)::after {
    background: #d2c7b7;
  }
}
.page-top .menu__item span {
  line-height: var(--lh-16);
  text-align: center;
}
.page-top .menu__item span.sub {
  font-size: 1.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__item span.sub {
    font-size: 1.4rem;
  }
}
.page-top .menu__item span.main {
  font-size: 2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__item span.main {
    font-size: 1.8rem;
  }
}
.page-top .menu__item img {
  width: 9rem;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__item img {
    width: 8rem;
  }
}
.page-top .menu__item.ceramic span:nth-of-type(1) {
  margin-bottom: -1rem;
}
.page-top .menu__item.ceramic span:nth-of-type(2) span {
  display: block;
  font-size: 1.7rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .menu__item.ceramic span:nth-of-type(2) span {
    font-size: 1.4rem;
  }
}
.page-top .emergency {
  padding: 10rem 0;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency {
    padding: 0 0 7.2rem;
  }
}
.page-top .emergency::before {
  content: "";
  width: 81.25vw;
  height: 100%;
  background: #edf7f8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency::before {
    width: 100%;
    height: 84.2652795839%;
    top: auto;
    bottom: 0;
  }
}
.page-top .emergency__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14.2rem;
  width: min(142.5rem, 100%);
  margin-inline: auto 7.03125vw;
}
@media screen and (max-width: 1440px) {
  .page-top .emergency__inner {
    margin-inline: auto;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__inner {
    flex-direction: column-reverse;
    align-items: unset;
    gap: 3.2rem;
  }
}
.page-top .emergency__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__text {
    gap: 2.4rem;
    padding: 0 2.4rem;
  }
}
.page-top .emergency__title {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  font-size: 4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__title {
    gap: 2.4rem;
    font-size: 2.8rem;
    text-align: center;
  }
}
.page-top .emergency__tag {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__tag {
    gap: 0.5rem;
  }
}
.page-top .emergency__tag span {
  display: inline-block;
  font-size: 2.4rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-16);
  letter-spacing: 0.05em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__tag span {
    font-size: 1.8rem;
  }
}
.page-top .emergency__tag span:not(:last-of-type) {
  color: #fff;
  padding: 0.5rem 1.5rem;
  background: var(--color-turquoise);
  border-radius: 2.5rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__tag span:not(:last-of-type) {
    padding: 0.2rem 1rem;
  }
}
.page-top .emergency .c-desc {
  margin-bottom: 2rem;
}
.page-top .emergency__tel {
  padding: 3.6rem 9rem 2.8rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .page-top .emergency__tel {
    max-width: 54rem;
    margin-top: 2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__tel {
    width: 100%;
    padding: 3rem 0;
  }
}
.page-top .emergency__tel p {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  white-space: nowrap;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__tel p {
    font-size: 1.8rem;
  }
}
.page-top .emergency__tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  color: var(--font-color);
  font-size: 4.7rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__tel a {
    font-size: 3.4rem;
  }
}
.page-top .emergency__tel a svg {
  width: 4rem;
  height: 4rem;
  fill: #be9763;
}
.page-top .emergency__image {
  width: 38.6458333333vw;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__image {
    width: 100%;
    padding-left: 4.8rem;
  }
}
.page-top .emergency__image::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 25rem;
  background: var(--color-turquoise);
  position: absolute;
  top: 50%;
  left: -0.5rem;
  translate: 0 -50%;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .emergency__image::before {
    height: 14rem;
    left: 4.8rem;
  }
}
.page-top .emergency__image img {
  width: 100%;
  height: auto;
}
.page-top .imageScroll {
  padding: 15rem 0;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .imageScroll {
    padding: 7.2rem 0;
  }
}
.page-top .imageScroll__slide {
  display: flex;
}
.page-top .imageScroll__slide picture {
  flex: none;
  animation: imageScroll 40s linear infinite;
}
.page-top .imageScroll__slide picture img {
  width: auto;
  height: 33.4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .imageScroll__slide picture img {
    height: 18.2rem;
  }
}
@keyframes imageScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.page-top .access {
  background: #edf7f8;
  padding: 10rem 0 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access {
    padding: 6.4rem 2.4rem 7.2rem;
  }
}
.page-top .access__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7.2rem;
  width: min(120rem, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__inner {
    gap: 4.2rem;
  }
}
.page-top .access__inner .headingEN {
  color: #dce5e6;
  font-size: 20rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__inner .headingEN {
    font-size: 6rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__inner .headingJP {
    gap: 0;
  }
}
.page-top .access__unit {
  display: flex;
  gap: 7.6rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__unit {
    flex-direction: column;
    gap: 5.2rem;
  }
}
.page-top .access__map {
  width: 35.3645833333vw;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__map {
    width: 100%;
  }
}
.page-top .access__map p {
  margin-top: 2.4rem;
}
.page-top .access__image img {
  width: 100%;
  height: auto;
}
.page-top .access ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.page-top .access ul li {
  display: flex;
  gap: 3.2rem;
  align-items: center;
}
.page-top .access__photo {
  flex: none;
  width: 15.5rem;
}
@media (min-width: 1920px) {
  .page-top .access__photo {
    width: 15rem;
  }
}
.page-top .access__photo img {
  width: 100%;
  height: auto;
}
.page-top .access__badge {
  display: grid;
  place-content: center;
  width: 4.4rem;
  aspect-ratio: 1/1;
  background: var(--color-brown);
  margin-bottom: 1rem;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.page-top .access__text {
  font-size: 2.2rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-16);
  white-space: nowrap;
}
@media (min-width: 1920px) {
  .page-top .access__text {
    font-size: 2rem;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .access__text {
    font-size: 1.8rem;
  }
}
.page-top .newsMain {
  padding-top: 12rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain {
    padding-top: 10rem;
  }
}
.page-top .newsMain__inner {
  display: flex;
  flex-direction: column;
  gap: 5.2rem;
  width: min(120rem, 100%);
  margin-inline: auto;
  padding: 8.6rem 8.8541666667vw 7.2rem;
  background: #f8f6f1;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain__inner {
    padding: 6rem 2.4rem;
  }
}
.page-top .newsMain__inner .headingEN {
  color: #f5f3ef;
  font-size: 20rem;
  mix-blend-mode: multiply;
  writing-mode: vertical-rl;
  position: absolute;
  top: 2rem;
  left: -10rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain__inner .headingEN {
    font-size: 7rem;
    writing-mode: unset;
    top: -3rem;
    left: 50%;
    translate: -50% 0;
  }
}
.page-top .newsMain__inner .c-button {
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain__inner .c-button {
    order: 4;
  }
}
.page-top .newsMain__title {
  font-size: 4.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain__title {
    order: 2;
    padding: 0 2.4rem;
    font-size: 2.8rem;
  }
}
.page-top .newsMain__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain__tabs {
    order: 1;
    gap: 1rem;
  }
}
.page-top .newsMain__tabs button {
  display: grid;
  place-content: center;
  height: 5rem;
  border: 1px solid #ae9e89;
  color: var(--font-color);
  font-size: 1.6rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, color 0.3s;
}
@media (hover: hover) {
  .page-top .newsMain__tabs button:hover {
    background: #ae9e89;
    color: #fff;
  }
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain__tabs button {
    height: 4rem;
  }
}
.page-top .newsMain__tabs button.active {
  background: #ae9e89;
  color: #fff;
}
.page-top .newsMain__tabs button::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.5rem;
  background: #fff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  translate: -50% 0;
}
.page-top .newsMain__contents {
  display: none;
}
.page-top .newsMain__contents.active {
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain__contents.active {
    order: 3;
    padding: 0 2.4rem;
  }
}
.page-top .newsMain .c-newsList .item {
  flex-wrap: wrap;
}
@media (hover: hover) {
  .page-top .newsMain .c-newsList .item:hover .item__title {
    text-decoration: none;
  }
}
.page-top .newsMain .c-newsList .item__category {
  width: 10rem;
  height: 3rem;
  background: #ae9e89;
  color: #fff;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .page-top .newsMain .c-newsList .item__category {
    background: none;
    color: var(--font-color);
  }
}
.page-top .newsMain .c-newsList .item__title {
  flex: auto;
  width: 100%;
  text-decoration: underline;
}

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

記事一覧

------------------------------------------------------------ */
.page-archive .mainContent section.archive {
  padding-top: 6rem;
}

.archive__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .archive__links {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
.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: var(--color-cream);
  padding: 2rem;
  border-radius: 0.5rem;
}
.articleUnit .c-newsList {
  flex: 1;
}
.articleUnit .c-newsList .item {
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 0;
  border-bottom: none;
}
.articleUnit .c-newsList .item__category {
  width: 10rem;
  height: 3rem;
}
.articleUnit .c-newsList .item__title {
  flex: auto;
  width: 100%;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .articleUnit .c-newsList .item__title {
    text-decoration: none;
  }
}
.articleUnit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 380/235;
  object-fit: cover;
}
.articleUnit .c-button {
  width: 100%;
}

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

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

記事詳細

------------------------------------------------------------ */
.page-single .mainContent section.single {
  padding-top: 6rem;
}

.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);
  text-align: center;
}
.single__image:not(:last-child) {
  margin-bottom: 2rem;
}
.single__image:has(+ .single__desc) {
  margin-bottom: 4rem;
}
.single__image img {
  width: 100%;
  height: auto;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.single__desc:not(:last-child) {
  margin-bottom: 4rem;
}
.single__desc:has(+ .treatment) {
  margin-bottom: 8rem;
}
.single__desc p,
.single__desc li {
  font-size: 1.6rem;
  line-height: var(--lh-18);
  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: #40260e;
  text-decoration: underline;
}
@media (hover: hover) {
  .single__desc a:hover {
    text-decoration: none;
  }
}
.single__desc hr {
  width: 100%;
  border-style: solid;
  border-color: #eeeeee;
}
.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-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.1em;
}
.single__desc h2 {
  font-size: 3.5rem;
  padding: 1.5rem 2.4rem;
  background: #edf7f8;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h2 {
    font-size: 2.4rem;
    padding: 1rem 1.5rem;
  }
}
.single__desc h2::after {
  content: "";
  display: block;
  width: 8.8rem;
  height: 3px;
  background: var(--color-turquoise);
  position: absolute;
  bottom: 0;
  left: 0;
}
.single__desc h3 {
  font-size: 3rem;
  padding-bottom: 2.4rem;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h3 {
    font-size: 2.2rem;
  }
}
.single__desc h3::before, .single__desc h3::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
}
.single__desc h3::before {
  height: 1px;
  bottom: 0.8rem;
  border-top: 1px dotted var(--color-turquoise);
}
.single__desc h3::after {
  height: 1px;
  bottom: 0;
  border-top: 1px solid var(--color-turquoise);
}
.single__desc h4 {
  font-size: 3rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-brown);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single__desc h4 {
    font-size: 2.2rem;
  }
}
.single__desc h5 {
  display: flex;
  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;
  margin-top: 1rem;
  background: var(--color-turquoise);
  border-radius: 50%;
}
.single__desc h6 {
  font-size: 2rem;
}
.single .treatment {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .treatment {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.single .treatment__item {
  flex: 1;
}
.single .treatment__item > h4 {
  padding: 0.5rem 1rem;
  margin-bottom: 1.6rem;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
.single .treatment__item img {
  width: 100%;
  height: auto;
}
.single .treatment__before {
  background: var(--color-turquoise);
  color: var(--base-color);
}
.single .treatment__after {
  background: var(--color-brown);
  color: var(--base-color);
}
.single .treatment > svg {
  flex: none;
  width: 4.2rem;
  height: 1.7rem;
  fill: var(--color-turquoise);
  transform: rotate(-90deg);
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .treatment > svg {
    transform: rotate(0deg);
  }
}
.single .c-table {
  margin-bottom: 6rem;
}
.single .supervision,
.single .overview {
  padding: 4rem 2.4rem;
  border: 1px solid var(--color-brown);
}
.single .supervision__title,
.single .overview__title {
  margin-bottom: 3.2rem;
  font-size: 2.4rem;
  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) {
  .single .supervision__title,
  .single .overview__title {
    font-size: 2rem;
  }
}
.single .supervision__title span,
.single .overview__title span {
  display: block;
  font-size: 2.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) {
  .single .supervision__title span,
  .single .overview__title span {
    font-size: 2.4rem;
  }
}
.single .supervision__unit,
.single .overview__unit {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .single .supervision__unit,
  .single .overview__unit {
    flex-direction: column;
  }
}
.single .supervision__left, .single .supervision__right,
.single .overview__left,
.single .overview__right {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
}
.single .supervision__left,
.single .overview__left {
  flex: none;
  width: min(40rem, 100%);
}
.single .supervision__left img,
.single .overview__left img {
  width: 100%;
  height: auto;
}
.single .supervision__left figcaption,
.single .overview__left figcaption {
  font-size: 1.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.single .supervision__right,
.single .overview__right {
  flex: 1;
}
.single .supervision {
  margin-bottom: 6rem;
}
.single .overview dl {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
}
.single .overview dl > div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.single .overview dl > div dt {
  border-bottom: 1px solid var(--color-brown);
  padding-bottom: 0.8rem;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.single .overview dl > div dd {
  display: flex;
  flex-direction: column;
}
.single .overview dl > div dd a {
  display: inline-block;
  color: #40260e;
  text-decoration: underline;
}
@media (hover: hover) {
  .single .overview dl > div dd a:hover {
    text-decoration: none;
  }
}
.single .overview dl > div dd p:has(span) {
  display: flex;
  gap: 0.8rem;
}
.single .overview dl > div dd p:has(span) span {
  flex: none;
  width: 6rem;
}

.singleNavi {
  padding-top: 12rem;
}
@media screen and (orientation: portrait) and (max-width: 767px) {
  .singleNavi {
    padding: 8rem 2.4rem 0;
  }
}
.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: 0.8rem;
  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 svg, .singleNavi__archive svg, .singleNavi__next svg {
  width: 1.4rem;
  height: 1.4rem;
  fill: var(--font-color);
}
.singleNavi__prev svg {
  rotate: -90deg;
}
.singleNavi__next svg {
  rotate: 90deg;
}
/*# sourceMappingURL=style.css.map */
