@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9375rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

.inner {
  width: 100%;
  max-width: calc(70rem + 3rem);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 1.25rem;
  }
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid transparent;
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  backdrop-filter: blur(12px) saturate(160%);
  border-bottom-color: rgba(223, 227, 233, 0.6);
  box-shadow: 0 0.25rem 1.5rem rgba(31, 58, 95, 0.06);
}
@supports not (backdrop-filter: blur(1px)) {
  .header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    height: 3.75rem;
    padding-inline: 1.25rem;
  }
}

.header__logo a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1f3a5f;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .header__logo a:hover {
    opacity: 0.7;
  }
}
.header__logo span {
  display: block;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #777777;
}
@media screen and (max-width: 767px) {
  .header__logo a {
    font-size: 0.8125rem;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 1024px) {
  .header__nav {
    align-self: stretch;
  }
}
@media screen and (max-width: 1023px) {
  .header__nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
    background-color: #1f3a5f;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .header__nav.is-open {
    visibility: visible;
    opacity: 1;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .header__menu {
    height: 100%;
  }
  .header__menu > li {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
.header__menu > li > a {
  position: relative;
  padding-bottom: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #333333;
  transition: color 0.3s ease;
}
.header__menu > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #b08d57;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
@media (hover: hover) {
  .header__menu > li > a:hover {
    color: #b08d57;
  }
  .header__menu > li > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@media screen and (max-width: 1023px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  .header__menu > li > a {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
  }
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
  background-color: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid #dfe3e9;
  box-shadow: 0 1.5rem 3rem rgba(31, 58, 95, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  pointer-events: none;
  transition: opacity 0.3s ease 0.15s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, visibility 0.3s 0.15s;
}
.header__menu > li:hover .megamenu, .header__menu > li:focus-within .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}
@media screen and (max-width: 1023px) {
  .megamenu {
    display: none;
  }
}

.megamenu__inner {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 3.5rem;
  align-items: start;
}

.megamenu__en {
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #1f3a5f;
}

.megamenu__ja {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #777777;
}

.megamenu__view {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #1f3a5f;
  transition: color 0.3s ease;
}
.megamenu__view::after {
  content: "";
  width: 1.75rem;
  height: 0.0625rem;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: width 0.3s ease;
}
@media (hover: hover) {
  .megamenu__view:hover {
    color: #b08d57;
  }
  .megamenu__view:hover::after {
    width: 2.5rem;
  }
}
.megamenu__view {
  margin-top: 1.25rem;
  font-size: 0.8125rem;
}

.megamenu__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 2rem;
  align-content: start;
}
.megamenu__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid #dfe3e9;
  font-size: 0.8125rem;
  transition: color 0.3s ease, padding-left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.megamenu__list a::after {
  content: "→";
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.6875rem;
  color: #b08d57;
  opacity: 0;
  transform: translateX(-0.375rem);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .megamenu__list a:hover {
    padding-left: 0.625rem;
    color: #b08d57;
  }
  .megamenu__list a:hover::after {
    opacity: 1;
    transform: translateX(0);
  }
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 1023px) {
  .header__actions {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

.header__store,
.header__lang {
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #777777;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .header__store:hover,
  .header__lang:hover {
    color: #b08d57;
  }
}
@media screen and (max-width: 1023px) {
  .header__store,
  .header__lang {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
  }
}

.header__contact {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #1f3a5f;
  border-radius: 0.125rem;
  transition: background-color 0.3s ease;
}
@media (hover: hover) {
  .header__contact:hover {
    background-color: #b08d57;
  }
}
@media screen and (max-width: 1023px) {
  .header__contact {
    color: #1f3a5f;
    background-color: #ffffff;
  }
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .header__hamburger {
    position: relative;
    z-index: 110;
    display: block;
    width: 2.75rem;
    height: 2.75rem;
    background: none;
    border: none;
    cursor: pointer;
  }
  .header__hamburger span {
    position: absolute;
    left: 50%;
    width: 1.5rem;
    height: 0.125rem;
    background-color: #1f3a5f;
    transform: translateX(-50%);
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
  }
  .header__hamburger span:nth-child(1) {
    top: 1rem;
  }
  .header__hamburger span:nth-child(2) {
    top: 1.4375rem;
  }
  .header__hamburger span:nth-child(3) {
    top: 1.875rem;
  }
  .header__hamburger[aria-expanded=true] span {
    background-color: #ffffff;
  }
  .header__hamburger[aria-expanded=true] span:nth-child(1) {
    transform: translateX(-50%) translateY(0.4375rem) rotate(45deg);
  }
  .header__hamburger[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger[aria-expanded=true] span:nth-child(3) {
    transform: translateX(-50%) translateY(-0.4375rem) rotate(-45deg);
  }
}

.footer {
  margin-top: 7.5rem;
  overflow: hidden;
  color: #ffffff;
  background-color: #1f3a5f;
}
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 5rem;
  }
}

.footer__inner {
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-top: 3rem;
  }
}

.footer__cta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (hover: hover) {
  .footer__cta:hover .footer__cta-en::after {
    transform: translateX(0.75rem);
  }
}
@media screen and (max-width: 767px) {
  .footer__cta {
    padding-bottom: 2.5rem;
  }
}

.footer__cta-en {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.footer__cta-en::after {
  content: "→";
  font-size: 2.25rem;
  color: #b08d57;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media screen and (max-width: 767px) {
  .footer__cta-en {
    font-size: 2.5rem;
  }
  .footer__cta-en::after {
    font-size: 1.5rem;
  }
}

.footer__cta-ja {
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

.footer__logo {
  margin-top: 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer__logo span {
  display: block;
  margin-top: 0.25rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-top: 2.5rem;
  }
}

.footer__sitemap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 1023px) {
  .footer__sitemap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .footer__sitemap {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.footer__col > a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__col > a:hover {
    opacity: 0.7;
  }
}
.footer__col .footer__col-en {
  display: block;
  margin-top: 0.125rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.45);
}
.footer__col ul {
  margin-top: 0.875rem;
}
.footer__col li {
  margin-top: 0.375rem;
  font-size: 0.8125rem;
}
.footer__col li a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .footer__col li a:hover {
    color: #ffffff;
  }
}

.footer__external {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__external a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__external a:hover {
    opacity: 0.7;
  }
}
.footer__external a::after {
  content: "↗";
  font-size: 0.6875rem;
}

.footer__wordmark {
  margin-top: 4.5rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: clamp(3rem, 11vw, 8.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.08);
  user-select: none;
}
@media screen and (max-width: 767px) {
  .footer__wordmark {
    margin-top: 3rem;
  }
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  transition: opacity 0.3s ease;
}
@media (hover: hover) {
  .footer__legal a:hover {
    opacity: 0.7;
  }
}

.footer__copyright {
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .header {
  opacity: 0;
}

.header {
  transition: opacity 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.4s, border-color 0.3s ease;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1f3a5f;
  clip-path: inset(0 0 0 0);
  transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}
.loader.is-done {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}

.loader__content {
  text-align: center;
  transition: opacity 0.5s ease;
}
.is-done .loader__content {
  opacity: 0;
}

.loader__logo {
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .loader__logo {
    font-size: 0.875rem;
  }
}

.loader__bar {
  width: 12.5rem;
  height: 0.0625rem;
  margin-top: 1.5rem;
  margin-inline: auto;
  background-color: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.loader__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s cubic-bezier(0.65, 0, 0.35, 1) 0.4s;
}

.loader.is-start .loader__bar span {
  transform: scaleX(1);
}

.js-split {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.js-split .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(4deg);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.loader.is-start .char,
.is-inview .char,
.mv.is-ready .char {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.reveal {
  position: relative;
  overflow: hidden;
}
.reveal img {
  transform: scale(1.15);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #1f3a5f;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.is-inview img {
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s;
}
.reveal.is-inview::after {
  transform: scaleX(0);
}

.js-fade {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--fade-delay, 0s);
}
.js-fade.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #b08d57;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 299;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(31, 58, 95, 0.5);
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), height 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease;
}
.cursor-follower span {
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cursor-follower.is-hover {
  width: 3.75rem;
  height: 3.75rem;
  border-color: rgba(176, 141, 87, 0.8);
}
.cursor-follower.is-view {
  width: 5rem;
  height: 5rem;
  background-color: rgba(31, 58, 95, 0.9);
  border-color: transparent;
}
.cursor-follower.is-view span {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  .cursor,
  .cursor-follower {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .loader {
    display: none;
  }
  body.is-loading {
    overflow: auto;
  }
  body.is-loading .header {
    opacity: 1;
  }
  .js-split .char,
  .reveal img,
  .reveal::after,
  .js-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal::after {
    display: none;
  }
  .cursor,
  .cursor-follower {
    display: none;
  }
}
.section-heading .section-heading__en {
  display: block;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: #1f3a5f;
}
@media screen and (max-width: 767px) {
  .section-heading .section-heading__en {
    font-size: 2rem;
  }
}
.section-heading .section-heading__ja {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #777777;
}

.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #1f3a5f;
  transition: color 0.3s ease;
}
.more-link::after {
  content: "";
  width: 1.75rem;
  height: 0.0625rem;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: width 0.3s ease;
}
@media (hover: hover) {
  .more-link:hover {
    color: #b08d57;
  }
  .more-link:hover::after {
    width: 2.5rem;
  }
}
.more-link {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.mv {
  position: relative;
  height: 88svh;
  min-height: 35rem;
  margin-top: 4.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 72svh;
    min-height: 30rem;
    margin-top: 3.75rem;
  }
}

.mv__slides {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
  transition: transform 2.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mv.is-ready .mv__slides {
  transform: scale(1);
}

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.4s ease;
}
.mv__slide.is-active {
  opacity: 1;
}
.mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mv__copy {
  position: absolute;
  bottom: 4.5rem;
  left: 0;
  width: 100%;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .mv__copy {
    bottom: 3rem;
  }
}

.mv__title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .mv__title {
    font-size: 1.875rem;
  }
}

.mv__text {
  margin-top: 1rem;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.8s ease 1s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1s;
}
.mv.is-ready .mv__text {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .mv__text {
    font-size: 0.8125rem;
  }
}

.mv__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #1f3a5f;
  transition: color 0.3s ease;
}
.mv__link::after {
  content: "";
  width: 1.75rem;
  height: 0.0625rem;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: width 0.3s ease;
}
@media (hover: hover) {
  .mv__link:hover {
    color: #b08d57;
  }
  .mv__link:hover::after {
    width: 2.5rem;
  }
}
.mv__link {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.8s ease 1.3s, color 0.3s ease;
}
.mv.is-ready .mv__link {
  opacity: 1;
}
@media (hover: hover) {
  .mv__link:hover {
    color: #ffffff;
  }
}

.mv__scroll {
  position: absolute;
  right: 1.75rem;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  writing-mode: vertical-rl;
}
.mv__scroll::after {
  content: "";
  width: 0.0625rem;
  height: 3.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  animation: scroll-line 2s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
  .mv__scroll {
    right: 1rem;
    font-size: 0.625rem;
  }
  .mv__scroll::after {
    height: 2.5rem;
  }
}

@keyframes scroll-line {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.news {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 4rem;
  }
}

.news__container {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  gap: 3rem;
}
@media screen and (max-width: 1023px) {
  .news__container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.news__list {
  border-top: 1px solid #dfe3e9;
}
.news__list li {
  border-bottom: 1px solid #dfe3e9;
}
.news__list a {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding-block: 1.125rem;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .news__list a:hover {
    color: #b08d57;
    transform: translateX(0.5rem);
  }
}
@media screen and (max-width: 767px) {
  .news__list a {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding-block: 0.875rem;
  }
}

.news__date {
  flex-shrink: 0;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  color: #777777;
}

.news__tag {
  flex-shrink: 0;
  min-width: 6rem;
  padding: 0.125rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #ffffff;
  background-color: #1f3a5f;
  border-radius: 0.125rem;
}
.news__tag.news__tag--ir {
  background-color: #7a6a3a;
}
.news__tag.news__tag--sus {
  background-color: #3f6e52;
}

.news__title {
  font-size: 0.9375rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .news__title {
    width: 100%;
  }
}

.news__more {
  margin-top: 1.5rem;
}

.products {
  margin-top: 7.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #f5f6f8;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .products {
    margin-top: 5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.products__lead {
  max-width: 42.5rem;
  margin-top: 2rem;
  font-size: 0.9375rem;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.products__grid > li:nth-child(1) {
  grid-column: 1/8;
}
.products__grid > li:nth-child(2) {
  grid-column: 8/13;
  margin-top: 6rem;
}
.products__grid > li:nth-child(3) {
  grid-column: 1/6;
  margin-top: 3rem;
}
.products__grid > li:nth-child(4) {
  grid-column: 6/13;
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .products__grid {
    display: block;
    margin-top: 2.5rem;
  }
  .products__grid > li:nth-child(n) {
    width: 86%;
    margin-top: 3rem;
  }
  .products__grid > li:nth-child(even) {
    margin-left: auto;
  }
  .products__grid > li:first-child {
    margin-top: 0;
  }
}

.pitem {
  display: block;
}

.pitem__link {
  display: block;
}
@media (hover: hover) {
  .pitem__link:hover .pitem__img img {
    transform: scale(1.06);
  }
  .pitem__link:hover .pitem__title {
    color: #b08d57;
  }
  .pitem__link:hover .pitem__num::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.pitem__img {
  aspect-ratio: 16/10;
}
.pitem__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pitem__img.pitem__img--portrait {
  aspect-ratio: 4/5;
}
.pitem__img.pitem__img--square {
  aspect-ratio: 1/1;
}
.pitem__img.pitem__img--wide {
  aspect-ratio: 21/10;
}
@media screen and (max-width: 767px) {
  .pitem__img.pitem__img--wide {
    aspect-ratio: 16/10;
  }
}

.pitem__body {
  margin-top: 1rem;
}

.pitem__num {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: #b08d57;
}
.pitem__num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #b08d57;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pitem__title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1f3a5f;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .pitem__title {
    font-size: 1.1875rem;
  }
}

.pitem__en {
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  color: #777777;
}

.pitem__text {
  max-width: 30rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #777777;
}

.products__more {
  margin-top: 4rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .products__more {
    margin-top: 2.5rem;
  }
}

.card {
  display: block;
  background-color: #ffffff;
  box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-0.375rem);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
  }
  .card:hover .card__img img {
    transform: scale(1.06);
  }
  .card:hover .card__title::after {
    transform: translateX(0.375rem);
  }
}

.card__img {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1f3a5f;
}
.card__title::after {
  content: "→";
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.875rem;
  color: #b08d57;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card__text {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #777777;
}

.category {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .category {
    margin-top: 5rem;
  }
}

.category__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.category__grid > li:nth-child(1) .card__img {
  aspect-ratio: 4/5;
}
.category__grid > li:nth-child(2) {
  margin-top: 4rem;
}
.category__grid > li:nth-child(2) .card__img {
  aspect-ratio: 1/1;
}
.category__grid > li:nth-child(3) {
  margin-top: 1.5rem;
}
.category__grid > li:nth-child(3) .card__img {
  aspect-ratio: 4/5;
}
@media screen and (max-width: 767px) {
  .category__grid {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    padding-bottom: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .category__grid::-webkit-scrollbar {
    height: 0.1875rem;
  }
  .category__grid::-webkit-scrollbar-thumb {
    background-color: #dfe3e9;
    border-radius: 0.125rem;
  }
  .category__grid > li:nth-child(n) {
    flex: 0 0 76%;
    margin-top: 0;
    scroll-snap-align: center;
  }
  .category__grid > li:nth-child(n) .card__img {
    aspect-ratio: 4/5;
  }
}

.category__hint {
  display: none;
}
@media screen and (max-width: 767px) {
  .category__hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-family: "Stack Sans Notch", "Jost", sans-serif;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: #777777;
  }
  .category__hint::after {
    content: "";
    width: 2rem;
    height: 0.0625rem;
    background-color: #777777;
  }
}

.redow {
  margin-top: 7.5rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #ffffff;
  background-color: #1f3a5f;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .redow {
    margin-top: 5rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.redow__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .redow__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.redow__heading .section-heading__en {
  color: #ffffff;
}
.redow__heading .section-heading__ja {
  color: rgba(255, 255, 255, 0.7);
}

.redow__text {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
}

.redow__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.redow__button {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.125rem;
  overflow: hidden;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.redow__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.redow__button::after {
  content: "↗";
  font-size: 0.75rem;
}
@media (hover: hover) {
  .redow__button:hover {
    color: #1f3a5f;
    border-color: #ffffff;
  }
  .redow__button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.redow__img {
  overflow: hidden;
}
.redow__img img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .redow__img {
    margin-inline: -1.25rem;
  }
}

.group {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .group {
    margin-top: 5rem;
  }
}

.group__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .group__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
}

.group__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #777777;
}

.page-header {
  padding-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .page-header {
    padding-top: 5.75rem;
  }
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #777777;
}
.breadcrumb li:not(:first-child)::before {
  content: "/";
  color: #dfe3e9;
}
.breadcrumb a {
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .breadcrumb a:hover {
    color: #b08d57;
  }
}

.page-header__title {
  margin-top: 2rem;
}
.page-header__title .page-header__en {
  display: block;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: #1f3a5f;
}
.page-header__title .page-header__ja {
  display: block;
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #777777;
}

.page-header__lead {
  max-width: 42.5rem;
  margin-top: 1.5rem;
  font-size: 0.9375rem;
}

.page-body {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .page-body {
    margin-top: 2.5rem;
  }
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 15rem;
  gap: 4rem;
  align-items: start;
}
@media screen and (max-width: 1023px) {
  .page-layout {
    display: block;
  }
}

.local-nav {
  position: sticky;
  top: 6rem;
}
.local-nav .local-nav__title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #777777;
}
.local-nav ul {
  margin-top: 0.75rem;
  border-top: 1px solid #dfe3e9;
}
.local-nav li {
  border-bottom: 1px solid #dfe3e9;
}
.local-nav a {
  position: relative;
  display: block;
  padding: 0.75rem 0.25rem 0.75rem 1rem;
  font-size: 0.8125rem;
  transition: color 0.3s ease;
}
.local-nav a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.375rem;
  height: 0.0625rem;
  background-color: #b08d57;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .local-nav a:hover {
    color: #b08d57;
  }
  .local-nav a:hover::before {
    transform: translateY(-50%) scaleX(1);
  }
}
.local-nav a[aria-current=page] {
  font-weight: 700;
  color: #1f3a5f;
}
.local-nav a[aria-current=page]::before {
  transform: translateY(-50%) scaleX(1);
}
@media screen and (max-width: 1023px) {
  .local-nav {
    position: static;
    margin-top: 3rem;
  }
  .local-nav ul {
    display: flex;
    overflow-x: auto;
    border-top: none;
    border-bottom: 1px solid #dfe3e9;
  }
  .local-nav li {
    flex-shrink: 0;
    border-bottom: none;
  }
  .local-nav a {
    padding: 0.625rem 1rem;
    white-space: nowrap;
  }
  .local-nav a::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 0.125rem;
    transform: scaleX(0);
  }
  .local-nav a[aria-current=page]::before, .local-nav a:hover::before {
    transform: scaleX(1);
  }
}

@media screen and (max-width: 1023px) {
  .page-layout .local-nav {
    margin-top: 0;
    margin-bottom: 2.5rem;
  }
}
.content > h2 {
  margin-top: 4rem;
  padding-left: 1.25rem;
  border-left: 0.1875rem solid #b08d57;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1f3a5f;
}
.content > h2:first-child {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .content > h2 {
    margin-top: 3rem;
    font-size: 1.25rem;
  }
}
.content > h3 {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f3a5f;
}
.content > p {
  margin-top: 1rem;
  font-size: 0.9375rem;
}
.content > figure {
  margin-top: 2rem;
}
.content > figure img {
  width: 100%;
  height: auto;
}
.content > figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #777777;
}

.dot-list {
  margin-top: 1rem;
}
.dot-list li {
  position: relative;
  margin-top: 0.5rem;
  padding-left: 1.125rem;
  font-size: 0.9375rem;
}
.dot-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #b08d57;
  border-radius: 50%;
}

.data-table {
  width: 100%;
  margin-top: 2rem;
  border-collapse: collapse;
}
.data-table th,
.data-table td {
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #dfe3e9;
  font-size: 0.9375rem;
  text-align: left;
  vertical-align: top;
}
.data-table th {
  width: 12.5rem;
  font-weight: 700;
  color: #1f3a5f;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
    padding: 0.25rem 0;
  }
  .data-table th {
    padding-top: 1rem;
    border-bottom: none;
    font-size: 0.8125rem;
    color: #777777;
  }
  .data-table td {
    padding-bottom: 1rem;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery figure {
  overflow: hidden;
}
.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 1023px) {
  .menu-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .menu-cards {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.75rem;
    margin-top: 2rem;
  }
}

.menu-card {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 11rem;
  padding: 1.75rem 4.5rem 1.75rem 1.5rem;
  background-color: #ffffff;
  border: 1px solid #dfe3e9;
  overflow: hidden;
  transition: border-color 0.4s ease;
}
.menu-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #1f3a5f;
  transform: translateY(101%);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-card::after {
  content: "→";
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #dfe3e9;
  border-radius: 50%;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.875rem;
  color: #b08d57;
  transition: background-color 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .menu-card:hover {
    border-color: #1f3a5f;
  }
  .menu-card:hover::before {
    transform: translateY(0);
  }
  .menu-card:hover::after {
    background-color: #b08d57;
    border-color: #b08d57;
    color: #ffffff;
    transform: translateX(0.25rem);
  }
  .menu-card:hover .menu-card__title {
    color: #ffffff;
  }
  .menu-card:hover .menu-card__text {
    color: rgba(255, 255, 255, 0.75);
  }
}
@media screen and (max-width: 767px) {
  .menu-card {
    min-height: 0;
    padding: 1.25rem 4rem 1.25rem 1.25rem;
  }
}

.menu-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f3a5f;
  transition: color 0.4s ease;
}

.menu-card__text {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1.7;
  color: #777777;
  transition: color 0.4s ease;
}

.pickup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 4rem;
  padding: 2rem;
  background-color: #f5f6f8;
}
@media screen and (max-width: 767px) {
  .pickup {
    margin-top: 3rem;
    padding: 1.5rem 1.25rem;
  }
}

.pickup__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f3a5f;
}

.pickup__text {
  width: 100%;
  font-size: 0.8125rem;
  color: #777777;
}

.related {
  margin-top: 6rem;
  padding-top: 3.5rem;
  border-top: 1px solid #dfe3e9;
}
@media screen and (max-width: 767px) {
  .related {
    margin-top: 4rem;
    padding-top: 2.5rem;
  }
}

.related__title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #1f3a5f;
}
.related__title span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.75rem;
  color: #777777;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .related__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.75rem;
  }
}

.cta-banner {
  margin-top: 6rem;
  padding: 3.5rem 2rem;
  text-align: center;
  color: #ffffff;
  background-color: #1f3a5f;
}
@media screen and (max-width: 767px) {
  .cta-banner {
    margin-top: 4rem;
    padding: 2.5rem 1.25rem;
  }
}

.cta-banner__en {
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.cta-banner__text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-banner__button {
  margin-top: 1.5rem;
}

.btn {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 15rem;
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #1f3a5f;
  border: 1px solid #1f3a5f;
  border-radius: 0.125rem;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.4s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: #b08d57;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
  .btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.btn.btn--ghost {
  color: #ffffff;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.6);
}
.btn.btn--ghost::before {
  background-color: #ffffff;
}
@media (hover: hover) {
  .btn.btn--ghost:hover {
    color: #1f3a5f;
    border-color: #ffffff;
  }
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 3rem;
}
.news-filter button {
  padding: 0.5rem 1.25rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.8125rem;
  color: #333333;
  background-color: transparent;
  border: 1px solid #dfe3e9;
  border-radius: 1.25rem;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) {
  .news-filter button:hover {
    border-color: #b08d57;
    color: #b08d57;
  }
}
.news-filter button.is-active {
  color: #ffffff;
  background-color: #1f3a5f;
  border-color: #1f3a5f;
}
@media screen and (max-width: 767px) {
  .news-filter {
    margin-top: 2rem;
  }
}

.news-archive {
  margin-top: 1.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
}
.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.875rem;
  border: 1px solid #dfe3e9;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.pagination span {
  color: #ffffff;
  background-color: #1f3a5f;
  border-color: #1f3a5f;
}
@media (hover: hover) {
  .pagination a:hover {
    color: #b08d57;
    border-color: #b08d57;
  }
}

.article {
  max-width: 47.5rem;
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article__title {
  margin-top: 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  color: #1f3a5f;
}
@media screen and (max-width: 767px) {
  .article__title {
    font-size: 1.375rem;
  }
}

.article__body {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #dfe3e9;
}
.article__body h2 {
  margin-top: 3rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f3a5f;
}
.article__body h2:first-child {
  margin-top: 0;
}
.article__body p {
  margin-top: 1rem;
  font-size: 0.9375rem;
}
.article__body figure {
  margin-top: 2rem;
}
.article__body figure img {
  width: 100%;
  height: auto;
}

.article__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dfe3e9;
}
.article__nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #1f3a5f;
  transition: color 0.3s ease;
}
.article__nav a::after {
  content: "";
  width: 1.75rem;
  height: 0.0625rem;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: width 0.3s ease;
}
@media (hover: hover) {
  .article__nav a:hover {
    color: #b08d57;
  }
  .article__nav a:hover::after {
    width: 2.5rem;
  }
}
.article__nav a {
  font-size: 0.8125rem;
}
.article__nav .article__nav-prev::after {
  order: -1;
  transform: rotate(180deg);
}

.doc-list {
  margin-top: 1.5rem;
  border-top: 1px solid #dfe3e9;
}
.doc-list li {
  border-bottom: 1px solid #dfe3e9;
}
.doc-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0.5rem;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .doc-list a:hover {
    color: #b08d57;
  }
}
@media screen and (max-width: 767px) {
  .doc-list a {
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    padding: 0.875rem 0.25rem;
  }
}

.doc-list__badge {
  flex-shrink: 0;
  padding: 0.125rem 0.625rem;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #b08d57;
  border-radius: 0.125rem;
}

.doc-list__date {
  flex-shrink: 0;
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 0.75rem;
  color: #777777;
}

.doc-list__title {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .doc-list__title {
    width: 100%;
  }
}

.timeline {
  margin-top: 2rem;
  border-left: 1px solid #dfe3e9;
}
.timeline li {
  position: relative;
  padding: 0 0 2rem 1.75rem;
}
.timeline li:last-child {
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: -0.25rem;
  width: 0.4375rem;
  height: 0.4375rem;
  background-color: #b08d57;
  border-radius: 50%;
}

.timeline__year {
  font-family: "Stack Sans Notch", "Jost", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #1f3a5f;
}

.timeline__text {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.form {
  max-width: 42.5rem;
}

.form__row {
  margin-top: 2rem;
}
.form__row:first-child {
  margin-top: 0;
}

.form__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f3a5f;
}

.form__required {
  padding: 0.0625rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #b08d57;
  border-radius: 0.125rem;
}

.form__field {
  margin-top: 0.625rem;
}
.form__field input[type=text],
.form__field input[type=email],
.form__field input[type=tel],
.form__field select,
.form__field textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 0.9375rem;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #dfe3e9;
  border-radius: 0.125rem;
  transition: border-color 0.3s ease;
}
.form__field input[type=text]:focus,
.form__field input[type=email]:focus,
.form__field input[type=tel]:focus,
.form__field select:focus,
.form__field textarea:focus {
  border-color: #b08d57;
  outline: none;
}
.form__field textarea {
  min-height: 11.25rem;
  resize: vertical;
}

.form__agree {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 2.5rem;
  font-size: 0.875rem;
}
.form__agree input[type=checkbox] {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: #1f3a5f;
}
.form__agree a {
  color: #1f3a5f;
  text-decoration: underline;
}
@media (hover: hover) {
  .form__agree a:hover {
    color: #b08d57;
  }
}

.form__submit {
  margin-top: 2rem;
}

.form__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #777777;
}
