@charset "UTF-8";
:root {
  --base-color: #ffffff;
  --font-color: #333333;
  --color-beige: #c8bbb0;
  --color-gold: #a69073;
  --color-brown: #6f5e4f;
  --color-gray: #cccccc;
  --lh-12: 1.2;
  --lh-14: 1.4;
  --lh-16: 1.6;
  --lh-18: 1.8;
}

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

Reset

------------------------------------------------------------ */
.svg_symbol {
  display: none;
}

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

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

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

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

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

ボタン

------------------------------------------------------------ */
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 380px;
  height: 60px;
  border-radius: 5px;
  background: var(--base-color);
  border: 1px solid var(--color-beige);
  color: var(--font-color);
  font-size: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
@media (hover: hover) {
  .c-button:hover::after {
    scale: 1.5;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-button {
    margin-inline: auto;
  }
}
.c-button::after {
  content: ">";
  display: block;
  font-size: 16px;
  transition: scale 0.3s;
}

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

症例紹介
画像スライダー

------------------------------------------------------------ */
.c-caseBox {
  width: 100%;
}
.c-caseBox .imageSlider {
  position: relative;
  z-index: 0;
}
.c-caseBox .imageSlider__before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
}
.c-caseBox .imageSlider__before::before {
  content: "";
  width: 42px;
  height: 100%;
  background: url(../images/bg_slider.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: -21px;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
.c-caseBox .imageSlider__before::after {
  content: "";
  width: 1px;
  height: 100%;
  background: #707070;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
  z-index: 2;
  pointer-events: none;
}
.c-caseBox .imageSlider__before .inner {
  overflow: hidden;
}
.c-caseBox .imageSlider__before .inner p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 25px;
  background: var(--base-color);
  color: var(--font-color);
  font-size: 12px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.c-caseBox .imageSlider__before img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  min-width: 100%;
  aspect-ratio: 372/250;
}
.c-caseBox .imageSlider__after {
  position: relative;
  z-index: -1;
}
.c-caseBox .imageSlider__after::after {
  content: "治療後";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 25px;
  background: var(--base-color);
  color: var(--font-color);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
}
.c-caseBox .imageSlider__after img {
  width: 100%;
  height: auto;
  aspect-ratio: 372/250;
  object-fit: cover;
}
.c-caseBox .imageSlider input {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: col-resize;
}

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

テキストコンポーネント

------------------------------------------------------------ */
.headingEN {
  color: var(--color-gold);
  font-size: 160px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
  letter-spacing: 0.05em;
  opacity: 0.3;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .headingEN {
    font-size: 100px;
  }
}

.c-desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-desc p {
  font-size: 16px;
  text-align: justify;
}

.under h5.h5-brown {
  padding-left: 0;
  color: #3c1000;
  font-size: 28px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .under h5.h5-brown {
    font-size: 20px;
  }
}
.under h5.h5-brown::before, .under h5.h5-brown::after {
  display: none;
}

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

診療時間テーブル

------------------------------------------------------------ */
.scheduleTable {
  margin-bottom: 20px;
}
.scheduleTable table {
  margin-bottom: 10px;
}
.scheduleTable table tr {
  border-bottom: 1px dotted #9a9a9a;
}
.scheduleTable table th,
.scheduleTable table td {
  padding: 8px 10px;
  font-size: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .scheduleTable table th,
  .scheduleTable table td {
    padding: 8px;
    font-size: 13px;
  }
}
@media screen and (max-width: 425px) {
  .scheduleTable table th,
  .scheduleTable table td {
    font-size: 12px;
  }
}
.scheduleTable table th {
  background: var(--color-brown);
}
.scheduleTable table th:first-child {
  text-align: left;
}
.scheduleTable table td:first-child {
  text-align: left;
  white-space: nowrap;
}
.scheduleTable__holiday {
  font-size: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .scheduleTable__holiday {
    font-size: 14px;
  }
}

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

テーブル

------------------------------------------------------------ */
.c-table {
  display: flex;
  flex-direction: column;
}
.c-table__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-table__table tbody {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}
.c-table__table th,
.c-table__table td {
  padding: 15px 20px;
  font-size: 16px;
  line-height: var(--lh-16);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-table__table th,
  .c-table__table td {
    padding: 16px;
    width: 100%;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-table__table tr {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
  }
}
.c-table__table tr:first-of-type th {
  border-top-left-radius: 10px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-table__table tr:first-of-type th {
    border-top-left-radius: 0;
  }
}
.c-table__table tr:first-of-type td {
  border-top-right-radius: 10px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-table__table tr:first-of-type td {
    border-top-right-radius: 0;
  }
}
.c-table__table tr:last-of-type th {
  border-bottom-left-radius: 10px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-table__table tr:last-of-type th {
    border-bottom-left-radius: 0;
  }
}
.c-table__table tr:last-of-type td {
  border-bottom-right-radius: 10px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-table__table tr:last-of-type td {
    border-bottom-right-radius: 0;
  }
}
.c-table__table th {
  width: 340px;
  background: var(--color-gold);
  color: var(--base-color);
  font-size: 18px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-table__table th {
    width: 100%;
    font-size: 16px;
  }
}
.c-table__table td {
  background: #f2efea;
}
.c-table__table td a {
  color: var(--color-brown);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-table__table td a:hover {
    text-decoration: none;
  }
}
.c-table__table td p:not(:last-child) {
  margin-bottom: 5px;
}

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

STEP

------------------------------------------------------------ */
.under #content .c-flow p {
  margin-bottom: 0;
}

.c-flow {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-flow {
    gap: 60px;
  }
}
.c-flow__item {
  border: 1px solid #a78061;
}
.c-flow__item:not(:last-of-type) {
  position: relative;
}
.c-flow__item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 90px;
  aspect-ratio: 90/44;
  background: #d9d9d9;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -70px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-flow__item:not(:last-of-type)::after {
    width: 40px;
    bottom: -40px;
  }
}
.c-flow__title {
  padding: 12px 32px;
  background: #a78061;
  color: #fff;
  font-size: 24px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-flow__title {
    padding: 12px 20px;
    font-size: 20px;
  }
}
.c-flow__desc {
  padding: 32px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-flow__desc {
    padding: 20px;
  }
}
.c-flow__desc p {
  font-size: 16px;
}

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

採用フォーム

------------------------------------------------------------ */
#recruit_form .wpcf7,
#recruit_form .option {
  font-size: 16px;
}

.c-contact {
  display: flex;
  flex-direction: column;
  background: var(--base-color);
  color: var(--font-color);
}
.c-contact__group {
  display: flex;
  flex-direction: column;
}
.c-contact__item {
  display: flex;
  border: 1px solid #f09a6c;
  border-bottom: none;
}
.c-contact__item:last-child {
  border-bottom: 1px solid #f09a6c;
}
.c-contact__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 280px;
  min-width: 280px;
  padding: 16px 20px;
  background: #e97132;
  color: var(--base-color);
  font-weight: 700;
  font-size: 16px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-contact__label {
    justify-content: center;
  }
}
.c-contact__label .required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  background: #651015;
  color: var(--base-color);
  font-size: 12px;
  border-radius: 2px;
}
.c-contact__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 20px;
}
.c-contact__note {
  color: #009900;
  font-size: 13px;
  margin-bottom: 4px;
}
.c-contact input[type=text],
.c-contact input[type=email],
.c-contact input[type=tel],
.c-contact input[type=date],
.c-contact input[type=number],
.c-contact select,
.c-contact textarea {
  width: 100%;
  max-width: 400px;
  padding: 8px 10px;
  border: 1px solid #ccc;
  background: var(--base-color);
  font-size: 16px;
  border-radius: 0;
}
.c-contact input[type=text]::placeholder,
.c-contact input[type=email]::placeholder,
.c-contact input[type=tel]::placeholder,
.c-contact input[type=date]::placeholder,
.c-contact input[type=number]::placeholder,
.c-contact select::placeholder,
.c-contact textarea::placeholder {
  color: #999;
}
.c-contact input[type=text]:focus,
.c-contact input[type=email]:focus,
.c-contact input[type=tel]:focus,
.c-contact input[type=date]:focus,
.c-contact input[type=number]:focus,
.c-contact select:focus,
.c-contact textarea:focus {
  outline: none;
  border-color: var(--color-brown);
}
.c-contact select {
  appearance: auto;
  cursor: pointer;
}
.c-contact textarea {
  min-height: 120px;
  max-width: 100%;
  field-sizing: content;
}
.c-contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  position: relative;
}
.c-contact__submit input[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 260px;
  padding: 18px 30px;
  background: #651015;
  color: var(--base-color);
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media (hover: hover) {
  .c-contact__submit input[type=submit]:hover {
    opacity: 0.8;
  }
}
.c-contact__submit .wpcf7-spinner {
  position: absolute;
  margin: 0;
  top: 0;
  right: 20px;
}
.c-contact .wpcf7-not-valid-tip {
  color: #c94a4a;
  font-size: 13px;
  margin-top: 4px;
}
.c-contact .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px;
  border-radius: 4px;
  text-align: center;
}
.c-contact .wpcf7-mail-sent-ok {
  background: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.c-contact .wpcf7-validation-errors {
  background: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.c-contact__value {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  line-height: var(--lh-18);
}
.c-contact__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
.c-contact__buttons input[type=submit],
.c-contact__buttons input[type=button] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  padding: 18px 30px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media (hover: hover) {
  .c-contact__buttons input[type=submit]:hover,
  .c-contact__buttons input[type=button]:hover {
    opacity: 0.8;
  }
}
.c-contact__buttons input[type=submit] {
  background: #651015;
  color: var(--base-color);
}
.c-contact__buttons input[type=button] {
  background: #ccc;
  color: var(--font-color);
}
.c-contact.confirm .c-contact__label .required {
  display: none;
}
.c-contact__complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px 16px;
  text-align: center;
}
.c-contact__complete-title {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 20px;
  font-weight: bold;
  color: var(--font-color);
}
.c-contact__complete-text {
  font-size: 15px;
  line-height: var(--lh-18);
  color: var(--font-color);
}
.c-contact__complete-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  background: #651015;
  color: var(--base-color);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-contact__complete-link a:hover {
    opacity: 0.8;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .c-contact__item {
    flex-direction: column;
  }
  .c-contact__label {
    width: 100%;
    min-width: unset;
    padding: 10px 16px;
  }
  .c-contact__field {
    padding: 12px 16px;
  }
  .c-contact__value {
    padding: 12px 16px;
  }
  .c-contact__submit input[type=submit],
  .c-contact__submit input[type=button], .c-contact__buttons input[type=submit],
  .c-contact__buttons input[type=button] {
    width: 100%;
    max-width: 260px;
  }
}

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

Header

------------------------------------------------------------ */
#wrapper {
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  #wrapper {
    padding-top: 120px;
  }
}
#wrapper .wrap-h1 {
  width: 62.5%;
  min-width: 1200px;
  position: absolute;
  top: 15px;
  left: 50%;
  translate: -50% 0;
  z-index: 5;
}
@media screen and (max-width: 1440px) {
  #wrapper .wrap-h1 {
    padding: 15px 50px 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  #wrapper .wrap-h1 {
    min-width: 100%;
    width: 100%;
    padding: 0;
    top: 10px;
  }
}
#wrapper .wrap-h1 h1 {
  width: calc(100% - 500px);
  font-size: 12px;
  line-height: var(--lh-14);
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  #wrapper .wrap-h1 h1 {
    width: 100%;
    padding: 0 10px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    top: 10px;
  }
}
body:has(.drawerMenu.active) #wrapper .wrap-h1 h1 {
  display: none;
}

.header {
  width: 100%;
  background: #fff;
  letter-spacing: 0.05em;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
}
.header p {
  margin: 0;
  line-height: var(--lh-18);
}
.header a:hover,
.header a:active {
  text-decoration: none;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 120px;
    padding: 50px 10px 10px;
    transition: padding-top 0.3s, height 0.3s;
  }
  .header.is-scroll {
    height: 80px;
    padding-top: 10px;
  }
  body:has(.drawerMenu.active) .header {
    padding-top: 10px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 62.5%;
  min-width: 1200px;
  padding-top: 15px;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .header__inner {
    padding: 15px 50px 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .header__inner {
    display: contents;
    min-width: 100%;
  }
}
.header__logo {
  width: 336px;
  padding-bottom: 15px;
}
@media screen and (max-width: 1440px) {
  .header__logo {
    width: 240px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .header__logo {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 425px) {
  .header__logo {
    width: 200px;
  }
}
.header__logo a {
  display: block;
}
.header__logo a img {
  width: 100%;
  height: auto;
}
.header__bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .header__bar {
    display: contents;
  }
}
.header__sns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .header__sns {
    margin-right: 70px;
  }
}
.header__sns a {
  display: block;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 425px) {
  .header__sns a {
    width: 36px;
    height: 36px;
  }
}
@media (hover: hover) {
  .header__sns a:hover img {
    scale: 1.1;
  }
}
.header__sns a img {
  width: 100%;
  height: auto;
  transition: scale 0.3s;
}
.header__tel {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .header__tel {
    display: none;
  }
}
.header__tel a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--font-color);
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .header__tel a:hover svg {
    scale: 1.2;
  }
}
.header__tel a span {
  font-size: 25px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
}
.header__tel a svg {
  width: 24px;
  height: 24px;
  fill: var(--color-gold);
  transition: scale 0.3s;
}
.header__tel > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.header__tel > div p {
  font-size: 10px;
  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: 640px) {
  .header__reservation {
    display: none;
  }
}
.header__reservation a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 150px;
  height: 50px;
  background: var(--color-brown);
  color: var(--base-color);
  position: relative;
}
@media (hover: hover) {
  .header__reservation a:hover svg {
    scale: 1.1;
  }
}
.header__reservation a::before {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid var(--color-beige);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.header__reservation a span {
  font-size: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.header__reservation a svg {
  width: 20px;
  height: 20px;
  fill: var(--base-color);
  transition: scale 0.3s;
}
.header__unit {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .header__unit {
    display: contents;
  }
}
.header__sp {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .header__sp {
    display: contents;
  }
}
.header__sp .menuButton {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: var(--font-color);
  border: none;
  opacity: 1;
  cursor: pointer;
  transition: filter 0.3s;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
}
.header__sp .menuButton .border {
  width: 23px;
  height: 1px;
  margin-bottom: 16px;
  background: var(--base-color);
  position: absolute;
  transition: transform 0.4s, opacity 0.4s;
}
.header__sp .menuButton .border:nth-child(1) {
  transform: translateY(-8px);
}
.header__sp .menuButton .border:nth-child(3) {
  transform: translateY(8px);
}
.header__sp .menuButton .text {
  margin-top: 30px;
  color: var(--base-color);
  font-size: 12px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.header__sp .menuButton.active .border:nth-child(1) {
  transform: rotate(45deg);
}
.header__sp .menuButton.active .border:nth-child(2) {
  opacity: 0;
}
.header__sp .menuButton.active .border:nth-child(3) {
  transform: rotate(-45deg);
}

@media screen and (orientation: portrait) and (max-width: 640px) {
  .globalNav {
    display: none;
  }
}
.globalNav__list {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 1440px) {
  .globalNav__list {
    gap: 16px;
  }
}
.globalNav__item {
  position: relative;
}
.globalNav__item > p,
.globalNav__item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 15px;
  color: var(--font-color);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  transition: color 0.3s;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .globalNav__item > p,
  .globalNav__item > a {
    font-size: 15px;
  }
}
.globalNav__item > a {
  transition: color 0.3s;
}
@media (hover: hover) {
  .globalNav__item > a:hover {
    color: var(--color-gold);
  }
}
.globalNav__item.has-menu > p::after {
  content: "";
  display: block;
  width: 10px;
  height: 8px;
  background: var(--color-gold);
  clip-path: polygon(100% 0, 0 0, 46% 100%);
}
@media (hover: hover) {
  .globalNav__item.has-menu:hover .globalNav__sub {
    opacity: 1;
    visibility: visible;
  }
}
.globalNav__sub {
  display: flex;
  gap: 32px;
  background: var(--font-color);
  padding: 24px 20px;
  color: var(--base-color);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  transition: opacity 0.3s, visibility 0.3s;
}
.globalNav__sub ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.globalNav__sub ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--base-color);
  font-size: 14px;
  line-height: var(--lh-14);
  white-space: nowrap;
  transition: color 0.3s;
  position: relative;
}
@media (hover: hover) {
  .globalNav__sub ul li a:hover {
    color: var(--color-gold);
  }
}
.globalNav__sub ul li a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../images/icon_arrow_01.svg) no-repeat center/contain;
}

.drawerMenu {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .drawerMenu {
    display: block;
    width: 100%;
    padding: 80px 10px;
    background: var(--font-color);
    color: var(--base-color);
    position: fixed;
    inset: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }
}
.drawerMenu.active {
  opacity: 1;
  visibility: visible;
}
.drawerMenu__nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.drawerMenu__heading {
  border-bottom: 1px solid var(--base-color);
  padding-bottom: 6px;
  margin-bottom: 22px;
}
.drawerMenu__heading p,
.drawerMenu__heading a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--base-color);
  font-size: 16px;
  line-height: var(--lh-16);
  position: relative;
}
.drawerMenu__heading p::before,
.drawerMenu__heading a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--base-color);
  border-radius: 50%;
}
.drawerMenu__item ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.drawerMenu__item ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--base-color);
  font-size: 16px;
  line-height: var(--lh-14);
  white-space: nowrap;
  position: relative;
}
.drawerMenu__item ul li a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../images/icon_arrow_01.svg) no-repeat center/contain;
}

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

Footer

------------------------------------------------------------ */
.footer {
  width: 100%;
  min-width: 1200px;
  letter-spacing: 0.05em;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer {
    min-width: 100%;
    margin-bottom: 100px;
  }
}
.footer p {
  margin: 0;
  line-height: var(--lh-18);
}
.footer a:hover,
.footer a:active {
  text-decoration: none;
}
.footer .f-inquiry {
  display: flex;
  color: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-inquiry {
    flex-direction: column;
  }
}
.footer .f-inquiry__image {
  width: 44.7916666667%;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-inquiry__image {
    width: 100%;
  }
}
.footer .f-inquiry__image picture {
  width: 100%;
  height: 100%;
}
.footer .f-inquiry__image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer .f-inquiry__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 5.2083333333vw;
  background: var(--color-brown);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-inquiry__content {
    padding: 12px 10px 52px;
  }
}
.footer .f-inquiry__en {
  color: #8f8379;
  font-size: 160px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-inquiry__en {
    font-size: 100px;
    line-height: var(--lh-12);
  }
}
.footer .f-inquiry__title {
  margin-bottom: 40px;
  font-size: 40px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-inquiry__title {
    margin-bottom: 32px;
    font-size: 30px;
  }
}
.footer .f-inquiry__text {
  max-width: 600px;
  margin-bottom: 52px;
  font-size: 16px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-inquiry__text {
    max-width: unset;
    margin-bottom: 42px;
  }
}
.footer .f-inquiry__btn {
  display: flex;
  gap: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-inquiry__btn {
    flex-direction: column;
    padding: 0 10px;
  }
}
.footer .f-inquiry__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 290px;
  height: 85px;
  background: var(--base-color);
  color: var(--color-brown);
  font-size: 32px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-inquiry__btn a {
    width: 100%;
  }
}
@media (hover: hover) {
  .footer .f-inquiry__btn a:hover svg {
    scale: 1.1;
  }
}
.footer .f-inquiry__btn a::before {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid var(--color-beige);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.footer .f-inquiry__btn a:nth-of-type(2) svg {
  width: 24px;
  height: 24px;
}
.footer .f-inquiry__btn a svg {
  width: 30px;
  height: 30px;
  fill: var(--color-brown);
  transition: scale 0.3s;
}
.footer .f-recruit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 480px;
  background: url("../images/footer_02.webp") center/cover no-repeat;
  color: var(--base-color);
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-recruit {
    padding: 60px 10px 50px;
    background: url("../images/footer_02_sp.webp") center/cover no-repeat;
  }
}
@media (hover: hover) {
  .footer .f-recruit:hover .f-recruit__arrow img {
    scale: 1.05;
  }
}
.footer .f-recruit__inner {
  width: 1200px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .footer .f-recruit__inner {
    padding: 0 50px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-recruit__inner {
    align-items: unset;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    padding: 0;
  }
}
.footer .f-recruit__unit {
  display: flex;
  flex-direction: column;
}
.footer .f-recruit__en {
  color: var(--base-color);
  font-size: 160px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
  opacity: 0.3;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-recruit__en {
    font-size: 100px;
    line-height: var(--lh-12);
  }
}
.footer .f-recruit__text {
  font-size: 40px;
  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: 640px) {
  .footer .f-recruit__text {
    font-size: 30px;
  }
}
.footer .f-recruit__arrow {
  width: 160px;
  height: 160px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-recruit__arrow {
    width: 104px;
    height: 104px;
    margin-inline: auto;
  }
}
.footer .f-recruit__arrow img {
  width: 100%;
  height: auto;
  transition: scale 0.3s;
}
.footer .f-desc {
  width: 1200px;
  margin-inline: auto;
  padding: 60px 0;
}
@media screen and (max-width: 1440px) {
  .footer .f-desc {
    padding: 60px 50px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-desc {
    width: 100%;
    padding: 50px 10px;
  }
}
.footer .f-desc p {
  font-size: 16px;
  text-align: justify;
}
.footer .f-nav {
  background: #343434;
  padding: 100px 0;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-nav {
    padding: 52px 10px;
  }
}
.footer .f-nav__menu {
  display: flex;
  gap: 20px;
  width: 1200px;
  margin-inline: auto;
}
@media screen and (max-width: 1440px) {
  .footer .f-nav__menu {
    padding: 0 50px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-nav__menu {
    width: 100%;
    padding: 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-nav__menu {
    flex-direction: column;
  }
}
.footer .f-nav__item {
  flex: 1;
}
.footer .f-nav__item:nth-of-type(3) {
  flex: none;
  width: 590px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-nav__item:nth-of-type(3) {
    width: 100%;
  }
}
.footer .f-nav__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid #fff;
  color: var(--base-color);
  font-size: 16px;
  line-height: var(--lh-16);
  position: relative;
}
.footer .f-nav__heading::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: var(--base-color);
  border-radius: 50%;
}
.footer .f-nav__list {
  display: flex;
  gap: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-nav__list {
    flex-direction: column;
    gap: 10px;
  }
}
.footer .f-nav__list ul {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .f-nav__list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--base-color);
  font-size: 16px;
  line-height: var(--lh-14);
  white-space: nowrap;
  transition: color 0.3s;
  position: relative;
}
@media (hover: hover) {
  .footer .f-nav__list li a:hover {
    color: var(--color-gold);
  }
}
.footer .f-nav__list li a::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../images/icon_arrow_01.svg) no-repeat center/contain;
}
.footer .f-banner {
  width: 1200px;
  margin-inline: auto;
  padding: 40px 0;
}
@media screen and (max-width: 1440px) {
  .footer .f-banner {
    padding: 40px 50px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-banner {
    width: 100%;
  }
}
.footer .f-banner ul {
  display: flex;
  gap: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-banner ul {
    flex-direction: column;
    align-items: center;
  }
}
.footer .f-banner ul li a {
  display: block;
  width: 285px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer .f-banner ul li a:hover {
    opacity: 0.8;
  }
}
.footer .f-banner ul li a img {
  width: 100%;
  height: auto;
}
.footer .f-copy {
  width: 100%;
  background: #000000;
  padding: 24px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .footer .f-copy {
    padding: 20px;
    text-align: unset;
  }
}

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

サイドバー

------------------------------------------------------------ */
.sidebar {
  display: flex;
  width: calc(100% - 60px);
  height: 100px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.sidebar__link {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .sidebar__link {
    display: flex;
    width: 100%;
  }
}
.sidebar__tel, .sidebar__reservation {
  width: 50%;
  color: #fff;
}
.sidebar__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-gold);
}
.sidebar__tel .main {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.sidebar__tel .main svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.sidebar__tel .main span {
  font-size: 22px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
}
@media screen and (max-width: 425px) {
  .sidebar__tel .main span {
    font-size: 18px;
  }
}
.sidebar__tel .sub {
  font-size: 10px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (max-width: 425px) {
  .sidebar__tel .sub {
    white-space: nowrap;
  }
}
.sidebar__tel .sub br {
  display: none;
}
@media screen and (max-width: 425px) {
  .sidebar__tel .sub br {
    display: block;
  }
}
.sidebar__reservation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-brown);
  color: var(--base-color);
  position: relative;
}
.sidebar__reservation::before {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid var(--color-beige);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.sidebar__reservation span {
  font-size: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.sidebar__reservation svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.sidebar .pageTop {
  display: grid;
  place-content: center;
  width: 60px;
  height: 60px;
  background: var(--font-color);
  border: none;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 2;
  cursor: pointer;
}
@media (hover: hover) {
  .sidebar .pageTop:hover svg {
    scale: 1.2;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .sidebar .pageTop {
    width: 60px;
    height: 100px;
    bottom: 0;
    right: 0;
  }
}
.sidebar .pageTop svg {
  width: 32px;
  height: 32px;
  fill: var(--base-color);
  transition: scale 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .sidebar .pageTop svg {
    width: 20px;
    height: 20px;
  }
}
.home .sidebar .pageTop {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .home .sidebar .pageTop {
    opacity: 1;
    visibility: visible;
  }
}
.sidebar .pageTop.is-show {
  opacity: 1;
  visibility: visible;
}

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

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 {
  letter-spacing: 0.05em;
  line-height: var(--lh-18);
}
.page-top section {
  margin: 0;
}
.page-top p {
  margin: 0;
  line-height: var(--lh-18);
}
.page-top a:hover,
.page-top a:active {
  text-decoration: none;
}
.page-top .headingEN {
  line-height: 1;
}
.page-top .mv {
  position: relative;
}
.page-top .mv__catch {
  position: absolute;
  top: 50%;
  left: 13.5416666667vw;
  translate: 0 -50%;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__catch {
    left: 162.5px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__catch {
    top: 420px;
    left: 20px;
    translate: 0;
  }
}
.page-top .mv__catch img {
  width: 24.8958333333vw;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__catch img {
    width: 298.75px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__catch img {
    width: 357px;
  }
}
.page-top .mv__catch p {
  margin-top: 54px;
  color: var(--base-color);
  font-size: 1.0416666667vw;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__catch p {
    font-size: 12.5px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__catch p {
    margin-top: 32px;
    font-size: 16px;
  }
}
.page-top .mv__slider {
  width: 89.5833333333vw;
  margin-inline: auto;
  aspect-ratio: 1720/900;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__slider {
    width: 1075px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__slider {
    width: 100%;
    aspect-ratio: 440/350;
  }
}
.page-top .mv__slider .splide__track {
  height: 100%;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__slider .splide__track {
    height: unset;
  }
}
.page-top .mv__slider .splide__slide {
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__slider .splide__slide {
    flex-direction: column-reverse;
  }
}
.page-top .mv__slider .splide__slide .left,
.page-top .mv__slider .splide__slide .right {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__slider .splide__slide .left,
  .page-top .mv__slider .splide__slide .right {
    width: 100%;
    height: 350px;
  }
}
.page-top .mv__slider .splide__slide .left {
  background: #000000;
}
.page-top .mv__slider .splide__slide .left img {
  opacity: 0.6;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__slider .splide__slide .left img {
    opacity: 0.5;
  }
}
.page-top .mv__slider .splide__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.page-top .mv__slider .splide__slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-top .mv__slider .splide__pagination {
  display: flex;
  gap: 10px;
  position: absolute;
  bottom: 95px;
  left: 13.5416666667vw;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__slider .splide__pagination {
    left: 162.5px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__slider .splide__pagination {
    width: 100%;
    bottom: 40px;
    left: 50%;
    translate: -50% 0;
  }
}
.page-top .mv__slider .splide__pagination__page {
  display: block;
  width: 4.1666666667vw;
  height: 4px;
  background: var(--base-color);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__slider .splide__pagination__page {
    width: 50px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__slider .splide__pagination__page {
    width: 80px;
  }
}
.page-top .mv__slider .splide__pagination__page.is-active {
  background: var(--color-gold);
}
.page-top .mv__unit {
  display: flex;
  gap: 40px;
  position: absolute;
  bottom: -40px;
  right: 13.5416666667vw;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__unit {
    right: 162.5px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__unit {
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: unset;
  }
}
@media screen and (max-width: 425px) {
  .page-top .mv__unit {
    gap: 10px;
  }
}
.page-top .mv__badge {
  position: relative;
}
.page-top .mv__badge:nth-of-type(1) p {
  width: 7.0833333333vw;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__badge:nth-of-type(1) p {
    width: 85px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__badge:nth-of-type(1) p {
    width: 95px;
  }
}
.page-top .mv__badge:nth-of-type(2) p {
  width: 8.8541666667vw;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__badge:nth-of-type(2) p {
    width: 106.25px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__badge:nth-of-type(2) p {
    width: 115px;
  }
}
.page-top .mv__badge p {
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--color-gold);
  aspect-ratio: 1/1;
  color: var(--base-color);
  font-size: 1.25vw;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-12);
  text-align: center;
  position: absolute;
  top: -40px;
  right: -10px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__badge p {
    font-size: 15px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__badge p {
    font-size: 16px;
    top: -55px;
  }
}
.page-top .mv__badge p::before {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid var(--color-beige);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  pointer-events: none;
}
.page-top .mv__badge p span {
  margin-top: 5px;
  font-size: 0.8333333333vw;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__badge p span {
    font-size: 10px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__badge p span {
    font-size: 10px;
  }
}
.page-top .mv__badge img {
  width: 15.625vw;
  height: auto;
  border-radius: 5px;
}
@media screen and (max-width: 1200px) {
  .page-top .mv__badge img {
    width: 187.5px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .mv__badge img {
    width: 200px;
  }
}
.page-top .news {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 80px 50px;
  width: min(1300px, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .news {
    flex-direction: column;
    align-items: unset;
    gap: 22px;
    padding: 50px 10px;
  }
}
.page-top .news__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .news__head {
    gap: 0;
  }
}
.page-top .news__head > p {
  color: var(--color-beige);
  font-size: 50px;
  line-height: var(--lh-14);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .news__head div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.page-top .news__head div p {
  font-size: 20px;
  line-height: var(--lh-14);
}
.page-top .news__link {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
  color: var(--font-color);
  text-decoration: underline;
}
@media (hover: hover) {
  .page-top .news__link:hover {
    text-decoration: none;
  }
}
.page-top .news__content {
  flex: 1;
  height: fit-content;
  padding: 42px 0;
  border-top: 1px solid var(--color-beige);
  border-bottom: 1px solid var(--color-beige);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .news__content {
    padding: 20px 0;
  }
}
.page-top .news__item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--font-color);
  font-size: 16px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .news__item {
    gap: 15px;
    flex-wrap: wrap;
  }
}
.page-top .news__item time {
  flex: none;
  width: 90px;
}
.page-top .news__category {
  display: grid;
  place-content: center;
  width: 100px;
  height: 30px;
  background: var(--color-beige);
  color: var(--color-brown);
  font-size: 14px;
  border-radius: 15px;
}
.page-top .news__title {
  flex: 1;
  font-size: 16px;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: underline;
}
@media (hover: hover) {
  .page-top .news__title:hover {
    text-decoration: none;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .news__title {
    flex: none;
    width: 100%;
  }
}
.page-top .news__noarticle {
  font-size: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .info {
  padding-top: 100px;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info {
    padding: 50px 10px 0;
  }
}
.page-top .info::before {
  content: "";
  display: block;
  width: 100%;
  height: 500px;
  background: var(--color-beige);
  position: absolute;
  top: 0;
  left: 0;
}
.page-top .info__inner {
  display: flex;
  justify-content: space-between;
  background: var(--base-color);
  width: min(1200px, 100%);
  padding: 70px 100px 40px;
  margin-inline: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__inner {
    flex-direction: column;
    gap: 20px;
    padding: 80px 10px 20px;
  }
}
.page-top .info__inner .headingEN {
  position: absolute;
  top: -10px;
  right: -10px;
}
.page-top .info__content {
  width: 480px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__content {
    width: 100%;
  }
}
.page-top .info__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__head {
    margin-bottom: 24px;
  }
}
.page-top .info__head img {
  width: 290px;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__head img {
    width: 242px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .info__head img {
    width: 220px;
  }
}
.page-top .info__head p {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 30px;
  background: var(--color-beige);
  color: var(--color-brown);
  font-size: 16px;
  border-radius: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__head p {
    padding: 5px 24px;
    font-size: 12px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .info__head p {
    padding: 5px 10px;
  }
}
.page-top .info address {
  font-size: 16px;
  line-height: var(--lh-18);
}
.page-top .info__map {
  width: 500px;
  margin-top: 100px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__map {
    width: 100%;
    margin-top: 0;
  }
}
.page-top .info__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 500/300;
}
.page-top .info__map a {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: var(--font-color);
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
}
.page-top .info__map a svg {
  width: 16px;
  height: 16px;
  fill: var(--font-color);
}
.page-top .info__service {
  width: min(1000px, 100%);
  padding: 20px;
  margin-inline: auto;
  border: 1px solid var(--color-beige);
}
.page-top .info__service p {
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.page-top .info__service ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__service ul {
    gap: 12px;
  }
}
.page-top .info__service ul li {
  width: calc((100% - 80px) / 5);
  height: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__service ul li {
    width: calc((100% - 24px) / 3);
    height: 26px;
  }
}
.page-top .info__service ul a {
  display: grid;
  place-content: center;
  height: 100%;
  background: var(--color-gold);
  color: var(--base-color);
  font-size: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  transition: background 0.3s;
}
@media (hover: hover) {
  .page-top .info__service ul a:hover {
    background: var(--color-brown);
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .info__service ul a {
    font-size: 10px;
  }
}
.page-top .calendar {
  width: min(1200px, 100%);
  padding: 80px 0 140px;
  margin-inline: auto;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .calendar {
    padding: 70px 10px 90px;
  }
}
.page-top .calendar .headingEN {
  position: absolute;
  top: -40px;
  left: 0;
  pointer-events: none;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .calendar .headingEN {
    top: -10px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .calendar .headingEN {
    font-size: 80px;
  }
}
.page-top .calendar__inner {
  display: flex;
  justify-content: space-between;
  width: min(1000px, 100%);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .calendar__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.page-top .calendar__month {
  width: calc((100% - 40px) / 2);
  background: var(--base-color);
  border-top: 2px solid var(--color-brown);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .calendar__month {
    width: 100%;
  }
}
.page-top .calendar__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--color-gray);
}
.page-top .calendar__title p {
  color: var(--color-brown);
  font-size: 14px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .calendar__title p:nth-child(2) {
  font-size: 30px;
}
.page-top .calendar__table {
  table-layout: fixed;
}
.page-top .calendar__table th,
.page-top .calendar__table td {
  border: 1px solid var(--color-gray);
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}
.page-top .calendar__table thead th {
  height: 20px;
  background: var(--color-brown);
  color: var(--base-color);
  font-size: 12px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
  border: none;
}
.page-top .calendar__table tbody td {
  height: 64px;
  padding: 5px;
  color: var(--color-brown);
  background: var(--base-color);
  font-size: 10px;
  line-height: var(--lh-14);
}
.page-top .calendar__table tbody td span.red {
  color: #970e0e;
}
.page-top .calendar__table tbody td span.small {
  font-size: 7px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .calendar__table tbody td span.small {
    font-size: 6px;
  }
}
.page-top .calendar__table tbody td span.pink, .page-top .calendar__table tbody td span.blue, .page-top .calendar__table tbody td span.orange {
  letter-spacing: 0;
  line-height: 1;
}
.page-top .calendar__table tbody td span.pink {
  color: #f133b1;
}
.page-top .calendar__table tbody td span.blue {
  color: #37a9cc;
}
.page-top .calendar__table tbody td span.orange {
  color: #f97511;
}
.page-top .calendar__table tbody td.holiday {
  background: #ffebeb;
  position: relative;
}
.page-top .calendar__table tbody td.holiday span {
  display: inline-block;
  font-size: 12px;
  color: #970e0e;
  letter-spacing: 0.3em;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.page-top .calendar__table tbody td.next {
  color: var(--color-gray);
  background: var(--base-color);
}
.page-top .concept {
  margin-bottom: 200px;
  position: relative;
}
.page-top .concept::after {
  content: "";
  display: block;
  width: 100%;
  height: 812px;
  background: #f2efec;
  position: absolute;
  bottom: -400px;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept::after {
    height: 1060px;
    bottom: -200px;
  }
}
.page-top .concept__bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.page-top .concept__bg img {
  width: 100%;
  height: auto;
}
.page-top .concept__inner {
  width: min(1000px, 100%);
  padding-top: 7.2916666667vw;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .page-top .concept__inner {
    padding-top: 4.6666666667vw;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__inner {
    padding: 70px 20px 0;
    margin-bottom: 56px;
  }
}
.page-top .concept__inner h2 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1550px) {
  .page-top .concept__inner h2 {
    padding-left: 6.6666666667vw;
  }
}
@media screen and (max-width: 1300px) {
  .page-top .concept__inner h2 {
    padding-left: 11.1333333333vw;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__inner h2 {
    gap: 24px;
    padding-left: 0;
    margin-bottom: 0;
  }
}
.page-top .concept__inner h2 img {
  width: 700px;
  height: auto;
}
@media screen and (max-width: 1550px) {
  .page-top .concept__inner h2 img {
    width: 600px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__inner h2 img {
    width: 272px;
  }
}
.page-top .concept__inner h2 span {
  font-size: 25px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-18);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__inner h2 span {
    font-size: 16px;
  }
}
.page-top .concept__inner .headingEN {
  margin-bottom: 15px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__inner .headingEN {
    margin-bottom: 0;
    font-size: 86px;
  }
}
.page-top .concept__text {
  display: flex;
  gap: 50px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__text {
    flex-direction: column;
    gap: 40px;
  }
}
.page-top .concept__image {
  width: 450px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__image {
    width: 247px;
  }
}
.page-top .concept__image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.page-top .concept__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 100px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__content {
    gap: 40px;
    margin-top: 0;
  }
}
.page-top .concept__content h3 {
  font-size: 30px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-18);
}
@media screen and (max-width: 425px) {
  .page-top .concept__content h3 {
    font-size: 26px;
  }
}
.page-top .concept__philosophy {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: min(1300px, 100%);
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__philosophy {
    padding: 0 10px;
  }
}
.page-top .concept__item {
  display: flex;
  gap: 50px;
  padding: 40px 40px 40px 0;
  background: var(--base-color);
  border-radius: 5px;
  box-shadow: 0px 0px 8px rgba(166, 144, 115, 0.34);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__item {
    flex-direction: column;
    gap: 20px;
    padding: 42px 20px;
  }
}
.page-top .concept__head {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 310px;
  border-right: 1px solid var(--color-beige);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .concept__head {
    width: 100%;
    padding-bottom: 24px;
    border-right: none;
    border-bottom: 1px solid var(--color-beige);
  }
}
.page-top .concept__head p {
  color: var(--color-beige);
  font-size: 20px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.page-top .concept__head h4 {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 24px;
  line-height: var(--lh-14);
  text-align: center;
}
.page-top .choose {
  padding: 120px 0 200px;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose {
    padding: 140px 10px 260px;
  }
}
.page-top .choose::before {
  content: "";
  display: block;
  width: 50vw;
  aspect-ratio: 960/600;
  background: linear-gradient(to right, var(--color-beige) 0%, var(--color-gold) 100%);
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1200px) {
  .page-top .choose::before {
    width: 600px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose::before {
    width: 288px;
    height: 180px;
    top: -90px;
  }
}
.page-top .choose::after {
  content: "";
  display: block;
  width: 30.2083333333vw;
  aspect-ratio: 580/600;
  background: url(../images/home_10.webp) no-repeat center/contain;
  position: absolute;
  bottom: -10px;
  right: 200px;
}
@media screen and (max-width: 1200px) {
  .page-top .choose::after {
    width: 362.5px;
    right: 100px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose::after {
    width: 300px;
    right: 0;
  }
}
.page-top .choose__head {
  width: min(1300px, 100%);
  padding: 0 50px;
  margin-inline: auto;
  position: relative;
  margin-bottom: 92px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__head {
    padding: 0;
    margin-bottom: 52px;
  }
}
.page-top .choose__head .headingEN {
  margin-bottom: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 1440px) {
  .page-top .choose__head .headingEN {
    font-size: 140px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__head .headingEN {
    margin-bottom: 0;
    font-size: 56px;
    position: absolute;
    top: -160px;
    left: -10px;
  }
}
.page-top .choose__head h2 {
  margin-bottom: 32px;
  font-size: 40px;
  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: 640px) {
  .page-top .choose__head h2 {
    margin-bottom: 24px;
  }
}
.page-top .choose__head h2 span {
  color: var(--color-gold);
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .choose__head__lead {
  font-size: 16px;
}
.page-top .choose__inner {
  padding: 0 50px;
  width: min(1300px, 100%);
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__inner {
    display: flex;
    flex-direction: column;
    gap: 52px;
    padding: 0;
  }
}
.page-top .choose__item {
  width: 450px;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item {
    width: 100%;
  }
}
.page-top .choose__item:not(:first-of-type) {
  margin-top: -220px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:not(:first-of-type) {
    margin-top: 0;
  }
}
.page-top .choose__item:nth-of-type(2) {
  margin-inline: auto 150px;
}
@media screen and (max-width: 1440px) {
  .page-top .choose__item:nth-of-type(2) {
    margin-inline: auto 100px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(2) {
    margin: 0;
  }
}
.page-top .choose__item:nth-of-type(3) {
  margin-inline: 100px auto;
}
@media screen and (max-width: 1440px) {
  .page-top .choose__item:nth-of-type(3) {
    margin-inline: 50px auto;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(3) {
    margin: 0;
  }
}
.page-top .choose__item:nth-of-type(3) .choose__num {
  right: unset;
  left: -70px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(3) .choose__num {
    left: -10px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(3) .choose__image {
    margin-inline: auto 0;
  }
}
.page-top .choose__item:nth-of-type(4) {
  margin-inline: auto 0;
}
.page-top .choose__item:nth-of-type(4) .choose__num {
  right: unset;
  left: -70px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(4) .choose__num {
    left: -10px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(4) .choose__image {
    margin-inline: auto 0;
  }
}
.page-top .choose__item:nth-of-type(5) {
  display: flex;
  gap: 50px;
  width: 930px;
  margin-top: 0;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(5) {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
}
.page-top .choose__item:nth-of-type(5) .choose__num {
  right: unset;
  left: 50%;
  translate: -60% 0;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(5) .choose__num {
    left: unset;
    right: -10px;
    translate: 0;
  }
}
.page-top .choose__item:nth-of-type(5) .choose__image {
  flex: none;
  width: 450px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(5) .choose__image {
    width: 357px;
  }
}
.page-top .choose__item:nth-of-type(5) .choose__content {
  margin-top: 200px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__item:nth-of-type(5) .choose__content {
    margin-top: 0;
  }
}
.page-top .choose__num {
  color: var(--color-gold);
  font-size: 160px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
  opacity: 0.3;
  position: absolute;
  top: -10px;
  right: -70px;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__num {
    font-size: 126px;
    right: -10px;
  }
}
.page-top .choose__image {
  margin-bottom: 34px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .choose__image {
    width: 357px;
  }
}
.page-top .choose__image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.page-top .choose__content h3 {
  margin-bottom: 15px;
  color: var(--color-gold);
  font-size: 30px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .treatment__image {
  width: 100%;
  margin-bottom: 90px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .treatment__image {
    margin-bottom: 76px;
  }
}
.page-top .treatment__image img {
  width: 100%;
  height: auto;
}
.page-top .treatment__inner {
  width: min(800px, 100%);
  margin: 0 auto 170px;
  text-align: center;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .treatment__inner {
    padding: 0 10px;
    margin-bottom: 140px;
  }
}
.page-top .treatment__inner .headingEN {
  position: absolute;
  top: -180px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .treatment__inner .headingEN {
    font-size: 80px;
    top: -110px;
  }
}
.page-top .treatment__inner ul {
  display: flex;
  gap: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .treatment__inner ul {
    gap: 10px;
  }
}
.page-top .treatment__inner ul li {
  flex: 1;
}
.page-top .treatment__inner ul li a {
  display: block;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-beige);
  color: var(--font-color);
  font-size: 18px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
@media (hover: hover) {
  .page-top .treatment__inner ul li a:hover::after {
    scale: 1.5;
    bottom: -13px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .treatment__inner ul li a {
    font-size: 16px;
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .treatment__inner ul li a {
    font-size: 14px;
    white-space: nowrap;
  }
}
.page-top .treatment__inner ul li a::after {
  content: "";
  display: block;
  width: 28px;
  height: 10px;
  background: var(--color-beige);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  translate: -50% 0;
  transition: all 0.3s;
}
.page-top .treatment__title {
  margin-bottom: 66px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .treatment__title {
    margin-bottom: 42px;
  }
}
.page-top .treatment__title h2 {
  margin-bottom: 32px;
  font-size: 40px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .treatment__title h2 {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .treatment__title h2 {
    font-size: 36px;
  }
}
.page-top .treatment__title p {
  font-size: 16px;
}
.page-top .subTreatment {
  width: min(1560px, 100%);
  position: relative;
}
.page-top .subTreatment:not(:last-of-type) {
  margin-bottom: 80px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .subTreatment:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.page-top .subTreatment__image {
  width: 100%;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .subTreatment__image {
    height: auto;
    position: static;
  }
}
.page-top .subTreatment__image img {
  width: 100%;
  height: auto;
}
.page-top .subTreatment__inner {
  width: min(610px, 100%);
  padding-top: 150px;
  margin-inline: auto 100px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .subTreatment__inner {
    padding: 0 10px;
    margin-top: -40px;
  }
}
.page-top .subTreatment__inner h3 {
  display: inline-block;
  background: var(--base-color);
  padding: 24px 40px;
  margin-bottom: 40px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  font-size: 50px;
  line-height: var(--lh-12);
  letter-spacing: 0.05em;
  color: var(--color-gold);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .subTreatment__inner h3 {
    padding: 15px 10px;
    margin-bottom: 0;
    font-size: 40px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .subTreatment__inner h3 {
    font-size: 36px;
  }
}
.page-top .subTreatment__unit {
  padding: 40px 40px 0;
  background: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .subTreatment__unit {
    padding: 20px 0 0;
  }
}
.page-top .subTreatment__unit .c-desc {
  margin-bottom: 42px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .subTreatment__unit .c-desc {
    margin-bottom: 24px;
  }
}
.page-top .subTreatment__list {
  margin-bottom: 42px;
}
.page-top .subTreatment__list p {
  margin-bottom: 12px;
  color: var(--color-beige);
  font-size: 20px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.05em;
}
.page-top .subTreatment__list ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.page-top .subTreatment__list ul li::before {
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  background: var(--color-gold);
  clip-path: polygon(100% 50%, 0 0, 0 100%);
}
.page-top .subTreatment.implant {
  margin-inline: auto 0;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .subTreatment.implant {
    margin-inline: 0;
  }
}
.page-top .subTreatment.implant .subTreatment__inner {
  margin-inline: 100px auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .subTreatment.implant .subTreatment__inner {
    margin-inline: 0;
  }
}
.page-top .service {
  width: min(1300px, 100%);
  padding: 150px 50px 200px;
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .service {
    padding: 35px 10px 150px;
  }
}
.page-top .service__head {
  display: flex;
  align-items: baseline;
  gap: 30px;
  margin-bottom: 56px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .service__head {
    flex-direction: column;
    margin-bottom: 45px;
  }
}
.page-top .service__head h3 {
  font-size: 40px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.page-top .service__head p {
  font-size: 16px;
}
.page-top .service__list {
  display: flex;
  flex-direction: column;
}
.page-top .service__category {
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-beige);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .service__category {
    flex-direction: column;
    gap: 32px;
    padding: 40px 0;
  }
}
.page-top .service__category:first-of-type {
  border-top: 1px solid var(--color-beige);
}
.page-top .service__category h4 {
  width: 300px;
  color: var(--color-gold);
  font-size: 24px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  letter-spacing: 0.05em;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .service__category h4 {
    width: 100%;
    text-align: center;
  }
}
.page-top .service__category ul {
  flex: 1;
  display: flex;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .service__category ul {
    gap: 40px 0;
    width: 100%;
    flex-wrap: wrap;
  }
}
.page-top .service__category ul li {
  width: 25%;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .service__category ul li {
    width: 50%;
  }
}
.page-top .service__category ul a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--font-color);
  font-size: 18px;
}
@media (hover: hover) {
  .page-top .service__category ul a:hover img {
    scale: 1.1;
  }
}
.page-top .service__category ul a img {
  width: 80px;
  height: auto;
  transition: scale 0.3s;
}
.page-top .service__category ul a span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .doctor {
  padding: 260px 0 200px;
  background: #f3ede7;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor {
    padding: 150px 10px 100px;
  }
}
.page-top .doctor__inner {
  width: min(1300px, 100%);
  padding: 0 50px;
  margin-inline: auto;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor__inner {
    padding: 0;
  }
}
.page-top .doctor__inner .headingEN {
  padding-bottom: 10px;
  position: absolute;
  top: -350px;
  left: 0;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor__inner .headingEN {
    top: -240px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .doctor__inner .headingEN {
    font-size: 80px;
  }
}
.page-top .doctor__unit {
  display: flex;
  gap: 40px;
  margin-bottom: 42px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor__unit {
    flex-direction: column;
    gap: 30px;
  }
}
.page-top .doctor__image {
  flex: none;
  width: 560px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor__image {
    width: 100%;
  }
}
.page-top .doctor__image img {
  width: 100%;
  height: auto;
}
.page-top .doctor__text h2 {
  margin-bottom: 50px;
  font-size: 50px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
  letter-spacing: 0.05em;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor__text h2 {
    margin-bottom: 40px;
    font-size: 40px;
  }
}
.page-top .doctor__text .c-desc {
  margin-bottom: 30px;
}
.page-top .doctor__name {
  font-size: 30px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: right;
}
.page-top .doctor__name span {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .doctor__profile {
  display: flex;
  gap: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor__profile {
    flex-direction: column;
    gap: 24px;
  }
}
.page-top .doctor__left, .page-top .doctor__right {
  flex: 1;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor__left, .page-top .doctor__right {
    display: contents;
  }
}
.page-top .doctor__right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .doctor__right {
    display: contents;
  }
}
.page-top .doctor__list > p {
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--color-gold);
  font-size: 20px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.05em;
  line-height: var(--lh-16);
}
.page-top .doctor__list ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-top .doctor__list ul li {
  font-size: 16px;
}
.page-top .doctor__list ul li:has(span) {
  display: flex;
}
.page-top .doctor__list ul li:has(span) span {
  flex: none;
  width: 80px;
}
.page-top .instagram {
  width: min(800px, 100%);
  padding: 200px 0 100px;
  margin-inline: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .instagram {
    padding: 100px 10px;
  }
}
.page-top .instagram__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .instagram__title {
    gap: 10px;
    margin-bottom: 40px;
  }
}
.page-top .instagram__title img {
  width: 90px;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .instagram__title img {
    width: 50px;
  }
}
.page-top .instagram__info p {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .instagram__info p:nth-of-type(1) {
  font-size: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .instagram__info p:nth-of-type(1) {
    font-size: 22px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .instagram__info p:nth-of-type(1) {
    font-size: 18px;
  }
}
.page-top .instagram__info p:nth-of-type(2) {
  font-size: 25px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .instagram__info p:nth-of-type(2) {
    font-size: 14px;
  }
}
.page-top .instagram__widget iframe {
  width: 100%;
  height: 240px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .instagram__widget iframe {
    height: 126px;
  }
}
.page-top .column {
  width: min(1300px, 100%);
  padding: 120px 50px 200px;
  margin-inline: auto;
  position: relative;
}
.page-top .column::before {
  content: "";
  display: block;
  width: calc(100% - 100px);
  height: 1px;
  background: #a69073;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .column {
    padding: 80px 10px 100px;
  }
  .page-top .column::before {
    width: calc(100% - 20px);
  }
}
.page-top .column .headingEN {
  padding-bottom: 10px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .column .headingEN {
    font-size: 70px;
    text-align: center;
  }
}
@media screen and (max-width: 425px) {
  .page-top .column .headingEN {
    font-size: 60px;
  }
}
.page-top .column .case__head,
.page-top .column .blog__head {
  display: flex;
  gap: 30px;
  align-items: baseline;
  margin-bottom: 42px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .column .case__head,
  .page-top .column .blog__head {
    flex-direction: column;
    gap: 20px;
  }
}
.page-top .column .case__head h2,
.page-top .column .blog__head h2 {
  font-size: 40px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .column .case__head p,
.page-top .column .blog__head p {
  font-size: 16px;
}
.page-top .column .case__slider,
.page-top .column .blog__slider {
  margin-bottom: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .column .case__slider,
  .page-top .column .blog__slider {
    padding: 0 24px;
  }
}
.page-top .column .case__slider .splide__list,
.page-top .column .blog__slider .splide__list {
  display: flex;
  gap: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .column .case__slider .splide__list,
  .page-top .column .blog__slider .splide__list {
    gap: 0;
  }
}
.page-top .column .case .splide__unit,
.page-top .column .blog .splide__unit {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .column .case .splide__unit,
  .page-top .column .blog .splide__unit {
    display: block;
    margin-top: 24px;
    position: relative;
  }
}
.page-top .column .case .splide__arrows,
.page-top .column .blog .splide__arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 172px;
}
.page-top .column .case .splide__arrow,
.page-top .column .blog .splide__arrow {
  width: 14px;
  height: 14px;
  background: none;
  border: none;
}
.page-top .column .case .splide__arrow span,
.page-top .column .blog .splide__arrow span {
  display: block;
  width: 12px;
  height: 14px;
  background: var(--font-color);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.page-top .column .case .splide__arrow.splide__arrow--next span,
.page-top .column .blog .splide__arrow.splide__arrow--next span {
  scale: -1 1;
}
.page-top .column .case .splide__pagination,
.page-top .column .blog .splide__pagination {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.page-top .column .case .splide__pagination .splide__pagination__page,
.page-top .column .blog .splide__pagination .splide__pagination__page {
  width: 16px;
  height: 16px;
  border: 1px solid #c8bbb0;
  border-radius: 50%;
  background: #fff;
}
.page-top .column .case .splide__pagination .splide__pagination__page.is-active,
.page-top .column .blog .splide__pagination .splide__pagination__page.is-active {
  background: #6f5e4f;
}
.page-top .column .case__noarticle,
.page-top .column .blog__noarticle {
  font-size: 16px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .column .case .c-button,
.page-top .column .blog .c-button {
  margin-inline: auto;
}
.page-top .column .case {
  padding-bottom: 80px;
  border-bottom: 1px solid #a69073;
}
.page-top .column .case__item {
  width: calc((100% - 80px) / 3);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .column .case__item {
    width: 100%;
  }
}
.page-top .column .case__item .c-caseBox {
  margin-bottom: 10px;
}
.page-top .column .case__title {
  display: block;
  color: var(--font-color);
  font-size: 20px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  transition: color 0.3s;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (hover: hover) {
  .page-top .column .case__title:hover {
    color: var(--color-brown);
  }
}
.page-top .column .blog {
  padding-top: 80px;
}
.page-top .column .blog__list {
  display: flex;
  gap: 40px;
  margin-bottom: 52px;
}
.page-top .column .blog__item {
  width: calc((100% - 80px) / 3);
  color: var(--font-color);
}
@media (hover: hover) {
  .page-top .column .blog__item:hover .blog__title {
    color: var(--color-brown);
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .column .blog__item {
    width: 100%;
  }
}
.page-top .column .blog__item a {
  color: var(--font-color);
}
.page-top .column .blog__image {
  margin-bottom: 20px;
}
.page-top .column .blog__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 372/250;
  object-fit: cover;
}
.page-top .column .blog__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.page-top .column .blog__category {
  display: grid;
  place-content: center;
  min-width: 100px;
  height: 30px;
  background: var(--color-gold);
  border-radius: 15px;
  color: #6f5e4f;
  font-size: 14px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
  white-space: nowrap;
}
.page-top .column .blog__time {
  font-size: 16px;
}
.page-top .column .blog__title {
  width: 100%;
  font-size: 20px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-16);
  transition: color 0.3s;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-top .faq {
  background: url("../images/home_16.webp") top center/cover no-repeat;
  padding: 200px 0 400px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .faq {
    padding: 100px 10px;
    background: url("../images/home_16_sp.webp") top center/cover no-repeat;
  }
}
.page-top .faq__inner {
  width: min(1000px, 100%);
  margin-inline: auto;
}
.page-top .faq__inner .headingEN {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .faq__inner .headingEN {
    margin-bottom: 20px;
  }
}
.page-top .faq__head {
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .faq__head {
    margin-bottom: 42px;
  }
}
.page-top .faq__head h2 {
  margin-bottom: 30px;
  font-size: 40px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.05em;
}
.page-top .faq__head p {
  font-size: 16px;
}
.page-top .faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-top .faq__list details {
  background: var(--base-color);
  border-radius: 5px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}
.page-top .faq__list details .question,
.page-top .faq__list details .answer {
  flex: none;
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  color: var(--base-color);
  font-size: 18px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .faq__list details .question {
  background: var(--color-gold);
}
.page-top .faq__list details .answer {
  background: var(--color-brown);
}
.page-top .faq__list details summary {
  display: flex;
  gap: 20px;
  padding: 40px;
  cursor: pointer;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .faq__list details summary {
    gap: 10px;
    padding: 20px;
  }
}
.page-top .faq__list details summary::-webkit-details-marker {
  display: none;
}
.page-top .faq__list details summary .txt {
  flex: 1;
  color: var(--color-gold);
  font-size: 18px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .faq__list details summary .ico {
  flex: none;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: #8f8f8f;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .faq__list details summary .ico {
    width: 20px;
    height: 20px;
    margin-top: 15px;
  }
}
.page-top .faq__list details summary .ico::before, .page-top .faq__list details summary .ico::after {
  content: "";
  background: var(--base-color);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.page-top .faq__list details summary .ico::before {
  width: 20px;
  height: 2px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .faq__list details summary .ico::before {
    width: 12px;
  }
}
.page-top .faq__list details summary .ico::after {
  width: 2px;
  height: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .faq__list details summary .ico::after {
    height: 12px;
  }
}
.page-top .faq__list details[open] summary .ico::after {
  opacity: 0;
  rotate: 90deg;
}
.page-top .faq__list details .content__inner {
  display: flex;
  gap: 20px;
  padding: 40px;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .faq__list details .content__inner {
    gap: 10px;
    padding: 20px;
  }
}
.page-top .faq__list details .content__inner::before {
  content: "";
  display: block;
  width: 860px;
  height: 1px;
  background: var(--color-beige);
  position: absolute;
  top: 0;
  left: 40px;
}
.page-top .faq__list details .content__inner .c-desc {
  flex: 1;
}
.page-top .lead {
  margin-top: -200px;
  position: relative;
  z-index: 1;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .lead {
    margin-top: 0;
  }
}
.page-top .lead img {
  width: 100%;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access {
    padding-top: 10px;
  }
}
.page-top .access__title {
  width: min(1300px, 100%);
  padding: 0 50px;
  margin: 0 auto 52px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__title {
    padding: 0 10px;
  }
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__title .headingEN {
    margin-bottom: 10px;
  }
}
.page-top .access__title h2 {
  font-size: 40px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.page-top .access__inner {
  padding: 100px 0;
  background: var(--color-beige);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__inner {
    padding: 50px 10px;
  }
}
.page-top .access__inside {
  width: min(1200px, 100%);
  padding: 100px;
  margin-inline: auto;
  background: var(--base-color);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__inside {
    padding: 50px 10px;
  }
}
.page-top .access__unit {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__unit {
    flex-direction: column;
  }
}
.page-top .access__content {
  width: 480px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__content {
    width: 100%;
  }
}
.page-top .access__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.page-top .access__head img {
  width: 290px;
  height: auto;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__head img {
    width: 242px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .access__head img {
    width: 220px;
  }
}
.page-top .access__head p {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 30px;
  background: var(--color-beige);
  color: var(--color-brown);
  font-size: 16px;
  border-radius: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__head p {
    padding: 5px 24px;
    font-size: 12px;
  }
}
@media screen and (max-width: 425px) {
  .page-top .access__head p {
    padding: 5px 10px;
  }
}
.page-top .access address {
  font-size: 16px;
  line-height: var(--lh-18);
}
.page-top .access__map {
  width: 500px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__map {
    width: 100%;
  }
}
.page-top .access__map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 500/300;
}
.page-top .access__map a {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  color: var(--font-color);
  font-size: 16px;
  font-weight: 700;
  text-decoration: underline;
}
.page-top .access__map a svg {
  width: 16px;
  height: 16px;
  fill: var(--font-color);
}
.page-top .access__clinic p {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-bottom: 24px;
  font-size: 30px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  position: relative;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__clinic p {
    gap: 10px;
    font-size: 20px;
  }
}
.page-top .access__clinic p::before, .page-top .access__clinic p::after {
  flex: 1;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #707070;
}
.page-top .access__clinic ul {
  display: flex;
  gap: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .page-top .access__clinic ul {
    gap: 10px;
  }
}
.page-top .access__clinic ul li {
  flex: 1;
}
.page-top .access__clinic ul li img {
  width: 100%;
  height: auto;
}

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

記事一覧

------------------------------------------------------------ */
.under #content .archive p {
  margin-bottom: 0;
}

.archive a:hover,
.archive a:active {
  text-decoration: none;
}

.archive__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .archive__links {
    gap: 10px;
  }
}
.archive__links .c-button {
  width: calc((100% - 40px) / 3);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .archive__links .c-button {
    width: 100%;
  }
}
.archive__inner {
  padding-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .archive__inner {
    grid-template-columns: 1fr;
  }
}

.articleUnit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f2efec;
  padding: 20px;
  border-radius: 5px;
}
.articleUnit__meta {
  display: flex;
  gap: 20px;
  align-items: center;
}
.articleUnit__category {
  display: grid;
  place-content: center;
  min-width: 100px;
  height: 30px;
  background: var(--color-gold);
  border-radius: 15px;
  color: var(--base-color);
  font-size: 14px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: 1;
  white-space: nowrap;
}
.articleUnit__time {
  font-size: 14px;
}
.articleUnit__title {
  flex: 1;
  line-height: var(--lh-16);
  font-weight: 700;
}
.articleUnit__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 372/250;
  object-fit: cover;
}
.articleUnit .c-button {
  width: 100%;
}

.PageNavi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-top: 80px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .PageNavi {
    flex-wrap: wrap;
  }
}
.PageNavi .page-numbers {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--color-beige);
  color: var(--font-color);
  font-size: 16px;
  border-radius: 5px;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .PageNavi .page-numbers:hover {
    opacity: 0.7;
  }
}
.PageNavi .page-numbers.current {
  background: var(--color-brown);
  color: var(--base-color);
  pointer-events: none;
}
.PageNavi .page-numbers.dots {
  background: transparent;
}
.PageNavi .page-numbers.prev, .PageNavi .page-numbers.next {
  width: auto;
  background: transparent;
  border-radius: 0;
}

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

記事詳細

------------------------------------------------------------ */
.under #content .single p {
  margin-bottom: 0;
}

.single a:hover,
.single a:active {
  text-decoration: none;
}

.single > h2 {
  display: block;
  width: fit-content;
  margin: 0 auto 60px;
}
.single__unit {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .single__unit {
    flex-direction: column;
  }
}
.single__unit figure {
  width: calc((100% - 40px) / 2);
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .single__unit figure {
    width: 100%;
  }
}
.single__unit figure img {
  width: 100%;
  height: auto;
}
.single__unit figure figcaption {
  margin-top: 20px;
  padding: 12px;
  background: var(--color-beige);
  font-size: 16px;
  line-height: var(--lh-16);
  text-align: center;
}
.single__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.single__desc:not(:last-child) {
  margin-bottom: 40px;
}
.single__desc p,
.single__desc li {
  font-size: 16px;
  line-height: var(--lh-18);
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}
.single__desc strong {
  font-weight: 900;
  font-size: 18px;
}
.single__desc ol {
  margin-left: 25px;
}
.single__desc ol li {
  list-style-type: decimal;
}
.single__desc ul {
  margin-left: 25px;
}
.single__desc ul li {
  list-style-type: disc;
}
.single__desc a {
  color: var(--color-brown);
  text-decoration: underline;
}
.single__desc hr {
  width: 100%;
  border-style: solid;
  border-color: var(--color-beige);
}
.single__desc del {
  text-decoration: line-through;
}
.single__desc em {
  font-style: italic;
}
.single__desc blockquote {
  padding: 10px;
  background: var(--color-beige);
}
.single__desc h2 {
  font-size: 36px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  display: inline-block;
  text-align: center;
  background: #fff;
  line-height: 1.69em;
  padding: 0 23px;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
}
.single__desc h3 {
  font-size: 32px;
  text-align: center;
  padding-bottom: 19px;
  margin-bottom: 50px;
}
.single__desc h3:after {
  content: "";
  position: absolute;
  background-color: #a78061;
  width: 30px;
  height: 2px;
  bottom: 0;
  left: calc(50% - 15px);
}
.single__desc h3,
.single__desc h4,
.single__desc h5,
.single__desc h6 {
  line-height: 1.75em;
  position: relative;
  overflow: hidden;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  word-break: break-all;
}
.single .c-table {
  margin-bottom: 80px;
}
.single .c-beforeAfter {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .single .c-beforeAfter {
    flex-direction: column;
    gap: 24px;
  }
}
.single .c-beforeAfter__item {
  flex: 1;
}
.single .c-beforeAfter__item .c-beforeAfter__before,
.single .c-beforeAfter__item .c-beforeAfter__after {
  padding: 5px 10px;
  color: #ffffff;
  font-size: 20px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  text-align: center;
}
.single .c-beforeAfter__item .c-beforeAfter__before {
  background: var(--color-beige);
}
.single .c-beforeAfter__item .c-beforeAfter__after {
  background: var(--color-brown);
}
.single .c-beforeAfter__image img {
  width: 100%;
  height: auto;
}
.single .c-beforeAfter__arrow {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single .c-beforeAfter__arrow svg {
  width: 42px;
  height: 17px;
  fill: var(--color-beige);
  rotate: -90deg;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .single .c-beforeAfter__arrow svg {
    rotate: 0deg;
  }
}
.single .supervision,
.single .overview {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px;
  border: 1px solid var(--color-brown);
  border-radius: 5px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .single .supervision,
  .single .overview {
    flex-direction: column;
    padding: 40px 20px;
  }
}
.single .supervision__text,
.single .overview__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single .supervision__text address,
.single .overview__text address {
  font-size: 16px;
  line-height: var(--lh-16);
}
.single .supervision__text > a,
.single .overview__text > a {
  color: var(--font-color);
  font-size: 16px;
  text-decoration: underline;
}
@media (hover: hover) {
  .single .supervision__text > a:hover,
  .single .overview__text > a:hover {
    text-decoration: none;
  }
}
.single .supervision__text .c-button,
.single .overview__text .c-button {
  text-decoration: none;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .single .supervision__text .c-button,
  .single .overview__text .c-button {
    width: 100%;
  }
}
.single .supervision__title,
.single .overview__title {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-beige);
  font-size: 20px;
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
  line-height: var(--lh-14);
}
.single .supervision__title span,
.single .overview__title span {
  font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "HGS明朝E", "MS PMincho", "MS Mincho", serif;
}
.single .supervision__title span:nth-of-type(1),
.single .overview__title span:nth-of-type(1) {
  font-size: 18px;
}
.single .supervision__image,
.single .overview__image {
  flex: none;
  width: 300px;
}
@media screen and (orientation: portrait) and (max-width: 640px) {
  .single .supervision__image,
  .single .overview__image {
    width: 100%;
  }
}
.single .supervision__image img,
.single .overview__image img {
  width: 100%;
  height: auto;
}
.single .supervision__image figcaption,
.single .overview__image figcaption {
  margin-top: 20px;
  font-size: 16px;
  line-height: var(--lh-16);
  text-align: center;
}
.single .supervision {
  margin-bottom: 60px;
}

.singleNavi {
  padding-top: 80px;
}
.singleNavi__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.singleNavi__prev, .singleNavi__archive, .singleNavi__next {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--font-color);
  font-size: 16px;
  transition: color 0.3s;
}
@media (hover: hover) {
  .singleNavi__prev:hover, .singleNavi__archive:hover, .singleNavi__next:hover {
    color: var(--color-brown);
  }
  .singleNavi__prev:hover svg, .singleNavi__archive:hover svg, .singleNavi__next:hover svg {
    fill: var(--color-brown);
  }
}
.singleNavi__prev svg, .singleNavi__archive svg, .singleNavi__next svg {
  width: 12px;
  height: 12px;
  fill: var(--font-color);
  transition: fill 0.3s;
}
.singleNavi__prev svg {
  rotate: 180deg;
}
/*# sourceMappingURL=style.css.map */
