*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2d2d2d;
  background: #f8f6f1;
  line-height: 1.8;
  overflow-x: hidden
}

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

a {
  color: inherit;
  text-decoration: none
}

.pc {
  display: block
}

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

.mob {
  display: none
}

@media(max-width: 768px) {
  .mob {
    display: block
  }
}

.section-label {
  font-family: "Oswald", sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  color: #ec4899;
  display: block;
  margin-bottom: .75rem
}

.section-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 1rem
}

.section-title em {
  font-style: normal;
  color: #ec4899
}

@media(max-width: 768px) {
  .section-title {
    font-size: 1.5rem
  }
}

.section-desc {
  color: #666;
  margin-bottom: 2.5rem
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none
}

.btn--header {
  background: #ec4899;
  color: #fff;
  padding: .6rem 1.2rem;
  font-size: .85rem
}

.btn--header:hover {
  background: rgb(217.12, 66.24, 140.76)
}

@media(max-width: 768px) {
  .btn--header {
    font-size: .75rem;
    padding: .5rem .8rem
  }
}

.btn--main {
  background: #ec4899;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(236, 72, 153, .35)
}

.btn--main:hover {
  background: rgb(217.12, 66.24, 140.76);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(236, 72, 153, .4)
}

@media(max-width: 768px) {
  .btn--main {
    width: 100%;
    justify-content: center;
    font-size: .95rem
  }
}

.btn--final {
  background: #fff;
  color: #ec4899;
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.btn--final:hover {
  background: hsl(0, 0%, 97%);
  transform: translateY(-2px)
}

@media(max-width: 768px) {
  .btn--final {
    width: 100%;
    justify-content: center;
    font-size: .95rem
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(26, 26, 46, .95);
  backdrop-filter: blur(8px)
}

.header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

@media(max-width: 768px) {
  .header__inner {
    padding: .75rem 1rem
  }
}

.header__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: #fff
}

.header__logo-ga {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ec4899;
  line-height: 1
}

@media(max-width: 768px) {
  .header__logo-ga {
    font-size: 1.4rem
  }
}

.header__logo-text {
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.4
}

.header__logo-text small {
  font-size: .7rem;
  opacity: .8
}

@media(max-width: 768px) {
  .header__logo-text {
    font-size: .75rem
  }
}

.mv {
  min-height: 100vh;
  background: #1a1a2e;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden
}

.mv__bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.mv__bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06
}

.mv__bg-shape--1 {
  width: 600px;
  height: 600px;
  background: #ec4899;
  top: -150px;
  right: -150px
}

@media(max-width: 768px) {
  .mv__bg-shape--1 {
    width: 300px;
    height: 300px;
    top: -80px;
    right: -80px
  }
}

.mv__bg-shape--2 {
  width: 400px;
  height: 400px;
  background: #fbbf24;
  bottom: -100px;
  left: -100px
}

@media(max-width: 768px) {
  .mv__bg-shape--2 {
    width: 200px;
    height: 200px
  }
}

.mv__bg-shape--3 {
  width: 250px;
  height: 250px;
  background: #fff;
  top: 50%;
  left: 55%;
  opacity: .03
}

@media(max-width: 768px) {
  .mv__bg-shape--3 {
    display: none
  }
}

.mv__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem
}

@media(max-width: 768px) {
  .mv__inner {
    padding: 2.5rem 1.25rem 4rem
  }
}

.mv__badge {
  display: inline-block;
  background: rgba(251, 191, 36, .2);
  color: #fbbf24;
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  letter-spacing: .05em
}

.mv__question {
  font-size: 2.8rem;
  font-weight: 900;
  color: hsla(0, 0%, 100%, .5);
  line-height: 1.3;
  margin-bottom: 1rem
}

@media(max-width: 768px) {
  .mv__question {
    font-size: 1.7rem
  }
}

.mv__copy {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.5rem
}

.mv__copy em {
  font-style: normal;
  color: #ec4899
}

@media(max-width: 768px) {
  .mv__copy {
    font-size: 2rem
  }
}

.mv__sub {
  color: hsla(0, 0%, 100%, .7);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 2
}

@media(max-width: 768px) {
  .mv__sub {
    font-size: .9rem
  }
}

.mv__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .75rem
}

@media(max-width: 768px) {
  .mv__cta {
    align-items: stretch
  }
}

.mv__cta-note {
  font-size: .8rem;
  color: hsla(0, 0%, 100%, .5)
}

.mv__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: hsla(0, 0%, 100%, .4);
  font-family: "Oswald", sans-serif;
  font-size: .65rem;
  letter-spacing: .2em
}

@media(max-width: 768px) {
  .mv__scroll {
    display: none
  }
}

.mv__scroll-line {
  width: 1px;
  height: 40px;
  background: hsla(0, 0%, 100%, .3);
  animation: scrollLine 1.6s ease-in-out infinite
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

.question {
  padding: 6rem 0;
  background: #fff
}

@media(max-width: 768px) {
  .question {
    padding: 4rem 0
  }
}

.question__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem
}

@media(max-width: 768px) {
  .question__inner {
    padding: 0 1.25rem
  }
}

.question__lead {
  text-align: center;
  margin-bottom: 3rem
}

.question__title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5
}

@media(max-width: 768px) {
  .question__title {
    font-size: 1.3rem
  }
}

.question__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem
}

@media(max-width: 768px) {
  .question__cards {
    grid-template-columns: 1fr;
    gap: 1rem
  }
}

.question__card {
  background: #f8f6f1;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-align: center
}

.question__card p {
  font-size: .95rem;
  line-height: 1.7;
  color: #2d2d2d
}

.question__card-icon {
  font-size: 2rem;
  margin-bottom: 1rem
}

.question__answer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: center
}

@media(max-width: 768px) {
  .question__answer {
    flex-direction: column;
    gap: 1rem
  }
}

.question__answer-line {
  flex: 1;
  height: 1px;
  background: #e0ddd6
}

.question__answer-text {
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 480px
}

.question__answer-text strong {
  color: #ec4899
}

@media(max-width: 768px) {
  .question__answer-text {
    font-size: .95rem
  }
}

.skills {
  padding: 6rem 0;
  background: #1a1a2e
}

@media(max-width: 768px) {
  .skills {
    padding: 4rem 0
  }
}

.skills .section-label {
  color: #fbbf24
}

.skills .section-title {
  color: #fff
}

.skills__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem
}

@media(max-width: 768px) {
  .skills__inner {
    padding: 0 1.25rem
  }
}

.skills__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 3rem
}

.skills__item {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 2rem;
  background: hsla(0, 0%, 100%, .04);
  border-radius: 8px;
  transition: background .25s
}

.skills__item:hover {
  background: hsla(0, 0%, 100%, .08)
}

@media(max-width: 768px) {
  .skills__item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
    padding: 1.75rem 1.25rem
  }
}

.skills__num {
  font-family: "Oswald", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ec4899;
  line-height: 1
}

@media(max-width: 768px) {
  .skills__num {
    font-size: 1.8rem
  }
}

.skills__content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem
}

@media(max-width: 768px) {
  .skills__content h3 {
    font-size: 1.1rem
  }
}

.skills__content p {
  color: hsla(0, 0%, 100%, .65);
  font-size: .95rem;
  line-height: 1.8
}

@media(max-width: 768px) {
  .skills__content p {
    font-size: .88rem
  }
}

.skills__icon {
  font-size: 2.5rem;
  text-align: center
}

@media(max-width: 768px) {
  .skills__icon {
    display: none
  }
}

.about {
  padding: 6rem 0;
  background: #f8f6f1
}

@media(max-width: 768px) {
  .about {
    padding: 4rem 0
  }
}

.about__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center
}

@media(max-width: 768px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.25rem
  }
}

.about__desc {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #666
}

.about__desc strong {
  color: #2d2d2d
}

.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem
}

.about__list-icon {
  color: #ec4899;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .1rem
}

.about__badge-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

@media(max-width: 768px) {
  .about__badge-wrap {
    flex-direction: row
  }
}

.about__badge {
  width: 160px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #1a1a2e;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .25rem
}

.about__badge--sub {
  background: #ec4899
}

@media(max-width: 768px) {
  .about__badge {
    width: 130px
  }
}

.about__badge-label {
  font-size: .7rem;
  opacity: .75;
  letter-spacing: .05em
}

.about__badge-text {
  font-family: "Oswald", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1
}

.about__badge-text small {
  font-family: "Noto Sans JP", sans-serif;
  font-size: .9rem
}

@media(max-width: 768px) {
  .about__badge-text {
    font-size: 1.8rem
  }
}

.courses {
  padding: 6rem 0;
  background: #fff
}

@media(max-width: 768px) {
  .courses {
    padding: 4rem 0
  }
}

.courses__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem
}

@media(max-width: 768px) {
  .courses__inner {
    padding: 0 1.25rem
  }
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem
}

@media(max-width: 768px) {
  .courses__grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }
}

.courses__item {
  border-radius: 12px;
  padding: 2rem;
  background: #f8f6f1;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s
}

.courses__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1)
}

.courses__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%
}

.courses__item--game::before {
  background: #4361ee
}

.courses__item--robot::before {
  background: #fbbf24
}

.courses__item--video::before {
  background: #ec4899
}

.courses__item--ai::before {
  background: #2ec4b6
}

@media(max-width: 768px) {
  .courses__item {
    padding: 1.5rem
  }
}

.courses__item-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem
}

.courses__item-header h3 {
  font-size: 1.2rem;
  font-weight: 700
}

.courses__item-icon {
  font-size: 1.8rem;
  line-height: 1
}

.courses__item-desc {
  font-size: .9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.25rem
}

.courses__item-skills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem
}

.courses__item-skills span {
  font-size: .75rem;
  background: #fff;
  border: 1px solid #e0ddd6;
  padding: .25rem .6rem;
  border-radius: 2px;
  color: #666
}

.courses__item-tools {
  font-size: .78rem;
  color: #666;
  font-weight: 500
}

.cta-mid {
  padding: 5rem 0;
  background: #ec4899
}

@media(max-width: 768px) {
  .cta-mid {
    padding: 3.5rem 0
  }
}

.cta-mid__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center
}

@media(max-width: 768px) {
  .cta-mid__inner {
    padding: 0 1.25rem
  }
}

.cta-mid__text {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
  line-height: 1.7
}

.cta-mid__text strong {
  text-decoration: underline;
  text-underline-offset: 4px
}

@media(max-width: 768px) {
  .cta-mid__text {
    font-size: 1.1rem
  }
}

.cta-mid__note {
  margin-top: 1rem;
  font-size: .8rem;
  color: hsla(0, 0%, 100%, .75)
}

.reasons {
  padding: 6rem 0;
  background: #f8f6f1
}

@media(max-width: 768px) {
  .reasons {
    padding: 4rem 0
  }
}

.reasons__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem
}

@media(max-width: 768px) {
  .reasons__inner {
    padding: 0 1.25rem
  }
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

@media(max-width: 768px) {
  .reasons__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
  }
}

@media(max-width: 480px) {
  .reasons__grid {
    grid-template-columns: 1fr
  }
}

.reasons__item {
  background: #fff;
  border-radius: 8px;
  padding: 2rem 1.5rem
}

.reasons__item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .75rem;
  margin-top: .5rem
}

.reasons__item p {
  font-size: .88rem;
  color: #666;
  line-height: 1.8
}

.reasons__item-num {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ec4899;
  line-height: 1;
  margin-bottom: .25rem
}

.access {
  padding: 6rem 0;
  background: #fff
}

@media(max-width: 768px) {
  .access {
    padding: 4rem 0
  }
}

.access__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem
}

@media(max-width: 768px) {
  .access__inner {
    padding: 0 1.25rem
  }
}

.access__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
  align-items: start
}

@media(max-width: 768px) {
  .access__content {
    grid-template-columns: 1fr;
    gap: 2rem
  }
}

.access__school-name {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.4
}

.access__school-ga {
  font-family: "Oswald", sans-serif;
  color: #ec4899;
  font-size: 1.8rem
}

.access__dl {
  margin-bottom: 2rem
}

.access__dl dt {
  font-size: .78rem;
  font-weight: 700;
  color: #ec4899;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 1rem;
  margin-bottom: .2rem
}

.access__dl dt:first-child {
  margin-top: 0
}

.access__dl dd {
  font-size: .95rem;
  color: #2d2d2d
}

.access__map {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10
}

.access__map iframe {
  width: 100%;
  height: 100%
}

.final-cta {
  padding: 7rem 0;
  background: #1a1a2e;
  position: relative;
  overflow: hidden;
  text-align: center
}

@media(max-width: 768px) {
  .final-cta {
    padding: 5rem 0
  }
}

.final-cta__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Oswald", sans-serif;
  font-size: 20rem;
  font-weight: 700;
  color: hsla(0, 0%, 100%, .03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap
}

@media(max-width: 768px) {
  .final-cta__bg-text {
    font-size: 8rem
  }
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem
}

@media(max-width: 768px) {
  .final-cta__inner {
    padding: 0 1.25rem
  }
}

.final-cta__label {
  display: inline-block;
  background: #ec4899;
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  letter-spacing: .1em
}

.final-cta__title {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.5
}

@media(max-width: 768px) {
  .final-cta__title {
    font-size: 1.4rem
  }
}

.final-cta__desc {
  color: hsla(0, 0%, 100%, .65);
  margin-bottom: 2.5rem;
  font-size: .95rem;
  line-height: 1.9
}

.footer {
  background: hsl(240, 27.7777777778%, 9.1176470588%);
  padding: 2.5rem 0
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  text-align: center
}

@media(max-width: 768px) {
  .footer__inner {
    padding: 0 1.25rem
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .5rem
}

.footer__logo-ga {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ec4899
}

.footer__copy {
  font-size: .8rem;
  color: hsla(0, 0%, 100%, .5)
}

.footer__copy a {
  color: hsla(0, 0%, 100%, .7);
  text-decoration: underline
}

.footer__copy a:hover {
  color: #fff
}

.footer__copyright {
  font-size: .75rem;
  color: hsla(0, 0%, 100%, .3)
}

/*# sourceMappingURL=style.css.map */

/* MV 2カラム: 左テキスト・右写真3枚 */
.mv__inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  align-items: center;
  gap: 3rem;
  max-width: 1100px
}

@media(max-width:768px) {
  .mv__inner {
    grid-template-columns: 1fr
  }
}

/* 右側: 3枚縦並び・斜め */
.mv__photos {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1rem 1.5rem 1rem 0.5rem
}

@media(max-width:768px) {
  .mv__photos {
    display: none
  }
}

.mv__photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .35)
}

.mv__photo img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block
}

/* 各写真の傾き */
.mv__photo--1 {
  transform: rotate(2.5deg);
  transform-origin: center center
}

.mv__photo--2 {
  transform: rotate(-2deg);
  transform-origin: center center;
  margin-left: 1rem
}

.mv__photo--3 {
  transform: rotate(2deg);
  transform-origin: center center;
  margin-left: 0.5rem
}

/* ホバー時に水平に戻る */
.mv__photo {
  transition: transform .3s ease, box-shadow .3s ease
}

.mv__photo:hover {
  transform: rotate(0deg) scale(1.03) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45)
}

/* ABOUT 写真レイアウト */
.about__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem
}

.about__photo {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12)
}

.about__photo img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block
}

/* GALLERY */
.gallery {
  padding: 6rem 0;
  background: #f8f6f1
}

@media(max-width:768px) {
  .gallery {
    padding: 4rem 0
  }
}

.gallery__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem
}

@media(max-width:768px) {
  .gallery__inner {
    padding: 0 1.25rem
  }
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem
}

@media(max-width:768px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    gap: 1rem
  }
}

.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease
}

.gallery__item img:hover {
  transform: scale(1.04)
}

/* ====================================================
   カラーリニューアル: 青・黄・ピンク
   ==================================================== */

/* MV: フルスクリーン写真背景 */
.mv {
  background: url('../images/hero.jpg') center top/cover no-repeat;
  background-color: #1e3a8a
}

/* MV バッジ: イエロー */
.mv__badge {
  background: rgba(251, 191, 36, .2);
  color: #fbbf24
}

/* SKILLS: ブルーグラデーション */
.skills {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%)
}

/* FINAL CTA: ブルー×パープル×ピンクグラデーション */
.final-cta {
  background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 50%, #ec4899 100%)
}

/* FINAL CTA 背景テキスト */
.final-cta__bg-text {
  color: rgba(255, 255, 255, .04)
}

/* FOOTER: ディープブルー */
.footer {
  background: #0f172a
}

/* ABOUT バッジ（サブ）: イエロー */
.about__badge--sub {
  background: #fbbf24
}

/* REASONS アイテム: ブルーのトップボーダー */
.reasons__item {
  border-top: 3px solid #3b82f6
}

/* HEADER: 白（常に白・透明度0.8） */
.header {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08)
}

/* CTA MID ボタン: ピンク強調 */
.cta-mid {
  background: linear-gradient(135deg, #ec4899, #f472b6)
}

/* MV オーバーレイ: 薄いグレー */
.mv__overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 247, 252, 0.87)
}

/* MV テキスト: ブルー（グレー背景化に伴う変更） */
.mv__question { color: rgba(30, 58, 138, 0.55) }
.mv__copy { color: #1e3a8a }
.mv__sub { color: rgba(30, 58, 138, 0.72) }
.mv__cta-note { color: rgba(30, 58, 138, 0.55) }
.mv__scroll-line { background: rgba(30, 58, 138, 0.25) }

/* MV 吹き出し（フワフワアニメーション付き） */
.mv__bubble {
  display: inline-block;
  background: rgba(255, 255, 255, .95);
  color: #1e3a8a;
  font-size: 1rem;
  font-weight: 700;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
  position: relative;
  line-height: 1.6
}

.mv__bubble::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 14px solid rgba(255, 255, 255, .95)
}

@media(max-width:768px) {
  .mv__bubble {
    font-size: .88rem;
    padding: .6rem 1.25rem
  }
}

@keyframes mvBubbleFloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ========================================
   QUESTION: 吹き出し形式
   ======================================== */

/* リード説明文 */
.question__lead-desc {
  color: #666;
  font-size: .95rem;
  margin-top: .75rem
}

/* 吹き出しリスト */
.question__voices {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem auto;
  max-width: 780px
}

/* 1件の発言（アバター＋バブル） */
.question__voice {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem
}

.question__voice--right {
  flex-direction: row-reverse
}

/* アバターアイコン */
.question__voice-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  overflow: hidden
}

.question__voice--right .question__voice-icon {
  background: transparent
}

.question__voice-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%
}

/* 吹き出し本体（左） */
.question__voice--left .question__voice-bubble {
  border-radius: 4px 20px 20px 20px
}

/* 吹き出し本体（右） */
.question__voice--right .question__voice-bubble {
  border-radius: 20px 4px 20px 20px
}

.question__voice-bubble {
  background: #fff;
  border: 1.5px solid #e0ddd6;
  padding: 1.25rem 1.5rem;
  max-width: 560px;
  line-height: 1.85;
  font-size: .95rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.question__voice-bubble p {
  margin: 0
}

.question__voice--left .question__voice-bubble strong {
  color: #1e3a8a
}

.question__voice--right .question__voice-bubble strong {
  color: #ec4899
}

@media(max-width:768px) {
  .question__voice-icon {
    width: 42px;
    height: 42px;
    font-size: .72rem
  }

  .question__voice-bubble {
    font-size: .88rem;
    padding: 1rem 1.25rem
  }
}

/* まとめアンサーボックス */
.question__answer {
  margin-top: 3rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto
}

.question__answer-inner {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  border-radius: 16px;
  padding: 2.5rem 3rem;
  text-align: center;
  color: #fff
}

.question__answer-catch {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1rem
}

.question__answer-text {
  font-size: .95rem;
  line-height: 2;
  color: rgba(255, 255, 255, .85)
}

.question__answer-text strong {
  color: #fbbf24
}

@media(max-width:768px) {
  .question__answer-inner {
    padding: 2rem 1.5rem
  }

  .question__answer-catch {
    font-size: 1.15rem
  }

  .question__answer-text {
    font-size: .88rem
  }
}

/* ========================================
   デスクトップ 文字サイズ拡大
   ======================================== */
/* MV メインコピー */
.mv__copy {
  font-size: 3.9rem
}

@media(max-width:768px) {
  .mv__copy {
    font-size: 2rem
  }
}

/* MV 吹き出し */
.mv__bubble {
  font-size: 1.15rem;
  padding: .85rem 2.25rem
}

@media(max-width:768px) {
  .mv__bubble {
    font-size: .88rem;
    padding: .6rem 1.25rem
  }
}

/* MV サブテキスト */
.mv__sub {
  font-size: 1.1rem
}

@media(max-width:768px) {
  .mv__sub {
    font-size: .9rem
  }
}

/* ========================================
   MV em: ゴールド文字 + 1文字ずつウェーブ（CSS only）
   ======================================== */
.mv__copy em {
  font-style: normal
}

.mv-char {
  display: inline-block;
  background: linear-gradient(180deg, #fde68a 0%, #f59e0b 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: charWave 3s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.08s);
}

@keyframes charWave {

  0%,
  30%,
  100% {
    transform: translateY(0)
  }

  15% {
    transform: translateY(-12px)
  }
}