* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  padding-top: 75px;
  background: #F4F4F4;
}
@media screen and (max-width: 767px) {
  body {
    padding-top: 84px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background: #fff;
}

header.heder-scroll {
  z-index: 1000;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  height: auto;
}

.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: center;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 50px 52px;
  padding-top: 50px;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

/* 共通ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 400px;
  height: 80px;
  padding: 24px 0 24px 55px;
  border: 1px solid #000;
  border-radius: 40px;
  box-sizing: border-box;
  text-decoration: none;
  background: #fff;
  font-size: 18px;
  font-weight: 600;
}

.btn.arrow-right {
  background-image: url('../img/icon_arrow-right.png');
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 24px 24px;
}

.btn.arrow-down {
  background-image: url('../img/icon_arrow-down.png');
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 24px 24px;
}


h2.white {
  color: #fff;
  background-image: url('../img/icon_kempo_white.png');
}

h2.black {
  color: #000;
  background-image: url('../img/icon_kempo_black.png');
}

.en-title {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

.white + .en-title {
  color: #fff;
}

.black + .en-title {
  color: #000;
}

/* ヘッダーのスタイル */
.header-container {
  display: flex;
  justify-content: space-between;
  padding-left: clamp(16px, calc(100vw * 70 / 1920), 70px);
  padding-right: clamp(12px, calc(100vw * 60 / 1920), 60px);
  padding-top: 22px;
  height: 75px;
  gap: clamp(12px, 2vw, 32px);
}

.header-container .header-logo {
  font-size: 20px;
  font-weight: 700;
}

.header-container .global-nav-list {
  display: flex;
  gap: 3.125vw;
}

.header-container .global-nav-list li {
  font-size: 16px;
  font-weight: 600;
}

/* ナビ/ハンバーガー */
body.is-menu-open {
  overflow: hidden;
}

.global-nav {
  position: relative;
}

.hamburger {
  position: relative;
  display: none;
  width: clamp(40px, calc(100vw * 60 / 640), 60px);
  height: clamp(40px, calc(100vw * 60 / 640), 60px);
  background: #2E61E2;
  border: none;
  border-radius: 50%;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 50%;
  display: block;
  width: calc(clamp(40px, calc(100vw * 60 / 640), 60px) * 0.45);
  height: 2px;
  background: #FFF;
  transition: transform 0.22s ease, top 0.22s ease, opacity 0.18s ease;
  transform-origin: center center;
  transform: translateX(-50%) rotate(0deg);
}

.hamburger span:first-child {
  top: calc(50% - (clamp(40px, calc(100vw * 60 / 640), 60px) * 0.12));
}

.hamburger span:last-child {
  top: calc(50% + (clamp(40px, calc(100vw * 60 / 640), 60px) * 0.12));
}

.hamburger[aria-expanded="true"] span:first-child {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger[aria-expanded="true"] span:last-child {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.mv {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #ffffff 0px, #ffffff 43px, #f5f5f5 43px, #f5f5f5 100%);
}

.mv .splide {
  display: flex;
  width: 70.83vw;
  margin: 0;
  aspect-ratio: 1360 / 860;
  z-index: 1;
}

.mv .splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mv .splide__slide {
  position: relative;
}

.mv .splide__track {
  border-radius: 0 40px 40px 0;
}

.mv .splide__arrow--prev,
.mv .splide__arrow--next {
  display: none;
}

.mv .splide .splide__pagination {
  justify-content: right;
  z-index: 3;
}

.mv .splide__pagination__page {
  margin: 0 5px;
  width: 14px;
  height: 14px;
  border: 1px solid #000;
  background: #fff;
}

.mv .splide__pagination__page.is-active {
  background: #000;
  transform: none;
}

.mv > img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-2.79%);
  width: 43.28vw;
  height: auto;
  object-fit: contain;
  z-index: 2;
}

.read {
  margin-top: 80px;
  position: relative;
  z-index: 3;
}

.read .read-wrap {
  display: flex;
  gap: 42px;
}

.read .read-wrap img {
  width: 39.09%;
  max-width: 474px;
  aspect-ratio: 474 / 375;
  object-fit: contain;
}

.read .read-wrap .read-text {
  line-height: 2;
}

.read .read-wrap .read-text span {
  font-size: clamp(16px, calc(100vw * 18 / 1200), 18px);
  font-weight: 700;
  color: #EA335A;
}

.read .read-wrap .read-text strong {
  font-size: clamp(18px, calc(100vw * 25 / 1200), 25px);
  line-height: 1.59;
}

.read .read-comment {
  display: flex;
  align-items: center;
  gap: 72px;
  margin-top: 80px;
  padding: 20px 56px;
  border: 3px solid #2E61E2;
  border-radius: 20px;
  background: #fff;
}

.read .read-comment .comment-title {
  font-size: 20px;
  font-weight: 700;
  color: #2E61E2;
  background-image: url('../img/icon_speaker.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 45px 45px;
  padding-left: calc(45px + 8px);
}

.read .read-comment-wrap {
  width: 100%;
}

.read .read-comment .comment-text {
  padding-top: 10px;
  line-height: 2;
}

.read .read-comment figure img {
  display: block;
  margin: 0 auto;
}

.read .read-comment figure figcaption {
  line-height: 2.2;
  text-align: center;
}

.read .read-comment figure figcaption span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.46;
}

@media screen and (min-width: 1100px) {
  .read .read-comment-wrap {
    width: 715px;
    flex: 0 0 715px;
  }
}

.trial-section {
  position: relative;
  margin-top: 100px;
  scroll-margin-top: 75px;
  padding-top: 80px;
  padding-bottom: 100px;
  background: #2E61E2;
}

/* デコレーション */
.trial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-38.41%);
  width: 35.58vw;
  aspect-ratio: 667 / 992;
  background-image: url('../img/img_deco01.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.trial-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(32.08%);
  width: 21.58vw;
  aspect-ratio: 410 / 1409;
  background-image: url('../img/img_deco02.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.trial-section .inner {
  padding: 0;
}

.trial-section h2 {
  color: #fff;
  text-align: center;
  background-image: url('../img/icon_kempo_white.png');
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 50px 52px;
  padding-top: 50px;
}

.trial-section .trial-cards-area {
  position: relative;
}

.trial-section .trialMoreBtn {
  display: none;
}

.trial-section .trial-card-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  margin-top: 50px;
}

.trial-section .trial-card-wrap .trial-card {
  width: 320px;
  height: 320px;
  padding: 40px 7px;
  background-color: #fff;
  background-image: url('../img/img_note.png');
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 320px 320px;
  text-align: center;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.15);
}

.trial-section .trial-card-wrap .trial-card.narrow {
  padding: 20px 7px 22px;
}

.trial-section .trial-card-wrap .trial-card .card-title {
  font-size: 27px;
  font-weight: 500;
}

.trial-section .trial-card-wrap .trial-card .card-title span {
  font-size: 34px;
  font-weight: 700;
  color: #EA335A;
}

.trial-section .trial-card-wrap .trial-card .card-text {
  margin-top: 33px;
  font-size: 18px;
  line-height: 1.8;
}

.trial-section .deco_text {
  position: relative;
  max-width: 980px;
  margin: 80px auto 0;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

.trial-section .deco_text::before,
.trial-section .deco_text::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 3px;
  height: 132px;
  background: #fff;
  transform-origin: center;
  transform: translateY(-50%) rotate(0deg);
  border-radius: 2px;
}

.trial-section .deco_text::before {
  left: clamp(8px, 1.5vw, 24px);
  transform: translateY(-50%) rotate(-208.51deg);
}

.trial-section .deco_text::after {
  right: clamp(8px, 1.5vw, 24px);
  transform: translateY(-50%) rotate(28.51deg);
}

#image-carousel2 {
  overflow: hidden;
  width: 100%;
  margin-top: 46px;
  position: relative;
  z-index: 5;
}

#image-carousel2 .splide {
  width: 100%;
}

#image-carousel2 .splide__list,
#image-carousel2 .splide__track {
  align-items: center;
}

#image-carousel2 .splide__list {
  height: 370px;
}

#image-carousel2 .splide__slide {
  margin-right: 30px !important;
}

#image-carousel2 .splide__slide .splide-caption {
  position: absolute;
  bottom: -27px;
  width: 100%;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
}

.trial-section .trial-contact {
  text-align: center;
  margin-top: 80px;
}

.trial-section .trial-contact .btn {
  width: 360px;
  max-width: calc(100% - 40px);
  height: 72px;
  padding: 20px 0 20px 30px;
  border-radius: 36px;
}

.trial-section .trial-contact .btn.arrow-right,
.trial-section .trial-contact .btn.arrow-down {
  background-position: right 24px center;
}

.what-section {
  margin-top: 80px;
  scroll-margin-top: 155px;
  padding-bottom: 100px;
}

.what-section .what-wrap {
  display: flex;
  gap: 45px;
  margin-top: 100px;
}

.what-section .what-wrap img {
  width: 48.09vw;
  aspect-ratio: 529 / 451;
  object-fit: contain;
}

.what-section .what-read h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
  color: #EA335A;
}

.what-section .what-read p {
  margin-top: 15px;
  line-height: 2.0;
}

.what-section .introVideo{
  position: relative;
  padding-top: 80px;
  width: 100%;
}

.what-section .introVideo::after{
  content: "";
  position: absolute;
  top: 20px;
  right: -3.13vw;
  width: 760px;
  height: 394px;
  background: #2f67d3;
  border-radius: 40px;
  z-index: 0;
}

.what-section .introVideo__label{
  position: absolute;
  top: 33px;
  right: 0;
  width: 760px;
  height: 60px;
  justify-content: flex-end;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: right;
  z-index: 2;
}

.what-section .introVideo__videoBox{
  position: relative;
  z-index: 1;
  max-width: 1097.7px;
  margin: 0 auto;
}

.what-section .introVideo__video{
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #000;
}

.what-section .introVideo__play{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.what-section .introVideo__play img{
  width: 80px;
  height: 80px;
}

.schedule-section {
  position: relative;
  scroll-margin-top: 75px;
  padding-top: 80px;
  padding-bottom: 100px;
  background: #EA335A;
}

/* デコレーション */
.schedule-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-31.71%);
  width: 39vw;
  aspect-ratio: 741 / 1017;
  background-image: url('../img/img_deco03.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.schedule-section .caution {
  margin-top: 15px;
  color: #fff;
  text-align: center;
}

.schedule-section .eventTableWrap {
  max-width: 1105px;
  width: 100%;
  margin: 60px auto 0;
  border-radius: 20px;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.schedule-section .eventTableWrap::-webkit-scrollbar {
  height: 16px;
}
 
.schedule-section .eventTableWrap::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 8px;
}
 
.schedule-section .eventTableWrap::-webkit-scrollbar-track {
  background: #EA335A;
  border-radius: 8px;
}

.schedule-section .eventTable {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.schedule-section .eventTable th,
.schedule-section .eventTable td {
  border: 1px solid #000;
  text-align: center;
  padding: 0;
}

.schedule-section .eventTable thead th {
  background: #2E61E2;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  padding: 4px 0;
}

.schedule-section .eventTable tbody td {
  background: #fff;
  height: 335px;
  vertical-align: top;
}

.schedule-section .eventTable__cellInner {
  height: 340px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 37px 0;
}

.schedule-section .eventTable__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.ob-section {
  position: relative;
  margin-top: 100px;
  scroll-margin-top: 175px;
  padding-bottom: 100px;
}

.ob-section .inner {
  padding: 0;
}

.ob-section .obMoreBtn {
  display: none;
}

.ob-section .interviewCards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
}

.ob-section .interviewCard {
  position: relative;
  width: 340px;
  height: 500px;
  padding: 20px 12px 24px;
  border-radius: 24px;
  background: #3367d6;
  box-sizing: border-box;
}

.ob-section .interviewCard__image {
  width: 100%;
  height: 220px;
  border-radius: 24px;
  overflow: hidden;
}

.ob-section .interviewCard__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ob-section .interviewCard__body {
  padding-top: 16px;
  padding-bottom: 130px;
  color: #fff;
  text-align: center;
}

.ob-section .interviewCard__name {
  margin: 0;
  line-height: 1.6;
}

.ob-section .interviewCard__nameText {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.6;
}

.ob-section .interviewCard__nameHonorific {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}

.ob-section .interviewCard__career {
  margin-top: 4px;
}

.ob-section .interviewCard__career p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.ob-section .interviewCard__footer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.ob-section .interviewCard__movie {
  margin: 0 0 2px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

.ob-section .interviewCard__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 0;
  padding: 16px 22px;
  border: 1px solid #222;
  border-radius: 9999px;
  background: #fff;
  color: #111;
  text-decoration: none;
  box-sizing: border-box;
}

.ob-section .interviewCard__buttonText {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.ob-section .interviewCard__buttonIcon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.ob-section .interviewCard__buttonIcon img {
  display: block;
  width: 100%;
  height: 100%;
}

.girls-kempo-section {
  position: relative;
  margin: 225px 0 227px;
  background: #EA335A;
}

.girls-kempo-section::before {
  content: "";
  position: absolute;
  top: 104px;
  left: 0;
  width: 100%;
  height: 772px;
}

.girls-kempo-section::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-59.26%);
  width: 21.58vw;
  aspect-ratio: 578 / 950;
  background-image: url('../img/img_deco04.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.girls-kempo-section__inner {
  position: relative;
  max-width: 100%;
  min-height: 980px;
  margin: 0 auto;
}

.girls-kempo-section__imageMain {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-20.63%);
  width: 44.27%;
  z-index: 2;
  overflow: hidden;
  border-radius: 0 48px 48px 0;
}

.girls-kempo-section__imageMain img {
  display: block;
  width: 100%;
  height: auto;
}

.girls-kempo-section__content {
  position: relative;
  z-index: 2;
  width: 620px;
  margin-left: 50%;
  padding: 60px 48px 0 0;
  color: #ffffff;
  box-sizing: border-box;
}

.girls-kempo-section__title {
  margin: 0 0 34px;
  padding-top: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 2.0;
  text-align: left;
}

.girls-kempo-section__text p {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 2;
}

.girls-kempo-section__text p:last-child {
  margin-bottom: 0;
}

.girls-kempo-section__cta {
  margin-top: 80px;
}

.girls-kempo-section__ctaLead {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 600;
  line-height: 2.0;
}

.girls-kempo-section__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  padding: 18px 24px;
  border: 1px solid #222222;
  border-radius: 9999px;
  background: #ffffff;
  color: #222222;
  text-decoration: none;
  box-sizing: border-box;
}

.girls-kempo-section__buttonMain {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.girls-kempo-section__buttonIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.girls-kempo-section__buttonIcon img {
  display: block;
  width: 100%;
  height: auto;
}

.girls-kempo-section__buttonText {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.girls-kempo-section__buttonArrow {
  position: absolute;
  top: 50%;
  right: 26px;
  width: 24px;
  height: 24px;
  border: 1px solid #4a4a4a;
  border-radius: 50%;
  flex-shrink: 0;
  transform: translateY(-50%);
}

.girls-kempo-section__buttonArrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #4a4a4a;
  border-right: 1px solid #4a4a4a;
  transform: translate(-60%, -50%) rotate(45deg);
}

.girls-kempo-section__imageSub {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(49.83%);
  width: 54.69%;
  z-index: 2;
}

.girls-kempo-section__imageSub img {
  display: block;
  width: 100%;
  height: auto;
}

.contact-section {
  margin: 100px 0 107px;
  scroll-margin-top: 175px;
  position: relative;
  z-index: 3;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(34.82%);
  width: 33.58vw;
  aspect-ratio: 638 / 1011;
  background-image: url('../img/img_deco05.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-section .representative {
  margin-top: 20px;
  font-size: 18px;
  text-align: center;
}

.contact-section .representative .representative-name {
  font-weight: 600;
}

.contact-section .representative p + p {
  margin-top: 10px;
}

.contact-section .representative p > a {
  text-decoration: underline;
  color: -webkit-link;
}

.contact-section .caution {
  margin-top: 20px;
  text-align: center;
}

.contact-section .contactCardItem {
  position: relative;
  width: 320px;
  height: 580px;
}

.contact-section .contactCardList {
  display: grid;
  grid-template-columns: repeat(3, 320px);
  justify-content: center;
  gap: 88px 42px;
  margin-top: 98px;
}

.contact-section .contactCardItem::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -20px;
  width: 320px;
  height: 580px;
  background: #2E61E2;
  border-radius: 20px;
  z-index: 0;
}

.contact-section .contactCard__label {
  position: absolute;
  top: -40px;
  right: 0;
  width: 320px;
  height: 40px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
  z-index: 2;
}

.contact-section .contactCard {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 580px;
  padding-bottom: 25px;
  background: #fff;
  border-radius: 20px;
}

.contact-section .contactCard__image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #ddd;
}

.contact-section .contactCard__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section .contactCard__body {
  display: flex;
  flex-direction: column;
  height: calc(100% - 172px);
  padding: 10px 20px 25px;
}

.contact-section .contactCard__contact {
  margin-bottom: 5px;
}

.contact-section .contactCard__line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  line-height: 1.3;
  color: #222;
  word-break: break-all;
}

.contact-section .contactCard__line:last-child {
  margin-bottom: 0;
}

.contact-section .contactCard__line a {
  color: #222;
  text-decoration: underline;
}

.contact-section .contactCard__icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.contact-section .contactCard__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-section .contactCard__person {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.6;
}

.contact-section .contactCard__box {
  height: 280px;
  margin-top: auto;
  padding: 10px 15px;
  border: 1px solid #2E61E2;
  border-radius: 20px;
  overflow: hidden;
}

.contact-section .contactCard__box p {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.27;
}

.contact-section .contactCard__box p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1400px) {
  .girls-kempo-section__inner {
    max-width: 100%;
    min-height: 900px;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .girls-kempo-section__imageMain {
    width: 48%;
  }

  .girls-kempo-section__content {
    width: 44%;
    padding-right: 0;
  }

  .girls-kempo-section__text p {
    font-size: 16px;
    line-height: 1.8;
  }

  .girls-kempo-section__cta {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1200px) {
  .header-container .header-logo {
    font-size: clamp(16px, calc(100vw * 18 / 1200), 18px);
  }

  .header-container .global-nav-list {
    gap: clamp(12px, calc(100vw * 40 / 1200), 20px);
  }

  .header-container .global-nav-list li {
    font-size: clamp(12px, calc(100vw * 14 / 1200), 14px);
  }
  
  .trial-section .deco_text {
    font-size: 18px;
    padding: 0 30px;
  }

  .trial-section .deco_text::before,
  .trial-section .deco_text::after {
    top: 50%;
    height: 100px;
  }

  .trial-section .deco_text::before {
    left: calc(50% - 172px);
  }

  .trial-section .deco_text::after {
    right: calc(50% - 172px);
  }

  .ob-section .interviewCards {
    justify-content: center;
    padding: 40px;
  }
}

@media screen and (max-width: 1100px) {
  .contact-section .contactCardList {
    grid-template-columns: repeat(2, 320px);
  }
}

@media screen and (max-width: 900px) {
  .girls-kempo-section {
    padding: 0;
  }

  .girls-kempo-section::before {
    top: 160px;
    height: calc(100% - 240px);
  }

  .girls-kempo-section__inner {
    min-height: auto;
    padding: 0 16px;
  }

  .girls-kempo-section__imageMain {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    left: -20px;
  }

  .girls-kempo-section__content {
    width: 100%;
    margin-left: 0;
    padding: 32px 0 0;
  }

  .girls-kempo-section__title {
    font-size: 20px;
    line-height: 1.5;
  }

  .girls-kempo-section__text p {
    font-size: 14px;
    line-height: 1.9;
  }

  .girls-kempo-section__button {
    width: 100%;
    max-width: 340px;
  }

  .girls-kempo-section__imageSub {
    position: relative;
    right: -17px;
    bottom: auto;
    width: 100%;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  header.heder-scroll {
    z-index: 1000;
  }

  header.header-menu-open {
    z-index: 1000;
  }

  .header-container {
    height: 84px;
  }

  .header-container .header-logo {
    width: 82%;
  }

  .hamburger {
    display: block;
  }

  .header-container .global-nav-list {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 8px 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    gap: 0;
    transform-origin: top center;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 240ms cubic-bezier(.2,.9,.2,1), opacity 200ms ease;
    pointer-events: none;
    z-index: 1100;
    overflow: auto;
  }

  .global-nav {
    z-index: 1200;
  }
  
  .global-nav::before {
    content: "";
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1090;
  }

  .global-nav.open::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .global-nav.open .global-nav-list {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav-list li {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }
}

@media screen and (max-width: 767px) {
  .mv {
    padding-bottom: 93.13vw;
  }

  .mv .splide {
    width: 100%;
    aspect-ratio: auto;
    padding-right: 20px;
  }

  .mv .splide .splide__pagination {
    justify-content: right;
    right: 24px;
  }

  .mv > img {
    top: 0;
    transform: translateY(57.57%);
    width: 100%;
  }

  .read {
    margin-top: 0;
  }

  .read .read-wrap {
    gap: 61px;
    flex-direction: column;
    align-items: center;
  }

  .read .read-wrap img {
      width: 62.5vw;
      max-width: 400px;
  }

  .read .read-wrap .read-text p {
    font-feature-settings: "palt";
    font-size: 2;
  }

  .read .read-wrap .read-text span {
    font-size: 18px;
  }

  .read .read-wrap .read-text strong {
    font-size: 20px;
    line-height: 1.8;
  }

  .read .read-comment {
    flex-direction: column;
    gap: 50px;
    margin: 80px 0;
    padding: 51px 20px 46px;
  }

  .read .read-comment .comment-text {
    padding-top: 21px;
  }

  .read .read-comment figure {
    display: flex;
    align-items: center;
    gap: 36px;
  }

  .read .read-comment .comment-title {
    font-size: 18px;
  }

  .read .read-comment figure img {
    max-width: 200px;
    width: 33.3333333%;
  }

  .read .read-comment figure {
    gap: 5.625vw;
  }

  .read .read-comment figure figcaption {
    font-size: 14px;
  }

  .read .read-comment figure figcaption span {
    font-size: 16px;
  }

  .trial-section::before {
    width: 58.59vw;
    transform: translateY(-2.86%);
    background-image: url(../img/img_deco01-sp.png);
    aspect-ratio: 376 / 733;
  }

  .trial-section::after {
    width: 33.59vw;
    transform: translateY(66.18%);
    background-image: url(../img/img_deco02-sp.png);
    aspect-ratio: 219 / 952;
  }

  .trial-section .inner {
    padding: 0 20px;
  }

  .trial-section h2 {
    font-size: 20px;
  }

  .trial-cards-area {
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .trial-cards-area.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    pointer-events: none;
  }

  .trialMoreBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    margin: 61px auto 0;
    padding: 16px 80px;
    border: 1px solid #fff;
    border-radius: 39px;
    background: #2E61E2;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
  }

  .trialMoreBtn[hidden] {
    display: none !important;
  }

  .trial-section .trial-card-wrap {
    margin-top: 30px;
    gap: 40px;
  }

  .trial-section .trial-card-wrap .trial-card {
    width: 100%;
    max-width: 540px;
    height: auto;
    background: #fff;
  }

  .trial-section .deco_text {
    font-size: 16px;
    padding: 0 20px;
  }

  .trial-section .trial-card-wrap .trial-card .card-title {
    font-size: 18px;
  }

  .trial-section .trial-card-wrap .trial-card .card-title span {
    font-size: 24px;
  }

  .trial-section .trial-card-wrap .trial-card .card-text {
    font-size: 16px;
  }

  #image-carousel2 {
    margin-top: 80px;
  }

  #image-carousel2 .splide__slide .splide-caption {
    bottom: -30px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .what-section .what-wrap {
    flex-direction: column;
    align-items: center;
    gap: 100px;
    margin-top: 80px;
  }

  .what-section .what-read h3 {
    font-size: 20px;
  }

  .what-section .what-wrap img {
    max-width: 538px;
    width: 82.65%;
  }

  .what-section .introVideo::after{
    top: 50px;
    right: 0;
    max-width: 760px;
    width: calc(56.71875vw + 30px);
    height: 31.875vw;
  }

  .what-section .introVideo__label {
    top: 52px;
    right: 30px;
    height: auto;
    font-size: 16px;
  }
  
  .what-section .introVideo__video {
    width: calc(100% - 30px);
  }

  .schedule-section::before {
    width: 53.91vw;
    transform: translateY(-12.57%);
  }

  .schedule-section .eventTableWrap {
    margin: 80px auto 0;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .schedule-section .eventTable {
    width: 1105px;
  }

  .ob-section .obCardsArea {
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .ob-section .obCardsArea.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    pointer-events: none;
  }

  .ob-section .obMoreBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    margin: 61px auto 0;
    padding: 16px 80px;
    border: 1px solid #2E61E2;
    border-radius: 39px;
    background: #fff;
    color: #2E61E2;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    cursor: pointer;
  }

  .ob-section .interviewCards {
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    width: 100%;
  }

  .ob-section .interviewCard {
    width: 78.125vw;
    height: auto;
    padding: 30px;
  }

  .ob-section .interviewCard__image {
    height: auto;
  }

  .ob-section .interviewCard__image img {
    height: auto;
  }

  .ob-section .interviewCard__body {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .ob-section .interviewCard__nameText {
    font-size: 20px;
  }

  .ob-section .interviewCard__nameHonorific {
    font-size: 16px;
  }

  .ob-section .interviewCard__career {
    font-size: 14px;
  }

  .ob-section .interviewCard__movie {
    padding-top: 28px;
    padding-bottom: 3px;
    font-size: 16px;
  }

  .ob-section .interviewCard__footer {
    position: static;
  }

  .ob-section .interviewCard__button {
    justify-content: center;
    gap: 6px;
    padding: 16px 10px;
  }

  .ob-section .interviewCard__button.sp-mgTop {
    margin-top: 74px;
  }

  .girls-kempo-section {
    margin: 285px 0 178px;
  }

  .girls-kempo-section::after {
    width: 55vw;
  }
  
  .girls-kempo-section__imageMain {
    left: -20px;
  }

  .girls-kempo-section__imageSub {
    right: -16px;
  }

  .girls-kempo-section__cta {
    text-align: center;
  }

  .girls-kempo-section__ctaLead {
    margin: 0 0 20px;
    font-size: 18px;
  }

  .girls-kempo-section__button {
    margin: 0 auto;
  }
  
  .girls-kempo-section__text {
    width: 100%;
  }

  .contact-section::before {
    background: none;
  }
  
  .contact-section {
    scroll-margin-top: 84px;
  }

  .contact-section .contactCard {
    width: 78.125vw;
    height: auto;
  }

  .contact-section .contactCardList {
    grid-template-columns: 78.125vw;
    gap: 94px 42px;
  }

  .contact-section .contactCardItem {
    width: 78.125vw;
    height: auto;
  }

  .contact-section .contactCardItem::after {
    right: -18px;
    width: 78.125vw;
    height: calc(100% - 60px);
  }

  .contact-section .contactCard__label {
    font-size: 16px;
  }

  .contact-section .contactCard__box {
    height: auto;
    padding: 30px 20px;
  }
  
}

/* TOPへ戻るボタン */
.to-top {
  position: fixed;
  right: 154px;
  bottom: 21px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 500;
  pointer-events: none;
}

.to-top img {
  width: clamp(40px, calc(100vw * 60 / 640), 60px);
  height: clamp(40px, calc(100vw * 60 / 640), 60px);
  display: block;
  border-radius: 50%;
}

.to-top .to-top-text {
  font-size: 12px;
  color: #111;
  background: transparent;
}

.to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .to-top {
    right: 50px;
  }
}

/* フッターのスタイル */
.footer-container {
  height: 67px;
  text-align: center;
}

.footer-container .footer-title {
  padding-bottom: 14px;
  font-size: 20px;
  font-weight: 700;
}

.footer-container .footer-small {
  font-size: 12px;
}
