@charset "UTF-8";
#page-loader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 9999;
  pointer-events: none;
}

.fc-red {
  color: red;
}

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

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

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    font-size: clamp(14px, 4vw, 16px);
  }
}

body {
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.9;
  color: #1a2744;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover img {
  transition: 0.3s;
  opacity: 0.6;
}

ul, ol {
  list-style: none;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: inherit;
  appearance: none;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  width: 100%;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

section:last-child {
  padding-bottom: 220px;
}
@media screen and (max-width: 767px) {
  section:last-child {
    padding-bottom: 80px;
  }
}

.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.page-mv {
  padding-top: 136px;
  padding-bottom: 64px;
  background-color: #f7f6f4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-mv {
    padding-top: 104px;
    padding-bottom: 40px;
  }
}
.page-mv__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #1a2744;
  letter-spacing: 0.1em;
}
.page-mv__en {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 0.8125rem;
  color: #9a7b4b;
  letter-spacing: 0.2em;
}

.ttl-deco, .top-reason__title {
  text-align: center;
  color: #25273e;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  text-shadow: none;
}
.ttl-deco__main, .top-reason__title-main {
  display: inline-flex;
  align-items: center;
  gap: 32px;
}
.ttl-deco__text, .top-reason__title-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.ttl-deco__en, .top-reason__title-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-bottom: 0;
  line-height: 1;
}
.ttl-deco__acc, .top-reason__title-acc {
  height: 3em;
  width: auto;
  flex-shrink: 0;
}
.ttl-deco--white {
  color: #fff;
}
.ttl-deco--white .ttl-deco__en, .ttl-deco--white .top-reason__title-en {
  color: #fff;
}

.section-ttl {
  text-align: center;
  margin-bottom: 64px;
  padding-top: clamp(60px, 8vw, 120px);
}
.section-ttl__en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.section-ttl__ja {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: #9a7b4b;
  letter-spacing: 0.2em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 20px;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 5px 5px 0px #747887;
}
@media screen and (max-width: 767px) {
  .btn {
    padding: 15px;
  }
}
.btn--orange {
  background-color: #e8622a;
  color: #ffffff;
}
.btn--orange:hover {
  background-color: #cf5220;
}
.btn--navy {
  background-color: #25273e;
  color: #ffffff;
  min-width: 268px;
}
.btn--navy:hover {
  color: #1a1c2e;
  background-color: #ddd;
}
.btn__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 10px;
  display: block;
  background: url("../images/common/btn-arrow.svg") no-repeat center/contain;
}
.btn__arrow::after {
  display: none;
}

.wp-block-button__link.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 52px;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 5px 5px 0px #747887;
  background-color: #25273e;
  color: #ffffff;
  min-width: 240px;
  text-decoration: none;
  border: none;
}
.wp-block-button__link.wp-element-button:hover {
  background-color: #1a1c2e;
}
.wp-block-button__link.wp-element-button::before, .wp-block-button__link.wp-element-button::after {
  content: none !important;
  background: none !important;
}
.wp-block-button__link.wp-element-button--gold {
  background-color: #9a7b4b;
  color: #ffffff;
}
.wp-block-button__link.wp-element-button--gold:hover {
  background-color: #b4a98c;
}
.wp-block-button__link.wp-element-button--outline-navy {
  border: 1px solid #1a2744;
  color: #1a2744;
}
.wp-block-button__link.wp-element-button--outline-navy:hover {
  background-color: #1a2744;
  color: #ffffff;
}
.wp-block-button__link.wp-element-button--outline-white {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.wp-block-button__link.wp-element-button--outline-white:hover {
  background-color: #ffffff;
  color: #1a2744;
}
.wp-block-button__link.wp-element-button__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 10px;
  display: block;
  background: url("../images/common/btn-arrow.svg") no-repeat center/contain;
}
.wp-block-button__link.wp-element-button__arrow::after {
  display: none;
}

@media screen and (min-width: 1024px) {
  .u-sp-only {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}
.u-text-center {
  text-align: center;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(50px);
}

.js-fade-in {
  opacity: 0;
}

.home .header {
  opacity: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #ffffff;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.is-scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  height: 69px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 64px;
  }
}
.header__inner-tel {
  display: block;
  line-height: 1;
  padding: 10px 0;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .header__inner-tel {
    display: none;
  }
}
.header__inner-tel img {
  width: auto;
  height: 100%;
}
.header__logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  padding-left: 40px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding-left: 20px;
  }
}
.header__logo img {
  height: 28px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .header__logo img {
    height: 22px;
  }
}
.header__store {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 2px;
  width: 80px;
  background-color: #9a7b4b;
  color: #ffffff;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .header__store {
    width: 68px;
  }
}
.header__store:hover {
  background-color: #b4a98c;
}
.header__store-icon {
  width: 34px;
  height: 30px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 1.8;
}
@media screen and (max-width: 767px) {
  .header__store-icon {
    width: 18px;
    height: 16px;
  }
}
.header__menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 5px;
  width: 80px;
  background-color: #1a2744;
  border: none;
  cursor: pointer;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: #ffffff;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .header__menu-btn {
    width: 68px;
  }
}
.header__menu-btn:hover {
  transition: 0.3s;
  opacity: 0.6;
}
.header__menu-btn-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 32px;
}
@media screen and (max-width: 767px) {
  .header__menu-btn-lines {
    width: 18px;
    gap: 4px;
  }
}
.header__menu-btn-lines span {
  display: block;
  height: 1px;
  background-color: #ffffff;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.header__menu-btn.is-open .header__menu-btn-lines span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header__menu-btn.is-open .header__menu-btn-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__menu-btn.is-open .header__menu-btn-lines span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 28, 51, 0.5);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 650px;
  height: 100%;
  background-color: #111c33;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.nav-panel.is-open {
  transform: translateX(0);
}
.nav-panel__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  height: 69px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .nav-panel__header {
    height: 64px;
  }
}
.nav-panel__close {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 4px;
  width: 80px;
  height: 100%;
  background-color: #9a7b4b;
  color: #ffffff;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .nav-panel__close {
    width: 68px;
  }
}
.nav-panel__close:hover {
  background-color: #b4a98c;
}
.nav-panel__close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.nav-panel__close-icon::before, .nav-panel__close-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 1.5px;
  background-color: #ffffff;
}
.nav-panel__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-panel__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav-panel__nav {
  flex: 1;
  padding: 40px 64px;
}
@media screen and (max-width: 767px) {
  .nav-panel__nav {
    padding: 40px 20px;
  }
}
.nav-panel__nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 0;
}
@media screen and (max-width: 767px) {
  .nav-panel__nav ul {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.nav-panel__nav li a {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  padding: 0 0 16px 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}
@media screen and (max-width: 767px) {
  .nav-panel__nav li a {
    font-size: 1.1rem;
  }
}
.nav-panel__nav li a::before {
  content: "-";
  display: block;
  color: #ffffff;
  font-size: 0.75rem;
}
.nav-panel__nav li a:hover {
  opacity: 1;
  padding-left: 8px;
  color: #b4a98c;
}
.nav-panel__contact {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  margin: 0 64px 64px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .nav-panel__contact {
    margin: 0 20px 40px;
    padding: 24px;
  }
}
.nav-panel__contact-label {
  font-size: 1.2rem;
  font-weight: bold;
  color: #4a5568;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .nav-panel__contact-label {
    font-size: 1rem;
  }
}
.nav-panel__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background-color: #e8622a;
  color: #ffffff;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 24px;
  text-decoration: none;
  text-align: center;
  position: relative;
}
.nav-panel__contact-btn:hover {
  background-color: #cf5220;
}
@media screen and (max-width: 767px) {
  .nav-panel__contact-btn {
    padding: 16px;
    font-size: 0.9rem;
  }
}
.nav-panel__contact-btn-arrow {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  background: #ffffff;
}
.nav-panel__contact-btn-arrow::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #e8622a;
  border-right: 1px solid #e8622a;
  transform: rotate(45deg) translate(-1px, 1px);
}
.nav-panel__contact-tel {
  text-align: center;
}
.nav-panel__contact-tel img {
  width: 100%;
}

.float-banner {
  position: fixed;
  bottom: 30%;
  right: 40px;
  z-index: 50;
  width: 420px;
  background-color: #c9aa72;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: stretch;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-banner.is-show {
  opacity: 1;
  transform: translateY(0);
}
.float-banner.is-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-16px) !important;
}
@media screen and (max-width: 767px) {
  .float-banner {
    display: none;
  }
}
.float-banner__photo {
  width: 130px;
  flex-shrink: 0;
  overflow: hidden;
}
.float-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: center top;
}
.float-banner__body {
  flex: 1;
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.float-banner__label {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.8125rem;
  color: #1a2744;
  letter-spacing: 0.04em;
  border: 1px solid #1a2744;
  border-radius: 20px;
  padding: 3px 14px;
  line-height: 1.6;
}
.float-banner__tel {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a2744;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .float-banner__tel {
    pointer-events: none;
  }
}
.float-banner__hours {
  font-size: 0.75rem;
  color: #1a2744;
  opacity: 0.75;
}
.float-banner__close {
  position: absolute;
  top: -10px;
  right: -9px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.float-banner__close:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.float-banner__close::before, .float-banner__close::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 1.5px;
  background-color: #1a2744;
  top: 50%;
  left: 50%;
}
.float-banner__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.float-banner__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #ffffff;
  border-top: 1px solid #e2ddd7;
  display: none;
  box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .float-bar {
    display: flex;
  }
}
.float-bar.is-hidden .float-bar__main {
  display: none;
}
.float-bar.is-hidden .float-bar__reopen {
  display: flex;
}
.float-bar__reopen {
  display: none;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 12px 16px;
  cursor: pointer;
  background: none;
  border: none;
}
.float-bar__reopen-bg {
  display: inline-block;
  background: #fff;
}
.float-bar__reopen-icon {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #4a5568;
  border-right: 2px solid #4a5568;
  transform: rotate(45deg) translateY(2px);
  flex-shrink: 0;
}
.float-bar__reopen-sep {
  display: block;
  width: 1px;
  height: 20px;
  background: #e2ddd7;
  flex-shrink: 0;
  background: #ffffff;
}
.float-bar__reopen-text {
  display: inline-block;
  font-size: 0.95rem;
  color: #4a5568;
  letter-spacing: 0.04em;
  font-weight: bold;
  white-space: nowrap;
  padding-left: 100%;
  width: calc(100% - 50px);
  animation: marquee 10s linear infinite;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.float-bar__main {
  display: flex;
  width: 100%;
}
.float-bar__close {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  gap: 4px;
  width: 64px;
  padding: 8px 0;
  font-size: 0.625rem;
  color: #4a5568;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: none;
  border: none;
  border-right: 1px solid #e2ddd7;
}
.float-bar__close-icon {
  width: 16px;
  height: 16px;
  position: relative;
}
.float-bar__close-icon::before, .float-bar__close-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #4a5568;
}
.float-bar__close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.float-bar__close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}
.float-bar__tel {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  padding: 10px 16px;
  justify-content: center;
}
.float-bar__tel img {
  height: 60px;
  margin: 0 auto;
}
.float-bar__tel-info {
  display: flex;
  flex-direction: column;
}
.float-bar__tel-number {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #1a2744;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.float-bar__tel-hours {
  font-size: 0.625rem;
  color: #718096;
}

.sky-band {
  position: relative;
  overflow: hidden;
}
.sky-band__bg {
  position: absolute;
  top: -10%;
  bottom: -10%;
  left: 0;
  right: 0;
  background: url("../images/top/sky.jpg") no-repeat center top/cover;
  will-change: transform, opacity;
  opacity: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .sky-band__bg {
    background-image: url(../images/common/sky-sp.jpg);
    top: -2%;
    bottom: -2%;
  }
}
.sky-band > *:not(.sky-band__bg) {
  position: relative;
  z-index: 1;
}

.mv {
  position: relative;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    min-height: 600px;
  }
}
.mv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.mv__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: center top;
}
.mv__photo-fade {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
}
.mv__feathers {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.mv__feathers img {
  max-width: 1052px;
  height: 100%;
  object-fit: contain;
  object-position: left top;
}
@media screen and (max-width: 767px) {
  .mv__feathers img {
    max-width: 560px;
  }
}
.mv__feathers-front {
  position: absolute;
  inset: 0;
  left: 20%;
  bottom: -20%;
  z-index: 5;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .mv__feathers-front {
    left: 20%;
    bottom: -10%;
  }
}
.mv__feathers-front img {
  max-width: 880px;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}
@media screen and (max-width: 767px) {
  .mv__feathers-front img {
    max-width: 460px;
  }
}
.mv__photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65%;
  max-width: 960px;
  z-index: 4;
  opacity: 0;
  transform: translateY(60px);
}
@media screen and (max-width: 767px) {
  .mv__photo {
    width: 100%;
    bottom: 40px;
  }
}
.mv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: top center;
}
.mv__content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .mv__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.mv__content {
  padding-top: 69px;
  z-index: 6;
}
@media screen and (max-width: 767px) {
  .mv__content {
    top: 30%;
    bottom: auto;
    transform: translateY(-50%);
    padding-top: 64px;
  }
}
.mv__catch {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.625rem, 3.5vw, 3.8rem);
  color: #1a2744;
  line-height: 1.55;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}
@media screen and (max-width: 767px) {
  .mv__catch {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 16px;
    text-align: center;
  }
}
.mv__sub {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(0.8125rem, 1.2vw, 2.2rem);
  color: #1a2744;
  line-height: 2;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(16px);
}
@media screen and (max-width: 767px) {
  .mv__sub {
    font-size: 0.8125rem;
  }
}
.mv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #1a2744;
  z-index: 5;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    bottom: 0;
  }
}
.mv__scroll-text {
  font-family: bold;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  writing-mode: vertical-lr;
}
.mv__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, #1a2744, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes floatWoman {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes floatFeathers {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
.mv__photo.is-floating {
  animation: floatWoman 4s ease-in-out infinite;
}

.mv__feathers.is-floating {
  animation: floatFeathers 5s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes scrollLine {
  0% {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
.top-service {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top-service {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.top-service {
  background-color: transparent;
}
.top-service__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .top-service__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.top-service__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
}

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  width: 100%;
}
.service-card:nth-of-type(2), .service-card:nth-of-type(3) {
  width: calc(50% - 12px);
}
.service-card__img {
  height: 260px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .service-card__img {
    height: 220px;
  }
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img img {
  transform: scale(1.06);
}
.service-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(17, 28, 51, 0.8) 0%, transparent 100%);
  color: #ffffff;
}
.service-card__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.0625rem;
  letter-spacing: 0.05em;
}
.service-card__en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.top-voice {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top-voice {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.top-voice__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .top-voice__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.top-voice__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .top-voice__grid {
    grid-template-columns: 1fr;
  }
}
.top-voice__more {
  text-align: center;
  margin-top: 64px;
}

.voice-card {
  background-color: #f7f6f4;
  padding: 40px;
  border-radius: 2px;
}
.voice-card__quote {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 3rem;
  color: #9a7b4b;
  line-height: 1;
  margin-bottom: 16px;
}
.voice-card__text {
  font-size: 1.125rem;
  line-height: 2;
  color: #1a2744;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .voice-card__text {
    font-size: 1rem;
  }
}
.voice-card__name {
  font-size: 0.8125rem;
  color: #718096;
  text-align: right;
}

.top-news {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top-news {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.top-news {
  background-color: #f7f6f4;
}
.top-news__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .top-news__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.top-news__list {
  margin-top: 64px;
  border-top: 1px solid #e2ddd7;
}
.top-news__more {
  text-align: center;
  margin-top: 64px;
}

.news-item {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e2ddd7;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .news-item {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.news-item:hover {
  padding-left: 8px;
}
.news-item__date {
  font-size: 0.8125rem;
  color: #718096;
  white-space: nowrap;
  min-width: 88px;
  font-family: "Cormorant Garamond", "Georgia", serif;
  letter-spacing: 0.04em;
}
.news-item__cat {
  font-size: 0.6875rem;
  padding: 2px 10px;
  border: 1px solid #9a7b4b;
  color: #9a7b4b;
  white-space: nowrap;
  letter-spacing: 0.06em;
}
.news-item__title {
  font-size: 0.9375rem;
  color: #1a2744;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.news-item__title:hover {
  color: #9a7b4b;
}

.top-cta {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.top-cta {
  background-color: #1a2744;
  text-align: center;
  color: #ffffff;
}
.top-cta__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .top-cta__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.top-cta__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.375rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.top-cta__sub {
  font-size: 0.9375rem;
  opacity: 0.75;
  margin-bottom: 64px;
}
.top-cta__btns {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 24px;
  flex-wrap: wrap;
}

.voices {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .voices {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.voices__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .voices__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.voices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .voices__grid {
    grid-template-columns: 1fr;
  }
}

.news {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.news__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .news__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news__inner {
  max-width: 900px;
}
.news__list {
  border-top: 1px solid #e2ddd7;
}

.news-detail {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news-detail {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.news-detail__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .news-detail__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news-detail__inner {
  max-width: 860px;
}
.news-detail__header {
  margin-bottom: 64px;
  border-bottom: 1px solid #e2ddd7;
  padding-bottom: 40px;
}
.news-detail__meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  margin-bottom: 16px;
}
.news-detail__date {
  font-size: 0.8125rem;
  color: #718096;
  font-family: "Cormorant Garamond", "Georgia", serif;
}
.news-detail__cat {
  font-size: 0.6875rem;
  padding: 3px 10px;
  border: 1px solid #9a7b4b;
  color: #9a7b4b;
  border-radius: 2px;
}
.news-detail__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  color: #1a2744;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.news-detail__body {
  font-size: 0.9375rem;
  line-height: 2;
  color: #1a2744;
}
.news-detail__body p {
  margin-bottom: 24px;
}
.news-detail__body h2 {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.375rem;
  color: #1a2744;
  border-left: 4px solid #9a7b4b;
  padding-left: 16px;
  margin: 64px 0 24px;
}
.news-detail__body h3 {
  font-size: 1.125rem;
  color: #1a2744;
  margin: 40px 0 16px;
}
.news-detail__body img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 24px 0;
}
.news-detail__body ul, .news-detail__body ol {
  margin: 24px 0;
  padding-left: 24px;
}
.news-detail__body ul li, .news-detail__body ol li {
  margin-bottom: 8px;
}
.news-detail__body ul li {
  list-style: disc;
}
.news-detail__body ol li {
  list-style: decimal;
}
.news-detail__nav {
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #e2ddd7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
  .news-detail__nav {
    flex-direction: column;
    gap: 24px;
  }
}

.faq {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .faq {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.faq__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.faq__inner {
  max-width: 860px;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.contact__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contact__inner {
  max-width: 760px;
}
.contact__intro {
  text-align: center;
  margin-bottom: 64px;
  font-size: 0.9375rem;
  line-height: 2;
  color: #718096;
}

.contact-form__table {
  width: 100%;
  border-top: 1px solid #e2ddd7;
}
.contact-form__table tr {
  border-bottom: 1px solid #e2ddd7;
}
@media screen and (max-width: 767px) {
  .contact-form__table tr {
    display: flex;
    flex-direction: column;
  }
}
.contact-form__table th, .contact-form__table td {
  padding: 24px 0;
}
@media screen and (max-width: 767px) {
  .contact-form__table th, .contact-form__table td {
    padding: 8px 0;
  }
}
.contact-form__table th {
  width: 200px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #1a2744;
  vertical-align: top;
  padding-top: 28px;
}
@media screen and (max-width: 767px) {
  .contact-form__table th {
    width: 100%;
    padding-bottom: 0;
    font-size: 0.8125rem;
  }
}
.contact-form__label {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  color: #333;
  margin-bottom: 8px;
}
.contact-form__required {
  display: inline-block;
  font-size: 0.6875rem;
  background-color: #9a7b4b;
  color: #ffffff;
  padding: 2px 6px;
  margin-left: 8px;
  vertical-align: middle;
}
.contact-form__input, .contact-form__textarea, .contact-form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2ddd7;
  font-size: 1.125rem;
  color: #1a2744;
  background-color: #f7f6f4;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form__input:focus, .contact-form__textarea:focus, .contact-form__select:focus {
  border-color: #1a2744;
  background-color: #ffffff;
  outline: none;
}
.contact-form__textarea {
  height: 160px;
  resize: vertical;
}
.contact-form__privacy {
  margin-top: 40px;
  text-align: center;
  font-size: 0.875rem;
}
.contact-form__privacy a {
  color: #1a2744;
  text-decoration: underline;
}
.contact-form__submit {
  text-align: center;
  margin-top: 64px;
}
.contact-form__submit .btn {
  min-width: 240px;
  padding: 16px 48px;
}

.company {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.company__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .company__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.company__inner {
  max-width: 900px;
}
.company__table {
  width: 100%;
  border-top: 1px solid #e2ddd7;
}
.company__table tr {
  border-bottom: 1px solid #e2ddd7;
}
@media screen and (max-width: 767px) {
  .company__table tr {
    display: flex;
    flex-direction: column;
  }
}
.company__table th, .company__table td {
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .company__table th, .company__table td {
    padding: 16px 8px;
  }
}
.company__table th {
  width: 200px;
  background-color: #f7f6f4;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #718096;
}
@media screen and (max-width: 767px) {
  .company__table th {
    width: 100%;
    background: none;
    padding-bottom: 0;
    font-size: 0.8125rem;
  }
}
.company__table td {
  font-size: 0.9375rem;
  line-height: 1.9;
}
.company__map {
  margin-top: 64px;
  border-radius: 4px;
  overflow: hidden;
}
.company__map iframe {
  width: 100%;
  height: 400px;
  display: block;
}
@media screen and (max-width: 767px) {
  .company__map iframe {
    height: 280px;
  }
}

#page-loader {
  position: fixed;
  inset: 0;
  background-color: #ffffff;
  z-index: 9999;
  pointer-events: none;
}

.mv__feathers,
.mv__feathers-front,
.mv__photo,
.mv__catch,
.mv__sub,
.mv__scroll {
  opacity: 0;
}

.mv__photo {
  transform: translateY(60px);
}

.top-service__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .top-service__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-service__inner {
    padding: 0 20px;
  }
}
.top-service__card {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.top-service__card:nth-of-type(1) .top-service__card-title {
  font-size: clamp(1.4rem, 6vw, 2.6rem);
}
.top-service__card:nth-of-type(1) .top-service__card-text {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .top-service__card:nth-of-type(1) .top-service__card-text {
    font-size: 0.9375rem;
  }
}
.top-service__card:nth-of-type(1) .top-service__card-img {
  height: 415px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-service__card:nth-of-type(1) .top-service__card-img {
    height: 280px;
  }
}
.top-service__card:nth-of-type(2), .top-service__card:nth-of-type(3) {
  width: calc(50% - 12px);
}
@media screen and (max-width: 767px) {
  .top-service__card:nth-of-type(2), .top-service__card:nth-of-type(3) {
    width: 100%;
  }
}
.top-service__card-body {
  position: relative;
  background: #f8f7f3;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .top-service__card-body {
    padding: 35px 20px 20px 20px;
  }
}
.top-service__card-body::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  border-style: solid;
  border-width: 21px 21px 0 0;
  border-color: #1a2744 transparent transparent transparent;
}
.top-service__card-title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.4rem, 6vw, 1.9rem);
  color: #1a2744;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.top-service__card-text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #1a2744;
  margin-bottom: 40px;
}
.top-service__card-img {
  height: 315px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-service__card-img {
    height: 220px;
  }
}
.top-service__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.top-service__card:hover .top-service__card-img img {
  transform: scale(1.05);
}

.top-concept {
  padding: 100px 20px;
  background: linear-gradient(180deg, #c9bc9c 0%, #c9bc9c 50%, #f9f8f2 50%, #f9f8f2 100%);
}
@media screen and (max-width: 767px) {
  .top-concept {
    padding: 48px 20px;
  }
}
.top-concept__box {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
}
.top-concept__hero {
  position: relative;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-concept__hero {
    height: 160px;
  }
}
.top-concept__hero-bg {
  position: absolute;
  inset: 0;
}
.top-concept__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-concept__hero-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-concept__label {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: bold;
  font-size: clamp(1.4rem, 3.75vw, 2.25rem);
  text-shadow: 2px 2px 9px rgb(255, 255, 255);
  color: #1a2744;
  letter-spacing: 0.1em;
  opacity: 1;
  margin-bottom: 0;
  text-align: center;
}
.top-concept__body-wrap {
  padding: 56px 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-concept__body-wrap {
    padding: 40px 24px;
  }
}
.top-concept__inner {
  margin: 0 auto;
  display: block;
  padding: 0;
}
.top-concept__body {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 2.3;
  color: #4a5568;
  margin-bottom: 40px;
  text-align: center;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .top-concept__body {
    text-align: left;
    margin-bottom: 10px;
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .top-concept .btn.btn--navy {
    margin: 20px auto 0;
  }
}

.top-reason {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 200px) 0 100px;
  background: #f8f7f3;
}
@media screen and (max-width: 767px) {
  .top-reason {
    padding: 60px 0 60px;
  }
}
.top-reason__bg {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 480px;
  will-change: transform;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top-reason__bg {
    height: 600px;
  }
}
.top-reason__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}
.top-reason__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .top-reason__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.top-reason__inner {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.top-reason__title {
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5)); /* SafariなどのWebkitブラウザ用 */
  filter: drop-shadow(0px 3px 5px rgba(0, 0, 0, 0.5));
}
.top-reason__title-text {
  color: #ffffff;
}
.top-reason__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .top-reason__grid {
    grid-template-columns: 1fr;
  }
}

.reason-card {
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 10px 10px 0px #747887;
}
.reason-card__head {
  background: #1a2744;
  padding: 32px 32px 28px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reason-card__head {
    padding: 24px 24px 20px;
  }
}
.reason-card__head::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  border-style: solid;
  border-width: 21px 21px 0 0;
  border-color: #ffffff transparent transparent transparent;
}
.reason-card__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin: 0;
}
.reason-card__body {
  background: #ffffff;
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .reason-card__body {
    padding: 20px 20px 28px;
  }
}
.reason-card__list {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason-card__list {
    margin-bottom: 30PX;
  }
}
.reason-card__list li {
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: #1a2744;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 15px;
}
.reason-card__list li:last-child {
  margin-bottom: 0;
}
.reason-card__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #1a2744;
}
.reason-card .btn--navy {
  align-self: center;
}

.top-outdoor {
  position: relative;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  min-height: 280px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 10px 10px 0px #747887;
}
@media screen and (max-width: 767px) {
  .top-outdoor {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.top-outdoor__img {
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-outdoor__img {
    height: 220px;
    clip-path: none;
  }
}
.top-outdoor__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  object-position: right;
}
.top-outdoor__body {
  position: relative;
  z-index: 1;
  padding: 32px 40px 32px 48px;
}
@media screen and (max-width: 767px) {
  .top-outdoor__body {
    padding: 24px 20px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .top-outdoor__body p {
    text-align: left;
  }
}
.top-outdoor__text {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 2;
  color: #1a2744;
  margin-bottom: 64px;
  text-shadow: none;
}
@media screen and (max-width: 767px) {
  .top-outdoor__text {
    margin-bottom: 30PX;
  }
}
.top-outdoor__label {
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: bold;
  color: rgba(26, 39, 68, 0.08);
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .top-outdoor__label {
    font-size: 4rem;
    right: 0;
    bottom: 0;
  }
}

.top-reason {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top-reason {
    padding-bottom: 64px;
  }
}

.top-lineup {
  padding: 0;
  background: none;
  overflow: hidden;
}
.top-lineup--sale, .top-lineup--sualari {
  background: none;
}
.top-lineup__layout {
  display: grid;
  grid-template-columns: clamp(320px, 40vw, 600px) 1fr;
  min-height: clamp(320px, 40vw, 600px);
}
.top-lineup--reverse .top-lineup__layout {
  grid-template-columns: 1fr clamp(320px, 40vw, 600px);
}
@media (max-width: 1200px) {
  .top-lineup__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .top-lineup--reverse .top-lineup__layout {
    flex-direction: column-reverse;
    display: flex;
  }
}
.top-lineup__panel {
  position: relative;
  overflow: hidden;
  width: clamp(320px, 40vw, 600px);
  height: clamp(320px, 40vw, 600px);
}
@media (max-width: 1200px) {
  .top-lineup__panel {
    width: 100%;
    height: auto;
  }
}
.top-lineup__panel-bg {
  position: absolute;
  inset: 0;
}
.top-lineup__panel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-lineup__panel-bg::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.45);
}
.top-lineup__panel-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 40px 36px;
  color: #1a2744;
}
@media screen and (max-width: 767px) {
  .top-lineup__panel-body {
    padding: 32px 20px;
    min-height: 200px;
  }
}
.top-lineup__panel-label {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  letter-spacing: 0.15em;
  opacity: 0.8;
  margin-bottom: 10px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: bold;
  border-bottom: 1px solid #1a2744;
}
.top-lineup__panel-title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.4rem, 7vw, 1.9rem);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .top-lineup__panel-title {
    margin-bottom: 0;
  }
}
.top-lineup__panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: #ffffff;
  padding: 20px 20px;
  letter-spacing: 0.08em;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  /*&::after {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid $color-white;
    border-right: 1px solid $color-white;
    transform: rotate(45deg) translate(-1px, 1px);
  }*/
}
.top-lineup__panel-btn:hover {
  color: #1a1c2e;
  background-color: #ddd;
}
.top-lineup__slider-wrap {
  overflow: hidden;
  background: #f7f6f4;
  position: relative;
  padding: 30px 0;
}
.top-lineup--reverse .top-lineup__slider-wrap {
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .top-lineup__panel-btn {
    display: none !important;
  }
}
.top-lineup__sp-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-lineup__sp-btn {
    display: flex;
    justify-content: center;
    padding: 0 0 55px;
    background: #f7f6f4;
  }
}
@media screen and (max-width: 767px) {
  .top-lineup--reverse .top-lineup__sp-btn {
    background: #ffffff;
  }
}
.top-lineup__track {
  display: flex;
  gap: 30px;
  will-change: transform;
}

.lineup-card {
  flex-shrink: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  border: none;
  background: #ffffff;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-lineup--reverse .lineup-card {
  background: #f7f6f4;
}
.lineup-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}
.lineup-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.lineup-card__img {
  flex: none;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.lineup-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.lineup-card:hover .lineup-card__img img {
  transform: scale(1.05);
}
.lineup-card__body {
  padding: 14px 16px 20px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.lineup-card__tag {
  display: inline-block;
  font-size: 0.625rem;
  color: #9a7b4b;
  border: 1px solid #9a7b4b;
  padding: 2px 8px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.lineup-card__price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.lineup-card__price span {
  font-size: 0.6875rem;
  font-weight: 400;
}
.lineup-card__text {
  font-size: 1rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  line-height: 1.7;
  color: #1a2744;
  margin-bottom: 12px;
}
.lineup-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a2744;
  margin-left: auto;
  margin-top: auto;
}
.lineup-card__arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(45deg) translate(-1px, 1px);
}

.footer {
  background: #1a2744;
}
.footer__cta {
  background: #1a2744;
  padding: 100px 32px 40px;
  margin: 0 0 8px;
}
@media screen and (max-width: 767px) {
  .footer__cta {
    padding: 24px 20px;
  }
}
.footer__cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 4px;
  display: grid;
  grid-template-columns: auto 1px auto 1px auto;
  align-items: center;
  min-height: 120px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .footer__cta-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1px auto 1px auto;
  }
}
.footer__cta-divider {
  width: 1px;
  height: 80px;
  background: #e2ddd7;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .footer__cta-divider {
    width: 100%;
    height: 1px;
  }
}
.footer__cta-tel {
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .footer__cta-tel {
    padding: 24px 20px;
  }
}
.footer__cta-tel-svg img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.footer__cta-hours-svg img {
  height: 32px;
  width: auto;
  display: block;
}
.footer__cta-contact {
  padding: 24px 20px;
  text-align: center;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .footer__cta-contact {
    padding: 24px 20px;
  }
}
.footer__cta-contact-label {
  font-size: 0.875rem;
  color: #4a5568;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.footer__cta-contact-btn {
  display: block;
  gap: 12px;
  background: #e8622a;
  color: #ffffff;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  padding: 14px 24px;
  border-radius: 2px;
  min-width: 280px;
  text-decoration: none;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
}
.footer__cta-contact-btn:hover {
  background: #cf5220;
}
@media screen and (max-width: 767px) {
  .footer__cta-contact-btn {
    min-width: unset;
    width: 100%;
    padding: 20px 10px;
  }
}
.footer__cta-contact-btn-arrow {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}
.footer__cta-contact-btn-arrow::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #e8622a;
  border-right: 1px solid #e8622a;
  transform: rotate(45deg) translate(-1px, 1px);
}
.footer__cta-banner {
  padding: 14px 24px;
  align-self: stretch;
  overflow: hidden;
}
.footer__cta-banner a {
  display: block;
  height: 100%;
}
.footer__cta-banner img {
  width: auto;
  display: block;
  max-width: 375px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__cta-banner img {
    width: 100%;
    min-width: unset;
  }
}
.footer__main {
  display: block;
  padding: 48px 40px;
}
@media screen and (max-width: 767px) {
  .footer__main {
    padding: 40px 20px;
  }
}
.footer__main-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .footer__main-inner {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__main-logo {
  display: block;
  margin-bottom: 24px;
}
.footer__main-logo img {
  height: 38px;
  width: auto;
  /* filter: brightness(0) invert(1); */
}
.footer__main-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__main-address p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.footer__main-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .footer__main-nav {
    text-align: left;
  }
}
.footer__main-nav-row {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__main-nav-row {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
  }
}
.footer__main-nav a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__main-nav a:hover {
  color: #ffffff;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__bottom-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .footer__bottom-inner {
    padding: 16px 20px;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
.footer__bottom-sub {
  display: flex;
  gap: 24px;
}
.footer__bottom-sub a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.04em;
}
.footer__bottom-sub a:hover {
  color: #ffffff;
}
.footer__bottom-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.04em;
}

.page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 44px;
  height: 44px;
  background-color: #9a7b4b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  border: none;
}
@media screen and (max-width: 767px) {
  .page-top {
    bottom: 80px;
    right: 24px;
    width: 28px;
    height: 28px;
  }
}
.page-top.is-show {
  opacity: 1;
  visibility: visible;
  width: 64px;
  height: 64px;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .page-top.is-show {
    width: 46px;
    height: 46px;
    right: 15px;
  }
}
.page-top:hover {
  background-color: #b4a98c;
  transform: translateY(-4px);
}
.page-top__icon {
  width: 10px;
  height: 10px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(-45deg) translate(-1px, 1px);
}

.sub-hero {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}
.sub-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.sub-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
}
.sub-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: 165px;
  padding-bottom: 52px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sub-hero__inner {
    padding-top: 100px;
    padding-bottom: 36px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sub-hero__text {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.sub-hero__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding-bottom: 0.7em;
  margin-bottom: 0.8em;
  border-bottom: 1px solid #9a7b4b;
}
.sub-hero__desc {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 2;
}
.sub-hero__en {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 600;
  color: rgba(154, 123, 75, 0.1);
  letter-spacing: 0.04em;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .sub-hero__en {
    font-size: 4.5rem;
    right: 0;
    left: 0;
    bottom: 0;
  }
}
.sub-hero__tabs {
  position: relative;
  z-index: 2;
  display: flex;
  background: #1a2744;
}
@media screen and (max-width: 767px) {
  .sub-hero__tabs {
    flex-wrap: wrap;
  }
}
.sub-hero__tab {
  flex: 1;
  display: block;
  padding: 16px 12px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  background: transparent;
  border-bottom: 3px solid transparent;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sub-hero__tab {
    flex: 0 0 50%;
    font-size: 0.75rem;
    padding: 13px 8px;
  }
}
.sub-hero__tab:hover, .sub-hero__tab.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-color: #9a7b4b;
}

.c-tabs__nav {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid #e2ddd7;
}
@media screen and (max-width: 767px) {
  .c-tabs__nav {
    flex-wrap: wrap;
  }
}
.c-tabs__btn {
  flex: 1;
  padding: 14px 20px;
  background: #ffffff;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4a5568;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-tabs__btn {
    flex: 1;
    font-size: 0.8125rem;
    padding: 12px 8px;
  }
}
.c-tabs__btn:hover {
  color: #1a2744;
}
.c-tabs__btn.is-active {
  color: #1a2744;
  border-bottom-color: #9a7b4b;
}
.c-tabs__panel {
  display: none;
}
.c-tabs__panel.is-active {
  display: block;
}
.c-tabs--video .c-tabs__nav {
  max-width: 1064px;
  margin: 0 auto 40px;
  border-bottom: none;
  gap: 2px;
}
.c-tabs--video .c-tabs__btn {
  position: relative;
  padding: 16px 24px;
  background: #ababab;
  color: #ffffff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.625rem);
  font-weight: 400;
  border: none;
  border-bottom: none;
  margin-bottom: 0;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .c-tabs--video .c-tabs__btn {
    font-size: 0.8125rem;
    padding: 14px 12px;
  }
}
.c-tabs--video .c-tabs__btn:hover {
  background: rgba(26, 39, 68, 0.7);
  color: #ffffff;
}
.c-tabs--video .c-tabs__btn.is-active {
  background: #1a2744;
  color: #ffffff;
  border-bottom: none;
}
.c-tabs--video .c-tabs__btn.is-active::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 11px 16px 0 16px;
  border-color: #1a2744 transparent transparent transparent;
  z-index: 1;
}
.c-tabs--video .c-tabs__body {
  max-width: 1064px;
  margin: 0 auto;
  background: #1a2744;
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .c-tabs--video .c-tabs__body {
    padding: 16px;
  }
}
.c-tabs--price .c-tabs__nav {
  max-width: none;
  margin-bottom: 40px;
}
.c-tabs--price .c-tabs__btn {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .c-tabs--price .c-tabs__btn {
    font-size: 0.875rem;
  }
}

.reform-pagenav {
  position: sticky;
  top: 69px;
  z-index: 99;
  background: #d8d1c0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .reform-pagenav {
    top: 64px;
    flex-wrap: wrap;
  }
}
.reform-pagenav__toggle {
  display: none;
}
@media screen and (max-width: 767px) {
  .reform-pagenav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
  }
  .reform-pagenav__toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-top: -4px;
  }
  .reform-pagenav__toggle[aria-expanded=true]::after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }
}
@media screen and (max-width: 767px) {
  .reform-pagenav:not(.is-open) .reform-pagenav__item {
    display: none;
  }
  .reform-pagenav.is-open .reform-pagenav__item {
    display: flex;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.reform-pagenav__item {
  position: relative;
  max-width: 242px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 12px 34px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  border-right: 1px solid rgba(26, 39, 68, 0.12);
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid rgba(26, 39, 68, 0.12);
}
@media screen and (max-width: 767px) {
  .reform-pagenav__item {
    flex: 0 0 50%;
    font-size: 1rem;
    padding: 14px 8px 10px;
    background: #d7d7d7;
    border-left: none;
  }
  .reform-pagenav__item:first-child {
    border-left: none;
  }
  .reform-pagenav__item:nth-child(2) {
    border-right: none;
  }
  .reform-pagenav__item:nth-child(3) {
    border-top: 1px solid rgba(26, 39, 68, 0.12);
  }
  .reform-pagenav__item:nth-child(4) {
    border-top: 1px solid rgba(26, 39, 68, 0.12);
    border-right: none;
  }
  .reform-pagenav__item:last-child {
    border-top: 1px solid rgba(26, 39, 68, 0.12);
  }
}
.reform-pagenav__item::after {
  content: "";
  width: 12.63px;
  height: 22px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  margin: auto;
  background: url(../images/common/btn-arrow-bottom.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .reform-pagenav__item::after {
    content: none;
  }
}
.reform-pagenav__item:hover {
  background: rgba(26, 39, 68, 0.08);
}

.reform-video {
  padding: 64px 0;
  background: #f7f6f4;
}
@media screen and (max-width: 767px) {
  .reform-video {
    padding: 40px 0;
  }
}
.reform-video__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .reform-video__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reform-video__player {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: #1a2744;
  border-radius: 4px;
  overflow: hidden;
}
.reform-video__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.yt-facade {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.yt-facade__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}
.yt-facade:hover .yt-facade__thumb {
  opacity: 0.85;
}
.yt-facade__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.88);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.yt-facade__btn:hover {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.1);
}
.yt-facade__icon {
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 20px;
  border-color: transparent transparent transparent #fff;
}

.reform-video__placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 39, 68, 0.6);
}
.reform-video__play-icon {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  position: relative;
}
.reform-video__play-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #ffffff;
}

.reform-trouble {
  background: url(../images/reform/reform-trouble-bg.png) no-repeat center top/cover;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .reform-trouble {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.reform-trouble__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .reform-trouble__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reform-trouble__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a2744;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.08em;
}
.reform-trouble__texr {
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.9;
  color: #1a2744;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .reform-trouble__texr {
    margin-bottom: 60px;
  }
}
.reform-trouble__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .reform-trouble__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 0;
  }
}
.reform-trouble__card {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.reform-trouble__card-img {
  position: relative;
  aspect-ratio: 4/3;
}
.reform-trouble__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.reform-trouble__card-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  min-width: 282px;
  max-width: 320px;
  background: #1a2744;
  color: #ffffff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.6;
  padding: 12px 20px;
  letter-spacing: 0.04em;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}
.reform-trouble__card-text {
  padding: 24px 0;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  line-height: 2;
  color: #1a2744;
  flex: 1;
}
.reform-trouble__lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .reform-trouble__lead {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.reform-trouble__lead > div > p {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.375rem, 3vw, 2.25rem);
  line-height: 1.9;
  color: #1a2744;
}
.reform-trouble__lead-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.reform-trouble__lead-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.reform-trouble__cta {
  margin-top: 24px;
  padding: 24px;
  background: #f7f6f4;
  border-radius: 4px;
  text-align: center;
  font-size: 0.9375rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #4a5568;
}

.reform-lead {
  background: url(../images/reform/reform-trouble-arrow.png) #f8f8f8 no-repeat center top/100% auto;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .reform-lead {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.reform-lead__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .reform-lead__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.reform-feature {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .reform-feature {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.reform-feature {
  background: #ffffff;
}
.reform-feature__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .reform-feature__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reform-feature__heading {
  text-align: left;
  margin-bottom: 64px;
}
.reform-feature__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.reform-feature__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #9a7b4b;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.reform-feature__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}
.reform-feature__item {
  display: grid;
  grid-template-columns: 1fr 440px;
  align-items: stretch;
  background: #efefef;
  border-radius: 4px;
  overflow: hidden;
  border-left: 8px solid #1a2744;
}
@media screen and (max-width: 767px) {
  .reform-feature__item {
    grid-template-columns: 1fr;
  }
}
.reform-feature__item-img {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .reform-feature__item-img {
    aspect-ratio: 16/9;
  }
}
.reform-feature__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.reform-feature__item-body {
  padding: 64px 64px;
}
@media screen and (max-width: 767px) {
  .reform-feature__item-body {
    padding: 24px 20px;
  }
}
.reform-feature__item-label {
  display: inline-block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1em;
  background: #b4a98c;
  border: none;
  padding: 4px 12px;
  margin-bottom: 24px;
}
.reform-feature__item-title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 600;
  color: #1a2744;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2ddd7;
}
.reform-feature__item-text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #4a5568;
  margin-top: 24px;
}

.reform-cta-banner {
  padding: 64px 0;
  background: #1a2744;
  text-align: center;
}
.reform-cta-banner__btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 1rem;
  font-weight: 700;
}

.reform-ba {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .reform-ba {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .reform-ba {
    padding-bottom: 0;
  }
}
.reform-ba__ttl {
  position: relative;
  background: url(../images/reform/reform-ba-ttl-bg.png) #25273e no-repeat center top/cover;
  padding: 100px 20px;
}
@media screen and (max-width: 767px) {
  .reform-ba__ttl {
    padding: 64px 20px;
  }
}
.reform-ba__ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 42px;
  background: url(../images/reform/reform-ba-ttl-arrow.png) no-repeat center top/100% 42px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .reform-ba__ttl::before {
    height: 26px;
    background-size: cover;
  }
}
.reform-ba__ttl img {
  margin: 0 auto;
}
.reform-ba .sky-bg {
  padding-top: 64px;
  padding-bottom: 64px;
  background: url(../images/common/sky.jpg) no-repeat center top/cover;
}
@media screen and (max-width: 767px) {
  .reform-ba .sky-bg {
    padding-top: 64px;
    padding-bottom: 24px;
  }
}
.reform-ba__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .reform-ba__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reform-ba__inner h2, .reform-ba__inner h3, .reform-ba__inner h4 {
  margin: 0 0 24px;
}
.reform-ba__inner h2 {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  background: #1a2744;
  padding: 18px 24px;
  line-height: 1.4;
}
.reform-ba__inner h3 {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  color: #1a2744;
  background: #ffffff;
  border-left: 5px solid #1a2744;
  padding: 14px 20px;
}
.reform-ba__inner h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2744;
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.4em;
  margin-top: 40px;
}
.reform-ba__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a2744;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.08em;
}
.reform-ba__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .reform-ba__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.reform-ba__col {
  text-align: center;
}
.reform-ba__img {
  min-height: 517.55px;
  overflow: hidden;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .reform-ba__img {
    min-height: 240px;
  }
}
.reform-ba__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reform-ba__price .reform-ba__inner {
  padding-top: 64px;
}
@media screen and (max-width: 767px) {
  .reform-ba__price .reform-ba__inner {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

.reform-price {
  background: #f7f6f4;
  padding: 64px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .reform-price {
    padding: 24px 20px 60px;
  }
}
.reform-price__table-wrap {
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .reform-price__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px -20px 0;
    padding: 0 20px;
  }
  .reform-price__table-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 28px;
    background: linear-gradient(to right, rgba(247, 246, 244, 0), #f7f6f4);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .reform-price__table-wrap.is-scrolled::after {
    opacity: 0;
  }
}
.reform-price__table-scroll-hint {
  display: none;
}
@media screen and (max-width: 767px) {
  .reform-price__table-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #1a2744;
    opacity: 0.6;
    margin-top: 16px;
    margin-bottom: 0;
  }
  .reform-price__table-scroll-hint::before, .reform-price__table-scroll-hint::after {
    content: "";
    width: 14px;
    height: 14px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
  }
  .reform-price__table-scroll-hint::before {
    transform: rotate(-135deg);
  }
  .reform-price__table-scroll-hint::after {
    transform: rotate(45deg);
  }
}
.reform-price__table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
@media screen and (max-width: 767px) {
  .reform-price__table {
    width: max-content;
    min-width: 100%;
  }
}
.reform-price__table th, .reform-price__table td {
  padding: 14px 16px;
  text-align: center;
  border: 1px solid #e2ddd7;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .reform-price__table th, .reform-price__table td {
    padding: 10px 5px;
  }
}
.reform-price__table th {
  background: #1a2744;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.reform-price__table td {
  background: #ffffff;
  color: #1a2744;
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.reform-price__table tbody tr:nth-child(odd) td {
  background: #faf9f7;
}
.reform-price__table tbody tr:nth-child(even) td {
  background: #ffffff;
}
.reform-price td.sub-note {
  text-align: left;
}
.reform-price__table-imgs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.reform-price__table-imgs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .reform-price__table-imgs {
    gap: 4px;
  }
  .reform-price__table-imgs img {
    width: 40px;
    height: 40px;
  }
}
.reform-price__table-remark-text {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: #1a2744;
  line-height: 1.5;
}
.reform-price td.reform-price__table-fabric {
  background: #ffffff;
  padding: 12px 10px;
  text-align: center;
}
.reform-price td.reform-price__table-fabric img {
  display: block;
  width: 100px;
  object-fit: initial;
  border-radius: 4px;
  margin: 0 auto 6px;
}
.reform-price td.reform-price__table-fabric span {
  display: block;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .reform-price td.reform-price__table-fabric img {
    width: 64px;
    height: auto;
  }
}
.reform-price td.reform-price__table-buy {
  background: #ffffff;
  padding: 10px 8px;
}
.reform-price__table-buy-btn {
  display: inline-block;
  padding: 10px 16px;
  background-color: #e8622a;
  color: #ffffff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.reform-price__table-buy-btn:hover {
  background-color: #cf5220;
}
@media screen and (max-width: 767px) {
  .reform-price__table-buy-btn {
    padding: 6px 10px;
    font-size: 0.85rem;
  }
}
.reform-price__cta {
  background: #e2ddd7;
  padding: 64px 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reform-price__cta {
    padding: 24px 20px;
  }
}
.reform-price__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 18px 24px 18px 24px;
  background-color: #e8622a;
  color: #ffffff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.reform-price__cta-btn:hover {
  background-color: #cf5220;
}
@media screen and (max-width: 767px) {
  .reform-price__cta-btn {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.reform-price__cta-arrow {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  background: #ffffff;
}
.reform-price__cta-arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #e8622a;
  border-right: 1px solid #e8622a;
  transform: rotate(45deg) translate(-1px, 1px);
}

.tel-banner {
  background: #e1dbcc;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .tel-banner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .tel-banner {
    padding: 20px;
  }
}
.tel-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tel-banner__inner {
    grid-template-columns: 1fr;
  }
}
.tel-banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .tel-banner__content {
    gap: 10px;
    margin-bottom: 30px;
  }
}
.tel-banner__text {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.675rem);
  color: #1a2744;
  line-height: 1.8;
}
.tel-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 526px;
  padding: 16px 28px;
  background: #1a2744;
  color: #ffffff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(0.9375rem, 1.5vw, 1.625rem);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.tel-banner__btn:hover {
  background: #111c33;
}
@media screen and (max-width: 767px) {
  .tel-banner__btn {
    font-size: 1rem;
    padding: 24px 20px;
  }
}
.tel-banner__btn-icon {
  width: auto;
  height: 22px;
  flex-shrink: 0;
  transform: rotate(17deg);
}
@media screen and (max-width: 767px) {
  .tel-banner__btn-icon {
    height: 20px;
  }
}
.tel-banner__hours {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  color: #1a2744;
  letter-spacing: 0.04em;
}
.tel-banner__img {
  max-width: 556.23px;
  width: 100%;
  margin-left: auto;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .tel-banner__img {
    max-width: none;
    margin-left: 0;
  }
}
.tel-banner__img img {
  width: 100%;
  height: auto;
  display: block;
}

.kid-movie {
  margin-top: 40px;
}
.kid-movie h3 {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.4rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.6;
  padding: 20px 15px;
  background: #1a2744;
}
@media screen and (max-width: 767px) {
  .kid-movie h3 {
    font-size: 1rem;
  }
}
.kid-movie__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a2744;
  border-radius: 4px;
}
.kid-movie__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.reform-flow {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .reform-flow {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.reform-flow__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .reform-flow__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reform-flow__heading {
  text-align: left;
  margin-bottom: 64px;
}
.reform-flow__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.reform-flow__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #9a7b4b;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.reform-flow__list {
  list-style: none;
}
.reform-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 70px 50px;
  background: #efefef;
  margin-bottom: 64px;
}
.reform-flow__item:nth-child(even) .reform-flow__img,
.reform-flow__item:nth-child(even) .reform-flow__imgs {
  order: 2;
}
.reform-flow__item:nth-child(even) .reform-flow__content {
  order: 1;
}
.reform-flow__item--wide {
  display: block;
}
.reform-flow__item--wide .reform-flow__step {
  position: absolute;
}
@media screen and (max-width: 767px) {
  .reform-flow__item {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }
}
.reform-flow__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 40px;
}
.reform-flow__row--reverse {
  direction: rtl;
}
.reform-flow__row--reverse > * {
  direction: ltr;
}
@media screen and (max-width: 767px) {
  .reform-flow__row {
    grid-template-columns: 1fr;
  }
  .reform-flow__row--reverse {
    direction: ltr;
  }
}
.reform-flow__imgs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.reform-flow__img img {
  width: 100%;
  display: block;
}
.reform-flow__step {
  position: absolute;
  top: -2rem;
  left: 50px;
  background: #2e324d;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.5rem 1.6rem;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
@media screen and (max-width: 767px) {
  .reform-flow__step {
    left: 20px;
    font-size: 0.875rem;
  }
}
.reform-flow__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #9a7b4b;
}
.reform-flow__text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}
.reform-flow__box {
  background: #fff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #333;
}
.reform-flow__note {
  font-size: 0.9rem;
  margin-top: 20px;
}
.reform-flow__box-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e2ddd7;
}
.reform-flow__box-item:first-child {
  padding-top: 0;
}
.reform-flow__box-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.reform-flow__box-dt {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 0.6em;
}
.reform-flow__box-dd ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reform-flow__box-dd ul li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333;
  padding-left: 1.2em;
  position: relative;
}
.reform-flow__box-dd ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 0.5em;
  top: 0.5em;
  color: #9a7b4b;
}

.reform-voice {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .reform-voice {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.reform-voice {
  background: linear-gradient(to bottom, #f8f7f3 50%, #fff 50%);
}
.reform-voice__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .reform-voice__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reform-voice__heading {
  text-align: left;
  margin-bottom: 64px;
}
.reform-voice__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.reform-voice__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #9a7b4b;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.reform-voice__list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin-top: 64px;
}
.reform-voice__card {
  background: #ffffff;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  box-shadow: 20px 20px 0 #E9E9E9;
  border: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .reform-voice__card {
    padding-left: 20px;
    padding-right: 20px;
    gap: 24px;
    flex-direction: column;
  }
}
.reform-voice__card-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .reform-voice__card-side {
    margin: 0 auto;
  }
}
.reform-voice__card-icon {
  width: 84px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.reform-voice__card-from {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #718096;
  text-align: center;
  white-space: nowrap;
}
.reform-voice__card-text {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 2;
  color: #1a2744;
  flex: 1;
}

.sale-intro {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sale-intro {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sale-intro {
  background: url(../images/shopitem/intro-bg.jpg) no-repeat center top/cover;
}
.sale-intro__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sale-intro__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sale-intro__inner {
  text-align: center;
}
.sale-intro__heading {
  margin-bottom: 64px;
}
.sale-intro__heading-sub {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #9a7b4b;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.sale-intro__heading-title {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.1em;
}
.sale-intro__lead {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 2;
  color: #4a5568;
}

.sale-features {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sale-features {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sale-features {
  background: #f7f6f4;
}

.sale-feature {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sale-feature {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sale-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .sale-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.sale-feature:last-child {
  margin-bottom: 0;
}
.sale-feature:nth-child(even) .sale-feature__img {
  order: 2;
}
@media screen and (max-width: 767px) {
  .sale-feature:nth-child(even) .sale-feature__img {
    order: 0;
  }
}
.sale-feature:nth-child(even) .sale-feature__body {
  order: 1;
}
@media screen and (max-width: 767px) {
  .sale-feature:nth-child(even) .sale-feature__body {
    order: 0;
  }
}
.sale-feature__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.sale-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sale-feature__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a2744;
  line-height: 1.5;
  margin-bottom: 16px;
}
.sale-feature__text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #4a5568;
}

.sale-products {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sale-products {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sale-products {
  background: #f5f5f5;
}
.sale-products__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sale-products__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sale-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 64px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .sale-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .sale-products__grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}

.sale-product-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 39, 68, 0.06);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sale-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(26, 39, 68, 0.12);
}
.sale-product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.sale-product-card__img {
  aspect-ratio: 1/0.68;
  overflow: hidden;
}
.sale-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sale-product-card__link:hover .sale-product-card__img img {
  transform: scale(1.04);
}
.sale-product-card__body {
  padding: 16px 24px;
}
.sale-product-card__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 6px;
  line-height: 1.6;
}
.sale-product-card__price {
  font-size: 1.125rem;
  font-weight: 600;
}
.sale-product-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a2744;
  margin-left: auto;
}
.sale-product-card__arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(45deg) translate(-1px, 1px);
}

.sale-tel-banner {
  background: #f7f6f4;
  padding: 64px 0;
  border-top: 1px solid #e2ddd7;
  border-bottom: 1px solid #e2ddd7;
}
.sale-tel-banner__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sale-tel-banner__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sale-tel-banner__inner {
  text-align: center;
}
.sale-tel-banner__text {
  font-size: 1rem;
  color: #1a2744;
  margin-bottom: 24px;
  font-weight: 500;
}
.sale-tel-banner__hours {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: #718096;
}
.sale-tel-banner__logo {
  margin-top: 24px;
}
.sale-tel-banner__logo img {
  max-width: 180px;
  height: auto;
}

.sale-voice {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sale-voice {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sale-voice__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sale-voice__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sale-voice__heading {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: #1a2744;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 0.2em;
}
.sale-voice__heading span {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #9a7b4b;
  margin-top: 4px;
}
.sale-voice__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .sale-voice__list {
    grid-template-columns: 1fr;
  }
}
.sale-voice__card {
  background: #f7f6f4;
  border-radius: 4px;
  padding: 40px;
}
.sale-voice__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a2744;
  margin-bottom: 16px;
}
.sale-voice__card-text {
  font-size: 0.9375rem;
  line-height: 2;
  color: #1a2744;
  margin-bottom: 16px;
}
.sale-voice__card-name {
  font-size: 0.8125rem;
  color: #718096;
  text-align: right;
}

.sualari-intro {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sualari-intro {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sualari-intro {
  background: url(../images/remake/intro-bg.jpg) no-repeat center bottom/cover;
}
.sualari-intro__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sualari-intro__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sualari-intro__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a2744;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.08em;
}
.sualari-intro__text {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #fff;
  text-align: center;
  line-height: 1.9;
  margin-bottom: 80px;
}
.sualari-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .sualari-intro__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.sualari-intro__card {
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.sualari-intro__card-img {
  position: relative;
  aspect-ratio: 4/3;
}
.sualari-intro__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.sualari-intro__card-text {
  padding: 24px 0;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  line-height: 2;
  color: #fff;
  flex: 1;
}

.sualari-remake {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sualari-remake {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sualari-remake {
  background: #f8f8f8;
  overflow: hidden;
}
.sualari-remake__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sualari-remake__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sualari-remake__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sualari-remake__inner {
    grid-template-columns: 1fr;
  }
}
.sualari-remake__text {
  color: #1a2744;
}
.sualari-remake__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.sualari-remake__img {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sualari-remake__img {
    display: none;
  }
}
.sualari-remake__img img {
  width: 100%;
  height: auto;
  display: block;
}
.sualari-remake__img-sp {
  display: none;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .sualari-remake__img-sp {
    display: block;
  }
  .sualari-remake__img-sp img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.sualari-feature {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sualari-feature {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sualari-feature__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sualari-feature__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sualari-feature__heading {
  text-align: left;
  margin-bottom: 64px;
}
.sualari-feature__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.sualari-feature__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #9a7b4b;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.sualari-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .sualari-feature__grid {
    grid-template-columns: 1fr;
  }
}
.sualari-feature__item {
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  overflow: hidden;
}
.sualari-feature__item-img img {
  width: 100%;
  height: auto;
  display: block;
}
.sualari-feature__item-body {
  padding: 24px;
}
.sualari-feature__item-title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2744;
  line-height: 1.6;
}
.sualari-feature__btn dl {
  padding: 60px 50px;
  background: #F8F7F3;
}
@media screen and (max-width: 767px) {
  .sualari-feature__btn dl {
    padding: 30px 20px;
  }
}
.sualari-feature__btn dl dt, .sualari-feature__btn dl dd {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.sualari-feature__btn dl dt {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  font-size: clamp(1rem, 2vw, 1.375rem);
  overflow: hidden;
}
.sualari-feature__btn dl dt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30%;
  margin: auto;
  width: 100%;
  height: 2px;
  background: #DDDDDD;
  z-index: -1;
}
.sualari-feature__cta {
  background: #1a2744;
  padding: 64px 24px;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .sualari-feature__cta {
    padding: 24px 20px;
  }
}
.sualari-feature__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: 18px 56px 18px 24px;
  background-color: #e8622a;
  color: #ffffff;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  border-radius: 2px;
  text-decoration: none;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sualari-feature__cta-btn:hover {
  background-color: #cf5220;
}
@media screen and (max-width: 767px) {
  .sualari-feature__cta-btn {
    font-size: 1rem;
  }
}
.sualari-feature__cta-arrow {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  background: #ffffff;
}
.sualari-feature__cta-arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #e8622a;
  border-right: 1px solid #e8622a;
  transform: rotate(45deg) translate(-1px, 1px);
}

.sualari-cta-banner {
  padding: 64px 0;
  background: #1a2744;
  text-align: center;
}
.sualari-cta-banner__btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 1rem;
  font-weight: 700;
}

.sualari-material {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sualari-material {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sualari-material {
  background: url(../images/remake/material-bg.jpg) no-repeat center top/100% auto;
}
.sualari-material__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sualari-material__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sualari-material__label {
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.sualari-material__label p {
  color: #ffffff;
  font-size: 1.5rem;
  display: inline-block;
  line-height: 1;
  padding: 13px 20px;
  background: #1a2744;
  margin-bottom: 20px;
}
.sualari-material__intro {
  text-align: center;
  margin-bottom: 64px;
}
.sualari-material__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #1a2744;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-align: center;
}
.sualari-material__text {
  text-align: center;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.9;
  color: #1a2744;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .sualari-material__text {
    margin-bottom: 60px;
  }
}
.sualari-material__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .sualari-material__grid {
    grid-template-columns: 1fr;
  }
}
.sualari-material__item {
  padding: 40px;
  background: #f7f6f4;
  border-radius: 4px;
  text-align: center;
}
.sualari-material__item-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
}
.sualari-material__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sualari-material__item-title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 8px;
}
.sualari-material__item-text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #4a5568;
  padding: 20px;
  background-color: #ffffff;
}

.sualari-flow {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .sualari-flow {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.sualari-flow {
  background: linear-gradient(to bottom, #f8f7f3 50%, #fff 50%);
}
.sualari-flow__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .sualari-flow__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sualari-flow__heading {
  text-align: left;
  margin-bottom: 64px;
}
.sualari-flow__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.sualari-flow__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #9a7b4b;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.sualari-flow__list {
  list-style: none;
  padding: 0;
}
.sualari-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding: 70px 50px;
  background: #efefef;
  margin-bottom: 64px;
}
.sualari-flow__item--no-img {
  grid-template-columns: 1fr;
}
.sualari-flow__item--no-img .sualari-flow__content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sualari-flow__item {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
  }
}
.sualari-flow__img img {
  width: 100%;
  display: block;
}
.sualari-flow__step {
  position: absolute;
  top: -2rem;
  left: 50px;
  background: #2e324d;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.5rem 1.6rem;
  letter-spacing: 0.1em;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
@media screen and (max-width: 767px) {
  .sualari-flow__step {
    left: 20px;
    font-size: 0.875rem;
  }
}
.sualari-flow__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #9a7b4b;
}
.sualari-flow__text {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1rem;
}
.sualari-flow__note {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 0.75rem;
}
.sualari-flow__box {
  background: #fff;
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.8;
}

.voice-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .voice-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.voice-section {
  background: #f5f5f5;
}
.voice-section__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .voice-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.voice-section__inner {
  background: #ffffff;
  padding-top: 64px;
  padding-bottom: 64px;
}

.voice-block {
  padding: 64px 0;
}
.voice-block:last-child {
  border-bottom: none;
}
.voice-block__from {
  font-size: 1.625rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #1a2744;
  text-align: center;
  letter-spacing: 0.06em;
  padding: 24px 0;
  margin-bottom: 40px;
  border-top: 1px solid #1a2744;
  border-bottom: 1px solid #1a2744;
}
@media screen and (max-width: 767px) {
  .voice-block__from {
    font-size: 1.125rem;
  }
}
.voice-block__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .voice-block__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.voice-block__img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .voice-block__img {
    aspect-ratio: 16/9;
  }
}
.voice-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.voice-block__qa {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.voice-qa {
  counter-reset: qa-counter;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.voice-qa__item {
  counter-increment: qa-counter;
}
.voice-qa__q {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  position: relative;
  display: block;
  background: #f7f6f4;
  padding: 12px 16px 12px 68px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #1a2744;
  font-size: clamp(1rem, 2vw, 1.375rem);
  line-height: 1.6;
}
.voice-qa__q-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52px;
  background: #1a2744;
  color: #ffffff;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}
.voice-qa__q-icon::after {
  content: counter(qa-counter);
}
.voice-qa__a {
  font-weight: 500;
  line-height: 2;
  color: #4a5568;
  padding-left: 4px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .voice-qa__a {
    font-size: 1rem;
  }
}

.faq-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .faq-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.faq-section {
  background: #efefef;
}
@media screen and (max-width: 767px) {
  .faq-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.faq-section__inner {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 50px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .faq-section__inner {
    padding: 40px 20px;
  }
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #e2ddd7;
}
.faq-item:first-child {
  border-top: 1px solid #e2ddd7;
}
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .faq-item__q {
    padding: 20px 0;
    gap: 16px;
  }
}
.faq-item__q:hover {
  opacity: 0.7;
}
.faq-item__q-text {
  flex: 1;
  font-size: 1.625rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-weight: 500;
  color: #1a2744;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .faq-item__q-text {
    font-size: 1.0625rem;
  }
}
.faq-item__q-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: #3c3c3c;
  position: relative;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .faq-item__q-icon {
    width: 36px;
    height: 36px;
  }
}
.faq-item__q-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #ffffff;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .faq-item__q-icon::before {
    width: 12px;
  }
}
.faq-item__q-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 14px;
  background: #ffffff;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .faq-item__q-icon::after {
    height: 12px;
  }
}
.faq-item__q.is-open .faq-item__q-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item__a {
  display: none;
}
.faq-item__a-inner {
  background: #f7f6f4;
  padding: 40px 64px;
  margin-bottom: 40px;
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #4a5568;
}
@media screen and (max-width: 767px) {
  .faq-item__a-inner {
    padding: 24px 20px;
    margin-bottom: 24px;
  }
}
.faq-item__a-inner p {
  margin: 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .faq-item__a-inner p {
    font-size: 1rem;
  }
}

.company-features {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company-features {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.company-features {
  scroll-margin-top: 69px;
}
@media screen and (max-width: 767px) {
  .company-features {
    scroll-margin-top: 64px;
  }
}
.company-features {
  background: url("../images/company/top-bg.jpg") no-repeat center center/cover;
}
.company-features__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .company-features__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.company-features__layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .company-features__layout {
    display: flex;
    flex-direction: column-reverse;
    grid-template-columns: 1fr;
  }
}
.company-features__label {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #9a7b4b;
  text-transform: uppercase;
  margin-bottom: 0.5em;
}
.company-features__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin-bottom: 24px;
}
.company-features__lead {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 16px;
  line-height: 2.4;
  position: relative;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .company-features__lead {
    font-size: 0.9rem;
  }
}
.company-features__lead:before {
  content: "";
  position: absolute;
  left: 0;
  width: 40px;
  height: 1px;
  top: 18px;
  background: #1a2744;
}
.company-features__body {
  font-size: 0.9375rem;
  line-height: 2;
  color: #4a5568;
}
.company-features__diagram {
  text-align: center;
}
.company-features__diagram img {
  max-width: 100%;
  height: auto;
}

.company-message {
  padding-top: 100px;
  background: linear-gradient(to bottom, #efefef 50%, #fff 50%);
}
@media screen and (max-width: 767px) {
  .company-message {
    padding-bottom: 64px;
    background: #fff;
  }
}
.company-message__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .company-message__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.company-message__inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company-message__inner {
    padding-bottom: 60px;
  }
}
.company-message__heading {
  text-align: left;
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .company-message__heading {
    margin-bottom: 40px;
  }
}
.company-message__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.company-message__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #9a7b4b;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.company-message__layout {
  display: grid;
  grid-template-columns: 1fr 507px;
  gap: 90px;
  align-items: start;
}
@media screen and (max-width: 767px) {
  .company-message__layout {
    gap: 50px;
    grid-template-columns: 1fr;
  }
}
.company-message__text {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: #1a2744;
}
.company-message__col {
  display: flex;
  flex-direction: column;
}
.company-message__sign {
  margin-top: 24px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  color: #1a2744;
  text-align: left;
}
.company-message__photo {
  width: 100%;
  max-width: 507px;
  overflow: hidden;
  border-radius: 4px;
}
.company-message__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.company-staff {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company-staff {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.company-staff {
  background: #f8f7f3;
}
.company-staff__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .company-staff__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.company-staff__heading {
  text-align: left;
  margin-bottom: 64px;
}
.company-staff__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.company-staff__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #9a7b4b;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.company-staff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .company-staff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .company-staff__grid {
    grid-template-columns: 1fr;
  }
}
.company-staff__card {
  text-align: center;
  background: #ffffff;
  padding: 40px 24px;
  border-radius: 4px;
}
.company-staff__card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 16px;
  max-width: 180px;
}
.company-staff__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.company-staff__card-en {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #9a7b4b;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.company-staff__card-name {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 4px;
}
.company-staff__card-info {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 6px 16px;
  margin-top: 24px;
  text-align: left;
  font-size: 0.8125rem;
  color: #1a2744;
}
.company-staff__card-info dt {
  background: #b4a98c;
  color: #ffffff;
  padding: 4px 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  line-height: 1.7;
  text-align: center;
}
.company-staff__card-info dd {
  font-size: 0.8125rem;
  line-height: 1.7;
  padding: 4px 0;
}

.company-info {
  position: relative;
  overflow: hidden;
}
.company-info__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: 0;
}
.company-info__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .company-info__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.company-info__inner {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .company-info__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.company-info__heading {
  text-align: left;
  margin-bottom: 64px;
}
.company-info__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.company-info__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #ffffff;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.company-info__table-wrap {
  width: 1200px;
  max-width: 100%;
  background: #f8f8f8;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 70px) clamp(20px, 15vw, 200px);
}
@media screen and (max-width: 767px) {
  .company-info__table-wrap {
    padding: 30px 20px;
  }
}
.company-info__table {
  width: 100%;
  border-collapse: collapse;
}
.company-info__table th, .company-info__table td {
  padding: 20px;
  border: none;
  border-bottom: 1px solid #c5c5c5;
  vertical-align: top;
  line-height: 1.8;
  background: none;
  font-size: 1.125rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #25273e;
}
@media screen and (max-width: 767px) {
  .company-info__table th, .company-info__table td {
    padding: 12px;
    font-size: 1rem;
    display: block;
  }
}
.company-info__table th {
  width: 200px;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .company-info__table th {
    width: 100%;
    border: none;
    background: #e2ddd7;
  }
}
@media screen and (max-width: 767px) {
  .company-info__table td {
    border: none;
    width: 100%;
  }
}

.policy-section {
  background: #ffffff;
}
.policy-section--gray {
  background: #F5F5F5;
}
.policy-section__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .policy-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.policy-section__heading {
  text-align: left;
  margin-bottom: 64px;
}
.policy-section__heading-en {
  display: block;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2.5rem, 5vw, 3.875rem);
  font-weight: 600;
  color: #1a2744;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.policy-section__heading-ja {
  display: block;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: #9a7b4b;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.policy-body {
  margin: 0 auto;
}
.policy-body__block {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #e0ddd6;
}
.policy-body__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.policy-body__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid #9a7b4b;
}
.policy-body__text {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  line-height: 2;
  color: #444;
}
.policy-body__list {
  margin-top: 10px;
  padding-left: 1.5em;
  list-style: disc;
}
.policy-body__list li {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  line-height: 2;
  color: #444;
}

.contact-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.contact-section {
  background: #f7f6f4;
}
@media screen and (max-width: 767px) {
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contact-section__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .contact-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contact-section__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 50px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .contact-section__inner {
    padding: 40px 20px;
  }
}
.contact-section__note {
  margin-bottom: 40px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 0.9375rem;
  color: #4a5568;
  line-height: 2;
}
.contact-section__required-badge {
  display: inline-block;
  padding: 2px 8px;
  background: #B90000;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 4px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #e2ddd7;
}
@media screen and (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.contact-form__label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a2744;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.contact-form__badge {
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 2px;
}
.contact-form__badge--required {
  background: #B90000;
  color: #ffffff;
}
.contact-form__badge--optional {
  background: #f7f6f4;
  color: #718096;
  border: 1px solid #e2ddd7;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  color: #1a2744;
}
.contact-form__checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid #e2ddd7;
  border-radius: 0;
  background: #eee;
  cursor: pointer;
  position: relative;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form__checkbox input[type=checkbox]:checked {
  background: #1a2744;
  border-color: #1a2744;
}
.contact-form__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.contact-form__input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2ddd7;
  font-size: 0.9375rem;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #1a2744;
  background: #ffffff;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #eee;
}
.contact-form__input:focus {
  outline: none;
  border-color: #1a2744;
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}
.contact-form__input--short {
  max-width: 240px;
}
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2ddd7;
  font-size: 0.9375rem;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #1a2744;
  background: #ffffff;
  min-height: 180px;
  resize: vertical;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #eee;
}
.contact-form__textarea:focus {
  outline: none;
  border-color: #1a2744;
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}
.contact-form__submit {
  margin-top: 64px;
  text-align: center;
}

.contact-privacy {
  margin-top: 64px;
  padding-top: 64px;
}
.contact-privacy__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a2744;
  margin-bottom: 16px;
  border: 1px solid #e2ddd7;
  position: relative;
  padding: 10px 20px 10px 40px;
}
.contact-privacy__title:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  height: calc(100% - 20px);
  width: 7px;
  background: #111c33;
}
.contact-privacy__lead {
  font-size: 0.875rem;
  line-height: 2;
  color: #4a5568;
  margin-bottom: 24px;
}
.contact-privacy__box {
  border-radius: 4px;
}
.contact-privacy__box-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 16px;
  background: #f7f6f4;
  padding: 10px 20px;
}
.contact-privacy__list {
  list-style: none;
  padding: 0;
}
.contact-privacy__list li {
  font-size: 0.875rem;
  line-height: 1.9;
  color: #4a5568;
  padding-left: 1em;
  position: relative;
}
.contact-privacy__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #9a7b4b;
}

.req .smf-item__label__text:before {
  content: "必須";
  display: inline-block;
  margin-right: 8px;
  padding: 2px 6px;
  background: #B90000;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 2px;
  vertical-align: middle;
}

.smf-item__label__text:before {
  content: "任意";
  display: inline-block;
  margin-right: 8px;
  padding: 2px 6px;
  background: #A1A1A1;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 2px;
  vertical-align: middle;
}

.snow-monkey-form .smf-progress-tracker {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin-bottom: 64px;
}
.snow-monkey-form .smf-progress-tracker__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 200px;
  color: #718096;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.snow-monkey-form .smf-progress-tracker__item__number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f7f6f4;
  border: 2px solid #e2ddd7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-weight: 700;
  font-size: 0.875rem;
}
.snow-monkey-form .smf-progress-tracker__item__text {
  font-size: 0.8125rem;
}
.snow-monkey-form .smf-progress-tracker__item--current {
  color: #1a2744;
  font-weight: 700;
}
.snow-monkey-form .smf-progress-tracker__item--current .smf-progress-tracker__item__number {
  background: #1a2744;
  border-color: #1a2744;
  color: #ffffff;
}
.snow-monkey-form .smf-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid #e2ddd7;
}
@media screen and (max-width: 767px) {
  .snow-monkey-form .smf-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.snow-monkey-form .smf-item__col--label {
  padding-top: 10px;
}
.snow-monkey-form .smf-item__label label {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  cursor: default;
}
.snow-monkey-form .smf-item__label__text {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
}
.snow-monkey-form .smf-item__col--controls {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.snow-monkey-form .smf-item__description {
  font-size: 0.8125rem;
  color: #718096;
  line-height: 1.7;
  margin-top: 4px;
}
.snow-monkey-form .smf-item--required .smf-item__label__text::after {
  content: "必須";
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  background: #B90000;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  vertical-align: middle;
}
.snow-monkey-form .smf-text-control__control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2ddd7;
  font-size: 1.125rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #1a2744;
  background: #eee;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.snow-monkey-form .smf-text-control__control::placeholder {
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
}
.snow-monkey-form .smf-text-control__control[name=郵便番号] {
  max-width: 200px;
  margin-bottom: 20px;
}
.snow-monkey-form .smf-text-control__control:focus {
  outline: none;
  border-color: #1a2744;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}
.snow-monkey-form .smf-text-control__control[data-invalid=true] {
  border-color: #B90000;
  background: #fff5f5;
}
.snow-monkey-form .smf-textarea-control__control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2ddd7;
  font-size: 1.125rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #1a2744;
  background: #eee;
  min-height: 180px;
  resize: vertical;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.snow-monkey-form .smf-textarea-control__control::placeholder {
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
}
.snow-monkey-form .smf-textarea-control__control:focus {
  outline: none;
  border-color: #1a2744;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}
.snow-monkey-form .smf-select-control {
  position: relative;
}
.snow-monkey-form .smf-select-control__control {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border: 1px solid #e2ddd7;
  font-size: 1.125rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  color: #1a2744;
  background: #eee;
  appearance: none;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.snow-monkey-form .smf-select-control__control:focus {
  outline: none;
  border-color: #1a2744;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}
.snow-monkey-form .smf-select-control__toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #1a2744;
  border-bottom: 2px solid #1a2744;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}
.snow-monkey-form .smf-checkbox-control {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  color: #1a2744;
}
.snow-monkey-form .smf-checkbox-control__control {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid #e2ddd7;
  background: #ffffff;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.snow-monkey-form .smf-checkbox-control__control:checked {
  background: #1a2744;
  border-color: #1a2744;
}
.snow-monkey-form .smf-checkbox-control__control:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: 2px solid #ffffff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.snow-monkey-form .smf-checkbox-control__label {
  line-height: 1.6;
}
.snow-monkey-form .smf-checkboxes-control__control {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.snow-monkey-form .smf-checkboxes-control__control[data-validations=required]:has(.smf-label:only-child) {
  align-items: center;
  margin-top: 30px;
}
.snow-monkey-form .smf-radio-button-control {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1rem;
  color: #1a2744;
}
.snow-monkey-form .smf-radio-button-control__control {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #1a2744;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  position: relative;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.snow-monkey-form .smf-radio-button-control__control:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: #1a2744;
  border-radius: 50%;
}
.snow-monkey-form .smf-radio-button-control__label {
  line-height: 1.6;
}
.snow-monkey-form .smf-radio-buttons-control__control {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.snow-monkey-form .smf-error-messages {
  margin-top: 6px;
  font-size: 0.8125rem;
  color: #B90000;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}
.snow-monkey-form .smf-control-description {
  font-size: 0.8125rem;
  color: #718096;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  line-height: 1.7;
  margin-top: 4px;
}
.snow-monkey-form .smf-action {
  margin-top: 64px;
  text-align: center;
}
.snow-monkey-form .smf-button-control__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 52px;
  font-size: 0.9375rem;
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  letter-spacing: 0.08em;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 5px 5px 0 #747887;
  background-color: #1a2744;
  color: #ffffff;
  min-width: 240px;
  border: none;
  background: #1a2744;
}
.snow-monkey-form .smf-button-control__control:hover {
  background-color: #1a1c2e;
}

.news-list-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news-list-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.news-list-section {
  background: #efefef;
}
.news-list-section__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .news-list-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.news-list-section__inner {
  padding: 100px 40px;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .news-list-section__inner {
    padding: 64px 20px;
  }
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-list__item {
  border-bottom: 1px solid #e2ddd7;
}
.news-list__item:first-child {
  border-top: 1px solid #e2ddd7;
}
.news-list__link {
  display: grid;
  grid-template-columns: 120px 80px 1fr 40px;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  text-decoration: none;
  color: inherit;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 767px) {
  .news-list__link {
    grid-template-columns: 1fr 40px;
    grid-template-rows: auto auto;
  }
}
.news-list__link:hover {
  background: #f7f6f4;
  padding-left: 16px;
  padding-right: 16px;
}
.news-list__date {
  font-size: 0.875rem;
  color: #718096;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .news-list__date {
    grid-column: 1;
  }
}
.news-list__cat {
  display: inline-block;
  padding: 3px 10px;
  background: #1a2744;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news-list__cat {
    display: none;
  }
}
.news-list__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1a2744;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news-list__title {
    grid-column: 1;
    grid-row: 2;
  }
}
.news-list__arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2ddd7;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .news-list__arrow {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
  }
}
.news-list__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #1a2744;
  border-right: 1.5px solid #1a2744;
  transform: translate(-60%, -50%) rotate(45deg);
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #e2ddd7;
}
.pager__prev a, .pager__next a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e2ddd7;
  text-decoration: none;
  color: #1a2744;
  font-size: 0.875rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pager__prev a:hover, .pager__next a:hover {
  background: #1a2744;
  color: #ffffff;
  border-color: #1a2744;
}
.pager__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pager__item a, .pager__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.875rem;
  color: #1a2744;
  border: 1px solid #e2ddd7;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pager__item a:hover {
  background: #f7f6f4;
}
.pager__item.is-active a, .pager__item.is-active span {
  background: #1a2744;
  color: #ffffff;
  border-color: #1a2744;
}

.news-detail-section {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .news-detail-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
.news-detail-section {
  background: #f7f6f4;
}
.news-detail-section__inner {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .news-detail-section__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.news-article {
  background: #ffffff;
  padding: 80px 120px;
}
@media screen and (max-width: 767px) {
  .news-article {
    padding: 40px 20px;
  }
}
.news-article__header {
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e2ddd7;
}
.news-article__date {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 0.875rem;
  color: #718096;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.news-article__title {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: #1a2744;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.news-article__body {
  font-size: 0.9375rem;
  line-height: 2.2;
  color: #4a5568;
}
.news-article__body p {
  margin-bottom: 24px;
}
.news-article__body h2 {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 64px 0 16px;
  padding: 10px 15px;
  background: #1a2744;
}
.news-article__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2744;
  border-left: 5px solid #1a2744;
  margin: 40px 0 8px;
  padding-left: 20px;
}
.news-article__body h4 {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2ddd7;
}
.news-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
.news-article__body ul, .news-article__body ol {
  padding-left: 1.5em;
  margin-bottom: 24px;
}
.news-article__body ul li, .news-article__body ol li {
  margin-bottom: 4px;
}
.news-article__body ul.wp-block-list li, .news-article__body ol.wp-block-list li {
  list-style-type: disc;
}
.news-article__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 40px;
}
.news-article__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news-article__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid #e2ddd7;
}
@media screen and (max-width: 767px) {
  .news-article__nav {
    flex-direction: column;
  }
}
.news-article__nav-prev, .news-article__nav-next {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  color: #1a2744;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-article__nav-prev:hover, .news-article__nav-next:hover {
  color: #9a7b4b;
}
.news-article__nav-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e2ddd7;
  position: relative;
  flex-shrink: 0;
}
.news-article__nav-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #1a2744;
  border-right: 1.5px solid #1a2744;
  transform: translate(-60%, -50%) rotate(45deg);
}
.news-article__nav-arrow--prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}
.news-article__back {
  text-align: center;
  margin-top: 40px;
}

.news-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
