@charset "utf-8";

/* ========================================
Design tokens (root variables) — mobile-first
======================================= */
:root {
  --design-width: 375;

  /* 基準単位 */
  --vw-unit: calc(100vw / var(--design-width));

  /* Font sizes */
  --fs-xxs: calc(10 * var(--vw-unit));
  --fs-xs: calc(12 * var(--vw-unit));
  --fs-sm: calc(14 * var(--vw-unit));
  --fs-md: calc(16 * var(--vw-unit));
  --fs-lg: calc(20 * var(--vw-unit));
  --fs-xl: calc(24 * var(--vw-unit));
  --fs-2xl: calc(32 * var(--vw-unit));
  --fs-3xl: calc(40 * var(--vw-unit));
  --fs-4xl: calc(48 * var(--vw-unit));
  --fs-5xl: calc(56 * var(--vw-unit));

  /* Gaps / Spaces */
  --gap-10: calc(10 * var(--vw-unit));
  --gap-20: calc(20 * var(--vw-unit));
  --gap-30: calc(30 * var(--vw-unit));
  --gap-40: calc(40 * var(--vw-unit));
  --space-10: calc(10 * var(--vw-unit));
  --space-20: calc(20 * var(--vw-unit));
  --space-30: calc(30 * var(--vw-unit));
  --space-40: calc(40 * var(--vw-unit));
  --space-80: calc(80 * var(--vw-unit));

  /* Border radius */
  --radius-10: calc(10 * var(--vw-unit));
  --radius-20: calc(20 * var(--vw-unit));
  --radius-30: calc(30 * var(--vw-unit));

  /* Line-heights and font-weights */
  --lh-tight: 1.4;
  --lh-normal: 1.8;
  --fw-regular: 400;
  --fw-bold: 700;
  --fw-extrabold: 800;

  /* Colors */
  --color-black: #333333;
  --color-gray: #5a5a5a;
  --color-white: #ffffff;
  --color-red: #e60000;
  --color-blue: #007698;

  /* Text align */
  --text-align-left: left;
  --text-align-center: center;
  --text-align-right: right;
}

/* PC以上は固定ピクセル */
@media screen and (min-width: 769px) {
  :root {
    --vw-unit: 1px;

    /* Font sizes */
    --fs-xxs: 10px;
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 20px;
    --fs-xl: 24px;
    --fs-2xl: 32px;
    --fs-3xl: 40px;
    --fs-4xl: 48px;
    --fs-5xl: 56px;

    /* Gaps / Spaces */
    --gap-10: 10px;
    --gap-20: 20px;
    --gap-30: 30px;
    --gap-40: 40px;
    --space-10: 10px;
    --space-20: 20px;
    --space-30: 30px;
    --space-40: 40px;

    /* Border radius */
    --radius-10: 10px;
    --radius-20: 20px;
    --radius-30: 30px;
  }
}

/* ========================================
Utilities (u- prefix)
======================================= */
/* Font sizes */
.u-fs-xxs {
  font-size: var(--fs-xxs);
}
.u-fs-xs {
  font-size: var(--fs-xs);
}
.u-fs-sm {
  font-size: var(--fs-sm);
}
.u-fs-md {
  font-size: var(--fs-md);
}
.u-fs-lg {
  font-size: var(--fs-lg);
}
.u-fs-xl {
  font-size: var(--fs-xl);
}
.u-fs-2xl {
  font-size: var(--fs-2xl);
}
.u-fs-3xl {
  font-size: var(--fs-3xl);
}
.u-fs-4xl {
  font-size: var(--fs-4xl);
  letter-spacing: -0.2rem;
}
.u-fs-5xl {
  font-size: var(--fs-5xl);
  letter-spacing: -0.2rem;
}

/* ===========================
   Line height utilities
=========================== */
.u-lh-tight {
  line-height: var(--lh-tight);
}
.u-lh-normal {
  line-height: var(--lh-normal);
}

/* ===========================
   Font weight utilities
=========================== */
.u-fw-regular {
  font-weight: var(--fw-regular);
}
.u-fw-bold {
  font-weight: var(--fw-bold);
}
.u-fw-extrabold {
  font-weight: var(--fw-extrabold);
}

/* ===========================
   Text align utilities
=========================== */
.u-text-left {
  text-align: var(--text-align-left);
}
.u-text-center {
  text-align: var(--text-align-center);
}
.u-text-right {
  text-align: var(--text-align-right);
}

/* ===========================
   White-space utilities
=========================== */
.u-text-nowrap {
  white-space: nowrap;
}

/* ===========================
   Text color utilities
=========================== */
.u-text-black {
  color: var(--color-black);
}
.u-text-gray {
  color: var(--color-gray);
}
.u-text-white {
  color: var(--color-white);
}
.u-text-red {
  color: var(--color-red);
}
.u-text-blue {
  color: var(--color-blue);
}

/* ===========================
   Background color utilities
=========================== */
.u-bg-white {
  background-color: var(--color-white);
}
.u-bg-red {
  background-color: var(--color-red);
}
.u-bg-black {
  background-color: var(--color-black);
}
.u-bg-gray {
  background-color: var(--color-gray);
}

/* ===========================
   List utilities
=========================== */
.u-list {
  list-style: none;
  font-size: var(--fs-xs);
}
.u-list li {
  position: relative;
  padding-left: 1em;
}
.u-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 1em;
  text-align: left;
  color: inherit;
}
.u-list--dotted li::before {
  content: "・";
}
.u-list--kome li::before {
  content: "※";
}
.u-list--ordered-kome li {
  padding-left: 2em;
}
.u-list--ordered-kome li::before {
  content: var(--kome-counter);
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 2em; /* 文字幅確保 */
  text-align: left;
}

/* ===========================
   Border radius utilities
=========================== */
.u-rad-10 {
  border-radius: var(--radius-10);
}
.u-rad-20 {
  border-radius: var(--radius-20);
}
.u-rad-30 {
  border-radius: var(--radius-30);
}

/* ===========================
   Flex utilities
=========================== */
.u-flex-row {
  display: flex;
  flex-direction: row;
}
.u-flex-col {
  display: flex;
  flex-direction: column;
}

/* ===========================
   Gap utilities
=========================== */
.u-gap-10 {
  gap: var(--gap-10);
}
.u-gap-20 {
  gap: var(--gap-20);
}
.u-gap-30 {
  gap: var(--gap-30);
}
.u-gap-40 {
  gap: var(--gap-40);
}

/* ===========================
   Padding utilities
=========================== */
/* all */
.u-pad-10 {
  padding: var(--space-10);
}
.u-pad-20 {
  padding: var(--space-20);
}

/* top */
.u-pad-t-10 {
  padding-top: var(--space-10);
}
.u-pad-t-20 {
  padding-top: var(--space-20);
}

/* bottom */
.u-pad-b-10 {
  padding-bottom: var(--space-10);
}
.u-pad-b-20 {
  padding-bottom: var(--space-20);
}

/* left */
.u-pad-l-10 {
  padding-left: var(--space-10);
}
.u-pad-l-20 {
  padding-left: var(--space-20);
}

/* right */
.u-pad-r-10 {
  padding-right: var(--space-10);
}
.u-pad-r-20 {
  padding-right: var(--space-20);
}

/* left + right */
.u-pad-x-10 {
  padding-left: var(--space-10);
  padding-right: var(--space-10);
}
.u-pad-x-20 {
  padding-left: var(--space-20);
  padding-right: var(--space-20);
}

/* top + bottom */
.u-pad-y-10 {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}
.u-pad-y-20 {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

/* ===========================
   Margin utilities
=========================== */
/* all */
.u-mar-10 {
  margin: var(--space-10);
}
.u-mar-20 {
  margin: var(--space-20);
}

/* top */
.u-mar-t-10 {
  margin-top: var(--space-10);
}
.u-mar-t-20 {
  margin-top: var(--space-20);
}

/* bottom */
.u-mar-b-10 {
  margin-bottom: var(--space-10);
}
.u-mar-b-20 {
  margin-bottom: var(--space-20);
}

/* left */
.u-mar-l-10 {
  margin-left: var(--space-10);
}
.u-mar-l-20 {
  margin-left: var(--space-20);
}

/* right */
.u-mar-r-10 {
  margin-right: var(--space-10);
}
.u-mar-r-20 {
  margin-right: var(--space-20);
}

/* left + right */
.u-mar-x-10 {
  margin-left: var(--space-10);
  margin-right: var(--space-10);
}
.u-mar-x-20 {
  margin-left: var(--space-20);
  margin-right: var(--space-20);
}

/* top + bottom */
.u-mar-y-10 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-10);
}
.u-mar-y-20 {
  margin-top: var(--space-20);
  margin-bottom: var(--space-20);
}

/* ===========================
   Offset (負のマージン) utilities
=========================== */
/* all */
.u-offset-10 {
  margin: calc(-1 * var(--space-10));
}
.u-offset-20 {
  margin: calc(-1 * var(--space-20));
}
.u-offset-30 {
  margin: calc(-1 * var(--space-30));
}
.u-offset-40 {
  margin: calc(-1 * var(--space-40));
}

/* top */
.u-offset-t-10 {
  margin-top: calc(-1 * var(--space-10));
}
.u-offset-t-20 {
  margin-top: calc(-1 * var(--space-20));
}

/* bottom */
.u-offset-b-10 {
  margin-bottom: calc(-1 * var(--space-10));
}
.u-offset-b-20 {
  margin-bottom: calc(-1 * var(--space-20));
}

/* left */
.u-offset-l-10 {
  margin-left: calc(-1 * var(--space-10));
}
.u-offset-l-20 {
  margin-left: calc(-1 * var(--space-20));
}

/* right */
.u-offset-r-10 {
  margin-right: calc(-1 * var(--space-10));
}
.u-offset-r-20 {
  margin-right: calc(-1 * var(--space-20));
}

/* left + right */
.u-offset-x-10 {
  margin-left: calc(-1 * var(--space-10));
  margin-right: calc(-1 * var(--space-10));
}
.u-offset-x-20 {
  margin-left: calc(-1 * var(--space-20));
  margin-right: calc(-1 * var(--space-20));
}

/* top + bottom */
.u-offset-y-10 {
  margin-top: calc(-1 * var(--space-10));
  margin-bottom: calc(-1 * var(--space-10));
}
.u-offset-y-20 {
  margin-top: calc(-1 * var(--space-20));
  margin-bottom: calc(-1 * var(--space-20));
}

/* ========================================
Base / Reset
======================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%; /* 10px = 1rem 基準 */
}

body {
  font-size: var(--fs-md);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--color-black);
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

a {
  color: var(--color-blue);
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  body {
    /* background-image: url("../img/bg-sky.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover; */
    background-image: url(../img/bg-sky.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% auto;
    background-color: #65e3ff;
  }
  a {
    transition: transform 0.3s ease;
  }
  a:hover,
  a:focus {
    transform: scale(1.04);
  }
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
}

/* ========================================
Layout: Page / Sidebars / Main
======================================= */

/* ▼ SP：サイドバーは非表示 */
@media (max-width: 768px) {
  #PageContainer .page__sidebar--left,
  #PageContainer .page__sidebar--right {
    display: none;
  }
}

/* ▼ PC表示（幅769px以上） */
@media (min-width: 769px) {
  /* #PageContainer 本体 */
  #PageContainer {
    display: flex;
    width: 100%;
    height: 100vh;
    margin: 50px auto 0; /* header オフセット */
  }

  /* ------------------------------
     サイドバー共通（左右）
  ------------------------------ */
  #PageContainer .page__sidebar {
    position: fixed;
    top: 0;
    height: calc(100vh - 50px);
    margin-top: 50px; /* header 高さ分下にずらす */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: visible;
  }

  /* 左サイドバー */
  #PageContainer .page__sidebar--left {
    left: 0;
    width: calc((100vw - 375px) * 0.7);
  }

  /* 右サイドバー */
  #PageContainer .page__sidebar--right {
    right: 0;
    width: calc((100vw - 375px) * 0.3);
  }

  /* ------------------------------
   sidebar__scaler：上揃え＋左右寄せ
------------------------------ */
  #PageContainer .page__sidebar .sidebar__scaler {
    flex: 1;
    display: flex;
    align-items: flex-start; /* ← 垂直方向：上揃え */
    justify-content: center; /* ← 初期値（上書き可能にしておく） */
    height: 100%;
    box-sizing: border-box;
  }

  /* 左サイドバー → 要素を右寄せ */
  /* #PageContainer .page__sidebar--left .sidebar__scaler {
    justify-content: flex-end;
  } */

  /* 右サイドバー → 要素を左寄せ */
  /* #PageContainer .page__sidebar--right .sidebar__scaler {
    justify-content: flex-start;
  } */

  /* ------------------------------
   page__sidebar--inner：縮小対象
------------------------------ */
  #PageContainer .page__sidebar .page__sidebar--inner {
    display: flex;
    flex-direction: column;
    padding: 60px 0 0;
    transform-origin: top; /* 上を基準にスケール */
    transition: transform 0.3s ease;
    opacity: 0;
  }
  #PageContainer .page__sidebar .page__sidebar--inner.is-resized {
    opacity: 1;
    transition: opacity 0.3s ease;
  }

  /* 左：右寄せ */
  /* #PageContainer .page__sidebar--left .page__sidebar--inner {
    transform-origin: top right;
    align-items: flex-end;
  } */

  /* 右：左寄せ */
  /* #PageContainer .page__sidebar--right .page__sidebar--inner {
    transform-origin: top left;
    align-items: flex-start;
  } */

  /* 左：アンカー */
  #PageContainer .page__sidebar--left .page__sidebar__menu {
    width: 90%;
    max-width: 381px;
    margin: 0 auto;
    border-radius: 20px;
    border: 3px solid #222;
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }
  #PageContainer .page__sidebar--left .page__sidebar__menu a:not(:first-child) {
    border-top: 2px dotted #222;
  }

  /* 右：CTA */
  #PageContainer .page__sidebar--right .page__sidebar__account {
    width: 90%;
    min-width: 110px;
    max-width: 226px;
    height: auto;
    min-height: 220px;
    margin: 0 auto;
    border-radius: 20px;
    border: 3px solid #222;
    box-sizing: border-box;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 6% 90px;
    position: relative;
  }
  #PageContainer .page__sidebar--right .sidebar_cta_title {
    width: 90%;
    max-width: 140px;
    margin: 0 auto;
  }
  #PageContainer .page__sidebar--right .sidebar_cta_woman {
    width: 90%;
    max-width: 90px;
    margin: 0 auto;
    height: auto;
    position: absolute;
    left: calc(50% - 45px);
    bottom: -36px;
  }
}

/* Main */
.main-content {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  background-color: #fff;
  overflow-x: hidden;
  margin: 50px auto 0;
}
@media (min-width: 769px) {
  .main-content {
    /* width: 391px; */
    width: 375px;
    margin-top: 0;
    margin-right: calc((100vw - 391px) * 0.3);
    overflow-x: unset;
  }
  /* .main-content--inner {
    padding: 0 8px;
    background-color: #fff;
  } */
}

/* ========================================
Footer
======================================= */
.footer__note {
  background-color: #444;
  font-size: var(--fs-xs);
  color: var(--color-white);
  text-align: var(--text-align-left);
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
  padding: var(--space-20);
}
.footer__note a {
  color: var(--color-white);
}
.footer__copy {
  background-color: #5a5a5a;
  font-size: var(--fs-xxs);
  color: var(--color-white);
  text-align: var(--text-align-center);
  padding: var(--space-10);
  margin-bottom: calc(90 * var(--vw-unit));
}
@media (min-width: 769px) {
  .footer__copy {
    margin-bottom: 0;
  }
}

/* ========================================
Accordion
======================================= */
.accordion__content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.4s ease;
  margin-top: calc(-1 * var(--space-20));
  padding-left: var(--space-20);
  padding-right: var(--space-20);
}
.accordion.is-open .accordion__content {
  opacity: 1;
  margin-top: 0;
  padding: 0;
}
.accordion__toggle {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background-color: var(--color-white);
  text-align: center;
  position: relative;
  scroll-margin-top: 50px; /* 固定ヘッダー高に合わせる */
}
@media (min-width: 769px) {
  .accordion__toggle {
    width: 275px;
    transition: transform 0.3s ease;
  }
  .accordion__toggle:hover {
    cursor: pointer;
    transform: scale(1.04);
  }
}

.accordion .accordion__icon--close {
  display: none;
}
.accordion.is-open .accordion__icon--open {
  display: none;
}
.accordion.is-open .accordion__icon--close {
  display: inline;
}

/* ========================================
Modal (campaign modal)
======================================= */
@media (min-width: 769px) {
  .js-modal-open {
    transition: transform 0.3s ease;
  }
  .js-modal-open:hover {
    cursor: pointer;
    transform: scale(1.04);
  }
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  padding: var(--space-20) 0;
}

/* JS が overlay に付与するクラス */
.modal__overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ダイアログ（overlay の子） */
.modal {
  background: #ffffff;
  padding: var(--space-10);
  border-radius: var(--radius-10);
  width: 90%;
  max-width: 900px;
  max-height: 100%;
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* overlay がアクティブなときにダイアログを移動させる */
.modal__overlay.is-active .modal {
  transform: translateY(0);
}

/* コンテンツ領域 */
.modal__content {
  overflow-y: auto;
  overflow-x: hidden;
  flex: 1 1 auto;
  padding: var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--gap-20);
}

/* Table styles inside modal */
.modal__content table,
.modal__content table th,
.modal__content table td {
  border-collapse: collapse;
  border: 1px solid #ccc;
  line-height: var(--lh-normal);
}
.modal__content table {
  width: 100%;
  margin: 0 auto;
}
.modal__content table thead th {
  padding: var(--space-10);
  font-weight: var(--fw-bold);
  background: #5a5a5a;
  color: var(--color-white);
}
.modal__content table tbody th {
  padding: var(--space-10);
  font-weight: var(--fw-bold);
  background: #dddddd;
  color: var(--color-black);
}
.modal__content table tr:nth-child(even) {
  background: #f2f2f2;
}
.modal__content table td {
  padding: 10px;
}
@media (max-width: 768px) {
  .modal__content table,
  .modal__content table thead,
  .modal__content table tbody,
  .modal__content table tr,
  .modal__content table th,
  .modal__content table td {
    display: block;
  }
}

@media (min-width: 769px) {
  .modal__content {
    padding: 0 var(--space-20) var(--space-20);
  }
  .modal__content a.pc-only img {
    width: 400px;
  }
}

/* close ボタン周り */
.modal__close {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.modal__close-button,
.modal__close .js-modal-close {
  width: calc(40 * var(--vw-unit));
  height: calc(40 * var(--vw-unit));
  border: 0;
  background-color: #fff;
}
.modal__close-button img,
.modal__close .js-modal-close img {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .modal__close-button,
  .modal__close .js-modal-close {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
  }
  .modal__close-button:hover,
  .modal__close .js-modal-close:hover {
    cursor: pointer;
    transform: scale(1.04);
  }
}

/* ========================================
Animations / UI
======================================= */
/* --- アニメーション初期状態 --- */
.anim--fade-in-up,
.anim--bounce-in {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.anim--fade-in-up {
  transform: translateY(20px);
}
.anim--bounce-in {
  transform: scale(0.3);
}
/* --- fade-in-up アニメーション本体 --- */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- bounce-in アニメーション本体 --- */
@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* --- アニメーションを起動する状態（is-visibleが付いたとき） --- */
.anim--fade-in-up.is-visible {
  animation: fadeInUp 0.6s ease-out forwards;
}

.anim--bounce-in.is-visible {
  animation: bounceIn 0.6s ease-out forwards;
}

/* ========================================
backToTop / UI
======================================= */
.ui-back-to-top {
  position: fixed;
  display: flex;
  bottom: calc(110 * var(--vw-unit));
  right: calc(20 * var(--vw-unit));
  width: calc(50 * var(--vw-unit));
  height: calc(50 * var(--vw-unit));
  border-radius: var(--radius-10);
  background-color: rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 1000;
  margin: 0;
  padding: 0;
}
.ui-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 769px) {
  .ui-back-to-top {
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
  }
}

/* ========================================
scrollBanner / UI
======================================= */
@media (max-width: 768px) {
  #scrollBanner {
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  #scrollBanner.is-visible {
    opacity: 1;
  }

  .ui-scroll-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(90 * var(--vw-unit));
    background: rgba(255, 255, 255, 0.75);
    text-align: center;
    padding: calc(10 * var(--vw-unit)) 0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s ease;
    z-index: 999;
  }
  .ui-scroll-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .ui-scroll-banner img {
    width: calc(335 * var(--vw-unit));
    height: calc(70 * var(--vw-unit));
  }
}
@media (min-width: 769px) {
  .ui-scroll-banner {
    display: none;
  }
}

/* ========================================
layout
======================================= */
.bar {
  border: none;
  border-top: 10px solid var(--color-red);
  margin: var(--space-20) 0;
}
.section {
  padding-bottom: var(--space-40);
  background-color: #fff;
}
.visual {
  background-color: var(--color-red);
}
.anchor {
  background-color: var(--color-red);
}
.anchor .anchor-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-10);
  padding: var(--space-20) 0;
  align-items: center;
  justify-content: center;
}
.anchor .anchor-wrap a {
  width: calc(110 * var(--vw-unit));
}
@media screen and (min-width: 769px) {
  .anchor .anchor-wrap a {
    width: 110px;
  }
}
.campaign {
  background-color: var(--color-red);
}
.merit .merit-block {
  display: flex;
  flex-direction: column;
  padding: var(--space-20);
  gap: var(--gap-40);
}

.merit .merit-block h3 {
  margin-left: calc(-1 * var(--space-20));
  margin-right: calc(-1 * var(--space-20));
}

.movie-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.heading_movie {
  padding-left: calc(32 * var(--vw-unit));
  position: relative;
}
.heading_movie::before {
  position: absolute;
  content: "";
  background-image: url(../img/movie-icon.png);
  background-size: contain;
  top: 0;
  left: 0;
  width: calc(24 * var(--vw-unit));
  height: calc(24 * var(--vw-unit));
}
@media screen and (min-width: 769px) {
  .heading_movie {
    padding-left: 32px;
  }
  .heading_movie::before {
    width: 24px;
    height: 24px;
  }
}

.video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
