/* ==============================
   VOLVE Custom Styles
   ============================== */

/* Common Style */
html,
body {
  overflow-x: hidden !important;
  width: 100vw;
}

html,
body,
* {
  box-sizing: border-box;
}

:root {
  --volve-blue: #008DC5;
  --volve-darkblue: #070791;
  --volve-lightblue: #F2F7F8;
  --volve-gray: #E6ECED;
  --volve-white: #FFFFFF;
  --volve-dark-orange: #D18B00;
  --volve-orange: #EA9C00;
  --text-black: #141414;
  --text-darkgray: #3B5266;
  --text-darkblue: #183783;
  --text-blue: #0000A0;
  --text-skyblue: #0076A5;
  --text-lightblue: #018DC5;
}

.section-title {
  color: #0000A0;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(24px, 6vw, 48px);
  font-style: normal;
  font-weight: 800;
  line-height: 72px;
  letter-spacing: 1.44px;
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .section-title {
    margin-bottom: 56px;
  }
}
.section-title_2 {
  color: #0000A0;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(24px, 6vw, 48px);
  font-style: normal;
  font-weight: 800;
  line-height: 72px;
  letter-spacing: 1.44px;
  margin-bottom: 72px;
}

@media screen and (max-width: 768px) {
  .section-title_2 {
    margin-bottom: 56px;
  }
  }
.container {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0;
  }
}

/* COVER */
.consult-banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.consult-banner img {
  width: 100%
}

.consult-banner.first {
  height: 300px;
}

.consult-banner.second {
  height: 500px;
}

@media screen and (max-width: 768px) {
  .consult-banner.second {
    height: 300px;
  }
}

.consult-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 145, 0.6);
  z-index: 1;
}

.consult-content {
  position: relative;
  z-index: 2;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #008DC5;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: auto;
  height: auto;
  padding: 20px 28px 20px 72px;
  justify-content: flex-end;
  align-items: center;
  gap: 162px;
  border-radius: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (max-width: 768px) {
  .consult-btn {
    gap: 20px;
    padding: 8px 10px 8px 10px;
  }
}

.consult-btn:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}


.consult-text {
  color: var(--Volve_Darkblue_secondary, #070791);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(16px, 4vw, 32px);
  font-style: normal;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
}

.consult-text-pc {
  display: block;
}

.consult-text-sp {
  display: none;
}

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

  .consult-text-sp {
    display: block;
  }
}

.consult-arrow {
  background: #070791;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .consult-arrow {
    width: 10%;
    height: auto;
  }
}

.consult-sub {
  margin-top: 20px;
  color: var(--Volve-White, #FFF);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(16px, 3vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.96px;
}

@media screen and (max-width: 768px) {
  .consult-sub {
    margin-top: 0px;
  }
}

/* MAIN CONTENT */
.main-content {
  width: 100vw;
  margin: 0;
  padding: 0;
}

/* HERO SECTION */
.pc-hero-section {
  display: block;
  background-color: #F2F7F8;
}

.sp-hero-section {
  display: none;
}

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

  .sp-hero-section {
    display: block;
    background-color: #F2F7F8;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 150px 20px 88px 20px;
  flex-wrap: wrap;
  margin: 0 auto;
  display: flex;
  max-width: 1080px;
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 142px 0 72px;
  }
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin: 0 auto;
  padding: 60px 20px;
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
}

.page_mv_l {
  flex: 0 0 auto;
  /* max-width: 350px; */
}

@media screen and (max-width: 768px) {
  .page_mv_l {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #0000A0;;
    width: 100%;
  }
}

.page_mv_r {
  flex: 1;
  min-width: 700px;
}

@media screen and (max-width: 768px) {
  .page_mv_r {
    text-align: center;
    min-width: 100%;
  }
}

.page_catch {
  color: var(--text-Lightblue, #0000A0);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(20px, 5.5vw, 64px);
  font-style: normal;
  font-weight: 800;
  line-height: 96px;
  letter-spacing: 1.92px;
}

@media screen and (max-width: 768px) {
  .page_catch {
    line-height: 1.3;
  }
}

.page_kv_lead {
  color: var(--text-Dark-gray, #3B5266);
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(14px, 4vw, 24px);
  font-style: normal;
  font-weight: 700;
  line-height: 38.4px;
  letter-spacing: var(--Display-Medium-Tracking, 0px);
}

@media screen and (max-width: 768px) {
  .page_kv_lead {
    line-height: 1.6;
    text-align: left;
    margin-top: 10px;
  }
}

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

}

@media screen and (max-width: 768px) {
  .h1_page_title img {
    max-width: 35vw;
    height: auto;
  }
}

.page_mv_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* COMPETENCE SECTION */
.section-competence {
  position: relative;
  background-color: #FFF;
  padding: 128px 20px;
}

@media screen and (max-width: 768px) {
  .section-competence {
    padding: 72px 20px;
  }
}

.background-text-competence {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
  pointer-events: none;
  z-index: 2;
  margin-left: -50px;
  font-family: Montserrat;
  font-style: normal;
  line-height: 192px;
  letter-spacing: 3.84px;
  color: var(--Volve-White, #F2F7F8);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: Montserrat;
  font-size: 128px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 3.84px;
  max-width: 100vw;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .background-text-competence {
    display: none;
  }
}

.container-lead {
  padding: 40px 20px;
}

@media screen and (max-width: 768px) {
  .container-lead {
    padding: 44px 0px;
  }

  .container-lead:first-of-type {
    padding-top: 0px; /* ← 1個目だけ特別な余白 */
  }
}

.competence-item {
  display: flex;
  align-items: flex-start;
  gap: 46px;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .competence-item {
    position: relative;
  }
}

.competence-number {
  color: var(--Gray, #E6ECED);
  font-family: Montserrat;
  font-size: 136px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: 4.08px;
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .competence-number {
    color: #DFEFF2;
    position: absolute;
    z-index: 0;
  }
}

.competence-overview {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: calc(100% - 180px - 46px);
}

@media screen and (max-width: 768px) {
  .competence-overview {
    margin-top: 40px;
    margin-left: 10px;
    width: 100%;
    z-index: 2;
  }
}

.competence-title {
  color: var(--text-Skyblue, #0000A0);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(20px, 4vw, 36px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.08px;
}

.competence-lead {
  color: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Lato;
  font-size: clamp(16px, 4vw, 25px);
  font-style: normal;
  font-weight: 400;
  line-height: 39px;
  font-family: "LINE Seed JP_OTF";
}

@media screen and (max-width: 768px) {
  .competence-lead {
    margin-top: 10px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}

.competence-more-icon {
  width: 20px;
  height: 20px;
}

.competence-more-button {
  display: flex;
  justify-content: flex-end;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .competence-more-button {
    margin-top: 0px;
  }
}

.competence-more-button-wrap {
  box-shadow: 0px 4px 0px #070791;
  box-shadow: 0px 4px 0px #070791;
  transition: all 0.3s ease;
  border: 2px solid #070791;
  border-radius: 40px;
  padding: 16px 32px;
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  .competence-more-button-wrap {
    padding: 8px 24px;
  }
}

.competence-more-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px 150px; */
  text-decoration: none;
  /* gap: 12px; */
  /* 通常時の影 */
  color: var(--text-Lightblue, #018DC5);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px;
}

@media screen and (max-width: 768px) {
  .competence-more-button a {
    padding: 3px 12px;
    gap: 8px;
  }
}

.competence-more-button-wrap:hover,
.competence-more-button-2 a:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}

.competence-more-wrap {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .competence-more-wrap {
    margin-top: 0px;
  }
}

.competence-more-button-2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 60px;
  width: 60%;
  border: 2px solid #070791;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0px 4px 0px #070791;
  transition: all 0.3s ease;
  color: var(--text-Lightblue, #018DC5);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 22.5px;
}

/* FLOW  SECION */
.flow-pc {
  display: block;
}

.flow-sp {
  display: none;
}

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

  .flow-sp {
    display: block;
  }
}

.section-flow {
  position: relative;
  padding: 128px 20px;
  background-color: #F2F7F8;
}

@media screen and (max-width: 768px) {
  .section-flow {
    padding: 72px 20px;
  }
  }


.background-text-flow {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(90deg) translateY(100%);
  transform-origin: right bottom;
  font-size: 128px;
  color: #FFF;
  ;
  /* 本当はこれぐらい薄く */
  font-weight: 900;
  pointer-events: none;
  z-index: 2;
  /* 背景画像より前に出す場合ここ2 */
  margin-right: -50px;
  /* English/Detail/128 Bk */
  font-family: Montserrat;
  font-style: normal;
  line-height: 192px;
  /* 192px */
  letter-spacing: 3.84px;

  max-width: 100vw;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .background-text-flow {
    display: none;
  }
}

.step-timeline {
  display: flex;
  flex-direction: row;
  /* 横並び */
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  /* 折り返しを防ぐ */
  overflow-x: auto;
  /* スマホ用に横スクロールもあり得る */
  padding-top: 40px;
}

.step-item {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 1;
  cursor: pointer;
}

.step-top {
  color: var(--Volve_Darkblue_secondary, #070791);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 17.6px */
  margin-bottom: 4px;
}

.step-circle {
  width: 14px;
  height: 14px;
  background-color: white;
  border: 2px solid #070791;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 199;
}

.step-item.active .step-circle {
  background-color: white;
  border-color: #00b8f1;
}

.mySwiper-flow {
  padding: 20px 20px;
  margin: 0 auto;
  /* ← これ追加！ */
}

.swiper-wrapper {
  display: flex !important;
  margin: 0 auto;
}

/* 元のstep-lineは削除 or 無効化 */
.step-line {
  display: none;
}

/* 各stepに線を描く */
.step-item::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: #070791;
  z-index: -100;
}

/* 左端の線を右半分だけにする */
.step-item:first-child::before {
  left: 50%;
}

/* 右端の線を左半分だけにする */
.step-item:last-child::before {
  right: 50%;
}

.swiper-button-prev-flow,
.swiper-button-next-flow {
  position: absolute;
  top: 45%;
  transform: translateY(-45%);
  z-index: 10;
  width: 48px;
  /* 画像サイズに合わせて調整 */
  height: 48px;
  cursor: pointer;
}

.swiper-button-prev-flow {
  left: 0px;
}

.swiper-button-next-flow {
  right: 0px;
}

.swiper-button-prev-flow img,
.swiper-button-next-flow img {
  width: 100%;
  height: auto;
  display: block;
}


.step-card {
  position: relative;
}

.step-label {
  color: var(--text-Lightblue, #070791);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(14px, 1vw, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 17.6px;
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;

}

.step-label.oneline {
  bottom: 25%;
}

.step-label.twolines {
  bottom: 20%;
}

.step-item.active .step-card .step-label {
  color: #018DC5;
}

.step-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  /* ← これを忘れずに！ */
  z-index: 0;
}

.step-img2 {
  width: 30%;
  height: auto;
  position: absolute;
  z-index: 100;
  pointer-events: none;
  top: 25%;
  left: 35%;
}

.swiper-slide.flow {
  color: #1a2b59;
  /* 全体のテキストカラー（濃い青） */
  font-family: "LINE Seed JP_OTF", sans-serif;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 10px;
  padding: 32px 42px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  /* text-align: center; */

  height: auto;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  /* margin: 20px; */

}

.swiper-slide.flow h3 {
  color: var(--text-Dark-blue, #183783);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 150%;
  letter-spacing: 0.72px;
}

.swiper-slide.flow p {
  color: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: Lato;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  /* 32.4px */
}


.swiper-slide.flow .step-title {
  color: var(--text-Dark-blue, #183783);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 36px */
  letter-spacing: 0.72px;
  border-bottom: 4px solid #183783;
  display: inline-block;
  margin-bottom: 24px;
}

/* FLOW SP */

.sp-timeline {
  position: relative;
  padding: 0px 20px;
  background: #f2f7f8;
}

.sp-step {
  position: relative;
  padding-left: 40px;
  margin-bottom: 0;
  /* 下マージン削除 */
  padding-bottom: 30px;
}

.sp-step-line {
  position: absolute;
  left: 20px;
  width: 2px;
  background-color: #070791;
  z-index: 0;
}

.sp-step-circle {
  position: absolute;
  left: 14px;
  width: 14px;
  height: 14px;
  background-color: #fff;
  border: 2px solid #070791;
  border-radius: 50%;
  z-index: 1;
  top: 0;
  /* 初期値 */
}

.sp-step.active .sp-step-circle {
  background-color: #00b8f1;
  /* 好きな色に */
  border-color: #00b8f1;
}

.sp-step-card {
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  margin-left: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
 border-radius: 4px;
border: 1px solid #183783;
background: #FFF;
box-shadow: 0px 4px 0px 0px #1E00A0;
max-width: 80%;
}

.sp-step-top {
  color: #3B5266;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 13.2px; /* 13.2px */
  margin-bottom: 8px;
}

.sp-step-content {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #183783;
  leading-trim: both;
  text-edge: cap;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 17.6px; /* 17.6px */
}

.sp-icon {
  width: 24px;
  height: 24px;
}

.sp-step:first-child .sp-step-line {
  top: 50%;
  height: 50%;
  transform: none;
}

.sp-step:last-child .sp-step-line {
  top: 0;
  height: 50%;
}

.support-card{
  margin-left: 10px;
}
.support-card.expanded .support-summary {
  max-height: 500em;
}

.support-card.expanded {
  height: auto;
}

.toggle-btn {
  display: block;
  margin: 5px auto 5px;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.5s ease;
}

.support-card.expanded .toggle-btn {
  transform: rotate(180deg);
}


.toggle-btn img {
  transition: transform 0.5s ease;
}

.support-summary-hidden {
  max-height: 140px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 0em;
  /* 例えば3行分くらい。1行 = 約1.6em × 3行分 */
  position: relative;
  transition: max-height 0.7s ease, opacity 0.7s ease;
  opacity: 0;
  color: #3B5266;
  text-align: justify;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 23.8px; /* 23.8px */
  margin: 20px 20px 0 18px;
}

.support-summary-hidden-close{
  color: #008DC5;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1; /* 17.5px */
  text-align: right;
}


@media screen and (max-width: 768px) {
  .support-summary-hidden {
    margin: 10px 0 0 0;
  }
}

.support-card.expanded .support-summary-hidden {
  max-height: 500em;
  /* 十分に大きくすることで全文表示に */
  opacity: 1;
}

.support-card.expanded {
  height: auto;
  /* 開いたら高さを自由に */
}


/* VOICE SECTION */
.section-voice {
  position: relative;
  padding: 128px 20px;
}

@media screen and (max-width: 768px) {
  .section-voice {
    padding: 72px 20px;
  }
}

.background-text-voice {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
  pointer-events: none;
  z-index: 2;
  /* 背景画像より前に出す場合ここ2 */
  margin-left: -50px;

  /* English/Detail/128 Bk */
  font-family: Montserrat;
  font-style: normal;
  line-height: 192px;
  /* 192px */
  letter-spacing: 3.84px;

  color: var(--Volve-White, #F2F7F8);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;

  /* English/Detail/128 Bk */
  font-family: Montserrat;
  font-size: 128px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 3.84px;

  max-width: 100vw;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .background-text-voice {
    display: none;
  }
}

.voice_ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  list-style: none;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .voice_ul {
    grid-template-columns: 1fr;
    padding-top: 0px;
  }
}

.voice_li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  height: 100%;
  border-left: 6px solid #070791;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice_li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  /* 任意：影も強調 */
}

.voice_li a {
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.voice_profile_wrap {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-wrap: nowrap;
  /* ← 折り返し禁止 */
  border-bottom: 2px solid #070791;
  align-items: center;
  padding: 16px 0;
}

.voice_img {
  flex-shrink: 0;
}

.voice_img img {
  object-fit: contain;
  display: block;
}

.voice_details_wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
}

.voice_title {
  color: var(--text-Black, #141414);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  /* 22.5px */
  margin: 0;

}

.txt_profile {
  color: var(--text-Black, #141414);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  /* 15px */
}

.txt_intro {
  color: var(--text-Black, #141414);
  text-align: justify;
  font-family: "LINE Seed JP_OTF";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
  /* 17.5px */
  margin-top: 10px;
}

.voice_detail p {
  color: var(--text-Black, #141414);
  text-align: justify;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(12px, 3vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.voice-befor {
  display: inline-block;
  font-size: 0.9rem;
  color: #fff;
  background-color: #183783;
  border-radius: 5px;
  padding: 2px 8px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.voice-after {
  display: inline-block;
  font-size: 0.9rem;
  color: #fff;
  background-color: #018DC5;
  border-radius: 5px;
  padding: 2px 8px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.voice-more-button {
  text-align: center;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .voice-more-button {
    text-align: right;
    margin-top: 32px;
  }
  }

.voice-more-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 120px;
  border: 2px solid #070791;
  border-radius: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #070791;
  text-decoration: none;
  gap: 12px;
  box-shadow: 0px 4px 0px #070791;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .voice-more-button a {
    padding: 3px 20px;
    gap: 8px;
  }
}

.voice-more-button a:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}

.voice-more-button img.voice-icon {
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .voice-more-button img.voice-icon {
    width: 20%;
  }
}

.voice-text {
  color: var(--text-Lightblue, #070791);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(14px, 4vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

/* JOB INFORMATION SECTION */
.section-jobinformation {
  position: relative;
  padding: 128px 20px;
}

@media screen and (max-width: 768px) {
  .section-jobinformation {
    padding: 72px 20px;
  }
  }
.background-text-job {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(90deg) translateY(100%);
  transform-origin: right bottom;
  font-size: 128px;
  color: #F2F7F8;
  ;
  /* 本当はこれぐらい薄く */
  font-weight: 900;
  pointer-events: none;
  z-index: 2;
  /* 背景画像より前に出す場合ここ2 */
  margin-right: -50px;
  /* English/Detail/128 Bk */
  font-family: Montserrat;
  font-style: normal;
  line-height: 192px;
  /* 192px */
  letter-spacing: 3.84px;

  max-width: 100vw;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .background-text-job {
    display: none;
  }
}

.job_wrap {
  padding: 40px 0px;
}

@media screen and (max-width: 768px) {
  .job_wrap {
    padding: 0;
  }
}

.job_bl_li {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1;
  /* 高さを可能な限り満たす */
  display: flex;
  flex-direction: column;
  border-left: 6px solid #070791;
  align-items: flex-start;
  padding: 16px;
}

.job_batch {
  display: inline-block;
  font-size: 0.9rem;
  color: #fff;
  background-color: #183783;
  border-radius: 5px;
  padding: 2px 8px;
  margin-bottom: 8px;
  text-align: left;
}

.job_batch-2 {
  display: inline-block;
  font-size: 0.9rem;
  color: #183783;
  border-radius: 5px;
  padding: 2px 8px;
  margin-bottom: 4px;
  text-align: left;
  border-radius: 3px;
  border: 1px solid #183783;
  font-weight: 400;
  font-family: "LINE Seed JP_OTF";
}

.job_bl_title {
  color: var(--text-Black, #141414);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  /* 22.5px */
  padding: 0 0 8px;
  margin: 0 0 16px;
  border-bottom: 2px solid #070791;
}

.job_bl_txt {
  color: var(--text-Black, #141414);
  text-align: justify;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%;
  /* 17.5px */
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}



.job-swiper-container {
  padding: 20px 0;
}

.job-slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* ← 念のため */
}

.job-swiper-button-prev,
.job-swiper-button-next {
  color: #070791;
  /* 矢印の色 */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.job-swiper-wrapper {
  display: flex !important;
}

.job-swiper-fade-right,
.job-swiper-fade-left {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.job-swiper-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.job-swiper-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.job-swiper-button-prev,
.job-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  /* 画像サイズに合わせて調整 */
  height: 40px;
  cursor: pointer;
}

.job-swiper-button-prev::after,
.job-swiper-button-next::after {
  display: none !important;
  /* ← これが確実！ */
}

.job-swiper-button-prev,
.job-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: auto;
  z-index: 20;
  cursor: pointer;
}

.job-swiper-button-prev {
  left: 0px;
}

.job-swiper-button-next {
  right: 0px;
}

.job-swiper-button-prev img,
.job-swiper-button-next img {
  display: block;
  width: 100%;
  height: auto;
}

.job-more-button {
  text-align: center;
  margin-top: 40px;
}


.job-more-button {
  text-align: center;
  margin-top: 72px;
}


.job-more-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 120px;
  width: 20%;
  border: 2px solid #070791;
  border-radius: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #070791;
  text-decoration: none;
  gap: 12px;

  /* 通常時の影 */
  box-shadow: 0px 4px 0px #070791;

  /* アニメーションなめらかに */
  transition: all 0.3s ease;
}

.job-more-button a:hover {


  /* ホバー時に影を消す */
  box-shadow: none;

  /* 少し右下に移動 */
  transform: translate(2px, 2px);
}


.job-more-button img.job-icon {

  object-fit: contain;
}

/* 越境転職記事 */
.section-article {
  position: relative;
  padding: 128px 20px;
}

@media screen and (max-width: 768px) {
  .section-article {
    padding: 72px 20px;
  }
  }

.background-text-article {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
  pointer-events: none;
  z-index: 2;
  /* 背景画像より前に出す場合ここ2 */
  margin-left: -50px;

  /* English/Detail/128 Bk */
  font-family: Montserrat;
  font-style: normal;
  line-height: 192px;
  /* 192px */
  letter-spacing: 3.84px;

  color: #F2F7F8;
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;

  /* English/Detail/128 Bk */
  font-family: Montserrat;
  font-size: 128px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 3.84px;

  max-width: 100vw;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .background-text-article {
    display: none;
  }
}

.article_wrap {
  padding: 40px 0px;
}

@media screen and (max-width: 768px) {
  .article_wrap {
    padding: 0;
  }
}

.article_bl_ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
}

.article_bl_li {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  width: 100%;
  flex: 1;
  /* 高さを可能な限り満たす */
  display: flex;
  flex-direction: column;
  font-family: "LINE Seed JP_OTF";
}

.article_bl_li:hover {
  transform: translateY(-4px);
}

.article_bl_li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article_bl_img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  padding: 10px;
  box-sizing: border-box;
  /* パディング込みで100%にする */

}

.article_bl_contant_wrap {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article_bl_title {
  font-size: 16px;
  font-weight: bold;
  color: #1d3557;
  margin: 0 0 8px;
  line-height: 1.4;
  border-bottom: 2px solid #070791;
  padding-bottom: 16px;
}

.article_bl_txt {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  flex-grow: 1;
}

.swiper-container {
  padding: 20px 0;
}

.pickup-slider {
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* ← 念のため */
}

.swiper-button-prev,
.swiper-button-next {
  color: #070791;
  /* 矢印の色 */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-wrapper {
  display: flex !important;
}

.swiper-fade-right,
.swiper-fade-left {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-fade-right {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.swiper-fade-left {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  /* 画像サイズに合わせて調整 */
  height: 40px;
  cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none !important;
  /* ← これが確実！ */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: auto;
  z-index: 20;
  cursor: pointer;
}

.swiper-button-prev {
  left: 0px;
}

.swiper-button-next {
  right: 0px;
}

.swiper-button-prev img,
.swiper-button-next img {
  display: block;
  width: 100%;
  height: auto;
}

.article-more-button {
  text-align: center;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .article-more-button {
    text-align: right;
    margin-top: 32px;
  }
}

.article-more-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 120px;
  border: 2px solid #070791;
  border-radius: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #070791;
  text-decoration: none;
  gap: 12px;
  box-shadow: 0px 4px 0px #070791;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .article-more-button a {
    padding: 3px 20px;
    gap: 8px;
  }
}

.article-more-button a:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}

.article-more-button img.article-icon {
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .article-more-button img.article-icon {
    width: 20%;
  }
}

.article-text {
  color: var(--text-Lightblue, #070791);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(14px, 4vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

/* EVENT SECTION */
.section-event {
  position: relative;
  padding: 128px 20px;
}

@media screen and (max-width: 768px) {
  .section-event {
    padding: 72px 20px;
  }
  }

.background-text-event {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(90deg) translateY(100%);
  transform-origin: right bottom;
  font-size: 128px;
  color: #F2F7F8;
  font-weight: 900;
  pointer-events: none;
  z-index: 2;
  margin-right: -50px;
  font-family: Montserrat;
  font-style: normal;
  line-height: 192px;
  letter-spacing: 3.84px;
}

@media screen and (max-width: 768px) {
  .background-text-event {
    display: none;
  }
}

.event_wrap {
  padding: 40px 0px;
}

@media screen and (max-width: 768px) {
  .event_wrap {
    padding: 0;
  }
}

.event_bl_ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
}

.event_bl_li {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
  width: 100%;
}

.event_bl_li:hover {
  transform: translateY(-4px);
}

.event_bl_li a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.event_bl_img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  box-sizing: border-box;
  background-size: cover;
}

.event_bl_contant_wrap {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event_bl_title {
  font-size: 16px;
  font-weight: bold;
  color: #1d3557;
  margin: 16px 10px 8px;
  line-height: 1.4;
  font-family: "LINE Seed JP_OTF";
}

.event_bl_txt {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
  flex-grow: 1;
}

.event_bl_details_wrap {
  padding: 6px;
}

.swiper-container {
  padding: 20px 20px;
}

.event-slider {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.swiper-button-prev-event,
.swiper-button-next-event {
  color: #070791;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.swiper-button-prev-event,
.swiper-button-next-event {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  /* 画像サイズに合わせて調整 */
  height: 40px;
  cursor: pointer;
}

.swiper-button-prev-event::after,
.swiper-button-next-event::after {
  display: none !important;
  /* ← これが確実！ */
}

.swiper-button-prev-event,
.swiper-button-next-event {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: auto;
  z-index: 20;
  cursor: pointer;
}

.swiper-button-prev-event {
  left: 0px;
}

.swiper-button-next-event {
  right: 0px;
}

.swiper-button-prev-event img,
.swiper-button-next-event img {
  display: block;
  width: 100%;
  height: auto;
}

.swiper-wrapper.event {
  display: flex !important;
  /* margin: 10px; */
}

.event-more-button {
  text-align: center;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .event-more-button {
    text-align: right;
    margin-top: 32px;
  }
}

.event-more-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 120px;
  border: 2px solid #070791;
  border-radius: 40px;
  font-size: 20px;
  font-weight: bold;
  color: #070791;
  text-decoration: none;
  gap: 12px;
  box-shadow: 0px 4px 0px #070791;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .event-more-button a {
    padding: 3px 20px;
    gap: 8px;
  }
}

.event-more-button a:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}


.event-more-button img.news-icon {
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .event-more-button img.event-icon {
    width: 20%;
  }
}

.event-text {
  color: var(--text-Lightblue, #070791);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(14px, 4vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.swiper-fade-right-event,
.swiper-fade-left-event {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-fade-right-event {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.swiper-fade-left-event {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.swiper-button-disabled-custom {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.swiper-button-disabled {
  display: none !important;
}