@charset "UTF-8";
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 3%;
  z-index: 1000;
  transition: background-color 0.3s;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1002;
}
.l-header__logo {
  color: #3C3A3A;
  position: relative;
  z-index: 1000;
}
.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: 29px;
  width: auto;
}
.l-header__logo p {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 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: #000000;
}
.l-header__hamburger.is-active span {
  background-color: #fff;
}
.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__sp-nav {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: #8578E5;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-header__sp-nav .l-header__sp-list {
  width: 52%;
  margin: 0 auto;
  padding-top: 70px;
  margin-top: 8%;
  transform: translateX(10%);
  display: grid;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
}
.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__sp-nav .l-header__sp-list li a {
  color: #fff;
  font-weight: bold;
  font-size: 2.6vw;
  text-decoration: none;
  display: block;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .l-header__sp-nav .l-header__sp-list {
    width: 90%;
    max-width: 400px;
    padding-top: 120px;
    transform: translateX(0%);
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: auto;
    row-gap: 24px;
  }
  .l-header__sp-nav .l-header__sp-list li a {
    font-size: 24px;
    padding: 5px 0;
    text-align: center;
    line-height: 1.4;
  }
}
.l-header__sp-nav.is-active {
  transform: translateY(0);
  /* もし「開いたときだけレイアウトを変える」意図がないなら、
     以下の grid 関連プロパティは削除してOKです（初期設定で効いているため）
  */
}
.l-header__sp-nav.is-active .l-header__sp-list li {
  opacity: 1;
  transform: translateY(0);
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(1) {
  transition-delay: 0.35s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(2) {
  transition-delay: 0.4s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(3) {
  transition-delay: 0.45s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(4) {
  transition-delay: 0.5s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(5) {
  transition-delay: 0.55s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(6) {
  transition-delay: 0.6s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(7) {
  transition-delay: 0.65s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(8) {
  transition-delay: 0.7s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(9) {
  transition-delay: 0.75s;
}
.l-header__sp-nav.is-active .l-header__sp-list li:nth-child(10) {
  transition-delay: 0.8s;
}
.l-header .recommend-entry {
  position: absolute;
  bottom: 1%;
  left: 0;
  right: 0;
  margin: 0 auto;
  border: 7px solid #fff;
  background: #d92c7b;
  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) {
  .l-header .recommend-entry {
    width: 95%;
    line-height: 36px;
    font-size: 28px;
    padding: 15px 0;
    border: 4px solid #fff;
  }
}

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 {
  --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", "Zen Kaku Gothic Antique", 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: #6152D1;
}

.recommend-entry {
  position: absolute;
  bottom: 1%;
  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-entry {
    width: 95%;
    line-height: 36px;
    font-size: 28px;
    padding: 15px 0;
    border: 4px solid #fff;
  }
}

#mv {
  position: relative;
  background-image: url(../images/mv.webp);
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #mv {
    background-image: url(../images/mv-sp.webp);
  }
}
#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;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1000px;
  margin-bottom: 2%;
}
@media screen and (max-width: 767px) {
  #mv .main-copy {
    max-width: 80%;
  }
}
#mv .sub-copy {
  font-size: clamp(0.75rem, 0.567961165rem + 0.7766990291vw, 1.5rem);
  font-weight: bold;
  letter-spacing: 1.04px;
}

#about {
  position: relative;
  background-image: url(../images/about.webp);
  height: 134vh;
  min-height: 900px;
  margin-bottom: 4%;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #about {
    background-image: url(../images/about-sp.webp);
    height: 700px;
    background-position: bottom;
    background-size: contain;
    margin-bottom: 50px;
    min-height: auto;
  }
}
#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);
  font-family: "Noto Sans JP", sans-serif;
  max-width: 45%;
  margin-bottom: 4%;
}
@media screen and (max-width: 767px) {
  #about .main-copy {
    max-width: 85%;
  }
}
#about .sub-copy p {
  font-size: clamp(0.75rem, 0.6286407767rem + 0.5177993528vw, 1.25rem);
  font-weight: bold;
  margin-bottom: 3%;
}

#movie {
  position: relative;
  margin-bottom: 350px;
  /* 三角形のコンテナ */
  /* 三角形本体 */
}
@media screen and (max-width: 767px) {
  #movie {
    margin-bottom: 100px;
  }
}
#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;
    border-radius: 30px 30px 0 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;
    border-radius: 30px;
  }
}
#movie .movie-content .video-wrap {
  position: relative;
  width: 50%;
  /* SP対応 */
}
@media screen and (max-width: 767px) {
  #movie .movie-content .video-wrap {
    width: 100%;
  }
}
#movie .movie-content .video-wrap .responsive-video {
  width: 100%;
  height: auto;
  max-height: 610px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  display: block;
}
#movie .movie-content .video-wrap .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
  pointer-events: none;
}
#movie .movie-content .video-wrap .play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
#movie .movie-content .video-wrap.is-playing .play-btn {
  opacity: 0;
}
#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 .movie-text .violet {
  display: block;
  margin-bottom: 20px;
}
#movie .point-wrap {
  max-width: 80%;
  margin: 0 auto;
  margin-top: 10vw;
}
#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.right .point-text {
  margin-left: 3vw;
  margin-right: 0;
}
#movie .point-wrap .point img {
  max-height: 432px;
  transform: translate(-5vw, -4vw);
}
#movie .point-wrap .point .point-text {
  margin-right: 3vw;
  margin-left: 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: 8px;
  color: #8578e5;
}
@media screen and (max-width: 767px) {
  #movie .point-wrap .point .point-text .point-tag {
    font-size: 11px;
  }
}
#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: 14.1vw;
  /* ベースとなる紫色 */
  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: 13%;
  position: relative;
  background-image: url(../images/education-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  #education {
    padding-bottom: 35%;
  }
}
#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 60px;
  border-radius: 30px;
  padding-bottom: 0;
  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;
  padding: 10px;
  width: 55%;
  margin: 0 auto;
  margin-bottom: 5%;
}
@media screen and (max-width: 767px) {
  #education .education-content h3 {
    width: 75%;
  }
}
#education .education-content p {
  font-weight: bold;
  margin-bottom: 10%;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #education .education-content p {
    font-size: 12px;
  }
}
#education .education-content .education-figure {
  max-height: 55%;
}
#education .education-content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10%;
}
@media screen and (max-width: 767px) {
  #education .education-content ul {
    gap: 5%;
  }
}
#education .education-content ul li {
  text-align: center;
}
#education .education-content ul p {
  text-align: center;
}
#education .education-content ul img {
  max-width: 130px;
  margin-bottom: 10%; /* margin-bottomも%指定だと親の幅に依存するため、px推奨ですが元のままにします */
}
@media screen and (max-width: 767px) {
  #education .education-content ul img {
    max-width: 80px;
  }
}

.modal1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal1.is-active {
  opacity: 1;
  visibility: visible;
}
.modal1__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.modal1__container {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal1__container::-webkit-scrollbar {
  display: none;
}
.modal1__close {
  position: sticky;
  top: 15px;
  left: calc(100% - 15px);
  transform: translateX(-15px);
  width: 40px;
  height: 40px;
  background-color: #8c82f0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  margin-bottom: -40px;
  float: right;
}
.modal1__close-icon {
  position: relative;
  width: 16px;
  height: 16px;
}
.modal1__close-icon::before, .modal1__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
.modal1__close-icon::before {
  transform: rotate(45deg);
}
.modal1__close-icon::after {
  transform: rotate(-45deg);
}
.modal1__close:hover {
  opacity: 0.9;
}
.modal1__content {
  padding: 40px 70px 60px;
}
@media screen and (max-width: 767px) {
  .modal1__content {
    padding: 30px 20px 40px;
  }
}
.modal1__header {
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .modal1__header {
    flex-direction: column;
    width: 60%;
    margin: 0 auto;
    margin-bottom: 15px;
    gap: 0;
  }
}
.modal1__label {
  display: inline-block;
  padding: 5px 20px;
  background: #6152D1;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.modal1__title {
  font-size: 30px;
  font-weight: bold;
  color: #5c50e6;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .modal1__title {
    font-size: 18px;
  }
}
.modal1__figure {
  width: 100%;
  margin: 0 0 30px;
}
.modal1__figure img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.modal1__body {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  text-align: justify;
  white-space: pre-wrap;
  font-weight: bold;
}

/* --- 閉じるボタンのスタイル --- */
.modal1__close {
  /* 配置: スクロールしても右上に追従するように sticky を使用 */
  position: sticky;
  top: 15px;
  margin-left: auto;
  margin-right: -10px;
  margin-bottom: -40px;
  z-index: 10;
  /* 見た目: 紫色の丸 */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #8c82f0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  /* ホバー時の挙動 */
  transition: opacity 0.3s;
}
.modal1__close:hover {
  opacity: 0.8;
}

/* --- ×印の描画 --- */
.modal__close-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
  /* 2本の線を疑似要素で作る */
  /* 45度回転させて×にする */
}
.modal__close-icon::before, .modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
.modal__close-icon::before {
  transform: rotate(45deg);
}
.modal__close-icon::after {
  transform: rotate(-45deg);
}

#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(../images/interview-bg.png);
  background-size: cover;
  padding: 160px 0;
  /* --- 追加: ボタンのリセット --- */
  /* =========================================
   Component: Modal
   ========================================= */
}
@media screen and (max-width: 767px) {
  #interview {
    padding: 130px 0;
  }
}
#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;
  text-align: center;
}
#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;
}

#strong {
  background-image: url(../images/strong-bg.png);
  background-size: cover;
  padding: 130px 0;
  /* =========================================
   Component: Event List (Grid Layout)
   ========================================= */
  /* =========================================
   Component: Event Card (BEM)
   ========================================= */
}
#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 16px 16px;
  transition: background-color 0.3s;
  margin-top: 20px;
}
#strong .event-card__btn:hover {
  background-color: rgb(74.8703703704, 80.1296296296, 222.1296296296);
}

.modal2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.modal2.is-active {
  opacity: 1;
  visibility: visible;
}
.modal2__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.modal2__container {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  background-color: #fff8e8;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal2__container::-webkit-scrollbar {
  display: none;
}
.modal2__close {
  position: sticky;
  top: 15px;
  margin-left: auto;
  margin-right: 15px;
  margin-bottom: -40px;
  z-index: 10;
  width: 36px;
  height: 36px;
  background-color: #8c82f0;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal2__close-icon {
  position: relative;
  width: 14px;
  height: 14px;
}
.modal2__close-icon::before, .modal2__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transform: rotate(45deg);
}
.modal2__close-icon::after {
  transform: rotate(-45deg);
}
.modal2__content {
  padding: 30px 70px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .modal2__content {
    padding: 30px 20px 40px;
  }
}
.modal2__main-title {
  font-size: 40px;
  font-weight: bold;
  color: #7266e3;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal2__main-title {
    font-size: 20px;
  }
}
.modal2__figure {
  position: relative;
  width: 100%;
  margin-bottom: 25px;
}
.modal2__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal2__badge {
  position: absolute;
  top: -45px;
  right: -10px;
  width: 100px;
  height: 100px;
  background-color: #f3bd2a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .modal2__badge {
    top: -25px;
    right: -10px;
    width: 80px;
    height: 80px;
  }
}
.modal2__badge-num {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .modal2__badge-num {
    font-size: 30px;
  }
}
.modal2__badge-unit {
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .modal2__badge-unit {
    font-size: 16px;
  }
}
.modal2__section {
  width: 100%;
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
.modal2__section-label {
  font-size: 30px;
  font-weight: bold;
  color: #6152D1;
  margin-bottom: 10px;
  transform: translateY(-80%);
}
.modal2__text-blue {
  color: #6152D1;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  text-align: left;
  width: 75%;
  margin: 0 auto;
}
.modal2__section--point {
  padding-top: 30px;
}
.modal2__point-label {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f3bd2a;
  color: #fff;
  font-weight: bold;
  padding: 6px 24px;
  border-radius: 20px;
  font-size: 14px;
}
.modal2__point-title {
  font-weight: bold;
  font-size: 14px;
  line-height: 2;
}
.modal2__text {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 2;
}
.modal2__contents-area {
  margin-top: 20px;
}
.modal2__contents-label {
  font-weight: bold;
  color: #7266e3;
  font-size: 14px;
  margin-bottom: 10px;
}
.modal2__contents-label .small {
  font-size: 14px;
  font-weight: normal;
}
.modal2__list {
  list-style: none;
  text-align: left;
  display: inline-block;
}
.modal2__list li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}
.modal2__list li::before {
  content: "●";
  color: #7266e3;
  position: absolute;
  left: 0;
  top: 0;
}
.modal2 .kome {
  color: #6152D1;
  font-size: 12px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}
.modal2__action {
  width: 60%;
}
.modal2__btn-submit {
  display: block;
  width: 100%;
  background-color: #7266e3;
  color: #fff;
  text-align: center;
  padding: 15px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(114, 102, 227, 0.4);
}
.modal2__btn-submit:hover {
  opacity: 0.9;
}

#recommend {
  position: relative;
  background-color: #8c82ea;
  padding: 60px 0;
  font-family: "Noto Sans JP", sans-serif;
  /* =========================================
   Component: Video Slider
   ========================================= */
}
#recommend img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#recommend .main-copy {
  text-align: center;
  font-size: clamp(1.875rem, 1.5716019417rem + 1.2944983819vw, 3.125rem);
  font-weight: bold;
  margin-bottom: 50px;
  color: #fff;
}
#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%;
    line-height: 36px;
    font-size: 28px;
    padding: 15px 0;
    border: 4px solid #fff;
  }
}
#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(../images/footer-bg.png);
  background-size: cover;
  height: 10vw;
}
@media screen and (max-width: 767px) {
  .footer-raw {
    height: 30vw;
  }
}

/* =========================================
   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 */