@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1f1f1a;
  background: #fafaf7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

button,
[type=button],
[type=submit],
[type=reset] {
  cursor: pointer;
}

:disabled {
  cursor: not-allowed;
}

.js-fade {
  opacity: 0;
}

/* =========================================
   l-header : 共通ヘッダー（fixed・ダーク）
   ========================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.125rem;
  background-color: #1f1f1a;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232, 161, 87, 0.15);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 4.6875rem;
    padding: 0 2.75rem;
  }
}
.l-header.is-hide {
  transform: translateY(-100%);
  opacity: 0;
}
.l-header.is-transparent {
  background-color: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.l-header__logo {
  display: block;
  line-height: 0;
}
.l-header__logo img {
  height: 2.5rem;
  width: auto;
  opacity: 0.95;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__logo img {
    height: 3.75rem;
  }
}
.l-header__logo:hover img {
  opacity: 1;
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.l-header__right .c-btn.c-btn--akari {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__right .c-btn.c-btn--akari {
    display: inline-flex;
    padding: 0.5625rem 1.375rem;
    font-size: 0.8125rem;
    border: 1px solid transparent;
  }
}
.l-header__login {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5625rem 1.375rem;
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    color: #f5efe5;
    border: 1px solid #f5efe5;
    border-radius: 0.25rem;
    transition: color 0.3s, border-color 0.3s;
  }
  .l-header__login:hover {
    color: #e8a157;
    border-color: #e8a157;
  }
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    display: flex;
    gap: 1.25rem;
    align-items: center;
  }
}
.l-header__list {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.l-header__link {
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  color: #f5efe5;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
}
.l-header__link:hover {
  opacity: 1;
  color: #f5b85e;
}
.l-header__hamburger {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 201;
  color: #f5efe5;
}
@media screen and (min-width: 768px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  display: block;
  height: 2px;
  width: 1.375rem;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s;
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

/* =========================================
   l-drawer : SPドロワー（独立・全画面オーバーレイ）
   ========================================= */
.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 22.5rem;
  max-width: 100%;
  z-index: 200;
  padding: 6.25rem 2.5rem 2.5rem;
  background: #0f1726;
  color: #f5efe5;
  overflow-y: auto;
  transform: translateX(110%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-left: 1px solid rgba(232, 161, 87, 0.2);
}
.l-drawer.is-open {
  transform: translateX(0);
}
.l-drawer__close {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #f5efe5;
  transition: color 0.3s;
}
.l-drawer__close span {
  position: absolute;
  width: 1.5rem;
  height: 1.5px;
  background: currentColor;
}
.l-drawer__close span:nth-child(1) {
  transform: rotate(45deg);
}
.l-drawer__close span:nth-child(2) {
  transform: rotate(-45deg);
}
.l-drawer__close:hover {
  color: #e8a157;
}
.l-drawer__label {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: #e8a157;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.l-drawer__link {
  display: block;
  padding: 1.125rem 0;
  font-size: 0.9375rem;
  letter-spacing: 0.12em;
  color: #f5efe5;
  border-bottom: 1px solid rgba(245, 239, 229, 0.12);
  transition: color 0.3s, opacity 0.3s, padding-left 0.3s;
}
.l-drawer__link:hover {
  color: #e8a157;
  padding-left: 0.5rem;
  opacity: 1;
}
.l-drawer__link:not(.is-current) {
  opacity: 0.7;
}
.l-drawer__link.is-current {
  color: #f5efe5;
  font-weight: 500;
  opacity: 1;
}
.l-drawer__actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.625rem;
}
.l-drawer__actions > * {
  flex: 1;
}

.l-drawer__btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.125rem 1rem;
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  color: #f5efe5;
  border: 1px solid #f5efe5;
  border-radius: 0.25rem;
  transition: color 0.3s, border-color 0.3s;
}
.l-drawer__btn-outline:hover {
  color: #e8a157;
  border-color: #e8a157;
}

/* =========================================
   l-drawer-backdrop : ドロワー背景の暗幕
   ========================================= */
.l-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.l-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* =========================================
   l-footer : 共通フッター（ダーク・ブランド＋3カラム）
   ========================================= */
.l-footer {
  background: #070b14;
  color: #c9c3b6;
  font-size: 0.9375rem;
  padding: 3.75rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 5rem 3rem 2.5rem;
  }
}
.l-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 239, 229, 0.1);
}
@media screen and (min-width: 768px) {
  .l-footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    max-width: 77.5rem;
    margin: 0 auto;
  }
}
.l-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.l-footer__logo {
  margin-bottom: 1.5rem;
  line-height: 0;
  display: inline-block;
}
.l-footer__logo img {
  height: 3rem;
  width: auto;
  display: block;
  opacity: 0.92;
  transition: opacity 0.3s;
}
.l-footer__logo:hover img {
  opacity: 1;
}
.l-footer__company {
  display: none;
  font-size: 0.9375rem;
  line-height: 1.9;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__company {
    display: block;
  }
}
.l-footer__company a {
  color: #e8a157;
  border-bottom: 1px solid rgba(232, 161, 87, 0.4);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.l-footer__company a:hover {
  color: #f5b85e;
  border-color: #f5b85e;
}
.l-footer__icons {
  display: none;
  gap: 20px;
  margin-top: 1.5rem;
  padding: 0;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer__icons--pc {
    display: flex;
    gap: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .l-footer__icons--sp {
    display: flex;
  }
}
.l-footer__icon-link {
  display: inline-flex;
  transition: color 0.3s, opacity 0.3s;
}
.l-footer__icon-link svg {
  display: block;
  width: 20px;
  height: 20px;
}
.l-footer__icons--pc .l-footer__icon-link {
  color: #e8a157;
}
.l-footer__icons--pc .l-footer__icon-link:hover {
  color: #c9c3b6;
}
.l-footer__icons--sp .l-footer__icon-link {
  color: #c9c3b6;
}
.l-footer__icons--sp .l-footer__icon-link:hover {
  color: #e8a157;
}
.l-footer__col-title {
  display: none;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: #e8a157;
  text-transform: uppercase;
  margin-bottom: 1.125rem;
}
@media screen and (min-width: 768px) {
  .l-footer__col-title {
    display: block;
  }
}
.l-footer__col-list {
  list-style: none;
}
.l-footer__col-item {
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .l-footer__col-item--company {
    display: none;
  }
}
.l-footer__col--network {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer__col--network {
    display: block;
  }
}
.l-footer__col--sitemap .l-footer__col-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(245, 239, 229, 0.1);
}
.l-footer__col--sitemap .l-footer__col-item {
  margin-bottom: 0;
  padding: 1rem 0.75rem;
  border-right: 1px solid rgba(245, 239, 229, 0.1);
  border-bottom: 1px solid rgba(245, 239, 229, 0.1);
  text-align: center;
}
.l-footer__col--sitemap .l-footer__col-item:nth-child(even) {
  border-right: none;
}
@media screen and (min-width: 768px) {
  .l-footer__col--sitemap .l-footer__col-list {
    display: block;
    border: none;
  }
  .l-footer__col--sitemap .l-footer__col-item {
    margin-bottom: 0.625rem;
    padding: 0;
    border: none;
    text-align: left;
  }
}
.l-footer__col--legal .l-footer__col-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 0.625rem;
}
.l-footer__col--legal .l-footer__col-item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.l-footer__col--legal .l-footer__col-item:not(:last-child)::after {
  content: "｜";
  margin: 0 0.625rem;
  color: #c9c3b6;
}
.l-footer__col--legal .l-footer__col-item--company {
  flex-basis: 100%;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__col--legal .l-footer__col-list {
    display: block;
  }
  .l-footer__col--legal .l-footer__col-item:not(.l-footer__col-item--company) {
    display: list-item;
    margin-bottom: 0.625rem;
  }
  .l-footer__col--legal .l-footer__col-item:not(.l-footer__col-item--company):not(:last-child)::after {
    content: none;
  }
  .l-footer__col--legal .l-footer__col-item--company {
    display: none;
  }
}
.l-footer__col-link {
  color: #c9c3b6;
  transition: color 0.3s;
}
.l-footer__col-link:hover {
  color: #e8a157;
}
.l-footer__col-link.is-external {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}
.l-footer__col-link.is-external::after {
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23C9C3B6' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'><path d='M3 1.5h5.5V7'/><path d='M8.5 1.5L3 7'/><path d='M8.5 5.5v3H1.5v-7h3'/></svg>");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.75;
  transition: transform 0.3s, filter 0.3s, opacity 0.3s;
}
.l-footer__col-link.is-external:hover::after {
  opacity: 1;
  transform: translate(1px, -1px);
  filter: brightness(1.3) saturate(1.2);
}
.l-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
  text-align: center;
  padding-top: 1.875rem;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    max-width: 77.5rem;
    margin: 0 auto;
  }
}
.l-footer__copy {
  opacity: 0.7;
}
.l-footer__tagline {
  display: none;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .l-footer__tagline {
    display: inline;
  }
}

.c-btn {
  padding: 0.875rem 3.75rem;
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #000;
  border-radius: 3.125rem;
  background-color: #fff;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-btn:hover {
  transform: translateY(-0.125rem);
}

.c-btn.c-btn--black {
  color: #fff;
  background-color: #000;
}

.c-btn.c-btn--akari {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  padding: 1.125rem;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  color: #0f1726;
  background: linear-gradient(40deg, rgb(255, 170, 51) 0%, rgb(255, 193, 87) 85%);
  border: none;
  border-radius: 0.25rem;
  box-shadow: 0 0 1rem rgba(232, 161, 87, 0.25);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .c-btn.c-btn--akari {
    padding: 1.125rem;
    font-size: 0.8125rem;
  }
}
.c-btn.c-btn--akari:hover {
  filter: brightness(1.06);
  color: #0f1726;
  opacity: 1;
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1.5rem rgba(232, 161, 87, 0.4);
}

@media screen and (min-width: 768px) {
  .p-contact__complete .c-btn.c-btn--akari {
    width: 15.625rem;
    margin: 0 auto;
    display: block;
  }
}

.c-btn.c-btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: #1f1f1a;
  background-color: transparent;
  border: 1px solid #8a8a80;
  border-radius: 0.1875rem;
  text-transform: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-btn.c-btn--outline:hover {
  color: #fafaf7;
  background-color: #8a8a80;
  border-color: #8a8a80;
  transform: translateY(-0.125rem);
}

.c-btn.c-btn--outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: #f5efe5;
  background-color: transparent;
  border: 1px solid rgba(245, 239, 229, 0.1);
  border-radius: 0.125rem;
  text-transform: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-btn.c-btn--outline-light:hover {
  color: #0f1726;
  background-color: #f5efe5;
  border-color: #f5efe5;
  transform: translateY(-0.125rem);
}

.c-btn.c-btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.375rem;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  color: #5a5a52;
  background-color: #fafaf7;
  border: 1px solid #8a8a80;
  border-radius: 0.25rem;
  text-transform: none;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-btn.c-btn--ghost:hover {
  color: #fafaf7;
  background-color: #5a5a52;
  border-color: #5a5a52;
  transform: translateY(-0.125rem);
}

.c-arrow {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-btn:hover .c-arrow:not(.c-arrow--back),
.p-news-page__next:hover .c-arrow,
.p-activities-page__next:hover .c-arrow {
  transform: translateX(0.25rem);
}

.c-btn:hover .c-arrow--back,
.p-news-page__prev:hover .c-arrow--back,
.p-activities-page__prev:hover .c-arrow--back {
  transform: translateX(-0.25rem);
}

.c-cta-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 4.5rem 1.25rem 5.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-cta-banner {
    min-height: 47vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6.25rem 2.5rem;
  }
}
.c-cta-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.c-cta-banner__picture {
  display: contents;
}
.c-cta-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-cta-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(15, 20, 25, 0.5);
  pointer-events: none;
}
.c-cta-banner__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7.5rem;
  z-index: 1;
  background: linear-gradient(180deg, #1b2438 0%, rgba(27, 36, 56, 0.72) 34%, rgba(27, 36, 56, 0.36) 60%, rgba(27, 36, 56, 0.12) 80%, rgba(27, 36, 56, 0.03) 92%, rgba(27, 36, 56, 0) 100%);
  pointer-events: none;
}
.c-cta-banner__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-cta-banner__inner {
    max-width: 45rem;
  }
}
.c-cta-banner__title {
  color: #f5efe5;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin-bottom: 0.875rem;
  text-shadow: 0 2px 1.25rem rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .c-cta-banner__title {
    font-size: 3.125rem;
    margin-bottom: 1.125rem;
  }
}
.c-cta-banner__title-accent {
  color: #f5b85e;
}
.c-cta-banner__sub {
  color: #c9c3b6;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-cta-banner__sub {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .c-cta-banner__br-sp {
    display: none;
  }
}
.c-cta-banner__note {
  color: #c9c3b6;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .c-cta-banner__note {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }
}
.c-cta-banner__btn {
  min-width: 17.5rem;
}
.c-cta-banner__btn.c-btn--akari, .c-cta-banner__btn.c-btn--akari:hover {
  color: #f5efe5;
}
.c-cta-banner__btn.c-btn--akari {
  background: #d98a3c;
  font-weight: 400;
}
.c-cta-banner__btn::after {
  content: "→";
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-cta-banner__btn:hover::after {
  transform: translateX(0.25rem);
}

.c-page-hero {
  padding: 8.75rem 1.25rem 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, #f0ece3 0%, #fafaf7 100%);
}
@media screen and (min-width: 768px) {
  .c-page-hero {
    padding: 11.875rem 2.75rem 4.375rem;
  }
}
.c-page-hero__inner {
  width: 100%;
}
.c-page-hero__breadcrumb {
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .c-page-hero__breadcrumb {
    margin-bottom: 1.25rem;
  }
}
.c-page-hero__crumb {
  color: #d98a3c;
  transition: color 0.3s ease;
}
.c-page-hero__crumb:hover {
  color: #e8a157;
}
.c-page-hero__crumb--current {
  color: #8a8a80;
}
.c-page-hero__crumb--current:hover {
  color: #8a8a80;
}
.c-page-hero__sep {
  color: #8a8a80;
}
.c-page-hero__title {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .c-page-hero__title {
    font-size: 3.375rem;
  }
}
.c-page-hero__lead {
  max-width: 100%;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .c-page-hero__lead {
    max-width: 40rem;
    font-size: 0.9375rem;
    line-height: 2.1;
  }
}
@media screen and (min-width: 768px) {
  .c-page-hero--lead-wide .c-page-hero__lead {
    max-width: 48.75rem;
  }
}
.c-page-hero--lead-gap .c-page-hero__lead {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-page-hero--lead-gap .c-page-hero__lead {
    margin-top: 2.5rem;
  }
}

.c-floating-btn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  padding: 1.25rem 1.75rem;
  border-radius: 1.59375rem;
  background: #d98a3c;
  color: #f5efe5;
  text-decoration: none;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.625rem);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .c-floating-btn {
    right: 1.75rem;
    bottom: 1.75rem;
  }
}
.c-floating-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.c-floating-btn:hover {
  animation: c-floating-ripple 1.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.c-floating-btn__label {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .c-floating-btn__label {
    letter-spacing: 0.1em;
  }
}
.c-floating-btn__dot {
  margin-left: 0.625rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: #f5efe5;
  flex-shrink: 0;
}

@keyframes c-floating-ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 138, 60, 0.6);
  }
  70% {
    box-shadow: 0 0 0 0.625rem rgba(217, 138, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 138, 60, 0);
  }
}
.c-section-title {
  text-align: center;
}
.c-section-title__en {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 0.8125rem;
  }
}
.c-section-title__ja {
  display: block;
  margin-top: 0.625rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 200;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    margin-top: 0.875rem;
    font-size: 2.5rem;
  }
}
.c-section-title--light .c-section-title__en {
  color: #f5b85e;
}
.c-section-title--light .c-section-title__ja {
  color: #f5efe5;
}
.c-section-title--sm .c-section-title__ja {
  font-size: 1.625rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--sm .c-section-title__ja {
    font-size: 2rem;
  }
}
.c-section-title--left {
  text-align: left;
}
.c-section-title--left .c-section-title__en {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.c-section-title--left .c-section-title__en::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background-color: #e8a157;
}
@media screen and (min-width: 768px) {
  .c-section-title--left .c-section-title__en::before {
    width: 2rem;
  }
}
.c-section-title--left-sp {
  text-align: left;
}
.c-section-title--left-sp .c-section-title__en {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.c-section-title--left-sp .c-section-title__en::before {
  content: "";
  width: 1.25rem;
  height: 1px;
  background-color: #e8a157;
}
@media screen and (min-width: 768px) {
  .c-section-title--left-sp {
    text-align: center;
  }
  .c-section-title--left-sp .c-section-title__en {
    display: block;
  }
  .c-section-title--left-sp .c-section-title__en::before {
    content: none;
  }
}
.c-section-title--reverse {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-section-title--reverse .c-section-title__ja {
  order: 1;
  margin-top: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.c-section-title--reverse .c-section-title__ja::before, .c-section-title--reverse .c-section-title__ja::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(245, 239, 229, 0.1);
}
.c-section-title--reverse .c-section-title__en {
  order: 2;
  margin-top: 0.875rem;
}

.c-faq-banner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.125rem;
  max-width: 68.75rem;
  margin: 0 auto;
  padding: 1.25rem;
  background: rgba(240, 236, 227, 0.5);
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-faq-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    padding: 1.625rem 2rem;
  }
}
.c-faq-banner__body {
  font-size: 0.84375rem;
  line-height: 1.85;
  color: #1f1f1a;
}
.c-faq-banner__title {
  display: block;
  margin-bottom: 0.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .c-faq-banner__title {
    font-size: 0.9375rem;
  }
}
.c-faq-banner__text {
  display: block;
  font-size: 0.6875rem;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .c-faq-banner__text {
    font-size: 0.8125rem;
  }
}
.c-faq-banner__link {
  flex-shrink: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-faq-banner__link {
    width: 12.5rem;
  }
}

.c-form-field {
  margin-bottom: 1.625rem;
}
@media screen and (min-width: 768px) {
  .c-form-field {
    margin-bottom: 2.8125rem;
  }
}
.c-form-field__label {
  display: block;
  margin-bottom: 0.625rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .c-form-field__label {
    font-size: 1rem;
  }
}
.c-form-field__badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.125rem 0.4375rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  vertical-align: middle;
  border-radius: 0.125rem;
}
.c-form-field__badge--req {
  color: #fafaf7;
  background: #d98a3c;
}
.c-form-field__error {
  display: none;
  align-items: flex-start;
  gap: 0.375rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #8a4054;
}
.c-form-field__error::before {
  content: "";
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  margin-top: 0.125rem;
  background: url("../images/common/warning.svg") no-repeat center/contain;
}
.c-form-field.is-error .c-form-control {
  background: rgba(216, 127, 149, 0.08);
}
.c-form-field.is-error .c-form-field__error {
  display: flex;
}

.wpcf7-not-valid-tip {
  display: none;
}

.c-form-control.wpcf7-not-valid {
  background: rgba(216, 127, 149, 0.08);
}

.wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  border-radius: 0.25rem;
}

.c-form-control {
  width: 100%;
  padding: 0.8125rem 0.875rem;
  font-family: inherit;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #1f1f1a;
  background: #ffffff;
  border: none;
  border-radius: 0.1875rem;
  transition: box-shadow 0.3s, background 0.3s;
}
.c-form-control::placeholder {
  color: #8a8a80;
}
.c-form-control:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(232, 161, 87, 0.12);
}
.c-form-control--textarea {
  min-height: 10rem;
  line-height: 1.9;
  resize: vertical;
}
.c-form-control--select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.375rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238A8A80' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'><path d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.75rem;
}

.c-form-consent {
  margin: 2.1875rem 0 2.1875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-form-consent {
    margin: 3.125rem 0 3.125rem;
    text-align: center;
  }
}
.c-form-consent__box {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.85;
  color: #5a5a52;
  cursor: pointer;
}
.c-form-consent__input {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background-color: #ffffff;
  border: 1px solid #d9d3c3;
  border-radius: 0.1875rem;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}
.c-form-consent__input:checked {
  background-color: #d98a3c;
  border-color: #d98a3c;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M1.5 5.5l3 3 6-6.5'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.6875rem 0.5625rem;
}
.c-form-consent__link {
  color: #d98a3c;
  border-bottom: 1px solid rgba(232, 161, 87, 0.4);
  transition: color 0.3s, border-color 0.3s;
}
.c-form-consent__link:hover {
  color: #e8a157;
  border-color: #e8a157;
}
.c-form-consent__error {
  display: none;
  justify-content: flex-start;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #8a4054;
}
@media screen and (min-width: 768px) {
  .c-form-consent__error {
    justify-content: center;
  }
}
.c-form-consent__error::before {
  content: "";
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  background: url("../images/common/warning.svg") no-repeat center/contain;
}
.c-form-consent.is-error .c-form-consent__error {
  display: flex;
}

.c-form-message {
  margin-top: 1rem;
  padding: 1.125rem 1.25rem;
  font-size: 0.84375rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  border-radius: 0.25rem;
}
.c-form-message--success {
  color: #4a6a3c;
  background: rgba(124, 163, 96, 0.1);
  border-left: 3px solid #7ca360;
}
.c-form-message--error {
  color: #8a4054;
  background: rgba(216, 127, 149, 0.08);
  border-left: 3px solid #d87f95;
}

.c-confirm-row {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-confirm-row {
    margin-bottom: 2.8125rem;
  }
}
.c-confirm-row__label {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 0.78125rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .c-confirm-row__label {
    font-size: 1rem;
  }
}
.c-confirm-row__badge {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.125rem 0.4375rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  vertical-align: middle;
  border-radius: 0.125rem;
  color: #fafaf7;
  background: #d98a3c;
}
.c-confirm-row__value {
  display: block;
  padding: 0.8125rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1.85;
  color: #5a5a52;
  background: #f0ece3;
  border-radius: 0.1875rem;
  white-space: pre-wrap;
  word-break: break-word;
  min-height: 3.25rem;
}
.c-confirm-row__value--textarea {
  min-height: 10rem;
}

.c-value-card {
  border-bottom: 1px solid rgba(245, 239, 229, 0.12);
}
.c-value-card__heading {
  margin: 0;
  font-weight: inherit;
}
.c-value-card__head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "index toggle" "title toggle";
  align-items: center;
  gap: 0.375rem 0.75rem;
  padding: 1.25rem 0.25rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.c-value-card__index {
  grid-area: index;
  font-family: "Manrope", sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #e8a157;
}
@media screen and (min-width: 768px) {
  .c-value-card__index {
    font-size: 0.8125rem;
  }
}
.c-value-card__num {
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .c-value-card__num {
    font-size: 0.8125rem;
  }
}
.c-value-card__sep {
  margin: 0 0.375rem;
}
.c-value-card__en {
  text-transform: uppercase;
}
.c-value-card__title {
  grid-area: title;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #f5efe5;
}
@media screen and (min-width: 768px) {
  .c-value-card__title {
    font-size: 1.0625rem;
  }
}
.c-value-card__toggle {
  grid-area: toggle;
  position: relative;
  width: 1.375rem;
  height: 1.375rem;
  flex-shrink: 0;
}
.c-value-card__toggle::before, .c-value-card__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #e8a157;
  transition: opacity 0.3s;
}
.c-value-card__toggle::before {
  width: 0.6875rem;
  height: 1px;
  transform: translate(-50%, -50%);
}
.c-value-card__toggle::after {
  width: 1px;
  height: 0.6875rem;
  transform: translate(-50%, -50%);
}
.c-value-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-value-card__text {
  padding: 0 0.25rem 1.25rem;
  font-size: 0.8125rem;
  line-height: 2;
  color: #c9c3b6;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-value-card__text {
    font-size: 0.9375rem;
  }
}
.c-value-card.is-open .c-value-card__toggle::after {
  opacity: 0;
}
.c-value-card.is-open .c-value-card__body {
  max-height: 20rem;
}
@media screen and (min-width: 768px) {
  .c-value-card {
    height: 100%;
    padding: 2.5rem 2rem;
    background-color: rgba(42, 53, 80, 0.3);
    border: 1px solid #e8a157;
    border-radius: 0.25rem;
    text-align: center;
  }
  .c-value-card .c-value-card__head {
    display: block;
    padding: 0;
    cursor: default;
    pointer-events: none;
    text-align: center;
  }
  .c-value-card .c-value-card__index {
    display: block;
  }
  .c-value-card .c-value-card__title {
    display: block;
    margin-top: 0.875rem;
    font-size: 1.25rem;
  }
  .c-value-card .c-value-card__toggle {
    display: none;
  }
  .c-value-card .c-value-card__text {
    padding: 0;
    margin-top: 0.75rem;
  }
  .c-value-card .c-value-card__body, .c-value-card.is-open .c-value-card__body {
    max-height: none;
    overflow: visible;
  }
}

.c-benefit-card {
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: rgba(42, 53, 80, 0.4);
  border: 1px solid rgba(232, 161, 87, 0.4);
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-benefit-card {
    gap: 1.75rem;
    padding: 2rem;
  }
}
.c-benefit-card__body {
  flex: 1;
  min-width: 0;
}
.c-benefit-card__num {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: #e8a157;
}
@media screen and (min-width: 768px) {
  .c-benefit-card__num {
    font-size: 0.8125rem;
  }
}
.c-benefit-card__num::before {
  content: "";
  width: 0.9375rem;
  height: 1px;
  background-color: #e8a157;
}
.c-benefit-card__status {
  display: block;
  font-size: 0.75rem;
  color: #e8a157;
  letter-spacing: 0.06em;
  margin-top: 1rem;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .c-benefit-card__status {
    margin-top: 1.875rem;
  }
}
.c-benefit-card__status + .c-benefit-card__title {
  margin-top: 0;
}
.c-benefit-card__title {
  margin-top: 1rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: #f5efe5;
}
@media screen and (min-width: 768px) {
  .c-benefit-card__title {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    white-space: nowrap;
  }
}
.c-benefit-card__text {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .c-benefit-card__text {
    font-size: 0.8125rem;
  }
}
.c-benefit-card__thumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-benefit-card__thumb {
    display: block;
    flex-shrink: 0;
    align-self: flex-end;
    width: 6.375rem;
  }
}
.c-benefit-card__thumb img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 0.125rem;
  display: block;
}

.c-plan-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  background-color: #fafaf7;
  border: 2px solid #d9d3c3;
  border-radius: 0.125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-plan-card {
    text-align: left;
    padding: 2.75rem 2.25rem;
  }
}
.c-plan-card--individual {
  border-color: #d98a3c;
  box-shadow: 0 0.25rem 1rem rgba(232, 161, 87, 0.25);
}
.c-plan-card--individual .c-plan-card__price {
  color: #e8a157;
}
.c-plan-card--corporate {
  box-shadow: 0 0.25rem 1.25rem rgba(31, 31, 26, 0.04);
}
.c-plan-card__tag {
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5a5a52;
}
.c-plan-card__name {
  margin-top: 1.875rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .c-plan-card__name {
    font-size: 1.5rem;
  }
}
.c-plan-card__price {
  margin-top: 3rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .c-plan-card__price {
    font-size: 3.5rem;
  }
}
.c-plan-card__currency {
  font-size: 1.5rem;
  margin-right: 0.125rem;
  color: #5a5a52;
}
.c-plan-card__per {
  font-size: 0.875rem;
  color: #5a5a52;
}
.c-plan-card__notes {
  margin-top: 0.9375rem;
  text-align: left;
}
.c-plan-card__notes li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #8a8a80;
}
.c-plan-card__notes li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #8a8a80;
}
.c-plan-card__notes li + li {
  margin-top: 0.375rem;
}
.c-plan-card__desc {
  margin-top: 0.9375rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #5a5a52;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-plan-card__desc {
    margin-top: 1.875rem;
  }
}
.c-plan-card__features {
  display: none;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .c-plan-card__features {
    display: block;
    margin-top: 1.875rem;
  }
}
.c-plan-card__features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #5a5a52;
}
.c-plan-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d98a3c;
  font-weight: 700;
}
.c-plan-card__features li + li {
  margin-top: 1.625rem;
}
.c-plan-card__guide {
  margin-top: 1.25rem;
  font-size: 0.6875rem;
  line-height: 1.7;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .c-plan-card__guide {
    font-size: 0.8125rem;
  }
}
.c-plan-card__btn {
  width: 100%;
  max-width: 100%;
  align-self: flex-start;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .c-plan-card__btn {
    width: 15.625rem;
  }
}
.c-plan-card__btn.c-btn--akari {
  color: #ffffff;
  background: #d98a3c;
  font-weight: 400;
}
.c-plan-card__btn.c-btn--akari:hover {
  color: #ffffff;
}
.c-plan-card__btn.c-btn--outline {
  color: #8a8a80;
  border-color: #8a8a80;
}

.c-flow__steps {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid #d9d3c3;
  border-bottom: 1px solid #d9d3c3;
}
@media screen and (min-width: 768px) {
  .c-flow__steps {
    grid-template-columns: repeat(4, 1fr);
    border: none;
  }
}
.c-flow__step {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.875rem;
  padding: 1.75rem 1.5rem;
  text-align: left;
  border-top: 1px solid #d9d3c3;
}
.c-flow__step:first-child {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .c-flow__step {
    display: block;
    padding: 2.5rem 1.25rem;
    text-align: center;
    border-top: none;
    border-left: 1px solid #d9d3c3;
  }
  .c-flow__step:first-child {
    border-left: none;
  }
}
.c-flow__num {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 1;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .c-flow__num {
    display: block;
    font-size: 2.5rem;
  }
}
.c-flow__title {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.375rem;
  font-weight: 400;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .c-flow__title {
    margin-top: 1.5rem;
    font-size: 1.625rem;
  }
}
.c-flow__text {
  flex-basis: 100%;
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.9;
  text-align: left;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .c-flow__text {
    font-size: 0.875rem;
    margin-top: 1.875rem;
  }
}

.c-voice-card {
  height: 100%;
  padding: 2rem 1.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 161, 87, 0.4);
  border-radius: 0.25rem;
}
.c-voice-card__quote {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  line-height: 0.6;
  color: #e8a157;
}
.c-voice-card__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2.1;
  color: #f5efe5;
}
.c-voice-card__meta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 161, 87, 0.4);
  font-size: 0.8125rem;
  color: #f5efe5;
}
.c-voice-card__meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 500;
  color: #f5efe5;
}

.c-article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #ffffff;
  border: 1px solid #d9d3c3;
  border-radius: 0.5rem;
  overflow: hidden;
}
.c-article-card__thumb {
  overflow: hidden;
}
.c-article-card__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.c-article-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}
@media screen and (min-width: 768px) {
  .c-article-card__body {
    padding-top: 1.875rem;
  }
}
.c-article-card__title {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  color: #1f1f1a;
  transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .c-article-card__title {
    font-size: 1.0625rem;
  }
}
.c-article-card__excerpt {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-article-card__excerpt {
    display: block;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
    font-size: 0.8125rem;
    line-height: 1.9;
    color: #5a5a52;
  }
}
.c-article-card__meta {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-article-card__meta {
    margin-top: auto;
    padding-top: 0.875rem;
    border-top: 1px solid #d9d3c3;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.c-article-card__cat {
  font-size: 0.75rem;
  color: #5a5a52;
}
.c-article-card__time {
  font-size: 0.75rem;
  color: #8a8a80;
}
.c-article-card:hover .c-article-card__thumb img {
  transform: scale(1.1) rotate(0.1deg);
}
.c-article-card:hover .c-article-card__title {
  color: #d98a3c;
}

.c-news-item {
  display: block;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(245, 239, 229, 0.12);
}
@media screen and (min-width: 768px) {
  .c-news-item {
    display: grid;
    grid-template-columns: 8.75rem 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 0.5rem;
  }
}
.c-news-item__date {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  color: #e8a157;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .c-news-item__date {
    font-size: 0.75rem;
  }
}
.c-news-item__title {
  margin-top: 0.5rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #f5efe5;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .c-news-item__title {
    margin-top: 0;
    font-size: 0.875rem;
  }
}
.c-news-item__arrow {
  display: none;
  color: #e8a157;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .c-news-item__arrow {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .c-news-item:hover .c-news-item__date,
  .c-news-item:hover .c-news-item__title {
    transform: translateX(0.625rem);
  }
}
.c-news-item:hover .c-news-item__arrow {
  transform: translateX(0.625rem);
}
.c-news-item--light {
  border-bottom-color: #d9d3c3;
}
@media screen and (min-width: 768px) {
  .c-news-item--light {
    grid-template-columns: 8.75rem 1fr;
  }
}
.c-news-item--light .c-news-item__date {
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #d98a3c;
}
.c-news-item--light .c-news-item__title {
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #1f1f1a;
  transition: color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .c-news-item--light:hover .c-news-item__date,
  .c-news-item--light:hover .c-news-item__title {
    transform: translateX(0.625rem);
  }
}
.c-news-item--light:hover .c-news-item__title {
  color: #d98a3c;
}

.c-faq__item {
  border-bottom: 1px solid #d9d3c3;
}
.c-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.375rem 0.5rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}
.c-faq__q::before {
  content: "Q";
  flex-shrink: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: #d98a3c;
}
.c-faq__q-text {
  flex: 1;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1f1f1a;
}
.c-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #d98a3c;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(217, 138, 60, 0.25);
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
}
.c-faq__toggle::before, .c-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #ffffff;
  transition: background-color 0.3s;
}
.c-faq__toggle::before {
  width: 0.6875rem;
  height: 1px;
  transform: translate(-50%, -50%);
}
.c-faq__toggle::after {
  width: 1px;
  height: 0.6875rem;
  transform: translate(-50%, -50%);
}
.c-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.c-faq__a-inner {
  padding: 0 0.5rem 1.5rem 2.125rem;
  font-size: 0.875rem;
  line-height: 2;
  color: #5a5a52;
}
.c-faq__a-inner a {
  color: #d98a3c;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.c-faq__a-inner a:hover {
  opacity: 0.7;
}
.c-faq__item.is-open .c-faq__toggle {
  transform: rotate(45deg);
  background-color: #fafaf7;
  box-shadow: none;
}
.c-faq__item.is-open .c-faq__toggle::before, .c-faq__item.is-open .c-faq__toggle::after {
  background-color: #d98a3c;
}
.c-faq__item.is-open .c-faq__a {
  max-height: 25rem;
}

.p-contact {
  padding: 0rem 1.625rem 5rem;
  background: #fafaf7;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 0rem 2.75rem 6.875rem;
  }
}
.p-contact__inner {
  max-width: 50rem;
  margin: 0 auto;
}
.p-contact__faq {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-contact__faq {
    margin-bottom: 3.75rem;
  }
}
.p-contact__lead {
  margin-bottom: 3.125rem;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-contact__lead {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 0.9375rem;
  }
}
.p-contact__form {
  padding: 0rem 0rem 2rem;
  background: #fafaf7;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    padding: 1.375rem 0rem 3rem;
  }
}
.p-contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
}
.p-contact__submit .wpcf7-spinner {
  position: absolute;
}
.p-contact__submit .c-btn {
  width: 100%;
  color: #ffffff;
  background: #e8a157;
  background-image: none;
  box-shadow: none;
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .p-contact__submit .c-btn {
    width: 15.625rem;
  }
}
.p-contact__submit .c-btn:hover {
  color: #ffffff;
  background: #f5b85e;
  transform: translateY(-0.125rem);
}
.p-contact__confirm-title {
  padding-top: 8.125rem;
  margin-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm-title {
    padding-top: 11.875rem;
    margin-bottom: 2.25rem;
  }
}
.p-contact__confirm-title .c-section-title__ja {
  font-size: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm-title .c-section-title__ja {
    font-size: 3.375rem;
  }
}
.p-contact__confirm-lead {
  margin-bottom: 2rem;
  font-size: 0.875rem;
  line-height: 1.9;
  text-align: left;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm-lead {
    margin-bottom: 2.5rem;
    font-size: 0.9375rem;
    text-align: center;
  }
}
.p-contact__confirm-list {
  margin-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm-list {
    margin-bottom: 3.125rem;
  }
}
.p-contact__confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.p-contact__confirm-actions .wpcf7-spinner {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.25rem;
  }
}
.p-contact__confirm-actions .c-btn,
.p-contact__confirm-actions > input.c-btn,
.p-contact__confirm-actions > button.c-btn {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm-actions .c-btn,
  .p-contact__confirm-actions > input.c-btn,
  .p-contact__confirm-actions > button.c-btn {
    width: 15.625rem;
  }
}
.p-contact__confirm-actions .c-btn--akari {
  color: #ffffff;
  background: #e8a157;
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-contact__confirm-actions .c-btn--akari:hover {
  color: #ffffff;
  transform: translateY(-0.125rem);
}
.p-contact__confirm-actions-send {
  order: 1;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm-actions-send {
    order: 2;
  }
}
.p-contact__confirm-actions-edit {
  order: 2;
}
@media screen and (min-width: 768px) {
  .p-contact__confirm-actions-edit {
    order: 1;
  }
}
.p-contact__complete {
  max-width: 45rem;
  margin: 0 auto;
  padding-top: 8.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact__complete {
    padding-top: 11.875rem;
  }
}
.p-contact__complete .c-btn--akari {
  color: #ffffff;
  width: 100%;
  background: #e8a157;
  transition: filter 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-contact__complete .c-btn--akari:hover {
  color: #ffffff;
  transform: translateY(-0.125rem);
}
.p-contact__complete-title {
  margin-bottom: 1.75rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.875rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-contact__complete-title {
    margin-bottom: 2.25rem;
    font-size: 2.5rem;
  }
}
.p-contact__complete-text {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-contact__complete-text {
    font-size: 0.9375rem;
  }
}
.p-contact__complete-note {
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  line-height: 1.85;
  color: #8a8a80;
}
.p-contact__complete-back {
  margin-top: 0.5rem;
}

.p-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0f1726;
}
.p-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-hero__picture {
  display: contents;
}
.p-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 38, 0.55) 0%, rgba(15, 23, 38, 0.35) 45%, rgba(15, 23, 38, 0.8) 100%);
}
.p-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.375rem 20px 6.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-hero__inner {
    text-align: left;
    padding: 10rem 25px 7.5rem;
  }
}
.p-hero__label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #e8a157;
}
@media screen and (min-width: 768px) {
  .p-hero__label {
    font-size: 0.6875rem;
  }
}
.p-hero__title {
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #f5efe5;
}
@media screen and (min-width: 768px) {
  .p-hero__title {
    font-size: 3.75rem;
  }
}
.p-hero__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin-top: 1.75rem;
  background-color: #e8a157;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-hero__title::after {
    margin-left: 0;
    margin-right: 0;
    width: 1.6em;
    margin-top: 3.125rem;
  }
}
.p-hero__lead {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .p-hero__lead {
    font-size: 0.9375rem;
    margin-top: 3.75rem;
  }
}
.p-hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-hero__ctas {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}
.p-hero__ctas .c-btn {
  width: 12.5rem;
  height: 3rem;
}
@media screen and (min-width: 768px) {
  .p-hero__ctas .c-btn {
    width: 11.25rem;
  }
}
.p-hero__ctas .akari {
  color: #f5efe5;
  width: 10.375rem;
}
@media screen and (min-width: 768px) {
  .p-hero__ctas .akari {
    width: 11.25rem;
  }
}
.p-hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.p-hero__scroll-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9c3b6;
}
.p-hero__scroll-line {
  position: relative;
  width: 1px;
  height: 3.75rem;
  overflow: hidden;
  background-color: rgba(245, 239, 229, 0.12);
}
.p-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background: linear-gradient(180deg, transparent, #c9c3b6);
  animation: hero-scroll-down 1.8s cubic-bezier(0.5, 0, 0.75, 0) infinite;
}

@keyframes hero-scroll-down {
  0% {
    transform: translateY(-1.5rem);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(3.75rem);
    opacity: 0;
  }
}
.p-about {
  position: relative;
  background-color: #0f1726;
  overflow-x: clip;
  margin-bottom: -0.0625rem;
}
.p-about__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px 3.75rem clamp(20px, 4vw, 3rem);
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    margin-bottom: 0rem;
    padding: 7.5rem 25px 9.375rem clamp(25px, 4vw, 3rem);
  }
}
.p-about__title {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    grid-area: title;
  }
}
.p-about__grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-about__grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    grid-template-areas: "title media" "body  media";
    align-items: stretch;
    column-gap: 4rem;
    row-gap: 1.75rem;
  }
}
.p-about__body {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-about__body {
    grid-area: body;
  }
}
.p-about__text {
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #c9c3b6;
}
.p-about__text + .p-about__text {
  margin-top: 1.5rem;
}
.p-about__stats {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 229, 0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about__stats {
    gap: 3rem;
  }
}
.p-about__stat {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  column-gap: 0.5rem;
}
.p-about__stat-num {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1;
  color: #e8a157;
}
@media screen and (min-width: 768px) {
  .p-about__stat-num {
    font-size: 3rem;
  }
}
.p-about__stat-unit {
  font-size: 0.875rem;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .p-about__stat-unit {
    font-size: 1.125rem;
  }
}
.p-about__stat-plus {
  margin-left: 0.0625rem;
}
.p-about__stat-label {
  flex-basis: 100%;
  margin-top: 0.625rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .p-about__stat-label {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-about__media {
    grid-area: media;
    position: relative;
    margin-right: calc((100% - 100vw) / 2);
    overflow: hidden;
    border-radius: 0.5rem 0 0 0.5rem;
    min-height: 40rem;
  }
}
.p-about__media img {
  width: 100%;
  height: 34.75rem;
  object-fit: cover;
  object-position: center;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center 72%;
    transform: translateX(-12%);
    border-radius: 0.5rem 0 0 0.5rem;
  }
}

.p-promise {
  background-color: #0f1726;
}
.p-promise__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.75rem 20px 5rem;
}
@media screen and (min-width: 768px) {
  .p-promise__inner {
    padding: 0rem 25px 7.5rem;
  }
}
.p-promise__title {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-promise__title {
    margin-bottom: 4rem;
  }
}
.p-promise__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(245, 239, 229, 0.12);
}
@media screen and (min-width: 768px) {
  .p-promise__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem 1.5rem;
    border-top: none;
  }
}
@media screen and (min-width: 768px) {
  .p-promise__item {
    grid-column: span 2;
  }
}
@media screen and (min-width: 768px) {
  .p-promise__item:nth-child(4) {
    grid-column: 2/span 2;
  }
}
@media screen and (min-width: 768px) {
  .p-promise__item:nth-child(5) {
    grid-column: 4/span 2;
  }
}

.p-parallax {
  position: relative;
  overflow: hidden;
  background-color: #0f1726;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18.75rem;
}
@media screen and (min-width: 768px) {
  .p-parallax {
    height: 23.125rem;
  }
}
.p-parallax__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-parallax__picture {
  display: contents;
}
.p-parallax__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  transform: scale(1.15);
}
@media screen and (min-width: 768px) {
  .p-parallax__img {
    height: 140%;
    top: 0;
    position: absolute;
    left: 0;
    transform: none;
  }
}
.p-parallax__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(15, 23, 38, 0.38);
}
.p-parallax__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px 4.375rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-parallax__inner {
    padding: 5rem 25px;
  }
}
.p-parallax__mark {
  font-family: "Manrope", sans-serif;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f5b85e;
}
@media screen and (min-width: 768px) {
  .p-parallax__mark {
    font-size: 0.8125rem;
  }
}
.p-parallax__quote {
  margin-top: 1.5rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.375rem;
  font-weight: 300;
  line-height: 2;
  color: #f5efe5;
}
@media screen and (min-width: 768px) {
  .p-parallax__quote {
    letter-spacing: 0.06em;
    font-size: 2.5rem;
    line-height: 1.9;
  }
}
.p-parallax__accent {
  color: #f5b85e;
}
.p-parallax__caption {
  margin-top: 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .p-parallax__caption {
    font-size: 0.875rem;
  }
}

.p-akari {
  background-color: #1b2438;
  background-image: linear-gradient(180deg, #0f1726 0%, #0f1726 30%, rgba(15, 23, 38, 0) 100%);
  background-repeat: no-repeat;
  background-size: 100% 27.5rem;
}
@media screen and (min-width: 768px) {
  .p-akari {
    background-size: 100% 26.25rem;
  }
}
.p-akari__inner {
  max-width: 51.25rem;
  margin: 0 auto;
  padding: 5rem 20px 2.5rem;
  margin-bottom: -0.0625rem;
}
@media screen and (min-width: 768px) {
  .p-akari__inner {
    text-align: center;
    margin-bottom: 0rem;
    padding: 5.625rem 25px 6.25rem;
  }
}
.p-akari__title {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-akari__title {
    margin-bottom: 3.125rem;
  }
}
.p-akari__text {
  font-size: 0.8125rem;
  line-height: 2.1;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .p-akari__text {
    text-align: center;
  }
}

.p-benefits {
  background-color: #1b2438;
  margin-bottom: -0.0625rem;
}
.p-benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 20px 5rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__inner {
    padding: 0.625rem 25px 7.5rem;
  }
}
.p-benefits__title {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__title {
    margin-bottom: 1.5rem;
  }
}
.p-benefits__lead {
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  color: #c9c3b6;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-benefits__lead {
    text-align: center;
    font-size: 0.9375rem;
    margin-bottom: 3.125rem;
  }
}
.p-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.p-benefits__more {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-benefits__more {
    margin-top: 3.5rem;
  }
}
.p-benefits__more .c-btn {
  min-width: 15.625rem;
  font-size: 0.8125rem;
}

.p-plans {
  position: relative;
  background-color: #fafaf7;
}
.p-plans::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12.5rem;
  z-index: 0;
  background: linear-gradient(180deg, #1b2438 0%, #40547a 20%, #b5ab9a 50%, #e5e1d8 78%, #fafaf7 100%);
  pointer-events: none;
}
.p-plans__inner {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
  padding: 11.25rem 20px 5rem;
}
@media screen and (min-width: 768px) {
  .p-plans__inner {
    padding: 13.75rem 25px 5.625rem;
  }
}
.p-plans__title {
  margin-bottom: 1.5rem;
}
.p-plans__lead {
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-plans__lead {
    font-size: 0.9375rem;
    margin-bottom: 3.5rem;
  }
}
.p-plans__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-plans__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.p-plans__more {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-plans__more {
    margin-top: 3rem;
  }
}
.p-plans__more .c-btn {
  min-width: 18.125rem;
  padding: 1.25rem 3rem;
  font-size: 0.8125rem;
  color: #8a8a80;
  background-color: transparent;
  border-color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .p-plans__more .c-btn {
    min-width: 15.625rem;
  }
}
.p-plans__more .c-btn:hover {
  color: #fafaf7;
  background-color: #8a8a80;
  border-color: #8a8a80;
}

.p-flow {
  background-color: #f0ece3;
}
.p-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.375rem 20px 5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding: 6.25rem 25px;
  }
}
.p-flow__title {
  margin-bottom: 1.5rem;
}
.p-flow__lead {
  margin-bottom: 3rem;
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-flow__lead {
    font-size: 0.9375rem;
    margin-bottom: 3.5rem;
  }
}
.p-flow__action {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-flow__action {
    margin-top: 3.5rem;
  }
}
.p-flow__action .c-btn--akari {
  width: 18.125rem;
  min-width: 0;
  color: #ffffff;
  background: #d98a3c;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-flow__action .c-btn--akari {
    width: 15.625rem;
  }
}
.p-flow__action .c-btn--akari:hover {
  color: #ffffff;
}
.p-flow__action .c-btn.c-btn--outline {
  min-width: 0;
  padding: 0.375rem 0.25rem;
  color: #938469;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d9d3c3;
  border-radius: 0;
}
.p-flow__action .c-btn.c-btn--outline:hover {
  color: #938469;
  background-color: transparent;
  border-bottom-color: #938469;
}

.p-voices {
  background-color: #0f1726;
}
.p-voices__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px;
}
@media screen and (min-width: 768px) {
  .p-voices__inner {
    padding: 6.25rem 25px;
  }
}
.p-voices__title {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-voices__title {
    margin-bottom: 4rem;
  }
}
.p-voices__lead {
  margin-top: -1.75rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.9;
  color: #c9c3b6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-voices__lead {
    margin-top: -2.5rem;
    margin-bottom: 3rem;
    font-size: 0.9375rem;
    line-height: 2.1;
  }
}
.p-voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-voices__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.p-activities {
  background-color: #fafaf7;
}
.p-activities__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.375rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-activities__inner {
    padding: 6.25rem 25px;
  }
}
.p-activities__title {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-activities__title {
    margin-bottom: 1.5rem;
  }
}
.p-activities__lead {
  margin-bottom: 3rem;
  font-size: 0.9375rem;
  line-height: 2;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-activities__lead {
    margin-bottom: 4rem;
  }
}
.p-activities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-activities__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.p-activities__more {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-activities__more {
    margin-top: 3.5rem;
  }
}
.p-activities__more .c-btn {
  min-width: 15.625rem;
  padding: 1.25rem 3rem;
  font-size: 0.8125rem;
  color: #8a8a80;
  background-color: transparent;
  border-color: #8a8a80;
}
.p-activities__more .c-btn:hover {
  color: #fafaf7;
  background-color: #8a8a80;
  border-color: #8a8a80;
}

.p-faq {
  background-color: #f0ece3;
}
.p-faq__inner {
  max-width: 55rem;
  margin: 0 auto;
  padding: 4.375rem 20px 5rem;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    padding: 6.25rem 25px;
  }
}
.p-faq__title {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-faq__title {
    margin-bottom: 3.5rem;
  }
}

.p-news {
  background-color: #1b2438;
}
.p-news__inner {
  max-width: 60rem;
  margin: 0 auto;
  padding: 4.375rem 20px 3.75rem;
  margin-bottom: -0.25rem;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    margin-bottom: 0rem;
    padding: 6.25rem 25px;
  }
}
.p-news__title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__title {
    margin-bottom: 3.5rem;
  }
}
.p-news__more {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__more {
    margin-top: 3rem;
  }
}
.p-news__more .c-btn {
  min-width: 15.625rem;
  border-color: #ffffff;
}
.p-news__more .c-btn:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}

.p-benefits-page__block {
  padding: 1.25rem 20px 3.125rem;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__block {
    padding: 2.5rem 25px 5.875rem;
    padding-inline: 0;
  }
}
.p-benefits-page__block--01 {
  background-color: #fafaf7;
}
.p-benefits-page__block--02 {
  padding-top: 3.125rem;
  background-color: #f0ece3;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__block--02 {
    padding-block: 4.375rem;
  }
}
.p-benefits-page__inner {
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto;
}
.p-benefits-page__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__row {
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
  }
}
.p-benefits-page__media {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__block--02 .p-benefits-page__media {
    order: 2;
  }
}
.p-benefits-page__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__block--02 .p-benefits-page__body {
    order: 1;
  }
}
.p-benefits-page__num {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__num {
    font-size: 0.8125rem;
  }
}
.p-benefits-page__title {
  margin-top: 1.3125rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__title {
    margin-top: 1.875rem;
    font-size: 2.5rem;
  }
}
.p-benefits-page__text {
  margin-top: 1.3125rem;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__text {
    margin-top: 3.75rem;
    font-size: 0.9375rem;
    line-height: 2.1;
  }
}
.p-benefits-page__list {
  margin-top: 1.125rem;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__list {
    font-size: 0.8125rem;
    margin-top: 1.25rem;
  }
}
.p-benefits-page__item {
  position: relative;
  padding: 0.625rem 0 0.625rem 1.75rem;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #5a5a52;
}
.p-benefits-page__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d98a3c;
  font-weight: 700;
}
.p-benefits-page__note {
  margin-top: 1.125rem;
  padding: 0.875rem 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #5a5a52;
  background-color: #f0ece3;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-benefits-page__note {
    font-size: 0.8125rem;
    margin-top: 1.25rem;
  }
}

.p-activities-page {
  padding-block: 1.25rem 3.75rem;
  background-color: #fafaf7;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-activities-page {
    padding-block: 1.875rem 6.25rem;
  }
}
.p-activities-page__inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-activities-page__inner {
    padding-inline: 25px;
  }
}
.p-activities-page__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-activities-page__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.875rem;
  }
}
.p-activities-page .c-article-card__thumb img {
  aspect-ratio: 16/9;
}
.p-activities-page .c-article-card__title {
  font-weight: 300;
}
.p-activities-page .c-article-card__excerpt {
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #5a5a52;
}
.p-activities-page .c-article-card__meta {
  margin-top: auto;
  padding-top: 0.875rem;
  border-top: 1px solid #d9d3c3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-activities-page__pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-activities-page__pager {
    margin-top: 3.75rem;
  }
}
.p-activities-page__break {
  flex-basis: 100%;
  height: 0;
}
@media screen and (min-width: 768px) {
  .p-activities-page__break {
    display: none;
  }
}
.p-activities-page__page {
  padding: 0.625rem 0.875rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #5a5a52;
  border: 1px solid #d9d3c3;
  border-radius: 0.1875rem;
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .p-activities-page__page {
    padding: 0.625rem 1rem;
  }
}
.p-activities-page__page:hover {
  background-color: #d98a3c;
  color: #f5efe5;
  transform: translateY(-0.125rem);
}
.p-activities-page__page.is-current {
  background-color: #d98a3c;
  color: #f5efe5;
}
.p-activities-page__ellipsis {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #8a8a80;
}
.p-activities-page__prev, .p-activities-page__next {
  margin-top: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #5a5a52;
  border: 1px solid #d9d3c3;
  border-radius: 0.1875rem;
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .p-activities-page__prev, .p-activities-page__next {
    margin-top: 0;
    padding: 0.625rem 1rem;
  }
}
.p-activities-page__prev:hover, .p-activities-page__next:hover {
  background-color: #d98a3c;
  color: #f5efe5;
  transform: translateY(-0.125rem);
}
@media screen and (min-width: 768px) {
  .p-activities-page__prev {
    display: none;
  }
}
.p-activities-page__prev.is-hidden {
  display: none;
}

.p-activities-detail {
  background-color: #fafaf7;
  color: #1f1f1a;
}
.p-activities-detail__head {
  padding-top: 6.25rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__head {
    padding-top: 11.875rem;
    padding-bottom: 2.5rem;
  }
}
.p-activities-detail__inner {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__inner {
    padding-inline: 25px;
  }
}
.p-activities-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__breadcrumb {
    margin-bottom: 1rem;
  }
}
.p-activities-detail__crumb {
  color: #d98a3c;
  transition: color 0.3s;
}
.p-activities-detail__crumb:hover {
  color: #e8a157;
}
.p-activities-detail__crumb--current {
  color: #d98a3c;
}
.p-activities-detail__sep {
  color: #8a8a80;
}
.p-activities-detail__title {
  margin-bottom: 1.875rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__title {
    margin-bottom: 2.5rem;
    font-size: 2.375rem;
    line-height: 1.4;
  }
}
.p-activities-detail__rule {
  width: 100%;
  height: 1px;
  background-color: #d9d3c3;
}
.p-activities-detail__hero-img {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__hero-img {
    margin-bottom: 2.5rem;
    padding-inline: 25px;
  }
}
.p-activities-detail__hero-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.p-activities-detail__body {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  padding-inline: 20px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__body {
    padding-inline: 25px;
    padding-bottom: 5rem;
  }
}
.p-activities-detail__heading {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__heading {
    margin-top: 3.75rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
  }
}
.p-activities-detail__heading--dot {
  position: relative;
  padding-left: 1.375rem;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__heading--dot {
    font-size: 1.125rem;
  }
}
.p-activities-detail__heading--dot::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #e8a157;
}
.p-activities-detail__text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__text {
    font-size: 0.9375rem;
  }
}
.p-activities-detail__text + .p-activities-detail__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__text + .p-activities-detail__text {
    margin-top: 1.5rem;
  }
}
.p-activities-detail__text a {
  color: #d98a3c;
  text-decoration: underline;
  transition: color 0.3s;
}
.p-activities-detail__text a:hover {
  color: #e8a157;
}
.p-activities-detail__back {
  text-align: center;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-activities-detail__back {
    padding-bottom: 6.25rem;
  }
}

.p-news-page {
  padding-block: 1.875rem 5rem;
  background-color: #fafaf7;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-news-page {
    padding-block: 3.125rem 6.25rem;
  }
}
.p-news-page__inner {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-news-page__inner {
    padding-inline: 25px;
  }
}
.p-news-page__list {
  list-style: none;
}
.p-news-page__pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-page__pager {
    margin-top: 3.75rem;
  }
}
.p-news-page__break {
  flex-basis: 100%;
  height: 0;
}
@media screen and (min-width: 768px) {
  .p-news-page__break {
    display: none;
  }
}
.p-news-page__page {
  padding: 0.625rem 0.875rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #5a5a52;
  border: 1px solid #d9d3c3;
  border-radius: 0.1875rem;
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .p-news-page__page {
    padding: 0.625rem 1rem;
  }
}
.p-news-page__page:hover {
  background-color: #d98a3c;
  color: #f5efe5;
  transform: translateY(-0.125rem);
}
.p-news-page__page.is-current {
  background-color: #d98a3c;
  color: #f5efe5;
}
.p-news-page__ellipsis {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #8a8a80;
}
.p-news-page__prev, .p-news-page__next {
  margin-top: 0.5rem;
  padding: 0.625rem 0.875rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  color: #5a5a52;
  border: 1px solid #d9d3c3;
  border-radius: 0.1875rem;
  transition: background-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (min-width: 768px) {
  .p-news-page__prev, .p-news-page__next {
    margin-top: 0;
    padding: 0.625rem 1rem;
  }
}
.p-news-page__prev:hover, .p-news-page__next:hover {
  background-color: #d98a3c;
  color: #f5efe5;
  transform: translateY(-0.125rem);
}
@media screen and (min-width: 768px) {
  .p-news-page__prev {
    display: none;
  }
}
.p-news-page__prev.is-hidden {
  display: none;
}

.p-news-detail {
  background-color: #fafaf7;
  color: #1f1f1a;
}
.p-news-detail__head {
  padding-top: 6.25rem;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__head {
    padding-top: 11.875rem;
    padding-bottom: 2.5rem;
  }
}
.p-news-detail__inner {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-news-detail__inner {
    padding-inline: 25px;
  }
}
.p-news-detail__back-link {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 400;
  font-size: 0.8125rem;
  color: #d98a3c;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news-detail__back-link {
    margin-bottom: 1rem;
  }
}
.p-news-detail__back-link:hover {
  color: #e8a157;
}
.p-news-detail__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .p-news-detail__breadcrumb {
    margin-bottom: 1rem;
  }
}
.p-news-detail__crumb {
  color: #d98a3c;
  transition: color 0.3s;
}
.p-news-detail__crumb:hover {
  color: #e8a157;
}
.p-news-detail__crumb--current {
  color: #d98a3c;
}
.p-news-detail__sep {
  color: #8a8a80;
}
.p-news-detail__title {
  margin-bottom: 1.875rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.625rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-news-detail__title {
    margin-bottom: 2.5rem;
    font-size: 2.375rem;
    line-height: 1.4;
  }
}
.p-news-detail__rule {
  width: 100%;
  height: 1px;
  background-color: #d9d3c3;
}
.p-news-detail__hero-img {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-news-detail__hero-img {
    margin-bottom: 2.5rem;
    padding-inline: 25px;
  }
}
.p-news-detail__hero-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.p-news-detail__body {
  width: 100%;
  max-width: 55rem;
  margin-inline: auto;
  padding-inline: 20px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__body {
    padding-inline: 25px;
    padding-bottom: 3.5rem;
  }
}
.p-news-detail__heading {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.6;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-news-detail__heading {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.375rem;
  }
}
.p-news-detail__heading--dot {
  position: relative;
  padding-left: 1.375rem;
}
.p-news-detail__heading--dot::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #e8a157;
}
.p-news-detail__text {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-news-detail__text {
    font-size: 0.9375rem;
  }
}
.p-news-detail__text + .p-news-detail__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__text + .p-news-detail__text {
    margin-top: 1.5rem;
  }
}
.p-news-detail__text a {
  color: #d98a3c;
  text-decoration: underline;
  transition: color 0.3s;
}
.p-news-detail__text a:hover {
  color: #e8a157;
}
.p-news-detail__back {
  text-align: center;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__back {
    padding-bottom: 6.25rem;
  }
}

.p-corporate-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0f1726;
}
.p-corporate-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-corporate-hero__picture {
  display: contents;
}
.p-corporate-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-corporate-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 38, 0.55) 0%, rgba(15, 23, 38, 0.35) 45%, rgba(15, 23, 38, 0.85) 82%, rgb(15, 23, 38) 100%);
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__overlay {
    background: linear-gradient(180deg, rgba(15, 23, 38, 0.55) 0%, rgba(15, 23, 38, 0.35) 45%, rgba(15, 23, 38, 0.8) 100%);
  }
}
.p-corporate-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 4.375rem 20px 6.25rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__inner {
    padding: 11.25rem 25px 11.25rem;
  }
}
.p-corporate-hero__breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.625rem;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__breadcrumb {
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
  }
}
.p-corporate-hero__crumb {
  color: #e8a157;
  transition: color 0.3s ease;
}
.p-corporate-hero__crumb:hover {
  color: #f5b85e;
}
.p-corporate-hero__crumb--current {
  color: #c9c3b6;
}
.p-corporate-hero__crumb--current:hover {
  color: #c9c3b6;
}
.p-corporate-hero__sep {
  margin: 0 0.125rem;
  color: #c9c3b6;
}
.p-corporate-hero__title {
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #f5efe5;
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__title {
    font-size: 2.75rem;
  }
}
.p-corporate-hero__title::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 1px;
  margin: 1.75rem 0 0;
  background-color: #e8a157;
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__title::after {
    width: 4rem;
    margin: 2.25rem 0 0;
  }
}
.p-corporate-hero__lead {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__lead {
    font-size: 0.9375rem;
    margin-top: 3.75rem;
  }
}
.p-corporate-hero__ctas {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__ctas {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }
}
.p-corporate-hero__ctas .c-btn {
  width: 18.125rem;
  font-size: 0.875rem;
  white-space: nowrap;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__ctas .c-btn {
    color: #0f1726;
  }
}
.p-corporate-hero__ctas .c-btn--akari {
  background: #d98a3c;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__ctas .c-btn--akari {
    width: 15rem;
  }
}
.p-corporate-hero__ctas .c-btn--akari::after {
  content: "→";
  margin-left: 0.625rem;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-corporate-hero__ctas .c-btn--akari:hover::after {
  transform: translateX(0.25rem);
}
.p-corporate-hero__ctas .c-btn--outline-light {
  padding-left: 1rem;
  padding-right: 1rem;
  color: #f5b85e;
  border-color: #f5b85e;
  background-color: rgba(245, 239, 229, 0);
}
@media screen and (min-width: 768px) {
  .p-corporate-hero__ctas .c-btn--outline-light {
    width: 16.25rem;
  }
}
.p-corporate-hero__ctas .c-btn--outline-light::before {
  content: "↓";
  margin-right: 0.625rem;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-corporate-hero__ctas .c-btn--outline-light:hover::before {
  transform: translateY(0.25rem);
}
.p-corporate-hero__scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.p-corporate-hero__scroll-text {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #c9c3b6;
}
.p-corporate-hero__scroll-line {
  position: relative;
  width: 1px;
  height: 3.75rem;
  overflow: hidden;
  background-color: rgba(245, 239, 229, 0.12);
}
.p-corporate-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background: linear-gradient(180deg, transparent, #c9c3b6);
  animation: hero-scroll-down 1.8s ease-in-out infinite;
}

.p-corporate-intro {
  background-color: #fafaf7;
}
.p-corporate-intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-intro__inner {
    padding: 5.625rem 25px 6.25rem;
  }
}
.p-corporate-intro__grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto auto 1fr;
    grid-template-areas: ".     media" "title media" "body  media" ".     media";
    column-gap: 5.625rem;
    row-gap: 0;
  }
}
.p-corporate-intro__body {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-corporate-intro__body {
    grid-area: body;
  }
}
.p-corporate-intro__title {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-corporate-intro__title {
    grid-area: title;
    margin-bottom: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  .p-corporate-intro__media {
    grid-area: media;
    align-self: start;
  }
}
.p-corporate-intro__text {
  font-size: 0.8125rem;
  line-height: 2.1;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-corporate-intro__text {
    font-size: 0.9375rem;
  }
}
.p-corporate-intro__text + .p-corporate-intro__text {
  margin-top: 1.5rem;
}
.p-corporate-intro__media picture {
  display: contents;
}
.p-corporate-intro__media img {
  width: 100%;
  aspect-ratio: 1030/1290;
  object-fit: cover;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-intro__media img {
    aspect-ratio: 1530/1815;
  }
}

.p-corporate-value {
  background-color: #f0ece3;
}
.p-corporate-value__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.375rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-value__inner {
    padding: 7.5rem 25px;
  }
}
.p-corporate-value__title {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-value__title {
    margin-bottom: 1.5rem;
  }
}
.p-corporate-value__lead {
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-corporate-value__lead {
    font-size: 0.9375rem;
    margin-bottom: 3.5rem;
  }
}
.p-corporate-value__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-value__grid {
    grid-template-columns: repeat(2, 28.75rem);
    justify-content: center;
    gap: 2rem;
  }
}
.p-corporate-value__card {
  height: 100%;
  padding: 2rem 1.75rem;
  background-color: #fafaf7;
  border: none;
  border-top: 0.1875rem solid #e8a157;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-value__card {
    padding: 2.5rem 4.375rem;
  }
}
.p-corporate-value__card-en {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-corporate-value__card-en {
    font-size: 0.8125rem;
  }
}
.p-corporate-value__card-title {
  margin-top: 0.75rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
  color: #1f1f1a;
}
.p-corporate-value__card-text {
  margin-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.95;
  color: #5a5a52;
}

.p-corporate-benefits {
  background-color: #fafaf7;
}
.p-corporate-benefits__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.375rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__inner {
    padding: 6.875rem 25px 6.25rem;
  }
}
.p-corporate-benefits__title {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__title {
    margin-bottom: 1.5rem;
  }
}
.p-corporate-benefits__lead {
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__lead {
    font-size: 0.9375rem;
    margin-bottom: 5rem;
  }
}
.p-corporate-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__grid {
    grid-template-columns: repeat(2, 33.125rem);
    gap: 1.75rem;
    justify-content: center;
  }
}
.p-corporate-benefits__card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.25rem;
  height: 100%;
  align-content: start;
  padding: 1.75rem 1.5rem;
  background-color: #e8e2d4;
  border: none;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__card {
    column-gap: 1.75rem;
    padding: 2.25rem 2rem;
  }
}
.p-corporate-benefits__icon {
  grid-row: 1;
  grid-column: 1;
  display: grid;
  place-items: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background-color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__icon {
    grid-row: 1/span 2;
    width: 3.75rem;
    height: 3.75rem;
  }
}
.p-corporate-benefits__icon img {
  width: 3.125rem;
  height: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__icon img {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.p-corporate-benefits__card-title {
  grid-column: 2;
  align-self: start;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__card-title {
    font-size: 1.125rem;
  }
}
.p-corporate-benefits__card-text {
  grid-column: 1/-1;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-corporate-benefits__card-text {
    grid-column: 2;
    font-size: 0.9375rem;
  }
}

.p-corporate-companies {
  background-color: #f0ece3;
}
.p-corporate-companies__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px;
}
@media screen and (min-width: 768px) {
  .p-corporate-companies__inner {
    padding: 7.5rem 25px;
  }
}
.p-corporate-companies__title {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-companies__title {
    margin-bottom: 3rem;
  }
}
.p-corporate-companies__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-companies__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
}
.p-corporate-companies__cell {
  aspect-ratio: 3/2;
  background-color: #fafaf7;
  border: 1px solid #d9d3c3;
  border-radius: 0.25rem;
}
.p-corporate-companies__cell--more {
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #8a8a80;
}
.p-corporate-companies__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-corporate-companies__note {
    margin-top: 2rem;
  }
}

.p-corporate-voices {
  background-color: #0f1726;
}
.p-corporate-voices__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px;
}
@media screen and (min-width: 768px) {
  .p-corporate-voices__inner {
    padding: 7.5rem 25px;
  }
}
.p-corporate-voices__title {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-voices__title {
    margin-bottom: 4rem;
  }
}
.p-corporate-voices__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-voices__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.p-corporate-plan {
  background-color: #f0ece3;
}
.p-corporate-plan__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.375rem 20px 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-plan__inner {
    padding: 7.5rem 25px 4.375rem;
  }
}
.p-corporate-plan__title {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-plan__title {
    margin-bottom: 1.5rem;
  }
}
.p-corporate-plan__lead {
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-corporate-plan__lead {
    font-size: 0.9375rem;
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-corporate-plan__card {
    max-width: 47.5rem;
    margin: 0 auto;
  }
}
.p-corporate-plan .c-plan-card {
  border-radius: 0.5rem;
  border-color: #e8a157;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-corporate-plan .c-plan-card {
    text-align: center;
  }
}
.p-corporate-plan .c-plan-card__price {
  font-size: 3.25rem;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-corporate-plan .c-plan-card__price {
    font-size: 3.5rem;
  }
}
.p-corporate-plan .c-plan-card__notes {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-corporate-plan .c-plan-card__notes {
    text-align: center;
  }
}
.p-corporate-plan .c-plan-card__notes li {
  padding-left: 0;
}
.p-corporate-plan .c-plan-card__notes li::before {
  content: none;
}
.p-corporate-plan .c-plan-card__features {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-corporate-plan .c-plan-card__features {
    width: fit-content;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-corporate-plan .c-plan-card__features {
    margin-left: 20%;
  }
}
.p-corporate-plan .c-plan-card__btn {
  align-self: center;
  background: #d98a3c;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .p-corporate-plan .c-plan-card__btn {
    margin-top: 3.125rem;
  }
}
.p-corporate-plan .c-plan-card__guide {
  text-align: center;
}

.p-corporate-document {
  background-color: #f0ece3;
}
.p-corporate-document__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.625rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-document__inner {
    padding: 0rem 25px 6.25rem;
  }
}
.p-corporate-document__card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  background-color: #fafaf7;
  border: 1px solid #d9d3c3;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-document__card {
    grid-template-columns: 1fr auto;
    grid-template-areas: "title btn" "text  btn" "meta  btn";
    column-gap: 8.75rem;
    row-gap: 0;
    align-items: center;
    max-width: 53.75rem;
    margin: 0 auto;
    padding: 2.5rem 5rem;
  }
}
.p-corporate-document__title {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-corporate-document__title {
    grid-area: title;
    font-size: 1.0625rem;
  }
}
.p-corporate-document__text {
  font-size: 0.8125rem;
  line-height: 1.85;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-corporate-document__text {
    grid-area: text;
    margin-top: 0.75rem;
  }
}
.p-corporate-document__meta {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  color: #8a8a80;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-corporate-document__meta {
    text-align: left;
    grid-area: meta;
    margin-top: 0.75rem;
  }
}
.p-corporate-document__btn {
  width: 100%;
  color: #ffffff !important;
}
.p-corporate-document__btn.c-btn--akari {
  background: #d98a3c;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .p-corporate-document__btn {
    grid-area: btn;
    align-self: center;
    width: auto;
  }
}
.p-corporate-document__btn:hover {
  color: #ffffff;
}
.p-corporate-document__btn::before {
  content: "↓";
  margin-right: 0.625rem;
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-corporate-document__btn:hover::before {
  transform: translateY(0.25rem);
}

.p-corporate-flow {
  background-color: #fafaf7;
}
.p-corporate-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.375rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-flow__inner {
    padding: 6.25rem 25px;
  }
}
.p-corporate-flow__title {
  margin-bottom: 1.5rem;
}
.p-corporate-flow__lead {
  margin-bottom: 2.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-corporate-flow__lead {
    font-size: 0.9375rem;
    margin-bottom: 3.5rem;
  }
}
.p-corporate-flow__action {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-corporate-flow__action {
    margin-top: 3.5rem;
  }
}
.p-corporate-flow__action .c-btn--akari {
  width: 15.625rem;
  color: #ffffff;
  background: #d98a3c;
  box-shadow: none;
}
.p-corporate-flow__action .c-btn--akari:hover {
  color: #ffffff;
}

.p-corporate-faq {
  background-color: #f0ece3;
}
.p-corporate-faq__inner {
  max-width: 55rem;
  margin: 0 auto;
  padding: 4.375rem 20px 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-faq__inner {
    padding: 6.25rem 25px 6.25rem;
  }
}
.p-corporate-faq__title {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-corporate-faq__title {
    margin-bottom: 3.5rem;
  }
}

.p-plans-hero {
  background-color: #fafaf7;
}
.p-plans-hero__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 1.25rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-plans-hero__inner {
    max-width: 60rem;
    padding: 2.5rem 25px 6.25rem;
  }
}
.p-plans-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-plans-hero__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.p-plans-hero .c-plan-card {
  text-align: left;
}
.p-plans-hero .c-plan-card__guide {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-plans-hero .c-plan-card__guide {
    text-align: left;
  }
}

.p-plans-compare {
  background-color: #f0ece3;
}
.p-plans-compare__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 4.375rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-plans-compare__inner {
    max-width: 60rem;
    padding: 6.25rem 25px 6.25rem;
  }
}
.p-plans-compare__title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-plans-compare__title {
    margin-bottom: 4.375rem;
  }
}
.p-plans-compare table {
  width: 100%;
  border-collapse: collapse;
}
.p-plans-compare__cell {
  padding: 0.75rem 0.75rem;
  text-align: left;
  vertical-align: middle;
  line-height: 1.7;
}
.p-plans-compare th.p-plans-compare__cell {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #5a5a52;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-plans-compare th.p-plans-compare__cell {
    font-size: 0.9375rem;
  }
}
.p-plans-compare td.p-plans-compare__cell {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  text-align: center;
  color: #5a5a52;
}
.p-plans-compare__check {
  color: #e8a157;
}
.p-plans-compare__table {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-plans-compare__table {
    display: block;
  }
  .p-plans-compare__table table {
    table-layout: fixed;
  }
  .p-plans-compare__table .p-plans-compare__cell {
    width: 27.2727272727%;
    padding: 1.125rem 1.375rem;
  }
  .p-plans-compare__table .p-plans-compare__cell:last-child {
    border-right: none;
  }
  .p-plans-compare__table .p-plans-compare__cell:first-child {
    width: 45.4545454545%;
  }
  .p-plans-compare__table td.p-plans-compare__cell {
    font-size: 0.8125rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-plans-compare__table td.p-plans-compare__cell {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .p-plans-compare__table .p-plans-compare__cell--individual {
    border-left: 2px solid #e8a157;
    border-right: 2px solid #e8a157;
  }
  .p-plans-compare__table .p-plans-compare__row--head .p-plans-compare__cell--individual {
    border-top: 2px solid #e8a157;
  }
  .p-plans-compare__table .p-plans-compare__row:last-child .p-plans-compare__cell--individual {
    border-bottom: 2px solid #e8a157;
  }
  .p-plans-compare__table .p-plans-compare__row:nth-child(even) {
    background-color: rgba(250, 250, 247, 0.5);
  }
}
.p-plans-compare__row--head .p-plans-compare__cell {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  text-align: center;
  color: #1f1f1a;
}
.p-plans-compare__row--head .p-plans-compare__cell:first-child {
  background-color: transparent;
}
.p-plans-compare__row--head th.p-plans-compare__cell--individual {
  background-color: #e8a157;
  color: #f5efe5;
}
.p-plans-compare__row--head th.p-plans-compare__cell--corporate {
  background-color: #c6bab0;
  color: #f5efe5;
}
.p-plans-compare__table--sp {
  display: block;
}
.p-plans-compare__table--sp + .p-plans-compare__table--sp {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-plans-compare__table--sp {
    display: none;
  }
}
.p-plans-compare__table--sp .p-plans-compare__cell {
  width: 50%;
}
.p-plans-compare__table--sp td.p-plans-compare__cell {
  text-align: left;
}
.p-plans-compare__table--sp table {
  table-layout: fixed;
}
.p-plans-compare__table--sp .p-plans-compare__row:nth-child(odd) {
  background-color: rgba(250, 250, 247, 0.5);
}
.p-plans-compare__caption {
  padding: 0.75rem 0.75rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-align: center;
}
.p-plans-compare__caption--individual {
  background-color: #e8a157;
  color: #f5efe5;
}
.p-plans-compare__caption--corporate {
  background-color: #c6bab0;
  color: #f5efe5;
}

.p-plans-flow {
  background-color: #fafaf7;
}
.p-plans-flow__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px;
}
@media screen and (min-width: 768px) {
  .p-plans-flow__inner {
    padding: 6.25rem 25px 6.25rem;
  }
}
.p-plans-flow__title {
  margin-bottom: 1.5rem;
}
.p-plans-flow__lead {
  margin-bottom: 3rem;
  font-size: 0.8125rem;
  line-height: 2;
  text-align: center;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-plans-flow__lead {
    margin-bottom: 3.5rem;
    font-size: 0.9375rem;
  }
}
.p-plans-flow__action {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-plans-flow__action {
    margin-top: 3.5rem;
  }
}
.p-plans-flow__action .c-btn--akari {
  width: 18.125rem;
  min-width: 0;
  color: #ffffff;
  background: #d98a3c;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .p-plans-flow__action .c-btn--akari {
    width: 15.625rem;
  }
}
.p-plans-flow__action .c-btn--akari:hover {
  color: #ffffff;
}
.p-plans-flow__action .c-btn.c-btn--outline {
  min-width: 0;
  padding: 0.375rem 0.25rem;
  color: #938469;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d9d3c3;
  border-radius: 0;
}
.p-plans-flow__action .c-btn.c-btn--outline:hover {
  color: #938469;
  background-color: transparent;
  border-bottom-color: #938469;
}

.p-plans-faq {
  background-color: #f0ece3;
}
.p-plans-faq__inner {
  max-width: 55rem;
  margin: 0 auto;
  padding: 4.375rem 20px 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-plans-faq__inner {
    padding: 6.25rem 25px 5.625rem;
  }
}
.p-plans-faq__title {
  margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .p-plans-faq__title {
    margin-bottom: 3.5rem;
  }
}

.p-about-hero {
  position: relative;
  overflow: hidden;
  background-color: #0f1726;
}
.p-about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.p-about-hero__picture {
  display: contents;
}
.p-about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-about-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(15, 23, 38, 0.55) 0%, rgba(15, 23, 38, 0.35) 45%, rgba(15, 23, 38, 0.8) 100%);
}
.p-about-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 8.75rem 20px 5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about-hero__inner {
    padding: 11.875rem 25px 8.75rem;
  }
}
.p-about-hero__breadcrumb {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .p-about-hero__breadcrumb {
    font-size: 0.8125rem;
  }
}
.p-about-hero__crumb {
  color: #e8a157;
  transition: color 0.3s ease;
}
.p-about-hero__crumb:hover {
  color: #f5b85e;
}
.p-about-hero__crumb--current {
  color: #c9c3b6;
}
.p-about-hero__crumb--current:hover {
  color: #c9c3b6;
}
.p-about-hero__sep {
  margin: 0 0.5rem;
  color: #c9c3b6;
}
.p-about-hero__title {
  margin-top: 1.25rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.875rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #f5efe5;
}
@media screen and (min-width: 768px) {
  .p-about-hero__title {
    margin-top: 1.5rem;
    font-size: 3.375rem;
  }
}
.p-about-hero__lead {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  line-height: 2;
  color: #c9c3b6;
}
@media screen and (min-width: 768px) {
  .p-about-hero__lead {
    margin-top: 2.5rem;
    font-size: 0.9375rem;
  }
}

.p-about-vision {
  padding: 5rem 20px;
  background-color: #f0ece3;
}
@media screen and (min-width: 768px) {
  .p-about-vision {
    padding: 6.25rem 25px;
  }
}
.p-about-vision__inner {
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-about-vision__title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-vision__title {
    margin-bottom: 3.125rem;
  }
}
.p-about-vision__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-vision__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
.p-about-vision__card {
  height: 100%;
  padding: 2.5rem 1.75rem;
  background-color: #fafaf7;
  border: 1px solid #d9d3c3;
  border-top: 0.1875rem solid #e8a157;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-vision__card {
    padding: 2.5rem 2.5rem;
  }
}
.p-about-vision__card-en {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-about-vision__card-en {
    font-size: 1.875rem;
  }
}
.p-about-vision__card-sub {
  margin-top: 0.25rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.3em;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .p-about-vision__card-sub {
    font-size: 0.8125rem;
  }
}
.p-about-vision__card-text {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  line-height: 2.1;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-about-vision__card-text {
    font-size: 0.9375rem;
    line-height: 2.2;
  }
}

.p-about-meanings {
  padding: 4.375rem 20px 3.75rem;
  background-color: #fafaf7;
}
@media screen and (min-width: 768px) {
  .p-about-meanings {
    padding: 5.625rem 25px 6.25rem;
  }
}
.p-about-meanings__inner {
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-about-meanings__title {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-meanings__title {
    margin-bottom: 1.5rem;
  }
}
.p-about-meanings__intro {
  margin: 0 0 3rem;
  font-size: 0.8125rem;
  line-height: 2.1;
  text-align: left;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-about-meanings__intro {
    font-size: 0.9375rem;
    max-width: 45rem;
    margin-bottom: 3.75rem;
  }
}
.p-about-meanings__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-meanings__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.p-about-meanings__card {
  height: 100%;
  padding: 2rem 1.75rem;
  background-color: #f0ece3;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-meanings__card {
    padding: 2.5rem 2rem;
  }
}
.p-about-meanings__card-num {
  font-family: "Manrope", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-about-meanings__card-num {
    font-size: 0.8125rem;
  }
}
.p-about-meanings__card-title {
  margin-top: 0.625rem;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 1.25rem;
  line-height: 1.55;
  text-align: center;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-about-meanings__card-title {
    font-size: 1.25rem;
  }
}
.p-about-meanings__card-text {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-about-meanings__card-text {
    font-size: 0.9375rem;
  }
}

.p-about-promise {
  padding: 4.375rem 20px 5rem;
  background-color: #f0ece3;
}
@media screen and (min-width: 768px) {
  .p-about-promise {
    padding: 5.625rem 25px 7.5rem;
  }
}
.p-about-promise__inner {
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-about-promise__title {
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-promise__title {
    margin-bottom: 3rem;
  }
}
.p-about-promise__list {
  max-width: 57.5rem;
  margin: 0 auto;
}
.p-about-promise__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "num title" "text text";
  column-gap: 1rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid #d9d3c3;
}
.p-about-promise__item:last-child {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .p-about-promise__item {
    grid-template-columns: 80px 1fr;
    grid-template-areas: "num title" "num text";
    column-gap: 2rem;
    padding: 2.25rem 0;
  }
}
.p-about-promise__num {
  grid-area: num;
  align-self: start;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 300;
  font-size: 1.75rem;
  line-height: 1;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-about-promise__num {
    font-size: 2.5rem;
  }
}
.p-about-promise__item-title {
  grid-area: title;
  align-self: start;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.6;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-about-promise__item-title {
    font-size: 1.375rem;
  }
}
.p-about-promise__item-text {
  grid-area: text;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-about-promise__item-text {
    font-size: 0.875rem;
  }
}

.p-about-team {
  padding: 5rem 20px;
  background-color: #fafaf7;
}
@media screen and (min-width: 768px) {
  .p-about-team {
    padding: 7.5rem 25px;
  }
}
.p-about-team__inner {
  width: 100%;
  max-width: 62.5rem;
  margin: 0 auto;
}
.p-about-team__title {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-team__title {
    margin-bottom: 1.5rem;
  }
}
.p-about-team__intro {
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
  line-height: 2.1;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-about-team__intro {
    max-width: 45rem;
    margin-bottom: 3rem;
  }
}
.p-about-team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.p-about-team__card {
  height: 100%;
  padding: 1.75rem 1.5rem;
  background-color: #f0ece3;
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-team__card {
    padding: 2rem 1.75rem;
  }
}
.p-about-team__card-title {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  color: #1f1f1a;
}
@media screen and (min-width: 768px) {
  .p-about-team__card-title {
    font-size: 1.25rem;
  }
}
.p-about-team__role {
  margin-top: 0.5rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-align: center;
  color: #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-about-team__role {
    font-size: 0.8125rem;
  }
}
.p-about-team__card-text {
  margin-top: 1rem;
  font-size: 0.8125rem;
  line-height: 1.95;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-about-team__card-text {
    font-size: 0.9375rem;
  }
}

.p-terms {
  padding-block: 1.875rem 3.75rem;
  padding-inline: 20px;
  background: #fafaf7;
}
@media screen and (min-width: 768px) {
  .p-terms {
    padding-block: 2.5rem 6.25rem;
    padding-inline: 25px;
  }
}
.p-terms__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-terms__inner {
    max-width: 55rem;
    margin: 0 auto;
  }
}
.p-terms__lead {
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
  margin-bottom: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #d9d3c3;
}
@media screen and (min-width: 768px) {
  .p-terms__lead {
    font-size: 0.875rem;
    margin-bottom: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.p-terms__section {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-terms__section {
    margin-bottom: 2.5rem;
  }
}
.p-terms__heading {
  display: inline-block;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #1f1f1a;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-terms__heading {
    font-size: 1.125rem;
  }
}
.p-terms__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-terms__text {
    font-size: 0.875rem;
  }
}
.p-terms__list {
  list-style: decimal;
  padding-left: 1.75rem;
  margin: 0.75rem 0 0.875rem;
}
.p-terms__list--disc {
  list-style: disc;
}
.p-terms__item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-terms__item {
    font-size: 0.875rem;
  }
}
.p-terms__sublist {
  list-style: circle;
  padding-left: 1.75rem;
  margin: 0.75rem 0 0.875rem;
}
.p-terms__subitem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-terms__subitem {
    font-size: 0.875rem;
  }
}
.p-terms__date {
  margin-top: 3.125rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d9d3c3;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .p-terms__date {
    margin-top: 3.75rem;
    padding-top: 1.5rem;
  }
}

.p-privacy {
  padding-block: 1.875rem 3.75rem;
  padding-inline: 20px;
  background: #fafaf7;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding-block: 2.5rem 6.25rem;
    padding-inline: 25px;
  }
}
.p-privacy__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-privacy__inner {
    max-width: 55rem;
    margin: 0 auto;
  }
}
.p-privacy__lead {
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
  margin-bottom: 3.125rem;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #d9d3c3;
}
@media screen and (min-width: 768px) {
  .p-privacy__lead {
    font-size: 0.875rem;
    margin-bottom: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.p-privacy__section {
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__section {
    margin-bottom: 2.5rem;
  }
}
.p-privacy__heading {
  display: inline-block;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #1f1f1a;
  margin-bottom: 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d98a3c;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading {
    font-size: 1.125rem;
  }
}
.p-privacy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
  margin-bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__text {
    font-size: 0.875rem;
  }
}
.p-privacy__list {
  list-style: decimal;
  padding-left: 1.75rem;
  margin: 0.75rem 0 0.875rem;
}
.p-privacy__list--disc {
  list-style: disc;
}
.p-privacy__item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__item {
    font-size: 0.875rem;
  }
}
.p-privacy__sublist {
  list-style: circle;
  padding-left: 1.75rem;
  margin: 0.75rem 0 0.875rem;
}
.p-privacy__subitem {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__subitem {
    font-size: 0.875rem;
  }
}
.p-privacy__date {
  margin-top: 3.125rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d9d3c3;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .p-privacy__date {
    margin-top: 3.75rem;
    padding-top: 1.5rem;
  }
}

.p-commerce {
  padding-block: 3.75rem;
  padding-inline: 20px;
  background: #fafaf7;
}
@media screen and (min-width: 768px) {
  .p-commerce {
    padding-block: 2.5rem 6.25rem;
    padding-inline: 25px;
  }
}
.p-commerce__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-commerce__inner {
    max-width: 55rem;
    margin: 0 auto;
  }
}
.p-commerce__list {
  margin: 0;
}
.p-commerce__row {
  display: block;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #d9d3c3;
}
@media screen and (min-width: 768px) {
  .p-commerce__row {
    display: flex;
    align-items: baseline;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
.p-commerce__row:last-child {
  border-bottom: none;
}
.p-commerce__term {
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #1f1f1a;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-commerce__term {
    width: 13.75rem;
    flex-shrink: 0;
    padding-right: 1.5rem;
    font-size: 1.125rem;
    margin-bottom: 0;
  }
}
.p-commerce__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 2;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-commerce__desc {
    flex: 1;
    font-size: 0.875rem;
  }
}
.p-commerce__link {
  color: #d98a3c;
  text-decoration: underline;
  transition: color 0.3s;
}
.p-commerce__link:hover {
  color: #e8a157;
}
.p-commerce__date {
  margin-top: 3.125rem;
  padding-top: 1.25rem;
  border-top: 1px solid #d9d3c3;
  text-align: right;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: #8a8a80;
}
@media screen and (min-width: 768px) {
  .p-commerce__date {
    margin-top: 3.75rem;
    padding-top: 1.5rem;
  }
}

.p-notfound {
  padding-block: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-notfound {
    padding-block: 5.625rem;
  }
}
.p-notfound__inner {
  max-width: 40rem;
  margin-inline: auto;
  padding-inline: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-notfound__inner {
    padding-inline: 25px;
  }
}
.p-notfound__text {
  margin-bottom: 2.5rem;
  font-size: 0.875rem;
  font-weight: 100;
  line-height: 1.9;
  color: #5a5a52;
}
@media screen and (min-width: 768px) {
  .p-notfound__text {
    font-size: 0.9375rem;
  }
}
.p-notfound__back {
  margin-top: 0.5rem;
}

.u-hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

@media screen and (max-width: 767.98px) {
  .u-pc-only {
    display: none;
  }
}
