@charset "UTF-8";
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 3%;
  z-index: 1000;
  transition: background-color 0.3s;
  /* --- SP用全画面メニュー --- */
  /* --- SP用全画面メニュー --- */
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1002;
}
.l-header__logo {
  color: #3C3A3A;
}
.l-header__logo a {
  display: flex;
  align-items: center;
  gap: 5%;
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 60px;
}
.l-header__logo img {
  height: 30px;
  width: auto;
}
.l-header__logo p {
  font-size: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
  margin-top: 5px;
  line-height: 1.2;
  display: inline-block;
}
.l-header__logo span {
  display: block;
  color: #ea5550;
  font-size: 0.9em;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
.l-header__nav li {
  font-weight: bold;
}
.l-header__hamburger {
  display: block;
  position: relative;
  width: 60px;
  height: 50px;
  border: none;
  border-radius: 48px;
  background-color: #000;
  cursor: pointer;
  transition: background-color 0.3s;
  z-index: 1003;
}
.l-header__hamburger span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: transform 0.4s, opacity 0.4s, background-color 0.4s;
}
.l-header__hamburger span:nth-child(1) {
  top: 16px;
}
.l-header__hamburger span:nth-child(2) {
  top: 24px;
}
.l-header__hamburger span:nth-child(3) {
  top: 32px;
}
.l-header__hamburger.is-active {
  background-color: #fff;
}
.l-header__hamburger.is-active span {
  background-color: #000;
}
.l-header__hamburger.is-active span:nth-child(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}
.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-active span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%) rotate(-45deg);
}
.l-header .l-header__sp-nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 999;
  /* 背景のアニメーション初期値（上に隠す） */
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  /* --- 中身のリスト（li）の初期設定 --- */
  /* === 【重要】アクティブ時（開いた時）の指定 === */
}
.l-header .l-header__sp-nav .l-header__sp-list {
  width: 100%;
  padding-top: 70px; /* 上に詰まりすぎないよう余白確保 */
}
.l-header .l-header__sp-nav .l-header__sp-list li {
  opacity: 0; /* 最初は透明 */
  transform: translateY(20px); /* 少し下に配置 */
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.l-header .l-header__sp-nav .l-header__sp-list li a {
  color: #fff; /* 文字色を白に強制 */
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 15px 0;
  text-align: center;
}
.l-header .l-header__sp-nav.is-active {
  /* 1. 背景を降ろす */
  transform: translateY(0);
  /* 2. 背景が降りた後に、中のリストを表示する */
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li {
  opacity: 1;
  transform: translateY(0);
  /* 順番にふわっと出す（遅延設定） */
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(1) {
  transition-delay: 0.35s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(2) {
  transition-delay: 0.4s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(3) {
  transition-delay: 0.45s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(4) {
  transition-delay: 0.5s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(5) {
  transition-delay: 0.55s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(6) {
  transition-delay: 0.6s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(7) {
  transition-delay: 0.65s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(8) {
  transition-delay: 0.7s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(9) {
  transition-delay: 0.75s;
}
.l-header .l-header__sp-nav.is-active .l-header__sp-list li:nth-child(10) {
  transition-delay: 0.8s;
}

body.is-fixed .l-header__logo {
  opacity: 0; /* 透明にする */
  visibility: hidden; /* クリック判定も消す */
}

body.is-fixed {
  overflow: hidden;
  height: 100%;
}

/*
ミックスインメモ

・フォント自動計算（）にフォントサイズ1920準拠
    @include mixin.font-size(40);

・カーニング（）にline-heightを入れる
  @include mixin.line-height(44);

・メディアクエリ用
  @include mixin.mq-max('sp') {
  }

*/
/*基本スタイルここから*/
/* ===============================================
// Root & Variables
// =============================================== */
:root {
  --color-primary: #c9000e;
  --color-text: #333;
  --color-blue-bg: #1a237e; /* 画像から抽出したネイビー */
  --color-red-bg: #e5554e; /* 画像から抽出した赤 */
  --color-red-bg-gradient: linear-gradient(
    135deg,
    #e5554e 0%,
    #ef7a75 100%
  ); /* 赤ボタンの微細なグラデーション */
  --color-white: #ffffff;
  --btn-radius: 12px;
}

/* ベース設定 */
/* ===============================================
// Reset & Base
// =============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  color: var(--color-text);
  font-size: 1rem;
  font-family: "Montserrat", "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 500; /* ここが重要 */
  /* オプション: 文字のアンチエイリアスを効かせて滑らかにする */
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

section {
  position: relative;
}

/* 本番用スタイル */
.lottie-scroll-section {
  /* 背景として配置するための設定 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1; /* コンテンツの裏に回す */
  height: 228vh;
  z-index: -1;
  margin-top: 101vh;
  /* 表示調整 */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  opacity: 0.6; /* 背景なので少し薄くすると文字が読みやすいです */
}

/* SVGのレスポンシブ対応 */
.lottie-scroll-section svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================================
// Utility Classes
// =============================================== */
.inner {
  max-width: 1720px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

body {
  background-color: #fff4e5;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 20vw;
}

ul {
  list-style: none;
}

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

@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
}

.violet {
  color: #8578e5;
}

#mv {
  position: relative;
  background-image: url(/assets/images/mv.png);
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #mv {
    background-image: url(/assets/images/mv-sp.png);
  }
}
#mv .mv-copy {
  position: absolute;
  bottom: 10%;
  left: 5%;
}
#mv .main-copy {
  font-size: clamp(2.5rem, 2.0449029126rem + 1.9417475728vw, 4.375rem);
  font-weight: bold;
}
#mv .sub-copy {
  font-size: clamp(0.625rem, 0.4733009709rem + 0.6472491909vw, 1.25rem);
  font-weight: bold;
}

#about {
  position: relative;
  background-image: url(/assets/images/about.png);
  height: 105vh;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #about {
    background-image: url(/assets/images/about-sp.png);
    background-position: bottom;
    background-size: contain;
    margin-bottom: 50px;
  }
}
#about .about-copy {
  margin-left: 18vw;
  padding-top: 5vw;
}
@media screen and (max-width: 767px) {
  #about .about-copy {
    margin-left: 5vw;
    padding-top: 0vw;
  }
}
#about .main-copy {
  font-size: clamp(1.875rem, 1.1165048544rem + 3.2362459547vw, 5rem);
  font-weight: bold;
  line-height: clamp(47.2px, 6.1458333333vw, 118px);
}
#about .sub-copy p {
  font-size: clamp(0.6875rem, 0.5509708738rem + 0.5825242718vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 3%;
}

#movie {
  position: relative;
  margin-bottom: 350px;
  /* 三角形のコンテナ */
  /* 三角形本体 */
}
#movie .movie-wrap {
  background-color: #8578e5;
  padding: 50px 0;
  border-radius: 70px 70px 0 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 12%);
  background-size: 19px 20px;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  #movie .movie-wrap {
    padding: 25px 0;
  }
}
#movie .movie-content {
  display: flex;
  background-color: #fff;
  padding: 100px 200px;
  margin: 0 auto;
  max-width: 90%;
  border-radius: 70px;
  align-items: center;
  margin-bottom: 200px;
}
@media screen and (max-width: 767px) {
  #movie .movie-content {
    padding: 50px 25px;
    gap: 30px;
    flex-direction: column-reverse;
    margin-bottom: 70px;
  }
}
#movie .movie-content img {
  width: 50%;
  max-height: 760px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  #movie .movie-content img {
    width: 100%;
  }
}
#movie .movie-text {
  text-align: center;
  width: 50%;
  margin: 0 5%;
}
@media screen and (max-width: 767px) {
  #movie .movie-text {
    width: 100%;
  }
}
#movie .movie-text h2 {
  font-size: clamp(1.875rem, 0.9041262136rem + 4.142394822vw, 5.875rem);
  color: #6152d1;
  line-height: clamp(32px, 4.1666666667vw, 80px);
}
#movie .movie-text h3 {
  font-weight: bold;
  font-size: clamp(1rem, 0.8483009709rem + 0.6472491909vw, 1.625rem);
  margin-bottom: 3%;
}
#movie .movie-text p {
  font-size: clamp(0.75rem, 0.6589805825rem + 0.3883495146vw, 1.125rem);
}
#movie .point-wrap {
  max-width: 80%;
  margin: 0 auto;
}
#movie .point-wrap .point {
  position: relative;
  background-color: #fff4e5;
  display: flex;
  align-items: center;
  border-radius: 20px;
  margin-bottom: 190px;
}
@media screen and (max-width: 767px) {
  #movie .point-wrap .point {
    flex-direction: column;
    padding: 20px 0;
    gap: 30px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  #movie .point-wrap .point.right {
    flex-direction: column-reverse;
  }
}
#movie .point-wrap .point.right img {
  transform: translate(5vw, -4vw);
}
#movie .point-wrap .point.right h2 {
  position: absolute;
  top: 0;
  left: 0;
}
#movie .point-wrap .point img {
  max-height: 432px;
  transform: translate(-5vw, -4vw);
}
#movie .point-wrap .point .point-text {
  margin: 0 3vw;
}
#movie .point-wrap .point .point-text h2 {
  position: absolute;
  top: 0;
  right: 0;
  font-size: clamp(1.875rem, 0.9041262136rem + 4.142394822vw, 5.875rem);
  color: #6152d1;
  line-height: clamp(26.4px, 3.4375vw, 66px);
}
@media screen and (max-width: 767px) {
  #movie .point-wrap .point .point-text h2 {
    top: 52vw;
  }
}
#movie .point-wrap .point .point-text p {
  margin-bottom: 2%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #movie .point-wrap .point .point-text p {
    margin-bottom: 5%;
  }
}
#movie .point-wrap .point .point-text .point-tag {
  background-color: #fff;
  border: #8578e5 solid 2px;
  border-radius: 22px;
  display: inline-block;
  padding: 5px;
  color: #8578e5;
}
#movie .point-raw {
  max-width: 60%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767px) {
  #movie .point-raw {
    max-width: 100%;
  }
}
#movie .triangle-container {
  position: absolute;
  bottom: -13.9vw;
  width: 100%;
  overflow: hidden; /* はみ出し防止 */
}
#movie .triangle {
  width: 100%;
  /* 三角形の高さを指定します。お好みに合わせて調整してください */
  height: 14vw;
  /* ベースとなる紫色 */
  background-color: #8578e5;
  /* ドットパターン（画像に近い雰囲気を再現） */
  /* 不要な場合はこの background-image 関連の行を削除してください */
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 12%);
  background-size: 19px 20px;
  background-repeat: repeat;
  /* 【重要】要素を三角形に切り抜く */
  /* polygon(左上X 左上Y, 右上X 右上Y, 下中央X 下中央Y) */
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

#education {
  padding-bottom: 10%;
  position: relative;
  background-image: url(/assets/images/education-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#education h2 {
  font-size: clamp(1.5625rem, 1.1832524272rem + 1.6181229773vw, 3.125rem);
  text-align: center;
}
#education .education-wrap {
  display: flex;
  justify-content: center;
  gap: 3%;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #education .education-wrap {
    flex-direction: column;
  }
}
#education .education-content {
  max-width: 620px;
  text-align: center;
  background-color: #fff;
  padding: 50px 130px;
  border-radius: 30px;
  border: 4px solid #ede7f4;
}
@media screen and (max-width: 767px) {
  #education .education-content {
    padding: 50px 10px;
    margin-bottom: 20px;
  }
}
#education .education-content h3 {
  color: #fff;
  border-radius: 30px;
  background: transparent linear-gradient(99deg, #f4cb22 0%, #f5ac53 100%) 0% 0% no-repeat padding-box;
  margin-bottom: 5%;
}
#education .education-content p {
  font-weight: bold;
  margin-bottom: 5%;
}
@media screen and (max-width: 767px) {
  #education .education-content p {
    font-size: 12px;
  }
}
#education .education-content ul {
  display: flex;
  justify-content: center;
  gap: 10%;
}
@media screen and (max-width: 767px) {
  #education .education-content ul {
    gap: 5%;
  }
}
#education .education-content ul img {
  max-width: 100px;
  margin-bottom: 10%;
}
@media screen and (max-width: 767px) {
  #education .education-content ul img {
    max-width: 80px;
  }
}

#project {
  background-color: #fce06c;
  padding: 100px 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 10%, transparent 20%);
  background-size: 25px 25px;
  background-repeat: repeat;
}
#project .project-content {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
#project .sub-copy {
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  font-weight: bold;
}
#project .main-copy {
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
  font-weight: bold;
}
#project .project-img {
  background-color: #fff;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  #project .project-img {
    margin: 0 5%;
  }
}
#project .project-img img {
  border-radius: 30px 30px 0 0;
}
#project .project-img p {
  padding: 5%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  #project .project-img p {
    font-size: 12px;
  }
}

#interview {
  background-image: url(/assets/images/interview-bg.png);
  background-size: cover;
  padding: 130px 0;
  /* --- 追加: ボタンのリセット --- */
  /* =========================================
   Component: Modal
   ========================================= */
}
#interview .sub-copy {
  text-align: center;
  font-size: clamp(1.25rem, 1.0983009709rem + 0.6472491909vw, 1.875rem);
  font-weight: bold;
}
#interview .main-copy {
  text-align: center;
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
  font-weight: bold;
}
#interview .interview-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Noto Sans JP", sans-serif;
}
#interview .interview-card {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  width: 100%;
  font-family: inherit;
}
#interview .interview-card:hover {
  opacity: 0.9;
}
#interview .interview-card:hover .interview-card__icon {
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
#interview .interview-card__figure {
  position: relative;
  margin: 0 0 20px 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/3.5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
#interview .interview-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.interview-card:hover #interview .interview-card__img {
  transform: scale(1.05);
}
#interview .interview-card__label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #655add;
  color: #fff;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 16px;
  letter-spacing: 0.05em;
  z-index: 2;
}
#interview .interview-card__icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #655add;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 2;
}
#interview .interview-card__icon svg {
  width: 18px;
  height: 18px;
}
#interview .interview-card__body {
  padding: 0 5px;
}
#interview .interview-card__title {
  font-size: 1.1rem;
  color: #655add;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
#interview .interview-card__profile {
  font-size: 0.85rem;
  color: #333;
  line-height: 1.6;
}
#interview .interview-card__name {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 4px;
}
#interview .interview-card__meta {
  font-weight: bold;
  font-size: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
}
#interview .interview-card__job, #interview .interview-card__year {
  display: inline-block;
}
#interview .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#interview .modal.is-active {
  opacity: 1;
  visibility: visible;
}
#interview .modal.is-active .modal__container {
  transform: translateY(0);
  opacity: 1;
}
#interview .modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
#interview .modal__container {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  background-color: #fff;
  border-radius: 16px;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
#interview .modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border: none;
  background-color: #f0f0f0;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
#interview .modal__close:hover {
  background-color: #e0e0e0;
}
#interview .modal__content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #interview .modal__content {
    flex-direction: row;
  }
}
#interview .modal__figure {
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  #interview .modal__figure {
    width: 45%;
    flex-shrink: 0;
  }
}
#interview .modal__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 250px;
}
@media (min-width: 768px) {
  #interview .modal__img {
    min-height: auto;
    height: 100%;
  }
}
#interview .modal__label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #655add;
  color: #fff;
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: bold;
}
#interview .modal__body {
  padding: 30px;
  flex-grow: 1;
}
#interview .modal__title {
  font-size: 1.5rem;
  color: #655add;
  margin-bottom: 20px;
  line-height: 1.4;
}
#interview .modal__meta {
  font-weight: bold;
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
#interview .modal__meta span {
  margin-right: 15px;
}
#interview .modal__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  white-space: pre-wrap;
}

#strong {
  background-image: url(/assets/images/strong-bg.png);
  background-size: cover;
  padding: 130px 0;
  /* =========================================
   Component: Event List (Grid Layout)
   ========================================= */
  /* =========================================
   Component: Event Card (BEM)
   ========================================= */
  /* =========================================
     Component: Modal (New)
     ========================================= */
}
#strong .violet {
  border-bottom: 10px solid #fce06d;
}
#strong .main-copy {
  text-align: center;
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
  font-weight: bold;
}
#strong .event-card__btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#strong .event-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Noto Sans JP", sans-serif;
}
#strong .event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border: 2px solid rgb(204.2592592593, 205.7407407407, 245.7407407407);
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  padding-top: 10px;
}
#strong .event-card:hover {
  transform: translateY(-5px);
}
#strong .event-card__badge {
  position: absolute;
  top: -30px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-color: #f2bb2e;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#strong .event-card__badge-num {
  font-size: 2.2rem;
  font-weight: bold;
}
#strong .event-card__badge-unit {
  font-size: 0.9rem;
  font-weight: bold;
  margin-top: 2px;
}
#strong .event-card__body {
  padding: 24px 20px 20px;
  flex-grow: 1;
  text-align: center;
}
#strong .event-card__title {
  font-size: 1.4rem;
  color: #5d5ed6;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
#strong .event-card__figure {
  margin: 0 0 20px 0;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}
#strong .event-card__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
#strong .event-card__desc {
  font-size: 0.95rem;
  color: #333333;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
}
#strong .event-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
#strong .event-card__tag {
  background-color: #fdf09d;
  color: rgb(151.1013513514, 111.3378378378, 9.3986486486);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
#strong .event-card__btn {
  display: block;
  width: 100%;
  padding: 18px 0;
  background-color: #767ae6;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 0 0 12px 12px;
  transition: background-color 0.3s;
  margin-top: 20px;
}
#strong .event-card__btn:hover {
  background-color: rgb(74.8703703704, 80.1296296296, 222.1296296296);
}
#strong .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#strong .modal.is-active {
  opacity: 1;
  visibility: visible;
}
#strong .modal.is-active .modal__container {
  transform: translateY(0);
  opacity: 1;
}
#strong .modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
#strong .modal__container {
  position: relative;
  width: 100%;
  max-width: 600px;
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}
@media (max-width: 768px) {
  #strong .modal__container {
    padding: 24px;
  }
}
#strong .modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
#strong .modal__close:hover {
  background: #e0e0e0;
}
#strong .modal__title {
  font-size: 1.8rem;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
#strong .modal__figure {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}
#strong .modal__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#strong .modal__desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
#strong .modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  justify-content: center;
}
#strong .modal__tag {
  background-color: #fdf09d;
  color: #b58900;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 20px;
}
#strong .modal__btn {
  display: block;
  width: 100%;
  padding: 15px;
  background-color: #767ae6;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: opacity 0.3s;
}
#strong .modal__btn:hover {
  opacity: 0.8;
}

#recommend {
  position: relative;
  background-color: #8c82ea;
  padding: 60px 0;
  font-family: "Noto Sans JP", sans-serif;
  /* =========================================
   Component: Video Slider
   ========================================= */
}
#recommend .recommend-entry {
  position: absolute;
  bottom: -10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border: 7px solid #fff;
  background: #d92c7b 0% 0% no-repeat padding-box;
  border-radius: 94px;
  color: #fff;
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
  max-width: 800px;
  text-align: center;
  width: 50%;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  #recommend .recommend-entry {
    width: 95%;
  }
}
#recommend .video-slider {
  width: 100%;
  padding-bottom: 40px;
  /* --- Navigation Buttons --- */
}
#recommend .video-slider__item {
  width: 300px;
  height: auto;
  aspect-ratio: 9/16;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transform: scale(0.85);
  opacity: 0.7;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
#recommend .video-slider__item.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#recommend .video-slider__item.swiper-slide-active .video-slider__overlay {
  opacity: 0;
}
#recommend .video-slider__inner {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #000;
}
#recommend .video-slider__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#recommend .video-slider__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
#recommend .video-slider__btn {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
#recommend .video-slider__btn::after {
  font-size: 1.2rem;
  color: #8c82ea;
  font-weight: bold;
}
#recommend .video-slider__btn:hover {
  transform: scale(1.1);
}
#recommend .video-slider__btn--prev {
  left: calc(50% - 150px - 30px);
}
#recommend .video-slider__btn--next {
  right: calc(50% - 150px - 30px);
}
@media (max-width: 768px) {
  #recommend .video-slider__btn--prev {
    left: 10px;
  }
  #recommend .video-slider__btn--next {
    right: 10px;
  }
}

.footer-raw {
  background-image: url(/assets/images/footer-bg.png);
  background-size: cover;
  height: 10vw;
}

/* =========================================
   Component: Footer
   ========================================= */
.footer {
  background-color: #fff;
  padding: 50px 0 30px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  /* --- Navigation --- */
  /* --- Bottom Area (Logo & Copyright) --- */
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer__nav {
  margin-bottom: 40px;
}
.footer__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__link {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  transition: opacity 0.3s;
}
.footer__link:hover {
  opacity: 0.7;
}
.footer__icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer__body {
  border-top: 1px solid #e0e0e0;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer__body {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 5%;
}
.footer__logo p {
  font-size: clamp(0.625rem, 0.5946601942rem + 0.1294498382vw, 0.75rem);
  margin-top: 5px;
  line-height: 1.2;
  display: inline-block;
}
.footer__logo-img {
  display: block;
  height: 30px;
}
@media (max-width: 768px) {
  .footer__logo-img {
    max-width: 200px;
  }
}
.footer__copyright {
  margin: 0;
  color: #666;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

body.is-modal-active {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s;
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.modal.is-active .modal__content {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.modal__close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.modal__close-btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.modal__close-btn span:nth-child(1) {
  transform: rotate(45deg);
}
.modal__close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */