@charset "UTF-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root {
  isolation: isolate;
}
:root {
  --color-base: #000;
  --color-main: #eb5e00;
  --color-sub01: #f87c29;
  --color-sub02: #f0d7a6;
  --color-text: #fff;
  --color-black: #000;
  --color-white: #fff;
  --color-gray: #f3f3f3;
  --color-border: #e6e6e6;
  --color-line: #00b900;
  --font-sans:
    "Noto Sans JP", "Yu Gothic Medium", "Yu Gothic", yugothic, 游ゴシック体,
    メイリオ, meiryo, "ＭＳ Ｐゴシック", sans-serif;
  --font-sans-en: "Poppins", sans-serif;
  --container-padding: 2rem;
  --negative-margin: calc(var(--container-padding) * -1);
  --leading-trim: calc((1em - 1lh) / 2);
}
@media (768px <= width) {
  :root {
    --container-padding: max(5rem, 40px);
  }
}
html {
  font-size: min(2.6666666667vw, 13.3333333333px);
  scroll-padding-top: max(6.4rem, 60px);
}
@media (768px <= width <= 960px) {
  html {
    font-size: 1.0416666667vw;
  }
}
@media (960px < width) {
  html {
    font-size: 0.6666666667vw;
  }
}
@media only screen and (width >= 892px) {
  html {
    font-size: 62.5%;
  }
}
:root,
html,
body {
  width: 100%;
  height: auto;
  color: var(--color-text);
  background: var(--color-base);
  -webkit-print-color-adjust: exact;
}
body {
  overflow-x: clip;
  font-family: var(--font-sans);
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.255;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
ul,
ol {
  padding: 0;
}
li {
  list-style-type: none;
}
a {
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  a:where(:any-link, :enabled, summary):hover {
    text-decoration: none;
  }
}
table {
  border-collapse: collapse;
}
input[type="submit"],
input[type="button"] {
  box-sizing: border-box;
  appearance: auto;
  cursor: pointer;
  border: none;
  border-radius: 0;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}
button {
  padding: 0;
  color: inherit;
  appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
td,
th {
  text-align: left;
}
.sp-only {
  display: block !important;
}
@media (768px <= width) {
  .sp-only {
    display: none !important;
  }
}
.sp-tab-only {
  display: block !important;
}
@media (960px < width) {
  .sp-tab-only {
    display: none !important;
  }
}
.tab-pc-only {
  display: none !important;
}
@media (768px <= width) {
  .tab-pc-only {
    display: block !important;
  }
}
.pc-only {
  display: none !important;
}
@media (960px < width) {
  .pc-only {
    display: block !important;
  }
}
.l-content-area {
  padding-inline: 1.6rem;
  padding-bottom: 7rem;
  container-name: content;
  container-type: inline-size;
}
@media (768px <= width) {
  .l-content-area {
    padding-inline: 0;
    padding-bottom: 12rem;
  }
}
.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 6.4rem;
  z-index: 999;
  display: none;
  width: 100%;
  min-height: calc(100dvh - 6.4rem);
  max-height: calc(100dvh - 6.4rem);
  padding: 5.2rem 3rem 3rem;
  overflow-y: auto;
  pointer-events: none;
  background: var(--color-sub02);
}
@media (768px <= width <= 960px) {
  .l-drawer {
    padding: 8rem calc(var(--container-padding) * 2);
  }
}
@media (960px < width) {
  .l-drawer {
    position: static;
    display: block;
    width: auto;
    min-height: initial;
    max-height: initial;
    padding: 0;
    padding-left: 2rem;
    overflow-y: visible;
    pointer-events: auto;
    background: transparent;
  }
}
.l-drawer.is-open {
  display: block;
  pointer-events: auto;
  animation: drawer-open 0.45s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
.l-drawer.is-close {
  animation: drawer-close 0.45s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes drawer-open {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes drawer-close {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  }
}
.l-drawer__logo {
  text-align: center;
}
@media (960px < width) {
  .l-drawer__logo {
    display: none;
  }
}
.l-drawer__logo a {
  display: inline-block;
}
.l-drawer__logo img {
  width: 22.6rem;
}
@media (768px <= width <= 960px) {
  .l-drawer__logo img {
    width: 30rem;
  }
}
.l-drawer__title {
  margin-top: 2.2rem;
  font-family: var(--font-sans-en);
  font-size: max(3rem, 24px);
  font-style: italic;
  color: var(--color-sub01);
  text-align: center;
  letter-spacing: 0.1em;
}
@media (768px <= width <= 960px) {
  .l-drawer__title {
    margin-top: 3.4rem;
  }
}
@media (960px < width) {
  .l-drawer__title {
    display: none;
  }
}
.l-drawer__close {
  display: grid;
  place-content: center;
  width: 100%;
  height: 5rem;
  margin-top: 2.8rem;
  font-weight: 500;
  color: var(--color-black);
  background: var(--color-white);
  border-radius: 100vw;
}
@media (768px <= width <= 960px) {
  .l-drawer__close {
    height: 6rem;
    margin-top: 3.4rem;
  }
}
@media (960px < width) {
  .l-drawer__close {
    display: none;
  }
}
.l-footer {
  padding-top: 2rem;
  overflow: hidden;
  background: var(--color-sub01);
}
@media (768px <= width) {
  .l-footer {
    padding-top: 5.6rem;
  }
}
@media (960px < width) {
  .l-footer {
    position: relative;
    z-index: -2;
  }
}
.l-footer__main {
  position: relative;
}
@media (768px <= width) {
  .l-footer__main:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: clamp(400px, 33.333vw, 600px);
    aspect-ratio: 500/315;
    content: "";
    background: image-set(
        url(../../../assets/images/lp/common/exterior.avif) type("image/avif"),
        url(../../../assets/images/lp/common/exterior.webp) type("image/webp")
      )
      center/cover no-repeat;
    transform: translateY(-50%);
  }
}
.l-footer__container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  max-width: calc(30.2rem + var(--container-padding) * 2);
  margin-inline: auto;
}
.l-footer__head {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 1rem 2rem;
}
@media (768px <= width) {
  .l-footer__head {
    position: relative;
    grid-template-columns: 1fr;
    place-items: center;
  }
}
.l-footer__copy {
  align-self: center;
  width: 19.9rem;
}
@media (768px <= width) {
  .l-footer__copy {
    width: 39.2rem;
  }
}
.l-footer__copy img {
  width: 100%;
}
.l-footer__24h-open {
  margin-right: -1.1rem;
}
@media (768px <= width) {
  .l-footer__24h-open {
    position: absolute;
    bottom: 1.2rem;
    left: calc(100% + 1.8rem);
    width: 10.2rem;
    margin-left: auto;
  }
}
.l-footer__24h-open img {
  width: 100%;
}
.l-footer__logo {
  grid-column: span 2;
  text-align: center;
}
@media (768px <= width) {
  .l-footer__logo {
    grid-column: 1;
    width: 49.3rem;
    margin-top: 3.3rem;
  }
}
.l-footer__logo img {
  width: 100%;
}
.l-footer__tel {
  margin-top: 1.2rem;
  text-align: center;
}
@media (768px <= width) {
  .l-footer__tel {
    width: 34.6rem;
    margin-top: 3rem;
  }
}
@media (960px < width) {
  .l-footer__tel a {
    pointer-events: none;
  }
}
.l-footer__tel img {
  width: 100%;
}
.l-footer__service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem 0.66rem;
  width: 100%;
  margin-top: 2.5rem;
}
@media (768px <= width) {
  .l-footer__service {
    grid-template-columns: repeat(6, 1fr);
    max-width: 693px;
    margin-top: 1.7rem;
  }
}
.l-footer__service-item img {
  width: 100%;
}
.l-footer__copylight {
  padding-block: 1rem;
  margin-top: 3.7rem;
  font-size: max(1.3rem, 12px);
  line-height: 1.5;
  text-align: center;
  background: var(--color-base);
}
.l-footer__copylight small {
  font-size: 1em;
}
@media (768px <= width) {
  .l-footer__copylight {
    margin-top: 5.3rem;
  }
}
.l-header-logo {
  display: grid;
  place-content: center;
  width: 100%;
  height: max(6.4rem, 60px);
  padding-top: 0.8rem;
  background: var(--color-sub01);
}
@media (960px < width) {
  .l-header-logo {
    display: none;
  }
}
.l-header-logo__logo {
  font-size: 1rem;
}
.l-header-logo__logo img {
  width: auto;
  height: max(3.8rem, 34px);
}
.l-header {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  container-name: header;
  container-type: inline-size;
}
@media (960px < width) {
  .l-header {
    top: 0;
    bottom: auto;
  }
}
.l-header__container {
  display: flex;
  align-items: center;
  height: 6.4rem;
}
@media (768px <= width <= 960px) {
  .l-header__container {
    height: max(8rem, 64px);
  }
}
@media (960px < width) {
  .l-header__container {
    height: max(6.4rem, 60px);
    padding-left: clamp(10px, 3.2rem - (1500px - 100vw) * 0.05, 3.2rem);
    background: var(--color-sub01);
  }
}
.l-header__logo {
  display: none;
  font-size: 1rem;
}
@media (960px < width) {
  .l-header__logo {
    display: block;
    margin-right: auto;
  }
}
@media (960px < width) {
  .l-header__logo img {
    width: auto;
    height: 3.8rem;
  }
}
.l-header__side {
  display: flex;
  width: 100%;
  height: 6.4rem;
}
@media (768px <= width <= 960px) {
  .l-header__side {
    height: max(8rem, 64px);
  }
}
@media (960px < width) {
  .l-header__side {
    display: inline-flex;
    width: max-content;
    margin-left: clamp(10px, 3.8rem - (1500px - 100vw) * 0.05, 3.8rem);
  }
}
.l-header__button {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: background-color 0.25s ease;
}
@media (960px < width) {
  .l-header__button {
    flex: 0 1 auto;
    width: clamp(110px, 10vw, 15rem);
    font-size: clamp(12px, 1vw, 1.5rem);
  }
}
.l-header__button--tel {
  padding-right: 1rem;
  background: var(--color-main);
}
.l-header__button--tel:before {
  display: block;
  width: max(2.5rem, 20px);
  aspect-ratio: 1;
  margin-right: max(0.2rem, 1px);
  content: "";
  background: url(../../../assets/images/lp/common/icon_tel-white.svg)
    center/contain no-repeat;
}
@media (768px <= width <= 960px) {
  .l-header__button--tel:before {
    margin-right: 0.5rem;
  }
}
@media (960px < width) {
  .l-header__button--tel:before {
    width: clamp(20px, 1.667vw, 2.5rem);
  }
}
.l-header__button--tel .l-header__button-text:after {
  right: -1.5rem;
  bottom: -0.5rem;
}
@media (768px <= width <= 960px) {
  .l-header__button--tel .l-header__button-text:after {
    right: -3rem;
  }
}
@media (960px < width) {
  .l-header__button--tel .l-header__button-text:after {
    right: max(-1vw, -1.5rem);
  }
}
@media (hover: hover) {
  .l-header__button--tel:where(:any-link, :enabled, summary):hover {
    background-color: color-mix(
      in srgb,
      var(--color-main),
      var(--color-white) 20%
    );
  }
}
.l-header__button--line {
  background: var(--color-line);
}
.l-header__button--line .l-header__button-text:after {
  top: -0.3rem;
  right: -3.3rem;
}
@media (960px < width) {
  .l-header__button--line .l-header__button-text:after {
    right: max(-2.2vw, -3.3rem);
  }
}
@media (hover: hover) {
  .l-header__button--line:where(:any-link, :enabled, summary):hover {
    background-color: color-mix(
      in srgb,
      var(--color-line),
      var(--color-white) 20%
    );
  }
}
.l-header__button-text {
  position: relative;
  font-size: max(1.5rem, 12px);
  font-weight: 700;
  line-height: 1.1333;
  text-align: center;
}
@media (768px <= width <= 960px) {
  .l-header__button-text {
    font-size: max(2rem, 16px);
  }
}
@media (960px < width) {
  .l-header__button-text {
    font-size: clamp(13px, 1vw, 1.5rem);
  }
}
.l-header__button-text:after {
  position: absolute;
  width: 1.7rem;
  aspect-ratio: 17/29;
  content: "";
  background: url(../../../assets/images/lp/common/icon_sparkle.svg)
    center/contain no-repeat;
}
@media (768px <= width <= 960px) {
  .l-header__button-text br {
    display: none;
  }
}
.l-header__trigger {
  flex-shrink: 0;
}
@media (960px < width) {
  .l-nav {
    display: flex;
    column-gap: clamp(10px, 4rem - (1500px - 100vw) * 0.05, 4rem);
  }
}
.l-nav__item {
  font-size: max(1.9rem, 16px);
  font-weight: 500;
  color: var(--color-black);
  white-space: nowrap;
  border-bottom: 1px solid var(--color-sub01);
}
@media (768px <= width <= 960px) {
  .l-nav__item {
    font-size: max(2.2rem, 18px);
  }
}
@media (960px < width) {
  .l-nav__item {
    font-size: clamp(12px, 0.933vw, 1.4rem);
    line-height: 1.333;
    color: var(--color-white);
    border-bottom: none;
  }
}
.l-nav__item-link {
  display: flex;
  align-items: center;
  padding-block: 2rem;
  padding-inline: 0.4rem 1.8rem;
}
@media (768px <= width <= 960px) {
  .l-nav__item-link {
    padding-block: 2.6rem;
  }
}
@media (960px < width) {
  .l-nav__item-link {
    position: relative;
    padding: 0;
  }
}
.l-nav__item-link:after {
  flex-shrink: 0;
  width: 0.7rem;
  aspect-ratio: 7/14;
  margin-left: auto;
  content: "";
  background: url(../../../assets/images/lp/common/icon_arrow-right-white.svg)
    center/contain no-repeat;
}
@media (768px <= width <= 960px) {
  .l-nav__item-link:after {
    width: 1.2rem;
  }
}
@media (960px < width) {
  .l-nav__item-link:after {
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: calc(100% + 1rem);
    height: 2px;
    aspect-ratio: initial;
    background: var(--color-sub02);
    opacity: 0;
    transform: translate(-50%);
    transition: opacity 0.25s ease;
  }
}
@media (hover: hover) and (960px < width) {
  .l-nav__item-link:where(:any-link, :enabled, summary):hover:after {
    opacity: 1;
  }
}
.l-reservation {
  padding-block: 6rem 6.4rem;
  background: image-set(
      url(../../../assets/images/lp/common/reservation_bg.avif)
        type("image/avif"),
      url(../../../assets/images/lp/common/reservation_bg.webp)
        type("image/webp")
    )
    center/cover no-repeat;
}
@media (768px <= width) {
  .l-reservation {
    padding-block: 10rem 10.8rem;
  }
}
@media (960px < width) {
  .l-reservation {
    position: relative;
    z-index: -2;
  }
}
.l-reservation__copy {
  font-size: max(2.2rem, 18px);
  font-weight: 600;
  line-height: 1.363;
  text-align: center;
}
@media (768px <= width) {
  .l-reservation__copy {
    font-size: max(3.1rem, 24px);
  }
}
.l-reservation__highlight {
  color: var(--color-sub01);
}
.l-reservation__buttons {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
  place-items: center;
  width: 100%;
  max-width: 30rem;
  margin-inline: auto;
  margin-top: 3rem;
}
@media (768px <= width) {
  .l-reservation__buttons {
    grid-template-columns: repeat(2, 30rem);
    column-gap: 1.8rem;
    max-width: max-content;
    margin-top: 2.5rem;
  }
}
.l-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 100%;
  background: var(--color-sub02);
}
@media (768px <= width <= 960px) {
  .l-trigger {
    width: max(9rem, 64px);
  }
}
@media (960px < width) {
  .l-trigger {
    display: none;
  }
}
.l-trigger__icon {
  position: relative;
  width: 2.7rem;
  height: 2rem;
}
@media (768px <= width <= 960px) {
  .l-trigger__icon {
    width: max(2.8rem, 20px);
    height: max(2rem, 12px);
  }
}
.l-trigger__icon span {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: max(0.1rem, 1px);
  margin: auto;
  background: var(--color-main);
  transition: 0.25s ease-in-out;
}
.l-trigger__icon span:nth-child(1) {
  top: 0;
}
.is-open .l-trigger__icon span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
.l-trigger__icon span:nth-child(2) {
  top: 50%;
}
.is-open .l-trigger__icon span:nth-child(2) {
  opacity: 0;
}
.l-trigger__icon span:nth-child(3) {
  top: 100%;
}
.is-open .l-trigger__icon span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}
.l-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 6.4rem;
  overflow: hidden;
}
@media (768px <= width <= 960px) {
  .l-wrapper {
    padding-bottom: max(8rem, 64px);
  }
}
@media (960px < width) {
  .l-wrapper {
    padding-top: max(6.4rem, 60px);
    padding-bottom: 0;
  }
  .l-wrapper:before,
  .l-wrapper:after {
    position: fixed;
    content: "";
    background: var(--color-main);
  }
  .l-wrapper:before {
    top: 0;
    left: 0;
    z-index: -3;
    display: block;
    width: 37.4rem;
    aspect-ratio: 374/265;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
  }
  .l-wrapper:after {
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    width: 15.7rem;
    aspect-ratio: 157/112;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  }
}
.c-action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 5.8rem;
  font-size: max(1.9rem, 16px);
  font-weight: 700;
  letter-spacing: -0.025em;
  border: 2px solid var(--color-white);
  border-radius: 2.6rem;
  transition: background-color 0.25s ease;
}
@media (768px <= width) {
  .c-action-button {
    flex: 1;
    font-size: max(2rem, 16px);
  }
}
.c-action-button--tel {
  background: var(--color-main);
}
.c-action-button--tel:before {
  display: block;
  flex-shrink: 0;
  width: 2.5rem;
  aspect-ratio: 1;
  margin-top: 2px;
  margin-right: 0.3rem;
  content: "";
  background: url(../../../assets/images/lp/common/icon_tel-white.svg)
    center/contain no-repeat;
}
.c-action-button--line:before {
  display: block;
  flex-shrink: 0;
  width: 40px;
  aspect-ratio: 1;
  margin-right: 15px;
  content: "";
  background: url(../../../assets/images/lp/common/icon_line.svg) center/contain
    no-repeat;
}
@media (hover: hover) {
  .c-action-button--tel:where(:any-link, :enabled, summary):hover {
    background-color: color-mix(
      in srgb,
      var(--color-main),
      var(--color-white) 30%
    );
  }
}
.c-action-button--line {
  background: var(--color-line);
}
@media (hover: hover) {
  .c-action-button--line:where(:any-link, :enabled, summary):hover {
    background-color: color-mix(
      in srgb,
      var(--color-line),
      var(--color-white) 30%
    );
  }
}
@media (768px <= width) {
  .c-action-button__text-sp {
    display: none;
  }
}
.c-action-button__text-pc {
  display: none;
}
@media (768px <= width) {
  .c-action-button__text-pc {
    display: block;
  }
}
.c-action-button__text-small {
  font-size: max(1.6rem, 14px);
}
@media (768px <= width) {
  .c-action-button__text-small {
    font-size: max(1.7rem, 14px);
  }
}
.c-breadcrumbs__list {
  position: relative;
  display: flex;
  padding-inline: 1.2rem;
  overflow: auto hidden;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.c-breadcrumbs__list::-webkit-scrollbar {
  display: none;
}
@media (768px <= width <= 960px) {
  .c-breadcrumbs__list {
    padding-inline: 2rem;
  }
}
@media (960px < width) {
  .c-breadcrumbs__list {
    padding-inline: 3.6rem;
  }
}
.c-breadcrumbs__item {
  font-size: max(1.1rem, 10px);
}
@media (768px <= width) {
  .c-breadcrumbs__item {
    font-size: max(1.3rem, 11px);
  }
}
.c-breadcrumbs__item + .c-breadcrumbs__item {
  display: flex;
  align-items: center;
  margin-left: max(0.6rem, 5px);
}
@media (768px <= width) {
  .c-breadcrumbs__item + .c-breadcrumbs__item {
    margin-left: max(1rem, 8px);
  }
}
.c-breadcrumbs__item + .c-breadcrumbs__item:before {
  display: inline-block;
  width: max(0.4rem, 4px);
  aspect-ratio: 6/10;
  margin-right: max(0.6rem, 5px);
  content: "";
  background: url(../../../assets/images/lp/common/icon_breadcrumb-arrow.svg)
    center/contain no-repeat;
}
@media (768px <= width) {
  .c-breadcrumbs__item + .c-breadcrumbs__item:before {
    margin-right: max(1rem, 8px);
  }
}
.c-breadcrumbs__item a {
  display: block;
  padding-block: 0.2em;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .c-breadcrumbs__item a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.c-breadcrumbs__item span {
  max-width: 30rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (768px <= width) {
  .c-breadcrumbs__item span {
    max-width: 40rem;
  }
}
.c-button {
  --font-color: #fff;
  --bg-color: var(--color-main);
  position: relative;
  display: inline-flex;
  column-gap: 1em;
  align-items: center;
  justify-content: center;
  min-width: 20rem;
  height: 4.6rem;
  padding: 0.5em 1.2rem;
  color: var(--font-color);
  background: var(--bg-color);
  border: 1px solid var(--bg-color);
  border-radius: 100vw;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}
@media (768px <= width) {
  .c-button {
    min-width: 21rem;
    height: max(4.8rem, 40px);
    padding: 0.5em max(1.5rem, 10px);
  }
}
.c-button:hover {
  color: var(--font-color);
}
@media (hover: hover) {
  .c-button:where(:any-link, :enabled, summary):hover {
    --font-color: var(--color-main);
    --bg-color: transparent;
    border: 1px solid var(--color-main);
  }
}
.c-button--outlined {
  --font-color: var(--color-main);
  --bg-color: transparent;
  border: 1px solid var(--color-main);
}
@media (hover: hover) {
  .c-button--outlined:where(:any-link, :enabled, summary):hover {
    --font-color: var(--color-white);
    --bg-color: var(--color-main);
  }
}
.c-button--outlined-white {
  --font-color: var(--color-white);
  --bg-color: transparent;
  border: 1px solid var(--color-white);
}
@media (hover: hover) {
  .c-button--outlined-white:where(:any-link, :enabled, summary):hover {
    --font-color: var(--color-main);
    --bg-color: var(--color-white);
    border: 1px solid var(--color-white);
  }
}
.c-button--white {
  --font-color: var(--color-main);
  --bg-color: var(--color-white);
}
@media (hover: hover) {
  .c-button--white:where(:any-link, :enabled, summary):hover {
    --font-color: var(--color-white);
    --bg-color: var(--color-main);
  }
}
.c-button__file {
  display: flex;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
}
@media (768px <= width) {
  .c-button__file {
    width: 2rem;
    height: 2rem;
  }
}
.c-button__file svg {
  width: 100%;
  height: 100%;
  fill: var(--color-white);
  transition: fill 0.25s ease;
}
@media (hover: hover) {
  .c-button__file svg:is(:where(:any-link, :enabled, summary):hover *) {
    fill: var(--color-main);
  }
}
.c-button__text {
  position: relative;
  margin-inline: auto;
  font-weight: 500;
  line-height: 1.5;
  transition: padding 0.3s ease;
}
.c-button__text:first-of-type {
  padding-left: 1em;
}
.c-button__text:last-of-type {
  padding-right: 1em;
}
.c-button__text:only-child {
  padding: 0;
}
@keyframes hover-arrow-animation {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(100%);
  }
  51% {
    transform: translate(-100%);
  }
  to {
    transform: translate(0);
  }
}
.c-campaign-cta {
  max-width: 33.5rem;
  padding: 1rem 1.4rem 2rem;
  margin: 5rem auto 0;
  background: linear-gradient(0deg, #fff7dd, #f0d8a6 35%, #e8c787);
  border: 2px solid var(--color-white);
  border-radius: 2.5rem;
  box-shadow: 0 0 1.5rem #cba865;
}
@media (768px <= width) {
  .c-campaign-cta {
    position: relative;
    max-width: max(69rem, 600px);
    padding: 1.2rem 3.2rem 0;
    margin-top: 6rem;
    margin-bottom: 1.4rem;
  }
}
.c-campaign-cta__image {
  width: 100%;
  margin-bottom: 1.4rem;
  text-align: center;
}
@media (768px <= width) {
  .c-campaign-cta__image {
    width: calc(100% + 1.6rem);
    margin-right: -1.6rem;
    margin-bottom: 0;
  }
}
.c-campaign-cta__image img {
  width: 30.2rem;
}
@media (768px <= width) {
  .c-campaign-cta__image img {
    width: 100%;
  }
}
.c-campaign-cta__sp-text {
  margin-top: 0.8rem;
  font-weight: 800;
  color: var(--color-black);
  text-align: center;
}
@media (768px <= width) {
  .c-campaign-cta__sp-text {
    display: none;
  }
}
.c-campaign-cta__buttons {
  display: flex;
  column-gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
@media (768px <= width) {
  .c-campaign-cta__buttons {
    column-gap: 1.8rem;
    margin-top: 1.4rem;
    margin-bottom: -1.4rem;
  }
}
.c-container {
  width: 100%;
  padding-inline: var(--container-padding);
  margin-inline: auto;
}
@media (768px <= width) {
  .c-container {
    max-width: calc(792px + var(--container-padding) * 2);
  }
}
@media print {
  .c-container {
    padding: 0;
  }
}
.c-container--short {
  max-width: calc(590px + var(--container-padding) * 2);
}
.c-content {
  margin-top: 4rem;
}
@media (768px <= width <= 960px) {
  .c-content {
    margin-top: 6rem;
  }
}
@media (960px < width) {
  .c-content {
    margin-top: 8rem;
  }
}
.c-content:first-child {
  margin-top: 0;
}
@media (768px <= width <= 960px) {
  .c-content:first-child {
    margin-top: 0;
  }
}
@media (960px < width) {
  .c-content:first-child {
    margin-top: 0;
  }
}
.c-news-item {
  padding-block: 2rem 1.8rem;
  border-bottom: 1px solid var(--color-white);
}
@media (768px <= width) {
  .c-news-item {
    display: flex;
    column-gap: 5.9rem;
    align-items: flex-start;
    padding: 3.8rem 2rem 3.8rem 0;
  }
  .c-news-item:has(+ .c-news-item) {
    border-bottom-color: #909090;
  }
}
@media (768px <= width) {
  .c-news-item--index {
    column-gap: 4rem;
    padding-block: 2.8rem;
  }
}
.c-news-item__meta {
  display: flex;
  column-gap: 1.6rem;
  align-items: center;
}
@media (768px <= width) {
  .c-news-item__meta {
    flex-shrink: 0;
    line-height: 1.6875;
    transform: translateY(calc(0.5lh - 50%));
  }
}
.c-news-item__date {
  font-family: var(--font-sans-en);
  font-size: max(1.3rem, 11px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
.c-news-item__category {
  position: relative;
  padding-left: 1.6rem;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
}
.c-news-item__category:before {
  position: absolute;
  top: max(0.2rem, 2px);
  bottom: max(0.2rem, 2px);
  left: 0;
  width: max(0.1rem, 1px);
  content: "";
  background: var(--color-white);
}
.c-news-item__title {
  margin-top: 0.8rem;
  font-weight: 500;
  line-height: 1.6875;
  color: var(--color-main);
}
@media (768px <= width) {
  .c-news-item__title {
    margin-top: 0;
  }
}
.c-news-item__title a {
  display: block;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .c-news-item__title a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.c-news-item__link {
  align-self: center;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
}
@media (768px <= width) {
  .c-news-item__link {
    grid-column: span 2;
    order: 2;
    margin-top: 1rem;
    text-align: right;
  }
}
.c-news-item__link a {
  display: inline-block;
  padding-block: 0.4em;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .c-news-item__link a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.c-not-post {
  display: grid;
  place-content: center;
  height: 10vh;
}
.c-page-head {
  padding-block: 5rem 2.4rem;
}
@media (768px <= width) {
  .c-page-head {
    padding-block: 12rem 5.4rem;
  }
}
.c-page-head__title {
  --color-main: var(--color-sub01);
  font-size: max(4rem, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.29;
  text-align: center;
}
@media (768px <= width) {
  .c-page-head__title {
    font-size: max(5rem, 40px);
    letter-spacing: 0.05em;
  }
}
.c-pagination {
  margin: 4rem auto 0;
}
@media (768px <= width) {
  .c-pagination {
    margin-top: 6rem;
  }
}
.c-pagination__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  width: 100%;
}
.c-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max(4rem, 30px);
  font-weight: 500;
  line-height: 1.6875;
  color: var(--color-black);
  text-align: center;
  border-radius: 50%;
}
.c-pagination__item.is-active {
  pointer-events: none;
  cursor: auto;
  background: var(--color-sub02);
}
.c-pagination__item a {
  display: grid;
  place-content: center;
  width: 100%;
  aspect-ratio: 1;
  padding: 0 1rem;
  background: var(--color-white);
  border-radius: 50%;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .c-pagination__item a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.c-pagination__prev a:before,
.c-pagination__next a:before {
  flex-shrink: 0;
  width: max(0.6rem, 5px);
  aspect-ratio: 6/13;
  margin-left: auto;
  content: "";
  background: url(../../../assets/images/lp/common/icon_arrow-right.svg)
    center/contain no-repeat;
}
.c-pagination__prev a:before {
  transform: scaleX(-1);
}
.c-post {
  container-type: inline-size;
  container-name: post;
}
.c-post > :first-child {
  margin-top: var(--leading-trim);
}
.c-post > :last-child {
  margin-bottom: 0;
}
.c-post .c-custom-block:first-child > :first-child {
  margin-top: var(--leading-trim);
}
.c-post .c-custom-block:last-child > :last-child {
  margin-bottom: 0;
}
.c-post > :is(:not(.c-custom-block)) cite,
.c-post > :is(:not(.c-custom-block)) em,
.c-post > :is(:not(.c-custom-block)) i,
.c-post > cite,
.c-post > em,
.c-post > i {
  font-style: italic;
}
.c-post > :is(:not(.c-custom-block)) strong,
.c-post > :is(:not(.c-custom-block)) b,
.c-post > strong,
.c-post > b {
  font-weight: 700;
  color: var(--color-main);
}
.c-post > :is(:not(.c-custom-block)) a,
.c-post > a {
  color: var(--color-main);
  text-decoration: underline;
}
@media (hover: hover) {
  .c-post
    > :is(:not(.c-custom-block))
    a:where(:any-link, :enabled, summary):hover,
  .c-post > a:where(:any-link, :enabled, summary):hover {
    text-decoration: none;
  }
  .c-post
    > :is(:not(.c-custom-block))
    a:where(:any-link, :enabled, summary):hover
    img,
  .c-post > a:where(:any-link, :enabled, summary):hover img {
    opacity: 0.7;
  }
}
.c-post
  > :is(:not(.c-custom-block))
  a[target="_blank"]:not([href$=".pdf"]):after,
.c-post > a[target="_blank"]:not([href$=".pdf"]):after {
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  margin-left: 0.2em;
  content: "";
  background: url(../../../assets/images/lp/common/icon_external.svg)
    center/contain no-repeat;
}
.c-post
  > :is(:not(.c-custom-block))
  a[target="_blank"]:not([href$=".pdf"]):has(img):after,
.c-post > a[target="_blank"]:not([href$=".pdf"]):has(img):after {
  display: none;
}
.c-post > :is(:not(.c-custom-block)) a[href$=".pdf"]:after,
.c-post > a[href$=".pdf"]:after {
  display: inline-block;
  width: 1.2em;
  aspect-ratio: 1;
  margin-bottom: -0.1em;
  margin-left: 0.4em;
  content: "";
  background: url(../../../assets/images/lp/common/icon_file_pdf.svg)
    center/contain no-repeat;
}
.c-post > :is(:not(.c-custom-block)) p,
.c-post > p {
  line-height: 1.6875;
}
.c-post > :is(:not(.c-custom-block)) p + p,
.c-post > p + p {
  margin-top: 1.5em;
}
.c-post > :is(:not(.c-custom-block)) h2 + p,
.c-post > :is(:not(.c-custom-block)) h3 + p,
.c-post > :is(:not(.c-custom-block)) h4 + p,
.c-post > :is(:not(.c-custom-block)) h5 + p,
.c-post > :is(:not(.c-custom-block)) h6 + p,
.c-post > h2 + p,
.c-post > h3 + p,
.c-post > h4 + p,
.c-post > h5 + p,
.c-post > h6 + p {
  margin-top: 0.5em;
}
.c-post > :is(:not(.c-custom-block)) h2,
.c-post > :is(:not(.c-custom-block)) h3,
.c-post > :is(:not(.c-custom-block)) h4,
.c-post > :is(:not(.c-custom-block)) h5,
.c-post > :is(:not(.c-custom-block)) h6,
.c-post > h2,
.c-post > h3,
.c-post > h4,
.c-post > h5,
.c-post > h6 {
  font-weight: 600;
  line-height: 1.6;
}
.c-post > :is(:not(.c-custom-block)) h2 small,
.c-post > :is(:not(.c-custom-block)) h3 small,
.c-post > :is(:not(.c-custom-block)) h4 small,
.c-post > :is(:not(.c-custom-block)) h5 small,
.c-post > :is(:not(.c-custom-block)) h6 small,
.c-post > h2 small,
.c-post > h3 small,
.c-post > h4 small,
.c-post > h5 small,
.c-post > h6 small {
  display: block;
  margin-top: 0.3em;
  font-size: 0.65em;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) h2 small,
  .c-post > :is(:not(.c-custom-block)) h3 small,
  .c-post > :is(:not(.c-custom-block)) h4 small,
  .c-post > :is(:not(.c-custom-block)) h5 small,
  .c-post > :is(:not(.c-custom-block)) h6 small,
  .c-post > h2 small,
  .c-post > h3 small,
  .c-post > h4 small,
  .c-post > h5 small,
  .c-post > h6 small {
    display: inline-block;
    margin-top: 0;
  }
}
.c-post > :is(:not(.c-custom-block)) hr + h2,
.c-post > :is(:not(.c-custom-block)) hr + h3,
.c-post > :is(:not(.c-custom-block)) hr + h4,
.c-post > :is(:not(.c-custom-block)) hr + h5,
.c-post > :is(:not(.c-custom-block)) hr + h6,
.c-post > hr + h2,
.c-post > hr + h3,
.c-post > hr + h4,
.c-post > hr + h5,
.c-post > hr + h6 {
  margin-top: initial;
}
.c-post > :is(:not(.c-custom-block)) h3,
.c-post > :is(:not(.c-custom-block)) h4,
.c-post > :is(:not(.c-custom-block)) h5,
.c-post > :is(:not(.c-custom-block)) h6,
.c-post > h3,
.c-post > h4,
.c-post > h5,
.c-post > h6 {
  margin-top: 1.5em;
  margin-bottom: 0.8em;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) h3,
  .c-post > :is(:not(.c-custom-block)) h4,
  .c-post > :is(:not(.c-custom-block)) h5,
  .c-post > :is(:not(.c-custom-block)) h6,
  .c-post > h3,
  .c-post > h4,
  .c-post > h5,
  .c-post > h6 {
    margin-top: 1.875em;
  }
}
.c-post > :is(:not(.c-custom-block)) h2,
.c-post > h2 {
  position: relative;
  padding-bottom: 0.5em;
  margin-top: 2.5em;
  margin-bottom: 1.1em;
  font-size: 1.25em;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-main);
}
.c-post > :is(:not(.c-custom-block)) h2 + h2,
.c-post > :is(:not(.c-custom-block)) h2 + h3,
.c-post > :is(:not(.c-custom-block)) h2 + h4,
.c-post > :is(:not(.c-custom-block)) h2 + h5,
.c-post > :is(:not(.c-custom-block)) h2 + h6,
.c-post > h2 + h2,
.c-post > h2 + h3,
.c-post > h2 + h4,
.c-post > h2 + h5,
.c-post > h2 + h6 {
  margin-top: 1.5em;
}
.c-post > :is(:not(.c-custom-block)) h3,
.c-post > h3 {
  font-size: 1.15em;
}
.c-post > :is(:not(.c-custom-block)) h3 + h3,
.c-post > :is(:not(.c-custom-block)) h3 + h4,
.c-post > h3 + h3,
.c-post > h3 + h4 {
  margin-top: 1.5em;
}
.c-post > :is(:not(.c-custom-block)) h3 + h5,
.c-post > :is(:not(.c-custom-block)) h3 + h6,
.c-post > h3 + h5,
.c-post > h3 + h6 {
  margin-top: 1.25em;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) h3 + h5,
  .c-post > :is(:not(.c-custom-block)) h3 + h6,
  .c-post > h3 + h5,
  .c-post > h3 + h6 {
    margin-top: 1.3em;
  }
}
.c-post > :is(:not(.c-custom-block)) h4,
.c-post > h4 {
  font-size: 1.05em;
}
.c-post > :is(:not(.c-custom-block)) h4 + h4,
.c-post > :is(:not(.c-custom-block)) h4 + h5,
.c-post > :is(:not(.c-custom-block)) h4 + h6,
.c-post > h4 + h4,
.c-post > h4 + h5,
.c-post > h4 + h6 {
  margin-top: 1.25em;
}
.c-post > :is(:not(.c-custom-block)) h5,
.c-post > h5 {
  font-size: 1em;
}
.c-post > :is(:not(.c-custom-block)) h5 + h5,
.c-post > :is(:not(.c-custom-block)) h5 + h6,
.c-post > h5 + h5,
.c-post > h5 + h6 {
  margin-top: 1.25em;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) h5 + h5,
  .c-post > :is(:not(.c-custom-block)) h5 + h6,
  .c-post > h5 + h5,
  .c-post > h5 + h6 {
    margin-top: 1.3em;
  }
}
.c-post > :is(:not(.c-custom-block)) h6,
.c-post > h6 {
  font-size: 1em;
}
.c-post > :is(:not(.c-custom-block)) h6 + h6,
.c-post > h6 + h6 {
  margin-top: 1.25em;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) h6 + h6,
  .c-post > h6 + h6 {
    margin-top: 1.3em;
  }
}
.c-post > :is(:not(.c-custom-block)) ol,
.c-post > :is(:not(.c-custom-block)) ul,
.c-post > ol,
.c-post > ul {
  margin: 1.5em 0;
  line-height: 1.7;
}
.c-post > :is(:not(.c-custom-block)) ol > li,
.c-post > :is(:not(.c-custom-block)) ul > li,
.c-post > ol > li,
.c-post > ul > li {
  margin: 0.4rem 0;
}
.c-post > :is(:not(.c-custom-block)) ol ol,
.c-post > :is(:not(.c-custom-block)) ol ul,
.c-post > :is(:not(.c-custom-block)) ul ol,
.c-post > :is(:not(.c-custom-block)) ul ul,
.c-post > ol ol,
.c-post > ol ul,
.c-post > ul ol,
.c-post > ul ul {
  margin: 0.2em 0;
}
.c-post > :is(:not(.c-custom-block)) ol p,
.c-post > :is(:not(.c-custom-block)) ul p,
.c-post > ol p,
.c-post > ul p {
  margin: 0;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) ol.grid-2col,
  .c-post > :is(:not(.c-custom-block)) ul.grid-2col,
  .c-post > ol.grid-2col,
  .c-post > ul.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2em;
  }
  @container post (width < 600px) {
    .c-post > :is(:not(.c-custom-block)) ol.grid-2col,
    .c-post > :is(:not(.c-custom-block)) ul.grid-2col,
    .c-post > ol.grid-2col,
    .c-post > ul.grid-2col {
      grid-template-columns: 1fr;
    }
  }
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) ol.grid-3col,
  .c-post > :is(:not(.c-custom-block)) ul.grid-3col,
  .c-post > ol.grid-3col,
  .c-post > ul.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2em;
  }
  @container post (width < 600px) {
    .c-post > :is(:not(.c-custom-block)) ol.grid-3col,
    .c-post > :is(:not(.c-custom-block)) ul.grid-3col,
    .c-post > ol.grid-3col,
    .c-post > ul.grid-3col {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}
.c-post > :is(:not(.c-custom-block)) ol.item-spacing > li,
.c-post > :is(:not(.c-custom-block)) ul.item-spacing > li,
.c-post > ol.item-spacing > li,
.c-post > ul.item-spacing > li {
  margin: 1.6rem 0;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) ol.item-spacing > li,
  .c-post > :is(:not(.c-custom-block)) ul.item-spacing > li,
  .c-post > ol.item-spacing > li,
  .c-post > ul.item-spacing > li {
    margin: 3.2rem 0;
  }
}
.c-post > :is(:not(.c-custom-block)) ul,
.c-post > ul {
  padding-left: 0.8em;
  margin-left: 0.8em;
}
.c-post > :is(:not(.c-custom-block)) ul > li,
.c-post > ul > li {
  list-style: disc;
}
.c-post > :is(:not(.c-custom-block)) ul > li::marker,
.c-post > ul > li::marker {
  font-size: 1.1em;
  color: var(--color-main);
}
.c-post > :is(:not(.c-custom-block)) ul > li + li,
.c-post > ul > li + li {
  margin-top: 0.5em;
}
.c-post > :is(:not(.c-custom-block)) ol,
.c-post > ol {
  padding-left: 0.8em;
  margin-left: 0.8em;
}
.c-post > :is(:not(.c-custom-block)) ol > li,
.c-post > ol > li {
  padding-left: 0.2em;
  list-style: decimal;
}
.c-post > :is(:not(.c-custom-block)) ol > li::marker,
.c-post > ol > li::marker {
  font-size: 1em;
  font-weight: 700;
}
.c-post > :is(:not(.c-custom-block)) ol ol,
.c-post > ol ol {
  padding-left: 2.5em;
}
.c-post > :is(:not(.c-custom-block)) ol.roman > li,
.c-post > ol.roman > li {
  list-style: upper-roman;
}
.c-post > :is(:not(.c-custom-block)) ol.katakana > li,
.c-post > ol.katakana > li {
  list-style: katakana;
}
.c-post > :is(:not(.c-custom-block)) hr:not(.c-spacer),
.c-post > hr:not(.c-spacer) {
  margin-block: 4rem;
  border: none;
  border-top: 1px solid #ddd;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) hr:not(.c-spacer),
  .c-post > hr:not(.c-spacer) {
    margin-block: 6rem;
    border-width: 2px;
  }
}
.c-post > :is(:not(.c-custom-block)) sup,
.c-post > sup {
  margin-left: 0.1em;
  font-weight: 700;
}
.c-post > :is(:not(.c-custom-block)) blockquote,
.c-post > blockquote {
  padding: 2px 0 2px 0.7em;
  margin: 2rem 0;
  font-size: 0.97em;
  color: #505c64;
  border-left: 3px solid #9dacb7;
}
.c-post > :is(:not(.c-custom-block)) blockquote p,
.c-post > blockquote p {
  margin: 1rem 0;
}
.c-post > :is(:not(.c-custom-block)) blockquote > :first-child,
.c-post > blockquote > :first-child {
  margin-top: 0;
}
.c-post > :is(:not(.c-custom-block)) blockquote > :last-child,
.c-post > blockquote > :last-child {
  margin-bottom: 0;
}
.c-post > :is(:not(.c-custom-block)) blockquote.twitter-tweet,
.c-post > blockquote.twitter-tweet {
  display: none;
}
.c-post > :is(:not(.c-custom-block)) .table-wrap,
.c-post > .table-wrap {
  margin: 2em auto;
}
.c-post > :is(:not(.c-custom-block)) .table-wrap::-webkit-scrollbar,
.c-post > .table-wrap::-webkit-scrollbar {
  display: none;
}
.c-post > :is(:not(.c-custom-block)) .table-wrap:last-child,
.c-post > .table-wrap:last-child {
  margin-bottom: 0;
}
.c-post > :is(:not(.c-custom-block)) table,
.c-post > table {
  width: 100%;
  margin-block: 2.5em;
  overflow: auto;
  font-size: 0.95em;
  line-height: 1.5;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
}
.c-post > :is(:not(.c-custom-block)) table:first-child,
.c-post > table:first-child {
  margin-block: 0;
}
.c-post > :is(:not(.c-custom-block)) table.layout-fixed,
.c-post > table.layout-fixed {
  table-layout: fixed;
}
.c-post > :is(:not(.c-custom-block)) table .text-center,
.c-post > table .text-center {
  text-align: center;
}
.c-post > :is(:not(.c-custom-block)) caption,
.c-post > caption {
  margin-bottom: 0.8em;
  font-size: 0.875em;
  text-align: right;
}
.c-post > :is(:not(.c-custom-block)) td,
.c-post > :is(:not(.c-custom-block)) th,
.c-post > td,
.c-post > th {
  vertical-align: top;
  padding: 1em;
  border: 1px solid var(--color-border);
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) td,
  .c-post > :is(:not(.c-custom-block)) th,
  .c-post > td,
  .c-post > th {
    padding: 1.2em;
  }
}
.c-post > :is(:not(.c-custom-block)) th,
.c-post > th {
  min-width: 6em;
  position: relative;
  font-weight: 600;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) th,
  .c-post > th {
    min-width: 8em;
  }
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) td,
  .c-post > td {
    padding: 1.2em 1.6em;
  }
}
.c-post > :is(:not(.c-custom-block)) img,
.c-post > img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  transition: opacity 0.3s ease;
}
@media (768px <= width) {
  .c-post > :is(:not(.c-custom-block)) img,
  .c-post > img {
    margin: 3rem 0;
  }
}
.c-post > :is(:not(.c-custom-block)) img + br,
.c-post > img + br {
  display: none;
}
.c-post > :is(:not(.c-custom-block)) img ~ em,
.c-post > img ~ em {
  display: block;
  margin: -1.5rem auto 0;
  font-size: 0.92em;
  line-height: 1.3;
  text-align: center;
}
.c-post > :is(:not(.c-custom-block)) .embed-map,
.c-post > .embed-map {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: calc(56.25% + 38px);
}
.c-post > :is(:not(.c-custom-block)) .embed-map iframe,
.c-post > .embed-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.c-section {
  margin-top: 4rem;
}
@media (768px <= width <= 960px) {
  .c-section {
    margin-top: 6rem;
  }
}
@media (960px < width) {
  .c-section {
    margin-top: 8rem;
  }
}
.c-section:first-child {
  margin-top: 0;
}
@media (768px <= width <= 960px) {
  .c-section:first-child {
    margin-top: 0;
  }
}
@media (960px < width) {
  .c-section:first-child {
    margin-top: 0;
  }
}
.c-section + .c-section {
  margin-top: 5rem;
}
@media (768px <= width <= 960px) {
  .c-section + .c-section {
    margin-top: 10rem;
  }
}
@media (960px < width) {
  .c-section + .c-section {
    margin-top: 12rem;
  }
}
.table-wrap {
  margin-block: 2em;
}
.table-wrap::-webkit-scrollbar {
  display: none;
}
.table-wrap:first-child {
  margin-top: 0;
}
.table-wrap:last-child {
  margin-bottom: 0;
}
.c-table {
  min-width: calc(100vw - var(--container-padding) * 2);
  margin-block: 2em;
  overflow-x: auto;
  line-height: 1.5;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
}
@media (768px <= width) {
  .c-table {
    width: 100%;
    min-width: auto;
  }
}
.c-table:first-child {
  margin-top: 0;
}
.c-table:last-child {
  margin-bottom: 0;
}
.c-table td,
.c-table th {
  max-width: 400px;
  padding: 1em 1.2em 1em 0;
  border-bottom: 1px solid #ccc;
}
@media (768px <= width) {
  .c-table td,
  .c-table th {
    max-width: none;
    padding: 1.4em 2em 1.4em 0;
  }
}
.c-table th {
  position: relative;
  font-weight: 400;
  white-space: nowrap;
}
.c-title-index {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.4rem;
  place-items: center;
  font-size: max(2.6rem, 20px);
  font-weight: 700;
  line-height: 1.384;
  text-align: center;
  letter-spacing: -0.02em;
}
@media (768px <= width) {
  .c-title-index {
    row-gap: 2.4rem;
    font-size: max(3.4rem, 28px);
  }
}
.c-title-index:before {
  display: block;
  width: 20.6rem;
  aspect-ratio: 206/43;
  content: "";
  background: url(../../../assets/images/lp/common/logo.svg) center/contain
    no-repeat;
}
@media (768px <= width) {
  .c-title-index:before {
    width: 29.6rem;
  }
}
.c-title-index:after {
  position: absolute;
  top: 0;
  left: calc(var(--negative-margin) - 0.08em);
  z-index: -1;
  display: block;
  display: none;
  font-family: var(--font-sans-en);
  font-size: max(9.4rem, 80px);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  color: #ffffff26;
  letter-spacing: 0.035em;
  white-space: nowrap;
  content: attr(data-title-en);
  writing-mode: vertical-rl;
}
@media (768px <= width) {
  .c-title-index:after {
    top: -7rem;
    left: 50%;
    display: grid;
    place-items: center;
    height: max(19.1rem, 1lh);
    font-size: max(13.6rem, 100px);
    letter-spacing: 0.025em;
    writing-mode: horizontal-tb;
    transform: translate(-50%);
  }
}
.c-title-index--show-en-sp:after {
  display: block;
}
@media (768px <= width) {
  .c-title-index--show-en-sp:after {
    display: grid;
  }
}
.c-title-index--orange {
  color: var(--color-main);
}
.p-index-access {
  padding-block: 5rem 3rem;
  overflow: hidden;
}
@media (768px <= width) {
  .p-index-access {
    padding-block: 10rem 5rem;
  }
}
.p-index-access__image {
  max-width: 588px;
  margin-inline: auto;
  margin-top: 3.9rem;
}
@media (768px <= width) {
  .p-index-access__image {
    margin-top: 6.8rem;
  }
}
.p-index-access__image img {
  width: 100%;
}
.p-index-access__address {
  margin-top: 3rem;
  font-weight: 500;
  text-align: center;
}
@media (768px <= width) {
  .p-index-access__address {
    margin-top: 4.3rem;
  }
}
.p-index-access__map {
  width: 100%;
  height: 24.6rem;
  margin-top: 1.6rem;
}
@media (768px <= width) {
  .p-index-access__map {
    height: 42rem;
    margin-top: 6rem;
  }
}
.p-index-access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-campaign {
  padding-top: 5rem;
}
@media (768px <= width) {
  .p-index-campaign {
    padding-top: 6rem;
  }
}
.p-index-campaign__content {
  display: grid;
  place-content: center;
  width: 100%;
  aspect-ratio: 335/405;
  font-size: max(2rem, 16px);
  font-weight: 500;
  background: #909090;
}
@media (768px <= width) {
  .p-index-campaign__content {
    aspect-ratio: 792/360;
  }
}
.p-index-concept {
  --angle: 14.55deg;
  --skew-padding: calc(tan(var(--angle)) * 100vw/2);
  position: relative;
  z-index: 1;
  padding-inline: var(--container-padding);
  padding-top: 20.2rem;
  padding-bottom: 11rem;
  margin-inline: var(--negative-margin);
  margin-top: -16.2rem;
}
@media (768px <= width) {
  .p-index-concept {
    --angle: 8.1942deg;
    padding-top: calc(var(--skew-padding) - 3.8rem);
    padding-bottom: calc(var(--skew-padding) - 4.8rem);
    margin-top: 0;
  }
}
.p-index-concept:before {
  position: absolute;
  inset: 5rem 0 0;
  z-index: -2;
  width: 100%;
  content: "";
  background: var(--color-sub01);
  transform: skewY(calc(-1 * var(--angle)));
}
@media (768px <= width) {
  .p-index-concept:before {
    inset: -6.2rem 0 -8.2rem;
  }
}
.p-index-concept__title {
  position: relative;
  font-size: max(2.6rem, 20px);
  font-weight: 700;
  line-height: 1.384;
  text-align: center;
  letter-spacing: -0.02em;
}
@media (768px <= width) {
  .p-index-concept__title {
    font-size: max(3.4rem, 28px);
  }
}
.p-index-concept__title:before {
  position: absolute;
  top: 2rem;
  left: calc(var(--negative-margin) - 0.08em);
  z-index: -1;
  display: block;
  font-family: var(--font-sans-en);
  font-size: max(9.4rem, 80px);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  color: #ffffff26;
  letter-spacing: 0.035em;
  white-space: nowrap;
  content: attr(data-title-en);
  writing-mode: vertical-rl;
}
@media (768px <= width) {
  .p-index-concept__title:before {
    top: -2rem;
    left: 50%;
    display: grid;
    place-items: center;
    height: max(19.1rem, 1lh);
    font-size: max(13.6rem, 100px);
    letter-spacing: 0.025em;
    writing-mode: horizontal-tb;
    transform: translate(-50%);
  }
}
.p-index-concept__message {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 3rem;
  padding-inline: 1.6rem;
  margin-top: 2.8rem;
}
@media (768px <= width) {
  .p-index-concept__message {
    grid-template-columns: 1fr 1fr;
    column-gap: 4.8rem;
    padding-inline: 0;
    margin-inline: -1.6rem;
    margin-top: 6.8rem;
  }
}
.p-index-concept__block-head {
  display: grid;
  grid-template-columns: 13.2rem 1fr;
  column-gap: 1.9rem;
}
.p-index-concept__block-head--sp-reverse {
  grid-template-columns: 1fr 13.2rem;
}
@media (768px <= width) {
  .p-index-concept__block-head--sp-reverse {
    grid-template-columns: 13.2rem 1fr;
  }
}
.p-index-concept__block-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eee;
  border-radius: 50%;
}
.p-index-concept__block-head--sp-reverse .p-index-concept__block-image {
  grid-row: 1;
  grid-column: 2;
}
@media (768px <= width) {
  .p-index-concept__block-head--sp-reverse .p-index-concept__block-image {
    grid-column: 1;
  }
}
.p-index-concept__block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-concept__block-meta {
  align-self: center;
  padding-top: 1rem;
}
@media (768px <= width) {
  .p-index-concept__block-meta {
    align-self: start;
    padding-top: 1.6rem;
  }
}
.p-index-concept__block-audience {
  font-weight: 500;
  color: var(--color-black);
  text-align: center;
}
@media (768px <= width) {
  .p-index-concept__block-audience {
    text-align: left;
  }
}
.p-index-concept__block-insight {
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1.6875;
}
@media (768px <= width) {
  .p-index-concept__block-insight {
    font-size: max(2rem, 16px);
    line-height: 1.5;
  }
}
.p-index-concept__block-body {
  position: relative;
  padding: 2.3rem 1rem;
  margin-top: 2.3rem;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-main);
  text-align: center;
  letter-spacing: 0.02em;
  background: var(--color-white);
  border-radius: max(1rem, 10px);
}
.p-index-concept__block-body:before {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  width: 6.5rem;
  aspect-ratio: 65/28;
  content: "";
  background: url(../../../assets/images/lp/top/concept_message_arrow.svg)
    center/contain no-repeat;
  transform: translate(-50%);
}
.p-index-equipment {
  padding-block: 5rem 2.4rem;
  overflow: hidden;
}
@media (768px <= width) {
  .p-index-equipment {
    padding-block: 10rem 3rem;
  }
}
@media (768px <= width) {
  .p-index-equipment__container {
    max-width: calc(994px + var(--container-padding) * 2);
  }
}
.p-index-equipment__copy {
  margin-top: 1.9rem;
  font-size: max(2rem, 16px);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (768px <= width) {
  .p-index-equipment__copy {
    margin-top: 2.3rem;
    font-size: max(3.4rem, 28px);
  }
}
.p-index-equipment__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  padding-inline: 1.6rem;
  margin-top: 2.4rem;
}
@media (768px <= width) {
  .p-index-equipment__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
    margin-top: 6.3rem;
  }
}
.p-index-equipment__item-image {
  width: 100%;
  aspect-ratio: 1;
  background: #666;
}
.p-index-equipment__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-equipment__item-title {
  margin-top: 1rem;
  font-weight: 500;
  line-height: 1.375;
  text-align: center;
  letter-spacing: 0.02em;
}
@media (768px <= width) {
  .p-index-equipment__item-title {
    margin-top: 1.7rem;
  }
}
.p-index-equipment__note {
  margin-top: max(0.2rem, 2px);
  font-size: max(1.4rem, 12px);
  color: #909090;
  text-align: center;
}
@media (768px <= width) {
  .p-index-equipment__note {
    margin-top: 2rem;
  }
}
.p-index-equipment__images {
  display: flex;
  column-gap: max(1rem, 10px);
  padding-inline: var(--container-padding);
  margin-top: 3rem;
  overflow: auto hidden;
  white-space: nowrap;
}
@media (768px <= width) {
  .p-index-equipment__images {
    column-gap: max(0.5rem, 5px);
    max-width: 1500px;
    padding-inline: 1.3rem;
    margin-inline: auto;
    margin-top: 7.9rem;
  }
}
.p-index-equipment__images::-webkit-scrollbar {
  display: none;
}
.p-index-equipment__image {
  flex: 1;
  min-width: 27.1rem;
  aspect-ratio: 271/165;
  overflow: hidden;
  background: #666;
}
@media (768px <= width) {
  .p-index-equipment__image {
    min-width: auto;
  }
}
.p-index-equipment__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-faq {
  padding-top: 5rem;
}
@media (768px <= width) {
  .p-index-faq {
    padding-top: 10rem;
  }
}
.p-index-faq__list {
  margin-top: 3.9rem;
}
@media (768px <= width) {
  .p-index-faq__list {
    margin-top: 5.9rem;
  }
}
.p-index-faq__question,
.p-index-faq__answer {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 1.6rem;
  padding-right: 1.8rem;
  padding-bottom: 1.6rem;
}
.p-index-faq__question:before,
.p-index-faq__answer:before {
  display: grid;
  place-content: center;
  width: 2.4rem;
  max-height: calc(max(1.6rem, 14px) * 2.51);
  font-family: var(--font-sans-en);
  font-size: max(3rem, 24px);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}
.p-index-faq__question {
  background-image: radial-gradient(circle, #909090 1px, transparent 1px);
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: 6px 2px;
}
.p-index-faq__question:before {
  color: #8431cb;
  content: "Q";
}
.p-index-faq__answer {
  padding-block: 1.6rem;
  border-bottom: 1px solid var(--color-white);
}
.p-index-faq__answer:before {
  color: var(--color-main);
  content: "A";
}
.p-index-faq__answer + .p-index-faq__question {
  padding-top: 1.6rem;
}
.p-index-faq__text {
  margin-block: auto;
}
.p-index-features {
  padding-top: 1.8rem;
  overflow: hidden;
}
@media (768px <= width) {
  .p-index-features {
    padding-top: 3.2rem;
  }
}
.p-index-features__title {
  padding-top: 2.7rem;
}
@media (768px <= width) {
  .p-index-features__title {
    padding-top: 0;
  }
}
.p-index-features__title-emphasis {
  margin-top: -0.4em;
  font-size: 800;
  font-size: max(4.6rem, 36px);
  color: var(--color-white);
}
@media (768px <= width) {
  .p-index-features__title-emphasis {
    margin-top: -0.55em;
    font-size: max(5.9rem, 48px);
  }
}
.p-index-features__title-highlight {
  font-size: max(5.8rem, 48px);
  color: var(--color-main);
}
@media (768px <= width) {
  .p-index-features__title-highlight {
    font-size: max(7.6rem, 64px);
  }
}
.p-index-features__points {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: max(1rem, 10px);
  padding-inline: 1.6rem;
  margin-top: 2rem;
}
@media (768px <= width) {
  .p-index-features__points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: max(1.3rem, 10px);
    max-width: 693px;
    padding-inline: 0;
    margin-inline: auto;
    margin-top: 3rem;
  }
}
.p-index-features__point {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  max-height: 11.4rem;
  padding: 2.2rem 1.2rem 2.2rem 2.2rem;
  color: var(--color-black);
  background: var(--color-white);
  border: 4px solid var(--color-main);
  border-radius: max(1rem, 10px);
}
@media (768px <= width) {
  .p-index-features__point {
    column-gap: 2.8rem;
    max-height: 12.8rem;
    padding: 2.4rem 2.5rem;
  }
}
.p-index-features__point-number {
  flex-shrink: 0;
  width: 2.8rem;
}
@media (768px <= width) {
  .p-index-features__point-number {
    width: 3.1rem;
  }
}
.p-index-features__point-text {
  position: relative;
  margin-inline: auto;
  font-size: max(2.2rem, 18px);
  font-weight: 600;
  line-height: 1.363;
  text-align: center;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media (768px <= width) {
  .p-index-features__point-text {
    font-size: max(2.4rem, 18px);
    line-height: 1.375;
  }
}
.p-index-features__point-text:before,
.p-index-features__point-text:after {
  position: absolute;
  width: 1.8rem;
  aspect-ratio: 17/29;
  content: "";
  background: url(../../../assets/images/lp/common/icon_sparkle.svg)
    center/contain no-repeat;
}
@media (768px <= width) {
  .p-index-features__point-text:before,
  .p-index-features__point-text:after {
    width: 2rem;
  }
}
.p-index-features__point-text:before {
  transform: translate(-100%) scale(-1);
}
.p-index-features__point-text:after {
  transform: translate(100%);
}
.p-index-features__point-text--compact {
  letter-spacing: -0.06em;
}
.p-index-features__point-text--01:before {
  bottom: -2rem;
  left: -2rem;
}
@media (768px <= width) {
  .p-index-features__point-text--01:before {
    bottom: -1.9rem;
    left: -2.3rem;
  }
}
.p-index-features__point-text--01:after {
  top: -1.4rem;
  right: -1.2rem;
}
@media (768px <= width) {
  .p-index-features__point-text--01:after {
    top: -1.5rem;
    right: -2rem;
  }
}
.p-index-features__point-text--02:before {
  top: -0.2rem;
  left: -1.4rem;
}
@media (768px <= width) {
  .p-index-features__point-text--02:before {
    top: 0;
    left: -1.6rem;
  }
}
.p-index-features__point-text--02:after {
  right: -2rem;
  bottom: -1.2rem;
}
@media (768px <= width) {
  .p-index-features__point-text--02:after {
    right: -2.7rem;
    bottom: -1rem;
  }
}
.p-index-features__point-text--03:before {
  bottom: -0.2rem;
  left: -1.1rem;
}
@media (768px <= width) {
  .p-index-features__point-text--03:before {
    bottom: -0.3rem;
  }
}
.p-index-features__point-text--03:after {
  top: -1.4rem;
  right: -1.4rem;
}
@media (768px <= width) {
  .p-index-features__point-text--03:after {
    top: -1.5rem;
    right: -2.1rem;
  }
}
.p-index-features__point-text--04:before {
  top: 0;
  left: 1.8rem;
}
@media (768px <= width) {
  .p-index-features__point-text--04:before {
    left: 2rem;
  }
}
.p-index-features__point-text--04:after {
  top: -1.4rem;
  right: 1.4rem;
}
@media (768px <= width) {
  .p-index-features__point-text--04:after {
    right: 0.8rem;
  }
}
.p-index-features__cta {
  position: relative;
  z-index: 1;
  margin-top: -6rem;
}
@media (768px <= width) {
  .p-index-features__cta {
    margin-top: 0;
  }
}
.p-index-head-cta {
  position: relative;
  z-index: 1;
  padding-inline: var(--container-padding);
  margin-top: -6.6rem;
}
@media (768px <= width) {
  .p-index-head-cta {
    margin-top: -3vw;
  }
}
.p-index-head-cta .c-campaign-cta {
  margin-top: 0;
}
.p-index-kv {
  padding-top: 4rem;
  overflow: hidden;
}
@media (768px <= width <= 960px) {
  .p-index-kv {
    padding-top: 8rem;
  }
}
@media (960px < width) {
  .p-index-kv {
    padding-top: calc(max(6.4rem, 50px) + 4.6rem);
  }
}
.p-index-kv__container {
  padding-inline: var(--container-padding);
}
@media (960px < width) {
  .p-index-kv__container {
    --container-padding: 0;
  }
}
.p-index-kv__logo {
  width: 100%;
}
@media (768px <= width) {
  .p-index-kv__logo {
    max-width: max(66.267vw, 758px);
    margin-inline: auto;
  }
}
.p-index-kv__logo img {
  width: 100%;
}
.p-index-kv__content {
  position: relative;
  padding-bottom: 21.6vw;
}
@media (768px <= width) {
  .p-index-kv__content {
    padding-bottom: 4.2vw;
    margin-top: -5.8vw;
  }
}
.p-index-kv__main {
  position: absolute;
  top: 4vw;
  left: 1.6vw;
  z-index: 5;
  width: 86.4vw;
}
@media (768px <= width) {
  .p-index-kv__main {
    top: 7.8vw;
    left: 53.26%;
    width: 28.333vw;
    min-width: 324px;
  }
}
.p-index-kv__main-copy,
.p-index-kv__main-copy img {
  width: 100%;
}
.p-index-kv__open {
  position: absolute;
  top: calc(100% + 15.2vw);
  right: -9.067vw;
  width: 30.4vw;
}
@media (768px <= width) {
  .p-index-kv__open {
    top: auto;
    right: -16.975%;
    bottom: -10.116%;
    width: 33.64%;
  }
}
.p-index-kv__open img {
  width: 100%;
}
.p-index-kv__sub-copy {
  position: absolute;
  top: 49.6vw;
  left: 1.6vw;
  z-index: 2;
  width: 10.667vw;
}
@media (768px <= width) {
  .p-index-kv__sub-copy {
    top: 6.467vw;
    left: clamp(0px, 15.8% - (1133px - 100vw) * 0.5, 15.8%);
    width: 17vw;
    min-width: 185px;
  }
}
.p-index-kv__sub-copy img {
  width: 100%;
}
.p-index-kv__line-background {
  position: relative;
  aspect-ratio: 377/585;
  margin-inline: var(--negative-margin);
}
@media (768px <= width) {
  .p-index-kv__line-background {
    display: flex;
    justify-content: flex-end;
    width: 99vw;
    aspect-ratio: initial;
    margin-inline: auto 0;
    overflow: hidden;
  }
}
.p-index-kv__line-background:before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: url(../../../assets/images/lp/top/kv_line-bg.svg) center/contain
    no-repeat;
}
@media (768px <= width) {
  .p-index-kv__line-background:before {
    min-width: 1133px;
    height: auto;
    aspect-ratio: 99/33.8;
    margin-left: auto;
    background: url(../../../assets/images/lp/top/kv_line-bg-large.svg)
      center/contain no-repeat;
  }
}
.p-index-kv__line-background:after {
  position: absolute;
  top: 4vw;
  left: 0;
  width: 30.133vw;
  height: 25.333vw;
  content: "";
  background: image-set(
      url(../../../assets/images/lp/top/kv_arrow-line.avif) type("image/avif"),
      url(../../../assets/images/lp/top/kv_arrow-line.webp) type("image/webp")
    )
    center/contain no-repeat;
}
@media (768px <= width) {
  .p-index-kv__line-background:after {
    display: none;
  }
}
.p-index-kv__person {
  position: absolute;
  top: 30.933vw;
  z-index: 1;
  width: calc(100% + var(--container-padding) * 2);
  aspect-ratio: 375/432;
  margin-inline: var(--negative-margin);
}
@media (768px <= width) {
  .p-index-kv__person {
    top: clamp(0px, 1.656% - (1133px - 100vw) * 0.1, 1.656%);
    right: 50%;
    z-index: 1;
    width: 27.8vw;
    min-width: 318px;
    margin-inline: 0;
    transform: translate(14.388%);
  }
}
@media (768px <= width) {
  .p-index-kv__person:before {
    position: absolute;
    top: 23.254%;
    left: 3.597%;
    z-index: -10;
    display: block;
    width: 117.98%;
    aspect-ratio: 492/232;
    content: "";
    background: image-set(
        url(../../../assets/images/lp/top/kv_arrow-person-back.avif)
          type("image/avif"),
        url(../../../assets/images/lp/top/kv_arrow-person-back.webp)
          type("image/webp")
      )
      center/contain no-repeat;
  }
}
@media (768px <= width) {
  .p-index-kv__person:after {
    position: absolute;
    right: -6.47%;
    bottom: 17.056%;
    z-index: 2;
    display: block;
    width: 63.78%;
    aspect-ratio: 266/105;
    content: "";
    background: image-set(
        url(../../../assets/images/lp/top/kv_arrow-person-forward.avif)
          type("image/avif"),
        url(../../../assets/images/lp/top/kv_arrow-person-forward.webp)
          type("image/webp")
      )
      center/contain no-repeat;
  }
}
.p-index-kv__person-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: image-set(
      url(../../../assets/images/lp/top/kv_person.avif) type("image/avif"),
      url(../../../assets/images/lp/top/kv_person.webp) type("image/webp")
    )
    center/contain no-repeat;
}
.p-index-kv__exterior {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: calc(100% + var(--container-padding) * 2);
  aspect-ratio: 375/343;
  margin-inline: var(--negative-margin);
  background: image-set(
      url(../../../assets/images/lp/top/kv_exterior.avif) type("image/avif"),
      url(../../../assets/images/lp/top/kv_exterior.webp) type("image/webp")
    )
    left center/contain no-repeat;
}
@media (768px <= width) {
  .p-index-kv__exterior {
    right: calc(44.466% + 1px);
    bottom: -0.867vw;
    width: 55.466%;
    min-width: 635px;
    aspect-ratio: 833/525;
    margin-inline: 0;
    content: "";
    background: image-set(
        url(../../../assets/images/lp/common/exterior.avif) type("image/avif"),
        url(../../../assets/images/lp/common/exterior.webp) type("image/webp")
      )
      center/contain no-repeat;
  }
}
.p-index-movie {
  padding-block: 5rem;
}
@media (768px <= width) {
  .p-index-movie {
    padding-block: 3.2rem;
  }
}
.p-index-movie__player {
  display: flex;
  justify-content: center;
  aspect-ratio: auto;
  margin-inline: auto;
}
.p-index-movie__player video {
  display: block;
  width: 100%;
  max-width: 450px;
  height: auto;
  aspect-ratio: 9/16;
  object-fit: contain;
  background: #000;
}
@media (width < 768px) {
  .p-index-movie__player {
    width: min(100%, 42.1875vh);
    min-height: min(480px, 75vh);
  }
  .p-index-movie__player video {
    max-height: 75vh;
    min-height: min(480px, 75vh);
  }
}
@supports (height: 100svh) {
  @media (width < 768px) {
    .p-index-movie__player {
      width: min(100%, 42.1875svh);
      min-height: min(480px, 75svh);
    }
    .p-index-movie__player video {
      max-height: 75svh;
      min-height: min(480px, 75svh);
    }
  }
}
.p-index-news {
  padding-top: 2.2rem;
}
@media (768px <= width) {
  .p-index-news {
    padding-top: 7rem;
  }
}
.p-index-news__container {
  --container-padding: 3.6rem;
  display: grid;
  grid-template-columns: 1fr max-content;
}
@media (768px <= width) {
  .p-index-news__container {
    --container-padding: max(5rem, 40px);
    grid-template-columns: max-content 1fr;
  }
}
.p-index-news__title {
  font-family: var(--font-sans-en);
  font-size: max(3rem, 24px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media (768px <= width) {
  .p-index-news__title {
    padding-top: 2.4rem;
    padding-right: 5.1rem;
    border-top: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
  }
}
.p-index-news__list {
  grid-row: 2;
  grid-column: span 2;
  margin-top: 1rem;
  border-top: 1px solid var(--color-white);
}
@media (768px <= width) {
  .p-index-news__list {
    grid-row: 1;
    grid-column: 2;
    margin-top: 0;
  }
}
.p-index-news__not-post {
  padding-block: 2rem 1.8rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-white);
}
@media (768px <= width) {
  .p-index-news__not-post {
    display: flex;
    align-items: center;
    min-height: 8.4rem;
    padding-block: 2.8rem;
  }
}
.p-index-news__link {
  align-self: center;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
}
@media (768px <= width) {
  .p-index-news__link {
    grid-column: span 2;
    order: 2;
    margin-top: 1rem;
    text-align: right;
  }
}
.p-index-news__link a {
  display: inline-block;
  padding-block: 0.4em;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .p-index-news__link a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-index-price {
  padding-top: 5rem;
}
@media (768px <= width) {
  .p-index-price {
    padding-top: 6rem;
  }
}
.p-index-price__block + .p-index-price__block {
  margin-top: 3rem;
}
@media (768px <= width) {
  .p-index-price__block + .p-index-price__block {
    margin-top: 4rem;
  }
}
.p-index-price__heading {
  position: relative;
  display: grid;
  place-content: center;
  height: 8.3rem;
  cursor: pointer;
  list-style: none;
  border: 1px solid var(--color-white);
}
.p-index-price__heading::-webkit-details-marker {
  display: none;
}
.p-index-price__heading:after {
  position: absolute;
  top: 50%;
  right: 2.6rem;
  width: 2.1rem;
  aspect-ratio: 1;
  content: "";
  background: url(../../../assets/images/lp/common/icon_arrow-top.svg)
    center/contain no-repeat;
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.15s ease;
}
[open] .p-index-price__heading:after {
  transform: translateY(-42%) rotate(0);
}
.p-index-price__heading-text {
  font-size: max(2rem, 16px);
  font-weight: 600;
  text-align: center;
}
.p-index-price__head-note {
  display: block;
  font-size: max(1.4rem, 12px);
  text-align: center;
}
.p-index-price__content {
  padding-top: 2rem;
}
.p-index-price__price {
  margin-top: 2rem;
}
.p-index-price__sub-title + .p-index-price__price {
  margin-top: 1.5rem;
}
.p-index-price__price-item {
  display: grid;
  grid-template-columns: 1fr max-content;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #909090;
}
.p-index-price__price-item + .p-index-price__price-item {
  padding-top: 1.8rem;
}
.p-index-price__price-item dt {
  align-self: center;
  padding-left: 1.7rem;
}
.p-index-price__price-item dt small {
  display: block;
  font-size: max(1.3rem, 11px);
}
@media (768px <= width) {
  .p-index-price__price-item dt small {
    display: inline-block;
  }
}
.p-index-price__price-item dt small.inline-block {
  display: inline-block;
}
.p-index-price__price-item dd {
  display: flex;
  align-items: baseline;
  align-self: center;
  justify-content: flex-end;
  padding-inline: 1.7rem;
  font-size: max(1.4rem, 12px);
}
@media (768px <= width) {
  .p-index-price__price-item dd {
    width: 17.7rem;
  }
}
.p-index-price__price-item dd + dd {
  display: block;
  grid-column: span 2;
  margin-top: 1.5rem;
}
@media (768px <= width) {
  .p-index-price__price-item dd + dd {
    width: 100%;
  }
}
.p-index-price__price-label {
  display: inline-block;
  width: 3em;
  padding-top: 0.4em;
  margin-block: auto;
  white-space: nowrap;
}
@media (768px <= width) {
  .p-index-price__price-label {
    margin-right: auto;
  }
}
.p-index-price__price-number {
  display: inline-block;
  margin-inline: 0.8rem 0.4rem;
  font-size: max(2.5rem, 20px);
  font-weight: 600;
  line-height: 1.08;
}
.p-index-price__sub-title {
  padding: 0 0 1.8rem 1.7rem;
  margin-top: 1.8rem;
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  color: var(--color-sub01);
  border-bottom: 1px solid #909090;
}
.p-index-price__sub-title--mt-lg {
  margin-top: 3rem;
}
.p-index-price__sub-title small {
  display: block;
  margin-top: 0.2em;
  font-size: max(1.3rem, 11px);
  color: var(--color-white);
}
@media (768px <= width) {
  .p-index-price__sub-title small {
    display: inline-block;
    margin-left: 2em;
  }
}
.p-index-price__note {
  padding-inline: 1.7rem;
  margin-top: 3rem;
  font-size: max(1.4rem, 12px);
  line-height: 1.714;
  color: #909090;
}
.p-index-support {
  --angle: -14.55deg;
  --skew-padding: calc(tan(var(--angle)) * 100vw/2);
  position: relative;
  z-index: 1;
  padding-top: 1.8rem;
}
@media (768px <= width) {
  .p-index-support {
    --angle: -8.1942deg;
    padding-top: 2.8rem;
  }
}
.p-index-support:before {
  position: absolute;
  inset: 5rem 0 1.6rem;
  z-index: -1;
  width: 100%;
  content: "";
  background: var(--color-sub01);
  transform: skewY(calc(-1 * var(--angle)));
}
@media (768px <= width) {
  .p-index-support:before {
    top: 10.8rem;
    bottom: 11rem;
  }
}
@media (768px <= width) {
  .p-index-support__container {
    max-width: calc(1196px + var(--container-padding) * 2);
  }
}
.p-index-support__title {
  position: relative;
  z-index: 1;
  width: calc(100% + var(--container-padding) * 2);
  margin-inline: var(--negative-margin);
  text-align: center;
}
@media (768px <= width) {
  .p-index-support__title {
    width: 100%;
    margin-inline: auto;
  }
}
.p-index-support__title:before {
  position: absolute;
  top: 2.2rem;
  left: calc(var(--negative-margin) - 0.08em);
  z-index: -1;
  display: block;
  font-family: var(--font-sans-en);
  font-size: max(9.4rem, 80px);
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  color: #ffffff26;
  letter-spacing: 0.035em;
  white-space: nowrap;
  content: attr(data-title-en);
  writing-mode: vertical-rl;
}
@media (768px <= width) {
  .p-index-support__title:before {
    top: 95%;
    left: 50%;
    display: grid;
    place-items: center;
    height: max(19.1rem, 1lh);
    font-size: max(13.6rem, 100px);
    letter-spacing: 0.025em;
    writing-mode: horizontal-tb;
    transform: translate(-50%, -50%);
  }
}
@media (768px <= width) {
  .p-index-support__title-image {
    min-width: 66.8rem;
  }
}
.p-index-support__title-text {
  position: absolute;
  top: 57.538%;
  left: 50%;
  width: max-content;
  font-size: max(2.6rem, 20px);
  font-weight: 700;
  line-height: 1.384;
  color: var(--color-black);
  text-align: center;
  letter-spacing: -0.02em;
  transform: translate(-50%);
}
@media (768px <= width) {
  .p-index-support__title-text {
    top: 60%;
    margin-top: 0.2rem;
    margin-left: 0.7rem;
    font-size: max(3.4rem, 28px);
    line-height: 1.411;
  }
}
.p-index-support__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  margin-top: 2.5rem;
}
@media (768px <= width) {
  .p-index-support__list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4.1rem;
    justify-items: center;
    margin-top: 5.6rem;
  }
}
@media (960px < width) {
  .p-index-support__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (768px <= width <= 960px) {
  .p-index-support__item:last-child {
    grid-column: span 2;
    max-width: calc(50% - 2.05rem);
  }
}
.p-index-support__item-title {
  display: flex;
  column-gap: 2.3rem;
  align-items: center;
}
@media (768px <= width) {
  .p-index-support__item-title {
    align-items: flex-end;
  }
}
.p-index-support__item-number {
  flex-shrink: 0;
  width: 5.3rem;
  aspect-ratio: 53/51;
}
@media (768px <= width) {
  .p-index-support__item-number {
    width: 7.5rem;
  }
}
.p-index-support__item-title-text {
  font-size: max(2.2rem, 18px);
  font-weight: 600;
  line-height: 1.3636;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
@media (768px <= width) {
  .p-index-support__item-title-text {
    font-size: max(2rem, 18px);
    line-height: 1.5;
  }
}
.p-index-support__item-image {
  width: 100%;
  aspect-ratio: 371/233;
  margin-top: 1.2rem;
  border: 3px solid var(--color-main);
}
@media (768px <= width) {
  .p-index-support__item-image {
    margin-top: 1.8rem;
  }
}
.p-index-support__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-voice {
  padding-top: 5rem;
}
@media (768px <= width) {
  .p-index-voice {
    padding-top: 10rem;
  }
}
.p-index-voice__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  margin-top: 3rem;
}
@media (768px <= width) {
  .p-index-voice__list {
    margin-top: 5.9rem;
  }
}
.p-index-voice__item {
  display: grid;
  grid-template-columns: 13.2rem 1fr;
  gap: 1.4rem 2rem;
  padding: 1.5rem 1.6rem 2.5rem;
  color: var(--color-black);
  background: var(--color-white);
  border-radius: max(1rem, 10px);
}
@media (768px <= width) {
  .p-index-voice__item {
    gap: 2rem 2.7rem;
    padding: 3.4rem 3.6rem 3rem 2.7rem;
  }
}
.p-index-voice__item-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #eee;
  border-radius: 50%;
}
@media (768px <= width) {
  .p-index-voice__item-image {
    grid-row: span 2;
  }
}
.p-index-voice__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-index-voice__item-head {
  align-self: center;
}
.p-index-voice__item-title {
  font-weight: 500;
  line-height: 1.6875;
}
@media (768px <= width) {
  .p-index-voice__item-title {
    font-size: max(2rem, 16px);
    line-height: 1.5;
  }
}
.p-index-voice__item-meta {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--color-sub01);
}
@media (768px <= width) {
  .p-index-voice__item-meta {
    margin-top: 1.5rem;
    line-height: 1.6875;
  }
}
.p-index-voice__item-body {
  grid-column: span 2;
  line-height: 1.6875;
}
@media (768px <= width) {
  .p-index-voice__item-body {
    grid-column: 2;
  }
}
#p-index .l-wrapper {
  padding-top: 0;
}
#p-index .l-header-logo {
  display: none;
}
.p-news__list,
.p-post {
  border-top: 1px solid var(--color-white);
}
.p-post__head {
  padding-top: 3rem;
}
@media (768px <= width) {
  .p-post__head {
    padding-top: 3.8rem;
  }
}
.p-post__meta {
  display: flex;
  column-gap: 1.6rem;
  align-items: center;
}
@media (768px <= width) {
  .p-post__meta {
    flex-shrink: 0;
    line-height: 1.6875;
    transform: translateY(calc(0.5lh - 50%));
  }
}
.p-post__date {
  font-family: var(--font-sans-en);
  font-size: max(1.3rem, 11px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}
.p-post__category {
  position: relative;
  padding-left: 1.6rem;
  font-size: max(1.4rem, 12px);
  font-weight: 500;
}
.p-post__category:before {
  position: absolute;
  top: max(0.2rem, 2px);
  bottom: max(0.2rem, 2px);
  left: 0;
  width: max(0.1rem, 1px);
  content: "";
  background: var(--color-white);
}
.p-post__title {
  margin-top: 1rem;
  font-size: max(2.2rem, 18px);
  font-weight: 600;
  line-height: 1.3636;
  color: var(--color-main);
}
@media (768px <= width) {
  .p-post__title {
    margin-top: 2rem;
    font-size: max(2.5rem, 20px);
    line-height: 1.4;
  }
}
.p-post__body {
  padding-block: 3rem 6rem;
  border-bottom: 1px solid var(--color-white);
}
@media (768px <= width) {
  .p-post__body {
    padding-block: 4rem 10rem;
  }
}
.p-post__paging {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}
@media (768px <= width) {
  .p-post__paging {
    justify-content: center;
    margin-top: 6rem;
  }
}
.p-post__paging-prev,
.p-post__paging-next {
  flex: 1;
}
.p-post__paging-prev a,
.p-post__paging-next a {
  display: inline-grid;
  place-content: center;
  width: max(4rem, 30px);
  aspect-ratio: 1;
  padding: 0 1rem;
  background: var(--color-white);
  border-radius: 50%;
  transition: opacity 0.25s ease;
}
.p-post__paging-prev a:before,
.p-post__paging-next a:before {
  flex-shrink: 0;
  width: max(0.6rem, 5px);
  aspect-ratio: 6/13;
  margin-left: auto;
  content: "";
  background: url(../../../assets/images/lp/common/icon_arrow-right.svg)
    center/contain no-repeat;
}
@media (hover: hover) {
  .p-post__paging-prev a:where(:any-link, :enabled, summary):hover,
  .p-post__paging-next a:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.p-post__paging-prev {
  text-align: right;
}
.p-post__paging-prev a:before {
  transform: scaleX(-1);
}
.p-post__paging-button {
  display: grid;
  place-content: center;
  width: max(18.8rem, 160px);
  height: max(4rem, 30px);
  font-weight: 500;
  color: var(--color-black);
  background: var(--color-sub02);
  border-radius: 100vw;
  transition: opacity 0.25s ease;
}
@media (hover: hover) {
  .p-post__paging-button:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
  }
}
.u-text-xs {
  font-size: 0.7em;
}
.u-text-sm {
  font-size: 0.9em;
}
.u-text-base {
  font-size: 1em;
}
.u-text-lg {
  font-size: 1.2em;
}
.u-text-xl {
  font-size: 1.4em;
}
.u-text-2xl {
  font-size: 1.6em;
}
.u-text-3xl {
  font-size: 1.8em;
}
.u-text-4xl {
  font-size: 2.2em;
}
.u-text-5xl {
  font-size: 2.8em;
}
.u-text-6xl {
  font-size: 3.4em;
}
.u-italic {
  font-style: italic;
}
.u-not-italic {
  font-style: normal;
}
.u-font-light {
  font-weight: 300;
}
.u-font-normal {
  font-weight: 400;
}
.u-font-medium {
  font-weight: 500;
}
.u-font-semibold {
  font-weight: 600;
}
.u-font-bold {
  font-weight: 700;
}
.u-text-left {
  text-align: left;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-justify {
  text-align: justify;
}
.u-text-transparent {
  color: transparent;
}
.u-text-current {
  color: currentcolor;
}
.u-text-black {
  color: #222;
}
.u-text-white {
  color: #fff;
}
.u-text-gray {
  color: #888;
}
.u-text-red {
  color: #c00;
}
.u-text-blue {
  color: #00c;
}
.u-text-main {
  color: var(--color-main);
}
.u-bg-black {
  background-color: #222;
}
.u-bg-white {
  background-color: #fff;
}
.u-bg-gray-100 {
  background-color: #f4f4f4;
}
.u-bg-gray-200 {
  background-color: #e8e8e8;
}
.u-bg-gray-300 {
  background-color: #d2d2d2;
}
.u-bg-gray-400 {
  background-color: #bcbcbc;
}
.u-bg-gray-500 {
  background-color: #a6a6a6;
}
.u-bg-gray-600 {
  background-color: #909090;
}
.u-bg-gray-700 {
  background-color: #7a7a7a;
}
.u-bg-gray-800 {
  background-color: #646464;
}
.u-bg-gray-900 {
  background-color: #383838;
}
.u-bg-red-100 {
  background-color: #fff5f5;
}
.u-bg-red-200 {
  background-color: #fed7d7;
}
.u-bg-red-300 {
  background-color: #feb2b2;
}
.u-bg-red-400 {
  background-color: #fc8181;
}
.u-bg-red-500 {
  background-color: #f56565;
}
.u-bg-red-600 {
  background-color: #e53e3e;
}
.u-bg-red-700 {
  background-color: #c53030;
}
.u-bg-red-800 {
  background-color: #9b2c2c;
}
.u-bg-red-900 {
  background-color: #742a2a;
}
.u-underline {
  text-decoration: underline;
}
.u-line-through {
  text-decoration: line-through;
}
.u-no-underline {
  text-decoration: none;
}
.u-align-baseline {
  vertical-align: baseline;
}
.u-align-top {
  vertical-align: top;
}
.u-align-middle {
  vertical-align: middle;
}
.u-align-bottom {
  vertical-align: bottom;
}
.u-align-text-top {
  vertical-align: text-top;
}
.u-align-text-bottom {
  vertical-align: text-bottom;
}
.u-opacity-0 {
  opacity: 0;
}
.u-opacity-25 {
  opacity: 0.25;
}
.u-opacity-50 {
  opacity: 0.5;
}
.u-opacity-75 {
  opacity: 0.75;
}
.u-opacity-100 {
  opacity: 1;
}
.u-mt-sm {
  margin-top: 0.5em !important;
}
.u-mt-md {
  margin-top: 1em !important;
}
.u-mt-lg {
  margin-top: 2em !important;
}
.u-mt-2xl {
  margin-top: 3em !important;
}
.u-mt-3xl {
  margin-top: 4em !important;
}
.u-mb-sm {
  margin-bottom: 0.5em !important;
}
.u-mb-md {
  margin-bottom: 1em !important;
}
.u-mb-lg {
  margin-bottom: 2em !important;
}
.u-mb-2xl {
  margin-bottom: 3em !important;
}
.u-mb-3xl {
  margin-bottom: 4em !important;
}
.u-mbblock-sm {
  margin-block: 0.5em !important;
}
.u-mbblock-md {
  margin-block: 1em !important;
}
.u-mbblock-lg {
  margin-block: 2em !important;
}
.u-indent-symbol {
  --indent-size: 1em;
  padding-left: var(--indent-size);
  text-indent: calc(var(--indent-size) * -1);
}

/* ==========================================================================
   2026-02-05追記
   ========================================================================== */

@media (max-width: 768px) {
  .p-index-kv {
    padding-top: 0;
  }
}

/* ==========================================================================
   入会特典セクション (Benefit CTA)
   ========================================================================== */

.p-index-benefit-cta {
  position: relative;
  z-index: 1;
  padding-inline: var(--container-padding);
  margin-top: 6rem;
  padding: 0;
}

@media (768px <= width) {
  .p-index-benefit-cta {
    margin-top: 0;
  }
}

.p-index-benefit-cta.kv-bottom {
  margin-top: -30vw;
}
@media (768px <= width) {
  .p-index-benefit-cta.kv-bottom {
    margin-top: -12vw;
  }
}

/* --- コンポーネント: c-benefit-cta --- */
.c-benefit-cta {
  max-width: inherit;
  width: 100%;
  margin: 0 auto 3rem;
  /* box-shadow: 0 0 1.5rem #cba865; */
}

@media (768px <= width) {
  .c-benefit-cta {
    position: relative;
    max-width: max(81rem, 768px);
    margin-bottom: 1.4rem;
  }
}

.c-benefit-cta__image {
  width: 100%;
  margin-bottom: 1.4rem;
  text-align: center;
}

@media (768px <= width) {
  .c-benefit-cta__image {
    width: calc(100% + 1.6rem);
    margin-right: -1.6rem;
    margin-bottom: 0;
  }
}

.c-benefit-cta__image img,
.c-benefit-cta__image picture {
  width: 100%;
}

.c-benefit-cta__buttons {
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 1rem;
  justify-content: center;
  margin: -8rem auto 0;
}

@media (768px <= width) {
  .c-benefit-cta__buttons {
    flex-direction: row;
    gap: 1.8rem;
    margin-top: -5.6rem;
  }
}

/* 電話番号下のスタッフ対応時 */
.tel-notice {
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 90%;
  margin: 20px auto 30px;
}
.notice-title {
  font-size: max(1.6rem, 14px);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.notice-list {
  line-height: 1.6;
  color: #fff;
}
.notice-list li {
  font-size: max(1.4rem, 12px);
  position: relative;
  padding-left: 14px;
}
.notice-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.l-footer .tel-notice {
  max-width: 100%;
}

@media (768px <= width) {
  .tel-notice {
    flex-direction: row;
    max-width: max(81rem, 768px);
    margin: 20px auto 0;
  }
  .notice-list {
    margin-bottom: 5px;
    margin-left: 20px;
  }
  .l-footer .tel-notice {
    flex-direction: column;
  }
  .l-footer .tel-notice .notice-title {
    margin-bottom: 5px;
  }
  .l-footer .tel-notice .notice-title br {
    display: none;
  }
}
