@charset "UTF-8";
body {
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}

.container {
  max-width: 92%;
}

/* ======================================================
// Figmaヘッダー: ハンバーガーメニュー展開
// ====================================================== */
/* グローバルナビ: 黄色フルスクリーンオーバーレイ */
.header--figma .header__globalnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1002;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease-out, opacity 0.3s ease-out, background-color 0.3s ease-out;
  overflow-y: auto;
  padding: 0 1.5625em;
  margin-top: 0px;
  margin-bottom: 0px;
}
@media screen and (max-width: 768px) {
  .header--figma .header__globalnav {
    padding: 0 4vw;
  }
}

.header--figma .header__globalnav.is-open {
  visibility: visible;
  opacity: 1;
  background-color: rgba(254, 254, 25, 0.9);
}

.header--figma.is-scrolled {
  background-color: rgba(254, 254, 25, 0.9);
}

/* ピルボタンコンテナ */
.header__globalnav-pills {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6875em;
}

/* ピルボタン行 */
.header__globalnav-pills-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6875em;
  flex-direction: column;
  align-items: center;
}

/* ピルボタン */
.header__globalnav-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6666666667em;
  padding: 0 1.3333333333em;
  height: 3.0666666667em;
  background: var(--header-figma-accent);
  border-radius: 6.6666666667em;
  font-family: var(--font-family-jp);
  font-size: 0.9375em;
  font-weight: var(--font-weight-black);
  line-height: 2em;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.header__globalnav-pill sup {
  margin-left: -0.75em;
  margin-top: -1em;
}

@media (hover: hover) {
  .header__globalnav-pill:hover {
    color: var(--color-white);
    transform: scale(1.05);
  }
}
.header__globalnav-pill:active {
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .header__topnav {
    height: 60px;
  }
}
/* ピルボタン内の矢印アイコン（青丸＋白三角） */
.header__globalnav-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4666666667em;
  height: 1.4666666667em;
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: 50%;
}

.header__globalnav-pill-icon::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-top: 1px;
  border: 5px solid transparent;
  border-top-color: var(--header-figma-accent);
  border-bottom-width: 0;
  box-sizing: border-box;
}

/* Figmaヘッダー: MENUボタンの疑似要素を無効化 */
.header--figma .header__menu-btn.header__hamburger::before,
.header--figma .header__menu-btn.header__hamburger::after {
  content: none;
  display: none;
}

/* CLOSEボタン: メニュー展開時のスタイル（位置は変更しない） */
.header--figma .header__menu-btn.is-open {
  background: var(--header-figma-accent);
  color: var(--color-white);
  position: relative;
  z-index: 1003;
  white-space: nowrap;
}

/* SP版: ピルボタンを縦並びに */
@media (max-width: 767px) {
  .header--figma {
    height: 60px;
  }
  .header__globalnav-pills-row {
    flex-direction: column;
    align-items: center;
  }
  .header__globalnav-pill {
    font-size: 3.4666666667vw;
    height: 11.2vw;
    padding: 0 4.2666666667vw;
  }
  .header__globalnav-pill sup {
    margin-left: -0.75em;
    margin-top: -1em;
  }
  /* SP版: MENUボタン復活（common.cssで.header__ctasがdisplay:noneになるため） */
  .header--figma .header__ctas {
    display: flex;
  }
  .header--figma .header__cta-link {
    display: none;
  }
  .header--figma .header__inner {
    padding-inline: 4.8vw;
  }
}
/* ======================================================
// キャラクター装飾（右側・下から上にスクロール）
// ====================================================== */
.chara01 {
  position: fixed;
  left: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  /* overflow: hidden; */
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara01-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara01 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara01 {
    width: 4vw;
  }
}

.chara01 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara01 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara01 img {
    width: 4vw;
  }
}

.chara02 {
  position: fixed;
  right: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  /* overflow: hidden; */
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara02-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara02 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara02 {
    width: 4vw;
  }
}

.chara02 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara02 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara02 img {
    width: 4vw;
  }
}

@keyframes chara01-scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20%);
  }
}
@keyframes chara02-scroll {
  0% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
/* chara03: 左側（movieセクション用） */
.chara03 {
  position: fixed;
  left: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara01-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara03 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara03 {
    width: 4vw;
  }
}

.chara03 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara03 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara03 img {
    width: 4vw;
  }
}

/* chara04: 右側（movieセクション用） */
.chara04 {
  position: fixed;
  right: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara02-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara04 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara04 {
    width: 4vw;
  }
}

.chara04 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara04 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara04 img {
    width: 4vw;
  }
}

/* chara05: 左側（aboutセクション用・アニメ方向逆） */
.chara05 {
  position: fixed;
  left: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara02-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara05 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara05 {
    width: 4vw;
  }
}

.chara05 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .chara05 img {
    width: 4vw;
  }
}

/* chara06: 右側（aboutセクション用・アニメ方向逆） */
.chara06 {
  position: fixed;
  right: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara01-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara06 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara06 {
    width: 4vw;
  }
}

.chara06 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara06 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara06 img {
    width: 4vw;
  }
}

/* chara07: 左側（makingセクション用・アニメ方向逆） */
.chara07 {
  position: fixed;
  left: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara02-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara07 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara07 {
    width: 4vw;
  }
}

.chara07 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara07 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara07 img {
    width: 4vw;
  }
}

/* chara08: 右側（makingセクション用・アニメ方向逆） */
.chara08 {
  position: fixed;
  right: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara01-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara08 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara08 {
    width: 4vw;
  }
}

.chara08 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara08 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara08 img {
    width: 4vw;
  }
}

/* chara09: 左側（messageセクション用・アニメ方向逆） */
.chara09 {
  position: fixed;
  left: -0.25em;
  top: 0;
  width: 1.875em;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara02-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1250px) {
  .chara09 {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara09 {
    width: 4vw;
  }
}

.chara09 img {
  display: block;
  width: 1.875em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara09 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara09 img {
    width: 4vw;
  }
}

/* chara10: 右側（messageセクション用・アニメ方向逆） */
.chara10 {
  position: fixed;
  right: -0.25em;
  top: 0;
  width: 1.75em;
  height: 100vh;
  z-index: 1001;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  animation: chara01-scroll 10s linear infinite;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .chara10 {
    width: 4vw;
  }
}

.chara10 img {
  display: block;
  width: 1.75em;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 1250px) {
  .chara10 img {
    width: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .chara10 img {
    width: 4vw;
  }
}

/* メニュー展開時にchara系を非表示 */
.chara-hidden .chara01,
.chara-hidden .chara02,
.chara-hidden .chara03,
.chara-hidden .chara04,
.chara-hidden .chara05,
.chara-hidden .chara06,
.chara-hidden .chara07,
.chara-hidden .chara08,
.chara-hidden .chara09,
.chara-hidden .chara10 {
  visibility: hidden !important;
  opacity: 0 !important;
}

/* ======================================================
// MV
// ====================================================== */
/* 外側: 赤。中央: 背景動画が見える */
.mv-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: calc(100svh - 5.4375em); /* figmaヘッダー分を引いたビューポート高さ */
  background: transparent;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .mv-wrap {
    height: calc(100svh - 10vw);
  }
}
/* 黄色は「枠」だけ（box-shadowで外側を塗りつぶし）。中央は透明なので背面の動画が見える */
.mv {
  position: absolute;
  inset: 4%;
  background-color: transparent;
  border-radius: 4%;
  box-shadow: 0 0 0 100vmax #ffff00;
  border: 1px solid #002DAC;
}

.mv__inner {
  position: relative;
}

@media (max-width: 767px) {
  .mv__inner {
    height: 100%;
  }
}
/* ========================================
   introセクション（PCファースト）
   ======================================== */
.intro {
  position: relative;
  padding: 1.875em 0 16.25em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .intro {
    padding: 1.875em 0 9.25em;
  }
}

/* 背景のみを台形にクリップ（コンテンツ・アイコンはクリップしない） */
.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffff00;
  /* 左下が尖った台形: 上辺は全幅、下辺は左側が内側に入る */
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .intro::before {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
  }
}

.intro__inner {
  position: relative;
}

.intro__icon {
  position: absolute;
}

.intro__icon.--icon01 {
  left: -1em;
  top: 0;
  width: 5.375em;
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon01 {
    left: 0;
    width: 11.9444vw;
  }
}

.intro__icon.--icon02 {
  left: -4%;
  top: 30%;
  width: 8.4375em;
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon02 {
    top: 25%;
  }
}

.intro__icon.--icon03 {
  left: -3%;
  top: 90%;
  width: 3.25em;
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon03 {
    top: 64%;
    left: 6vw;
    width: 3em;
  }
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon03.--icon03-2 {
    top: 90%;
    width: 12vw;
    left: 1vw;
  }
}

.intro__icon.--icon04 {
  left: -3%;
  top: 128%;
  width: 9.25em;
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon04 {
    top: 104%;
    left: 1%;
  }
}

.intro__icon.--icon05 {
  right: -1em;
  top: 0%;
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon05 {
    top: 0%;
    width: 11.9444vw;
  }
}

.intro__icon.--icon06 {
  right: -12%;
  top: 23%;
  width: 14em;
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon06 {
    right: -2%;
    top: 23%;
    width: 27vw;
  }
}

.intro__icon.--icon07 {
  right: -4%;
  top: 75%;
  width: 4.6875em;
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon07 {
    top: 70%;
    right: 0;
  }
}

.intro__icon.--icon08 {
  right: -3%;
  top: 113%;
  width: 8em;
}
@media screen and (max-width: 768px) {
  .intro__icon.--icon08 {
    top: 100%;
  }
}

.intro__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6875em;
  margin-bottom: 3.75em;
}

.intro__nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6875em;
}

.intro__title-wrap {
  position: relative;
}

.intro__title {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-black);
  font-size: 2.5em;
  color: #002dac;
  margin: 0 0 0.25em;
  line-height: 1.4;
  z-index: 1;
}

.intro__deco {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.375em;
  display: block;
  max-width: 34.4375em;
  height: auto;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .intro__deco {
    bottom: 10vw;
    width: 37%;
    left: 48%;
  }
}
@media screen and (max-width: 768px) {
  .intro__deco.--deco-sp-02 {
    left: 47%;
    width: 65%;
    bottom: -2vw;
  }
}

.intro__deco--wide {
  max-width: 90%;
}

.intro__text {
  font-family: var(--font-family-jp);
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.9444444444em;
  color: #002dac;
  margin-bottom: 1.6666666667em;
  margin-top: 2.5555555556em;
}

.intro__text--large {
  font-size: 1.5625em;
  font-weight: var(--font-weight-black);
  position: relative;
  z-index: 1;
}

.intro__text--large::before {
  content: "";
  position: absolute;
  left: 0;
  transform: translateY(100%);
  bottom: 0.4em;
  width: 0;
  height: 0.6em;
  background-color: #fff;
  z-index: -1;
  transition: width 0.8s ease;
}

.intro__text--large.is-line-visible::before {
  width: 100%;
}

.intro__text--large.--secondary {
  white-space: nowrap;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 0;
}
.intro__text--large.--secondary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1.7em;
  width: 0;
  height: 0.6em;
  background-color: #fff;
  z-index: -1;
  transition: width 0.8s ease;
  transform: translateY(100%);
}
.intro__text--large.--secondary.is-line-visible::after {
  width: 18em;
}

@media (max-width: 768px) {
  .intro__title {
    font-size: 8vw;
  }
  .intro__nav-row {
    flex-direction: column;
    align-items: center;
  }
  .intro__text {
    font-size: 4.2666666667vw;
  }
  .intro__text--large {
    font-size: 5.3333333333vw;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .intro__text--large::before {
    width: 0;
    left: 0%;
  }
  .intro__text--large.is-line-visible::before {
    width: 100%;
  }
  .intro__text--large::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 8vw;
    width: 0;
    height: 0.6em;
    background-color: #fff;
    z-index: -1;
    transition: width 0.8s ease 0.3s;
  }
  .intro__text--large.is-line-visible::after {
    width: 86%;
  }
  .intro__text--large.--secondary {
    margin-top: 3vw;
    white-space: nowrap;
  }
  .intro__text--large.--secondary span {
    display: block;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  .intro__text--large.--secondary span::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0vw;
    width: 0;
    height: 0.6em;
    background-color: #fff;
    z-index: -1;
    transition: width 0.8s ease;
  }
  .intro__text--large.--secondary.is-line-visible span::before {
    width: 100%;
  }
  .intro__text--large.--secondary::before {
    width: 0;
    left: 0;
  }
  .intro__text--large.--secondary.is-line-visible::before {
    width: 88vw;
  }
  .intro__text--large.--secondary::after {
    width: 0;
    bottom: 8vw;
  }
  .intro__text--large.--secondary.is-line-visible::after {
    width: 63%;
    left: 18%;
    bottom: 12vw;
  }
}
.intro-under {
  padding-bottom: 5em;
  text-align: center;
  margin-top: -1.25em;
}
.intro-under img {
  width: 55.625em;
}
@media screen and (max-width: 768px) {
  .intro-under img {
    width: 80vw;
  }
}

/* ========================================
   movieセクション（PCファースト）
   ======================================== */
.movie {
  background-color: rgba(255, 101, 164, 0.9);
  padding: 1.875em 0 16.25em;
  text-align: center;
  /* 左下が尖った台形: 上辺は全幅、下辺は左側が内側に入る */
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  position: relative;
}

.movie__content-item-img {
  position: absolute;
  bottom: 4%;
  left: 20%;
  transform: translateX(-50%);
  width: 9.5625em;
  height: auto;
}

.movie__title {
  margin-top: 4.375em;
  text-align: center;
  margin-inline: auto;
  max-width: 55.625em;
}

.movie__title img {
  width: 100%;
  height: auto;
}

.movie__content {
  max-width: 59.375em;
  margin-inline: auto;
  margin-top: 4.375em;
  width: 92%;
}

.movie__content-item {
  position: relative;
}

.movie__content-item-tv {
  position: relative;
  display: inline-block;
}

.movie__content-item-tv-frame {
  width: 100%;
  height: auto;
  display: block;
}

/* サムネイル＋再生ボタンのリンク領域（テレビ画面内に配置） */
.movie__content-item-link {
  position: absolute;
  top: 13%;
  left: 4%;
  width: 92%;
  height: 66%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 1em;
}

.movie__content-item-thumb {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  position: absolute;
  top: 0;
  left: 0;
}

.movie__content-item-icon {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .movie__content-item-icon {
    width: 20vw;
    height: 20vw;
  }
}

/* YouTube再生中：サムネイルとアイコンを非表示にし、iframeを全面表示 */
.movie__content-item-link.is-playing .movie__content-item-thumb,
.movie__content-item-link.is-playing .movie__content-item-icon {
  display: none;
}
.movie__content-item-link.is-playing iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.movie__content-item-title {
  color: #002DAC;
  text-align: center;
  font-family: var(--font-family-jp);
  font-size: 1.7633125em;
  font-weight: 700;
  position: absolute;
  bottom: 9.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  line-height: 1.2;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .movie__content-item-title {
    font-size: 3.2vw;
  }
}

/* 小型TV横並びコンテナ */
/* 小型TVスライダー */
.movie__slider {
  margin-top: 1.25em;
}

.movie__slider .splide__pagination {
  bottom: -2em;
  gap: 0.625em;
}

.movie__slider .splide__pagination__page {
  width: 1.0625em;
  height: 1.0625em;
  background: #fff;
  opacity: 1;
}

.movie__slider .splide__pagination__page.is-active {
  background: rgb(229, 22, 106);
  opacity: 1;
  transform: scale(1);
}

/* スライダー矢印 */
.movie__slider .splide__arrow {
  background: #fff;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  opacity: 1;
}

.movie__slider .splide__arrow svg {
  width: 1em;
  height: 1em;
  fill: rgba(229, 22, 106, 0.9);
}

.movie__slider .splide__arrow:hover {
  opacity: 0.8;
}

.movie__slider .splide__arrow--prev {
  left: -1.25em;
}

.movie__slider .splide__arrow--next {
  right: -1.25em;
}

@media screen and (max-width: 768px) {
  .movie__slider .splide__arrow {
    width: 8.5333333333vw;
    height: 8.5333333333vw;
  }
  .movie__slider .splide__arrow svg {
    width: 3.2vw;
    height: 3.2vw;
  }
  .movie__slider .splide__arrow--prev {
    left: 10vw;
    top: auto;
    bottom: 33.6667vw;
    transform: translateX(calc(-50% - 6.6666666667vw));
  }
  .movie__slider .splide__arrow--next {
    right: 10vw;
    top: auto;
    bottom: 33.6667vw;
    transform: translateX(calc(50% + 6.6666666667vw));
  }
}
/* 小型TVアイテム */
.movie__content-item--half {
  max-width: none;
}

/* 小型TVのタイトル */
.movie__content-item--half .movie__content-item-title {
  font-size: 0.9375em;
  line-height: 1.15;
  bottom: 12.25%;
}

.movie_under {
  height: 8.75em;
}

/* ========================================
aboutセクション（PCファースト）
======================================== */
.about {
  padding: 16.875em 0 11.25em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about {
    padding-top: 40vw;
  }
}

/* 背景のみを台形にクリップ（コンテンツはクリップしない） */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #37C1B4;
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  z-index: -1;
}

.about__treat {
  position: absolute;
  top: -5%;
  left: 70%;
  display: block;
  width: 14.6875em;
}

/* aboutセクション: タイトル */
.about__title {
  text-align: center;
  margin-bottom: 2.5em;
}

.about__title img {
  width: 100%;
  max-width: 53.3125em;
  height: auto;
}
@media screen and (max-width: 768px) {
  .about__title img {
    max-width: 69.4444vw;
  }
}

.about__logo {
  position: absolute;
  top: -24%;
  left: -12%;
  width: 16.875em;
  height: 16.875em;
  display: block;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about__logo {
    left: 50%;
    transform: translateX(-50%);
    width: 35vw;
    height: 35vw;
    top: -41%;
  }
}

/* aboutセクション: 説明テキスト */
.about__text {
  font-family: var(--font-family-jp);
  font-weight: 700;
  font-size: 1.125em;
  line-height: 1.9444444444em;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

/* aboutセクション: グループ写真 */
.about__photo {
  position: relative;
  max-width: 54.4375em;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about__photo {
    max-width: 100%;
    margin-top: 25vw;
  }
}

.about__photo-icon {
  position: absolute;
  bottom: -10%;
  display: block;
}

.about__photo-icon.--left {
  left: -10%;
  width: 6em;
}
@media screen and (max-width: 768px) {
  .about__photo-icon.--left {
    width: 17vw;
    left: 0%;
    bottom: 62%;
  }
}

.about__photo-icon.--right {
  right: -10%;
  width: 9.5625em;
}
@media screen and (max-width: 768px) {
  .about__photo-icon.--right {
    width: 20vw;
    right: -3%;
    bottom: 90%;
  }
}

.about__photo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* aboutセクション: 名前バッジ */
.about__badges {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  .about__badges {
    padding-inline: 0;
    bottom: 5%;
  }
}

.about__badge {
  position: relative;
  width: 7.3125em;
  text-align: center;
}

.about__badge.--secondary {
  margin-left: -3.125em;
  margin-right: 6.25em;
}
@media screen and (max-width: 768px) {
  .about__badge.--secondary {
    margin-left: 0em;
    margin-right: 4.25em;
  }
}

.about__badge-icon {
  width: 100%;
  height: auto;
  display: block;
}

.about__badge-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-black);
  font-size: 1.25em;
  line-height: 1.25em;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .about__badge-name {
    font-size: 3vw !important;
  }
}

.about__badge-name--blue {
  color: #002dac;
}

/* aboutセクション: YouTubeボタン */
.about__youtube-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  max-width: 43.3125em;
  height: 4.875em;
  margin: 2.5em auto 0;
  background: #fff;
  border: 2px solid #002dac;
  border-radius: 3.375em;
  box-shadow: 0.1875em 0.1875em 0 0 #002dac;
  text-decoration: none;
  padding: 0 1.25em;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .about__youtube-btn:hover {
    box-shadow: none;
    transform: translate(0.1875em, 0.1875em) !important;
  }
}
.about__special-movie {
  text-align: center;
  margin-top: 2em;
}
.about__special-movie a {
  font-size: 1.25em;
  padding-block: 1.5em;
  padding-inline: 2em;
  border-radius: 3em;
  box-shadow: 3px 3px 0 0 var(--header-figma-accent);
}

.about__youtube-btn-icon {
  width: 5.4375em;
  height: auto;
  flex-shrink: 0;
}

.about__youtube-btn-text {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-black);
  font-size: 1.3125em;
  line-height: 1.5714285714em;
  color: #002dac;
  text-align: center;
  white-space: nowrap;
}

.about__youtube-btn-arrow {
  width: 2.1875em;
  height: 2.1875em;
  flex-shrink: 0;
}

/* aboutセクション: SNSアイコン */
.about__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25em;
  margin-top: 1.875em;
}

.about__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.125em;
  height: 5.125em;
  background: #fff;
  border: 2px solid #002dac;
  border-radius: 50%;
  box-shadow: 2.929px 2.929px 0 #002388;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .about__sns-link:hover {
    box-shadow: none;
    transform: translate(0.1875em, 0.1875em) !important;
  }
}
.about__sns-link img {
  display: block;
}

/* TikTokは丸アイコン自体が大きいため、サイズ調整 */
.about__sns-link--tiktok {
  box-shadow: 2.929px 2.929px 0 #002388;
}

.about__sns-link--tiktok img {
  width: 4.125em;
  height: 4.125em;
  border-radius: 50%;
}

/* aboutセクション: SP対応 */
@media (max-width: 768px) {
  .about__text {
    font-size: 3.2vw;
    line-height: 7.4666666667vw;
  }
  .about__badge {
    width: 21.3333333333vw;
  }
  .about__badge-name {
    font-size: 3.7333333333vw;
    line-height: 4.8vw;
  }
  .about__youtube-btn {
    height: 16vw;
    padding: 0 3.2vw;
  }
  .about__youtube-btn-icon {
    width: 16vw;
  }
  .about__youtube-btn-text {
    font-size: 3.7333333333vw;
  }
  .about__youtube-btn-arrow {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
  .about__sns-link {
    width: 17.3333333333vw;
    height: 17.3333333333vw;
  }
  .about__sns-link img {
    width: 7.4666666667vw;
    height: 7.4666666667vw;
  }
  .about__sns-link--tiktok img {
    width: 16.2666666667vw;
    height: 16.2666666667vw;
  }
}
.about_under {
  height: 8.75em;
}

/* ========================================
makingセクション（PCファースト）
======================================== */
.making {
  padding: 16.875em 0 20em;
  position: relative;
}

/* 背景のみを台形にクリップ（コンテンツはクリップしない） */
.making::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(75, 149, 224, 0.9);
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  z-index: -1;
}

.making .container {
  position: relative;
}

.making__icon {
  position: absolute;
}

.making__icon.--icon01 {
  top: -20%;
  left: 0;
  width: 12em;
}
@media screen and (max-width: 768px) {
  .making__icon.--icon01 {
    width: 25.6vw;
  }
}

.making__icon.--icon02 {
  top: -20%;
  right: 0;
  width: 18.0625em;
}
@media screen and (max-width: 768px) {
  .making__icon.--icon02 {
    top: -30%;
    right: 0;
    width: 35.2vw;
  }
}

.making__icon.--icon04 {
  bottom: -26%;
  left: 0;
  width: 13.5em;
}
@media screen and (max-width: 768px) {
  .making__icon.--icon04 {
    bottom: -34%;
    width: 8.5em;
  }
}

.making__icon.--icon05 {
  bottom: -25%;
  right: 0;
  width: 21.0625em;
}
@media screen and (max-width: 768px) {
  .making__icon.--icon05 {
    bottom: -25%;
    width: 10.0625em;
  }
}

.making__title {
  text-align: center;
  margin-inline: auto;
  max-width: 23em;
}
@media screen and (max-width: 768px) {
  .making__title {
    max-width: 80%;
  }
}

.making__title img {
  width: 100%;
  height: auto;
}

.making__desc {
  color: #fff;
  text-align: center;
  font-family: var(--font-family-jp);
  font-size: 1.125em;
  font-weight: 700;
  line-height: 2.1111111111em;
  margin-top: 2.2222222222em;
}

.making__desc em {
  font-style: normal;
  font-size: 1.3888888889em;
}

.making__movie {
  max-width: 59.375em;
  margin-inline: auto;
  margin-top: 1.25em;
  position: relative;
}

.making__movie .movie__content-item-title {
  bottom: 11%;
  line-height: 1.75;
}

.making__icon.--icon03 {
  top: -11%;
  left: -8%;
  width: 15.125em;
  animation: spin 10s linear infinite;
}
@media screen and (max-width: 768px) {
  .making__icon.--icon03 {
    width: 8.125em;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.making__director {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5625em;
  margin-top: 3.6875em;
}

.making__director-label {
  background-color: #fff;
  border-radius: 5.56em;
  width: 23.04em;
  max-width: 100%;
  text-align: center;
  color: #4b95e0;
  font-family: var(--font-family-jp);
  font-size: 1.5625em;
  font-weight: 700;
  line-height: 2.12em;
}

.making__director-info {
  text-align: center;
  color: #fff;
}

.making__director-name {
  font-family: var(--font-family-jp);
  font-size: 2.1875em;
  font-weight: 700;
  line-height: 1.5142857143em;
}

.making__director-name-en {
  font-family: var(--font-family-jp);
  font-size: 1.21875em;
  line-height: 2.7179487179em;
}

.making__director-bio {
  font-family: var(--font-family-jp);
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 2em;
}
.making__director-bio p {
  display: flex;
}
.making__director-bio span {
  width: 6.25em;
  display: block;
  text-align: left;
}

.making_under {
  height: 8.75em;
}

/* ========================================
messageセクション
======================================== */
.message {
  padding: 15em 0 0;
  overflow: visible;
  position: relative;
  z-index: 2;
}

/* 背景のみを台形にクリップ（コンテンツはクリップしない） */
.message::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(55, 193, 180, 0.9);
  clip-path: polygon(0 15%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.message .container {
  position: relative;
}

/* messageセクション: タイトル */
.message__title {
  text-align: center;
  margin-bottom: 1.875em;
  position: relative;
}

.message__title > img {
  width: 100%;
  max-width: 30.5em;
  height: auto;
}

.message__icon-01 {
  position: absolute;
  top: 0.3125em;
  right: 2.6875em;
  width: 2.5em;
  height: 2.5em;
  transform: rotate(1.71deg);
}

.message__icon-03 {
  position: absolute;
  top: -4.6875em;
  right: 3.6875em;
  width: 18.125em;
  height: 8.75em;
  transform: rotate(1.71deg);
}
@media screen and (max-width: 768px) {
  .message__icon-03 {
    position: absolute;
    top: -7vw;
    right: -8vw;
    width: 43vw;
    height: auto;
    transform: rotate(24.29deg);
    z-index: 1;
  }
}

.message__icon-04 {
  position: absolute;
  top: 21em;
  right: 25.6875em;
  width: 13.375em;
  height: auto;
  z-index: 5;
}

.message__icon-07 {
  position: absolute;
  width: 11.6875em;
  height: auto;
  left: -2.25em;
  top: -22%;
}

.message__bubble-container {
  position: relative;
}
@media screen and (max-width: 768px) {
  .message__bubble-container {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .message__bubble-container:nth-child(even) {
    flex-direction: row-reverse;
  }
}

/* messageセクション: ステージ（人物写真＋吹き出しコンテナ） */
.message__stage {
  position: relative;
  height: 64.625em;
  max-width: 63.75em;
  margin-inline: auto;
}

/* messageセクション: 人物写真 共通 */
.message__person {
  position: absolute;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .message__person {
    position: relative;
  }
}

/* message_01: 右側、奥 */
.message__person--01 {
  width: 23.5em;
  left: 3%;
  top: 2.3125em;
  left: 9.25em;
  z-index: 4;
}

/* message_02: 右上、手前（ピンクジャケット＋YEAH!） */
.message__person--02 {
  right: -2%;
  top: -2.35em;
  z-index: 4;
  width: 16.8125em;
}
@media (max-width: 1100px) {
  .message__person--02 {
    right: -6%;
  }
}
@media screen and (max-width: 1000px) {
  .message__person--02 {
    right: -6%;
  }
}

/* message_03: 左側（ブルージャケット＋YEAH!） */
.message__person--03 {
  left: -14.5%;
  top: 24em;
  z-index: 4;
  width: 29.9375em;
  transform: rotate(-8.36deg);
}

/* message_04: 中央（グリーンジャケット） */
.message__person--04 {
  left: 33%;
  top: 23.875em;
  z-index: 4;
  width: 30.875em;
}
@media screen and (max-width: 1000px) {
  .message__person--04 {
    left: 30%;
    top: 21.875em;
  }
}
@media screen and (max-width: 768px) {
  .message__person--04 {
    transform: rotate(0);
  }
}

/* messageセクション: 吹き出し 共通 */
.message__bubble {
  position: absolute;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .message__bubble {
    position: relative;
  }
}

.message__bubble-circle {
  position: relative;
  width: 18.75em;
}

/* 吹き出し背景SVG */
.message__bubble-bg {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .message__bubble-bg {
    transform: rotate(-22deg);
  }
}

.message__bubble-text {
  position: absolute;
  top: 1%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 18.3333333333em;
  font-family: var(--font-family-jp);
  font-weight: bold;
  font-size: 0.9375em;
  line-height: 1.8em;
  color: #002dac;
  text-align: center;
  margin: 0;
  white-space: nowrap;
}
.message__bubble-text strong {
  font-weight: 900;
  margin-top: 0.2em;
}

.message__bubble-text.--secondary {
  top: -19%;
  white-space: nowrap;
}

/* 吹き出し個別位置 */
.message__bubble--01 {
  left: 0;
  top: 0.9375em;
}

.message__bubble--02 {
  left: 51%;
  top: 4.875em;
}

.message__bubble--03 {
  left: 15.5%;
  top: 25.5625em;
}
@media screen and (max-width: 1000px) {
  .message__bubble--03 {
    left: 16%;
  }
}

.message__bubble--04 {
  right: -4%;
  top: 29.875em;
  top: 28.875em;
}
@media screen and (max-width: 1000px) {
  .message__bubble--04 {
    right: -3%;
    top: 31.875em;
  }
}

/* YEAH!装飾アイコン（右下） */
.message__icon-02 {
  position: absolute;
  right: -1%;
  bottom: -0.0625em;
  width: 24.5em;
  height: auto;
  z-index: 5;
}

.message__icon-04-center {
  position: absolute;
  width: 13.375em;
  top: 40%;
  left: 47%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

/* messageセクション: SP対応 */
@media (max-width: 768px) {
  .message {
    padding: 40.333333vw 0 16vw;
  }
  .message::before {
    clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
  }
  .message__title img {
    max-width: 80vw;
  }
  .message__icon-01 {
    width: 11.666666vw;
    height: 18.055555vw;
    left: -1.666667vw;
    top: -7vw;
  }
  .message__stage {
    max-width: 100%;
    height: 200vw;
  }
  .message__icon-05 {
    position: absolute;
    width: 25.416666vw;
    height: auto;
    right: 2vw;
    z-index: 10;
    top: 40vw;
  }
  .message__icon-06 {
    position: absolute;
    width: 28.5vw;
    height: auto;
    left: 0;
    z-index: 10;
    top: -13vw;
  }
  .message__person--01 {
    width: 55%;
    left: 0;
    right: 0;
    top: 2.6666666667vw;
  }
  .message__person--02 {
    width: 65%;
    right: 10%;
    top: -16vw;
    z-index: 4;
  }
  .message__person--03 {
    left: 17%;
    top: -2vw;
    width: 61%;
  }
  .message__person--04 {
    width: 72%;
    left: 10%;
    top: -33vw;
  }
  .message__bubble-circle {
    width: 50vw;
  }
  .message__bubble-text {
    top: -2.733333vw;
    width: 50.666667vw;
    font-size: 2.4vw;
    line-height: 4.8vw;
  }
  .message__bubble-text strong {
    display: block;
  }
  .message__bubble--01 {
    width: 47%;
    left: 2.666666vw;
    top: 2.6666666667vw;
  }
  .message__bubble--02 {
    left: -1vw;
    top: -11vw;
  }
  .message__bubble--03 {
    left: 0%;
    top: -5vw;
  }
  .message__bubble--03 .message__bubble-bg {
    transform: rotate(22deg);
  }
  .message__bubble--03 .message__bubble-text {
    padding-left: 3vw;
    top: -21%;
  }
  .message__bubble--04 {
    right: 3%;
    top: -25vw;
  }
  .message__bubble--04 .message__bubble-bg {
    transform: rotate(22deg);
  }
  .message__bubble--04 .message__bubble-text {
    padding-top: 1vw;
    padding-left: 3vw;
    top: -4vw;
  }
  .message__icon-02 {
    width: 34.6666666667vw;
    right: 0;
    bottom: 35.666667vw;
    z-index: 10;
  }
}
/* ========================================
econセクション
======================================== */
.econ {
  background-color: rgba(255, 101, 164, 0.9);
  padding: 6.75em 0;
  position: relative;
  z-index: 1;
}
.econ::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_line.png);
  background-size: 6.25em 6.25em;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.3;
  content: "";
  z-index: -1;
  top: 0;
  left: 0;
}

.footer {
  position: relative;
}

.econ__left-image {
  position: absolute;
  top: -12.5em;
  left: 5%;
  z-index: 2;
  pointer-events: none;
  width: 12.875em;
}

.econ__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
}

.econ__text {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.econ__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3333333333em;
  font-family: var(--font-family-jp);
  font-weight: 700;
  font-size: 1.875em;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 0.1666666667em;
}

.econ__subtitle-arrow {
  display: inline-block;
  width: 0.3666666667em;
  height: 1.1666666667em;
}

.econ__subtitle-arrow--left {
  transform: rotate(136deg);
  margin-left: -0.3333333333em;
}

.econ__subtitle-arrow--right {
  transform: rotate(44deg) scaleY(-1);
  margin-right: -0.3333333333em;
}

.econ__title {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-black);
  font-size: 3.9375em;
  color: #ffff00;
  text-shadow: 0.0476190476em 0.0476190476em 0px #002dac;
  line-height: 1.4;
  margin: 0 0 0.2380952381em;
  text-align: center;
}
.econ__title sub {
  text-shadow: none;
  font-size: 33%;
  color: #002DAC;
}

.econ__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  background-color: #fff;
  border: 2px solid #002dac;
  border-radius: 2.375em;
  box-shadow: 0.1875em 0.1875em 0px 0px #002dac;
  padding: 0.625em 1.25em 0.625em 2.5em;
  text-decoration: none;
  justify-content: center;
  width: 20.375em;
  margin-inline: auto;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) {
  .econ__btn:hover {
    box-shadow: none;
    transform: translate(0.1875em, 0.1875em) !important;
  }
}
.econ__btn-label {
  font-family: var(--font-family-jp);
  font-weight: var(--font-weight-black);
  font-size: 1.25em;
  color: #002dac;
  line-height: 1.4;
  white-space: nowrap;
}

.econ__btn-icon {
  display: block;
  width: 2.1875em;
  height: 2.1875em;
}

.econ__visual {
  position: relative;
  flex-shrink: 0;
}

.econ__campus-img {
  display: block;
  width: 31.25em;
  height: auto;
  border-radius: 1.25em;
  -o-object-fit: cover;
     object-fit: cover;
}

.econ__laptop {
  position: absolute;
  right: -5em;
  bottom: -3.75em;
}
.econ__laptop-body {
  display: block;
  width: 13.3125em;
  height: auto;
  transform: rotate(14.39deg);
}

.econ__laptop-sub {
  position: absolute;
  right: -1.875em;
  bottom: -1.25em;
  width: 6.625em;
  height: auto;
  transform: rotate(14.39deg);
}

/* SP版: 段落ち */
@media screen and (max-width: 768px) {
  .econ {
    padding: 16vw 0;
  }
  .econ__content {
    flex-direction: column;
    gap: 8vw;
  }
  .econ__subtitle {
    font-size: 5.8666666667vw;
  }
  .econ__title {
    font-size: 10.6666666667vw;
  }
  .econ__btn {
    padding: 2.1333333333vw 4.2666666667vw 2.1333333333vw 8vw;
  }
  .econ__btn-label {
    font-size: 4.2666666667vw;
  }
  .econ__visual {
    width: 100%;
  }
  .econ__campus-img {
    width: 100%;
  }
  .econ__laptop {
    right: -2.333333vw;
    bottom: -13vw;
  }
  .econ__laptop-body {
    width: 40vw;
  }
  .econ__laptop-sub {
    width: 20vw;
    right: -4vw;
    bottom: -2.6666666667vw;
  }
}
/* ======================================================
// フッター: Figmaデザイン反映
// ====================================================== */
/* フッターSNSエリア: common.cssの730px固定高さ・overflowを上書き */
.footer__sns {
  height: auto;
  min-height: 31.25em;
  overflow: visible;
}
@media screen and (max-width: 1000px) {
  .footer__sns {
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .footer__sns {
    min-height: auto;
  }
}

/* 左カラム: common.cssの1920px基準幅・パディングを上書き */
.footer__sns-primary {
  width: 55%;
  padding: 3.75em 3.125em 3.125em;
  background-image: none;
  justify-content: center;
}

/* 左カラム内側: common.cssのmargin-left:autoを解除 */
.footer__sns-primary-inner {
  margin: 0;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__sns-primary-inner {
    max-width: 100%;
  }
}

/* 右カラム: 残りの幅を使う */
.footer__sns-secondary {
  width: 45%;
}

/* タイトル: テキスト表示（白、30px、font-black） */
.footer__sns-title {
  max-width: none;
  font-size: clamp(20px, 2.34375vw, 30px);
  font-weight: 900;
  line-height: 1.5;
  color: var(--color-white);
  text-align: center;
  white-space: nowrap;
}

/* リード: 青背景バッジ + 下向き矢印 */
.footer__sns-lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5625em;
  font-size: 0;
}

.footer__sns-lead-text {
  display: inline-block;
  padding: 0.5em 1.5em;
  background: #002DAC;
  border-radius: 0.3125em;
  color: var(--color-white);
  font-size: clamp(14px, 1.40625vw, 18px);
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
}

.footer__sns-lead-arrow {
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #002DAC;
}

/* SNSアイコン: 丸枠 + 影（aboutセクション準拠） */
.footer__sns-list {
  max-width: none;
  flex-wrap: nowrap;
  gap: 0.875em;
  margin-bottom: 1.875em;
  margin-top: 1em;
}

.footer__sns-list-item-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.8125em;
  height: 3.8125em;
  background: #fff;
  border: 2px solid #002dac;
  border-radius: 50%;
  box-shadow: 2px 2px 0.25em #002dac;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.footer__sns-list-item-img {
  width: auto;
  height: 2em;
}

.footer__sns-list-item--youtube .footer__sns-list-item-img {
  height: 2.375em;
}

/* TikTokのmargin-top解除 */
.footer__sns-list-item-tiktok {
  margin-top: 0;
}

/* ボタン: ピル型、青ボーダー、シャドウ */
.footer__sns-link-wrapper {
  max-width: 30.1875em;
  height: 5.125em;
}

.footer__sns-link {
  border: 2px solid #002dac;
  border-radius: 3.1875em;
  box-shadow: 0.25em 0.25em 0px 0px #002388;
  color: #002dac;
  padding-inline: 1.25em;
  font-size: 1.5em;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* ::afterを非表示にしてSVG画像に置き換え */
.footer__sns-link::after {
  display: none;
}

.footer__sns-link-arrow {
  width: 2.625em;
  height: 2.625em;
  flex-shrink: 0;
}

@media (hover: hover) {
  .footer__sns-list-item-link:hover {
    box-shadow: none;
    transform: translate(0.1875em, 0.1875em) !important;
  }
  .footer__sns-link:hover {
    background-color: #fff !important;
    color: #002388 !important;
    box-shadow: none;
    transform: translate(0.1875em, 0.1875em) !important;
  }
}
/* お問い合わせ: 文字色を白に */
.footer__sns-contact,
.footer__sns-contact-title,
.footer__sns-contact-detail,
.footer__sns-contact-detail-link,
.footer__sns-contact-detail-sub {
  color: #fff;
}

.footer__sns-contact-title,
.footer__sns-contact-detail {
  font-size: 0.9375em;
  font-weight: 700;
  line-height: 1.5;
}

/* SP対応 */
@media (max-width: 768px) {
  .footer__sns {
    height: auto;
  }
  .footer__sns-inner {
    display: flex;
    flex-direction: column;
  }
  .footer__sns-primary {
    width: 100%;
    padding: 12vw 5.3333333333vw;
    background-image: none;
  }
  .footer__sns-secondary {
    width: 100%;
  }
  .footer__sns-title {
    font-size: 5.3333333333vw;
  }
  .footer__sns-lead-text {
    font-size: 3.7333333333vw;
    padding: 1.6vw 4.8vw;
  }
  .footer__sns-list {
    max-width: 56vw;
    flex-wrap: wrap;
    gap: 2.4vw 3.7333333333vw;
  }
  .footer__sns-list-item-link {
    width: 16vw;
    height: 16vw;
  }
  .footer__sns-list-item-img {
    height: 6.4vw;
  }
  .footer__sns-list-item--youtube .footer__sns-list-item-img {
    height: 7.4666666667vw;
  }
  .footer__sns-list-item-tiktok {
    margin-top: 0;
  }
  .footer__sns-link-wrapper {
    max-width: 86.6666666667vw;
    height: 16vw;
  }
  .footer__sns-link {
    font-size: 4.2666666667vw;
    border-radius: 10.6666666667vw;
    box-shadow: 0.8vw 0.8vw 0px 0px #002388;
  }
}
/* 右画像: 右下配置 */
.footer__sns-inner {
  align-items: flex-end;
}

.footer__sns-secondary-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right bottom;
     object-position: right bottom;
}

.container.footer__logo-inner p {
  font-size: 1em;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .container.footer__logo-inner p {
    margin-top: 4vw;
    font-size: 3.2vw;
  }
}

.pc-block {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-block {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */