@charset "UTF-8";
/* ==========================================================================
Base
========================================================================== */
/*!
 * @acab/reset.css
 */
*,
*::before,
*::after {
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  color: inherit; /* カラーも継承 */
  font: inherit; /* フォーム コントロールは親フォントを継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  overflow: visible;
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  color: inherit;
  border-block-start: 1px solid;
  block-size: 0;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(50%) !important;
}

:root {
  --font-family-gothic: "Zen Kaku Gothic Antique", sans-serif;
  --font-family-mincho: "Shippori Mincho B1", serif;
  --font-family-en: "Lora", serif;
  --color-00-black: #000;
  --color-00-white: #fff;
  --color-01-gray: #eaeef2;
  --color-01-green: #23c35b;
  --color-01-gold: #be9b58;
  --color-02-gold: #916c28;
  --color-01-cream: #f9f5ee;
}

/* Base
----------------------------------------------------------------- */
html {
  font-size: 62.5%;
}
html:has(dialog[open]) {
  overflow: hidden;
}

body {
  background-color: var(--color-00-white);
  color: var(--color-00-black);
  font-family: var(--font-family-gothic);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  word-break: break-all;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}
:where(a):hover {
  text-decoration: none;
}
:where(ol),
:where(ul),
:where(dl) {
  list-style: none;
}

:where(em),
:where(i) {
  font-style: normal;
}

:where(h1),
:where(h2),
:where(h3),
:where(h4),
:where(h5),
:where(h6) {
  font-size: 1.6rem;
  font-weight: normal;
}

:where(p) {
  font-size: 14px;
}
@media print, screen and (min-width:1000px) {
  :where(p) {
    font-size: 15px;
  }
}

:where(em) {
  font-weight: bold;
}

:where(img) {
  display: block;
  width: 100%;
  height: auto;
}

:where(button) {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

:where(input) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-01-gray);
}

:where(textarea) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--color-00-white);
  border: 1px solid var(--color-01-gray);
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}

@media print, screen and (max-width:999px) {
  .pc-only {
    display: none !important;
  }
}
@media print, screen and (min-width:1000px) {
  .sp-only {
    display: none !important;
  }
}
/* ==========================================================================
Layout
========================================================================== */
@media print, screen and (min-width:1000px) {
  .l-scroll {
    display: contents;
  }
  .l-scroll__bumper {
    display: none;
  }
}
@media print, screen and (max-width:999px) {
  body:has([data-scroll-layout=unified]) {
    overflow: hidden;
    height: 100%;
  }
  .l-scroll {
    display: grid;
    grid-template-columns: 100%;
    overflow-y: auto;
    width: 100%;
    height: 100dvh;
    overscroll-behavior-y: contain;
    scroll-snap-type: none;
  }
  .l-scroll.is-snapping {
    scroll-snap-type: y mandatory;
  }
  .l-scroll__snap {
    grid-column: 1;
    min-height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .l-scroll__video-track {
    z-index: -1;
    margin-top: 53px;
    background-color: #000;
    pointer-events: none;
    grid-column: 1;
  }
  .l-scroll__youtube-player {
    container-type: size;
    position: sticky;
    top: 0;
    overflow: hidden;
    width: 100%;
    height: 100dvh;
    opacity: 0.6;
  }
  .l-scroll__youtube-player .js-hero-youtube-player:not(iframe) {
    position: absolute;
    inset: 0;
  }
  .l-scroll__youtube-player iframe.js-hero-youtube-player {
    position: absolute;
    top: 0;
    left: 50%;
    width: max(100cqw, 56.25cqh);
    height: auto;
    min-height: 100cqh;
    aspect-ratio: 9/16;
    border: 0;
    pointer-events: none;
    translate: -50% 0;
    transform: scale(1.08);
    transform-origin: center bottom;
  }
  .l-scroll__youtube-player .js-hero-youtube-poster {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    pointer-events: none;
  }
  .l-scroll__youtube-player .js-hero-youtube-poster[hidden] {
    display: none;
  }
  .l-scroll__normal {
    position: relative;
    z-index: 1;
    grid-column: 1;
    background-color: var(--color-00-white);
    scroll-snap-align: none;
  }
  .l-scroll__bumper {
    grid-column: 1;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  .l-scroll__bumper--top {
    scroll-snap-align: start;
    margin-bottom: -1px;
  }
  .l-scroll__bumper--bottom {
    scroll-snap-align: end;
    margin-top: -1px;
  }
  .l-scroll__snap-zone {
    display: contents;
    --snap-start: 1;
    --snap-count: 1;
  }
  .l-scroll__snap-zone[hidden] {
    display: none;
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(1 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 1 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(2 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 2 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(3 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 3 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(4 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 4 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(5 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 5 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(6 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 6 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(7 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 7 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(8 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 8 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(9 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 9 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__snap:nth-child(10 of .l-scroll__snap) {
    grid-row: calc(var(--snap-start) + 10 - 1);
  }
  .l-scroll__snap-zone > .l-scroll__video-track,
  .l-scroll__snap-zone > .c-line-up-sp__title,
  .l-scroll__snap-zone > .c-quality-sp__title {
    grid-column: 1;
    grid-row: var(--snap-start)/calc(var(--snap-start) + var(--snap-count));
  }
  .l-scroll.-p01 .l-scroll__snap-zone[data-snap-zone="3"] > .c-quality-sp__title {
    grid-row: var(--snap-start)/calc(var(--snap-start) + var(--snap-count) + 1);
  }
  .l-scroll.-p01 .l-scroll__snap-zone[data-snap-zone="3"] > .l-scroll__normal {
    grid-column: 1;
    grid-row: calc(var(--snap-start) + var(--snap-count));
  }
  .l-scroll.-p02 .l-scroll__snap-zone[data-snap-zone="2"] > .c-quality-sp__title,
  .l-scroll.-p03 .l-scroll__snap-zone[data-snap-zone="2"] > .c-quality-sp__title {
    grid-row: var(--snap-start)/calc(var(--snap-start) + var(--snap-count) + 1);
  }
  .l-scroll.-p02 .l-scroll__snap-zone[data-snap-zone="2"] > .l-scroll__normal,
  .l-scroll.-p03 .l-scroll__snap-zone[data-snap-zone="2"] > .l-scroll__normal {
    grid-column: 1;
    grid-row: calc(var(--snap-start) + var(--snap-count));
  }
}
@media print and (prefers-reduced-motion: reduce), screen and (prefers-reduced-motion: reduce) and (max-width:999px) {
  .l-scroll {
    scroll-snap-type: none !important;
  }
  .l-scroll.is-snapping {
    scroll-snap-type: none !important;
  }
  .l-scroll__snap {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}
/* ==========================================================================
Components(common)
========================================================================== */
.c-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 8px 24px;
  background-color: var(--color-00-white);
}
@media print, screen and (min-width:1000px) {
  .c-header {
    padding: 14px 40px;
  }
}
.c-header__inner {
  display: flex;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}
.c-header__logo {
  width: 123px;
  height: 37px;
}
.c-header__login a {
  display: flex;
  padding: 8px;
  background-color: #eaeef2;
  border-radius: 4px;
  color: var(--color-00-black);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
@media print, screen and (min-width:1000px) {
  .c-header__login a {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    gap: 4px;
  }
}
.c-header__login a::before {
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../images/icon_login.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}
@media print, screen and (min-width:1000px) {
  .c-header__login a::before {
    width: 20px;
    height: 20px;
  }
}
@media (hover: hover) {
  .c-header__login a {
    transition: background-color 200ms;
  }
  .c-header__login a:hover {
    background-color: #f1f4f6;
  }
}

.c-hero-pc__content1 {
  --hero-pc-video-width: calc(650 / 1200 * 100%);
  display: grid;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 600px;
  max-height: 130vh;
  background-color: var(--color-00-white);
  grid-template-columns: 54.1666666667% 29.1666666667% 16.6666666667%;
  grid-template-areas: "video1 main  video2";
}
@media (aspect-ratio >= 2/1) {
  .c-hero-pc__content1 {
    max-height: 150vh;
  }
}
.c-hero-pc__content1-main {
  grid-area: main;
  align-self: top;
}
.c-hero-pc__content1-main img {
  display: block;
  width: 100%;
  height: auto;
}
.c-hero-pc__content1-main-inner {
  display: flex;
  height: 100vh;
  min-height: 600px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.3333333333vw;
}
.c-hero-pc__content1-main-title-text {
  display: block;
  width: 15.3333333333vw;
  margin: 0 auto;
}
.-p02 .c-hero-pc__content1-main-title-text {
  width: 16.75vw;
}
.-p03 .c-hero-pc__content1-main-title-text {
  width: 19.5833333333vw;
}
.c-hero-pc__content1-main-title-logo {
  display: block;
  width: 17.5833333333vw;
  margin: 32px auto 0;
}
.-p02 .c-hero-pc__content1-main-title-logo {
  width: 17.5833333333vw;
}
.-p03 .c-hero-pc__content1-main-title-logo {
  width: 13.8333333333vw;
}
.c-hero-pc__content1-main-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-mincho);
}
.c-hero-pc__content1-main-text1 {
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.2;
}
.c-hero-pc__content1-main-text2 {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1vw 0;
  font-size: 1.4166666667vw;
  font-weight: 700;
  line-height: 1.2;
  border-top: 1px solid var(--color-00-black);
  border-bottom: 1px solid var(--color-00-black);
}
.c-hero-pc__content1-video1 {
  grid-area: video1;
}
.c-hero-pc__content1-video2 {
  grid-area: video2;
}
.c-hero-pc__content1-video1, .c-hero-pc__content1-video2 {
  align-self: start;
  overflow: hidden;
  margin-top: 65px;
  background-color: #000;
}
.c-hero-pc__content1-youtube-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 9/16;
  opacity: 0.8;
}
.c-hero-pc__content1-youtube-player .js-hero-youtube-player:not(iframe) {
  position: absolute;
  inset: 0;
}
.c-hero-pc__content1-youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  transform: scale(1.04);
  transform-origin: center bottom;
}
.c-hero-pc__content1-youtube-player .js-hero-youtube-poster {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  pointer-events: none;
}
.c-hero-pc__content1-youtube-player .js-hero-youtube-poster[hidden] {
  display: none;
}
.c-hero-pc__content1-video2 .c-hero-pc__content1-youtube-player {
  width: 325%;
}
.c-hero-pc__content1-scroll {
  position: absolute;
  right: 1.3333333333vw;
  bottom: 1.3333333333vw;
  display: flex;
  color: var(--color-00-white);
  font-family: var(--font-family-mincho);
  align-items: center;
  justify-content: center;
  gap: 0.3333333333vw;
}
.c-hero-pc__content1-scroll-icon {
  overflow: hidden;
  width: 0.8333333333vw;
  height: 0.8333333333vw;
}
.c-hero-pc__content1-scroll-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: heroPcScrollIconDown 1200ms ease-in-out infinite;
}
.c-hero-pc__content1-scroll-text {
  font-size: 1vw;
  line-height: 1;
}
.c-hero-pc__content2 {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/545;
}
.c-hero-pc__content2::before {
  position: absolute;
  bottom: 0;
  left: 8.3333333333vw;
  z-index: 0;
  width: 18.8333333333vw;
  height: auto;
  background-image: url("../images/pc/hero2_image1.webp");
  background-repeat: no-repeat;
  background-position: contain;
  background-size: cover;
  content: "";
  aspect-ratio: 452/809;
}
.c-hero-pc__content2::after {
  position: absolute;
  right: 4.1666666667vw;
  bottom: 0;
  z-index: 0;
  width: 26.25vw;
  height: auto;
  background-image: url("../images/pc/hero2_image2.webp");
  background-repeat: no-repeat;
  background-position: contain;
  background-size: cover;
  content: "";
  aspect-ratio: 631/835;
}
.c-hero-pc__content2-main {
  position: relative;
  z-index: 1;
  display: flex;
  width: 33.3333333333vw;
  height: 100%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-hero-pc__content2-main-top {
  display: flex;
  justify-self: stretch;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  margin-top: 2vw;
}
.c-hero-pc__content2-main-bottom {
  justify-self: end;
}
.c-hero-pc__content2-main img {
  display: block;
  width: 100%;
  height: auto;
}
.c-hero-pc__content2-copy {
  width: 33.3333333333vw;
  margin: 0 auto;
}
.-p02 .c-hero-pc__content2-copy {
  width: 21.75vw;
}
.-p03 .c-hero-pc__content2-copy {
  width: 21.75vw;
}
.c-hero-pc__content2-price {
  width: 17.6666666667vw;
}
.c-hero-pc__content2-copy2 {
  width: 29.4166666667vw;
  margin-top: 16px;
}
.c-hero-pc__content2-notice {
  display: flex;
  margin: 2.6666666667vw -20px 0;
  font-size: 11px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
  letter-spacing: -0.02em;
}
.c-hero-pc__content2-notice span:first-child {
  flex: 0 0 auto;
}
.c-hero-pc__content2-notice span:last-child {
  flex: 1 1 auto;
}

@keyframes heroPcScrollIconDown {
  0% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(120%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-hero-pc__content1-scroll-icon img {
    animation: none;
  }
}
.c-point-pc {
  background-color: #f9f5ee;
}
.c-point-pc__inner {
  position: relative;
  display: grid;
  width: 100%;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
}
.c-point-pc__content {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 0 0 auto;
  padding-left: 40px;
}
.c-point-pc__header {
  position: absolute;
  top: 60px;
  left: 40px;
}
.c-point-pc__point {
  display: flex;
  height: 100vh;
  justify-content: flex-start;
  align-items: center;
}
.c-point-pc__point[data-point="3"] {
  padding-bottom: 25vh;
}
.c-point-pc__point-inner {
  margin-left: 8.3333333333vw;
}
.c-point-pc__point-title {
  position: relative;
  padding-bottom: 8px;
  color: var(--color-01-gold);
  font-family: var(--font-family-en);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}
.c-point-pc__point-title::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  content: "";
  border-bottom: 2px solid var(--color-01-gold);
}
.c-point-pc__point-lead {
  margin-top: 48px;
  margin-right: -2em;
  color: var(--color-01-gold);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.c-point-pc__point-lead sup {
  font-size: 0.5em;
  line-height: 1;
  vertical-align: super;
}
.c-point-pc__point-lead span {
  font-size: 60%;
}
.c-point-pc__point-description {
  margin-top: 24px;
  margin-right: -4em;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.c-point-pc__point-notice {
  display: flex;
  margin-top: 24px;
  margin-right: -2em;
  font-size: 11px;
  text-align: left;
  letter-spacing: -0.02em;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
}
.c-point-pc__point-notice span:first-child {
  flex: 0 0 auto;
}
.c-point-pc__point-notice span:last-child {
  flex: 1 1 auto;
}
.c-point-pc__photos {
  position: sticky;
  top: 0;
  overflow: visible;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.c-point-pc__photos-inner {
  position: relative;
  width: 36.6666666667vw;
  max-width: 440px;
  height: 100%;
  margin: 0 auto;
}
.c-point-pc__photo {
  position: absolute;
  top: 50%;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
  border-radius: 10px;
  opacity: 0;
  transition: transform 500ms ease-in, opacity 200ms ease 300ms;
  transform: translateY(-50%);
  aspect-ratio: 420/530;
}
.c-point-pc__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-point-pc__photo.-active {
  opacity: 1;
  transition: transform 500ms cubic-bezier(0.14, 0.73, 0.62, 0.99), opacity 200ms ease;
}
.c-point-pc__photo[data-photo="1"] {
  display: block;
  opacity: 1;
  transform: translateY(-50%);
}
.c-point-pc__photo[data-photo="2"] {
  transform: translateX(150%) translateY(50%) rotate(-1.5deg);
}
.c-point-pc__photo[data-photo="2"].-active {
  transform: translateY(-50%) rotate(-1.5deg);
}
.c-point-pc__photo[data-photo="3"] {
  transform: translateX(150%) translateY(50%) rotate(1.5deg);
}
.c-point-pc__photo[data-photo="3"].-active {
  transform: translateY(-50%) rotate(1.5deg);
}

.c-hero-sp__content1,
.c-hero-sp__content2,
.c-hero-sp__content3 {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-00-white);
}

.c-hero-sp__content1-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8.2051282051vw;
  padding-bottom: 32px;
}
.-p02 .c-hero-sp__content1-main {
  gap: 6.1538461538vw;
}
.-p03 .c-hero-sp__content1-main {
  gap: 8.2051282051vw;
}
.c-hero-sp__content1-text {
  display: block;
  width: 74.6153846154vw;
}
.-p02 .c-hero-sp__content1-text {
  width: 61.5384615385vw;
}
.-p03 .c-hero-sp__content1-text {
  width: 73.5897435897vw;
}
.c-hero-sp__content1-logo {
  display: block;
  width: 72.0512820513vw;
}
.c-hero-sp__content1-monitor {
  display: flex;
  width: 100%;
  font-family: var(--font-family-mincho);
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.c-hero-sp__content1-monitor-text1 {
  font-size: 5.1282051282vw;
  font-weight: 700;
  line-height: 1.2;
}
.c-hero-sp__content1-monitor-text2 {
  width: 100%;
  padding: 4.1025641026vw 0;
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border-top: 1px solid var(--color-00-white);
  border-bottom: 1px solid var(--color-00-white);
}

.c-hero-sp__content2 {
  padding-bottom: 80px;
}
.c-hero-sp__content2-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6.1538461538vw;
}
.c-hero-sp__content2-copy {
  width: 87.1794871795vw;
}
.-p02 .c-hero-sp__content2-copy {
  width: 60.2564102564vw;
}
.-p03 .c-hero-sp__content2-copy {
  width: 60.2564102564vw;
}
.c-hero-sp__content2-price {
  width: 65.3846153846vw;
}
.c-hero-sp__content2-copy2 {
  width: 65.1282051282vw;
}
.c-hero-sp__content2-notice {
  display: flex;
  margin: 16px 20px 0;
  font-size: 11px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
  letter-spacing: -0.02em;
}
.c-hero-sp__content2-notice span:first-child {
  flex: 0 0 auto;
}
.c-hero-sp__content2-notice span:last-child {
  flex: 1 1 auto;
}

.c-hero-sp__content3 {
  padding-bottom: 80px;
}
.c-hero-sp__content3-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-hero-sp__points {
  display: flex;
  width: 100%;
  height: 100%;
  color: var(--color-00-white);
  pointer-events: none;
}
.c-hero-sp__points-inner {
  display: flex;
  overflow-y: auto;
  width: 100%;
  max-height: 100dvh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 32px 24px 40px;
}
.c-hero-sp__points .c-title {
  margin-top: 0;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.c-hero-sp__point {
  position: relative;
  display: grid;
  width: 100%;
  padding: 12px 8px;
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  text-align: center;
  grid-template-columns: 1fr;
  gap: 4px;
  flex-shrink: 0;
}
.c-hero-sp__point-title {
  position: absolute;
  top: -8px;
  left: -8px;
  display: flex;
  width: 36px;
  height: 36px;
  background-color: var(--color-01-gold);
  border-radius: 50%;
  font-family: var(--font-family-en);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  align-items: center;
  justify-content: center;
}
.c-hero-sp__point-lead {
  margin-top: 4px;
  font-size: 6.6666666667vw;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.c-hero-sp__point-lead sup {
  font-size: 0.4em;
  vertical-align: super;
}
.c-hero-sp__point-lead span {
  font-size: 60%;
}
.c-hero-sp__point-description {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
@media print, screen and (min-width:1000px) {
  .c-hero-sp__point-description {
    margin-top: 0;
    font-size: 14px;
    letter-spacing: 0;
  }
}
.c-hero-sp__point-notice {
  display: flex;
  margin-top: 0;
  font-size: 11px;
  text-align: left;
  letter-spacing: -0.02em;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
}
.c-hero-sp__point-notice span:first-child {
  flex: 0 0 auto;
}
.c-hero-sp__point-notice span:last-child {
  flex: 1 1 auto;
}

.c-cta-line {
  padding: 60px 10px;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line {
    padding: 100px 40px;
  }
}
.c-cta-line__inner {
  position: relative;
  margin: 0 auto;
  padding: 12px;
  background-color: var(--color-01-green);
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__inner {
    box-sizing: border-box;
    max-width: 1040px;
    padding: 12px;
  }
}
.c-cta-line__content {
  padding: 25px 16px;
  background-color: var(--color-00-white);
  border-radius: 10px;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__content {
    padding: 24px 15px;
  }
}
.c-cta-line__title {
  display: block;
  grid-template-columns: 1fr;
  gap: 8px;
  font-weight: 600;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    gap: 0 24px;
    grid-template-columns: 86px auto;
    grid-template-areas: "logo line1" "logo line2";
    align-items: center;
    font-weight: 600;
  }
}
.c-cta-line__title::before {
  display: block;
  width: 66px;
  height: 66px;
  margin: 0 auto;
  margin-bottom: 20px;
  background-image: url("../images/logo_line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title::before {
    grid-area: logo;
    width: 50px;
    height: 50px;
    margin-inline: auto;
    margin-bottom: 10px;
  }
}
.c-cta-line__title-line1 {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title-line1 {
    margin: 0 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    grid-area: line1;
  }
}
.c-cta-line__title-line1-text {
  font-size: 16px;
  line-height: 1;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title-line1-text {
    font-size: 18px;
  }
}
.c-cta-line__title-line2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title-line2 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    grid-area: line2;
  }
}
.c-cta-line__title-line2 strong {
  color: var(--color-01-gold);
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title-line2 strong {
    font-size: 52px;
  }
}
.c-cta-line__title-gold {
  display: inline-block;
  margin-top: 10px;
  margin-right: 5px;
  background: linear-gradient(to right, #c89a27 0%, #fceabb 23%, #fceabb 30%, #c89a27 51%, #f1df8f 79%, #dabd41 100%);
  color: transparent;
  font-size: 36px;
  -webkit-background-clip: text;
  background-clip: text;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title-gold {
    display: inline;
    font-size: 35px;
    vertical-align: sub;
  }
}
.c-cta-line__title-notice {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title-notice {
    display: inline;
    margin-top: 0;
    font-size: 10px;
    font-weight: 400;
    vertical-align: middle;
  }
}
.c-cta-line__title-sp-font {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__title-sp-font {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
  }
}
.c-cta-line__description {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 0;
  color: #23c35b;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__description {
    margin-top: 16px;
    font-size: 20px;
    letter-spacing: 0;
    letter-spacing: -0.04em;
  }
}
.c-cta-line__description::before {
  position: absolute;
  top: 10%;
  left: -10px;
  display: block;
  width: 2px;
  height: 60px;
  background-color: #23c35b;
  content: "";
  transform: translate(-50%) rotate(-33deg);
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__description::before {
    top: 19%;
    left: -15px;
    height: 20px;
    transform: rotate(-40deg);
  }
}
.c-cta-line__description::after {
  position: absolute;
  top: 10%;
  right: -10px;
  display: block;
  width: 2px;
  height: 60px;
  background-color: #23c35b;
  content: "";
  transform: translate(-50%) rotate(33deg);
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__description::after {
    top: 19%;
    right: -17px;
    height: 20px;
    transform: rotate(40deg);
  }
}
.c-cta-line__description span {
  font-size: 12px;
  vertical-align: top;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__description span {
    position: absolute;
    top: 0;
    right: -12px;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 10px;
    font-weight: 600;
  }
}
.c-cta-line__button-container {
  margin-top: 28px;
  text-align: center;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__button-container {
    margin-top: 15px;
  }
}
.c-cta-line__button {
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__button {
    margin-top: 20px;
  }
}
.c-cta-line__button-link {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 17px 24px;
  background-color: var(--color-01-green);
  border: 2px solid var(--color-01-green);
  border-radius: 100px;
  color: var(--color-00-white);
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__button-link {
    width: -moz-fit-content;
    width: fit-content;
    min-width: 278px;
    max-width: none;
    padding: 17px 24px;
  }
}
@media (hover: hover) {
  .c-cta-line__button-link {
    transition: background-color 200ms, color 200ms;
  }
  .c-cta-line__button-link::after {
    transition: border-color 200ms;
  }
  .c-cta-line__button-link:hover {
    background-color: var(--color-00-white);
    color: var(--color-01-green);
  }
  .c-cta-line__button-link:hover::after {
    border-color: var(--color-01-green);
  }
}
.c-cta-line__button-link::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid var(--color-00-white);
  border-right: 2px solid var(--color-00-white);
  transform-origin: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__button-link::after {
    right: 23px;
    width: 13px;
    height: 13px;
  }
}
.c-cta-line__button-link::after:hover {
  transform: rotate(90deg);
}
.c-cta-line__button-text {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__button-text {
    font-size: 18px;
  }
}
.c-cta-line__list-container {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 40px;
  margin-inline: auto;
}
.c-cta-line__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-cta-line__item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 332px;
  padding: 20px 15px 25px;
  background-color: #def6e7;
  border-radius: 10px;
  color: #23c35b;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item {
    display: flex;
    max-width: 300px;
    min-height: 233px;
    padding-top: 42px;
    padding-bottom: 20px;
    gap: 8px;
    flex-direction: column;
    justify-content: flex-start;
  }
}
.c-cta-line__item-tag {
  width: 80px;
  height: 76px;
  padding: 10px;
  background-image: url("../images/cta/cta_visual.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: var(--color-00-white);
  line-height: 1;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item-tag {
    position: absolute;
    top: -25px;
    left: 50%;
    width: 60px;
    height: 57px;
    transform: translateX(-50%);
  }
}
.c-cta-line__item-tag.-tag1 {
  background-image: url("../images/cta/cta_visual_1.svg");
}
.c-cta-line__item-tag.-tag2 {
  background-image: url("../images/cta/cta_visual_2.svg");
}
.c-cta-line__item-tag.-tag3 {
  background-image: url("../images/cta/cta_visual_3.svg");
}
.c-cta-line__item-tag-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.c-cta-line__item-tag-number {
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
}
.c-cta-line__item-text {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item-text {
    margin-top: 0;
    font-size: 17px;
  }
}
.c-cta-line__item-text span.-large {
  font-size: 22px;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item-text span.-large {
    font-size: 21px;
  }
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item-text.-space span {
    letter-spacing: -0.02em;
  }
}
.c-cta-line__item-image {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-top: 20px;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item-image {
    padding-top: 15px;
  }
}
.c-cta-line__item-image img {
  width: auto;
  width: 100%;
  object-fit: cover;
}
.c-cta-line__item-image.-server {
  width: 100%;
  max-width: 97px;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item-image.-server {
    max-width: 69px;
  }
}
.c-cta-line__item-image.-ticket {
  width: 100%;
  max-width: 151px;
  padding-block: 30px;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item-image.-ticket {
    max-width: 110px;
    margin-top: 5px;
  }
}
.c-cta-line__item-image.-beer {
  width: 100%;
  max-width: 212px;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__item-image.-beer {
    max-width: 156px;
  }
}
.c-cta-line__item-description {
  width: 100%;
  margin-top: auto;
  font-size: 12px;
  font-weight: 600;
}
@media print, screen and (max-width:999px) {
  .c-cta-line__item-description {
    margin-top: 8px;
  }
}
.c-cta-line__description-notice {
  display: block;
  max-width: 400px;
  margin-inline: auto;
  margin-top: 25px;
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
}
@media print, screen and (min-width:1000px) {
  .c-cta-line__description-notice {
    position: absolute;
    right: 15px;
    bottom: 20px;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 0;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.c-cta-line__description-notice-sp {
  display: inline-block;
  margin-top: 10px;
  color: var(--color-01-green);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.c-cta-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}
.c-cta-fixed__button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 16px;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-fixed__button {
    margin-bottom: 45px;
  }
}
.c-cta-fixed__button-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 8px 32px 8px 24px;
  background-color: var(--color-01-green);
  border: 2px solid var(--color-01-green);
  border-radius: 100px;
  color: var(--color-00-white);
}
@media print, screen and (min-width:1000px) {
  .c-cta-fixed__button-link {
    width: -moz-fit-content;
    width: fit-content;
    max-width: none;
    padding: 8px 40px 8px 24px;
  }
}
@media (hover: hover) {
  .c-cta-fixed__button-link {
    transition: background-color 200ms, color 200ms;
  }
  .c-cta-fixed__button-link::after {
    transition: border-color 200ms;
  }
  .c-cta-fixed__button-link:hover {
    background-color: var(--color-00-white);
    color: var(--color-01-green);
  }
  .c-cta-fixed__button-link:hover::after {
    border-color: var(--color-01-green);
  }
}
.c-cta-fixed__button-link::after {
  position: absolute;
  top: 50%;
  right: 20px;
  display: block;
  width: 12px;
  height: 12px;
  content: "";
  transform: translateY(-50%) rotate(45deg);
  border-top: 2px solid var(--color-00-white);
  border-right: 2px solid var(--color-00-white);
  transform-origin: center;
}
@media print, screen and (min-width:1000px) {
  .c-cta-fixed__button-link::after {
    width: 12px;
    height: 12px;
  }
}
.c-cta-fixed__button-link::after:hover {
  transform: rotate(90deg);
}
.c-cta-fixed__button-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
@media print, screen and (min-width:1000px) {
  .c-cta-fixed__button-text {
    font-size: 14px;
    line-height: 1.1;
  }
}
.c-cta-fixed__button-text em {
  font-size: 22px;
  font-weight: 700;
  font-style: normal;
}
@media print, screen and (min-width:1000px) {
  .c-cta-fixed__button-text em {
    font-size: 20px;
  }
}
.c-cta-fixed__button-text em span {
  font-size: 110%;
}

.c-title {
  --c-title-color: var(--color-01-gold);
  max-width: 1040px;
  margin-top: 18px;
  line-height: 1;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-title {
    align-self: start;
  }
}
.c-title__en {
  display: block;
  color: var(--c-title-color);
  font-family: var(--font-family-gothic);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.03em;
}
@media print, screen and (min-width:1000px) {
  .c-title__en {
    font-size: 32px;
    text-align: start;
  }
}
.c-title__ja {
  display: block;
  margin-top: 8px;
  color: var(--c-title-color);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-title__ja {
    margin-top: 20px;
    font-size: 15px;
    text-align: start;
  }
}
@media print, screen and (min-width:1000px) {
  .c-title.-sticky {
    position: sticky;
    top: 50px;
  }
}
.c-title--white {
  --c-title-color: var(--color-00-white);
}

.c-new__background {
  padding: 70px 40px 40px;
  background-image: url("../images/sp/new_background.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-00-white);
}
@media print, screen and (min-width:1000px) {
  .c-new__background {
    padding: 70px 40px 40px;
    background-image: url("../images/pc/new_background.webp");
  }
}
.c-new__inner {
  margin: 0 auto;
}
@media print, screen and (max-width:999px) {
  .c-new__inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "lead" "copy" "logo" "youtube";
    gap: 0;
  }
  .-p02 .c-new__inner, .-p03 .c-new__inner {
    grid-template-areas: "copy" "lead" "logo" "youtube";
  }
  .-p02 .c-new__inner .c-new__lead, .-p03 .c-new__inner .c-new__lead {
    margin-top: 40px;
    margin-right: 0;
  }
  .-p02 .c-new__inner .c-new__copy, .-p03 .c-new__inner .c-new__copy {
    margin-top: 0;
  }
}
@media print, screen and (min-width:1000px) {
  .c-new__inner {
    max-width: 1040px;
  }
}
.c-new__lead {
  margin-right: -20px;
  font-size: 15px;
  font-weight: bold;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.03em;
}
@media print, screen and (max-width:999px) {
  .c-new__lead {
    grid-area: lead;
  }
}
@media print, screen and (min-width:1000px) {
  .c-new__lead {
    margin: 0;
    font-size: 18px;
  }
}
.c-new__lead strong {
  font-size: 120%;
}
.c-new__copy {
  margin-top: 56px;
}
@media print, screen and (max-width:999px) {
  .c-new__copy {
    grid-area: copy;
  }
}
@media print, screen and (min-width:1000px) {
  .c-new__copy {
    margin-top: 56px;
  }
  .-p02 .c-new__copy, .-p03 .c-new__copy {
    margin-inline: -40px;
  }
}
.c-new__logo {
  width: 100%;
  max-width: 300px;
  margin: 56px auto 0;
}
@media print, screen and (max-width:999px) {
  .c-new__logo {
    grid-area: logo;
  }
}
@media print, screen and (min-width:1000px) {
  .c-new__logo {
    margin-top: 56px;
  }
}
.c-new__youtube {
  margin-top: 60px;
}
@media print, screen and (max-width:999px) {
  .c-new__youtube {
    grid-area: youtube;
  }
}
@media print, screen and (min-width:1000px) {
  .c-new__youtube {
    display: grid;
    grid-template-columns: 185px auto 185px;
    gap: 0;
    margin-top: 80px;
  }
  .c-new__youtube::after {
    display: block;
    width: auto;
    height: 1px;
    content: "";
  }
}
.c-new__youtube-header .c-title {
  margin-top: 0;
}
@media print, screen and (min-width:1000px) {
  .c-new__youtube-header .c-title {
    margin-top: -8px;
  }
}
.c-new__youtube-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media print, screen and (max-width:999px) {
  .c-new__youtube-video {
    width: calc(100% + 40px);
    margin: 24px -20px 0;
  }
}
@media print, screen and (min-width:1000px) {
  .c-new__youtube-video {
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
  }
}
.c-new__youtube-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-new__notice-container {
  margin: 0 auto;
  padding: 20px;
}
@media print, screen and (min-width:1000px) {
  .c-new__notice-container {
    max-width: 1120px;
    padding: 24px 40px;
  }
}
.c-new__notice {
  display: flex;
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.04em;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
}
@media print, screen and (min-width:1000px) {
  .c-new__notice {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 11px;
  }
}
.c-new__notice span:first-child {
  flex: 0 0 auto;
}
.c-new__notice span:last-child {
  flex: 1 1 auto;
}

:root {
  --line-up-sp-content-duration: 600ms;
  --line-up-sp-background-duration: 800ms;
}

.l-scroll__snap.c-line-up-sp__page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  color: var(--color-00-black);
}

.c-line-up-sp__title {
  position: relative;
  z-index: 2;
  overflow: visible;
  width: 100%;
  pointer-events: none;
}
.c-line-up-sp__title-inner {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 0 80px;
}
.c-line-up-sp__title .c-title {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 16px;
}
.c-line-up-sp__title-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.c-line-up-sp__title-background-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  opacity: 0;
  filter: blur(10px);
  transition: opacity var(--line-up-sp-background-duration) ease 200ms, filter var(--line-up-sp-background-duration) ease 200ms;
}
.c-line-up-sp__title-background-page.-heartland {
  background-image: url("../images/sp/lineup_heartland_background.webp");
}
.c-line-up-sp__title-background-page.-ichiban-premium {
  background-image: url("../images/sp/lineup_ichiban_premium_background.webp");
}
.c-line-up-sp__title-background-page[data-page="1"] {
  opacity: 1;
  filter: blur(0);
  transition: opacity var(--line-up-sp-background-duration) ease, filter var(--line-up-sp-background-duration) ease;
}
.c-line-up-sp__title .c-line-up-sp__content[data-page="1"] .c-line-up-item-sp__logo {
  opacity: 1;
}
.c-line-up-sp__title .c-line-up-sp__content[data-page="1"] .c-line-up-item-sp__image {
  opacity: 1;
}
.c-line-up-sp__title .c-line-up-sp__content[data-page="1"] .c-line-up-item-sp__text {
  opacity: 1;
}
.c-line-up-sp__title[data-page="2"] .c-line-up-sp__title-background-page[data-page="1"] {
  opacity: 0;
  filter: blur(10px);
  transition: opacity var(--line-up-sp-background-duration) ease 200ms, filter var(--line-up-sp-background-duration) ease 200ms;
}
.c-line-up-sp__title[data-page="2"] .c-line-up-sp__title-background-page[data-page="2"] {
  opacity: 1;
  filter: blur(0);
  transition: opacity var(--line-up-sp-background-duration) ease, filter var(--line-up-sp-background-duration) ease;
}
.c-line-up-sp__title[data-page="2"] .c-line-up-sp__content[data-page="1"] .c-line-up-item-sp__logo,
.c-line-up-sp__title[data-page="2"] .c-line-up-sp__content[data-page="1"] .c-line-up-item-sp__image,
.c-line-up-sp__title[data-page="2"] .c-line-up-sp__content[data-page="1"] .c-line-up-item-sp__text {
  opacity: 0;
  transition: opacity var(--line-up-sp-content-duration) ease 0ms;
}
.c-line-up-sp__title[data-page="2"] .c-line-up-sp__content[data-page="2"] .c-line-up-item-sp__logo,
.c-line-up-sp__title[data-page="2"] .c-line-up-sp__content[data-page="2"] .c-line-up-item-sp__image,
.c-line-up-sp__title[data-page="2"] .c-line-up-sp__content[data-page="2"] .c-line-up-item-sp__text {
  opacity: 1;
  transition: opacity var(--line-up-sp-content-duration) ease 0ms;
}
.c-line-up-sp__lead {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
}
.c-line-up-sp__container {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1;
  margin-top: 24px;
}
.c-line-up-sp__page-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-line-up-sp__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.c-line-up-sp__content.-heartland .c-line-up-item-sp__logo {
  width: 196px;
}
.c-line-up-sp__content.-ichiban-premium .c-line-up-item-sp__logo {
  width: 152px;
}

.c-line-up-pc {
  padding: 40px 40px 0;
}
.c-line-up-pc__inner {
  display: grid;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 40px;
}
.c-line-up-pc__header .c-title {
  margin-top: 0;
}
.c-line-up-pc__lead {
  margin-bottom: 32px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.c-line-up-item-pc {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 380px;
  padding: 0 120px 0 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--color-00-black);
  justify-content: flex-start;
  align-items: center;
}
.c-line-up-item-pc.-heartland {
  background-image: url("../images/pc/lineup_heartland_background.webp");
}
.c-line-up-item-pc.-heartland .c-line-up-item-pc__logo {
  width: 230px;
}
.c-line-up-item-pc.-ichiban-premium {
  background-image: url("../images/pc/lineup_ichiban_premium_background.webp");
}
.c-line-up-item-pc.-ichiban-premium .c-line-up-item-pc__logo {
  width: 233px;
}
.c-line-up-item-pc__main {
  display: grid;
  width: 100%;
  grid-template-areas: "logo image" "text image";
  gap: 40px 16px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.c-line-up-item-pc__logo {
  margin: 0 auto;
  grid-area: logo;
  align-self: end;
}
.c-line-up-item-pc__image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  grid-area: image;
}
.c-line-up-item-pc__image img {
  display: block;
  width: 100%;
  height: auto;
}
.c-line-up-item-pc__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.03em;
  grid-area: text;
  align-self: start;
}

.c-line-up-item-sp {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 24px;
}
.c-line-up-item-sp__logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  opacity: 0;
  transition: opacity var(--line-up-sp-content-duration) ease 0ms;
}
.c-line-up-item-sp__logo img {
  display: block;
  width: 100%;
  height: auto;
}
.c-line-up-item-sp__image {
  width: 180px;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transition: opacity var(--line-up-sp-content-duration) ease 0ms;
}
.c-line-up-item-sp__image img {
  display: block;
  width: 100%;
  height: auto;
}
.c-line-up-item-sp__text {
  margin-top: 8px;
  opacity: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: -0.05em;
  transition: opacity var(--line-up-sp-content-duration) ease 0ms;
}

.c-beers {
  padding-top: 40px;
}
@media print, screen and (min-width:1000px) {
  .c-beers {
    padding-top: 60px;
  }
}
.c-beers__header {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 16px 8px;
  border-top: 2px solid var(--color-01-gold);
  border-bottom: 2px solid var(--color-01-gold);
}
@media print, screen and (min-width:1000px) {
  .c-beers__header {
    margin: 0 auto;
  }
}
.c-beers__header::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color-00-white);
  border: 2px solid var(--color-01-gold);
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  transform: translate(-50%, 50%) rotate(315deg);
}
.c-beers__lead {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.04em;
}
.c-beers__lead strong {
  color: var(--color-01-gold);
}
.c-beers__body {
  display: block;
  margin-top: 40px;
}
@media print, screen and (min-width:1000px) {
  .c-beers__body {
    margin-top: 60px;
  }
}
.c-beers__slider {
  display: block;
}
.c-beers__slider + .c-beers__slider {
  margin-top: 10px;
}
.c-beers__slider + .c-beers__slider .c-beers__slider-image {
  animation-direction: reverse;
  animation-delay: -9375ms;
}
.c-beers__slider-image {
  display: block;
  height: 131px;
  background-image: url("../images/sp/beer_slider1.webp");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 530px 131px;
  animation: 18750ms linear 0ms infinite normal none running sliderLoopAnimationSP;
  transform-origin: center top;
}
@media print, screen and (min-width:1000px) {
  .c-beers__slider-image {
    height: 221px;
    background-image: url("../images/pc/beer_slider.webp");
    background-size: 996px 221px;
    animation: 20124ms linear 0ms infinite normal none running sliderLoopAnimationPC;
  }
}
.c-beers__slider-image.-slider2 {
  margin-top: 10px;
  background-image: url("../images/sp/beer_slider2.webp");
}
.c-beers__contents {
  display: block;
  padding: 20px 20px 40px;
}
@media print, screen and (min-width:1000px) {
  .c-beers__contents {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px 40px 80px;
  }
}
.c-beers__link {
  display: flex;
  color: var(--color-01-gold);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.c-beers__link::after {
  display: block;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background-image: url("../images/icon_arrow_gold.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media (hover: hover) {
  .c-beers__link {
    transition: opacity 200ms;
  }
  .c-beers__link::after {
    transition: transform 200ms;
  }
  .c-beers__link:hover {
    opacity: 0.8;
  }
  .c-beers__link:hover::after {
    transform: translateX(15%);
  }
}
.c-beers__notices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
@media print, screen and (min-width:1000px) {
  .c-beers__notices {
    display: inline-block;
    line-height: 1.2;
  }
}
.c-beers__notice {
  display: flex;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
}
@media print, screen and (min-width:1000px) {
  .c-beers__notice {
    display: inline;
  }
}
.c-beers__notice span:first-child {
  flex: 0 0 auto;
}
.c-beers__notice span:last-child {
  flex: 1 1 auto;
}
.c-beers__notice strong {
  font-weight: 700;
}

@keyframes sliderLoopAnimationPC {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -996px 0;
  }
}
@keyframes sliderLoopAnimationSP {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -530px 0;
  }
}
:root {
  --quality-sp-page3-height: 920px;
  --quality-sp-content-duration: 600ms;
  --quality-sp-background-duration: 800ms;
}

.l-scroll__snap.c-quality-sp__page {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  color: var(--color-00-white);
}

.l-scroll__normal.c-quality-sp__page--scroll {
  position: relative;
  z-index: 1;
  min-height: var(--quality-sp-page3-height);
  padding: 80px 0 48px;
  color: var(--color-00-white);
}

.c-quality-sp {
  background-color: #000;
}
.c-quality-sp__title {
  position: relative;
  z-index: 2;
  overflow: visible;
  width: 100%;
  pointer-events: none;
}
.c-quality-sp__title-inner {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  min-height: 100dvh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 24px;
}
.c-quality-sp__title .c-title {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}
.c-quality-sp__title-background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.c-quality-sp__title-background-page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  filter: blur(10px);
  transition: opacity var(--quality-sp-background-duration) ease 200ms, filter var(--quality-sp-background-duration) ease 200ms;
}
.c-quality-sp__title-background-page[data-page="1"] {
  background-image: url("../images/sp/quality_background1.webp");
}
.c-quality-sp__title-background-page[data-page="2"] {
  background-image: url("../images/sp/quality_background2.webp");
}
.c-quality-sp__title-background-page[data-page="3"] {
  background-image: url("../images/sp/quality_background3.webp");
}
.c-quality-sp__title[data-page="1"] .c-quality-sp__title-background-page[data-page="1"] {
  opacity: 1;
  filter: blur(0);
  transition: opacity var(--quality-sp-background-duration) ease, filter var(--quality-sp-background-duration) ease;
}
.c-quality-sp__title[data-page="1"] .c-quality-sp__content[data-page="1"] .c-quality-sp__content-image {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__title[data-page="1"] .c-quality-sp__content[data-page="1"] .c-quality-sp__content-description {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__title[data-page="1"] .c-quality-sp__content[data-page="1"] .c-quality-sp__content-note {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__title[data-page="2"] .c-quality-sp__title-background-page[data-page="2"] {
  opacity: 1;
  filter: blur(0);
  transition: opacity var(--quality-sp-background-duration) ease, filter var(--quality-sp-background-duration) ease;
}
.c-quality-sp__title[data-page="2"] .c-quality-sp__content[data-page="2"] .c-quality-sp__content-image {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__title[data-page="2"] .c-quality-sp__content[data-page="2"] .c-quality-sp__content-description {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 400ms;
}
.c-quality-sp__title[data-page="3"] .c-quality-sp__title-background-page[data-page="3"] {
  opacity: 1;
  filter: blur(0);
  transition: opacity var(--quality-sp-background-duration) ease, filter var(--quality-sp-background-duration) ease;
}
.c-quality-sp__title[data-page="3"] .c-quality-sp__container {
  height: var(--quality-sp-page3-height);
}
.c-quality-sp__title[data-page="3"] .c-quality-sp__content[data-page="3"] .c-quality-sp__content-image {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__title[data-page="3"] .c-quality-sp__content[data-page="3"] .c-quality-sp__content-description {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 400ms;
}
.c-quality-sp__title[data-page="3"] .c-quality-sp__content[data-page="3"] .c-quality-sp__content-image2 {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 500ms;
}
.c-quality-sp__title[data-page="3"] .c-quality-sp__content[data-page="3"] .c-quality-sp__content-text {
  opacity: 1;
  transition: opacity var(--quality-sp-content-duration) ease 600ms;
}
.c-quality-sp__container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -60px;
}
.c-quality-sp__page-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-quality-sp__content {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  color: var(--color-00-white);
}
.c-quality-sp__content-image {
  width: 100%;
  max-width: 180px;
  margin: 24px auto 0;
  opacity: 0;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__content-image img {
  display: block;
  width: 100%;
  height: auto;
}
.c-quality-sp__content-image2 {
  width: 100%;
  max-width: 270px;
  margin: 24px auto 0;
  opacity: 0;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__content-image2 img {
  display: block;
  width: 100%;
  height: auto;
}
.c-quality-sp__content-copy {
  overflow: hidden;
  margin-top: 24px;
  font-family: var(--font-family-en);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.1em;
}
.c-quality-sp__content-copy .char {
  display: inline-block;
}
.c-quality-sp__content-title {
  overflow: hidden;
  margin: 8px -20px 0;
  font-size: 33px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  letter-spacing: -0.06em;
}
.c-quality-sp__content-title sup {
  font-size: 40%;
}
.c-quality-sp__content-title .char {
  display: inline-block;
}
.c-quality-sp__content-note {
  margin-top: 4px;
  opacity: 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  text-align: right;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__content-description {
  margin-top: 16px;
  opacity: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.03em;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}
.c-quality-sp__content-description strong {
  color: var(--color-01-gold);
  font-size: 130%;
}
.c-quality-sp__content-text {
  margin-top: 16px;
  opacity: 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: -0.03em;
  transition: opacity var(--quality-sp-content-duration) ease 0ms;
}

:root {
  --quality-pc-panel-height: 450px;
}

.c-quality-pc {
  display: block;
  box-sizing: border-box;
  min-height: 100dvh;
}
.c-quality-pc__inner {
  display: grid;
  width: calc(100% - 40px);
  max-width: calc(50% + 520px);
  min-height: 100dvh;
  margin: 0 0 0 auto;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}
.c-quality-pc__title {
  height: 64.2857142857vh;
  min-height: var(--quality-pc-panel-height);
}
.c-quality-pc__title .c-title {
  margin-top: 0;
}
.c-quality-pc__container {
  overflow: hidden;
  width: 100%;
  container-type: inline-size;
  container-name: quality-pc-panel;
}
.c-quality-pc__track {
  display: flex;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
}
.c-quality-pc__content {
  display: grid;
  box-sizing: border-box;
  width: 100cqw;
  height: 64.2857142857vh;
  min-height: var(--quality-pc-panel-height);
  padding: 0 80px 0 120px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--color-00-white);
  flex: 0 0 100cqw;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}
.c-quality-pc__content[data-page="1"] {
  background-image: url("../images/pc/quality_background1.webp");
}
.c-quality-pc__content[data-page="2"] {
  background-image: url("../images/pc/quality_background2.webp");
}
.c-quality-pc__content[data-page="3"] {
  background-image: url("../images/pc/quality_background3.webp");
}
.c-quality-pc__content-image {
  width: 220px;
}
.c-quality-pc__content-image img {
  display: block;
  width: 100%;
  height: auto;
}
.c-quality-pc__content-main {
  width: 400px;
}
.c-quality-pc__content-copy {
  font-family: var(--font-family-en);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.c-quality-pc__content-copy .char {
  display: inline-block;
}
.c-quality-pc__content-title {
  margin: 16px 0 0 -4px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.c-quality-pc__content-title .char {
  display: inline-block;
}
.c-quality-pc__content-title sup {
  font-size: 40%;
}
.c-quality-pc__content-note {
  margin-top: 4px;
  margin-right: 110px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.2;
  text-align: right;
}
.c-quality-pc__content-description {
  margin-top: 24px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: -0.03em;
}
.c-quality-pc__content-description strong {
  color: var(--color-01-gold);
}
.c-quality-pc__content-bottom {
  display: grid;
  grid-template-columns: 147px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}
.c-quality-pc__content-image2 img {
  display: block;
  width: 100%;
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  .c-quality-pc {
    min-height: auto;
  }
  .c-quality-pc__inner {
    min-height: auto;
  }
  .c-quality-pc__track {
    flex-direction: column;
    width: 100%;
  }
  .c-quality-pc__content {
    flex: none;
    width: 100%;
  }
}
.c-price {
  padding-top: 40px;
}
@media print, screen and (min-width:1000px) {
  .c-price {
    padding-top: 88px;
    padding-bottom: 100px;
  }
  .-p02 .c-price, .-p03 .c-price {
    padding-top: 0;
  }
}
.c-price__inner {
  display: block;
  max-width: 1080px;
  padding-inline: 8px;
}
@media print, screen and (min-width:1000px) {
  .c-price__inner {
    display: grid;
    margin-inline: auto;
    padding: 20px;
    gap: 45px;
    grid-template-columns: auto 1fr;
  }
}
.c-price__contents {
  margin-top: 35px;
  border-radius: 8px;
}
@media print, screen and (min-width:1000px) {
  .c-price__contents {
    margin-top: 64px;
    border-radius: 32px;
  }
}
.c-price__contents-lead {
  display: block;
  margin-top: 20px;
  color: #616161;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-price__contents-lead {
    margin-top: 14px;
    font-size: 16px;
  }
}
.c-price__contents-lead.-gold {
  display: block;
  margin-top: 4px;
  color: var(--color-02-gold);
}
@media print, screen and (min-width:1000px) {
  .c-price__contents-lead.-gold {
    margin-top: 14px;
  }
}
.c-price__contents-copy {
  display: block;
  margin-top: 4px;
  color: var(--color-02-gold);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}
.c-price__lead-image {
  display: block;
  margin-inline: auto;
  width: 100%;
  max-width: 188px;
}
@media print, screen and (min-width:1000px) {
  .c-price__lead-image {
    max-width: 286px;
  }
}
.c-price__lead-text {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-price__lead-text {
    margin-top: 25px;
    font-size: 13px;
  }
}
.c-price__lead-text span {
  color: var(--color-02-gold);
}
.c-price__wrapper {
  margin-top: 20px;
  padding: 16px 10px;
  background-color: var(--color-01-cream);
  border-radius: 8px;
}
@media print, screen and (min-width:1000px) {
  .c-price__wrapper {
    margin-top: 45px;
    padding: 50px 48px;
    border-radius: 32px;
  }
}
.c-price__icon-image {
  width: 100%;
  max-width: 52px;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-price__icon-image {
    max-width: 87px;
  }
}
.c-price__beer-selected {
  position: relative;
  margin-top: 24px;
  padding-top: 20px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-selected {
    margin-top: 30px;
    padding-top: 28px;
    font-size: 18px;
  }
}
.c-price__beer-selected::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #eaeef2;
  content: "";
  transform: translateX(-50%);
}
.c-price__beer-selected-question {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-selected-question {
    display: none;
  }
}
.c-price__beer-selected-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: var(--color-00-white);
  border: 1px solid #c3c3c3;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
.c-price__beer-selected-icon {
  width: 16px;
  height: 16px;
  background: url("../images/icon_arrow_gold.svg") center/contain no-repeat;
  transition: transform 300ms ease-in-out;
  transform: rotate(90deg);
}
.c-price__beer-selected-options {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  margin-top: 4px;
  background: var(--color-00-white);
  border: 1px solid #c3c3c3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.c-price__beer-selected-options[hidden] {
  display: none;
}
.c-price__beer-selected-options li {
  padding: 12px 20px;
  cursor: pointer;
}
.c-price__beer-selected-options li[aria-selected=true] {
  background: var(--color-01-cream);
}
.c-price__beer-selected.-open .c-price__beer-select-icon {
  transform: rotate(-90deg);
}
.c-price__beer-selected.-open .c-price__beer-select-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.c-price__beer-select {
  position: relative;
  width: 100%;
  max-width: 586px;
  margin-top: 12px;
  margin-inline: auto;
}
.c-price__beer-select-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background-color: var(--color-00-white);
  border: 1px solid #c3c3c3;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}
.c-price__beer-select-icon {
  width: 10px;
  height: 16px;
  background: url("../../assets/images/select_arrow.svg") center/contain no-repeat;
  transition: transform 150ms ease-in-out;
}
.c-price__beer-select-options {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 10;
  overflow: hidden;
  margin-top: 4px;
  background: var(--color-00-white);
  border: 1px solid #c3c3c3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.c-price__beer-select-options[hidden] {
  display: none;
}
.c-price__beer-select-options li {
  padding: 12px 20px;
  cursor: pointer;
}
.c-price__beer-select-options li[aria-selected=true] {
  background: var(--color-01-cream);
}
.c-price__beer-select.-open .c-price__beer-select-icon {
  transform: rotate(180deg);
}
.c-price__beer-select.-open .c-price__beer-select-trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.c-price__server-content {
  display: block;
  margin-top: 32px;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 40px;
  }
}
.c-price__server-content-lead {
  font-size: 22px;
  font-weight: 600;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-content-lead {
    font-size: 20px;
  }
}
.c-price__server-content-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-content-text {
    font-size: 11px;
  }
}
.c-price__server-list {
  margin-top: 10px;
  padding: 12px 8px;
  background-color: #f4f8fc;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-list {
    margin-top: 13px;
    padding: 10px;
  }
}
.c-price__server-list-item {
  font-size: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-list-item {
    font-size: 10px;
  }
}
.c-price__server-item {
  position: relative;
  display: block;
  margin-top: 15px;
  padding: 24px;
  background-color: var(--color-00-white);
  border: 2px solid #c3c3c3;
  border-radius: 15px;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-item {
    padding: 17px 19px;
    border-radius: 16px;
  }
}
.c-price__server-item::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  content: "";
}
.c-price__server-item:first-child::after {
  background-image: url("../images/service/service_price_icon1.webp");
}
.c-price__server-item:last-child::after {
  background-image: url("../images/service/service_price_icon2.webp");
}
.c-price__server-item.-campaign {
  position: relative;
  background-color: #fffbe8;
  border: 2px solid #ed8f2a;
}
.c-price__server-item.-campaign::before {
  position: absolute;
  top: -14px;
  right: 12px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 8px;
  background-color: #ed8f2a;
  border-radius: 16px;
  color: var(--color-00-white);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.6;
  content: "キャンペーン価格！";
}
.c-price__server-item.-campaign .c-price__server-list {
  background-color: var(--color-00-white);
}
.c-price__server-item-text {
  position: relative;
  display: block;
  padding-left: 15px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-item-text {
    font-size: 10px;
  }
}
.c-price__server-item-text:nth-child(2) {
  margin-top: 4px;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-item-text:nth-child(2) {
    margin-top: 8px;
  }
}
.c-price__server-item-text::before {
  position: absolute;
  top: 4px;
  left: 3px;
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../images/service/service_price_check.svg");
  background-position: center;
  background-size: cover;
  border-radius: 50%;
  content: "";
}
.c-price__server-price {
  color: #916c28;
}
.c-price__server-data {
  display: block;
  margin-top: 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 3.6rem;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-data {
    margin-top: 15px;
    font-size: 25px;
    line-height: 2.6rem;
  }
}
.c-price__server-data span {
  font-size: 12px;
  font-weight: 400;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-data span {
    font-size: 10px;
  }
}
.c-price__server-data-text {
  opacity: 0.5;
  font-size: 12px;
  line-height: 0.6;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-data-text {
    font-size: 10px;
  }
}
.c-price__server-data-text span {
  position: relative;
  font-size: 14px;
}
@media print, screen and (min-width:1000px) {
  .c-price__server-data-text span {
    font-size: 12px;
  }
}
.c-price__server-data-text span::before {
  position: absolute;
  top: 60%;
  right: 0;
  display: block;
  width: 80%;
  height: 1px;
  background-color: var(--color-01-gold);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}

.c-price__beer-content {
  overflow: hidden;
  margin-top: 20px;
  border-radius: 15px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-content {
    margin-top: 30px;
    border-radius: 16px;
  }
}
.c-price__beer-content.-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-content.-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.c-price__beer-content-left {
  padding: 24px 20px;
  background-color: var(--color-00-white);
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-content-left {
    padding-block: 40px;
    padding-inline: 30px;
  }
}
.c-price__beer-content-right {
  padding: 24px 20px;
  background-color: var(--color-00-white);
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-content-right {
    padding-block: 40px;
    padding-inline: 30px;
  }
}
.c-price__beer-content-bottom {
  padding: 24px 20px;
  background-color: var(--color-00-white);
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-content-bottom {
    padding-block: 40px;
    padding-inline: 30px;
    grid-column: 1/-1;
  }
}
.c-price__beer-content-inner {
  width: 100%;
  padding: 24px 20px;
  background-color: var(--color-00-white);
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-content-inner {
    padding: 50px 75px;
  }
}
.c-price__beer-lead-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-lead-text {
    font-size: 22px;
  }
}
.c-price__beer-lead-text span {
  color: var(--color-01-gold);
}
.c-price__beer-lead-text.-small {
  font-size: 17px;
}
.c-price__beer-lead-text-notice {
  margin: 5px auto 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.c-price__beer-image {
  width: 100%;
  max-width: 130px;
  margin-inline: auto;
  margin-top: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-image {
    max-width: 160px;
    margin-top: 15px;
  }
}
.c-price__beer-detail {
  margin-top: 12px;
  padding: 20px 10px;
  background-color: #f4f8fc;
  border-radius: 8px;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-detail {
    margin-top: 15px;
    border-radius: 14px;
  }
}
.c-price__beer-detail-lead {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
}
.c-price__beer-detail-lead .-center {
  font-size: 16px;
  text-align: center;
}
.c-price__beer-detail-image {
  width: 100%;
  max-width: 50px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-detail-image {
    max-width: 46px;
  }
}
.c-price__beer-detail-text {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-detail-text {
    font-size: 16px;
  }
}
.c-price__beer-detail-text.-center {
  justify-content: center;
  gap: 0;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-detail-text.-center {
    font-size: 16px;
  }
}
.c-price__beer-detail-text.-center span {
  color: var(--color-01-gold);
  font-weight: 600;
}
.c-price__beer-detail-text span {
  text-align: start;
}
.c-price__beer-detail-text .-gold {
  color: var(--color-01-gold);
  font-size: 20px;
}
.c-price__beer-detail-label {
  color: #787878;
  font-size: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-detail-label {
    font-size: 16px;
  }
}
.c-price__beer-detail-notice {
  margin-top: 5px;
  color: #808080;
  font-family: ver();
  font-size: 10px;
  margin-inline: auto;
  padding-inline: 10px;
  text-align: start;
}
.c-price__beer-detail-notice .-gold {
  color: var(--color-01-gold);
  padding-inline: 20px;
}
.c-price__beer-notice {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.c-price__beer-notice-list {
  width: 100%;
  max-width: 624px;
  margin-top: 16px;
  color: #808080;
  font-size: 12px;
  list-style: none;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-notice-list {
    margin-inline: auto;
    font-size: 10px;
  }
}
.c-price__beer-notice-item {
  display: block;
  gap: 2px;
}
.c-price__beer-notice-item span:first-child {
  flex: 0 0 auto;
}
.c-price__beer-notice-item span:last-child {
  flex: 1 1 auto;
}
.c-price__beer-notice-item:last-child {
  margin-top: 5px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-notice-item:last-child {
    margin-top: 3px;
  }
}
.c-price__beer-notice .-gold {
  color: var(--color-02-gold);
}
.c-price__beer-offer {
  display: grid;
  width: 100%;
  max-width: 684px;
  margin-top: 16px;
  padding: 12px 15px;
  background-color: #f4f8fc;
  border-radius: 8px;
  grid-template-columns: 1fr;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-offer {
    grid-template-columns: 1fr 1fr;
  }
}
.c-price__beer-offer-text {
  position: relative;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  justify-content: space-between;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-offer-text {
    justify-content: center;
    gap: 10px;
  }
}
.c-price__beer-offer-text:last-of-type::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #eaeef2;
  content: "";
  transform: translateX(-50%);
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-offer-text:last-of-type::before {
    top: 50%;
    left: 0;
    width: 1px;
    height: 80%;
    transform: translateY(-50%);
  }
}
.c-price__beer-offer-text .-gold {
  color: var(--color-02-gold);
}
.c-price__beer-table-wrapper {
  overflow: hidden;
  margin-top: 16px;
  border: 3px solid #000;
  border-radius: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table-wrapper {
    margin-block: 20px;
    margin-inline: auto;
    max-width: 624px;
  }
}
.c-price__beer-table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}
.c-price__beer-table tr.c-price__beer-table-head th {
  background-color: #323232;
  padding-block: 10px;
}
.c-price__beer-table td,
.c-price__beer-table th {
  border: 1px solid #c3c3c3;
}
.c-price__beer-table td .-gold,
.c-price__beer-table th .-gold {
  color: var(--color-01-gold);
}
.c-price__beer-table tr:first-child > th,
.c-price__beer-table tr:first-child > td {
  border-top: none;
}
.c-price__beer-table tr:last-child > th,
.c-price__beer-table tr:last-child > td {
  border-bottom: none;
}
.c-price__beer-table tr > th:first-child,
.c-price__beer-table tr > td:first-child {
  border-left: none;
}
.c-price__beer-table tr > th:last-child,
.c-price__beer-table tr > td:last-child {
  border-right: none;
}
.c-price__beer-table th {
  position: relative;
  width: auto;
  padding: 20px 5px;
  background-color: #616161;
  color: #fff;
  font-size: 10px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table th {
    padding: 12px 20px;
    font-size: 13px;
  }
}
.c-price__beer-table th:first-child {
  width: 92px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table th:first-child {
    width: auto;
  }
}
.c-price__beer-table th span.-big {
  margin-right: 3px;
  font-size: 15px;
  font-weight: 600;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table th span.-big {
    font-size: 19px;
  }
}
.c-price__beer-table th span.-small {
  font-size: 10px;
}
.c-price__beer-table th img {
  position: absolute;
  bottom: 10px;
  left: 12px;
  width: 18px;
  transform: translateX(-50%);
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table th img {
    bottom: 5px;
    left: 16px;
    width: 20px;
  }
}
.c-price__beer-table th.-has-mark1::before, .c-price__beer-table th.-has-mark2::before, .c-price__beer-table th.-has-mark3::before {
  position: absolute;
  top: 5px;
  right: 5px;
  color: var(--color-00-white);
  content: "※1";
}
.c-price__beer-table th.-has-mark1::before {
  content: "※1";
}
.c-price__beer-table th.-has-mark2::before {
  content: "※2";
}
.c-price__beer-table th.-has-mark3::before {
  content: "※3";
}
.c-price__beer-table th span.-tag {
  display: inline-block;
  background-color: var(--color-00-white);
  border-radius: 9px;
  color: var(--color-01-gold);
  font-size: 10px;
  padding-inline: 6px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table th.-height {
    padding-block: 22px;
  }
}
.c-price__beer-table td {
  position: relative;
  width: auto;
  font-size: 17px;
  font-weight: 600;
  text-align: center;
}
.c-price__beer-table td:nth-child(3), .c-price__beer-table td:nth-child(4) {
  background-color: #fff9e6;
}
.c-price__beer-table td .-gold {
  color: var(--color-01-gold);
}
.c-price__beer-table td .-gold.-large {
  font-size: 18px;
}
.c-price__beer-table td span.-small {
  position: absolute;
  top: 63%;
  left: 50%;
  width: 34px;
  font-size: 8px;
  transform: translateX(-50%);
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table td span.-small {
    position: static;
  }
}
.c-price__beer-table-discount {
  display: inline-flex;
  color: var(--color-01-gold);
  line-height: 1;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.c-price__beer-table-discount-num {
  font-size: 20px;
  font-weight: 700;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table-discount-num {
    font-size: 25px;
  }
}
.c-price__beer-table-discount-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.c-price__beer-table-discount-percent {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table-discount-percent {
    font-size: 12px;
  }
}
.c-price__beer-table-discount-off {
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-table-discount-off {
    font-size: 10px;
  }
}
.c-price__beer-table.c-price__beer-table-head {
  background-color: #323232;
}

.c-price__beer-result-panel {
  margin-top: 28px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-panel {
    margin-top: 53px;
    padding-top: 53px;
  }
}
.c-price__beer-result-panel[hidden] {
  display: none;
}
.c-price__beer-result-panel.-max .c-price__beer-result-benefit {
  background: rgba(237, 143, 42, 0.2);
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-summary-lead {
    color: var(--color-02-gold);
  }
}
.c-price__beer-result-summary-value {
  color: var(--color-02-gold);
  font-size: 22px;
  line-height: 1.3;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-summary-value {
    font-size: 18px;
  }
}
.c-price__beer-result-summary-value span {
  font-size: 32px;
  font-weight: 700;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-summary-value span {
    font-size: 35px;
  }
}
.c-price__beer-result-recommend {
  margin-top: 20px;
  padding: 24px 16px;
  background-color: var(--color-01-cream);
  border: 1px solid var(--color-01-gold);
  border-radius: 8px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-recommend {
    padding: 36px;
  }
}
.c-price__beer-result-recommend-lead {
  color: #616161;
  font-size: 16px;
}
.c-price__beer-result-recommend-l {
  display: block;
  margin-top: 18px;
  color: var(--color-02-gold);
  font-size: 22px;
  font-weight: 700;
}
.c-price__beer-result-recommend-l span {
  font-size: 32px;
  font-weight: 700;
}
.c-price__beer-result-recommend-detail {
  color: var(--color-02-gold);
  font-weight: 400;
}
.c-price__beer-result-recommend-detail span {
  font-weight: 600;
}
.c-price__beer-result-price-container {
  margin-top: 17px;
  padding: 12px 16px;
  background-color: var(--color-00-white);
  border-radius: 8px 8px 0 0;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-price-container {
    padding: 30px 35px 20px;
  }
}
.c-price__beer-result-price {
  display: flex;
  margin-top: 10px;
  font-size: 12px;
  align-items: center;
  justify-content: space-between;
}
.c-price__beer-result-price:first-child {
  margin-top: 0;
}
.c-price__beer-result-price-label {
  font-size: 11px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-price-label {
    font-size: 14px;
  }
}
.c-price__beer-result-price-value {
  color: #c3c3c3;
  font-size: 12px;
}
.c-price__beer-result-price-sale {
  position: relative;
  color: #c3c3c3;
  font-size: 13px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-price-sale {
    font-size: 14px;
  }
}
.c-price__beer-result-price-sale span::before {
  position: absolute;
  top: 60%;
  right: 0;
  display: block;
  width: 80%;
  height: 1px;
  background-color: #c3c3c3;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  transform: translateY(-50%);
}
.c-price__beer-result-price-regular {
  padding-right: 3px;
  color: var(--color-02-gold);
  font-size: 16px;
}
.c-price__beer-result-benefit {
  padding: 12px 16px;
  background-color: rgba(245, 205, 10, 0.2);
  border: 1px solid var(--color-01-gold);
  border-radius: 8px;
  color: #ed8f2a;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-benefit {
    padding-block: 10px;
  }
}
.c-price__beer-result-benefit-note {
  display: flex;
  color: #787878;
  font-size: 10px;
  justify-content: start;
  line-height: 2;
  gap: 2px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-benefit-note {
    font-size: 12px;
  }
}
.c-price__beer-result-benefit-note-list {
  margin-top: 7px;
}
.c-price__beer-result-benefit-lead {
  font-size: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-benefit-lead {
    font-size: 14px;
  }
}
.c-price__beer-result-benefit-lead span {
  font-size: 16px;
  font-weight: 700;
  padding-inline: 2px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-benefit-lead span {
    font-size: 18px;
    padding-inline: 3px;
  }
}
.c-price__beer-result-benefit-shipping {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  gap: 8px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-benefit-shipping {
    margin-top: 5px;
    font-size: 16px;
  }
}
.c-price__beer-result-benefit-shipping img {
  width: 12px;
  height: 12px;
}
.c-price__beer-result-benefit-shipping span {
  display: flex;
  align-items: center;
}
.c-price__beer-result-benefit-shipping span span {
  font-size: 20px;
  line-height: 1.3;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-benefit-shipping span span {
    font-size: 18px;
  }
}
.c-price__beer-result-benefit-shipping > span:last-child {
  font-size: 18px;
  flex-basis: 100%;
  justify-content: center;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-benefit-shipping > span:last-child {
    flex-basis: auto;
    font-size: 16px;
  }
}
.c-price__beer-result-button {
  display: block;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  background-color: #ed8f2a;
  border-radius: 25px;
  opacity: 1;
  color: var(--color-00-white);
  font-size: 14px;
  transition: opacity 300ms;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-button {
    max-width: 250px;
    border-radius: 30px;
  }
}
.c-price__beer-result-button:hover {
  opacity: 0.8;
}
.c-price__beer-result-button-link {
  display: block;
  width: 100%;
  color: var(--color-00-white);
  font-size: 14px;
  padding-block: 13px;
}
@media print, screen and (min-width:1000px) {
  .c-price__beer-result-button-link {
    padding-block: 14px;
    font-size: 16px;
  }
}

.c-voice {
  padding-block: 40px;
}
@media print, screen and (min-width:1000px) {
  .c-voice {
    padding-top: 88px;
    padding-bottom: 100px;
    background-color: var(--color-01-cream);
  }
  .-p03 .c-voice {
    padding-bottom: 0;
    background-color: var(--color-00-white);
  }
}
.c-voice__inner {
  display: block;
  padding-inline: 16px;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-voice__inner {
    max-width: 1200px;
    padding-inline: 20px;
  }
}
.c-voice__lead {
  margin-top: 33px;
  font-size: 14px;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-voice__lead {
    margin-top: 30px;
    font-size: 16px;
  }
}
.c-voice__contents {
  margin-inline: auto;
}
.c-voice__list {
  display: grid;
  width: auto;
  margin-top: 46px;
  margin-inline: auto;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}
@media print, screen and (min-width:1000px) {
  .c-voice__list {
    max-width: 1040px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-voice-item {
  position: relative;
  width: 100%;
  min-width: 333px;
  max-width: 365px;
  height: 100%;
  padding-top: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: var(--color-00-white);
  line-height: 1.4;
  aspect-ratio: 365/310;
  padding-inline: 20px;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-voice-item {
    min-width: auto;
    max-width: 330px;
    padding-top: 30px;
    padding-bottom: 23px;
    padding-inline: 10px;
  }
}
.c-voice-item.-image1 {
  background-image: url("../images/pc/voice_image1.webp");
}
.c-voice-item.-image2 {
  background-image: url("../images/pc/voice_image2.webp");
}
.c-voice-item.-image3 {
  background-image: url("../images/pc/voice_image3.webp");
}
.c-voice-item__lead {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 10px;
  font-size: 16px;
  border-bottom: 1px solid var(--color-00-white);
  margin-inline: auto;
  font-weight: 700;
  letter-spacing: 0;
}
@media print, screen and (min-width:1000px) {
  .c-voice-item__lead {
    font-size: 15px;
    letter-spacing: -0.05rem;
  }
}
.c-voice-item__text {
  display: block;
  max-width: 300px;
  margin-top: 15px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  margin-inline: auto;
  letter-spacing: 0;
}
@media print, screen and (min-width:1000px) {
  .c-voice-item__text {
    max-width: 274px;
    margin-top: 18px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.05rem;
  }
}
.c-voice-item__text.-large {
  font-size: 22px;
}
@media print, screen and (min-width:1000px) {
  .c-voice-item__text.-large {
    font-size: 20px;
  }
}
.c-voice-item__text.-small {
  font-size: 13px;
}
@media print, screen and (min-width:1000px) {
  .c-voice-item__text.-small {
    font-size: 11px;
  }
}
.c-voice-item__text.-medium {
  font-size: 17px;
}
@media print, screen and (min-width:1000px) {
  .c-voice-item__text.-medium {
    font-size: 14px;
  }
}
.c-voice-item__age {
  position: absolute;
  bottom: 23px;
  left: 50%;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  transform: translateX(-50%);
}
@media print, screen and (min-width:1000px) {
  .c-voice-item__age {
    font-size: 14px;
  }
}

.c-howto {
  padding-top: 40px;
}
@media print, screen and (min-width:1000px) {
  .c-howto {
    padding-top: 88px;
    padding-bottom: 100px;
    background-color: var(--color-01-cream);
  }
}
.c-howto__inner {
  display: block;
  max-width: 1080px;
  padding-inline: 20px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__inner {
    gap: 30px;
    display: grid;
    margin-inline: auto;
    grid-template-columns: auto 1fr;
  }
}
.c-howto__lead {
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media print, screen and (min-width:1000px) {
  .c-howto__lead {
    margin-top: 0;
    font-size: 16px;
    text-align: left;
  }
}
.c-howto__contents {
  margin-top: 46px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__contents {
    margin-top: 20px;
  }
}
.c-howto__list {
  display: block;
  margin-top: 80px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__list {
    margin-top: 95px;
  }
}

.c-howto__item {
  position: relative;
  display: block;
  margin-top: 40px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__item {
    display: grid;
    grid-template-columns: 1fr 415px;
    gap: 40px;
    margin-top: 120px;
  }
}
.c-howto__item:first-child {
  margin-top: 0;
}
.c-howto__item:nth-child(even) {
  padding-left: 30px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__item:nth-child(even) {
    padding-left: 60px;
  }
}
.c-howto__item:nth-child(odd) {
  padding-right: 30px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__item:nth-child(odd) {
    padding-right: 60px;
  }
}
.c-howto__item-content:nth-child(2) {
  order: 1;
}
.c-howto__item-tag {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 20px;
  padding: 4px 13px;
  background-color: #fde19f;
  border-radius: 20px;
  font-size: 11px;
  line-height: 1;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__item-tag {
    margin-top: 0;
    padding: 4px 13px;
    font-size: 10px;
  }
}
.c-howto__item-tag span.c-howto__item-tag-step {
  margin-top: 1px;
}
.c-howto__item-tag span.c-howto__item-tag-number {
  font-size: 16px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__item-tag span.c-howto__item-tag-number {
    font-size: 14px;
  }
}
.c-howto__item-lead {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
}
@media print, screen and (min-width:1000px) {
  .c-howto__item-lead {
    margin-top: 10px;
    font-size: 20px;
    letter-spacing: 0;
  }
}
.c-howto__item-text {
  margin-top: 10px;
  color: #808080;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
@media print, screen and (min-width:1000px) {
  .c-howto__item-text {
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
.c-howto__item-text span {
  color: var(--color-01-gold);
}
.c-howto__item-image {
  overflow: hidden;
  border-radius: 10px;
}
@media print, screen and (min-width:1000px) {
  .c-howto__item-image {
    border-radius: 15px;
  }
  .c-howto__item-image:nth-child(1) {
    order: 2;
  }
}

.c-qa {
  padding-top: 40px;
  padding-inline: 16px;
}
@media print, screen and (min-width:1000px) {
  .c-qa {
    padding-top: 88px;
    padding-inline: 20px;
  }
}
.c-qa .js-tab-content[hidden] {
  display: none !important;
}
.c-qa__inner {
  display: block;
  margin-inline: auto;
}
@media print, screen and (min-width:1000px) {
  .c-qa__inner {
    max-width: 1040px;
    margin-inline: auto;
  }
}
.c-qa__tabs {
  display: grid;
  margin-top: 32px;
  font-size: 12px;
  line-height: 1.8;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media print, screen and (min-width:1000px) {
  .c-qa__tabs {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
  }
}
.c-qa__button {
  padding: 12px 10px;
  background-color: var(--color-01-gray);
  border-radius: 8px;
}
.c-qa__button span {
  letter-spacing: -0.01em;
}
.c-qa__button.-active {
  background-color: var(--color-01-gold);
  color: var(--color-00-white);
}
.c-qa__contents {
  margin-top: 24px;
}
.c-qa-detail {
  position: relative;
  display: block;
  padding-top: 16px;
  padding-bottom: 16px;
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.c-qa-detail::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color-01-gold);
  content: "";
  transform: translateX(-50%);
}
.c-qa-detail:first-child {
  margin-top: 0;
}
.c-qa-detail__summary {
  position: relative;
  display: grid;
  padding-left: 2rem;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0;
  grid-template-columns: 1fr 36px;
  justify-content: space-between;
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail__summary {
    font-size: 16px;
  }
}
.c-qa-detail__summary::after {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  content: "Q.";
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail__summary::after {
    font-size: 16px;
  }
}
.c-qa-detail__summary::-webkit-details-marker {
  display: none;
}
.c-qa-detail__summary-icon {
  position: relative;
  display: block;
  width: 30px;
  height: 1.5rem;
  margin-top: 3px;
}
.c-qa-detail__summary-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 13px;
  height: 1px;
  background-color: var(--color-01-gold);
  content: "";
  transform: translate(-50%, -50%);
}
.c-qa-detail__summary-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1px;
  height: 13px;
  background-color: var(--color-01-gold);
  content: "";
  transition: transform 0.3s ease;
  transform: translate(-50%, -50%) rotate(0deg);
}
.c-qa-detail[open] > .c-qa-detail__summary .c-qa-detail__summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.c-qa-detail__content {
  position: relative;
  margin-top: 8px;
  padding-left: 1.3rem;
  font-size: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail__content {
    margin-top: 12px;
    font-size: 14px;
  }
}
.c-qa-detail__content::after {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  content: "A.";
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail__content::after {
    font-size: 14px;
  }
}
.c-qa-detail__content p {
  margin-right: 36px;
  padding-left: 1rem;
  font-size: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail__content p {
    font-size: 14px;
  }
}
.c-qa-detail__content ul {
  font-size: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail__content ul {
    font-size: 14px;
  }
}
.c-qa-detail__content ol {
  margin-top: 0.5em;
  margin-left: 2em;
  font-size: 12px;
  list-style-type: decimal;
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail__content ol {
    font-size: 14px;
  }
}
.c-qa-detail__content li {
  font-size: 12px;
}
@media print, screen and (min-width:1000px) {
  .c-qa-detail__content li {
    font-size: 14px;
  }
}
.c-qa-detail__content img {
  width: 100%;
  max-width: 340px;
  margin: 16px auto 0 0;
}

.c-footer {
  padding: 24px;
  padding-bottom: 120px;
  background-color: var(--color-00-white);
}
@media print, screen and (min-width:1000px) {
  .c-footer {
    padding: 24px 40px 120px;
  }
}
.c-footer img {
  display: block;
  width: 100%;
  height: auto;
}
.c-footer__inner {
  display: grid;
  margin: 0 auto;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-content: center;
}
@media print, screen and (min-width:1000px) {
  .c-footer__inner {
    max-width: 1040px;
    grid-template-columns: auto auto;
    grid-template-areas: "logo stop" "copyright copyright";
    justify-content: space-between;
    align-items: center;
  }
}
.c-footer__logo {
  width: 186px;
  height: auto;
  margin: 0 auto;
}
@media print, screen and (min-width:1000px) {
  .c-footer__logo {
    grid-area: logo;
  }
}
.c-footer__stop {
  width: 295px;
  height: auto;
  margin: 0 auto;
}
@media print, screen and (min-width:1000px) {
  .c-footer__stop {
    grid-area: stop;
  }
}
@media print, screen and (min-width:1000px) {
  .c-footer__copyright {
    grid-area: copyright;
  }
}
.c-footer__copyright small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}