/* ========================================
   CSS変数（フォント設定）
======================================== */

:root {
  /* フォントファミリー */
  --font-main: "Noto Sans JP", sans-serif;
  --font-heading: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  
  /* フォントウェイト */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* フォントサイズ（rem基準） */
  --font-size-xs: 1.2rem;    /* 12px相当 */
  --font-size-sm: 1.4rem;    /* 14px相当 */
  --font-size-base: 1.6rem;  /* 16px相当 */
  --font-size-lg: 1.8rem;    /* 18px相当 */
  --font-size-xl: 2.0rem;    /* 20px相当 */
  --font-size-2xl: 2.4rem;   /* 24px相当 */
  --font-size-3xl: 2.8rem;   /* 28px相当 */
  --font-size-4xl: 3.2rem;   /* 32px相当 */
  --font-size-5xl: 3.6rem;   /* 36px相当 */
  --font-size-6xl: 4.0rem;   /* 40px相当 */
  --font-size-7xl: 4.8rem;   /* 48px相当 */
  --font-size-8xl: 5.6rem;   /* 56px相当 */
  
  /* モバイル専用フォントサイズ（15px基準） */
  --mobile-font-size-xs: 1.3rem;    /* 13px相当 */
  --mobile-font-size-sm: 1.5rem;    /* 15px相当 */
  --mobile-font-size-base: 1.7rem;  /* 17px相当 */
  --mobile-font-size-lg: 1.9rem;    /* 19px相当 */
  --mobile-font-size-xl: 2.1rem;    /* 21px相当 */
  --mobile-font-size-2xl: 2.5rem;   /* 25px相当 */
  --mobile-font-size-3xl: 2.9rem;   /* 29px相当 */
  --mobile-font-size-4xl: 3.3rem;   /* 33px相当 */
  --mobile-font-size-5xl: 3.7rem;   /* 37px相当 */
  --mobile-font-size-6xl: 4.1rem;   /* 41px相当 */
  --mobile-font-size-7xl: 4.9rem;   /* 49px相当 */
  --mobile-font-size-8xl: 5.7rem;   /* 57px相当 */
}

/* ========================================
   基本設定・リセット
======================================== */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

body {
  font-family: var(--font-main);
  font-size: var(--font-size-lg);
  box-sizing: border-box;
  font-weight: var(--font-weight-medium);
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  body {
    font-size: var(--mobile-font-size-base);
  }
}

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

a:hover {
  opacity: 0.7;
}

/* ========================================
   ユーティリティクラス
======================================== */

.inner {
  max-width: 880px;
  margin: 0 auto;
  width: 95%;
}

.container {
  padding: 5rem 0;
}

.sp-only {
  display: none;
}

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

.pc-only {
  display: block;
}

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

/* ========================================
   共通タイトル
======================================== */

.ttl {
  font-size: var(--font-size-7xl);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-heading);
  color: #f54479;
  border-radius: 80px;
  background: #fff;
  box-shadow: 0px 0px 6px 0px #f54479;
  width: fit-content;
  margin: 0 auto;
  padding: 1rem 6.4rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .ttl {
    font-size: var(--mobile-font-size-5xl);
    padding: 1rem 4rem;
  }
}

/* ========================================
   ヘッダー
======================================== */

.head {
  text-align: center;
}

.head-main {
  padding: 1.5rem 0;
  font-size: var(--font-size-4xl);
}

.head-main span {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-4xl);
  line-height: 1.4;
  text-align: center;
  color: #f54479;
  text-shadow:
    1px 1px 0 #000,
    -1px -1px 0 #000,
    -1px 1px 0 #000,
    1px -1px 0 #000,
    0px 1px 0 #000,
    -1px 0 #000,
    -1px 0 0 #000,
    1px 0 0 #000;
}

@media screen and (max-width: 768px) {
  .head-main {
    font-size: var(--mobile-font-size-2xl);
  }
}

.head-sub {
  padding: 0.8rem 0;
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  background: #f54479;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .head-sub {
    font-size: var(--mobile-font-size-3xl);
  }
}

/* ========================================
   メインビジュアル
======================================== */

.mv {
  position: relative;
}

.mv-btn {
  position: absolute;
  left: 58.5%;
  bottom: 11.5%;
  width: 36.5%;
  display: flex;
  gap: 8px;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .mv-btn {
    width: 85%;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 5%;
    flex-direction: row;
  }
}

.mv-btn a {
  width: 100%;
  display: block;
}

/* ========================================
   スケジュールセクション
======================================== */

.schedule {
  background: #fef0f3;
}

/* ========================================
   スケジュール動画
======================================== */

.schedule-video {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2.5rem;
  background: #fff;
  border-radius: 24px;
  border: 3px solid #f54479;
  box-shadow: 0px 8px 16px 0px rgba(245, 68, 121, 0.2);
}

@media screen and (max-width: 768px) {
  .schedule-video {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 3rem;
  }
}

.schedule-video__wrapper {
  flex: 0 0 300px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .schedule-video__wrapper {
    flex: none;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

.schedule-video__player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  background: #000;
}

.schedule-video__text {
  flex: 1;
  padding: 1rem 0;
}

.schedule-video__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: #f54479;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .schedule-video__title {
    font-size: var(--mobile-font-size-2xl);
    text-align: center;
  }
}

.schedule-video__desc {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: #333;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .schedule-video__desc {
    font-size: var(--mobile-font-size-xl);
  }
}

.schedule-desc {
  text-align: center;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-medium);
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .schedule-desc {
    font-size: var(--mobile-font-size-lg);
  }
}

.schedule-desc2 {
  width: 85%;
  margin: 0 auto;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .schedule-desc2 {
    width: 95%;
  }
}

.schedule-list {
  margin-bottom: 3rem;
}

.schedule-item {
  display: flex;
  margin: 0 auto;
  border-radius: 24px;
  border: 5px solid #f54479;
  background: #fff;
  overflow: hidden;
}

.schedule-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .schedule-item:nth-child(even) .schedule-item__img {
    border-radius: 0 18px 18px 0;
  }
}

.schedule-item + .schedule-item {
  margin-top: 4rem;
}

.schedule-item__text {
  padding: 2.3rem 0 1rem;
  flex: 1;
}

@media screen and (max-width: 768px) {
  .schedule-item__text {
    padding: 1rem 0;
  }
}

.schedule-item__text p,
.schedule-item__text h3 {
  padding: 0 6.8rem;
  font-family: var(--font-heading);
}

@media screen and (max-width: 768px) {
  .schedule-item__text p,
  .schedule-item__text h3 {
    padding: 0 5%;
  }
}

.schedule-item__text h3 {
  background-color: #f54479;
  color: #fff;
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  margin-bottom: 1.8rem;
  font-family: var(--font-heading);
}

@media screen and (max-width: 768px) {
  .schedule-item__text h3 {
    font-size: var(--mobile-font-size-2xl);
    line-height: 1.4;
    margin-bottom: 1rem;
  }
}

.schedule-item__text-desc {
  font-size: var(--font-size-xl);
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .schedule-item__text-desc {
    font-size: var(--mobile-font-size-sm);
  }
}

.schedule-item__img {
  width: 45.46%;
}

.schedule-item__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .schedule-item__img {
    border-radius: 18px 0 0 18px;
    overflow: hidden;
    width: 38.46%;
  }
}

.schedule-item__time {
  font-size: var(--font-size-7xl);
  font-feature-settings: "palt" on;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .schedule-item__time {
    font-size: var(--mobile-font-size-lg);
    margin-bottom: 0;
  }
}

/* ========================================
   利用者の声セクション
======================================== */

.voice__item {
  border-radius: 24px;
  border: 2px solid #f54479;
  background: #fff;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 1.3rem 4rem 2rem;
}

@media screen and (max-width: 768px) {
  .voice__item {
    padding: 1.3rem 5% 2rem;
  }
}

.voice__item + .voice__item {
  margin-top: 3.2rem;
}

.voice__item-head {
  display: flex;
  gap: 2.6rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.voice__item-head h3 {
  color: #f54479;
  font-feature-settings: "halt" on;
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  padding-top: 1.7rem;
}

@media screen and (max-width: 768px) {
  .voice__item-head h3 {
    font-size: var(--mobile-font-size-2xl);
    line-height: 1.6;
  }
}

.voice__item-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .voice__item-img {
    width: 120px;
  }
}

.voice__item-img img {
  width: 101px;
  margin-bottom: 1.2rem;
}

.voice__item-img p {
  border-radius: 18.5px;
  background: #f54479;
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "halt" on;
  font-family: var(--font-main);
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  padding: 0.8rem 2.5rem;
}

@media screen and (max-width: 768px) {
  .voice__item-img p {
    padding: 0.8rem 0.8rem;
    border-radius: 4.5px;
    font-size: var(--mobile-font-size-xs);
    line-height: 1.2;
  }
}

.voice__item-text p {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "halt" on;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 2;
}

/* ========================================
   インタビュー動画セクション
======================================== */

.interview {
  background: linear-gradient(135deg, #fff 0%, #fef7f9 100%);
  position: relative;
}

.interview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f54479 0%, #ff6b9d 50%, #f54479 100%);
}

.interview-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .interview-content {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.interview-video {
  flex: 0 0 280px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 12px 24px 0px rgba(245, 68, 121, 0.15);
  background: #000;
  max-height: 500px;
}

@media screen and (max-width: 768px) {
  .interview-video {
    flex: none;
    width: 100%;
    max-width: 300px;
    max-height: 550px;
    margin: 0 auto;
  }
}

.interview-video__player {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  background: #000;
}

@media screen and (max-width: 768px) {
  .interview-video__player {
    max-height: 550px;
  }
}

.interview-text {
  flex: 1;
  padding: 2rem 0;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .interview-text {
    padding: 1rem 0;
  }
}

.interview-desc {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  color: #333;
  line-height: 1.8;
  margin: 0;
  position: relative;
  padding-left: 2rem;
}

.interview-desc::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #f54479 0%, #ff6b9d 100%);
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .interview-desc {
    font-size: var(--mobile-font-size-lg);
    padding-left: 1.5rem;
  }
  
  .interview-desc::before {
    display: none;
  }
}

/* ========================================
   募集要項セクション
======================================== */

.recruit {
  background: #fef0f3;
}

.highlight-text {
  color: #f54479;
  font-weight: 700;
  font-size: 1.1em;
  display: inline-block;
  background: linear-gradient(transparent 60%, rgba(245, 68, 121, 0.2) 60%);
  padding: 0 4px;
}

@media screen and (max-width: 768px) {
  .highlight-text {
    font-size: 1.05em;
  }
}

.recruit__table {
  border: 1px solid #f54479;
}

.recruit__table dl {
  display: flex;
}

.recruit__table dl:not(:first-of-type) dt {
  border-top: 1px solid #fff;
}

.recruit__table dl:not(:first-of-type) dd {
  border-top: 1px solid #f54479;
}

.recruit__table dl dt {
  width: 20%;
  text-align: center;
  color: #fff;
  background-color: #f54479;
  padding: 1.5rem 0;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "halt" on;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}

@media screen and (max-width: 768px) {
  .recruit__table dl dt {
    width: 22%;
  }
}

.recruit__table dl dd {
  flex: 1;
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "halt" on;
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 2;
  padding: 1.5rem 0;
  background: #fff;
  padding-left: 2rem;
  padding-right: 16%;
}

@media screen and (max-width: 768px) {
  .recruit__table dl dd {
    padding-right: 2rem;
  }
}

/* ========================================
   アクセス・地図セクション
======================================== */

.location {
  background: #f8f9fa;
}

.location__content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .location__content {
    flex-direction: column;
    gap: 3rem;
  }
}

.location__map {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.location__map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .location__map iframe {
    height: 300px;
  }
}

.location__info {
  flex: 0 0 400px;
  background: #fff;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
  border: 2px solid #f54479;
}

@media screen and (max-width: 768px) {
  .location__info {
    flex: none;
    width: 100%;
    padding: 2rem;
  }
}

.location__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: #f54479;
  margin-bottom: 2rem;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .location__title {
    font-size: var(--mobile-font-size-xl);
    text-align: center;
  }
}

.location__address {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.location__address-text {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: #333;
  line-height: 1.6;
}

.location__label {
  font-weight: var(--font-weight-bold);
  color: #f54479;
}

.location__access {
  margin-bottom: 2rem;
}

.location__access-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: #333;
  margin-bottom: 1rem;
}

.location__access-text {
  font-family: var(--font-main);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: #666;
  line-height: 1.7;
}

.location__note {
  background: #fef0f3;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #f54479;
}

.location__note-text {
  font-family: var(--font-main);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ========================================
   お問い合わせセクション
======================================== */

.contact {
  background: #fef0f3;
}

.image-cp {
  margin-bottom: 3rem;
}

#mail_form {
  padding: 3rem 3rem 3.5rem;
}

#mail_form dl {
  justify-content: space-between;
  margin-bottom: 2rem;
}

#mail_form dl:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #mail_form {
    padding: 2rem 1.2rem 2.5rem;
  }
  
  #mail_form dl {
    margin-bottom: 1.5rem;
  }
}

#mail_form dl + dl {
  margin-top: 0;
}

#mail_form ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

#mail_form select {
  width: 100%;
  border: none !important;
}

form#mail_form ul li label {
  padding: 0;
  margin-top: 0;
  background-color: #fff;
}

/* ========================================
   チェックボックス（個人情報同意）
======================================== */

#agree_check {
  margin-bottom: 15px !important;
}

#agree_check input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

#agree_check label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  display: inline-block;
}

#agree_check input[type="checkbox"]:checked + span::before {
  border-color: #06f;
}

#agree_check input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 35%;
  transform: translateY(-50%);
  width: 7.5px;
  height: 7.5px;
  background: #06f;
  border-radius: 50%;
  opacity: 1;
  transform: scale(1);
}

#agree_check span {
  position: relative;
  padding-left: 25px;
}

#agree_check span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  border: 1px solid #777;
  border-radius: 50%;
  background: #fff;
}

/* ========================================
   規約・個人情報ポリシー
======================================== */

.agreement-list {
  display: block;
  list-style: disc;
  padding-left: 24px;
}

/* ========================================
   フッターボタン
======================================== */

.foot-btn {
  position: fixed;
  bottom: 0%;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 215, 8, 0.8);
  display: flex;
}

.foot-btn a {
  width: 240px;
  max-width: 50%;
  display: inline-block;
  padding: 8px;
}

/* ========================================
   フッター
======================================== */

footer {
  padding: 3rem 0 2.5rem;
  background: #f54479;
}

.footer__logo {
  width: 216px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

.footer__text {
  color: #fff;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: "halt" on;
  font-family: var(--font-main);
  font-size: var(--font-size-sm);
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  letter-spacing: 1.4px;
  margin-bottom: 3rem;
}

.footer__copy {
  text-align: center;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 2;
  font-family: var(--font-main);
  color: #fff;
}