@charset "UTF-8";
/*----------------------------------------------------------

mixin

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

Reset

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

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

setting

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

全体

----------------------------------------------------------*/
:root {
  --header-block-size: 95px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 769px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media screen and (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-block-size);
  color: #55575F;
  overflow-x: hidden;
  text-align: left;
}
html[lang^=ja] body {
  font-family: "Noto Sans JP", sans-serif;
}

html[lang^=en] body {
  font-family: "EB Garamond", serif;
}

html[lang^=zh-CN] body {
  font-family: "Noto Serif SC", serif;
}

body * {
  box-sizing: border-box;
}

main {
  position: relative;
  z-index: 0;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

button {
  background: none;
  padding: 0;
  font-family: inherit;
}
button a {
  display: block;
  width: 100%;
  height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
}

main {
  width: 100%;
}

.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

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

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

.js-fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-fade-in.is-visible {
  opacity: 1;
}
.js-fade-in.fade-up {
  transform: translateY(40px);
}
.js-fade-in.fade-up.is-visible {
  transform: translateY(0);
}
.js-fade-in.fade-down {
  transform: translateY(-40px);
}
.js-fade-in.fade-down.is-visible {
  transform: translateY(0);
}
.js-fade-in.fade-left {
  transform: translateX(40px);
}
.js-fade-in.fade-left.is-visible {
  transform: translateX(0);
}
.js-fade-in.fade-right {
  transform: translateX(-40px);
}
.js-fade-in.fade-right.is-visible {
  transform: translateX(0);
}
.js-fade-in:not(.fade-up):not(.fade-down):not(.fade-left):not(.fade-right) {
  transform: translateY(20px);
}
.js-fade-in:not(.fade-up):not(.fade-down):not(.fade-left):not(.fade-right).is-visible {
  transform: translateY(0);
}
.js-fade-in.delay-1.is-visible {
  transition-delay: 0.1s;
}
.js-fade-in.delay-2.is-visible {
  transition-delay: 0.2s;
}
.js-fade-in.delay-3.is-visible {
  transition-delay: 0.3s;
}
.js-fade-in.delay-4.is-visible {
  transition-delay: 0.4s;
}
.js-fade-in.delay-5.is-visible {
  transition-delay: 0.5s;
}
.js-fade-in.delay-6.is-visible {
  transition-delay: 0.6s;
}
.js-fade-in.delay-7.is-visible {
  transition-delay: 0.7s;
}
.js-fade-in.delay-8.is-visible {
  transition-delay: 0.8s;
}

.editor-styles-wrapper .js-fade-in,
.block-editor-block-list__block .js-fade-in {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 32px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 840px) {
  .header {
    padding: 8px 24px;
  }
}
@media (max-width: 540px) {
  .header {
    padding: 8px 16px;
  }
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 840px) {
  .header__logo a {
    gap: 12px;
  }
}
@media (max-width: 540px) {
  .header__logo a {
    gap: 10px;
  }
}
.header__logo img {
  width: 56px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 840px) {
  .header__logo img {
    width: 48px;
  }
}
.header__logo .header__logo-text {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 840px) {
  .header__logo .header__logo-text {
    font-size: 15px;
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 840px) {
  .header__actions {
    gap: 16px;
  }
}
@media (max-width: 540px) {
  .header__actions {
    gap: 12px;
  }
}

@media (max-width: 840px) {
  .header__lang {
    display: none;
  }
}
.header__lang .bogo-language-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__lang .bogo-language-switcher li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__lang .bogo-language-switcher li::after {
  content: "";
  width: 1px;
  height: 16px;
  background: #e2e2e7;
}
.header__lang .bogo-language-switcher li:last-child::after {
  display: none;
}
.header__lang .bogo-language-switcher .bogo-language-name {
  font-family: "EB Garamond", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #aeb0bb;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  text-decoration: none;
}
.header__lang .bogo-language-switcher .bogo-language-name:hover {
  color: #b39a73;
}
.header__lang .bogo-language-switcher .bogo-language-name .current {
  color: #b39a73;
  font-weight: 600;
  pointer-events: none;
}
.header__lang-item {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #55575f;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  cursor: pointer;
}
@media (max-width: 840px) {
  .header__lang-item {
    font-size: 14px;
  }
}
.header__lang-item.is-active {
  color: #b39a73;
  font-weight: 600;
}
.header__lang-item:hover {
  color: #b39a73;
}
.header__lang-item span {
  pointer-events: none;
}
.header__lang-divider {
  width: 1px;
  height: 16px;
  background: #e2e2e7;
}

.header__line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  background: #b39a73;
  color: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #b39a73;
  min-width: 136px;
  letter-spacing: 0.05em;
  border-radius: 0px 8px;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  white-space: nowrap;
}
@media (max-width: 840px) {
  .header__line-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}
@media (max-width: 540px) {
  .header__line-btn {
    display: none;
  }
}
.header__line-btn:hover {
  background: rgba(236, 230, 216, 0.7019607843);
  color: #b39a73;
}

.header-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0.4, 0, 1), visibility 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.header-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.footer {
  width: 100%;
  background: #55575f;
  color: #FFFFFF;
}

.footer__access {
  width: 100%;
  background: #f6f5f0;
  padding-block: 56px 72px;
}
@media (max-width: 540px) {
  .footer__access {
    padding-block: 32px 0px;
  }
}
.footer__access-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 840px) {
  .footer__access-inner {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.footer__access-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 840px) {
  .footer__access-content {
    gap: 40px;
    width: 100%;
  }
}
.footer__access-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__access-address {
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 540px) {
  .footer__access-address {
    font-size: 14px;
  }
}
.footer__access-routes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__access-route-title {
  padding-left: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.footer__access-route-title:before {
  background: url("../img/footer_train.webp") no-repeat center center/cover;
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.footer__access-route-title p {
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}
.footer__access-route-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 8px;
}
.footer__access-route-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__access-route-item p {
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 540px) {
  .footer__access-route-item p {
    font-size: 14px;
  }
}
.footer__access-route-dot {
  background: #b39a73;
  flex: none;
  height: 2px;
  width: 8px;
  max-width: 100%;
}
.footer__access-map {
  width: 45%;
  flex-shrink: 0;
}
@media (max-width: 840px) {
  .footer__access-map {
    width: 100%;
  }
}
.footer__access-map iframe {
  width: 100%;
  height: 360px;
  border-radius: 8px;
}
@media (max-width: 840px) {
  .footer__access-map iframe {
    height: 300px;
  }
}
@media (max-width: 540px) {
  .footer__access-map iframe {
    height: 250px;
  }
}

.footer__reservation {
  width: 100%;
  background: linear-gradient(90deg, #b09871 0%, #a1885f 100%);
  padding: 40px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 840px) {
  .footer__reservation {
    padding: 32px 24px;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .footer__reservation {
    padding: 24px 16px;
  }
}
.footer__reservation-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 650px;
  width: 100%;
  gap: 0px;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 840px) {
  .footer__reservation-link {
    flex-direction: column;
    gap: 20px;
  }
}
.footer__reservation-link:hover {
  opacity: 1;
}
.footer__reservation-link:hover .footer__reservation-button {
  background: #fff;
  color: #b39a73;
}
.footer__reservation-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__reservation-title {
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #f8f7f4;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 840px) {
  .footer__reservation-title {
    font-size: 22px;
  }
}
@media (max-width: 540px) {
  .footer__reservation-title {
    font-size: 20px;
  }
}
.footer__reservation .footer__reservation-subtitle {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 840px) {
  .footer__reservation .footer__reservation-subtitle {
    font-size: 24px;
  }
}
@media (max-width: 540px) {
  .footer__reservation .footer__reservation-subtitle {
    font-size: 22px;
  }
}
.footer__reservation .footer__reservation-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 56px;
  background: #b39a73;
  border: 1px solid #FFFFFF;
  border-radius: 0px 8px 0px 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  transition: all 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 840px) {
  .footer__reservation .footer__reservation-button {
    padding: 20px 48px;
    font-size: 18px;
    gap: 12px;
  }
}
.footer__reservation .footer__reservation-icon {
  display: flex;
  align-items: center;
  transition: filter 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.footer__reservation .footer__reservation-icon img {
  width: auto;
  height: 32px;
  transition: filter 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.footer__reservation-link:hover .footer__reservation-icon img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(16%) saturate(1177%) hue-rotate(358deg) brightness(90%) contrast(88%);
}

.footer__main {
  background: #55575f;
  padding-block: 48px;
}
@media (max-width: 840px) {
  .footer__main {
    padding-block: 32px;
  }
}
@media (max-width: 540px) {
  .footer__main {
    padding-block: 24px;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
@media (max-width: 840px) {
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
@media (max-width: 540px) {
  .footer__top {
    text-align: center;
  }
}

.footer__logo {
  flex-shrink: 0;
}
.footer__logo a {
  display: inline-block;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.footer__logo a:hover {
  opacity: 0.7;
}
.footer__logo img {
  width: 144px;
  height: auto;
}
@media (max-width: 540px) {
  .footer__logo img {
    width: 100px;
  }
}

.footer__nav {
  width: 50%;
}
@media (max-width: 840px) {
  .footer__nav {
    width: 100%;
  }
}
@media (max-width: 540px) {
  .footer__nav {
    width: 100%;
  }
}
.footer__nav .footer__nav-columns {
  display: flex;
  gap: 80px;
}
@media (max-width: 840px) {
  .footer__nav .footer__nav-columns {
    gap: 60px;
  }
}
@media (max-width: 540px) {
  .footer__nav .footer__nav-columns {
    gap: 24px;
  }
}
.footer__nav-column {
  flex: 1;
}
.footer__nav .footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 840px) {
  .footer__nav .footer__nav-list li {
    margin-right: auto;
  }
}
@media (max-width: 840px) {
  .footer__nav .footer__nav-list li.is-pc {
    display: none;
  }
}
.footer__nav .footer__nav-list li a {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  display: inline-block;
}
@media (max-width: 540px) {
  .footer__nav .footer__nav-list li a {
    font-size: 15px;
  }
}
.footer__nav .footer__nav-list li a:hover {
  opacity: 0.7;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 840px) {
  .footer__social {
    margin-top: 40px;
    justify-content: center;
  }
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #FFFFFF;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .footer__social-link {
    width: 36px;
    height: 36px;
  }
}
.footer__social-link:hover {
  opacity: 0.7;
}
.footer__social-link svg {
  width: 24px;
  height: 24px;
}
.footer__social-link:nth-child(2) svg {
  width: 32px;
  height: 32px;
}

.footer__bottom {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (max-width: 840px) {
  .footer__bottom {
    flex-direction: column;
    gap: 40px;
  }
}

.footer__legal {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media (max-width: 540px) {
  .footer__legal {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
.footer__legal a {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .footer__legal a {
    font-size: 13px;
  }
}
.footer__legal a:hover {
  opacity: 0.7;
}

.footer__copyright {
  font-family: "EB Garamond", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}
@media (max-width: 840px) {
  .footer__copyright {
    padding-bottom: 40px;
  }
}
@media (max-width: 540px) {
  .footer__copyright {
    font-size: 12px;
  }
}

.header__hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 840px) {
  .header__hamburger {
    width: 40px;
    height: 32px;
  }
}
@media (max-width: 540px) {
  .header__hamburger {
    width: 40px;
    height: 28px;
  }
}
.header__hamburger span {
  display: block;
  height: 1px;
  background-color: #b39a73;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  border-radius: 1px;
}
.header__hamburger span:nth-of-type(1) {
  width: 40px;
}
.header__hamburger span:nth-of-type(2) {
  width: 24px;
}
.header__hamburger span:nth-of-type(3) {
  width: 32px;
}
.header__hamburger[aria-expanded=true] span:nth-of-type(1) {
  transform: translateY(8px) rotate(45deg);
  width: 32px;
}
.header__hamburger[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
.header__hamburger[aria-expanded=true] span:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 32px;
}

.hamburger {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  height: 100svh;
  z-index: 90;
  display: flex;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.2);
  translate: 100% 0;
  transition: translate 0.4s cubic-bezier(0.4, 0.4, 0, 1), opacity 0.4s cubic-bezier(0.4, 0.4, 0, 1), visibility 0.4s cubic-bezier(0.4, 0.4, 0, 1);
  opacity: 0;
  visibility: hidden;
  background: #b39a73;
}
@media (max-width: 840px) {
  .hamburger {
    max-width: 100%;
  }
}
.hamburger.is-open {
  translate: 0 0;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}
.hamburger__nav-area {
  gap: 40px;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-y: auto;
  padding-bottom: 20px;
}
@media (max-width: 540px) {
  .hamburger__nav-area {
    width: 100%;
    flex: 1;
    justify-content: inherit;
    padding: 80px 20px;
  }
}
.hamburger__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.hamburger__close::before, .hamburger__close::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: #FFFFFF;
  border-radius: 1px;
}
.hamburger__close::before {
  transform: rotate(45deg);
}
.hamburger__close::after {
  transform: rotate(-45deg);
}
.hamburger__nav {
  width: 55%;
}
@media (max-width: 840px) {
  .hamburger__nav {
    width: 100%;
  }
}
.hamburger__nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 840px) {
  .hamburger__nav ul {
    align-items: center;
  }
}
.hamburger__nav ul + ul {
  margin-top: 40px;
}
.hamburger__nav li a {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  text-decoration: none;
}
.hamburger__nav li a:hover {
  opacity: 0.7;
}
.hamburger__nav-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 840px) {
  .hamburger__nav-items {
    align-items: center;
  }
}
.hamburger__nav-item a {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  text-decoration: none;
}
.hamburger__nav-item a:hover {
  opacity: 0.7;
}
.hamburger__social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 840px) {
  .hamburger__social {
    justify-content: center;
  }
}
.hamburger__social .hamburger__social-link {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.hamburger__social .hamburger__social-link:nth-child(2) {
  width: 34px;
  height: 30px;
}
.hamburger__social .hamburger__social-link:hover {
  opacity: 0.7;
}
.hamburger__social .hamburger__social-link svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hamburger__bottom {
  display: flex;
  flex-direction: column;
  width: 55%;
}
.hamburger__lang {
  margin-top: 32px;
}
@media (min-width: 841px) {
  .hamburger__lang {
    display: none;
  }
}
.hamburger__lang .bogo-language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hamburger__lang .bogo-language-switcher li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hamburger__lang .bogo-language-switcher li::after {
  content: "";
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.5);
}
.hamburger__lang .bogo-language-switcher li:last-child::after {
  display: none;
}
.hamburger__lang .bogo-language-switcher .bogo-language-name {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #e1dfda;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  text-decoration: none;
}
.hamburger__lang .bogo-language-switcher .bogo-language-name:hover {
  opacity: 0.7;
}
.hamburger__lang .bogo-language-switcher .bogo-language-name .current {
  color: #fff;
  font-weight: 700;
  pointer-events: none;
}
.hamburger__cta {
  text-align: center;
}
.hamburger__cta .header__line-btn {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #b39a73;
  padding: 16px 24px;
  max-width: 168px;
  border-radius: 0px 8px 0px 8px;
  font-size: 15px;
}
@media (max-width: 840px) {
  .hamburger__cta .header__line-btn {
    max-width: 200px;
    padding: 12px 24px;
  }
}
@media (max-width: 540px) {
  .hamburger__cta .header__line-btn {
    margin: auto;
    display: flex;
    max-width: 100%;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.hamburger__cta .header__line-btn:hover {
  background: #a68d68;
  color: #FFFFFF;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: block;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #ffffff;
  border-radius: 10px;
  background-color: #ff0080;
  padding: 22px 30px;
}
.button-double {
  display: flex;
  align-items: stretch !important;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 860px) {
  .button-double {
    align-items: center !important;
    flex-direction: column;
  }
}
.button-double .wp-block-column {
  flex-grow: inherit !important;
  flex-basis: auto !important;
}
.button-double .wp-block-column .wp-block-buttons {
  align-items: stretch;
  height: 100%;
}
.button-double .wp-block-column .wp-block-buttons .wp-block-button__link {
  min-width: 320px;
}
.button-double .wp-block-column .wp-block-buttons .wp-block-button__link:not([href]) {
  cursor: default;
  pointer-events: none;
}

.section-title {
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: center;
  padding: 0px;
  width: 100%;
}
.section-title__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  font-weight: inherit;
}
.section-title .section-title__en {
  display: block;
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: left;
}
@media (max-width: 840px) {
  .section-title .section-title__en {
    font-size: 48px;
  }
}
@media (max-width: 540px) {
  .section-title .section-title__en {
    font-size: 48px;
  }
}
.section-title .section-title__ja {
  display: block;
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
  padding-bottom: 16px;
  position: relative;
}
@media (max-width: 540px) {
  .section-title .section-title__ja {
    font-size: 15px;
  }
}
.section-title .section-title__ja::after {
  background: #b39a73;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
}

.page-title {
  padding: 80px 0 0;
}

.page-title__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0;
  font-weight: inherit;
}

.page-title__en {
  display: block;
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 840px) {
  .page-title__en {
    font-size: 48px;
  }
}
@media (max-width: 540px) {
  .page-title__en {
    font-size: 40px;
  }
}

.page-title__ja {
  display: block;
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
  padding-bottom: 16px;
  position: relative;
}
@media (max-width: 540px) {
  .page-title__ja {
    font-size: 16px;
  }
}
.page-title__ja::after {
  background: #b39a73;
  content: "";
  position: absolute;
  width: 80px;
  height: 2px;
  left: 0;
  bottom: 0;
}

.inner {
  max-width: 1200px;
  width: 100%;
  padding-inline: 40px;
  margin: 0 auto;
}
@media (max-width: 840px) {
  .inner {
    padding-inline: 32px;
  }
}
@media (max-width: 540px) {
  .inner {
    padding-inline: 20px;
  }
}

.inner-negative {
  margin-inline: -40px;
}
@media (max-width: 840px) {
  .inner-negative {
    margin-inline: -32px;
  }
}
@media (max-width: 540px) {
  .inner-negative {
    margin-inline: -20px;
  }
}

.cta-button {
  align-content: center;
  align-items: center;
  display: inline-flex;
  flex: none;
  flex-wrap: nowrap;
  justify-content: center;
  height: 44px;
  width: 100%;
  max-width: 144px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid #b39a73;
  border-radius: 0px 8px 0px 8px;
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  z-index: 1;
}
@media (any-hover: hover) {
  .cta-button:hover {
    background: #b39a73;
    color: #ffffff;
    opacity: 1;
  }
}
@media (max-width: 540px) {
  .cta-button {
    font-size: 14px;
    height: 40px;
    width: 128px;
  }
}

.triangle--right,
.triangle--left,
.triangle--bottom-left {
  position: relative;
  z-index: 1;
}
.triangle--right::before,
.triangle--left::before,
.triangle--bottom-left::before {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 1/1;
  background: #FAF8F4;
  pointer-events: none;
  z-index: -1;
}
.triangle--right--large::before,
.triangle--left--large::before,
.triangle--bottom-left--large::before {
  width: 35%;
}
@media (max-width: 540px) {
  .triangle--right--large::before,
  .triangle--left--large::before,
  .triangle--bottom-left--large::before {
    width: 50%;
  }
}

.triangle--right::before {
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 0);
          clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.triangle--left::before {
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
          clip-path: polygon(0 0, 100% 0, 0 100%);
}

.triangle--bottom-left::before {
  bottom: 0;
  left: 0;
  top: auto;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%);
          clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.fixed-button {
  display: none;
}
@media (max-width: 540px) {
  .fixed-button {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 20px 20px 20px;
    justify-content: flex-end;
    align-items: center;
    z-index: 100;
    pointer-events: none;
  }
}

.fixed-button__link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 88px;
  min-height: 88px;
  padding: 8px 24px;
  background: #b39a73;
  border-radius: 0px 8px 0px 8px;
  box-shadow: 0px 1px 10px rgba(85, 79, 69, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  pointer-events: auto;
}

.fixed-button__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.5;
}

.footer__access + .page-single__breadcrumb, .footer__access + .case-single__breadcrumb, .footer__access + .column-single__breadcrumb, .footer__access + .menu-single__breadcrumb, .footer__access + .news-single__breadcrumb, .footer__access + .doctors-single__breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.footer__access + .page-single__breadcrumb::before, .footer__access + .case-single__breadcrumb::before, .footer__access + .column-single__breadcrumb::before, .footer__access + .menu-single__breadcrumb::before, .footer__access + .news-single__breadcrumb::before, .footer__access + .doctors-single__breadcrumb::before {
  content: "";
  position: absolute;
  background: #f6f5f0;
  margin: 0 calc((100vw - 100%) / 2 * -1);
  width: 100vw;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}
.footer__access + .page-single__breadcrumb {
  padding-top: 0;
}

.fv {
  margin-left: 0;
  margin-right: auto;
  position: relative;
  width: 98%;
  height: 95vh;
  background: #EEEEEE;
  border-radius: 0 0 40px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 540px) {
  .fv {
    height: 80vh;
    width: 98%;
    max-width: 98%;
  }
}

.fv__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.fv__content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 80px;
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
@media (max-width: 840px) {
  .fv__content {
    gap: 120px;
    padding: 0px 64px;
  }
}
@media (max-width: 540px) {
  .fv__content {
    gap: 48px;
    padding: 0px 32px;
  }
}

.fv__logo {
  position: absolute;
  bottom: 80px;
  right: 80px;
  width: 480px;
  opacity: 0.25;
  z-index: 2;
}
@media screen and (max-width: 1140px) {
  .fv__logo {
    display: flex;
    flex: none;
    width: 400px;
    max-width: 100%;
  }
}
@media (max-width: 840px) {
  .fv__logo {
    bottom: 64px;
    display: flex;
    flex: none;
    left: auto;
    right: 40px;
    top: auto;
    width: 45%;
    max-width: 45%;
  }
}
@media (max-width: 540px) {
  .fv__logo {
    bottom: 24px;
    display: flex;
    flex: none;
    left: auto;
    right: 16px;
    top: auto;
    width: 50%;
    max-width: 50%;
  }
}
.fv__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.fv__title {
  font-family: "EB Garamond", serif;
  font-size: 64px;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: transparent;
  background: linear-gradient(90deg, #b39a73 0%, #686a73 100%);
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0;
  animation: fv-title-fadein 0.7s ease-out 0.7s forwards;
}
@keyframes fv-title-fadein {
  to {
    opacity: 1;
  }
}
@media (max-width: 840px) {
  .fv__title {
    font-size: 52px;
  }
}
@media (max-width: 540px) {
  .fv__title {
    font-size: 22px;
  }
}

.fv__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 540px) {
  .fv__text {
    gap: 32px;
  }
}

.fv__text-main {
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  color: transparent;
  background: linear-gradient(90deg, #b39a73 0%, #55575f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0;
  transform: translateX(-20px);
  animation: fv-title-fadein 0.7s ease-out 1.2s forwards;
}
@keyframes fv-title-fadein {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 840px) {
  .fv__text-main {
    font-size: 36px;
  }
}
@media (max-width: 540px) {
  .fv__text-main {
    font-size: 24px;
    line-height: 1.6;
  }
}

.fv__text-sub {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #55575f;
  opacity: 0;
  transform: translateX(-20px);
  animation: fv-title-fadein 0.7s ease-out 1.5s forwards;
}
@keyframes fv-title-fadein {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 840px) {
  .fv__text-sub {
    font-size: 20px;
  }
}
@media (max-width: 540px) {
  .fv__text-sub {
    font-size: 15px;
  }
}

.fv__background {
  background: #b39a73;
  bottom: 0;
  height: 40%;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: -1;
}

.greeting {
  margin-top: -285px;
  padding: 365px 0 80px 0;
  align-content: center;
  align-items: center;
  background: linear-gradient(180deg, #b39a73 0%, #aa916a 100%);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 40px;
  height: auto;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 840px) {
  .greeting {
    padding-top: 265px;
    margin-top: -226px;
  }
}
@media (max-width: 540px) {
  .greeting {
    margin-top: -150px;
    padding: 220px 0 48px 0;
    gap: 24px;
  }
}

.greeting__inner {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 64px;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 840px) {
  .greeting__inner {
    gap: 48px;
    width: 88%;
  }
}
@media (max-width: 540px) {
  .greeting__inner {
    flex-direction: column;
    gap: 32px;
    width: 100%;
  }
}

.greeting__image {
  border-radius: 0 16px 0 16px;
  flex: none;
  height: 360px;
  width: 320px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 840px) {
  .greeting__image {
    flex: none;
    width: 280px;
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  .greeting__image {
    width: 264px;
    aspect-ratio: 240/280;
  }
}
.greeting__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.greeting__label {
  color: #bfa984;
  font-family: "EB Garamond", serif;
  font-size: 88px;
  font-weight: 400;
  height: auto;
  left: -244px;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
  position: absolute;
  text-align: left;
  top: 64px;
  transform: rotate(90deg);
  width: auto;
  z-index: 0;
}
@media (max-width: 840px) {
  .greeting__label {
    bottom: auto;
    font-size: 84px;
    left: -40px;
    right: auto;
    top: -80px;
    transform: rotate(0deg);
  }
}
@media (max-width: 540px) {
  .greeting__label {
    font-size: 64px;
    left: -76px;
    top: 40px;
    transform: rotate(90deg);
  }
}

.greeting__content {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex: none;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: center;
  padding: 0;
  width: 400px;
  z-index: 1;
}
@media (max-width: 840px) {
  .greeting__content {
    flex: 1;
    width: auto;
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  .greeting__content {
    width: calc(100% - 32px);
    gap: 24px;
  }
}

.greeting__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media (max-width: 840px) {
  .greeting__heading {
    align-items: center;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: center;
    padding: 0px;
  }
}

.greeting__heading-text {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
}

.greeting__heading-line {
  background: #d2c5b1;
  flex: none;
  height: 2px;
  width: 80px;
}
@media (max-width: 540px) {
  .greeting__heading-line {
    width: 60px;
  }
}

.greeting__profile {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: space-between;
  padding: 0 8px 0 0;
  width: 100%;
}
@media (max-width: 540px) {
  .greeting__profile {
    justify-content: space-between;
    padding-right: 8px;
    gap: 16px;
    padding: 0;
  }
}

.greeting__profile-info {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 540px) {
  .greeting__profile-info {
    gap: 16px;
  }
}

.greeting__profile-role {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 540px) {
  .greeting__profile-role {
    font-size: 18px;
  }
}

.greeting__profile-name {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 840px) {
  .greeting__profile-name {
    font-size: 28px;
  }
}
@media (max-width: 540px) {
  .greeting__profile-name {
    font-size: 24px;
  }
}

.greeting__social-list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.greeting__social-link {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: space-between;
}
.greeting__social-link img {
  flex: none;
  height: auto;
  width: 28px;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .greeting__social-link img {
    width: 24px;
  }
}
.greeting__social-link:hover {
  opacity: 0.8;
}

.greeting__description {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: left;
}
@media (max-width: 540px) {
  .greeting__description {
    font-size: 14px;
  }
}

.greeting__cta {
  border: 1px solid #ffffff;
  border-radius: 0 8px 0 8px;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: center;
  padding: 10px 16px;
  width: 144px;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .greeting__cta {
    margin: auto;
    width: 160px;
    padding: 12px 18px;
  }
}
.greeting__cta:hover {
  background: rgba(255, 255, 255, 0.1);
}

.greeting__cta-text {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: left;
}
.greeting-cta {
  width: 100%;
  padding: 40px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #aa916a 0%, #9d8760 100%);
}
@media (max-width: 540px) {
  .greeting-cta {
    padding: 32px 16px;
  }
}

.greeting-cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 0 8px 0 8px;
  min-width: 160px;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .greeting-cta__link {
    min-width: 140px;
    padding: 10px 20px;
  }
}
.greeting-cta__link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.greeting-cta__text {
  color: #ffffff;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 540px) {
  .greeting-cta__text {
    font-size: 14px;
  }
}

.menu-box + .menu-box {
  margin-top: 100px;
}
@media (max-width: 840px) {
  .menu-box + .menu-box {
    margin-top: 50px;
  }
}

.menu {
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 64px;
  justify-content: center;
  padding: 80px 32px;
  width: 100%;
  position: relative;
}
@media (max-width: 840px) {
  .menu {
    padding: 60px 24px;
    gap: 48px;
  }
}
@media (max-width: 540px) {
  .menu {
    padding: 48px 16px;
    gap: 40px;
  }
}

.menu__grid {
  margin-top: 40px;
  align-content: flex-start;
  align-items: flex-start;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 40px;
  width: 100%;
  padding-inline: 32px;
}
@media (max-width: 840px) {
  .menu__grid {
    margin-top: 24px;
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    padding-inline: 16px;
  }
}
@media (max-width: 540px) {
  .menu__grid {
    grid-template-columns: 1fr;
  }
}
.menu__grid + .menu__grid {
  margin-top: 64px;
}
@media (max-width: 840px) {
  .menu__grid + .menu__grid {
    margin-top: 0px;
  }
}

.menu-category {
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  width: 100%;
  position: relative;
}
@media (max-width: 840px) {
  .menu-category {
    gap: 0px;
  }
}

.menu-category__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #b39a73;
  padding: 10px 0;
}
@media (max-width: 840px) {
  .menu-category__header {
    padding: 12px 0;
    cursor: pointer;
  }
}

.menu-category__title-text {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 540px) {
  .menu-category__title-text {
    font-size: 16px;
  }
}

.menu-category__items {
  display: grid;
  transition: grid-template-rows 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  grid-template-rows: 0fr;
}

.menu-category__items > * {
  overflow: hidden;
}

.menu-category__details[open] .menu-category__items {
  grid-template-rows: 1fr;
}

.menu-category__answer-inner {
  overflow: hidden;
}

.menu-category__answer-body {
  padding-top: 16px;
}
@media (max-width: 840px) {
  .menu-category__answer-body {
    padding-bottom: 16px;
  }
}

.menu-category__item-divider {
  background: #e2e2e7;
  height: 1px;
  width: 100%;
}

.menu-category__item {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 10px 16px;
  width: 100%;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  border-bottom: 1px solid #e2e2e7;
}
.menu-category__item:first-child {
  border-top: 1px solid #e2e2e7;
}
@media (any-hover: hover) {
  .menu-category__item[href]:hover {
    background: rgba(179, 154, 115, 0.05);
    opacity: 1;
  }
  .menu-category__item[href]:hover .menu-category__item-arrow {
    translate: 4px 0;
  }
}

.menu-category__item-content {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: flex-start;
}

.menu-category__item-dot {
  background: #b39a73;
  flex: none;
  height: 2px;
  width: 8px;
}

.menu-category__item-text {
  color: #333;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 540px) {
  .menu-category__item-text {
    font-size: 14px;
  }
}

.menu-category__item-arrow {
  flex: none;
  height: auto;
  width: 12px;
  transition: 0.3s ease-out;
}
.menu-category__item-arrow svg {
  height: auto;
}

.menu-category__label {
  bottom: auto;
  color: #dbcebb;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  position: absolute;
  left: -18px;
  top: -16px;
  z-index: 0;
}
@media (max-width: 840px) {
  .menu-category__label {
    display: none;
  }
}
.menu-category__toggle {
  display: none;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}
@media (max-width: 840px) {
  .menu-category__toggle {
    display: block;
  }
}
@media (max-width: 540px) {
  .menu-category__toggle {
    width: 12px;
    height: 12px;
  }
}
.menu-category__toggle::before, .menu-category__toggle::after {
  content: "";
  position: absolute;
  background: #b39a73;
  transition: transform 0.3s ease;
}
.menu-category__toggle::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.menu-category__toggle::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.menu-category__toggle:where(.menu-category__details[open] *)::after {
  transform: translateX(-50%) rotate(90deg);
}

.news {
  margin-top: 80px;
  align-content: center;
  align-items: center;
  background: #ffffff;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 40px;
  justify-content: flex-start;
  padding-block: 40px;
  width: 100%;
}
@media (max-width: 840px) {
  .news {
    margin-top: 48px;
    gap: 32px;
  }
}
@media (max-width: 540px) {
  .news {
    padding-block: 32px;
    gap: 24px;
  }
}
.news .inner {
  padding-block: 40px;
  position: relative;
}
.news .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #f9f8f5;
  border-radius: 0px 0px 16px 0px;
  height: 16px;
  margin-left: calc((100vw - 100%) / 2 * -1);
  width: 95vw;
}
.news .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f9f8f5;
  border-radius: 16px 0px 0px 0px;
  height: 16px;
  margin-right: calc((100vw - 100%) / 2 * -1);
  width: 95vw;
}

.news__header {
  align-content: center;
  align-items: flex-end;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: space-between;
  width: 100%;
}

.news__content {
  align-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: flex-start;
  width: 100%;
  max-width: 960px;
  margin: auto;
  z-index: 1;
}

.news__divider {
  background: #e2e2e7;
  height: 1px;
  width: 100%;
}

.news__list {
  margin-top: 40px;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: flex-start;
  border-top: 1px solid #e2e2e7;
  width: 100%;
}

.news__item {
  align-content: flex-start;
  align-items: flex-start;
  border-bottom: 1px solid #e2e2e7;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: space-between;
  padding: 28px 24px;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  width: 100%;
  align-items: center;
}
.news__item:hover {
  background: rgba(179, 154, 115, 0.05);
}
@media (max-width: 840px) {
  .news__item {
    padding: 20px 16px;
  }
}
@media (max-width: 540px) {
  .news__item {
    padding: 16px 12px;
  }
}

.news__item-content {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 48px;
  justify-content: flex-start;
}
@media (max-width: 840px) {
  .news__item-content {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 540px) {
  .news__item-content {
    gap: 12px;
  }
}

.news__item-date {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .news__item-date {
    font-size: 14px;
  }
}

.news__item-title {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  text-align: left;
  flex: 1;
}
@media (max-width: 540px) {
  .news__item-title {
    font-size: 14px;
  }
}

.news__item-arrow {
  flex-shrink: 0;
  width: 10px;
  height: auto;
}
.news__item-arrow svg {
  width: 100%;
  height: auto;
}
.column {
  align-content: center;
  align-items: center;
  background: #ffffff;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 64px;
  justify-content: flex-start;
  padding-block: 80px;
  width: 100%;
}
@media (max-width: 840px) {
  .column {
    padding-block: 32px;
    gap: 48px;
  }
}
@media (max-width: 540px) {
  .column {
    margin-bottom: 32px;
    gap: 40px;
  }
}

.column__grid {
  margin-top: 40px;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 24px;
  width: 100%;
  max-width: 1200px;
}
@media (max-width: 840px) {
  .column__grid {
    grid-template-columns: 1fr;
    gap: 40px 24px;
  }
}

.column__card {
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  padding: 20px;
  justify-content: flex-start;
  text-decoration: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  width: 100%;
  height: 100%;
}
.column__card:hover {
  opacity: 0.7;
}
@media (max-width: 540px) {
  .column__card {
    gap: 12px;
  }
}

.column__card-image {
  background: #f5f5f5;
  overflow: hidden;
  width: 100%;
}
.column__card-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 258/145;
  -o-object-fit: cover;
     object-fit: cover;
}

.column__card-title {
  padding: 4px 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.92px;
  width: 100%;
  margin-top: 14px;
}
@media (max-width: 540px) {
  .column__card-title {
    margin-top: 0px;
  }
}

.column__card-meta {
  display: flex;
  gap: 8px;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #D4CBBD;
  padding-top: 14px;
  margin-top: auto;
}
@media (max-width: 540px) {
  .column__card-meta {
    gap: 4px;
    padding-top: 6px;
  }
}

.column__card-date {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 1.44px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 540px) {
  .column__card-date {
    font-size: 12px;
  }
}

.column__card-author {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-start;
}

.column__card-author-avatar {
  border-radius: 50%;
  height: 24px;
  overflow: hidden;
  width: 24px;
}
.column__card-author-avatar img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 540px) {
  .column__card-author-avatar {
    height: 20px;
    width: 20px;
  }
}

.column__card-author-name {
  color: #55575f;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (max-width: 540px) {
  .column__card-author-name {
    font-size: 12px;
  }
}

.column__cta-wrapper {
  align-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.column__cta-wrapper .cta-button {
  max-width: 200px;
}

.campaign {
  align-content: center;
  align-items: center;
  background: #ffffff;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 64px;
  justify-content: flex-start;
  padding: 80px 0;
  width: 100%;
}
@media (max-width: 840px) {
  .campaign {
    padding: 64px 0;
    gap: 48px;
  }
}
@media (max-width: 540px) {
  .campaign {
    padding: 48px 0;
    gap: 40px;
  }
}

.campaign__slider-container {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 540px) {
  .campaign__slider-container {
    margin-top: 40px;
  }
}

.campaign__slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0.4, 0, 1);
  width: 100%;
  gap: 40px;
}
@media (max-width: 840px) {
  .campaign__slider {
    gap: 0px;
  }
}

.campaign__slide {
  flex: 0 0 calc((100% - 80px) / 3);
  width: calc((100% - 80px) / 3);
}
@media (max-width: 540px) {
  .campaign__slide {
    flex: 0 0 100%;
    width: 100%;
  }
}

.campaign__slide-image {
  aspect-ratio: 330/106;
  overflow: hidden;
  width: 100%;
}
.campaign__slide-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.campaign__pagination {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  margin-top: 50px;
  width: 100%;
}
@media (max-width: 540px) {
  .campaign__pagination {
    gap: 8px;
    margin-top: 24px;
  }
}

.campaign__pagination-dot {
  background: #D4CBBD;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0.4, 0, 1);
  width: 10px;
  opacity: 1;
}
.campaign__pagination-dot:hover {
  background: #b39a73;
  opacity: 0.7;
}
.campaign__pagination-dot.is-active {
  background: #b39a73;
}
@media (max-width: 540px) {
  .campaign__pagination-dot {
    height: 10px;
    width: 10px;
  }
}

.pickup {
  padding: 80px 0;
  background: #FFFFFF;
}
@media (max-width: 840px) {
  .pickup {
    padding: 56px 0;
  }
}
@media (max-width: 540px) {
  .pickup {
    padding: 48px 0;
  }
}

.pickup__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 620px;
  margin: 40px auto 0;
}
@media (max-width: 840px) {
  .pickup__grid {
    grid-template-columns: 1fr;
  }
}

.pickup__card {
  position: relative;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.pickup__card:hover .pickup__card-bg {
  opacity: 0.7;
}
.pickup__card a {
  display: block;
  width: 100%;
  height: 100%;
}
.pickup__card a img {
  aspect-ratio: 297/160;
  border-radius: 0 40px;
}

.pickup__card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s cubic-bezier(0.4, 0.4, 0, 1);
}

.pickup__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
@media (max-width: 840px) {
  .pickup__card-title {
    font-size: 26px;
  }
}
@media (max-width: 540px) {
  .pickup__card-title {
    padding: 0 16px;
  }
}

.page-about .page-title {
  max-width: 1280px;
  width: 100%;
  padding-inline: 80px;
  margin: 0 auto;
}
@media (max-width: 840px) {
  .page-about .page-title {
    padding-inline: 64px;
  }
}
@media (max-width: 540px) {
  .page-about .page-title {
    padding-inline: 20px;
  }
}

.about-section {
  margin-top: 48px;
}
@media (max-width: 540px) {
  .about-section {
    margin-top: 32px;
  }
}

.about-section__policy {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto 0;
  padding: 48px 0;
  border-radius: 0px 40px 0px 40px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 540px) {
  .about-section__policy {
    padding: 32px 0;
  }
}
.about-section__policy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px 40px 0px 40px;
  background-image: url("../img/page/about/clinic_policy-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.about-section__policy-inner {
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 128px;
}
@media (max-width: 840px) {
  .about-section__policy-inner {
    flex-direction: column;
    gap: 64px;
    padding: 0 24px;
  }
}
@media (max-width: 540px) {
  .about-section__policy-inner {
    gap: 40px;
    padding: 0 4px;
  }
}

.about-section__policy-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 840px) {
  .about-section__policy-title {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .about-section__policy-title {
    gap: 0;
  }
}

.about-section__policy-title-en {
  font-family: "EB Garamond", serif;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #FFFFFF;
}
@media (max-width: 840px) {
  .about-section__policy-title-en {
    font-size: 36px;
  }
}
@media (max-width: 540px) {
  .about-section__policy-title-en {
    font-size: 32px;
    line-height: 1.1;
  }
}

.about-section__policy-title-ja {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #f4f4f6;
}
@media (max-width: 540px) {
  .about-section__policy-title-ja {
    font-size: 15px;
    line-height: 1.1;
  }
}

.about-section__policy-text {
  flex: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #FFFFFF;
  position: relative;
}
@media (max-width: 840px) {
  .about-section__policy-text {
    text-align: center;
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .about-section__policy-text {
    font-size: 14px;
  }
}
.about-section__policy-text::before {
  content: "";
  width: 1px;
  height: 120px;
  background: #f4f4f6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -64px;
}
@media (max-width: 840px) {
  .about-section__policy-text::before {
    width: 80px;
    height: 1px;
    left: 50%;
    top: -28px;
    transform: translateX(-50%);
  }
}
@media (max-width: 540px) {
  .about-section__policy-text::before {
    top: -16px;
  }
}

.about-section__message {
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 840px) {
  .about-section__message {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 540px) {
  .about-section__message {
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 24px;
    flex-direction: column;
  }
}

.about-section__message-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  background: linear-gradient(90deg, #b39a73 0%, #55575f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
}
@media (max-width: 840px) {
  .about-section__message-title {
    font-size: 28px;
  }
}
@media (max-width: 540px) {
  .about-section__message-title {
    font-size: 24px;
    order: 1;
    text-align: center;
  }
}

.about-section__message-content {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  gap: 32px;
  width: 100%;
}
@media (max-width: 840px) {
  .about-section__message-content {
    gap: 24px;
  }
}
@media (max-width: 540px) {
  .about-section__message-content {
    display: contents;
  }
}

.about-section__message-text {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: left;
  width: 594px;
  z-index: 1;
  max-width: 100%;
  justify-content: flex-start;
}
@media (max-width: 840px) {
  .about-section__message-text {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .about-section__message-text {
    font-size: 14px;
    order: 3;
  }
}

.about-section__message-img {
  max-width: 360px;
  position: absolute;
  right: 0;
}
@media (max-width: 840px) {
  .about-section__message-img {
    opacity: 0.4;
    right: 0px;
    top: 0px;
  }
}
@media (max-width: 540px) {
  .about-section__message-img {
    position: static;
    order: 2;
    opacity: 1;
    max-width: 160px;
    margin: auto;
  }
}

.section-mission {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
  background: #F9F8F5;
  position: relative;
  z-index: 1;
}
@media (max-width: 840px) {
  .section-mission {
    flex-wrap: wrap;
    gap: 40px 0;
    padding: 48px 0;
  }
}
.section-mission::before {
  background: #f6f5f0;
}

.section-mission__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
}
@media (max-width: 840px) {
  .section-mission__container {
    gap: 80px;
  }
}
@media (max-width: 840px) {
  .section-mission__container {
    flex-direction: column-reverse;
    gap: 32px;
  }
}

.section-mission__image {
  flex: none;
  width: 400px;
  height: 480px;
  border-radius: 0 20px 0 20px;
  overflow: hidden;
}
@media (max-width: 840px) {
  .section-mission__image {
    width: 264px;
    height: 280px;
  }
}
.section-mission__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-mission__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  width: 480px;
  max-width: 100%;
}
@media (max-width: 840px) {
  .section-mission__content {
    align-items: flex-end;
    gap: 24px;
  }
}

.section-mission__title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
  position: relative;
}
@media (max-width: 840px) {
  .section-mission__title-wrapper {
    gap: 32px;
  }
}
.section-mission__title-wrapper::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #b39a73;
}

.section-mission__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  background: linear-gradient(90deg, #b39a73 0%, #55575f 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 840px) {
  .section-mission__title {
    font-size: 20px;
  }
}

.section-mission__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #333;
  width: 100%;
}
@media (max-width: 840px) {
  .section-mission__text {
    font-size: 14px;
  }
}

.section-mission__signature {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 840px) {
  .section-mission__signature {
    width: 100%;
    justify-content: flex-end;
    gap: 24px;
    padding-right: 8px;
  }
}

.section-mission__signature-role {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 840px) {
  .section-mission__signature-role {
    font-size: 13px;
  }
}

.section-mission__signature-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 840px) {
  .section-mission__signature-name {
    font-size: 18px;
  }
}

.section-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFEFC 0%, #FFFFFF 100%);
  position: relative;
}
@media (max-width: 840px) {
  .section-flow {
    gap: 48px;
    padding: 48px 0 0;
  }
}

.section-flow__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  max-width: 1280px;
  width: 100%;
  padding: 0 80px;
  z-index: 1;
}
@media (max-width: 840px) {
  .section-flow__inner {
    align-items: center;
    gap: 16px;
    width: 90%;
    padding: 0;
  }
}

.section-flow__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  padding-left: 72px;
}
@media (max-width: 1100px) {
  .section-flow__list {
    padding-left: 40px;
  }
}
@media (max-width: 840px) {
  .section-flow__list {
    align-items: center;
    padding-left: 0;
  }
}

.section-flow__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  width: 70%;
  position: relative;
  z-index: 1;
}
@media (max-width: 840px) {
  .section-flow__item {
    flex-direction: column-reverse;
    gap: 8px;
    width: 95%;
  }
}

.section-flow__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  padding-left: 64px;
}
@media (max-width: 840px) {
  .section-flow__content {
    align-items: center;
    gap: 8px;
    padding-left: 0;
    width: 100%;
  }
}

.section-flow__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-left: -64px;
}
@media (max-width: 840px) {
  .section-flow__header {
    gap: 12px;
    margin-left: 0;
  }
}

.section-flow__step-label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 840px) {
  .section-flow__step-label {
    gap: 6px;
  }
}

.section-flow__step-text {
  font-family: "EB Garamond", serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #b39a73;
}
@media (max-width: 840px) {
  .section-flow__step-text {
    font-size: 20px;
  }
}

.section-flow__step-number {
  font-family: "EB Garamond", serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #b39a73;
}
@media (max-width: 840px) {
  .section-flow__step-number {
    font-size: 28px;
  }
}

.section-flow__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #55575f;
}
@media (max-width: 840px) {
  .section-flow__title {
    font-size: 18px;
  }
}

.section-flow__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 840px) {
  .section-flow__text {
    font-size: 14px;
    text-align: center;
  }
}

.section-flow__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #b39a73;
  border: 1px solid #b39a73;
  border-radius: 0 8px 0 8px;
  color: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: 0.3s;
  margin-left: 16px;
}
.section-flow__button:hover {
  background: #fff;
  color: #b39a73;
}
@media (max-width: 840px) {
  .section-flow__button {
    width: 50%;
    margin-left: 0;
  }
}

.section-flow__line {
  position: absolute;
  left: 20px;
  top: 64px;
  width: 1px;
  height: 144px;
  background: #E2E2E7;
}
@media (max-width: 840px) {
  .section-flow__line {
    height: 32px;
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.section-flow__image {
  flex: none;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 840px) {
  .section-flow__image {
    width: 120px;
    height: 120px;
  }
}
.section-flow__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-flow__bg-images {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 0;
}
@media (max-width: 840px) {
  .section-flow__bg-images {
    position: relative;
    width: 100%;
    height: 160px;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 540px) {
  .section-flow__bg-images {
    height: 120px;
  }
}

.section-flow__bg-image {
  flex: none;
  width: 100%;
  height: 20%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 840px) {
  .section-flow__bg-image.is-pc {
    display: none;
  }
}
@media (max-width: 840px) {
  .section-flow__bg-image {
    width: 50%;
    height: 100%;
  }
  .section-flow__bg-image:nth-child(n+5) {
    display: none;
  }
}

.single .section-flow {
  background: none;
  padding: 20px 0;
}
.single .section-flow__inner {
  padding: 0;
}
.single .section-flow__item {
  width: 100%;
}

.section-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 50px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 840px) {
  .section-partners {
    gap: 48px;
    padding: 48px 0 64px;
  }
}

.section-partners__list {
  margin: 80px auto 0;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(213px, 213px));
  justify-content: center;
  gap: 16px;
  width: 100%;
  padding-inline: 8px;
}
@media (max-width: 840px) {
  .section-partners__list {
    margin-top: 48px;
  }
}
@media (max-width: 560px) {
  .section-partners__list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.section-partners__item {
  background: #FFFFFF;
  border-radius: 0 16px 0 16px;
}
.section-partners__item > .section-partners__image,
.section-partners__item > .section-partners__text {
  padding: 10px 20px;
}
@media (max-width: 840px) {
  .section-partners__item > .section-partners__image,
  .section-partners__item > .section-partners__text {
    padding: 24px;
  }
}
@media (max-width: 540px) {
  .section-partners__item > .section-partners__image,
  .section-partners__item > .section-partners__text {
    padding: 16px;
  }
}
.section-partners__item > .section-partners__image {
  padding-bottom: 0;
}
.section-partners__item > .section-partners__text {
  padding-top: 0;
}

.section-partners__image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
  overflow: hidden;
  padding: 6px;
}
.section-partners__image img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.section-partners__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 100%;
  padding: 16px;
  text-decoration: none;
  transition: 0.3s;
}
@media (max-width: 840px) {
  .section-partners__link {
    gap: 16px;
    padding: 16px;
  }
}
@media (max-width: 540px) {
  .section-partners__link {
    padding: 8px;
  }
}
.section-partners__link[href]:hover {
  opacity: 1;
}
.section-partners__link[href]:hover .section-partners__text-wrapper {
  color: #b39a73;
}
.section-partners__link[href]:hover .section-partners__text-wrapper svg path {
  stroke: #b39a73;
}

.section-partners__text-wrapper {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #55575f;
  transition: 0.3s;
}
@media (max-width: 840px) {
  .section-partners__text-wrapper {
    font-size: 14px;
  }
}
.section-partners__text-wrapper svg {
  flex: none;
  width: 14px;
  height: 14px;
}
.section-partners__text-wrapper svg path {
  transition: 0.3s;
}

.section-partners__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #55575f;
  text-align: center;
}
@media (max-width: 840px) {
  .section-partners__text {
    font-size: 14px;
  }
}

.column-single {
  position: relative;
}

.column-single__column {
  margin: 20px auto 0;
  max-width: 1200px;
  padding: 0 32px;
}

.column-single__column--en {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 540px) {
  .column-single__column--en {
    font-size: 40px;
  }
}

.column-single__column--jp {
  font-family: "Zen Old Mincho", serif;
  margin-top: 10px;
  font-size: 20px;
  padding-bottom: 16px;
  font-weight: 500;
  line-height: 150%;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #b39a73;
}
@media (max-width: 540px) {
  .column-single__column--jp {
    font-size: 18px;
  }
}

.column-single {
  padding-top: 57px;
  background: #FFFFFF;
}
@media (max-width: 840px) {
  .column-single {
    padding-top: 53px;
  }
}
@media (max-width: 540px) {
  .column-single {
    padding-top: 51px;
  }
}

.column-single__inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 60px 40px 50px;
}
@media (max-width: 840px) {
  .column-single__inner {
    padding: 32px 24px;
  }
}
@media (max-width: 540px) {
  .column-single__inner {
    padding: 24px 16px;
  }
}

.column-single__header {
  margin-bottom: 32px;
}
@media (max-width: 540px) {
  .column-single__header {
    margin-bottom: 16px;
  }
}

.column-single__title {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 540px) {
  .column-single__title {
    font-size: 22px;
  }
}

.column-single__meta {
  margin-top: 48px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #b39a73;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .column-single__meta {
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}

.column-single__date {
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #55575f;
}
@media (max-width: 540px) {
  .column-single__date {
    font-size: 13px;
  }
}

.column-single__categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.column-single__category {
  padding: 4px 12px;
  border-radius: 0 5px;
  border: 0.8px solid #6B5644;
  font-family: "EB Garamond", serif;
  font-size: 12px;
  font-weight: 400;
  color: #6B5644;
}
@media (max-width: 540px) {
  .column-single__category {
    font-size: 11px;
    padding: 3px 10px;
  }
}

.column-single__thumbnail {
  margin: 85px auto 0;
  width: 100%;
  max-width: 640px;
}
@media (max-width: 540px) {
  .column-single__thumbnail {
    margin-top: 40px;
  }
}
.column-single__thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.column-single__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 540px) {
  .column-single__body {
    gap: 12px;
  }
}
.column-single__body h2.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 20px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .column-single__body h2.wp-block-heading {
    font-size: 20px;
    padding: 4px 16px;
    margin-top: 32px;
  }
}
.column-single__body h3.wp-block-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 48px;
}
.column-single__body h3.wp-block-heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #b39a73;
  flex: 1;
}
@media (max-width: 540px) {
  .column-single__body h3.wp-block-heading {
    font-size: 20px;
    margin-top: 32px;
  }
}
.column-single__body h4.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #b39a73;
  padding: 24px 0px 8px;
}
@media (max-width: 540px) {
  .column-single__body h4.wp-block-heading {
    font-size: 16px;
    padding: 20px 0px 8px;
  }
}
.column-single__body h5.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 2px 16px 4px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .column-single__body h5.wp-block-heading {
    font-size: 18px;
    padding: 0px 14px 2px;
    margin-top: 32px;
  }
}
.column-single__body h6.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 12px;
  margin-top: 24px;
}
@media (max-width: 540px) {
  .column-single__body h6.wp-block-heading {
    font-size: 16px;
    padding: 4px 16px;
    margin-top: 20px;
  }
}
.column-single__body .wp-block-columns h2.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.column-single__body .wp-block-columns h3.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.column-single__body .wp-block-columns h4.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.column-single__body .wp-block-columns h5.wp-block-heading {
  margin-top: 0;
}
.column-single__body .wp-block-columns h6.wp-block-heading {
  margin-top: 0;
}
.column-single__body p:not([class]) {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
}
@media (max-width: 540px) {
  .column-single__body p:not([class]) {
    font-size: 14px;
  }
}
.column-single__body p:not([class]) strong {
  font-weight: 700;
}
.column-single__body p:not([class]) a {
  color: #b39a73;
  text-decoration: underline;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.column-single__body p:not([class]) a:hover {
  opacity: 0.7;
}
.column-single__body .wp-block-group * {
  margin-top: 0;
}
.column-single__body .wp-block-image img {
  max-width: 640px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .column-single__body .wp-block-image img {
    max-width: 100%;
  }
}
.column-single__body .wp-block-image .aligncenter {
  text-align: center;
}
.column-single__body .wp-block-image .wp-element-caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-top: 8px;
}
@media (max-width: 540px) {
  .column-single__body .wp-block-image .wp-element-caption {
    font-size: 14px;
  }
}
.column-single__body .wp-block-image.is-style-rounded-20 img {
  border-radius: 20px;
}
.column-single__body ul.wp-block-list li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .column-single__body ul.wp-block-list li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.column-single__body ul.wp-block-list li::before {
  content: "・";
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .column-single__body ul.wp-block-list li::before {
    margin-inline: 2px;
  }
}
.column-single__body ol {
  counter-reset: item;
}
.column-single__body ol > li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .column-single__body ol > li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.column-single__body ol > li::before {
  content: counter(item) ". ";
  counter-increment: item;
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .column-single__body ol > li::before {
    margin-inline: 2px;
  }
}
.column-single__body ol > li ol,
.column-single__body ol > li ul {
  counter-reset: subitem;
  margin-top: 8px;
}
.column-single__body ol > li ol > li::before,
.column-single__body ol > li ul > li::before {
  content: counter(subitem, lower-alpha) ". ";
  counter-increment: subitem;
}
.column-single__body ol > li ol > li ol,
.column-single__body ol > li ol > li ul,
.column-single__body ol > li ul > li ol,
.column-single__body ol > li ul > li ul {
  counter-reset: subsubitem;
}
.column-single__body ol > li ol > li ol > li::before,
.column-single__body ol > li ol > li ul > li::before,
.column-single__body ol > li ul > li ol > li::before,
.column-single__body ol > li ul > li ul > li::before {
  content: counter(subsubitem) ". ";
  counter-increment: subsubitem;
}
.column-single__body .single-note {
  width: 100%;
  margin-inline: auto;
}
.column-single__body .single-note p {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  padding: 20px 40px;
}
@media only screen and (max-width: 768px) {
  .column-single__body .single-note p {
    font-size: 12px;
    padding: 20px;
  }
}
.column-single__body .column-annotation {
  width: 100%;
  margin-inline: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: #333;
  padding: 20px 40px;
  background: #fff;
  border: 1px solid #dbcebb;
  width: 90%;
  margin: auto;
  border-radius: 12px;
}
@media only screen and (max-width: 768px) {
  .column-single__body .column-annotation {
    font-size: 12px;
    padding: 20px;
  }
}
.column-single__body blockquote {
  margin-inline: auto;
  position: relative;
  padding: 40px 48px;
}
@media (max-width: 540px) {
  .column-single__body blockquote {
    padding: 30px 30px;
  }
}
.column-single__body blockquote::before, .column-single__body blockquote::after {
  background: url("../img/page/column/icon_blockquote.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 23px;
  height: 20px;
}
.column-single__body blockquote::before {
  left: 0;
  top: 0;
}
.column-single__body blockquote::after {
  display: none;
}
.column-single__body blockquote p {
  position: relative;
}
@media (max-width: 540px) {
  .column-single__body blockquote p {
    font-size: 14px;
  }
}
.column-single__body blockquote p::before, .column-single__body blockquote p::after {
  content: "";
  position: absolute;
  background: #b39a73;
  width: calc(100% + 24px);
  height: 1px;
}
.column-single__body blockquote p::before {
  left: 0;
  top: -28px;
}
@media (max-width: 540px) {
  .column-single__body blockquote p::before {
    top: -20px;
  }
}
.column-single__body blockquote p::after {
  display: none;
}
.column-single__body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #b39a73;
}
.column-single__body table th,
.column-single__body table td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .column-single__body table th,
  .column-single__body table td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.column-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
.column-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  border-color: #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .column-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
  .column-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.column-single__body .wp-block-button__link {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  background: #b39a73;
  border-radius: 0 8px;
  border-width: 1px;
}
.column-single__body .--small .wp-block-button__link {
  font-size: 18px;
  padding: 10px 16px;
}
@media (max-width: 540px) {
  .column-single__body .--small .wp-block-button__link {
    font-size: 14px;
    padding: 12px 18px;
  }
}
.column-single__body .wp-block-separator {
  border: none;
  border-top: 1px solid #b39a73;
  width: 100%;
}
.column-single__body .wp-block-separator.is-style-wide {
  border-top-width: 2px;
  max-width: 100%;
}
.column-single__body .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  line-height: 1;
  height: auto;
}
.column-single__body .wp-block-separator.is-style-dots::before {
  content: "···";
  color: #b39a73;
  font-size: 24px;
  letter-spacing: 1em;
  padding-left: 1em;
}
.column-single__body hr.wp-block-separator {
  display: block;
  background: none;
}
.column-single__body .is-type-video {
  width: 100%;
  max-width: 500px;
}
.column-single__body .is-type-video.aligncenter {
  margin-inline: auto;
}
.column-single__body .is-type-video.aligncenter iframe {
  display: block;
}
.column-single__body .is-type-video.alignright {
  margin-left: auto;
}
.column-single__body .is-type-video.alignright iframe {
  display: block;
}
.column-single__body .is-type-video .wp-block-embed__wrapper {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.column-single__body .is-type-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.column-single__body .column-nose__grid {
  align-content: flex-start;
  align-items: flex-start;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 40px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
@media (max-width: 840px) {
  .column-single__body .column-nose__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
@media (max-width: 540px) {
  .column-single__body .column-nose__grid {
    grid-template-columns: 1fr;
  }
}
.column-single__body .column-nose__grid + .column-nose__grid {
  margin-top: 32px;
}
@media (max-width: 840px) {
  .column-single__body .column-nose__grid + .column-nose__grid {
    margin-top: 0px;
  }
}
.column-single__body p:not([class]) {
  font-family: "Noto Sans JP", sans-serif;
}
.column-single__body .wp-block-image .wp-element-caption {
  font-family: "Noto Sans JP", sans-serif;
}
.column-single__body ul.wp-block-list li {
  font-family: "Noto Sans JP", sans-serif;
}
.column-single__body ol > li {
  font-family: "Noto Sans JP", sans-serif;
}
.column-single__body table th,
.column-single__body table td {
  font-family: "Noto Sans JP", sans-serif;
}
.column-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
.column-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
  font-family: "Noto Sans JP", sans-serif;
}

.column-single__pagination {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid #e2e2e7;
  border-bottom: 1px solid #e2e2e7;
}
@media (max-width: 540px) {
  .column-single__pagination {
    margin-top: 40px;
    gap: 16px;
    padding: 32px 0;
  }
}
.column-single__pagination-prev {
  justify-self: start;
}
.column-single__pagination-list {
  justify-self: center;
}
.column-single__pagination-next {
  justify-self: end;
}
.column-single__pagination-prev a, .column-single__pagination-next a, .column-single__pagination-list a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .column-single__pagination-prev a, .column-single__pagination-next a, .column-single__pagination-list a {
    font-size: 13px;
  }
}
.column-single__pagination-prev a:hover, .column-single__pagination-next a:hover, .column-single__pagination-list a:hover {
  color: #b39a73;
}
.column-single__pagination-list a {
  color: #55575F;
  font-weight: 600;
}

.column-single__author {
  margin-top: 60px;
  padding: 32px 0;
  border-top: 1px solid #e2e2e7;
}
@media (max-width: 540px) {
  .column-single__author {
    margin-top: 40px;
    padding: 24px 0;
  }
}
.column-single__author-item {
  display: flex;
  gap: 24px;
  background: #f9f8f5;
  padding: 32px;
  border-radius: 8px;
}
@media (max-width: 540px) {
  .column-single__author-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
  }
}
.column-single__author-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 540px) {
  .column-single__author-avatar {
    width: 80px;
    height: 80px;
  }
}
.column-single__author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-single__author-content {
  flex: 1;
}
.column-single__author-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #55575F;
  margin-bottom: 8px;
}
@media (max-width: 540px) {
  .column-single__author-name {
    font-size: 16px;
    text-align: center;
  }
}
.column-single__author-description {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575f;
}
@media (max-width: 540px) {
  .column-single__author-description {
    font-size: 13px;
    text-align: center;
  }
}
.column-single__author-description p {
  margin: 0;
}

.column-voice {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}
.column-voice + .column-voice {
  margin-top: 24px;
}
@media (max-width: 840px) {
  .column-voice {
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .column-voice {
    gap: 12px;
  }
}
.column-voice.is-reverse {
  flex-direction: row-reverse;
}

.column-voice__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 111px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .column-voice__img {
    max-width: 64px;
  }
}
.column-voice__img img {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1/1;
}

.column-voice__name {
  font-weight: 500;
  font-size: 13px;
  line-height: 180%;
  letter-spacing: -2%;
  color: #55575F;
  text-align: center;
}
@media (max-width: 540px) {
  .column-voice__name {
    font-size: 13px;
  }
}

.column-voice__content {
  padding: 40px 20px;
  background: #f9f8f5;
  border-radius: 20px;
  letter-spacing: -0.02em;
  flex: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 540px) {
  .column-voice__content {
    width: 100%;
    padding: 20px 12px;
  }
}

.column-voice__text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
}
@media (max-width: 540px) {
  .column-voice__text {
    font-size: 13px;
  }
}
.column-voice__text strong {
  font-weight: bold;
}

.column-single__breadcrumb {
  padding: 80px 0 0;
  padding-bottom: 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #55575f;
  max-width: 1140px;
  padding-inline: 40px;
}
@media (max-width: 840px) {
  .column-single__breadcrumb {
    padding-inline: 64px;
  }
}
@media (max-width: 540px) {
  .column-single__breadcrumb {
    font-size: 12px;
    padding-top: 32px;
    padding-inline: 20px;
    padding-bottom: 24px;
    flex-wrap: wrap;
  }
}
.column-single__breadcrumb a {
  color: #868893;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.column-single__breadcrumb a:hover {
  color: #b39a73;
}
.column-single__breadcrumb_last {
  color: #333;
}
.column-single__breadcrumb-separator {
  color: #dbcebb;
}
.column-single__breadcrumb-current {
  color: #55575F;
}

.column-archive {
  background: #FFFFFF;
  padding: 120px 0 80px;
}
@media (max-width: 840px) {
  .column-archive {
    padding: 100px 0 60px;
  }
}
@media (max-width: 540px) {
  .column-archive {
    padding: 80px 0 40px;
  }
}

.column-archive__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #55575F;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 840px) {
  .column-archive__title {
    font-size: 28px;
    margin-bottom: 32px;
  }
}
@media (max-width: 540px) {
  .column-archive__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.column-archive__wrapper {
  margin-top: 100px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .column-archive__wrapper {
    margin-top: 50px;
    flex-direction: column;
    gap: 48px;
  }
}

.column-archive__sidebar {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 840px) {
  .column-archive__sidebar {
    width: 100%;
  }
}

.column-archive__content {
  flex: 1;
  width: 100%;
}
@media (max-width: 540px) {
  .column-archive__content {
    padding-inline: 8px;
  }
}
.column-archive__content .column__grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 540px) {
  .column-archive__content .column__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}
@media (max-width: 540px) {
  .column-archive__content .column__card {
    padding: 0px;
    gap: 4px;
  }
}
@media (max-width: 540px) {
  .column-archive__content .column__card-title {
    font-size: 12px;
    letter-spacing: 1.44px;
  }
}
@media (max-width: 540px) {
  .column-archive__content .column__card-meta {
    flex-direction: column-reverse;
  }
}
@media (max-width: 540px) {
  .column-archive__content .column__card-date {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
}
@media (max-width: 540px) {
  .column-archive__content .column__card-author-name {
    font-size: 10px;
  }
}

.column-archive__search-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 0 0 13px 20px;
  border-bottom: 1px solid #b39a73;
  position: relative;
}
@media (max-width: 540px) {
  .column-archive__search-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.column-archive__search-title::before {
  background: #b39a73;
  content: "";
  position: absolute;
  width: 4px;
  height: 22px;
  left: 0;
  top: 1px;
  content: "";
  position: absolute;
}

.column-archive__search-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #b39a73;
}
.column-archive__search-group:last-of-type {
  margin-bottom: 32px;
}
@media (max-width: 540px) {
  .column-archive__search-group {
    margin-bottom: 20px;
  }
  .column-archive__search-group:last-of-type {
    margin-bottom: 24px;
  }
}

.column-archive__search-label {
  margin-top: 20px;
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.32px;
}

.column-archive__search-buttons {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.column-archive__search-button {
  padding: 6px 16px;
  border: 1px solid #b39a73;
  border-radius: 0 8px;
  background: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #b39a73;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
@media (max-width: 540px) {
  .column-archive__search-button {
    padding: 5px 12px;
    font-size: 12px;
  }
}
.column-archive__search-button.is-active {
  background: #b39a73;
  color: #FFFFFF;
}

.column-archive__search-submit {
  margin: 20px auto 0;
  width: 100%;
  max-width: 143px;
  padding: 12px 24px;
  background: #b39a73;
  border: 1px solid #b39a73;
  border-radius: 0 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (max-width: 540px) {
  .column-archive__search-submit {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.column-archive__search-submit:hover {
  opacity: 0.8;
}

.column-archive__pagination {
  margin-top: 48px;
  text-align: center;
}
@media (max-width: 540px) {
  .column-archive__pagination {
    margin-top: 32px;
  }
}
.column-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  margin: 0 4px;
  font-size: 15px;
  color: #b39a73;
  text-decoration: none;
  transition: all 0.3s ease;
}
.column-archive__pagination .page-numbers:hover {
  opacity: 0.7;
}
.column-archive__pagination .page-numbers.current {
  background: #b39a73;
  color: #FFFFFF;
  border-radius: 0 8px;
}
.column-archive__pagination .page-numbers.page-numbers--prev svg {
  transform: scale(-1, 1);
}

.column-archive__no-posts {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  color: #55575f;
  text-align: center;
  padding: 60px 20px;
}
@media (max-width: 540px) {
  .column-archive__no-posts {
    font-size: 14px;
    padding: 40px 20px;
  }
}

.column-archive .column-single__breadcrumb,
.column-archive .page-single__breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.column-archive .column-single__breadcrumb::before,
.column-archive .page-single__breadcrumb::before {
  content: "";
  position: absolute;
  background: #FFFFFF;
  margin: 0 calc((100vw - 100%) / 2 * -1);
  width: 100vw;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.case-archive {
  background: #FFFFFF;
  padding: 120px 0 80px;
}
@media (max-width: 840px) {
  .case-archive {
    padding: 100px 0 60px;
  }
}
@media (max-width: 540px) {
  .case-archive {
    padding: 80px 0 40px;
  }
}

.case-archive__wrapper {
  margin-top: 40px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 840px) {
  .case-archive__wrapper {
    flex-direction: column;
    gap: 80px;
  }
}

.case-archive__sidebar {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 840px) {
  .case-archive__sidebar {
    width: 100%;
  }
}

.case-archive__content {
  flex: 1;
  width: 100%;
}

.case-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 74px 24px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 840px) {
  .case-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 20px;
  }
}
@media (max-width: 540px) {
  .case-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 16px;
  }
}

.case-archive__card {
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  gap: 16px;
}
@media (max-width: 540px) {
  .case-archive__card {
    gap: 10px;
  }
}
@media (any-hover: hover) {
  .case-archive__card:hover .case-archive__card-arrow {
    transform: translateX(4px);
  }
}

.case-archive__card-image {
  width: 100%;
  transition: 0.3s ease-out;
}
.case-archive__card-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 250/314;
  border-radius: 0 10px;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-archive__card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.case-archive__card-title {
  font-family: "Zen Old Mincho", serif;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #55575F;
}
.case-archive__card-meta {
  border-top: 1px solid #b39a73;
  padding-top: 12px;
  margin-top: auto;
}
@media (max-width: 540px) {
  .case-archive__card-meta {
    padding-top: 8px;
  }
}

.case-archive__card-doctor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-archive__card-doctor-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 540px) {
  .case-archive__card-doctor-title {
    font-size: 10px;
  }
}

.case-archive__card-doctor-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  font-weight: 500;
}

.case-archive__card-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18px;
  height: auto;
  transition: all 0.3s ease;
}
@media (max-width: 540px) {
  .case-archive__card-arrow {
    width: 14px;
  }
}

.case-archive__search-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  padding: 0 0 13px 20px;
  border-bottom: 1px solid #b39a73;
  position: relative;
}
@media (max-width: 540px) {
  .case-archive__search-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.case-archive__search-title::before {
  background: #b39a73;
  content: "";
  position: absolute;
  width: 4px;
  height: 22px;
  left: 0;
  top: 1px;
  content: "";
  position: absolute;
}

.case-archive__search-group {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #b39a73;
}
.case-archive__search-group:last-of-type {
  margin-bottom: 32px;
}
@media (max-width: 540px) {
  .case-archive__search-group {
    margin-bottom: 20px;
  }
  .case-archive__search-group:last-of-type {
    margin-bottom: 24px;
  }
}

.case-archive__search-label {
  margin-top: 20px;
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.32px;
}

.case-archive__search-buttons {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.case-archive__search-button {
  padding: 6px 16px;
  border: 1px solid #b39a73;
  border-radius: 0 8px;
  background: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #b39a73;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}
@media (max-width: 540px) {
  .case-archive__search-button {
    padding: 5px 12px;
    font-size: 12px;
  }
}
@media (any-hover: hover) {
  .case-archive__search-button:hover {
    opacity: 1;
  }
}
.case-archive__search-button.is-active {
  background: #b39a73;
  color: #FFFFFF;
}

.case-archive__search-submit {
  margin: 20px auto 0;
  width: 100%;
  max-width: 143px;
  padding: 12px 24px;
  background: #b39a73;
  border: 1px solid #b39a73;
  border-radius: 0 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (max-width: 540px) {
  .case-archive__search-submit {
    padding: 10px 20px;
    font-size: 14px;
  }
}
.case-archive__search-submit:hover {
  opacity: 0.8;
}

.case-archive__pagination {
  margin-top: 48px;
  text-align: center;
}
@media (max-width: 540px) {
  .case-archive__pagination {
    margin-top: 32px;
  }
}
.case-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  margin: 0 4px;
  font-size: 15px;
  color: #b39a73;
  text-decoration: none;
  transition: all 0.3s ease;
}
.case-archive__pagination .page-numbers:hover {
  opacity: 0.7;
}
.case-archive__pagination .page-numbers.current {
  background: #b39a73;
  color: #FFFFFF;
  border-radius: 0 8px;
}
.case-archive__pagination .page-numbers.page-numbers--prev svg {
  transform: scale(-1, 1);
}

.case-archive__no-posts {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  color: #55575f;
  text-align: center;
  padding: 60px 20px;
}
@media (max-width: 540px) {
  .case-archive__no-posts {
    font-size: 14px;
    padding: 40px 20px;
  }
}

.case-archive .case-single__breadcrumb,
.case-archive .page-single__breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.case-archive .case-single__breadcrumb::before,
.case-archive .page-single__breadcrumb::before {
  content: "";
  position: absolute;
  background: #FFFFFF;
  margin: 0 calc((100vw - 100%) / 2 * -1);
  width: 100vw;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.case-single {
  position: relative;
}

.case-single__column {
  margin: 20px auto 0;
  max-width: 1200px;
  padding: 0 32px;
}

.case-single__column--en {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 540px) {
  .case-single__column--en {
    font-size: 40px;
  }
}

.case-single__column--jp {
  font-family: "Zen Old Mincho", serif;
  margin-top: 10px;
  font-size: 20px;
  padding-bottom: 16px;
  font-weight: 500;
  line-height: 150%;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #b39a73;
}
@media (max-width: 540px) {
  .case-single__column--jp {
    font-size: 18px;
  }
}

.case-single {
  padding-top: 57px;
  background: #FFFFFF;
}
@media (max-width: 840px) {
  .case-single {
    padding-top: 53px;
  }
}
@media (max-width: 540px) {
  .case-single {
    padding-top: 51px;
  }
}

.case-single__inner {
  margin: 0 auto;
  padding: 40px 40px 50px;
}
@media (max-width: 840px) {
  .case-single__inner {
    padding: 32px 24px;
  }
}
@media (max-width: 540px) {
  .case-single__inner {
    padding: 24px 16px;
  }
}

.case-single__header {
  margin-bottom: 32px;
}
@media (max-width: 540px) {
  .case-single__header {
    margin-bottom: 16px;
  }
}

.case-single__title {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid #b39a73;
}
@media (max-width: 540px) {
  .case-single__title {
    font-size: 22px;
  }
}

.case-single__meta {
  margin-top: 48px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #b39a73;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .case-single__meta {
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}

.case-single__date {
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #55575f;
}
@media (max-width: 540px) {
  .case-single__date {
    font-size: 13px;
  }
}

.case-single__categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.case-single__category {
  padding: 4px 12px;
  border-radius: 0 5px;
  border: 0.8px solid #6B5644;
  font-family: "EB Garamond", serif;
  font-size: 12px;
  font-weight: 400;
  color: #6B5644;
}
@media (max-width: 540px) {
  .case-single__category {
    font-size: 11px;
    padding: 3px 10px;
  }
}

.case-single__thumbnail {
  margin: 85px auto 0;
  width: 100%;
  max-width: 640px;
}
@media (max-width: 540px) {
  .case-single__thumbnail {
    margin-top: 40px;
  }
}
.case-single__thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.case-single__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 540px) {
  .case-single__body {
    gap: 12px;
  }
}
.case-single__body h2.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 20px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .case-single__body h2.wp-block-heading {
    font-size: 20px;
    padding: 4px 16px;
    margin-top: 32px;
  }
}
.case-single__body h3.wp-block-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 48px;
}
.case-single__body h3.wp-block-heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #b39a73;
  flex: 1;
}
@media (max-width: 540px) {
  .case-single__body h3.wp-block-heading {
    font-size: 20px;
    margin-top: 32px;
  }
}
.case-single__body h4.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #b39a73;
  padding: 24px 0px 8px;
}
@media (max-width: 540px) {
  .case-single__body h4.wp-block-heading {
    font-size: 16px;
    padding: 20px 0px 8px;
  }
}
.case-single__body h5.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 2px 16px 4px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .case-single__body h5.wp-block-heading {
    font-size: 18px;
    padding: 0px 14px 2px;
    margin-top: 32px;
  }
}
.case-single__body h6.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 12px;
  margin-top: 24px;
}
@media (max-width: 540px) {
  .case-single__body h6.wp-block-heading {
    font-size: 16px;
    padding: 4px 16px;
    margin-top: 20px;
  }
}
.case-single__body .wp-block-columns h2.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.case-single__body .wp-block-columns h3.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.case-single__body .wp-block-columns h4.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.case-single__body .wp-block-columns h5.wp-block-heading {
  margin-top: 0;
}
.case-single__body .wp-block-columns h6.wp-block-heading {
  margin-top: 0;
}
.case-single__body p:not([class]) {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
}
@media (max-width: 540px) {
  .case-single__body p:not([class]) {
    font-size: 14px;
  }
}
.case-single__body p:not([class]) strong {
  font-weight: 700;
}
.case-single__body p:not([class]) a {
  color: #b39a73;
  text-decoration: underline;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.case-single__body p:not([class]) a:hover {
  opacity: 0.7;
}
.case-single__body .wp-block-group * {
  margin-top: 0;
}
.case-single__body .wp-block-image img {
  max-width: 640px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .case-single__body .wp-block-image img {
    max-width: 100%;
  }
}
.case-single__body .wp-block-image .aligncenter {
  text-align: center;
}
.case-single__body .wp-block-image .wp-element-caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-top: 8px;
}
@media (max-width: 540px) {
  .case-single__body .wp-block-image .wp-element-caption {
    font-size: 14px;
  }
}
.case-single__body .wp-block-image.is-style-rounded-20 img {
  border-radius: 20px;
}
.case-single__body ul.wp-block-list li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .case-single__body ul.wp-block-list li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.case-single__body ul.wp-block-list li::before {
  content: "・";
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .case-single__body ul.wp-block-list li::before {
    margin-inline: 2px;
  }
}
.case-single__body ol {
  counter-reset: item;
}
.case-single__body ol > li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .case-single__body ol > li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.case-single__body ol > li::before {
  content: counter(item) ". ";
  counter-increment: item;
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .case-single__body ol > li::before {
    margin-inline: 2px;
  }
}
.case-single__body ol > li ol,
.case-single__body ol > li ul {
  counter-reset: subitem;
  margin-top: 8px;
}
.case-single__body ol > li ol > li::before,
.case-single__body ol > li ul > li::before {
  content: counter(subitem, lower-alpha) ". ";
  counter-increment: subitem;
}
.case-single__body ol > li ol > li ol,
.case-single__body ol > li ol > li ul,
.case-single__body ol > li ul > li ol,
.case-single__body ol > li ul > li ul {
  counter-reset: subsubitem;
}
.case-single__body ol > li ol > li ol > li::before,
.case-single__body ol > li ol > li ul > li::before,
.case-single__body ol > li ul > li ol > li::before,
.case-single__body ol > li ul > li ul > li::before {
  content: counter(subsubitem) ". ";
  counter-increment: subsubitem;
}
.case-single__body .single-note {
  width: 100%;
  margin-inline: auto;
}
.case-single__body .single-note p {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  padding: 20px 40px;
}
@media only screen and (max-width: 768px) {
  .case-single__body .single-note p {
    font-size: 12px;
    padding: 20px;
  }
}
.case-single__body .column-annotation {
  width: 100%;
  margin-inline: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: #333;
  padding: 20px 40px;
  background: #fff;
  border: 1px solid #dbcebb;
  width: 90%;
  margin: auto;
  border-radius: 12px;
}
@media only screen and (max-width: 768px) {
  .case-single__body .column-annotation {
    font-size: 12px;
    padding: 20px;
  }
}
.case-single__body blockquote {
  margin-inline: auto;
  position: relative;
  padding: 40px 48px;
}
@media (max-width: 540px) {
  .case-single__body blockquote {
    padding: 30px 30px;
  }
}
.case-single__body blockquote::before, .case-single__body blockquote::after {
  background: url("../img/page/column/icon_blockquote.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 23px;
  height: 20px;
}
.case-single__body blockquote::before {
  left: 0;
  top: 0;
}
.case-single__body blockquote::after {
  display: none;
}
.case-single__body blockquote p {
  position: relative;
}
@media (max-width: 540px) {
  .case-single__body blockquote p {
    font-size: 14px;
  }
}
.case-single__body blockquote p::before, .case-single__body blockquote p::after {
  content: "";
  position: absolute;
  background: #b39a73;
  width: calc(100% + 24px);
  height: 1px;
}
.case-single__body blockquote p::before {
  left: 0;
  top: -28px;
}
@media (max-width: 540px) {
  .case-single__body blockquote p::before {
    top: -20px;
  }
}
.case-single__body blockquote p::after {
  display: none;
}
.case-single__body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #b39a73;
}
.case-single__body table th,
.case-single__body table td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .case-single__body table th,
  .case-single__body table td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.case-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
.case-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  border-color: #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .case-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
  .case-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.case-single__body .wp-block-button__link {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  background: #b39a73;
  border-radius: 0 8px;
  border-width: 1px;
}
.case-single__body .--small .wp-block-button__link {
  font-size: 18px;
  padding: 10px 16px;
}
@media (max-width: 540px) {
  .case-single__body .--small .wp-block-button__link {
    font-size: 14px;
    padding: 12px 18px;
  }
}
.case-single__body .wp-block-separator {
  border: none;
  border-top: 1px solid #b39a73;
  width: 100%;
}
.case-single__body .wp-block-separator.is-style-wide {
  border-top-width: 2px;
  max-width: 100%;
}
.case-single__body .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  line-height: 1;
  height: auto;
}
.case-single__body .wp-block-separator.is-style-dots::before {
  content: "···";
  color: #b39a73;
  font-size: 24px;
  letter-spacing: 1em;
  padding-left: 1em;
}
.case-single__body hr.wp-block-separator {
  display: block;
  background: none;
}
.case-single__body .is-type-video {
  width: 100%;
  max-width: 500px;
}
.case-single__body .is-type-video.aligncenter {
  margin-inline: auto;
}
.case-single__body .is-type-video.aligncenter iframe {
  display: block;
}
.case-single__body .is-type-video.alignright {
  margin-left: auto;
}
.case-single__body .is-type-video.alignright iframe {
  display: block;
}
.case-single__body .is-type-video .wp-block-embed__wrapper {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.case-single__body .is-type-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.case-single__body .column-nose__grid {
  align-content: flex-start;
  align-items: flex-start;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 40px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
@media (max-width: 840px) {
  .case-single__body .column-nose__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
@media (max-width: 540px) {
  .case-single__body .column-nose__grid {
    grid-template-columns: 1fr;
  }
}
.case-single__body .column-nose__grid + .column-nose__grid {
  margin-top: 32px;
}
@media (max-width: 840px) {
  .case-single__body .column-nose__grid + .column-nose__grid {
    margin-top: 0px;
  }
}

.case-single__pagination {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid #e2e2e7;
  border-bottom: 1px solid #e2e2e7;
}
@media (max-width: 540px) {
  .case-single__pagination {
    margin-top: 40px;
    gap: 16px;
    padding: 32px 0;
  }
}
.case-single__pagination-prev {
  justify-self: start;
}
.case-single__pagination-list {
  justify-self: center;
}
.case-single__pagination-next {
  justify-self: end;
}
.case-single__pagination-prev a, .case-single__pagination-next a, .case-single__pagination-list a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .case-single__pagination-prev a, .case-single__pagination-next a, .case-single__pagination-list a {
    font-size: 13px;
  }
}
.case-single__pagination-prev a:hover, .case-single__pagination-next a:hover, .case-single__pagination-list a:hover {
  color: #b39a73;
}
.case-single__pagination-list a {
  color: #55575F;
  font-weight: 600;
}

.case-single__author {
  margin-top: 60px;
  padding: 32px 0;
  border-top: 1px solid #e2e2e7;
}
@media (max-width: 540px) {
  .case-single__author {
    margin-top: 40px;
    padding: 24px 0;
  }
}
.case-single__author-item {
  display: flex;
  gap: 24px;
  background: #f9f8f5;
  padding: 32px;
  border-radius: 8px;
}
@media (max-width: 540px) {
  .case-single__author-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
  }
}
.case-single__author-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 540px) {
  .case-single__author-avatar {
    width: 80px;
    height: 80px;
  }
}
.case-single__author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-single__author-content {
  flex: 1;
}
.case-single__author-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #55575F;
  margin-bottom: 8px;
}
@media (max-width: 540px) {
  .case-single__author-name {
    font-size: 16px;
    text-align: center;
  }
}
.case-single__author-description {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575f;
}
@media (max-width: 540px) {
  .case-single__author-description {
    font-size: 13px;
    text-align: center;
  }
}
.case-single__author-description p {
  margin: 0;
}

.case-voice {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 100px;
}
.case-voice + .case-voice {
  margin-top: 24px;
}
@media (max-width: 840px) {
  .case-voice {
    padding: 24px;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .case-voice {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 16px;
    margin-top: 40px;
  }
}
.case-voice.is-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 540px) {
  .case-voice.is-reverse {
    flex-direction: column;
  }
}
.case-voice__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 126px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .case-voice__img {
    width: 100%;
  }
}
.case-voice__img img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-voice__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #55575F;
  text-align: center;
}
@media (max-width: 540px) {
  .case-voice__name {
    font-size: 13px;
  }
}
.case-voice__content {
  padding: 40px 20px;
  background: #f9f8f5;
  border-radius: 20px 20px 20px 0;
  letter-spacing: -0.02em;
  flex: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 540px) {
  .case-voice__content {
    width: 100%;
  }
}
.case-voice__text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
}
@media (max-width: 540px) {
  .case-voice__text {
    font-size: 14px;
    text-align: center;
  }
}
.case-voice__text strong {
  font-weight: bold;
}

.case-single__breadcrumb {
  padding: 80px 0 0;
  padding-bottom: 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #55575f;
  max-width: 1140px;
  padding-inline: 40px;
}
@media (max-width: 840px) {
  .case-single__breadcrumb {
    padding-inline: 64px;
  }
}
@media (max-width: 540px) {
  .case-single__breadcrumb {
    font-size: 12px;
    padding-top: 32px;
    padding-inline: 20px;
    padding-bottom: 24px;
    flex-wrap: wrap;
  }
}
.case-single__breadcrumb a {
  color: #868893;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.case-single__breadcrumb a:hover {
  color: #b39a73;
}
.case-single__breadcrumb_last {
  color: #333;
}
.case-single__breadcrumb-separator {
  color: #dbcebb;
}
.case-single__breadcrumb-current {
  color: #55575F;
}

.case-single__related {
  margin-top: 80px;
}
@media (max-width: 840px) {
  .case-single__related {
    margin-top: 60px;
  }
}
@media (max-width: 540px) {
  .case-single__related {
    margin-top: 40px;
  }
}
.case-single__related .section-title {
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  .case-single__related .section-title {
    margin-bottom: 24px;
  }
}

.case-single__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-inline: 40px;
}
@media (max-width: 840px) {
  .case-single__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-inline: 16px;
  }
}
@media (max-width: 540px) {
  .case-single__related-grid {
    display: none;
    padding-inline: 0px;
  }
}
.case-single__related-grid .case-archive__card {
  border: none;
  padding: 0;
}

.case-single__related-slider {
  display: none;
}
@media (max-width: 540px) {
  .case-single__related-slider {
    display: block;
    position: relative;
    margin-top: 40px;
    padding-bottom: 50px;
  }
  .case-single__related-slider .case-archive__card {
    max-width: 82%;
    margin: 0 auto;
    border: none;
    padding: 0;
  }
}

@media (max-width: 540px) {
  .case-single__related-prev,
  .case-single__related-next {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .case-single__related-prev::after,
  .case-single__related-next::after {
    content: none;
  }
}

@media (max-width: 540px) {
  .case-single__related-prev {
    left: -6px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><path d="M23 12L15 20L23 28" stroke="%23B39A73" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}

@media (max-width: 540px) {
  .case-single__related-next {
    right: -6px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><path d="M17 12L25 20L17 28" stroke="%23B39A73" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}

@media (max-width: 540px) {
  .case-single__related-pagination {
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
}
@media (max-width: 540px) {
  .case-single__related-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D4CBBD;
    opacity: 1;
    margin: 0 !important;
  }
}
@media (max-width: 540px) {
  .case-single__related-pagination .swiper-pagination-bullet-active {
    background: #b39a73;
  }
}

.doctor-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  position: relative;
}
@media (max-width: 840px) {
  .doctor-profile {
    padding-top: 100px;
  }
}
@media (max-width: 540px) {
  .doctor-profile {
    padding: 80px 0 48px;
  }
}

.doctor-profile__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 80px;
  width: 100%;
  max-width: 880px;
  position: relative;
}
@media (max-width: 1024px) {
  .doctor-profile__container {
    gap: 40px;
  }
}
@media (max-width: 840px) {
  .doctor-profile__container {
    flex-direction: column;
    gap: 32px;
  }
}

.doctor-profile__image {
  flex: none;
  width: 400px;
  height: 480px;
  border-radius: 0 20px 0 20px;
  overflow: hidden;
}
@media (max-width: 840px) {
  .doctor-profile__image {
    width: 312px;
    height: 380px;
  }
}
.doctor-profile__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.doctor-profile__name-en {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "EB Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #b39a73;
  white-space: nowrap;
  writing-mode: vertical-lr;
  translate: -50% -20px;
}
@media (max-width: 540px) {
  .doctor-profile__name-en {
    font-size: 36px;
    translate: 0% -16px;
  }
}

.doctor-profile__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 400px;
  max-width: 100%;
}
@media (max-width: 840px) {
  .doctor-profile__content {
    width: 100%;
    padding: 0 4px;
  }
}

.doctor-profile__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px 18px;
  width: 100%;
}

.doctor-profile__name-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 540px) {
  .doctor-profile__name-wrapper {
    gap: 16px;
  }
}

.doctor-profile__role {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 540px) {
  .doctor-profile__role {
    font-size: 16px;
  }
}

.doctor-profile__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 540px) {
  .doctor-profile__name {
    font-size: 24px;
  }
}

.doctor-profile__sns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
@media (max-width: 540px) {
  .doctor-profile__sns {
    margin-top: 6px;
  }
}

.doctor-profile__sns-item {
  max-width: 53px;
}

.doctor-profile__sns-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  gap: 3px;
  transition: 0.3s;
}
.doctor-profile__sns-link:hover {
  opacity: 0.7;
}
.doctor-profile__sns-link img {
  width: 24px;
  height: auto;
}
@media (max-width: 540px) {
  .doctor-profile__sns-link img {
    width: 24px;
  }
}
.doctor-profile__sns-link span {
  font-family: "Zen Old Mincho", serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #55575f;
  text-align: center;
}

.doctor-profile__divider {
  width: 80px;
  height: 2px;
  background: #b39a73;
  margin-top: 32px;
}
@media (max-width: 540px) {
  .doctor-profile__divider {
    width: 72px;
    margin-top: 16px;
  }
}

.doctor-profile__specialties {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 12px;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 540px) {
  .doctor-profile__specialties {
    margin-top: 14px;
  }
}

.doctor-profile__specialty-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #a1885f;
  padding: 6px 10px;
  border: 1px solid #B59972;
  background: #FAFAF9;
}
@media (max-width: 540px) {
  .doctor-profile__specialty-tag {
    font-size: 12px;
    padding: 4px 6px;
  }
}

.doctor-profile__text-long {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  width: 100%;
  color: #333;
  margin-top: 40px;
}
@media (max-width: 540px) {
  .doctor-profile__text-long {
    font-size: 14px;
  }
}

.doctors-archive {
  background: #f9f8f5;
  padding: 80px 0 0;
}
@media (max-width: 540px) {
  .doctors-archive {
    padding: 48px 0 0;
  }
}

.doctors-archive__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 540px) {
  .doctors-archive__header {
    gap: 24px;
    margin-bottom: 48px;
  }
}

.doctors-archive__description {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #55575f;
}
@media (max-width: 540px) {
  .doctors-archive__description {
    font-size: 13px;
  }
}

.doctors-archive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  max-width: 1056px;
  margin: 0 auto;
}
@media (max-width: 840px) {
  .doctors-archive__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 540px) {
  .doctors-archive__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.doctors-archive__item {
  max-width: 320px;
  margin-inline: auto;
}

.doctors-archive__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 16px 0 16px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.4s;
}
@media (any-hover: hover) {
  .doctors-archive__link:hover {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
    transform: translate(0px, -1px);
    transition-duration: 400ms;
    opacity: 1;
  }
}

.doctors-archive__image {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.doctors-archive__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 320/328;
  border-radius: 0 16px 0 0;
}

.doctors-archive__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  flex: 1;
  padding: 20px 24px;
  background: #b39a73;
  position: relative;
}

.doctors-archive__name-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

.doctors-archive__role {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #FFFFFF;
}
@media (max-width: 540px) {
  .doctors-archive__role {
    font-size: 14px;
  }
}

.doctors-archive__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #FFFFFF;
}
@media (max-width: 540px) {
  .doctors-archive__name {
    font-size: 20px;
  }
}

.doctors-archive__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: left;
  width: 100%;
}
@media (max-width: 540px) {
  .doctors-archive__text {
    font-size: 13px;
  }
}

.doctors-archive__wrap {
  margin-top: auto;
}

.doctors-archive__arrow {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  margin-left: auto;
}

.doctors-archive__no-posts {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #55575f;
  text-align: center;
  padding: 80px 0;
}

.doctors-archive .doctors-single__breadcrumb,
.doctors-archive .page-single__breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.doctors-archive .doctors-single__breadcrumb::before,
.doctors-archive .page-single__breadcrumb::before {
  content: "";
  position: absolute;
  background: #f9f8f5;
  margin: 0 calc((100vw - 100%) / 2 * -1);
  width: 100vw;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.single-doctors {
  background: #f9f8f5;
  min-height: 100vh;
}

.doctors-single__breadcrumb {
  padding: 80px 0 0;
  padding-bottom: 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #55575f;
  max-width: 1140px;
  padding-inline: 40px;
}
@media (max-width: 840px) {
  .doctors-single__breadcrumb {
    padding-inline: 64px;
  }
}
@media (max-width: 540px) {
  .doctors-single__breadcrumb {
    font-size: 12px;
    padding-top: 32px;
    padding-inline: 20px;
    padding-bottom: 24px;
    flex-wrap: wrap;
  }
}
.doctors-single__breadcrumb a {
  color: #868893;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.doctors-single__breadcrumb a:hover {
  color: #b39a73;
}
.doctors-single__breadcrumb_last {
  color: #333;
}
.doctors-single__breadcrumb-separator {
  color: #dbcebb;
}
.doctors-single__breadcrumb-current {
  color: #55575F;
}

.single-doctors .doctors-single__breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.single-doctors .doctors-single__breadcrumb::before {
  content: "";
  position: absolute;
  background: #f9f8f5;
  margin: 0 calc((100vw - 100%) / 2 * -1);
  width: 100vw;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.doctor-history__wrapper {
  gap: 40px 64px;
}
@media (max-width: 840px) {
  .doctor-history__wrapper {
    gap: 40px 48px;
  }
}
.doctor-history__wrapper + .doctor-history__wrapper {
  margin-top: 64px;
}

.doctor-history {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  max-width: 100%;
}
.doctor-history + .doctor-history {
  margin-top: 56px;
}
@media (max-width: 840px) {
  .doctor-history + .doctor-history {
    margin-top: 40px;
  }
}

.doctor-history__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
}
@media (max-width: 840px) {
  .doctor-history__header {
    gap: 12px;
  }
}
@media (max-width: 540px) {
  .doctor-history__header {
    gap: 12px;
  }
}

.doctor-history__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #55575f;
  flex: none;
}
@media (max-width: 840px) {
  .doctor-history__title {
    font-size: 18px;
  }
}
@media (max-width: 540px) {
  .doctor-history__title {
    font-size: 18px;
  }
}

.doctor-history__divider {
  flex: 1;
  height: 1px;
  background: #b39a73;
}

.doctor-history__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.doctor-history-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  width: 100%;
}
@media (max-width: 840px) {
  .doctor-history-item {
    gap: 16px;
  }
}
@media (max-width: 540px) {
  .doctor-history-item {
    gap: 16px;
  }
}

.doctor-history-item__year {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #333;
  flex: none;
  width: 88px;
}
@media (max-width: 840px) {
  .doctor-history-item__year {
    font-size: 14px;
    width: 84px;
  }
}
@media (max-width: 540px) {
  .doctor-history-item__year {
    font-size: 14px;
    width: 84px;
  }
}

.doctor-history-item__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #333;
  flex: 1;
}
@media (max-width: 840px) {
  .doctor-history-item__text {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .doctor-history-item__text {
    font-size: 14px;
  }
}

.doctor-videos {
  padding: 50px 0;
}
@media (max-width: 840px) {
  .doctor-videos {
    padding: 30px 0;
  }
}

.doctor-videos__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 32px;
  padding-inline: 40px;
  margin-top: 64px;
}
@media (max-width: 840px) {
  .doctor-videos__list {
    gap: 32px 24px;
    padding-inline: 16px;
    margin-top: 48px;
  }
}
@media (max-width: 540px) {
  .doctor-videos__list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }
}

.doctor-videos__item {
  width: 100%;
}

.doctor-videos__iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 0 16px 0 16px;
}
.doctor-videos__iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.section-doctors {
  padding: 50px 0;
}
@media (max-width: 840px) {
  .section-doctors {
    padding: 30px 0;
  }
}

.section-doctors__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 80px;
}
@media (max-width: 840px) {
  .section-doctors__header {
    gap: 24px;
    margin-bottom: 48px;
  }
}
@media (max-width: 540px) {
  .section-doctors__header {
    gap: 24px;
    margin-bottom: 48px;
  }
}

.section-doctors__description {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #55575f;
  text-align: left;
  max-width: 900px;
}
@media (max-width: 840px) {
  .section-doctors__description {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .section-doctors__description {
    font-size: 14px;
  }
}

.section-doctors__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 48px;
  max-width: 1056px;
  margin: 0 auto;
}
@media (max-width: 840px) {
  .section-doctors__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 540px) {
  .section-doctors__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-doctors__item {
  max-width: 320px;
}

.section-doctors__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 16px 0 16px;
  overflow: hidden;
  text-decoration: none;
  transition: 0.4s;
}
@media (any-hover: hover) {
  .section-doctors__link:hover {
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
    transform: translate(0px, -1px);
    transition-duration: 400ms;
    opacity: 1;
  }
}

.section-doctors__image {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.section-doctors__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 320/328;
  border-radius: 0 16px 0 0;
}

.section-doctors__content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  flex: 1;
  padding: 20px 24px;
  background: #b39a73;
  position: relative;
}

.section-doctors__name-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
}

.section-doctors__role {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #FFFFFF;
}
@media (max-width: 840px) {
  .section-doctors__role {
    font-size: 14px;
  }
}

.section-doctors__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #FFFFFF;
}
@media (max-width: 840px) {
  .section-doctors__name {
    font-size: 20px;
  }
}

.section-doctors__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #FFFFFF;
  text-align: left;
  width: 100%;
}
@media (max-width: 840px) {
  .section-doctors__text {
    font-size: 13px;
  }
}

.section-doctors__arrow {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  margin-top: auto;
  margin-left: auto;
}

.section-doctors__no-posts {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #55575f;
  text-align: center;
  padding: 80px 0;
}

.menu-single {
  position: relative;
}

.menu-single__menu {
  margin: 20px auto 0;
  max-width: 1200px;
  padding: 0 32px;
}

.menu-single__menu--en {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 540px) {
  .menu-single__menu--en {
    font-size: 40px;
  }
}

.menu-single__menu--jp {
  font-family: "Zen Old Mincho", serif;
  margin-top: 10px;
  font-size: 20px;
  padding-bottom: 16px;
  font-weight: 500;
  line-height: 150%;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #b39a73;
}
@media (max-width: 540px) {
  .menu-single__menu--jp {
    font-size: 18px;
  }
}

.menu-single {
  padding-top: 57px;
  background: #FFFFFF;
}
@media (max-width: 840px) {
  .menu-single {
    padding-top: 53px;
  }
}
@media (max-width: 540px) {
  .menu-single {
    padding-top: 51px;
  }
}

.menu-single__inner {
  margin: 0 auto;
  padding: 0px 40px 20px;
}
@media (max-width: 840px) {
  .menu-single__inner {
    padding: 0px 24px 0;
  }
}
@media (max-width: 540px) {
  .menu-single__inner {
    padding: 0px 16px 0;
  }
}

.menu-single__header {
  display: flex;
  align-items: center;
  background: #f9f8f5;
  padding: 48px 0px;
}
@media only screen and (max-width: 768px) {
  .menu-single__header {
    padding: 20px 0px 26px;
  }
}

.menu-single__headline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-single__title-en {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 400;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #b39a73;
}
.menu-single__title-en:not(.is-empty)::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #b39a73;
  border-radius: 100%;
}
@media (max-width: 540px) {
  .menu-single__title-en:not(.is-empty)::before {
    width: 4px;
    height: 4px;
  }
}
@media (max-width: 840px) {
  .menu-single__title-en {
    font-size: 22px;
  }
}
@media (max-width: 540px) {
  .menu-single__title-en {
    font-size: 18px;
  }
}

.menu-single__title {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 540px) {
  .menu-single__title {
    font-size: 22px;
  }
}

.menu-single__meta {
  margin-top: 48px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #b39a73;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .menu-single__meta {
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}

.menu-single__date {
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #55575f;
}
@media (max-width: 540px) {
  .menu-single__date {
    font-size: 13px;
  }
}

.menu-single__categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-single__category {
  padding: 4px 12px;
  border-radius: 0 5px;
  border: 0.8px solid #6B5644;
  font-family: "EB Garamond", serif;
  font-size: 12px;
  font-weight: 400;
  color: #6B5644;
}
@media (max-width: 540px) {
  .menu-single__category {
    font-size: 11px;
    padding: 3px 10px;
  }
}

.menu-single__thumbnail {
  margin: 85px auto 0;
  width: 100%;
  max-width: 640px;
}
@media (max-width: 540px) {
  .menu-single__thumbnail {
    margin-top: 40px;
  }
}
.menu-single__thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu-single__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 40px;
}
@media (max-width: 540px) {
  .menu-single__body {
    gap: 12px;
  }
}
.menu-single__body h2.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 20px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .menu-single__body h2.wp-block-heading {
    font-size: 20px;
    padding: 4px 16px;
    margin-top: 32px;
  }
}
.menu-single__body h3.wp-block-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 48px;
}
.menu-single__body h3.wp-block-heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #b39a73;
  flex: 1;
}
@media (max-width: 540px) {
  .menu-single__body h3.wp-block-heading {
    font-size: 20px;
    margin-top: 32px;
  }
}
.menu-single__body h4.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #b39a73;
  padding: 24px 0px 8px;
}
@media (max-width: 540px) {
  .menu-single__body h4.wp-block-heading {
    font-size: 16px;
    padding: 20px 0px 8px;
  }
}
.menu-single__body h5.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 2px 16px 4px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .menu-single__body h5.wp-block-heading {
    font-size: 18px;
    padding: 0px 14px 2px;
    margin-top: 32px;
  }
}
.menu-single__body h6.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 12px;
  margin-top: 24px;
}
@media (max-width: 540px) {
  .menu-single__body h6.wp-block-heading {
    font-size: 16px;
    padding: 4px 16px;
    margin-top: 20px;
  }
}
.menu-single__body .wp-block-columns h2.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.menu-single__body .wp-block-columns h3.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.menu-single__body .wp-block-columns h4.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.menu-single__body .wp-block-columns h5.wp-block-heading {
  margin-top: 0;
}
.menu-single__body .wp-block-columns h6.wp-block-heading {
  margin-top: 0;
}
.menu-single__body p:not([class]) {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
}
@media (max-width: 540px) {
  .menu-single__body p:not([class]) {
    font-size: 14px;
  }
}
.menu-single__body p:not([class]) strong {
  font-weight: 700;
}
.menu-single__body p:not([class]) a {
  color: #b39a73;
  text-decoration: underline;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.menu-single__body p:not([class]) a:hover {
  opacity: 0.7;
}
.menu-single__body .wp-block-group * {
  margin-top: 0;
}
.menu-single__body .wp-block-image img {
  max-width: 640px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .menu-single__body .wp-block-image img {
    max-width: 100%;
  }
}
.menu-single__body .wp-block-image .aligncenter {
  text-align: center;
}
.menu-single__body .wp-block-image .wp-element-caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-top: 8px;
}
@media (max-width: 540px) {
  .menu-single__body .wp-block-image .wp-element-caption {
    font-size: 14px;
  }
}
.menu-single__body .wp-block-image.is-style-rounded-20 img {
  border-radius: 20px;
}
.menu-single__body ul.wp-block-list li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .menu-single__body ul.wp-block-list li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.menu-single__body ul.wp-block-list li::before {
  content: "・";
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .menu-single__body ul.wp-block-list li::before {
    margin-inline: 2px;
  }
}
.menu-single__body ol {
  counter-reset: item;
}
.menu-single__body ol > li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .menu-single__body ol > li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.menu-single__body ol > li::before {
  content: counter(item) ". ";
  counter-increment: item;
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .menu-single__body ol > li::before {
    margin-inline: 2px;
  }
}
.menu-single__body ol > li ol,
.menu-single__body ol > li ul {
  counter-reset: subitem;
  margin-top: 8px;
}
.menu-single__body ol > li ol > li::before,
.menu-single__body ol > li ul > li::before {
  content: counter(subitem, lower-alpha) ". ";
  counter-increment: subitem;
}
.menu-single__body ol > li ol > li ol,
.menu-single__body ol > li ol > li ul,
.menu-single__body ol > li ul > li ol,
.menu-single__body ol > li ul > li ul {
  counter-reset: subsubitem;
}
.menu-single__body ol > li ol > li ol > li::before,
.menu-single__body ol > li ol > li ul > li::before,
.menu-single__body ol > li ul > li ol > li::before,
.menu-single__body ol > li ul > li ul > li::before {
  content: counter(subsubitem) ". ";
  counter-increment: subsubitem;
}
.menu-single__body .single-note {
  width: 100%;
  margin-inline: auto;
}
.menu-single__body .single-note p {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  padding: 20px 40px;
}
@media only screen and (max-width: 768px) {
  .menu-single__body .single-note p {
    font-size: 12px;
    padding: 20px;
  }
}
.menu-single__body .column-annotation {
  width: 100%;
  margin-inline: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: #333;
  padding: 20px 40px;
  background: #fff;
  border: 1px solid #dbcebb;
  width: 90%;
  margin: auto;
  border-radius: 12px;
}
@media only screen and (max-width: 768px) {
  .menu-single__body .column-annotation {
    font-size: 12px;
    padding: 20px;
  }
}
.menu-single__body blockquote {
  margin-inline: auto;
  position: relative;
  padding: 40px 48px;
}
@media (max-width: 540px) {
  .menu-single__body blockquote {
    padding: 30px 30px;
  }
}
.menu-single__body blockquote::before, .menu-single__body blockquote::after {
  background: url("../img/page/column/icon_blockquote.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 23px;
  height: 20px;
}
.menu-single__body blockquote::before {
  left: 0;
  top: 0;
}
.menu-single__body blockquote::after {
  display: none;
}
.menu-single__body blockquote p {
  position: relative;
}
@media (max-width: 540px) {
  .menu-single__body blockquote p {
    font-size: 14px;
  }
}
.menu-single__body blockquote p::before, .menu-single__body blockquote p::after {
  content: "";
  position: absolute;
  background: #b39a73;
  width: calc(100% + 24px);
  height: 1px;
}
.menu-single__body blockquote p::before {
  left: 0;
  top: -28px;
}
@media (max-width: 540px) {
  .menu-single__body blockquote p::before {
    top: -20px;
  }
}
.menu-single__body blockquote p::after {
  display: none;
}
.menu-single__body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #b39a73;
}
.menu-single__body table th,
.menu-single__body table td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .menu-single__body table th,
  .menu-single__body table td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.menu-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
.menu-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  border-color: #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .menu-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
  .menu-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.menu-single__body .wp-block-button__link {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  background: #b39a73;
  border-radius: 0 8px;
  border-width: 1px;
}
.menu-single__body .--small .wp-block-button__link {
  font-size: 18px;
  padding: 10px 16px;
}
@media (max-width: 540px) {
  .menu-single__body .--small .wp-block-button__link {
    font-size: 14px;
    padding: 12px 18px;
  }
}
.menu-single__body .wp-block-separator {
  border: none;
  border-top: 1px solid #b39a73;
  width: 100%;
}
.menu-single__body .wp-block-separator.is-style-wide {
  border-top-width: 2px;
  max-width: 100%;
}
.menu-single__body .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  line-height: 1;
  height: auto;
}
.menu-single__body .wp-block-separator.is-style-dots::before {
  content: "···";
  color: #b39a73;
  font-size: 24px;
  letter-spacing: 1em;
  padding-left: 1em;
}
.menu-single__body hr.wp-block-separator {
  display: block;
  background: none;
}
.menu-single__body .is-type-video {
  width: 100%;
  max-width: 500px;
}
.menu-single__body .is-type-video.aligncenter {
  margin-inline: auto;
}
.menu-single__body .is-type-video.aligncenter iframe {
  display: block;
}
.menu-single__body .is-type-video.alignright {
  margin-left: auto;
}
.menu-single__body .is-type-video.alignright iframe {
  display: block;
}
.menu-single__body .is-type-video .wp-block-embed__wrapper {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.menu-single__body .is-type-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.menu-single__body .column-nose__grid {
  align-content: flex-start;
  align-items: flex-start;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 40px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
@media (max-width: 840px) {
  .menu-single__body .column-nose__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
@media (max-width: 540px) {
  .menu-single__body .column-nose__grid {
    grid-template-columns: 1fr;
  }
}
.menu-single__body .column-nose__grid + .column-nose__grid {
  margin-top: 32px;
}
@media (max-width: 840px) {
  .menu-single__body .column-nose__grid + .column-nose__grid {
    margin-top: 0px;
  }
}

.menu-single__pagination {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid #e2e2e7;
  border-bottom: 1px solid #e2e2e7;
}
@media (max-width: 540px) {
  .menu-single__pagination {
    margin-top: 40px;
    gap: 16px;
    padding: 32px 0;
  }
}
.menu-single__pagination-prev {
  justify-self: start;
}
.menu-single__pagination-list {
  justify-self: center;
}
.menu-single__pagination-next {
  justify-self: end;
}
.menu-single__pagination-prev a, .menu-single__pagination-next a, .menu-single__pagination-list a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .menu-single__pagination-prev a, .menu-single__pagination-next a, .menu-single__pagination-list a {
    font-size: 13px;
  }
}
.menu-single__pagination-prev a:hover, .menu-single__pagination-next a:hover, .menu-single__pagination-list a:hover {
  color: #b39a73;
}
.menu-single__pagination-list a {
  color: #55575F;
  font-weight: 600;
}

.menu-single__author {
  margin-top: 60px;
  padding: 32px 0;
  border-top: 1px solid #e2e2e7;
}
@media (max-width: 540px) {
  .menu-single__author {
    margin-top: 40px;
    padding: 24px 0;
  }
}
.menu-single__author-item {
  display: flex;
  gap: 24px;
  background: #f9f8f5;
  padding: 32px;
  border-radius: 8px;
}
@media (max-width: 540px) {
  .menu-single__author-item {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 16px;
  }
}
.menu-single__author-avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 540px) {
  .menu-single__author-avatar {
    width: 80px;
    height: 80px;
  }
}
.menu-single__author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-single__author-content {
  flex: 1;
}
.menu-single__author-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #55575F;
  margin-bottom: 8px;
}
@media (max-width: 540px) {
  .menu-single__author-name {
    font-size: 16px;
    text-align: center;
  }
}
.menu-single__author-description {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575f;
}
@media (max-width: 540px) {
  .menu-single__author-description {
    font-size: 13px;
    text-align: center;
  }
}
.menu-single__author-description p {
  margin: 0;
}

.menu-voice {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 100px;
}
.menu-voice + .menu-voice {
  margin-top: 24px;
}
@media (max-width: 840px) {
  .menu-voice {
    padding: 24px;
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .menu-voice {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    gap: 16px;
    margin-top: 40px;
  }
}
.menu-voice.is-reverse {
  flex-direction: row-reverse;
}
@media (max-width: 540px) {
  .menu-voice.is-reverse {
    flex-direction: column;
  }
}
.menu-voice__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 126px;
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .menu-voice__img {
    width: 100%;
  }
}
.menu-voice__img img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-voice__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #55575F;
  text-align: center;
}
@media (max-width: 540px) {
  .menu-voice__name {
    font-size: 13px;
  }
}
.menu-voice__content {
  padding: 40px 20px;
  background: #f9f8f5;
  border-radius: 20px 20px 20px 0;
  letter-spacing: -0.02em;
  flex: 1;
  display: flex;
  align-items: center;
}
@media (max-width: 540px) {
  .menu-voice__content {
    width: 100%;
  }
}
.menu-voice__text {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
}
@media (max-width: 540px) {
  .menu-voice__text {
    font-size: 14px;
    text-align: center;
  }
}
.menu-voice__text strong {
  font-weight: bold;
}

.menu-single__breadcrumb {
  padding: 80px 0 0;
  padding-bottom: 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #55575f;
  max-width: 1140px;
  padding-inline: 40px;
}
@media (max-width: 840px) {
  .menu-single__breadcrumb {
    padding-inline: 64px;
  }
}
@media (max-width: 540px) {
  .menu-single__breadcrumb {
    font-size: 12px;
    padding-top: 32px;
    padding-inline: 20px;
    padding-bottom: 24px;
    flex-wrap: wrap;
  }
}
.menu-single__breadcrumb a {
  color: #868893;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.menu-single__breadcrumb a:hover {
  color: #b39a73;
}
.menu-single__breadcrumb_last {
  color: #333;
}
.menu-single__breadcrumb-separator {
  color: #dbcebb;
}
.menu-single__breadcrumb-current {
  color: #55575F;
}

.menu-page {
  padding-top: 80px;
}
@media (max-width: 840px) {
  .menu-page {
    padding-top: 70px;
  }
}
@media (max-width: 540px) {
  .menu-page {
    padding-top: 60px;
  }
}

.news-archive {
  padding-top: 80px;
  background: #FFFFFF;
  padding-bottom: 40px;
}
@media (max-width: 840px) {
  .news-archive {
    padding-top: 70px;
    padding-bottom: 24px;
  }
}
@media (max-width: 540px) {
  .news-archive {
    padding-top: 64px;
    padding-bottom: 24px;
  }
}

.news-archive__header {
  margin: 20px auto 0;
  max-width: 1200px;
  padding: 0 32px;
}

.news-archive__header--en {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 540px) {
  .news-archive__header--en {
    font-size: 40px;
  }
}

.news-archive__header--jp {
  font-family: "Zen Old Mincho", serif;
  margin-top: 10px;
  font-size: 20px;
  padding-bottom: 16px;
  font-weight: 500;
  line-height: 150%;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #b39a73;
}
@media (max-width: 540px) {
  .news-archive__header--jp {
    font-size: 18px;
  }
}

.news-archive__inner {
  align-content: center;
  align-items: center;
  gap: 48px;
  padding: 80px 80px 0;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 840px) {
  .news-archive__inner {
    gap: 32px;
    padding: 32px 0 0;
  }
}
@media (max-width: 540px) {
  .news-archive__inner {
    gap: 40px;
    padding: 64px 0 0;
  }
}

.news-archive__content {
  align-content: center;
  align-items: center;
  gap: 0px;
  max-width: 960px;
  margin: 0 auto;
  margin-top: 48px;
  width: 100%;
}
@media (max-width: 840px) {
  .news-archive__content {
    width: 88%;
  }
}
@media (max-width: 540px) {
  .news-archive__content {
    margin-top: 40px;
    width: 100%;
  }
}

.news-archive__divider {
  background: #e2e2e7;
  height: 1px;
  width: 100%;
}

.news-archive__list {
  list-style: none;
  margin: 0;
  padding: 0;
  align-content: flex-start;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}
@media (max-width: 840px) {
  .news-archive__list {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .news-archive__list {
    margin: 0;
  }
}

.news-archive__item {
  background: transparent;
  border: 0;
  width: 100%;
  transition: background 0.3s ease;
}
.news-archive__item:hover {
  background: #f9f8f5;
}
.news-archive__item:hover .news-archive__item-title {
  color: #b39a73;
  font-weight: 600;
}
.news-archive__item:hover .news-archive__item-link::after {
  transform: translate(2px, 0px) rotate(-45deg);
}
@media (max-width: 540px) {
  .news-archive__item:hover .news-archive__item-link::after {
    transform: translateY(-50%) translate(2px, 0px) rotate(-45deg);
  }
}
@media (max-width: 840px) {
  .news-archive__item {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .news-archive__item {
    margin: 0;
  }
}
.news-archive__item--hidden {
  display: none;
}

.news-archive__item-link {
  align-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #e2e2e7;
  display: flex;
  flex-direction: row;
  gap: 48px;
  justify-content: space-between;
  padding: 28px 24px;
  width: 100%;
  text-decoration: none;
  position: relative;
}
@media (max-width: 840px) {
  .news-archive__item-link {
    margin: 0;
  }
}
@media (max-width: 540px) {
  .news-archive__item-link {
    align-content: center;
    align-items: flex-start;
    gap: 8px;
    padding: 24px 40px 24px 16px;
    flex-direction: column;
  }
}
.news-archive__item-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1px solid #b39a73;
  border-bottom: 1px solid #b39a73;
  transform: rotate(-45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-top: 4px;
}
@media (max-width: 540px) {
  .news-archive__item-link::after {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    margin-top: 0;
  }
}

.news-archive__item-date {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  flex-shrink: 0;
}
@media (max-width: 840px) {
  .news-archive__item-date {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .news-archive__item-date {
    font-size: 14px;
  }
}

.news-archive__item-title {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
  text-align: left;
  transition: color 0.3s ease, font-weight 0.3s ease;
  flex: 1;
}
@media (max-width: 840px) {
  .news-archive__item-title {
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .news-archive__item-title {
    font-size: 14px;
    line-height: 1.4;
  }
}

.news-archive__more {
  align-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  height: auto;
  justify-content: center;
  margin: 48px 0 0;
  width: 100%;
}

.news-archive__more-button {
  align-content: center;
  align-items: center;
  display: inline-flex;
  flex: none;
  flex-wrap: nowrap;
  justify-content: center;
  height: 44px;
  width: 100%;
  max-width: 144px;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid #b39a73;
  border-radius: 0px 8px 0px 8px;
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.news-archive__more-button:hover {
  background: #b39a73;
}
.news-archive__more-button:hover .news-archive__more-text {
  color: #ffffff;
}
@media (max-width: 540px) {
  .news-archive__more-button {
    font-size: 14px;
    height: 40px;
    width: 128px;
  }
}

.news-archive__more-text {
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 2px 0;
  text-align: center;
  transition: all 0.3s ease;
  margin: 0;
}
@media (max-width: 840px) {
  .news-archive__more-text {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .news-archive__more-text {
    font-size: 14px;
  }
}

.news-archive__breadcrumb {
  padding: 80px 0 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-family: "EB Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #55575f;
  margin-bottom: 32px;
  max-width: 1200px;
  padding: 0 32px;
}
@media (max-width: 540px) {
  .news-archive__breadcrumb {
    padding-top: 64px;
    font-size: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }
}
.news-archive__breadcrumb a {
  color: #55575f;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.news-archive__breadcrumb a:hover {
  color: #b39a73;
}

.news-archive__breadcrumb-separator {
  color: #dbcebb;
}
.news-archive__breadcrumb-separator::after {
  content: ">";
}

.news-archive__breadcrumb-current {
  color: #55575F;
}
.news-archive__breadcrumb-current p {
  margin: 0;
}

.news-archive .news-single__breadcrumb,
.news-archive .page-single__breadcrumb {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.news-archive .news-single__breadcrumb::before,
.news-archive .page-single__breadcrumb::before {
  content: "";
  position: absolute;
  background: #FFFFFF;
  margin: 0 calc((100vw - 100%) / 2 * -1);
  width: 100vw;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.news-single {
  position: relative;
}

.news-single__news {
  margin: 20px auto 0;
  max-width: 1200px;
  padding: 0 32px;
}

.news-single__news--en {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 540px) {
  .news-single__news--en {
    font-size: 40px;
  }
}

.news-single__news--jp {
  font-family: "Zen Old Mincho", serif;
  margin-top: 10px;
  font-size: 20px;
  padding-bottom: 16px;
  font-weight: 500;
  line-height: 150%;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #b39a73;
}
@media (max-width: 540px) {
  .news-single__news--jp {
    font-size: 18px;
  }
}

.news-single {
  padding-top: 80px;
  background: #FFFFFF;
}
@media (max-width: 840px) {
  .news-single {
    padding-top: 70px;
  }
}
@media (max-width: 540px) {
  .news-single {
    padding-top: 60px;
  }
}

.news-single__inner {
  max-width: 864px;
  margin: 0 auto;
  padding: 120px 32px 50px;
}
@media (max-width: 840px) {
  .news-single__inner {
    padding: 32px 24px;
  }
}
@media (max-width: 540px) {
  .news-single__inner {
    padding: 24px 16px;
  }
}

.news-single__header {
  margin-bottom: 32px;
}
@media (max-width: 540px) {
  .news-single__header {
    margin-bottom: 16px;
  }
}

.news-single__title {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media (max-width: 540px) {
  .news-single__title {
    font-size: 22px;
  }
}

.news-single__meta {
  margin-top: 48px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #b39a73;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 540px) {
  .news-single__meta {
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 24px;
    padding-bottom: 12px;
  }
}

.news-single__date {
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #55575f;
}
@media (max-width: 540px) {
  .news-single__date {
    font-size: 13px;
  }
}

.news-single__categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-single__category {
  padding: 4px 12px;
  border-radius: 0 5px;
  border: 0.8px solid #6B5644;
  font-family: "EB Garamond", serif;
  font-size: 12px;
  font-weight: 400;
  color: #6B5644;
}
@media (max-width: 540px) {
  .news-single__category {
    font-size: 11px;
    padding: 3px 10px;
  }
}

.news-single__thumbnail {
  margin: 85px auto 0;
  width: 100%;
  max-width: 640px;
}
@media (max-width: 540px) {
  .news-single__thumbnail {
    margin-top: 40px;
  }
}
.news-single__thumbnail img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-single__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 540px) {
  .news-single__body {
    gap: 12px;
  }
}
.news-single__body h2.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 20px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .news-single__body h2.wp-block-heading {
    font-size: 20px;
    padding: 4px 16px;
    margin-top: 32px;
  }
}
.news-single__body h3.wp-block-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 48px;
}
.news-single__body h3.wp-block-heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #b39a73;
  flex: 1;
}
@media (max-width: 540px) {
  .news-single__body h3.wp-block-heading {
    font-size: 20px;
    margin-top: 32px;
  }
}
.news-single__body h4.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #b39a73;
  padding: 24px 0px 8px;
}
@media (max-width: 540px) {
  .news-single__body h4.wp-block-heading {
    font-size: 16px;
    padding: 20px 0px 8px;
  }
}
.news-single__body h5.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 2px 16px 4px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .news-single__body h5.wp-block-heading {
    font-size: 18px;
    padding: 0px 14px 2px;
    margin-top: 32px;
  }
}
.news-single__body h6.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 12px;
  margin-top: 24px;
}
@media (max-width: 540px) {
  .news-single__body h6.wp-block-heading {
    font-size: 16px;
    padding: 4px 16px;
    margin-top: 20px;
  }
}
.news-single__body .wp-block-columns h2.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.news-single__body .wp-block-columns h3.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.news-single__body .wp-block-columns h4.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.news-single__body .wp-block-columns h5.wp-block-heading {
  margin-top: 0;
}
.news-single__body .wp-block-columns h6.wp-block-heading {
  margin-top: 0;
}
.news-single__body p:not([class]) {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
}
@media (max-width: 540px) {
  .news-single__body p:not([class]) {
    font-size: 14px;
  }
}
.news-single__body p:not([class]) strong {
  font-weight: 700;
}
.news-single__body p:not([class]) a {
  color: #b39a73;
  text-decoration: underline;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.news-single__body p:not([class]) a:hover {
  opacity: 0.7;
}
.news-single__body .wp-block-group * {
  margin-top: 0;
}
.news-single__body .wp-block-image img {
  max-width: 640px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .news-single__body .wp-block-image img {
    max-width: 100%;
  }
}
.news-single__body .wp-block-image .aligncenter {
  text-align: center;
}
.news-single__body .wp-block-image .wp-element-caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-top: 8px;
}
@media (max-width: 540px) {
  .news-single__body .wp-block-image .wp-element-caption {
    font-size: 14px;
  }
}
.news-single__body .wp-block-image.is-style-rounded-20 img {
  border-radius: 20px;
}
.news-single__body ul.wp-block-list li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .news-single__body ul.wp-block-list li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.news-single__body ul.wp-block-list li::before {
  content: "・";
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .news-single__body ul.wp-block-list li::before {
    margin-inline: 2px;
  }
}
.news-single__body ol {
  counter-reset: item;
}
.news-single__body ol > li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .news-single__body ol > li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.news-single__body ol > li::before {
  content: counter(item) ". ";
  counter-increment: item;
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .news-single__body ol > li::before {
    margin-inline: 2px;
  }
}
.news-single__body ol > li ol,
.news-single__body ol > li ul {
  counter-reset: subitem;
  margin-top: 8px;
}
.news-single__body ol > li ol > li::before,
.news-single__body ol > li ul > li::before {
  content: counter(subitem, lower-alpha) ". ";
  counter-increment: subitem;
}
.news-single__body ol > li ol > li ol,
.news-single__body ol > li ol > li ul,
.news-single__body ol > li ul > li ol,
.news-single__body ol > li ul > li ul {
  counter-reset: subsubitem;
}
.news-single__body ol > li ol > li ol > li::before,
.news-single__body ol > li ol > li ul > li::before,
.news-single__body ol > li ul > li ol > li::before,
.news-single__body ol > li ul > li ul > li::before {
  content: counter(subsubitem) ". ";
  counter-increment: subsubitem;
}
.news-single__body .single-note {
  width: 100%;
  margin-inline: auto;
}
.news-single__body .single-note p {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  padding: 20px 40px;
}
@media only screen and (max-width: 768px) {
  .news-single__body .single-note p {
    font-size: 12px;
    padding: 20px;
  }
}
.news-single__body .column-annotation {
  width: 100%;
  margin-inline: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: #333;
  padding: 20px 40px;
  background: #fff;
  border: 1px solid #dbcebb;
  width: 90%;
  margin: auto;
  border-radius: 12px;
}
@media only screen and (max-width: 768px) {
  .news-single__body .column-annotation {
    font-size: 12px;
    padding: 20px;
  }
}
.news-single__body blockquote {
  margin-inline: auto;
  position: relative;
  padding: 40px 48px;
}
@media (max-width: 540px) {
  .news-single__body blockquote {
    padding: 30px 30px;
  }
}
.news-single__body blockquote::before, .news-single__body blockquote::after {
  background: url("../img/page/column/icon_blockquote.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 23px;
  height: 20px;
}
.news-single__body blockquote::before {
  left: 0;
  top: 0;
}
.news-single__body blockquote::after {
  display: none;
}
.news-single__body blockquote p {
  position: relative;
}
@media (max-width: 540px) {
  .news-single__body blockquote p {
    font-size: 14px;
  }
}
.news-single__body blockquote p::before, .news-single__body blockquote p::after {
  content: "";
  position: absolute;
  background: #b39a73;
  width: calc(100% + 24px);
  height: 1px;
}
.news-single__body blockquote p::before {
  left: 0;
  top: -28px;
}
@media (max-width: 540px) {
  .news-single__body blockquote p::before {
    top: -20px;
  }
}
.news-single__body blockquote p::after {
  display: none;
}
.news-single__body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #b39a73;
}
.news-single__body table th,
.news-single__body table td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .news-single__body table th,
  .news-single__body table td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.news-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
.news-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  border-color: #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .news-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
  .news-single__body .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.news-single__body .wp-block-button__link {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  background: #b39a73;
  border-radius: 0 8px;
  border-width: 1px;
}
.news-single__body .--small .wp-block-button__link {
  font-size: 18px;
  padding: 10px 16px;
}
@media (max-width: 540px) {
  .news-single__body .--small .wp-block-button__link {
    font-size: 14px;
    padding: 12px 18px;
  }
}
.news-single__body .wp-block-separator {
  border: none;
  border-top: 1px solid #b39a73;
  width: 100%;
}
.news-single__body .wp-block-separator.is-style-wide {
  border-top-width: 2px;
  max-width: 100%;
}
.news-single__body .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  line-height: 1;
  height: auto;
}
.news-single__body .wp-block-separator.is-style-dots::before {
  content: "···";
  color: #b39a73;
  font-size: 24px;
  letter-spacing: 1em;
  padding-left: 1em;
}
.news-single__body hr.wp-block-separator {
  display: block;
  background: none;
}
.news-single__body .is-type-video {
  width: 100%;
  max-width: 500px;
}
.news-single__body .is-type-video.aligncenter {
  margin-inline: auto;
}
.news-single__body .is-type-video.aligncenter iframe {
  display: block;
}
.news-single__body .is-type-video.alignright {
  margin-left: auto;
}
.news-single__body .is-type-video.alignright iframe {
  display: block;
}
.news-single__body .is-type-video .wp-block-embed__wrapper {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.news-single__body .is-type-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news-single__body .column-nose__grid {
  align-content: flex-start;
  align-items: flex-start;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 40px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
@media (max-width: 840px) {
  .news-single__body .column-nose__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
@media (max-width: 540px) {
  .news-single__body .column-nose__grid {
    grid-template-columns: 1fr;
  }
}
.news-single__body .column-nose__grid + .column-nose__grid {
  margin-top: 32px;
}
@media (max-width: 840px) {
  .news-single__body .column-nose__grid + .column-nose__grid {
    margin-top: 0px;
  }
}

.news-single__pagination {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid #e2e2e7;
  border-bottom: 1px solid #e2e2e7;
}
@media (max-width: 540px) {
  .news-single__pagination {
    margin-top: 40px;
    gap: 16px;
    padding: 32px 0;
  }
}
.news-single__pagination-prev {
  justify-self: start;
}
.news-single__pagination-list {
  justify-self: center;
}
.news-single__pagination-next {
  justify-self: end;
}
.news-single__pagination-prev a, .news-single__pagination-next a, .news-single__pagination-list a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
@media (max-width: 540px) {
  .news-single__pagination-prev a, .news-single__pagination-next a, .news-single__pagination-list a {
    font-size: 13px;
  }
}
.news-single__pagination-prev a:hover, .news-single__pagination-next a:hover, .news-single__pagination-list a:hover {
  color: #b39a73;
}
.news-single__pagination-list a {
  color: #55575F;
  font-weight: 600;
}

.news-single__breadcrumb {
  padding: 80px 0 0;
  padding-bottom: 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #55575f;
  max-width: 1140px;
  padding-inline: 40px;
}
@media (max-width: 840px) {
  .news-single__breadcrumb {
    padding-inline: 64px;
  }
}
@media (max-width: 540px) {
  .news-single__breadcrumb {
    font-size: 12px;
    padding-top: 32px;
    padding-inline: 20px;
    padding-bottom: 24px;
    flex-wrap: wrap;
  }
}
.news-single__breadcrumb a {
  color: #868893;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.news-single__breadcrumb a:hover {
  color: #b39a73;
}
.news-single__breadcrumb_last {
  color: #333;
}
.news-single__breadcrumb-separator {
  color: #dbcebb;
}
.news-single__breadcrumb-current {
  color: #55575F;
}

body.page-price h2.wp-block-heading {
  max-width: 960px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  color: #6B5644;
  padding: 0 0 18px 13px;
  margin: 56px auto 0;
  position: relative;
}
@media (max-width: 540px) {
  body.page-price h2.wp-block-heading {
    font-size: 18px;
    padding: 12px 16px;
    margin-top: 32px;
  }
}
body.page-price h2.wp-block-heading::before {
  background: #b39a73;
  content: "";
  position: absolute;
  width: 4px;
  height: 36px;
  left: 0;
  top: 5px;
}
@media (max-width: 540px) {
  body.page-price h2.wp-block-heading::before {
    top: 12px;
  }
}

.price-menu-links {
  margin: 25px auto 0;
  display: flex;
  flex-direction: column;
  max-width: 960px;
}

.price-menu-links__title {
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 2.16px;
}

.price-menu-links__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 18px auto 0;
  width: 100%;
}
@media (max-width: 840px) {
  .price-menu-links__list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
@media (max-width: 540px) {
  .price-menu-links__list {
    gap: 10px;
  }
}

.price-menu-links__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border: 1px solid #b39a73;
  border-radius: 0 8px 0 8px;
  background: transparent;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.price-menu-links__item.--reverse {
  background: #b39a73;
}
.price-menu-links__item.--reverse .price-menu-links__text {
  color: #FFF;
}
@media (any-hover: hover) {
  .price-menu-links__item.--reverse:hover {
    background: #FFF;
  }
  .price-menu-links__item.--reverse:hover .price-menu-links__text {
    color: #b39a73;
  }
}
@media (any-hover: hover) {
  .price-menu-links__item:hover {
    background: #b39a73;
  }
  .price-menu-links__item:hover .price-menu-links__text {
    color: #fff;
  }
}

.price-menu-links__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #b39a73;
  transition: color 0.3s ease;
}
@media (max-width: 840px) {
  .price-menu-links__text {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .price-menu-links__text {
    font-size: 14px;
    text-align: center;
    width: 100%;
  }
}

.price-table {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  max-width: 880px;
  width: 100%;
}
.price-table + .price-table {
  margin-top: 32px;
}
.price-table + .price-table-course {
  margin-top: 32px;
}
.price-table .inner {
  max-width: 960px;
}

.price-table__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.price-table__title {
  flex: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #b39a73;
  text-align: left;
}
@media (max-width: 540px) {
  .price-table__title {
    font-size: 16px;
  }
}

.price-table__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #b39a73;
  border-radius: 0 8px 0 8px;
  transition: background-color 0.3s ease;
}
@media (max-width: 840px) {
  .price-table__button {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .price-table__button {
    font-size: 13px;
    height: 36px;
    padding: 0px 14px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .price-table__button:hover {
    background: #b39a73;
    opacity: 1;
  }
  .price-table__button:hover .price-table__button-text {
    color: #fff;
  }
  .price-table__button:hover .price-table__button-icon img {
    filter: brightness(0) invert(1);
  }
}

.price-table__button-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #b39a73;
  transition: color 0.3s ease;
}

.price-table__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.price-table__button-icon img {
  width: auto;
  height: 24px;
  transition: filter 0.3s ease;
}
@media (max-width: 540px) {
  .price-table__button-icon {
    display: none;
  }
}

.price-table__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.price-table__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  min-height: 56px;
  width: 100%;
}

.price-table__item-title {
  flex: none;
  width: 60%;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  background: #f9f8f5;
  border-left: 1px solid #e2e2e7;
  border-right: 1px solid #e2e2e7;
  border-bottom: 1px solid #e2e2e7;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 840px) {
  .price-table__item-title {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .price-table__item-title {
    font-size: 14px;
    padding: 12px;
    width: 65%;
    max-width: 65%;
  }
}
.price-table__row:first-child .price-table__item-title {
  border-top: 1px solid #e2e2e7;
}

.price-table__item-price {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-right: 1px solid #e2e2e7;
  border-bottom: 1px solid #e2e2e7;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 840px) {
  .price-table__item-price {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .price-table__item-price {
    font-size: 14px;
    padding: 12px 16px;
  }
}
.price-table__row:first-child .price-table__item-price {
  border-top: 1px solid #e2e2e7;
}

.price-table-course {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}
.price-table-course + .price-table-course {
  margin-top: 32px;
}
.price-table-course + .price-table-course:not(:has(.price-table-course__header)) {
  margin-top: -1px;
}
.price-table-course + .price-table {
  margin-top: 32px;
}
.price-table-course .inner {
  max-width: 960px;
}

.price-table-course__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.price-table-course__title {
  flex: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #b39a73;
  text-align: left;
}
@media (max-width: 540px) {
  .price-table-course__title {
    font-size: 16px;
  }
}

.price-table-course__button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #b39a73;
  border-radius: 0 8px 0 8px;
  transition: background-color 0.3s ease;
}
@media (max-width: 840px) {
  .price-table-course__button {
    font-size: 14px;
  }
}
@media (max-width: 540px) {
  .price-table-course__button {
    font-size: 13px;
    height: 36px;
    padding: 0px 14px;
    max-width: 100%;
  }
}
@media (any-hover: hover) {
  .price-table-course__button:hover {
    background: #b39a73;
    opacity: 1;
  }
  .price-table-course__button:hover .price-table-course__button-text {
    color: #fff;
  }
  .price-table-course__button:hover .price-table-course__button-icon img {
    filter: brightness(0) invert(1);
  }
}

.price-table-course__button-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #b39a73;
  transition: color 0.3s ease;
}

.price-table-course__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.price-table-course__button-icon img {
  width: auto;
  height: 24px;
  transition: filter 0.3s ease;
}
@media (max-width: 540px) {
  .price-table-course__button-icon {
    display: none;
  }
}

.price-table-course__content {
  display: flex;
  flex-direction: row;
  width: 100%;
  border: 1px solid #e2e2e7;
}
.price-table-course__item-title {
  flex: none;
  width: 35%;
  padding: 20px;
  background: #f9f8f5;
  border-right: 1px solid #e2e2e7;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 540px) {
  .price-table-course__item-title {
    padding: 15px 12px;
  }
}
.price-table-course__item-title p {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 840px) {
  .price-table-course__item-title p {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .price-table-course__item-title p {
    font-size: 14px;
  }
}

.price-table-course__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.price-table-course__row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #e2e2e7;
}
.price-table-course__row:last-child {
  border-bottom: 0;
}
.price-table-course__label {
  flex: none;
  width: 35%;
  padding: 20px;
  background: #f9f8f5;
  border-right: 1px solid #e2e2e7;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 840px) {
  .price-table-course__label {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .price-table-course__label {
    padding: 15px 12px;
    font-size: 14px;
  }
}

.price-table-course__price-wrapper {
  flex: 1;
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
@media (max-width: 540px) {
  .price-table-course__price-wrapper {
    padding: 15px 16px;
  }
}

.price-table-course__price {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}
@media (max-width: 840px) {
  .price-table-course__price {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .price-table-course__price {
    font-size: 14px;
  }
}

.price-table-course__note {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #666666;
}

.price-banner {
  max-width: 960px;
  margin: 60px auto 0;
}

.price-banner__link {
  display: block;
  width: min(100%, 442px);
}
.price-banner__link img {
  display: block;
  width: 100%;
  height: auto;
}

.price-banner__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-top: 12px;
}
@media (max-width: 540px) {
  .price-banner__text {
    font-size: 14px;
  }
}

.page-faq h2.wp-block-heading {
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.8;
  margin-bottom: 24px;
  width: 100%;
  margin: 0 auto;
  margin-top: 32px;
}
@media (max-width: 840px) {
  .page-faq h2.wp-block-heading {
    padding-inline: 64px;
  }
}
@media (max-width: 540px) {
  .page-faq h2.wp-block-heading {
    margin-top: 28px;
    font-size: 18px;
    padding-inline: 20px;
  }
}

.faq-section {
  width: 100%;
  margin: 24px auto 0;
}
@media (max-width: 540px) {
  .faq-section {
    margin-top: 16px;
  }
}

.faq-section__list {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  gap: 20px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 540px) {
  .faq-section__list {
    gap: 12px;
  }
}

.faq-section__item {
  background: #f9f8f5;
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.3s ease;
}
.faq-section__item[open] .top-faq__answer {
  grid-template-rows: 1fr;
}
.faq-section__item[open] .faq-section__question-arrow {
  rotate: 180deg;
}

.faq-section__question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  transition: background 0.3s ease;
  position: relative;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
}
@media (max-width: 540px) {
  .faq-section__question {
    padding: 20px;
    gap: 8px;
  }
}
@media (any-hover: hover) {
  .faq-section__question:hover {
    background: #f6f1e6;
  }
}

.faq-section__question-label {
  color: #b39a73;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 540px) {
  .faq-section__question-label {
    font-size: 16px;
    margin-top: 0;
  }
}

.faq-section__question-text {
  color: #333333;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  flex: 1;
}
@media (max-width: 540px) {
  .faq-section__question-text {
    font-size: 15px;
    line-height: 1.4;
  }
}

.faq-section__question-arrow {
  display: block;
  width: 24px;
  aspect-ratio: 1;
  transition: 0.2s ease-out;
}
.faq-section__question-arrow img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq-section__answer {
  display: grid;
  transition: grid-template-rows 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  grid-template-rows: 0fr;
}
.faq-section__answer > * {
  overflow: hidden;
}

.top-faq__answer-inner {
  overflow: hidden;
}

.faq-section__answer-content {
  padding: 16px 32px 28px 32px;
  color: #333333;
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media (max-width: 540px) {
  .faq-section__answer-content {
    padding: 16px 20px 20px 20px;
    font-size: 14px;
  }
}

.faq-nav {
  margin: 48px auto 110px;
}
@media (max-width: 840px) {
  .faq-nav {
    margin-top: 48px;
  }
}
@media (max-width: 540px) {
  .faq-nav {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}

.faq-nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 920px;
  margin: auto;
  position: relative;
}
@media (max-width: 840px) {
  .faq-nav__list {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 540px) {
  .faq-nav__list {
    gap: 12px;
  }
}
.faq-nav__list::before {
  background: #b39a73;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 840px) {
  .faq-nav__list::before {
    content: none;
  }
}

.faq-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 140px;
  height: 140px;
  border: 1px solid #b39a73;
  border-radius: 50%;
  background: #FFFFFF;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 20px;
}
@media (max-width: 840px) {
  .faq-nav__item {
    gap: 10px;
    padding: 16px;
  }
}
@media (max-width: 540px) {
  .faq-nav__item {
    width: 100px;
    height: 100px;
    gap: 8px;
    padding: 12px;
  }
}
.faq-nav__item:hover {
  background: #b39a73;
  color: #FFFFFF;
  opacity: 1;
}
.faq-nav__item:hover .faq-nav__item-text {
  color: #FFFFFF;
}
.faq-nav__item:hover .faq-nav__item-arrow path {
  fill: #FFFFFF;
}

.faq-nav__item-text {
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  word-break: keep-all;
}
@media (max-width: 840px) {
  .faq-nav__item-text {
    font-size: 12px;
  }
}
@media (max-width: 540px) {
  .faq-nav__item-text {
    font-size: 12px;
  }
}

.faq-nav__item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 7px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-nav__item-arrow svg {
  width: 100%;
  height: 100%;
}
.faq-nav__item-arrow svg path {
  transition: fill 0.3s ease;
}

.page-single {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 540px) {
  .page-single {
    gap: 12px;
  }
}
.page-single h2.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 20px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .page-single h2.wp-block-heading {
    font-size: 20px;
    padding: 4px 16px;
    margin-top: 32px;
  }
}
.page-single h3.wp-block-heading {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: "Zen Old Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin-top: 48px;
}
.page-single h3.wp-block-heading::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #b39a73;
  flex: 1;
}
@media (max-width: 540px) {
  .page-single h3.wp-block-heading {
    font-size: 20px;
    margin-top: 32px;
  }
}
.page-single h4.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #b39a73;
  padding: 24px 0px 8px;
}
@media (max-width: 540px) {
  .page-single h4.wp-block-heading {
    font-size: 16px;
    padding: 20px 0px 8px;
  }
}
.page-single h5.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 2px 16px 4px;
  margin-top: 48px;
}
@media (max-width: 540px) {
  .page-single h5.wp-block-heading {
    font-size: 18px;
    padding: 0px 14px 2px;
    margin-top: 32px;
  }
}
.page-single h6.wp-block-heading {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
  letter-spacing: 0.02em;
  border-left: 4px solid #b39a73;
  padding: 4px 12px;
  margin-top: 24px;
}
@media (max-width: 540px) {
  .page-single h6.wp-block-heading {
    font-size: 16px;
    padding: 4px 16px;
    margin-top: 20px;
  }
}
.page-single .wp-block-columns h2.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.page-single .wp-block-columns h3.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.page-single .wp-block-columns h4.wp-block-heading {
  padding-top: 0;
  margin-top: 0;
}
.page-single .wp-block-columns h5.wp-block-heading {
  margin-top: 0;
}
.page-single .wp-block-columns h6.wp-block-heading {
  margin-top: 0;
}
.page-single p:not([class]) {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #333;
}
@media (max-width: 540px) {
  .page-single p:not([class]) {
    font-size: 14px;
  }
}
.page-single p:not([class]) strong {
  font-weight: 700;
}
.page-single p:not([class]) a {
  color: #b39a73;
  text-decoration: underline;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.page-single p:not([class]) a:hover {
  opacity: 0.7;
}
.page-single .wp-block-group * {
  margin-top: 0;
}
.page-single .wp-block-image img {
  max-width: 640px;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .page-single .wp-block-image img {
    max-width: 100%;
  }
}
.page-single .wp-block-image .aligncenter {
  text-align: center;
}
.page-single .wp-block-image .wp-element-caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-top: 8px;
}
@media (max-width: 540px) {
  .page-single .wp-block-image .wp-element-caption {
    font-size: 14px;
  }
}
.page-single .wp-block-image.is-style-rounded-20 img {
  border-radius: 20px;
}
.page-single ul.wp-block-list li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .page-single ul.wp-block-list li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.page-single ul.wp-block-list li::before {
  content: "・";
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .page-single ul.wp-block-list li::before {
    margin-inline: 2px;
  }
}
.page-single ol {
  counter-reset: item;
}
.page-single ol > li {
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-indent: -1.6em;
  padding-left: 1.6em;
}
@media (max-width: 540px) {
  .page-single ol > li {
    font-size: 14px;
    text-indent: -1.4em;
    padding-left: 1.4em;
  }
}
.page-single ol > li::before {
  content: counter(item) ". ";
  counter-increment: item;
  margin-inline: 4px;
}
@media (max-width: 540px) {
  .page-single ol > li::before {
    margin-inline: 2px;
  }
}
.page-single ol > li ol,
.page-single ol > li ul {
  counter-reset: subitem;
  margin-top: 8px;
}
.page-single ol > li ol > li::before,
.page-single ol > li ul > li::before {
  content: counter(subitem, lower-alpha) ". ";
  counter-increment: subitem;
}
.page-single ol > li ol > li ol,
.page-single ol > li ol > li ul,
.page-single ol > li ul > li ol,
.page-single ol > li ul > li ul {
  counter-reset: subsubitem;
}
.page-single ol > li ol > li ol > li::before,
.page-single ol > li ol > li ul > li::before,
.page-single ol > li ul > li ol > li::before,
.page-single ol > li ul > li ul > li::before {
  content: counter(subsubitem) ". ";
  counter-increment: subsubitem;
}
.page-single .single-note {
  width: 100%;
  margin-inline: auto;
}
.page-single .single-note p {
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  padding: 20px 40px;
}
@media only screen and (max-width: 768px) {
  .page-single .single-note p {
    font-size: 12px;
    padding: 20px;
  }
}
.page-single .column-annotation {
  width: 100%;
  margin-inline: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.02em;
  color: #333;
  padding: 20px 40px;
  background: #fff;
  border: 1px solid #dbcebb;
  width: 90%;
  margin: auto;
  border-radius: 12px;
}
@media only screen and (max-width: 768px) {
  .page-single .column-annotation {
    font-size: 12px;
    padding: 20px;
  }
}
.page-single blockquote {
  margin-inline: auto;
  position: relative;
  padding: 40px 48px;
}
@media (max-width: 540px) {
  .page-single blockquote {
    padding: 30px 30px;
  }
}
.page-single blockquote::before, .page-single blockquote::after {
  background: url("../img/page/column/icon_blockquote.svg") no-repeat center center/cover;
  content: "";
  position: absolute;
  width: 23px;
  height: 20px;
}
.page-single blockquote::before {
  left: 0;
  top: 0;
}
.page-single blockquote::after {
  display: none;
}
.page-single blockquote p {
  position: relative;
}
@media (max-width: 540px) {
  .page-single blockquote p {
    font-size: 14px;
  }
}
.page-single blockquote p::before, .page-single blockquote p::after {
  content: "";
  position: absolute;
  background: #b39a73;
  width: calc(100% + 24px);
  height: 1px;
}
.page-single blockquote p::before {
  left: 0;
  top: -28px;
}
@media (max-width: 540px) {
  .page-single blockquote p::before {
    top: -20px;
  }
}
.page-single blockquote p::after {
  display: none;
}
.page-single table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #b39a73;
}
.page-single table th,
.page-single table td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .page-single table th,
  .page-single table td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.page-single .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
.page-single .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  padding: 5px 8px;
  border: 1px solid #b39a73;
  border-color: #b39a73;
  line-height: 2;
}
@media (max-width: 540px) {
  .page-single .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr th,
  .page-single .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table table tr td {
    font-size: 12px;
    padding: 10px 12px;
  }
}
.page-single .wp-block-button__link {
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  background: #b39a73;
  border-radius: 0 8px;
  border-width: 1px;
}
.page-single .--small .wp-block-button__link {
  font-size: 18px;
  padding: 10px 16px;
}
@media (max-width: 540px) {
  .page-single .--small .wp-block-button__link {
    font-size: 14px;
    padding: 12px 18px;
  }
}
.page-single .wp-block-separator {
  border: none;
  border-top: 1px solid #b39a73;
  width: 100%;
}
.page-single .wp-block-separator.is-style-wide {
  border-top-width: 2px;
  max-width: 100%;
}
.page-single .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  line-height: 1;
  height: auto;
}
.page-single .wp-block-separator.is-style-dots::before {
  content: "···";
  color: #b39a73;
  font-size: 24px;
  letter-spacing: 1em;
  padding-left: 1em;
}
.page-single hr.wp-block-separator {
  display: block;
  background: none;
}
.page-single .is-type-video {
  width: 100%;
  max-width: 500px;
}
.page-single .is-type-video.aligncenter {
  margin-inline: auto;
}
.page-single .is-type-video.aligncenter iframe {
  display: block;
}
.page-single .is-type-video.alignright {
  margin-left: auto;
}
.page-single .is-type-video.alignright iframe {
  display: block;
}
.page-single .is-type-video .wp-block-embed__wrapper {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}
.page-single .is-type-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-single .column-nose__grid {
  align-content: flex-start;
  align-items: flex-start;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 40px;
  width: 100%;
  max-width: 600px;
  margin-inline: auto;
}
@media (max-width: 840px) {
  .page-single .column-nose__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }
}
@media (max-width: 540px) {
  .page-single .column-nose__grid {
    grid-template-columns: 1fr;
  }
}
.page-single .column-nose__grid + .column-nose__grid {
  margin-top: 32px;
}
@media (max-width: 840px) {
  .page-single .column-nose__grid + .column-nose__grid {
    margin-top: 0px;
  }
}
.page-single .inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 540px) {
  .page-single .inner {
    gap: 20px;
  }
}

.page-single__breadcrumb {
  padding: 80px 0 0;
  padding-bottom: 32px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #55575f;
  max-width: 1140px;
  padding-inline: 40px;
  width: 100%;
}
@media (max-width: 840px) {
  .page-single__breadcrumb {
    padding-inline: 64px;
  }
}
@media (max-width: 540px) {
  .page-single__breadcrumb {
    font-size: 12px;
    padding-top: 32px;
    padding-inline: 20px;
    padding-bottom: 24px;
    flex-wrap: wrap;
  }
}
.page-single__breadcrumb a {
  color: #868893;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.page-single__breadcrumb a:hover {
  color: #b39a73;
}
.page-single__breadcrumb_last {
  color: #333;
}

.page-single__breadcrumb-separator {
  color: #dbcebb;
}

.page-single__breadcrumb-current {
  color: #55575F;
}

@media (max-width: 540px) {
  .case-images {
    margin: 0px -8px -16px;
  }
}

.case-images__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 32px;
}
@media (max-width: 840px) {
  .case-images__grid {
    gap: 20px;
  }
}
@media (max-width: 540px) {
  .case-images__grid {
    display: none;
  }
}

.case-images__slider {
  display: none;
}
@media (max-width: 540px) {
  .case-images__slider {
    display: block;
    position: relative;
    padding-bottom: 28px;
  }
}
.case-images__slider .swiper-wrapper {
  transition-timing-function: ease;
}
.case-images__slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.case-images__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 540px) {
  .case-images__item {
    gap: 8px;
    width: 80%;
    margin: 0 auto;
  }
}

.case-images__media {
  width: 100%;
  overflow: hidden;
  border-radius: 0 10px;
}
.case-images__media img,
.case-images__media video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.case-images__media video {
  background: #000;
}

.case-images__caption {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #55575f;
  text-align: center;
  margin: 0;
}
@media (max-width: 540px) {
  .case-images__caption {
    font-size: 12px;
  }
}

.case-images__prev,
.case-images__next {
  width: 30px;
  height: 30px;
  background: transparent;
  background-size: 30px 30px;
  background-repeat: no-repeat;
  background-position: center;
}
.case-images__prev::after,
.case-images__next::after {
  content: "";
}
.case-images__prev.swiper-button-disabled,
.case-images__next.swiper-button-disabled {
  opacity: 0.3;
}

.case-images__prev {
  left: 0px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><g clip-path="url(%23clip0_81_1360)"><circle cx="20" cy="20" r="19.5" stroke="%23B39A73"/><path d="M23.5 13L16.5 20L23.5 27" stroke="%23B39A73" stroke-linecap="round"/></g><defs><clipPath id="clip0_81_1360"><rect width="40" height="40" fill="white"/></clipPath></defs></svg>');
}

.case-images__next {
  right: 0px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><g clip-path="url(%23clip0_81_1360)"><circle cx="20" cy="20" r="19.5" stroke="%23B39A73"/><path d="M16.5 13L23.5 20L16.5 27" stroke="%23B39A73" stroke-linecap="round"/></g><defs><clipPath id="clip0_81_1360"><rect width="40" height="40" fill="white"/></clipPath></defs></svg>');
}

.case-images__pagination {
  bottom: 0 !important;
  display: flex;
  justify-content: center;
  gap: 0px;
}
.case-images__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #D4CBBD;
  opacity: 1;
  transition: background 0.3s ease;
  border-radius: 50%;
}
.case-images__pagination .swiper-pagination-bullet-active {
  background: #b39a73;
}

.case-doctor-profile {
  background: #f9f8f5;
  margin-top: 60px;
  padding: 50px 60px;
  border-radius: 0 50px;
  width: min(100%, 800px);
  margin-inline: auto;
}
@media (max-width: 840px) {
  .case-doctor-profile {
    padding: 40px 24px;
    margin-top: 40px;
  }
}
@media (max-width: 540px) {
  .case-doctor-profile {
    padding: 30px 16px;
    margin-top: 32px;
  }
}

.case-doctor-profile__title {
  font-family: "Zen Old Mincho", serif;
  margin-top: 0;
  padding-bottom: 0;
  padding-top: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  padding-left: 16px;
  border-bottom: none;
  border-left: 4px solid #b39a73;
  position: relative;
}
@media (max-width: 540px) {
  .case-doctor-profile__title {
    font-size: 20px;
  }
}
.case-doctor-profile__title::before {
  content: none;
}

.case-doctor-profile__main {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}
@media (max-width: 840px) {
  .case-doctor-profile__main {
    gap: 30px;
  }
}
@media (max-width: 540px) {
  .case-doctor-profile__main {
    margin-top: 24px;
    flex-direction: column;
    gap: 24px;
  }
}

.case-doctor-profile__image {
  flex-shrink: 0;
  max-width: 302px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
@media (max-width: 540px) {
  .case-doctor-profile__image {
    margin: 0 auto;
    max-width: 90%;
  }
}
.case-doctor-profile__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 24px;
}

.case-doctor-profile__info {
  width: 100%;
}

.case-doctor-profile__name {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 540px) {
  .case-doctor-profile__name {
    font-size: 20px;
  }
}

.case-doctor-profile__section {
  margin-top: 40px;
  width: 100%;
}
@media (max-width: 540px) {
  .case-doctor-profile__section {
    margin-top: 32px;
  }
}
.case-doctor-profile__section + .case-doctor-profile__section {
  margin-top: 32px;
}
@media (max-width: 540px) {
  .case-doctor-profile__section + .case-doctor-profile__section {
    margin-top: 24px;
  }
}

.case-doctor-profile__section-title {
  margin-top: 0;
  font-family: "Zen Old Mincho", serif;
  padding: 0;
  font-size: 16px;
  border: none;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 28px;
}
.case-doctor-profile__section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #b39a73;
}

.case-doctor-profile__section-text {
  margin-top: 12px;
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: #55575F;
}
@media (max-width: 540px) {
  .case-doctor-profile__section-text {
    font-size: 13px;
  }
}

.case-doctor-profile__career {
  margin-top: 40px;
}
@media (max-width: 540px) {
  .case-doctor-profile__career {
    margin-top: 24px;
  }
}

.case-doctor-profile__career-title {
  margin-top: 0;
  font-family: "Zen Old Mincho", serif;
  padding: 0;
  font-size: 16px;
  border: none;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 20px;
}
@media (max-width: 540px) {
  .case-doctor-profile__career-title {
    margin-bottom: 16px;
  }
}
.case-doctor-profile__career-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #b39a73;
}

.case-doctor-profile__career-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.case-doctor-profile__career-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
@media (max-width: 540px) {
  .case-doctor-profile__career-item {
    gap: 4px;
  }
}

.case-doctor-profile__career-date {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  min-width: 76px;
  color: #55575F;
  padding-left: 10px;
}
@media (max-width: 540px) {
  .case-doctor-profile__career-date {
    font-size: 13px;
  }
}

.case-doctor-profile__career-detail {
  font-family: "Zen Old Mincho", serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #55575F;
  flex: 1;
}
@media (max-width: 540px) {
  .case-doctor-profile__career-detail {
    font-size: 13px;
  }
}

.case-doctor-profile__button {
  margin-top: 40px;
  text-align: center;
}

.case-doctor-profile__link {
  display: inline-block;
  padding: 12px 24px;
  background: #b39a73;
  color: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  border-radius: 0 8px;
  transition: opacity 0.3s ease;
}
@media (max-width: 540px) {
  .case-doctor-profile__link {
    font-size: 14px;
    padding: 10px 32px;
  }
}
@media (any-hover: hover) {
  .case-doctor-profile__link:hover {
    opacity: 0.8;
  }
}

.doctor-cases {
  padding: 20px 0;
}
@media (max-width: 840px) {
  .doctor-cases {
    padding: 12px 0;
  }
}
.doctor-cases:has(.section-title) {
  padding: 50px 0;
}

.doctor-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding-inline: 40px;
}
@media (max-width: 840px) {
  .doctor-cases__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-inline: 16px;
  }
}
@media (max-width: 540px) {
  .doctor-cases__grid {
    display: none;
    padding-inline: 0px;
  }
}

.doctor-cases__slider {
  display: none;
}
@media (max-width: 540px) {
  .doctor-cases__slider {
    display: block;
    position: relative;
    padding-bottom: 50px;
  }
}
.doctor-cases__slider .swiper-slide {
  margin: 0 auto;
}

@media (max-width: 540px) {
  .doctor-cases__prev,
  .doctor-cases__next {
    width: 40px;
    height: 40px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .doctor-cases__prev::after,
  .doctor-cases__next::after {
    display: none;
  }
}

@media (max-width: 540px) {
  .doctor-cases__prev {
    left: -6px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><path d="M23 12L15 20L23 28" stroke="%23B39A73" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

@media (max-width: 540px) {
  .doctor-cases__next {
    right: -6px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><path d="M17 12L25 20L17 28" stroke="%23B39A73" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

@media (max-width: 540px) {
  .doctor-cases__pagination {
    bottom: 0 !important;
    position: absolute;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 540px) {
  .doctor-cases__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d4cbbd;
    opacity: 1;
  }
}
@media (max-width: 540px) {
  .doctor-cases__pagination .swiper-pagination-bullet-active {
    background: #b39a73;
  }
}

.doctor-cases__card {
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}
@media (max-width: 540px) {
  .doctor-cases__card {
    max-width: 82%;
    margin: auto;
  }
}
@media (any-hover: hover) {
  .doctor-cases__card:hover {
    box-shadow: none;
  }
}

.section-title + .doctor-cases {
  margin-top: 40px;
}

.section-title + .doctor-cases__grid {
  margin-top: 40px;
}

.section-title ~ .doctor-cases__slider {
  margin-top: 40px;
}

.clinic-information {
  position: relative;
  padding: 80px 0;
  width: 100%;
  border-top: 16px solid #f9f8f5;
}
@media (max-width: 840px) {
  .clinic-information {
    padding: 48px 0 64px;
    border-top: none;
  }
}

.clinic-information__inner {
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 840px) {
  .clinic-information__inner {
    width: 88%;
    padding: 0;
  }
}
.clinic-information__content {
  width: 60%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e2e2e7;
}
@media (max-width: 1140px) {
  .clinic-information__content {
    width: 65%;
  }
}
@media (max-width: 540px) {
  .clinic-information__content {
    width: 100%;
    flex-direction: column;
  }
}

.clinic-information__item {
  border-top: 1px solid #e2e2e7;
  padding: 16px 0 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 540px) {
  .clinic-information__item {
    padding: 14px 0 14px 10px;
    gap: 20px;
  }
}

.clinic-information__label {
  flex: none;
  width: 72px;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #55575f;
  text-align: center;
}
@media (max-width: 540px) {
  .clinic-information__label {
    width: 60px;
    font-size: 14px;
  }
}

.clinic-information__divider {
  flex: none;
  width: 2px;
  height: 16px;
  background: #b39a73;
}

.clinic-information__text {
  flex: 1;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #55575F;
}
@media (max-width: 840px) {
  .clinic-information__text {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .clinic-information__text {
    font-size: 14px;
  }
}

.clinic-information__bg-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 25%;
  height: 100%;
}
@media (max-width: 1140px) {
  .clinic-information__bg-image {
    width: 25%;
  }
}
@media (max-width: 840px) {
  .clinic-information__bg-image {
    width: 30%;
    height: 80%;
  }
}
@media (max-width: 540px) {
  .clinic-information__bg-image {
    width: 100%;
    height: 50%;
    height: 80px;
  }
}
.clinic-information__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.column-problem {
  background: #f9f8f5;
  border-radius: 12px;
  padding: 32px 40px;
}
@media (max-width: 840px) {
  .column-problem {
    padding: 16px 20px;
  }
}
.column-problem .column-problem__title {
  color: #55575f;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  border-bottom: 1px solid #b39a73;
  padding-bottom: 12px;
}
@media (max-width: 840px) {
  .column-problem .column-problem__title {
    font-size: 18px;
    padding-bottom: 8px;
  }
}
@media (max-width: 540px) {
  .column-problem .column-problem__title {
    font-size: 16px;
  }
}
.column-problem .column-problem__title + .column-problem__list {
  margin-top: 24px;
}
.column-problem .column-problem__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 32px;
}
@media (max-width: 840px) {
  .column-problem .column-problem__list {
    gap: 4px 20px;
  }
}
.column-problem .column-problem__item {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #55575F;
}
.column-problem .column-problem__item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #b39a73;
  border-radius: 100%;
  margin-right: 4px;
  margin-bottom: 2px;
}
@media (max-width: 840px) {
  .column-problem .column-problem__item {
    font-size: 14px;
  }
}

.column-problem-2 {
  border-top: 2px solid #b39a73;
  border-bottom: 2px solid #b39a73;
  padding: 32px 24px;
}
@media (max-width: 840px) {
  .column-problem-2 {
    padding: 16px 20px;
  }
}
.column-problem-2 .column-problem-2__title {
  color: #b39a73;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media (max-width: 840px) {
  .column-problem-2 .column-problem-2__title {
    font-size: 18px;
  }
}
@media (max-width: 540px) {
  .column-problem-2 .column-problem-2__title {
    font-size: 16px;
  }
}
.column-problem-2 .column-problem-2__title + .column-problem-2__list {
  margin-top: 20px;
}
.column-problem-2 .column-problem-2__list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 32px;
}
@media (max-width: 840px) {
  .column-problem-2 .column-problem-2__list {
    gap: 4px 20px;
  }
}
.column-problem-2 .column-problem-2__item {
  font-family: "Zen Old Mincho", serif;
  font-size: 15px;
  font-weight: 500;
  height: auto;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #55575F;
}
.column-problem-2 .column-problem-2__item::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #b39a73;
  border-radius: 100%;
  margin-right: 4px;
  margin-bottom: 2px;
}
@media (max-width: 840px) {
  .column-problem-2 .column-problem-2__item {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */