/* ===========================================
   LP 03 - 未来都グループ採用ページ
   =========================================== */

/* ===========================================
   共通・基本設定
   =========================================== */
html {
  scroll-behavior: smooth;
}

.contents-wrapper {
  align-items: flex-start;
  background-color: var(--text600);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
}

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

/* 各セクションの横幅100% */
.hero-section,
.worries-section,
.reasons-section,
.earn-money-section,
.section-flow,
.access-section,
.recruitment-section,
.section-faq,
.footer {
  width: 100%;
}

/* ===========================================
   ヘッダー
   =========================================== */
.header {
  transition: transform 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
}

.header.header-hidden {
  transform: translateY(-100%);
}

.contents-wrapper .header {
  align-items: center;
  align-self: stretch;
  display: flex;
  gap: 17px;
  height: 65px;
  justify-content: center;
  padding: 12px 10px;
  width: 100%;
}

.contents-wrapper .header__logo {
  position: absolute;
  left: 12px;
  width: 208px;
}

.contents-wrapper .header__menu {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 14px;
  margin-bottom: -2px;
  margin-top: -2px;
  position: absolute;
  right: 18px;
}

/* ===========================================
   メニュー
   =========================================== */
.pc-menu {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  width: 300px !important;
  height: 100vh !important;
  background-color: white !important;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.3s ease !important;
  z-index: 2000 !important;
  padding: 80px 20px 20px !important;
  transform: translateX(100%) !important;
}

nav.pc-menu.mobile-menu-open {
  transform: translateX(0) !important;
  z-index: 2001 !important;
}

.menu-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-line {
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--mirage);
  transition: transform 0.3s ease;
}

.close-line-1 {
  transform: rotate(45deg);
}

.close-line-2 {
  transform: rotate(-45deg);
}

.menu-close-btn:hover .close-line {
  background-color: var(--burning-orange);
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-list a {
  color: var(--mirage);
  text-decoration: none;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-size: 1.125rem;
  font-weight: 600;
  display: block;
  padding: 15px 20px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.menu-list a:hover {
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--burning-orange);
}

.menu-apply-btn {
  background-color: var(--monza) !important;
  color: white !important;
  text-align: center;
  border-radius: 25px !important;
  margin-top: 20px;
}

.menu-apply-btn:hover {
  background-color: #b91516 !important;
}

/* メニューオーバーレイ */
body.menu-open::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1999;
}

/* メニューボタンアニメーション */
.contents-wrapper .menu {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.contents-wrapper .rectangle {
  background-color: var(--shark);
  height: 2px;
  width: 24px;
}

.menu .rectangle {
  transition: all 0.3s ease;
}

.menu.menu-active .rectangle:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu.menu-active .rectangle:nth-child(2) {
  opacity: 0;
}

.menu.menu-active .rectangle:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================================
   PC用サイドロゴ
   =========================================== */
.pc-side-logo {
  display: none;
}

@media (min-width: 771px) {
  .pc-side-logo {
    display: block;
    position: fixed;
    top: 50%;
    left: 0;
    padding: 0 1.6% 0 4%;
    transform: translateY(-50%);
    z-index: 998;
    width: 28%;
    max-width: 500px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
  }

  .pc-side-logo:hover {
    opacity: 1;
  }

  .pc-side-logo img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* ===========================================
   PC用固定応募ボタン
   =========================================== */
.pc-fixed-apply-btn {
  display: none;
}

@media (min-width: 771px) {
  .pc-fixed-apply-btn {
    display: flex;
    position: fixed;
    top: 20px;
    right: 20px;
    align-items: center;
    gap: 12px;
    background-color: var(--monza);
    color: white;
    padding: 20px 24px 20px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(217, 23, 24, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
  }

  .pc-fixed-apply-btn:hover {
    background-color: #b91516;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 23, 24, 0.4);
  }

  .pc-apply-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }

  .pc-fixed-apply-btn:hover .pc-apply-arrow {
    transform: rotate(45deg) translate(2px, -2px);
  }
}

/* ===========================================
   PC用右側メニュー
   =========================================== */
.pc-side-menu {
  display: none;
}

@media (min-width: 771px) {
  .pc-side-menu {
    display: block;
    position: fixed;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    z-index: 998;
  }

  .pc-side-menu-list {
    list-style: none;
    padding: 2vw 3vw;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(24, 17, 49, 0.1);
    backdrop-filter: blur(10px);
    min-width: 12vw;
  }

  .pc-side-menu-list li {
    margin-bottom: 10px;
  }

  .pc-side-menu-list li:last-child {
    margin-bottom: 0;
  }

  .pc-side-menu-list a {
    display: block;
    color: var(--mirage);
    text-decoration: none;
    font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
    font-size: 1.2rem;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-align: center;
  }

  .pc-side-menu-list a:hover {
    background-color: var(--burning-orange);
    color: white;
  }
}

@media (min-width: 1201px) {
  .pc-side-menu-list {
    padding: 2.5vw 6vw;
    min-width: 14vw;
  }
}

@media (min-width: 1501px) {
  .pc-side-menu {
    right: 4%;
  }
  .pc-side-menu-list {
    padding: 2.8vw 8vw;
    min-width: 16vw;
  }
}

/* ===========================================
   ページトップボタン
   =========================================== */
.page-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--burning-orange);
  border-radius: 50%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  z-index: 999;
}

.page-top-btn:hover {
  background-color: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.page-top-btn.show {
  display: flex;
}

.page-top-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  margin-bottom: 4px;
}

.arrow-line {
  position: absolute;
  width: 8px;
  height: 2px;
  background-color: white;
  border-radius: 1px;
}

.arrow-line-1 {
  transform: rotate(-45deg);
  top: 6px;
  left: 0;
}

.arrow-line-2 {
  transform: rotate(45deg);
  top: 6px;
  right: 0;
}

.page-top-text {
  color: white;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===========================================
   共通ボタンスタイル
   =========================================== */
.contents-wrapper .btn_entry-1 {
  box-shadow: 6px 6px 8px #fc652e30;
  gap: 10px;
  height: 45px;
  justify-content: center;
  padding: 10px 26px 11px;
  width: 104px;
}

.contents-wrapper .text-1-1 {
  align-items: center;
  color: var(--text600);
  display: flex;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-size: var(--font-size-m);
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0;
  line-height: 16px;
  margin-left: -6px;
  margin-right: -6px;
  width: fit-content;
}

.contents-wrapper .btn_entry {
  align-self: stretch;
  box-shadow: 6px 6px 18px rgb(115 50 27 / 40%);
  flex: 0 0 auto;
  gap: 16px;
  justify-content: flex-end;
  padding: 23px 20px 25px 51px;
  position: relative;
  width: 100%;
  max-width: 350px;
  color: white;
  margin: auto;
}

.contents-wrapper .btn_entry-3 {
  align-items: center;
  background-color: var(--monza);
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
}

.contents-wrapper .text-1 {
  align-items: center;
  display: flex;
  justify-content: center;
  letter-spacing: 0;
  line-height: 20px;
  margin-top: -1px;
  width: fit-content;
  color: var(--text600);
}

.contents-wrapper .group-2 {
  aspect-ratio: 1;
  height: 83px;
  left: -7px;
  position: absolute;
  width: 85px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.contents-wrapper .vector {
  height: 83px;
  left: 0;
  position: absolute;
  top: 0;
  width: 83px;
}

.contents-wrapper .text-2 {
  left: 19px;
  letter-spacing: 0.88px;
  line-height: 28.6px;
  position: absolute;
  text-align: center;
  top: 27px;
}

.contents-wrapper .arrow {
  background-image: url(../img/arrow.svg);
  background-size: 100% 100%;
  height: 12px;
  width: 15px;
}

/* CTA エリア共通 */
.contents-wrapper .btn_-entry-area {
  align-items: center;
  background-color: var(--light-blue);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 20px 60px;
  width: 100%;
}

.contents-wrapper .btn_-entry-area-1 {
  align-items: center;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 0;
  padding: 30px 20px 60px;
  position: relative;
  width: 100%;
}

.contents-wrapper .btn_-entry-area-3 {
  align-items: center;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
  width: 100%;
}

.contents-wrapper .frame-93 {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
}

.contents-wrapper .frame-93-5 {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
}

.contents-wrapper .line {
  height: 18.09px;
  object-fit: cover;
  width: 8.59px;
}

.contents-wrapper .text {
  align-items: center;
  color: var(--black);
  display: flex;
  justify-content: center;
  letter-spacing: 0;
  line-height: 23.4px;
  margin-top: -1px;
  white-space: nowrap;
  width: fit-content;
}

.contents-wrapper .text-highlight {
  color: var(--burning-orange);
}

.contents-wrapper .text-bold {
  font-weight: 600;
}

/* ===========================================
   ヒーローセクション
   =========================================== */
.hero-section {
  background-color: var(--white);
}

.contents-wrapper .h1_mv-1 {
  width: 100%;
  height: auto;
  margin-bottom: 0;
  object-fit: contain;
  display: block;
  vertical-align: top;
}

/* ===========================================
   お悩みセクション
   =========================================== */
.worries-section {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.worries-section img {
  width: 90%;
}

.worries-section img:last-child {
  margin-bottom: 50px;
}

/* ===========================================
   選ばれる理由セクション
   =========================================== */
.contents-wrapper .reasons-content {
  align-items: center;
  align-self: stretch;
  background-color: var(--light-blue-variant);
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 60px 0px 0px;
  width: 100%;
}

.contents-wrapper .h2_6reason {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 16px;
  padding: 0px 0px 40px;
}

.contents-wrapper .image {
  height: 74px;
  object-fit: cover;
  width: 74px;
}

.contents-wrapper .text-5 {
  color: transparent;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-size: var(--font-size-xxxl);
  font-weight: 600;
  letter-spacing: 0.48px;
  line-height: 36px;
  text-align: center;
  width: fit-content;
}

.contents-wrapper .span0-1 {
  color: var(--text600);
  letter-spacing: 0.12px;
  font-size: 1.375rem;
  font-weight: 600;
}

.contents-wrapper .span1 {
  color: var(--sizzling-sunrise);
  font-size: 2.5rem;
  letter-spacing: 0.32px;
  line-height: 50px;
}

.contents-wrapper .list_reason-container {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 0px 0px 10px;
  width: 100%;
  list-style: none;
  margin: 0;
  gap: 30px;
}

/* 理由カード（奇数：左寄せ） */
.contents-wrapper .card_reason01,
.contents-wrapper .card_reason03,
.contents-wrapper .card_reason05 {
  align-items: flex-start;
  background-color: var(--text600);
  border: 0px none;
  border-radius: 0px 20px 20px 0px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-right: 20px;
}

/* 理由カード（偶数：右寄せ） */
.contents-wrapper .card_reason02,
.contents-wrapper .card_reason04 {
  align-items: flex-end;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0px 0px 0px 20px;
  width: 100%;
}

.contents-wrapper .guarantee-container,
.contents-wrapper .reason04-container {
  background-color: var(--text600);
  border-radius: 20px 0px 0px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 理由ヘッダー */
.contents-wrapper .h3_reason {
  align-items: center;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-color: var(--botticelli);
  display: flex;
  gap: 20px;
  height: 110px;
  width: 100%;
}

.contents-wrapper .h3_reason-01 {
  background-color: var(--text600);
  border-radius: 0px 20px 0px 0px;
}

.contents-wrapper .h3_reason-0 {
  border-radius: 20px 0px 0px 0px;
}

.contents-wrapper .h3_reason-03 {
  border-radius: 0px 20px 0px 0px;
  margin-right: -20px;
}

.contents-wrapper .number-image {
  width: 60px;
  height: auto;
  margin-left: 15px;
}

.contents-wrapper .title-1 {
  letter-spacing: 0.40px;
  line-height: 2rem;
  width: fit-content;
}

.contents-wrapper .title-3 {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  letter-spacing: 0.40px;
  font-size: 2rem;
  line-height: 30px;
  margin-top: -1px;
  width: fit-content;
}

.contents-wrapper .span0 {
  letter-spacing: 0.08px;
}

.contents-wrapper .span-1 {
  letter-spacing: 0.16px;
  line-height: 36.4px;
}

.contents-wrapper .span2 {
  letter-spacing: 0.16px;
  line-height: 30.8px;
  font-size: 1.8rem;
}

.contents-wrapper .x-text {
  padding: 6px 0px 0px;
}

/* 理由コンテンツ */
.contents-wrapper .main_reason0 {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 24px;
  padding: 0px 25px 30px 25px;
  width: 100%;
}

.contents-wrapper .reason-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.contents-wrapper .reason-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mirage);
}

.contents-wrapper .reason-text sup {
  font-size: 0.7em;
  vertical-align: super;
}

.contents-wrapper .reason-note {
  font-size: 12px;
  color: var(--text-gray-dark);
  line-height: 1.5;
}

/* ===========================================
   メディア紹介セクション
   =========================================== */
.contents-wrapper .earn-money-content {
  align-items: center;
  background-color: var(--text600);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 20px 60px;
}

.contents-wrapper .h2_earn-money {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 16px;
}

.contents-wrapper .icon-3 {
  height: 68px;
  position: relative;
  width: 57.53px;
}

.contents-wrapper .main-heading {
  color: transparent;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-size: var(--font-size-xxl);
  font-weight: 600;
  letter-spacing: 0.88px;
  line-height: 28.6px;
  text-align: center;
  width: fit-content;
}

.contents-wrapper .span0-4 {
  color: var(--mirage);
  letter-spacing: 0.19px;
}

.contents-wrapper .span1-6 {
  color: var(--burning-orange);
  font-size: 2rem;
  line-height: 42px;
}

.contents-wrapper .earn-description {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--mirage);
  text-align: center;
  margin-top: 10px;
}

.contents-wrapper .earn-description-sub {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--mirage);
  text-align: left;
}

/* 動画コンテナ */
.contents-wrapper .video-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.contents-wrapper .video-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contents-wrapper .video-item iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  display: block;
}

.contents-wrapper .video-caption {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--mirage);
  text-align: left;
}

.contents-wrapper .video-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 10px;
}

.contents-wrapper iframe {
  width: 100%;
  max-width: 600px;
  height: 280px;
  border: 0;
}

/* ===========================================
   アクセスセクション
   =========================================== */
.contents-wrapper .access-content {
  align-items: center;
  background-color: #EFF3F8;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 25px;
  padding: 55px 20px 45px;
}

.contents-wrapper .h2_access {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.contents-wrapper .text-20 {
  color: var(--shark);
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-size: var(--font-size-xxxxl);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 44.8px;
  text-align: center;
  margin: 0;
}

.contents-wrapper .access-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mirage);
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
}

.contents-wrapper .contents_access {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contents-wrapper .access-map {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ===========================================
   募集要項セクション
   =========================================== */
.contents-wrapper .recruitment-section,
.contents-wrapper .recruitment-content {
  width: 100%;
}

.contents-wrapper .recruitment-content {
  align-items: center;
  background-color: var(--text600);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 60px 20px;
}

.contents-wrapper .h2_recruitment {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contents-wrapper .recruitment-title {
  color: var(--shark);
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.contents-wrapper .recruitment-table {
  width: 100%;
  max-width: 600px;
  background-color: var(--text600);
  border-radius: 10px;
  overflow: hidden;
}

.contents-wrapper .recruitment-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border-gray);
}

.contents-wrapper .recruitment-label {
  padding: 20px 0px 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--mirage);
  display: flex;
  align-items: center;
}

.contents-wrapper .recruitment-value {
  padding: 8px 0px 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mirage);
  flex: 1;
}

.contents-wrapper .recruitment-value strong {
  font-weight: 600;
}

.contents-wrapper .recruitment-work-time-list {
  list-style: none;
  margin: 5px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contents-wrapper .recruitment-work-time-item {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mirage);
  margin: 0;
  position: relative;
  padding-left: 15px;
}

.contents-wrapper .recruitment-work-time-item::before {
  content: "•";
  color: var(--light-blue);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ===========================================
   応募の流れセクション
   =========================================== */
.contents-wrapper .section-flow {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 40px;
  padding: 50px 25px;
  position: relative;
  flex: 0 0 auto;
  background-color: var(--light-blue);
}

.contents-wrapper .frame-12 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.contents-wrapper .flow {
  position: relative;
  width: 296.32px;
  height: 81.5px;
  margin: 20px 0 30px;
}

.contents-wrapper .section-title {
  position: absolute;
  top: -1px;
  left: 10px;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-weight: 700;
  color: transparent;
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: 0;
  line-height: 42px;
}

.contents-wrapper .text-wrapper-63 {
  color: #ffdd64;
}

.contents-wrapper .text-wrapper-64 {
  color: var(--white);
}

.contents-wrapper .div-19 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.contents-wrapper .list-flow {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  align-items: flex-start;
  gap: 19px;
  position: relative;
  flex: 0 0 auto;
}

.contents-wrapper .step-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: 10px;
}

.contents-wrapper .container-wrapper {
  position: relative;
  width: 47px;
  height: auto;
  background-image: url(../img/rectangle-367-2.svg);
  background-size: 100% 100%;
  align-self: stretch;
}

.contents-wrapper .container-7 {
  position: relative;
  width: 30px;
  height: 97px;
  top: 30px;
  left: 11px;
}

.contents-wrapper .overlap-group-6 {
  position: relative;
  width: 24px;
  height: 97px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contents-wrapper .day {
  position: absolute;
  top: 16px;
  left: 0px;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-weight: 600;
  color: var(--mirage);
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.96px;
  line-height: 28.8px;
}

.contents-wrapper .step-label {
  background-color: #E0ECF7;
  border-radius: 20px;
  padding: 4px 8px;
  display: inline-block;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-weight: 600;
  margin-right: 4px;
}

.contents-wrapper .step-label-04 {
  background-color: #FCE3E1;
  color: var(--burning-orange);
}

.contents-wrapper .highlight-text {
  color: var(--burning-orange);
  font-weight: 700;
  font-size: 1.2rem;
}

.contents-wrapper .container-8 {
  display: flex;
  flex-direction: column;
  width: 278px;
  align-items: flex-start;
  gap: 10px;
  padding: 20px;
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
}

.contents-wrapper .step {
  align-self: stretch;
  margin-top: -1px;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.64px;
  line-height: 16px;
  position: relative;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  color: var(--mirage);
}

.contents-wrapper .step-2 {
  align-self: stretch;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.64px;
  line-height: 16px;
  position: relative;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  color: var(--mirage);
}

.contents-wrapper .flow-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  gap: 8px;
}

.contents-wrapper .container-9 {
  position: relative;
  width: 47px;
  height: auto;
  background-image: url(../img/rectangle-367.svg);
  background-size: 100% 100%;
  align-self: stretch;
}

.contents-wrapper .month-wrapper {
  position: absolute;
  width: 27px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contents-wrapper .month-2 {
  position: relative;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-weight: 400;
  color: var(--mirage);
  font-size: 1.5rem;
  letter-spacing: 0.96px;
  line-height: 24px;
}

.contents-wrapper .text-wrapper-65 {
  font-weight: 600;
  letter-spacing: 0.23px;
  line-height: 0.1px;
}

.contents-wrapper .container-flow-10 {
  display: flex;
  flex-direction: column;
  width: 278px;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 20px 14px;
  position: relative;
  background-color: var(--white);
  border-radius: 10px;
}

.contents-wrapper .step-3 {
  width: fit-content;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.64px;
  line-height: 18px;
  position: relative;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  color: var(--mirage);
}

.contents-wrapper .flow-debut-img {
  width: 107px;
  height: auto;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  border-radius: 5px;
}

.contents-wrapper .btn_-entry-area-flow {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* ===========================================
   FAQセクション
   =========================================== */
.contents-wrapper .section-faq {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 45px;
  padding: 60px 20px 60px;
  flex: 0 0 auto;
  background-color: var(--white);
}

.contents-wrapper .faq-title {
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-weight: 700;
  color: var(--mirage);
  font-size: 1.75rem;
  text-align: center;
  letter-spacing: 1.12px;
  line-height: 36.4px;
  margin: 0;
}

.contents-wrapper .faq-accordion {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contents-wrapper .faq-item {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  margin: 0px auto;
}

.contents-wrapper .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-gray);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.contents-wrapper .faq-question:hover {
  background-color: #f8f8f8;
  border-color: var(--light-blue);
  box-shadow: 6px 6px 8px rgba(0, 39, 75, 0.1);
}

.contents-wrapper .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.contents-wrapper .faq-item[aria-expanded="true"] .faq-answer {
  max-height: 200px;
  margin: 24px 0px 20px;
  padding-left: 14px;
  font-size: 1.25rem;
}

.contents-wrapper .faq-item[aria-expanded="true"] .btn-close .rectangle-4::before {
  transform: rotate(90deg);
}

.contents-wrapper .faq-text {
  align-items: center;
  display: flex;
  gap: 5px;
  position: relative;
}

.contents-wrapper .icon-q {
  font-family: var(--font-family-outfit);
  display: flex;
  flex-direction: column;
  width: 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.contents-wrapper .text-wrapper-42 {
  font-family: "Outfit", Helvetica;
  font-weight: 600;
  color: var(--light-blue);
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 20px;
}

.contents-wrapper .text-wrapper-50 {
  position: relative;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-weight: 700;
  color: var(--mirage);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 24px;
}

.contents-wrapper .btn-close {
  position: relative;
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  flex-shrink: 0;
  background-color: var(--light-blue);
  border-radius: 13px;
}

.contents-wrapper .btn-close .rectangle-4 {
  transition: transform 0.3s ease;
}

.contents-wrapper .rectangle-4 {
  position: relative;
  width: 10px;
  height: 2px;
  top: 12px;
  left: 8px;
  background-color: var(--white);
}

.contents-wrapper .rectangle-4::before {
  content: '';
  position: absolute;
  width: 2px;
  height: 10px;
  top: -4px;
  left: 4px;
  background-color: var(--white);
  transition: transform 0.3s ease;
}

.contents-wrapper .frame-17 {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.contents-wrapper .text-wrapper-44 {
  position: relative;
  width: 17px;
  margin-top: -1px;
  font-family: "Outfit", Helvetica;
  font-weight: 600;
  color: var(--burning-orange);
  font-size: 1.25rem;
  letter-spacing: 0;
  line-height: 20px;
}

.contents-wrapper .text-wrapper-45 {
  position: relative;
  margin-top: -1px;
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w3);
  font-weight: 400;
  color: var(--mirage);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 24.8px;
}

/* ===========================================
   フッター
   =========================================== */
.contents-wrapper .footer {
  align-items: flex-start;
  background-color: var(--light-gray);
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 36px 20px 20px 24px;
}

.contents-wrapper .logo {
  align-items: flex-start;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 14px;
  width: 167px;
  margin-bottom: -20px;
}

.contents-wrapper .text-26 {
  color: var(--black);
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w6);
  font-size: var(--font-size-xxl);
  font-weight: 600;
  letter-spacing: 0.88px;
  line-height: 28.6px;
  margin-top: -1px;
  width: fit-content;
}

.contents-wrapper .x2025 {
  align-self: stretch;
  color: var(--text-gray);
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w3);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.48px;
  line-height: 15.6px;
}

.footer-companies {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-companies span {
  color: var(--black);
  font-family: var(--font-family-hiragino_kaku_gothic_pro-w3);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.48px;
}

/* ===========================================
   レスポンシブ対応
   =========================================== */

/* モバイル（～770px） */
@media (max-width: 770px) {
  .page-top-btn {
    display: none !important;
  }

  .mobile-menu-button {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    transition: transform 0.3s ease;
  }

  .mobile-menu-button.menu-button-hidden {
    transform: translateY(-100px);
  }

  .hero-section {
    margin-top: 65px;
  }

  .contents-wrapper iframe {
    height: 280px;
  }

  .mobile-fixed-apply-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--light-blue);
    padding: 20px;
    z-index: 1000;
    animation: slideInUp 0.3s ease-out;
    justify-content: center;
  }

  .mobile-fixed-apply-btn.show {
    display: flex;
  }

  .mobile-fixed-apply-btn .btn_entry {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    box-shadow: 6px 6px 18px rgb(115 50 27 / 40%);
  }

  .mobile-fixed-apply-btn .btn_entry:active {
    transform: scale(0.98);
  }

  body.mobile-banner-visible {
    padding-bottom: 100px;
  }
}

/* タブレット〜デスクトップ（771px〜1200px） */
@media (min-width: 771px) and (max-width: 1200px) {
  .pc-side-logo {
    padding: 0 2% 0 2%;
  }

  .contents-wrapper {
    width: 45%;
    margin: 0 auto;
  }
}

/* デスクトップ（771px〜） */
@media (min-width: 771px) {
  .header,
  .contents-wrapper .header {
    display: none !important;
  }

  .mobile-fixed-apply-btn {
    display: none;
  }
}

/* 大画面（1201px〜） */
@media (min-width: 1201px) {
  .contents-wrapper {
    max-width: 540px;
    margin: 0 auto;
  }
}

/* ===========================================
   アニメーション
   =========================================== */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
