@charset "UTF-8";
/************************************************
    Reset
*************************************************/
* {
  min-height: 0;
  min-width: 0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, figure, figcaption, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  padding: 0;
  border: 0;
  margin: 0;
}

i {
  font-style: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

table, caption, th, td {
  font-weight: normal;
  text-align: left;
  empty-cells: show;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
}

a img, iframe {
  border: none;
}

a {
  color: inherit;
}

ol, ul, li {
  list-style: none;
}

input, textarea, select, button {
  font-family: inherit;
  font-size: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  vertical-align: bottom;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  margin: 0;
}

input[type=text],
textarea {
  width: 100%;
}

address {
  font-style: normal;
}

img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

br {
  opacity: 0;
}

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

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/************************************************
    共通設定
*************************************************/
* {
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  display: block;
}

:root {
  --header-h: 70px;
}

[id] {
  scroll-margin-top: var(--header-h);
}

body {
  font-size: 1rem;
  line-height: 1;
  position: relative;
  font-weight: 500;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

/* --- base/reset --- */
:root {
  --bp: 960px;
  --line: #40c351;
  --ink: #1b1b1b;
  --ring: rgba(64, 195, 81, .35);
  --shadow: 0 2px 14px rgba(0, 0, 0, .06) ;
}

/*
@font-face {
    font-family: '';
    src: url('.eot');
    src: local('Neue Haas Grotesk Display Pro 96 Black Italic'), local('NeueHaasDisplay-BlackItalic'),
    url('.eot?#iefix') format('embedded-opentype'),
    url('.woff') format('woff'),
    url('.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}
*/
/* --- header --- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  /* デスクトップナビ */
  /* トグル（スマホのみ表示） */
  /* ドロワー（右から出入り） */
  /* スクリーン */
}
.l-header__bar {
  max-width: min(1220px, 100%);
  height: 100px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 10px 15px;
  z-index: 999999;
  background: #fff;
  position: relative;
}
.l-header_brand img {
  height: 57px;
  width: auto;
}
.l-header_nav--desktop {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header_nav--desktop a {
  color: var(--ink);
  text-decoration: none;
  padding: 8px 2px;
}
.l-header_nav--desktop a:hover {
  opacity: 0.8;
}
.l-header_nav--desktop .cta {
  background: var(--line);
  color: #fff;
  padding: 4px 16px 4px 10px;
  border-radius: 20px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-header_toggle {
  display: none;
  margin-left: auto;
  border: 1px solid #e9e9e9;
  background: #fff;
  border-radius: 9px;
  padding: 10px;
  cursor: pointer;
}
.l-header_toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: opacity 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.2s;
  transition: transform 0.2s, opacity 0.2s, -webkit-transform 0.2s;
}
.l-header_toggle span + span {
  margin-top: 5px;
}
.l-header_drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 18px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  z-index: 1001;
  padding-top: 80px;
}
.l-header_drawer a {
  color: var(--ink);
  text-decoration: none;
  padding: 15px 8px;
  font-size: 1.6rem;
  position: relative;
}
.l-header_drawer a:not(.cta)::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: dashed 1px #eee;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.l-header_drawer .cta {
  background: var(--line);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  margin-top: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px;
}
.l-header_scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(1px);
  z-index: 1000;
}

/* スマホ表示（<= --bp） */
@media (max-width: 960px) {
  .l-header__bar {
    -webkit-box-shadow: var(--shadow);
            box-shadow: var(--shadow);
    height: 70px;
  }
  .l-header_brand img {
    height: 42px;
  }
  .l-header_nav--desktop {
    display: none;
  }
  .l-header_toggle {
    display: block;
  }
  .l-header_toggle[aria-expanded=true] span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }
  .l-header_toggle[aria-expanded=true] span:nth-child(2) {
    opacity: 0;
  }
  .l-header_toggle[aria-expanded=true] span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }
  .l-header_drawer.is-open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .l-header_drawer, .page, .l-header_toggle span {
    -webkit-transition: none;
    transition: none;
  }
}
/* ページ（ブラー対象） */
.page {
  -webkit-transition: -webkit-filter 0.25s;
  transition: -webkit-filter 0.25s;
  transition: filter 0.25s;
  transition: filter 0.25s, -webkit-filter 0.25s;
}

.is-nav-open .page {
  -webkit-filter: blur(6px);
          filter: blur(6px);
}

.site-footer {
  background: #fff;
  color: #111;
  border-top: 4px solid #d32c21; /* 上部の赤ライン */
}

.footer__inner {
  max-width: min(1100px, 92vw);
  margin-inline: auto;
  text-align: center;
  padding: 40px 0 56px;
}

/* 上段ナビ（中央・仕切り） */
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  margin-bottom: 36px;
}
.footer__nav a {
  color: #111;
  text-decoration: none;
  padding: 4px 15px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
.footer__nav a:hover {
  opacity: 0.8;
}
.footer__nav a + a {
  position: relative;
}
.footer__nav a + a::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: #9d9d9d;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .footer__nav {
    gap: 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__nav a {
    padding: 4px 6px;
  }
  .footer__nav a + a::before {
    display: none;
  }
}

/* ロゴ + 住所 */
.footer__brand {
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}

.footer__brand img {
  height: 72px;
  width: auto;
  margin: 6px auto 20px;
  display: block;
}

.footer__corp {
  margin: 0;
  font-weight: 500;
}

.footer__addr {
  font-style: normal;
  color: #333;
  margin-top: 6px;
}

.footer__rule {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 28px auto;
  width: min(500px, 90%);
}

/* FOLLOW US */
.footer__social h2 {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.social__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.follow-us {
  position: relative;
  width: 135px;
  height: 19px;
  margin-right: 10px;
}
.follow-us img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-position: center center;
     object-position: center center;
  -o-object-fit: contain;
     object-fit: contain;
}

.sns-btn {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #5b5b5b;
  color: #fff;
  text-decoration: none;
}

.sns-btn img {
  width: 26px;
  height: 25px;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 768px) {
  .social__buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .follow-us {
    width: 100%;
    height: 19px;
    margin-right: 0;
  }
}
.footer__note {
  color: #2c2c2c;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.75em;
  margin: 6px 0 8px;
}
@media (max-width: 768px) {
  .footer__note span {
    display: inline-block;
  }
}

/* 下段2リンク（仕切り線） */
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 26px;
  font-weight: 500;
}

.footer__links a {
  color: #111;
  text-decoration: none;
  padding: 4px 15px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}

.footer__links a:hover {
  opacity: 0.8;
}

.footer__links a + a {
  position: relative;
}

.footer__links a + a::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: #9d9d9d;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 768px) {
  .footer__links a + a::before {
    width: 18px;
    height: 1px;
    top: -11px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* コピーライトの黒帯 */
.footer__bar {
  background: #0c0c0c;
  color: #fff;
  text-align: center;
  padding: 14px 10px;
  font-size: clamp(1.2rem, 1.09375vw, 1.4rem);
  letter-spacing: 0.04em;
}

.footer__bar small {
  opacity: 0.9;
}

.p-kv {
  position: relative;
  width: 100%;
  height: calc(100vh - 100px);
  max-height: 1020px;
  background-image: url("../img/kv-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 5.8333333333vw;
}
.p-kv_title {
  height: 78.1481481481%;
  width: 70.8854166667%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, calc(-50% - 2.9166666667vw), 0);
          transform: translate3d(-50%, calc(-50% - 2.9166666667vw), 0);
}
.p-kv_title img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0.0001;
  -webkit-transform: translateY(8px) scale(0.2) rotate(-6deg);
          transform: translateY(8px) scale(0.2) rotate(-6deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-filter: blur(6px) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
          filter: blur(6px) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
  will-change: transform, opacity, filter;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.p-kv_copy {
  position: absolute;
  bottom: -0.3125vw;
  left: 0;
  width: 100%;
  height: 5.15625vw;
}
@media (max-width: 768px) {
  .p-kv {
    height: 100vw;
  }
  .p-kv_title {
    height: 70.3333333333%;
    width: 85.0625%;
    -webkit-transform: translate3d(-50%, calc(-50% - 2.3333333333vw), 0);
            transform: translate3d(-50%, calc(-50% - 2.3333333333vw), 0);
  }
}

.p-kv.is-in .p-kv_title img {
  -webkit-animation: kvPopSpring 1100ms cubic-bezier(0.25, 0.7, 0.15, 1) forwards;
          animation: kvPopSpring 1100ms cubic-bezier(0.25, 0.7, 0.15, 1) forwards;
}

@-webkit-keyframes kvPopSpring {
  0% {
    opacity: 0;
    -webkit-transform: translateY(8px) scale(0.2) rotate(-6deg);
            transform: translateY(8px) scale(0.2) rotate(-6deg);
    -webkit-filter: blur(6px) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
            filter: blur(6px) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
  }
  55% {
    opacity: 0.98;
    -webkit-transform: translateY(0px) scale(1.08) rotate(1.2deg);
            transform: translateY(0px) scale(1.08) rotate(1.2deg);
    -webkit-filter: blur(1.5px) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
            filter: blur(1.5px) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
  }
  75% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(0.97) rotate(-0.4deg);
            transform: translateY(0px) scale(0.97) rotate(-0.4deg);
    -webkit-filter: blur(0.6px) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
            filter: blur(0.6px) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
  }
  92% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1.02) rotate(0.15deg);
            transform: translateY(0px) scale(1.02) rotate(0.15deg);
    -webkit-filter: blur(0.2px) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.16));
            filter: blur(0.2px) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.16));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1) rotate(0deg);
            transform: translateY(0px) scale(1) rotate(0deg);
    -webkit-filter: blur(0) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.14));
            filter: blur(0) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.14));
  }
}

@keyframes kvPopSpring {
  0% {
    opacity: 0;
    -webkit-transform: translateY(8px) scale(0.2) rotate(-6deg);
            transform: translateY(8px) scale(0.2) rotate(-6deg);
    -webkit-filter: blur(6px) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
            filter: blur(6px) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
  }
  55% {
    opacity: 0.98;
    -webkit-transform: translateY(0px) scale(1.08) rotate(1.2deg);
            transform: translateY(0px) scale(1.08) rotate(1.2deg);
    -webkit-filter: blur(1.5px) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
            filter: blur(1.5px) drop-shadow(0 10px 24px rgba(0, 0, 0, 0.22));
  }
  75% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(0.97) rotate(-0.4deg);
            transform: translateY(0px) scale(0.97) rotate(-0.4deg);
    -webkit-filter: blur(0.6px) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
            filter: blur(0.6px) drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
  }
  92% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1.02) rotate(0.15deg);
            transform: translateY(0px) scale(1.02) rotate(0.15deg);
    -webkit-filter: blur(0.2px) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.16));
            filter: blur(0.2px) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.16));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px) scale(1) rotate(0deg);
            transform: translateY(0px) scale(1) rotate(0deg);
    -webkit-filter: blur(0) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.14));
            filter: blur(0) drop-shadow(0 3px 12px rgba(0, 0, 0, 0.14));
  }
}
.p-kv.is-in .p-kv_title::after {
  -webkit-animation: kvGlint 900ms 260ms ease-out forwards;
          animation: kvGlint 900ms 260ms ease-out forwards;
}

/* （任意）コピーは少し遅れて上へ“跳ねて”止まる */
.p-kv_copy {
  opacity: 0;
  -webkit-transform: translateY(14px) scale(0.98);
          transform: translateY(14px) scale(0.98);
  will-change: transform, opacity;
}

.p-kv.is-in .p-kv_copy {
  -webkit-animation: kvCopyUp 520ms 280ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
          animation: kvCopyUp 520ms 280ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@-webkit-keyframes kvCopyUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(14px) scale(0.98);
            transform: translateY(14px) scale(0.98);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(-4px) scale(1.01);
            transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}

@keyframes kvCopyUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(14px) scale(0.98);
            transform: translateY(14px) scale(0.98);
  }
  70% {
    opacity: 1;
    -webkit-transform: translateY(-4px) scale(1.01);
            transform: translateY(-4px) scale(1.01);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
/* 動きを控える設定のユーザー */
@media (prefers-reduced-motion: reduce) {
  .p-kv_title img,
  .p-kv_title::after,
  .p-kv_copy {
    -webkit-animation: none !important;
            animation: none !important;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-filter: none;
            filter: none;
  }
}
/* ベース（任意で調整OK） */
.p-countdown {
  background: #d81919; /* 赤 */
  color: #fff;
  position: relative;
}
.p-countdown .p-countdown__inner {
  max-width: min(1100px, 92vw);
  margin-inline: auto;
  padding: clamp(40px, 4.6875vw, 60px) 0 clamp(36px, 5.625vw, 72px);
  text-align: center;
}
.p-countdown .p-countdown__title {
  margin: 0 0 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: clamp(1.8rem, 1.875vw, 2.4rem);
}
.p-countdown .p-countdown__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(3rem, 5.46875vw, 7rem);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-countdown .pcd__num {
  font-weight: 500;
  font-size: clamp(3.2rem, 4.375vw, 5.6rem);
  line-height: 1;
}
.p-countdown .pcd__label {
  margin-top: 8px;
  font-weight: 600;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
@media (max-width: 768px) {
  .p-countdown .p-countdown__grid {
    gap: 20px;
  }
  .p-countdown .pcd__num {
    font-size: 3.6rem;
  }
  .p-countdown .pcd__label {
    font-size: 1.4rem;
  }
}

.p-certificate {
  position: relative;
  z-index: 100;
  padding-left: 15px;
  padding-right: 15px;
  background-color: #d81919;
}
.p-certificate__bg {
  position: absolute;
  width: 100%;
  height: calc(100% - clamp(40px, 5.93vw, 80px) - clamp(40px, 5.93vw, 80px));
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #d81919;
  background-image: url("../img/certificate-bg.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 960px) {
  .p-certificate__bg {
    background-image: url("../img/certificate-bg--md.jpg");
  }
}
.p-certificate-card {
  position: relative;
  width: clamp(420px, 66%, 630px);
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 8px;
}
.p-certificate-card::before, .p-certificate-card::after {
  content: "";
  display: block;
  position: absolute;
  width: 20.1587302%;
  height: 0;
  padding-top: 20.1587302%;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
.p-certificate-card::before {
  top: 0;
  right: 0;
  background-image: url("../img/certificate-ribbon-01.png");
  background-position: top right;
}
.p-certificate-card::after {
  bottom: 0;
  left: 0;
  background-image: url("../img/certificate-ribbon-02.png");
  background-position: bottom left;
}
.p-certificate-card .shadow-svg {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: -64px; /* カードからの距離（上げ下げ） */
  height: 120px; /* 影の“深さ” */
  pointer-events: none; /* クリックを透過 */
  display: block;
  z-index: -1;
}
.p-certificate-card__inner {
  position: relative;
  z-index: 1;
  border: solid 3px #d81919;
  padding-top: clamp(25px, 3.90625vw, 50px);
  padding-left: clamp(24px, 5.15625vw, 66px);
  padding-right: clamp(24px, 5.15625vw, 66px);
  padding-bottom: clamp(30px, 5.3125vw, 68px);
}
.p-certificate-card__mark {
  position: relative;
  width: clamp(76px, 11.875vw, 152px);
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.p-certificate-card__copy {
  position: relative;
  text-align: center;
  color: #d81919;
  font-size: clamp(2.4rem, 2.5vw, 3.2rem);
  font-weight: bold;
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 40px;
}
.p-certificate-card__description1 {
  position: relative;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 2em;
  font-weight: 500;
}
.p-certificate-card__hr {
  border: none;
  border-bottom: solid 1px #e6e6e6;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
}
.p-certificate-card__subcopy {
  position: relative;
  text-align: center;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  font-weight: bold;
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 25px;
}
.p-certificate-card__description2 {
  position: relative;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 2em;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-certificate {
    padding-left: 10px;
    padding-right: 10px;
  }
  .p-certificate__bg {
    height: calc(100% - 20vw - 20vw);
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: #d81919;
    background-image: url("../img/certificate-bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .p-certificate-card {
    width: 100%;
    max-width: 640px;
  }
  .p-certificate-card::before, .p-certificate-card::after {
    width: 16%;
    padding-top: 16%;
  }
  .p-certificate-card__inner {
    padding-top: 30px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 35px;
  }
  .p-certificate-card__mark {
    width: 100px;
    margin-bottom: 30px;
  }
  .p-certificate-card__copy {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .p-certificate-card__description1 {
    font-size: 1.6rem;
    text-align: justify;
  }
  .p-certificate-card__hr {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .p-certificate-card__subcopy {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  .p-certificate-card__subcopy span {
    display: inline-block;
  }
  .p-certificate-card__description2 {
    font-size: 1.6rem;
    text-align: justify;
  }
}

.p-information {
  background: #d81919; /* 赤 */
  color: #fff;
  position: relative;
}
.p-information__inner {
  max-width: min(1000px, 92vw);
  margin-inline: auto;
  text-align: center;
  padding: clamp(40px, 4.6875vw, 60px) 0 clamp(40px, 5.46875vw, 70px);
}
.p-information__title {
  position: relative;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: #d81919;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  font-weight: bold;
  border-radius: 25px;
  margin-bottom: clamp(25px, 3.125vw, 40px);
}
.p-information__sec01 {
  position: relative;
  margin-bottom: clamp(40px, 4.6875vw, 60px);
  text-align: center;
}
.p-information__sec01--title {
  position: relative;
  font-weight: bold;
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.8rem, 1.875vw, 2.4rem);
  margin-bottom: clamp(25px, 3.125vw, 40px);
}
.p-information__sec01--description {
  position: relative;
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
.p-information__hr {
  border: none;
  border-bottom: solid 1px #e6e6e6;
}
.p-information__sec02 {
  position: relative;
  text-align: justify;
  max-width: 782px;
  margin-top: clamp(40px, 4.6875vw, 60px);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6.35%;
}
.p-information__sec02--image {
  position: relative;
  width: 32%;
}
.p-information__sec02--texts {
  position: relative;
  width: 61.65%;
}
.p-information__sec02--title {
  position: relative;
  font-weight: bold;
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.8rem, 1.875vw, 2.4rem);
  margin-bottom: clamp(25px, 3.125vw, 40px);
  padding-left: 20px;
  padding-right: 20px;
}
.p-information__sec02--description {
  position: relative;
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.025em;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  margin-bottom: clamp(25px, 3.125vw, 40px);
  padding-left: 20px;
  padding-right: 20px;
}
.p-information__sec02--caution {
  position: relative;
  line-height: 1.75em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  padding: 19px;
  border: solid 1px #fff;
}
@media (max-width: 768px) {
  .p-information__inner {
    padding-top: 50px;
  }
  .p-information__title {
    height: 40px;
    font-size: 1.6rem;
    border-radius: 20px;
  }
  .p-information__sec01--description {
    text-align: justify;
    font-size: 1.6rem;
  }
  .p-information__hr {
    border: none;
    border-bottom: solid 1px #e6e6e6;
  }
  .p-information__sec02 {
    margin-top: clamp(40px, 4.6875vw, 60px);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: clamp(40px, 4.6875vw, 60px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p-information__sec02--image {
    width: 40%;
  }
  .p-information__sec02--texts {
    width: 100%;
  }
  .p-information__sec02--title {
    text-align: center;
    font-size: 1.8rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-information__sec02--description {
    font-size: 1.6rem;
    padding-left: 0;
    padding-right: 0;
  }
  .p-information__sec02--caution {
    font-size: 1.4rem;
    padding: 12px;
  }
}

/* 全体の背景とレイアウト */
.p-line {
  background: #06c737; /* LINE系グリーンに寄せた背景 */
  color: #fff;
  /* 見出し（TAP HERE!） */
  /* 黒の丸ボタン */
  /* 上に重なる白バッジ */
  /* 注意書き */
  /* グループ内の各パスに段階的ディレイを付与（数は必要に応じて調整） */
}
.p-line .p-line__inner {
  max-width: min(1100px, 92vw);
  margin-inline: auto;
  text-align: center;
  padding: clamp(48px, 8vw, 96px) 0;
}
.p-line .p-line__title {
  position: relative;
  margin: 0 0 clamp(20px, 4vw, 32px);
  height: clamp(46px, 7.1875vw, 92px);
  width: 100%;
}
.p-line .p-line__title svg {
  position: relative;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
.p-line .p-line__btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: min(680px, 92vw);
  height: 80px;
  min-height: 64px;
  padding: 18px 28px;
  margin-inline: auto;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  margin-top: 28px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  -webkit-transition: opacity 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
  transition: opacity 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease, -webkit-transform 0.12s ease, -webkit-box-shadow 0.12s ease;
}
.p-line .p-line__btn:hover {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
          box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}
.p-line .p-line__btn:active {
  -webkit-transform: translateY(0) scale(0.99);
          transform: translateY(0) scale(0.99);
}
.p-line .p-line__btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}
.p-line .p-line__btnText {
  font-weight: 800;
  font-size: clamp(1.8rem, 1.875vw, 2.4rem);
  letter-spacing: 0.02em;
}
.p-line .p-line__badge {
  position: absolute;
  height: 40px;
  width: 240px;
  top: -28px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  color: #111;
  font-weight: 800;
  font-size: clamp(1.8rem, 1.875vw, 2.4rem);
  padding: 8px 14px;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
  white-space: nowrap;
}
.p-line .p-line__note {
  margin-top: 30px;
  color: #000;
  font-weight: bold;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
}
.p-line .p-line__title svg #cta-title > path {
  -webkit-animation: blink-fill 1.1s steps(1, end) infinite;
          animation: blink-fill 1.1s steps(1, end) infinite;
  fill: #fff;
}
.p-line .p-line__title svg #cta-title > path:nth-of-type(odd) {
  -webkit-animation-delay: 0.12s;
          animation-delay: 0.12s;
}
.p-line .p-line__title svg #cta-title > path:nth-of-type(3n) {
  -webkit-animation-delay: 0.24s;
          animation-delay: 0.24s;
}
@media (max-width: 768px) {
  .p-line {
    /* 上に重なる白バッジ */
    /* 注意書き */
  }
  .p-line .p-line__inner {
    padding: 40px 0;
  }
  .p-line .p-line__title {
    margin: 0 0 20px;
    height: 46px;
  }
  .p-line .p-line__btn {
    height: 64px;
    padding: 14px 18px;
  }
  .p-line .p-line__btnText {
    font-size: 1.8rem;
    letter-spacing: 0.02em;
  }
  .p-line .p-line__badge {
    font-size: 1.6rem;
    padding: 10px 10px;
    height: auto;
  }
  .p-line .p-line__note {
    font-size: 1.4rem;
  }
}

@-webkit-keyframes blink-fill {
  0%, 55% {
    fill: #ffffff;
  }
  56%, 100% {
    fill: #ffdf4d;
  } /* 好みで黄色を調整 */
}

@keyframes blink-fill {
  0%, 55% {
    fill: #ffffff;
  }
  56%, 100% {
    fill: #ffdf4d;
  } /* 好みで黄色を調整 */
}
.p-bestbuy {
  position: relative;
  background-image: url("../img/bestbuy_bg.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  --tri-w: 88px; /* 三角の横幅 */
  --tri-h: 44px; /* 三角の高さ */
  --tri-color: #ffc300; /* 三角の色 */
}
.p-bestbuy::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: calc(-1 * var(--tri-h) + 1px);
  width: var(--tri-w);
  height: var(--tri-h);
  background: var(--tri-color);
  /* 下向き三角形：上が底辺、下が頂点 */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.p-bestbuy__title {
  position: relative;
  margin: 0 0 clamp(20px, 4vw, 32px);
  height: clamp(30px, 4.53125vw, 58px);
  width: auto;
}
.p-bestbuy__title img {
  position: relative;
  height: 100%;
  width: auto;
}
.p-bestbuy__description {
  position: relative;
  font-size: clamp(2rem, 2.8125vw, 3.6rem);
  text-align: center;
  font-weight: bold;
  line-height: 1.75em;
  margin: 0 0 clamp(40px, 5.46875vw, 70px);
}
.p-bestbuy__inner {
  width: min(1000px, 92vw);
  padding-top: clamp(70px, 10.15625vw, 130px);
  padding-bottom: clamp(60px, 7.03125vw, 90px);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.p-bestbuy__bottom-01 {
  position: relative;
  font-size: clamp(2rem, 2.8125vw, 3.6rem);
  text-align: center;
  font-weight: bold;
  line-height: 1.75em;
  margin-top: clamp(35px, 3.90625vw, 50px);
}
.p-bestbuy__bottom-02 {
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.75em;
  margin-top: clamp(15px, 1.5625vw, 20px);
}
.p-bestbuy__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 66px;
  margin-left: auto;
  margin-right: auto;
}
.p-bestbuy__list-head {
  position: relative;
  width: 100%;
  height: 31px;
  margin-bottom: clamp(30px, 3.90625vw, 50px);
}
.p-bestbuy__list-head img {
  position: relative;
  width: auto;
  height: 100%;
}
.p-bestbuy__list-item {
  position: relative;
  width: calc((100% - 66px) / 2);
}
.p-bestbuy__list-item_img {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 1;
}
.p-bestbuy__list-item_bag {
  position: relative;
  width: 100%;
  height: auto;
}
.p-bestbuy__list-item_value {
  position: absolute;
  height: auto;
}
.p-bestbuy__list-item_value.value01 {
  top: 10.8396946565%;
  left: -7.5151515152%;
  width: 111.5151515152%;
}
.p-bestbuy__list-item_value.value02 {
  top: 6.8702290076%;
  left: -3.6363636364%;
  width: 107.3939393939%;
}
.p-bestbuy__list-item_value.value03 {
  top: 10.6870229008%;
  left: 3.0303030303%;
  width: 93.3333333333%;
}
.p-bestbuy__list-item_value.value04 {
  top: 15.572519084%;
  left: 0.2424242424%;
  width: 102.1818181818%;
}
.p-bestbuy__list-item_value.value05 {
  top: 11.4503816794%;
  left: -4.2424242424%;
  width: 108.4848484848%;
}
.p-bestbuy__list-item_value.value06 {
  top: 10.0763358779%;
  left: -3.8787878788%;
  width: 110.9090909091%;
}
.p-bestbuy__list-item_price {
  position: relative;
  z-index: 2;
  margin-top: -20px;
  margin-left: 3.6%;
}
.p-bestbuy__list-item_price.price01 {
  width: 62.5454545455%;
}
.p-bestbuy__list-item_price.price02 {
  width: 57.8181818182%;
}
.p-bestbuy__list-item_price.price03 {
  width: 47.0303030303%;
}
.p-bestbuy__list-item_price.price04 {
  width: 85.2121212121%;
}
.p-bestbuy__list-item_price.price05 {
  width: 95.2727272727%;
}
.p-bestbuy__list-item_price.price06 {
  width: 84.3636363636%;
}
@media (max-width: 768px) {
  .p-bestbuy__description {
    font-size: 2rem;
  }
  .p-bestbuy__bottom-01 {
    font-size: 1.8rem;
  }
  .p-bestbuy__bottom-01 span {
    display: inline-block;
  }
  .p-bestbuy__bottom-02 {
    font-size: 1.2rem;
  }
  .p-bestbuy__bottom-02 span {
    display: inline-block;
  }
  .p-bestbuy__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 66px;
    width: 90%;
  }
  .p-bestbuy__list-head {
    height: 24px;
    margin-bottom: 0;
  }
  .p-bestbuy__list-item {
    width: 100%;
  }
  .p-bestbuy__list-item .p-bestbuy__list-head {
    margin-bottom: 30px;
  }
  .p-bestbuy__list-item_price {
    margin-top: -10px;
  }
}

.p-present {
  position: relative;
  background: #d71718;
  color: #fff;
}
.p-present__inner {
  max-width: min(1000px, 92vw);
  margin-inline: auto;
  text-align: center;
  padding: clamp(80px, 10.546875vw, 135px) 0 clamp(60px, 6.25vw, 80px);
}
.p-present__title {
  position: relative;
  margin: 0 0 clamp(20px, 4vw, 32px);
  height: clamp(30px, 4.53125vw, 58px);
  width: auto;
}
.p-present__title img {
  position: relative;
  height: 100%;
  width: auto;
}
.p-present__description {
  position: relative;
  font-size: clamp(2rem, 2.8125vw, 3.6rem);
  text-align: center;
  font-weight: bold;
  line-height: 1.75em;
  margin: 0 0 clamp(40px, 5.46875vw, 70px);
}
.p-present-card {
  position: relative;
  width: 100%;
  background-color: #ffc300;
  border-radius: 5px;
  padding-top: clamp(35px, 4.6875vw, 60px);
  padding-left: clamp(25px, 4.296875vw, 50px);
  padding-right: clamp(25px, 4.296875vw, 50px);
  padding-bottom: clamp(40px, 5.078125vw, 65px);
}
.p-present-card_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5%;
  margin-bottom: clamp(25px, 4.296875vw, 55px);
}
.p-present-card_top-texts {
  position: relative;
  width: 45%;
}
.p-present-card_top-texts_copy {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: clamp(20px, 2.34375vw, 30px);
}
.p-present-card_top-texts_caution {
  position: relative;
  width: 100%;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #000;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  text-align: center;
  background-color: #fff;
  border-radius: 25px;
  line-height: 1.5em;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
}
.p-present-card_top-image {
  position: relative;
  width: 50%;
}
.p-present-card_top-image_photo {
  position: relative;
  z-index: 0;
}
.p-present-card_top-image_badge {
  position: absolute;
  width: 35%;
  height: auto;
  top: -12%;
  right: -8%;
  z-index: 1;
}
.p-present-card_bottom {
  position: relative;
  text-align: center;
  color: #000;
}
.p-present-card_bottom-copy {
  position: relative;
  font-size: clamp(1.8rem, 1.875vw, 2.4rem);
  font-weight: bold;
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: 20px;
}
.p-present-card_bottom-description {
  position: relative;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 2em;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-present-atype {
  position: relative;
  width: 100%;
  background-color: #b81718;
  border-radius: 5px;
  padding-top: clamp(35px, 4.6875vw, 60px);
  padding-left: clamp(25px, 4.296875vw, 55px);
  padding-right: clamp(25px, 4.296875vw, 55px);
  padding-bottom: clamp(20px, 2.34375vw, 30px);
  margin-top: clamp(35px, 4.6875vw, 60px);
}
.p-present-atype_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3.5%;
  margin-bottom: clamp(25px, 3.125vw, 40px);
}
.p-present-atype_top-texts {
  position: relative;
  width: 100%;
  text-align: left;
}
.p-present-atype_top-texts_copy {
  position: relative;
  width: 100%;
  font-size: clamp(1.8rem, 1.875vw, 2.4rem);
  font-weight: bold;
  line-height: 2em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-bottom: clamp(10px, 1.171875vw, 15px);
  margin-top: -0.25em;
  text-align: center;
}
.p-present-atype_top-texts_description {
  position: relative;
  width: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 2em;
  text-align: justify;
}
.p-present-atype_hr {
  border: none;
  border-bottom: solid 1px #d71718;
}
.p-present-atype_bottom {
  position: relative;
  width: 100%;
  margin-top: clamp(15px, 1.5625vw, 20px);
  text-align: center;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .p-present__description {
    font-size: 1.8rem;
  }
  .p-present-card {
    padding-top: 30px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 30px;
  }
  .p-present-card_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .p-present-card_top-texts {
    width: 100%;
  }
  .p-present-card_top-texts_caution {
    min-height: 40px;
    line-height: 1.35em;
    border-radius: 50px;
  }
  .p-present-card_top-texts_caution span {
    display: inline-block;
  }
  .p-present-card_top-image {
    width: 100%;
  }
  .p-present-card_top-image_badge {
    width: 25%;
    top: -14%;
    right: -6%;
  }
  .p-present-card_bottom-copy {
    font-size: 2rem;
    text-align: center;
  }
  .p-present-card_bottom-copy span {
    display: inline-block;
  }
  .p-present-card_bottom-description {
    font-size: 1.6rem;
    text-align: justify;
  }
  .p-present-atype {
    padding-top: 30px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 30px;
  }
  .p-present-atype_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
  .p-present-atype_top-texts {
    width: 100%;
  }
  .p-present-atype_top-texts_copy {
    text-align: center;
  }
  .p-present-atype_top-texts_description {
    font-size: 1.6rem;
  }
  .p-present-atype_top-image {
    width: 100%;
  }
}

.p-access {
  background: #fff;
}
.p-access__inner {
  max-width: min(1000px, 92vw);
  margin-inline: auto;
  text-align: center;
  padding: clamp(80px, 11.328125vw, 145px) 0 clamp(60px, 8.2vw, 105px);
}
.p-access__title {
  position: relative;
  margin: 0 0 clamp(20px, 4vw, 32px);
  height: clamp(30px, 4.53125vw, 58px);
  width: auto;
}
.p-access__title img {
  position: relative;
  height: 100%;
  width: auto;
}
.p-access__description1 {
  position: relative;
  font-size: clamp(2rem, 2.8125vw, 3.6rem);
  text-align: center;
  font-weight: bold;
  line-height: 1.75em;
  margin-bottom: 20px;
}
.p-access__description2 {
  position: relative;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  text-align: center;
  font-weight: 500;
  line-height: 2em;
  margin: 0 0 clamp(50px, 6.25vw, 80px);
}
.p-access__description2 br {
  display: none;
}
.p-access__map {
  position: relative;
  width: 100%;
  max-width: 670px;
  height: auto;
  margin: 0 auto clamp(60px, 7.8125vw, 100px);
}
.p-access__caution {
  position: relative;
  width: 100%;
}
.p-access__caution-title {
  position: relative;
  background-color: #e6e6e6;
  width: 100%;
  height: 50px;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 25px;
  margin-bottom: clamp(20px, 2.34375vw, 30px);
}
.p-access__caution-list {
  position: relative;
  text-align: left;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.75em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-access__caution-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.p-access__caution-list li.circle:before {
  content: "●";
  display: inline-block;
  position: relative;
}
.p-access__caution-list li.asterisk:before {
  content: "※";
  display: inline-block;
  position: relative;
}
@media (max-width: 768px) {
  .p-access__description1 {
    font-size: 1.8rem;
  }
  .p-access__description2 {
    font-size: 1.6rem;
  }
  .p-access__description2 br {
    display: inline;
  }
  .p-access__caution-title {
    height: auto;
    font-size: 1.6rem;
    padding: 10px 12px;
  }
}

.p-map {
  aspect-ratio: 1920/620;
  overflow: hidden;
}
.p-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.05) brightness(0.95);
  -webkit-filter: grayscale(100%) contrast(1.05) brightness(0.95); /* Safari */
}
@media (max-width: 768px) {
  .p-map {
    aspect-ratio: 16/9;
  }
}

.p-qa {
  background: #fff;
}
.p-qa__inner {
  max-width: min(1000px, 92vw);
  margin-inline: auto;
  text-align: center;
  padding: clamp(100px, 12.5vw, 160px) 0 clamp(80px, 10.9375vw, 140px);
}
.p-qa__title {
  position: relative;
  margin: 0 0 clamp(20px, 4vw, 32px);
  height: clamp(30px, 4.53125vw, 58px);
  width: auto;
}
.p-qa__title img {
  position: relative;
  height: 100%;
  width: auto;
}
.p-qa__description {
  position: relative;
  font-size: clamp(2rem, 2.8125vw, 3.6rem);
  text-align: center;
  font-weight: bold;
  line-height: 1.75em;
  margin-bottom: clamp(40px, 4.6875vw, 60px);
}
.p-qa__list {
  position: relative;
  width: 100%;
  border-top: solid 1px #e6e6e6;
}
.p-qa__list-item {
  padding-top: clamp(20px, 2.734375vw, 35px);
  padding-bottom: clamp(15px, 1.953125vw, 25px);
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  text-align: left;
  border-bottom: solid 1px #e6e6e6;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.75em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-qa__list-item dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
  text-align: justify;
}
.p-qa__list-item dt::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../img/qa_mark-q.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.p-qa__list-item dt span {
  padding-top: 2px;
  position: relative;
  width: calc(100% - 35px - 18px);
}
.p-qa__list-item dd {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
  margin-top: clamp(12px, 1.40625vw, 18px);
  text-align: justify;
}
.p-qa__list-item dd::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../img/qa_mark-a.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.p-qa__list-item dd span {
  padding-top: 2px;
  position: relative;
  width: calc(100% - 35px - 18px);
}
@media (max-width: 768px) {
  .p-qa__description {
    font-size: 1.8rem;
  }
  .p-qa__list-item {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 1.6rem;
  }
  .p-qa__list-item dt {
    gap: 10px;
  }
  .p-qa__list-item dt::before {
    width: 30px;
    height: 30px;
  }
  .p-qa__list-item dt span {
    width: calc(100% - 30px - 10px);
    padding-top: 0;
  }
  .p-qa__list-item dd {
    gap: 10px;
  }
  .p-qa__list-item dd::before {
    width: 30px;
    height: 30px;
  }
  .p-qa__list-item dd span {
    width: calc(100% - 30px - 10px);
    padding-top: 0;
  }
}

.p-howto {
  background-color: #f2f9ff;
  background-image: url("../img/howtoenter_bg.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.p-howto__inner {
  max-width: min(1100px, 92vw);
  margin-inline: auto;
  text-align: center;
  padding: clamp(80px, 11.328125vw, 145px) 0 clamp(60px, 8.2vw, 105px);
}
.p-howto__title {
  position: relative;
  margin: 0 0 clamp(20px, 4vw, 32px);
  height: clamp(30px, 4.53125vw, 58px);
  width: auto;
}
.p-howto__title img {
  position: relative;
  height: 100%;
  width: auto;
}
.p-howto__description1 {
  position: relative;
  font-size: clamp(2rem, 2.8125vw, 3.6rem);
  text-align: center;
  font-weight: bold;
  line-height: 1.75em;
  margin-bottom: 20px;
}
.p-howto__description2 {
  position: relative;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  text-align: center;
  font-weight: 500;
  line-height: 2em;
  margin: 0 0 clamp(50px, 6.25vw, 80px);
}
.p-howto__step {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(60px, 9.6875vw, 124px) 50px;
}
.p-howto__step-item {
  position: relative;
  width: calc((100% - 50px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 9.6%;
}
.p-howto__step-item-image {
  width: 44.6%;
}
.p-howto__step-item-texts {
  width: 45.8%;
  text-align: left;
  padding-top: clamp(30px, 5.46875vw, 70px);
}
.p-howto__step-item-no {
  position: relative;
  width: clamp(50px, 7.265625vw, 93px);
  margin-bottom: 20px;
}
.p-howto__step-item-title {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.8rem, 1.875vw, 2.4rem);
  line-height: 1.75em;
  margin-bottom: 20px;
}
.p-howto__step-item-description {
  position: relative;
  font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .p-howto__description1 {
    font-size: 1.8rem;
  }
  .p-howto__description2 {
    font-size: 1.6rem;
  }
  .p-howto__description2 span {
    display: inline-block;
  }
  .p-howto__step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .p-howto__step-item {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .p-howto__step-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-howto__step-item-image {
    width: 40%;
  }
  .p-howto__step-item-texts {
    width: calc(60% - 20px);
    padding-top: 0;
  }
  .p-howto__step-item-no {
    width: 80px;
  }
  .p-howto__step-item-title {
    font-size: 1.8rem;
  }
  .p-howto__step-item-description {
    font-size: 1.6rem;
  }
}

.p-chara-01 {
  height: auto;
  position: absolute;
  z-index: 999;
  bottom: 0;
  left: 50%;
}
@media (min-width: 1281px) {
  .p-chara-01 {
    width: 145px;
    -webkit-transform: translate3d(calc(-50% - 469px), calc(clamp(40px, 5.93vw, 80px) + 8px), 0);
            transform: translate3d(calc(-50% - 469px), calc(clamp(40px, 5.93vw, 80px) + 8px), 0);
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .p-chara-01 {
    width: 11.328125vw;
    -webkit-transform: translate3d(calc(-50% - 36.6vw), calc(clamp(40px, 5.93vw, 80px) + 8px), 0);
            transform: translate3d(calc(-50% - 36.6vw), calc(clamp(40px, 5.93vw, 80px) + 8px), 0);
  }
}
@media (max-width: 768px) {
  .p-chara-01 {
    width: 11.328125vw;
    left: 0;
    -webkit-transform: translate3d(10px, 4px, 0);
            transform: translate3d(10px, 4px, 0);
  }
}

.p-chara-02 {
  height: auto;
  position: absolute;
  z-index: 999;
  bottom: 0;
  left: 50%;
}
@media (min-width: 1281px) {
  .p-chara-02 {
    width: 156px;
    -webkit-transform: translate3d(calc(0% + 397px), -15px, 0);
            transform: translate3d(calc(0% + 397px), -15px, 0);
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .p-chara-02 {
    width: 12.1875vw;
    -webkit-transform: translate3d(calc(40% + 31.015625vw), -10px, 0);
            transform: translate3d(calc(40% + 31.015625vw), -10px, 0);
  }
}
@media (max-width: 768px) {
  .p-chara-02 {
    width: 12.1875vw;
    -webkit-transform: translate3d(calc(40% + 31.015625vw), -4px, 0);
            transform: translate3d(calc(40% + 31.015625vw), -4px, 0);
  }
}

.p-chara-03 {
  height: auto;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 50%;
}
@media (min-width: 1281px) {
  .p-chara-03 {
    width: 156px;
    -webkit-transform: translate3d(calc(0% - 581px), -105px, 0);
            transform: translate3d(calc(0% - 581px), -105px, 0);
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .p-chara-03 {
    width: 12.1875vw;
    -webkit-transform: translate3d(calc(-50% - 45.390625vw), -8.2vw, 0);
            transform: translate3d(calc(-50% - 45.390625vw), -8.2vw, 0);
  }
}
@media (max-width: 768px) {
  .p-chara-03 {
    width: 18.28125vw;
    -webkit-transform: translate3d(calc(0% - 45.390625vw), -8.2vw, 0);
            transform: translate3d(calc(0% - 45.390625vw), -8.2vw, 0);
  }
}

.p-chara-04 {
  height: auto;
  position: absolute;
  z-index: 999;
  bottom: 0;
}
@media (min-width: 1281px) {
  .p-chara-04 {
    width: 121px;
    left: 50%;
    -webkit-transform: translate3d(494px, 20px, 0);
            transform: translate3d(494px, 20px, 0);
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .p-chara-04 {
    width: 7.453125vw;
    right: 0;
    -webkit-transform: translate3d(-10%, 1.5625vw, 0);
            transform: translate3d(-10%, 1.5625vw, 0);
  }
}
@media (max-width: 768px) {
  .p-chara-04 {
    width: 9.453125vw;
    right: 0;
    -webkit-transform: translate3d(-10%, 1.5625vw, 0);
            transform: translate3d(-10%, 1.5625vw, 0);
  }
}

.p-chara-05 {
  height: auto;
  position: absolute;
  z-index: 999;
  bottom: 0;
  left: 50%;
}
@media (min-width: 1281px) {
  .p-chara-05 {
    width: 182px;
    -webkit-transform: translate3d(calc(-100% - 424px), -30px, 0);
            transform: translate3d(calc(-100% - 424px), -30px, 0);
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .p-chara-05 {
    width: 14.21875vw;
    -webkit-transform: translate3d(calc(-100% - 33.125vw), -2.34375vw, 0);
            transform: translate3d(calc(-100% - 33.125vw), -2.34375vw, 0);
  }
}
@media (max-width: 768px) {
  .p-chara-05 {
    width: 14.21875vw;
    left: 0;
    -webkit-transform: translate3d(5%, -2.34375vw, 0);
            transform: translate3d(5%, -2.34375vw, 0);
  }
}

.p-chara-06 {
  height: auto;
  position: absolute;
  z-index: 999;
  top: 0;
}
@media (min-width: 1281px) {
  .p-chara-06 {
    width: 218px;
    left: 50%;
    -webkit-transform: translate3d(calc(0% + 424px), -80px, 0);
            transform: translate3d(calc(0% + 424px), -80px, 0);
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .p-chara-06 {
    width: 17.03125vw;
    left: 50%;
    -webkit-transform: translate3d(calc(0% + 32.125vw), -6.25vw, 0);
            transform: translate3d(calc(0% + 32.125vw), -6.25vw, 0);
  }
}
@media (max-width: 768px) {
  .p-chara-06 {
    width: 17.03125vw;
    right: 5%;
    -webkit-transform: translate3d(0, -6.25vw, 0);
            transform: translate3d(0, -6.25vw, 0);
  }
}

.p-chara-07 {
  height: auto;
  position: absolute;
  z-index: 999;
  bottom: 0;
  left: 50%;
}
@media (min-width: 1281px) {
  .p-chara-07 {
    width: 236px;
    -webkit-transform: translate3d(calc(-110% - 375px), 0, 0);
            transform: translate3d(calc(-110% - 375px), 0, 0);
  }
}
@media (min-width: 769px) and (max-width: 1280px) {
  .p-chara-07 {
    width: 18.4375vw;
    -webkit-transform: translate3d(calc(-110% - 30vw), 0, 0);
            transform: translate3d(calc(-110% - 30vw), 0, 0);
  }
}
@media (max-width: 768px) {
  .p-chara-07 {
    width: 18.4375vw;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

/* 初期状態：非表示＆少し下げる（--move で距離調整） */
.js-reveal {
  opacity: 0;
  -webkit-transform: translateY(var(--move, 12px));
          transform: translateY(var(--move, 12px));
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transition-delay: var(--delay, 0ms);
          transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

/* 表示状態 */
.js-reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 動きを控える設定の人へ配慮 */
@media (prefers-reduced-motion: reduce) {
  .js-reveal, .js-reveal.is-visible {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}