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

/* Common Style */

html, body {
  overflow-x: hidden !important;
  /* width: 100% !important; */
  /* position: relative; */
}

: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: var(--volve-blue);
  font-size: clamp(40px, 9vw, 86px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 129px;
  letter-spacing: 2.58px;
  word-wrap: break-word
}

.container {
  position: relative;
  z-index: 2;
  width: 1040px;
  margin: 0 auto;
  /* ←これ！！！ */
  /* background-color: #D18B00; */
}

@media screen and (max-width: 1040px) {
  .container {
    width: 100%;
    padding: 0 16px; /* 両端に余白をつける */
    box-sizing: border-box;
  }
}

/* MAIN CONTENT */
#main-content {
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
}



/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  height: 770px;
  /* ファーストビューの高さ＝ウィンドウの高さ */
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .hero {
    height: auto;
  }
}

.hero .video {
  position: relative;
  /* top: 50%; */
  /* left: 50%; */
  margin: 0 auto;
  width: 100%;
  height: auto;
  /* transform: translate(-50%, -50%); */
  z-index: 1;
  display: block;
    display: flex;
  justify-content: center;
}

@media screen and (max-width: 600px) {
  .hero .video {
    display: none;
    position: relative;
  }
}

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

@media screen and (max-width: 600px) {
  .hero .video-sp {
    display: block;
    position: relative;
    /* top: 70px; */
    left: 0;
    width: 100vw; /* 画面幅にフィット */
    height: auto; /* 高さは必要に応じて指定 */
    z-index: 1;
  }
}

.hero .video video {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* 画面にぴったりフィット（切り取りあり） */
}

@media (min-width: 1601px) {
  .hero .video video {
    width: 1600px;
  }
}

@media screen and (max-width: 768px) {
  .hero .video-sp video {
    width: 100vw;
    height: auto; /* 画面幅にフィット */
  }
}


/* サービスボタン */
.section-button {
  position: absolute;
  bottom: 20px;
  /* ちょっと余白をあけるならここで調整 */
  display: flex;
  justify-content: center;
  /* 横方向 */
  align-items: center;
  /* 縦方向 */
  /* left: 50%;
  transform: translateX(-50%); */
  z-index: 2;
  width: 100%;
  /* background-color: #0076A5; */
  top: 700px;
}

@media screen and (max-width: 768px) {
  .section-button {
    position: relative;
    top: auto;       /* ← これ追加 */
    bottom: auto;    /* ← これ追加 */
    margin-top: 40px; /* ← 必要なら余白追加 */
    margin-bottom: 40px;
  }
}


.hover-animate {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hover-animate.fade-out {
  opacity: 0;
}

.hover-animate.hover-up {
  transform: translateY(-5px);
}

.button-icon {
  display: flex;
  gap: 20px;
  justify-content: center;
  /* background-color: #D18B00; */
  margin-bottom: 50px;
}

/* スマホでは縦並び */
@media (max-width: 768px) {
  .button-icon {
    flex-direction: column;
    align-items: center;
    /* スマホ時、中央寄せにするときれい */
    gap: 10px;
  }
}

.button-icon img {
  width: 520px;
  height: auto;
}

/* SERVICE SECTION */
.section-service {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  background-color: #f2f7f8;
  padding: 128px 0px;
}

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

.background-text-service {
  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;
}

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

.hero-inner-from {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
  padding: 30px 20px 30px 70px;
  flex-wrap: nowrap;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* flex-direction: column; */
  cursor: pointer;
  /* clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); */
  /* ← 左上を内側へ、右下を内側へ切り込んだ形 */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
  margin: 25px 0 50px;
}

a.from-button {
  text-decoration: none;
}

.hero-inner-from:hover {
  transform: translate(4px, 4px);
  box-shadow: none
}

.hero-inner-from .page_mv_l {
  flex: 0 0 auto;
  max-width: 30%;
}

.hero-inner-from .page_mv_r {
  flex: 1;
}

.hero-inner-from .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(24px, 5.5vw, 52px);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.92px;
  margin-bottom: 10px;
}

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

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

}

.hero-inner-from .page_mv_content {

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

.hero-inner-to {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* 少し広げる */
  margin: 0 auto;
  padding: 30px 20px 30px 70px;
  flex-wrap: nowrap;
  /* 横並び維持 */
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* flex-direction: column; */
  cursor: pointer;
  /* clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%); */
  /* ← 左上を内側へ、右下を内側へ切り込んだ形 */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  will-change: transform, box-shadow;
}

a.to-button {
  text-decoration: none;
}

.hero-inner-to:hover {
  transform: translate(4px, 4px);  /* ← 横に4px、下に4px動く */
  box-shadow: none
}

.hero-inner-to .page_mv_l {
  flex: 0 0 auto;  /* 画像は固定幅に */
  max-width: 30%;
}

.hero-inner-to .page_mv_r {
  flex: 1;  /* 残りをテキストに使う */
}

.hero-inner-to .page_catch {
  color: var(--text-Lightblue, #008dc5);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(24px, 5.5vw, 52px);
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1.92px;
  margin-bottom: 10px;
}

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

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

}

.hero-inner-to .page_mv_content {

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

@media screen and (max-width: 768px) {
  .hero-inner-to,.hero-inner-from {
    flex-direction: column;
    padding: 20px 16px;
  }

  .hero-inner-to .page_mv_l,
  .hero-inner-to .page_mv_r, 
  .hero-inner-from .page_mv_l,
  .hero-inner-from .page_mv_r {
    width: 100%;
    max-width: 100%;
  }

  .hero-inner-to .h1_page_title img,
  .hero-inner-from .h1_page_title img {
    max-width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  .hero-inner-to .page_mv_content,
  .hero-inner-from .page_mv_content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center; /* ←中央揃え */
    text-align: center;   /* ←テキストも中央寄せ */
  }

  .hero-inner-to .page_catch,
  .hero-inner-from .page_catch {

    margin: 10px 0 0 0;
  }

  .hero-inner-to .page_kv_lead,
  .hero-inner-from .page_kv_lead {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.6;
    margin: 0;
  }
}



/* MESSAGE SECTION */
.section-message {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  /* background-color: #0000A0; */
  padding: 128px 0px;
}

@media screen and (max-width: 768px) {
  .section-message {
    padding: 72px 0px 150px;
  }
}

.background-text-message {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
  font-size: 128px;
  color: #F2F7F8;
  ;
  /* 本当はこれぐらい薄く */
  font-weight: 900;
  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;
}

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

.background-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1300px;
  z-index: 1;
  margin-right: -128px;
  pointer-events: none;
}

.background-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .background-image {
    max-width: 600px; /* スマホ用に縮小 */
    left: 50%;
    transform: translateX(-50%);
  }
}
.container-lead {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 0 0px 0;
  /* background-color: #333; */
}
@media screen and (max-width: 768px) {
  .container-lead {
    max-width: 1040px;
    margin: 0 auto;
    padding: 20px 0 0px 0;
    /* background-color: #333; */
  }
}

.message-title {
  color: var(--Volve-White, #FFF);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(22px, 4vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 1.2px;
  display: inline-block;
  background: linear-gradient(to right, #008DC5 85%, #ffffff 98%);
  padding: 8px 100px 8px 30px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}



@media screen and (max-width: 768px) {
  .message-title {
  padding: 10px 56px 10px 30px;
  line-height: 1.3;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  }
}
.message-lead {
  color: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  /* Japanese/Body/main Regular */
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(14px, 4vw, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px;
  /* 28.8px */
  letter-spacing: 0.48px;
  margin: 45px 0 0 27px;
}


@media screen and (max-width: 768px) {
  .message-lead {
    font-weight: 400;
    line-height: 22.4px; /* 22.4px */
    letter-spacing: 0.42px;
    margin: 45px 0 0 0px;
  }
}


.message-author {
  margin: 56px 0 0 400px;
  max-width: 250px;
}

@media screen and (max-width: 768px) {
  .message-author {
    margin: 56px 0 0 60px;
  }
  .message-author img{
    width: 60%;
  }
}


/* SUPPORT SECTION */

.section-support {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  padding: 128px 0px;
  background: #F2F7F8;
}

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

.background-text-support {
  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;
}

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

.supports {
  width: 100%;
  margin: 0 auto;
  /* 中央寄せ */
}

.support-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 141, 197, 0.15);
  overflow: hidden;
  width: 100%;
  margin: 0 auto 32px;
  transition: box-shadow 0.3s ease;
  min-height: 360px;
  /* 最低これだけ高さあるよ */
}

.card-header {
  margin-top: 24px;
  padding-left: 44px;

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

  /* English/UI/18 B */
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  /* 28.8px */
  letter-spacing: 0.54px;
  width: 300px;
  background: linear-gradient(to right, #008DC5, #ffffff);
}

.card-body {
  display: flex;
  /* flex-wrap: wrap; */
  /* flex-direction: column; ← これを追加！縦並びに */
  padding: 24px 24px 0 24px;
  /* background-color: #0076A5; */
  /* min-height: 55%; 最低これだけ高さあるよ */
  margin: 0 0 10px 0;
  height: auto;
}

.profile-image img {
  /* width: 240px;
  height: auto; */
  margin-right: 24px;
  margin-left: 20px;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .profile-image img {
    /* width: 240px;
    height: auto; */
    text-align: center;
    margin-bottom: 20px;
    margin-left: 0px;
  }
}


.profile-content {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
}

.support-name {
  color: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;

  /* Japanese/UI/24 B */
  font-family: "LINE Seed JP_OTF";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  /* 28.8px */
  letter-spacing: 0.72px;
  margin-bottom: 25px;
}

@media screen and (max-width: 768px) {
  .support-name {
    margin-bottom: 10px;
  }
}

.support-summary {
  max-height: 140px;
  overflow: hidden;
  transition: max-height 0.4s ease;
  max-height: 11.2em;
  /* 例えば3行分くらい。1行 = 約1.6em × 3行分 */
  position: relative;
  transition: max-height 1s ease, opacity 1s ease;
  opacity: 1;
  color: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.48px;
}

@media screen and (max-width: 768px) {
  .support-summary {
    max-height: 20em;
  }
}

.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: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  /* Japanese/Body/normal Regular */
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px;
  /* 25.6px */
  letter-spacing: 0.48px;
  margin: 20px 20px 0 18px;
}

@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;
  /* 開いたら高さを自由に */
}


.profile-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.profile-name{
  display: flex;
  flex-direction: column;
}

/* MENBER SECTION */
.section-member {

  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  /* background-color: #0000A0; */
  padding: 128px 0px;
}

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

.background-text-member {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
  font-size: 128px;
  color: #F2F7F8;
  ;
  /* 本当はこれぐらい薄く */
  font-weight: 900;
  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;
}
@media screen and (max-width: 768px) {
  .background-text-member{
    display: none;  }
}


.team-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.member-card {
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  /* height: 772px; */
  padding: 16px;
  /* margin: 0 auto; */
  gap: 16px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border-radius: 8px;
  background: var(--Volve-White, #FFF);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.20);
}

.member-photo {
  height: auto;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 auto;
  object-fit: cover;
}

.member-title {
  color: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;

  /* Japanese/UI/18 B */
  font-family: "LINE Seed JP_OTF";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 25.2px */
  letter-spacing: 0.54px;
  padding: 0 10px;
}

.member-name {
  color: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
padding: 0 10px;
  /* Japanese/UI/24 B */
  font-family: "LINE Seed JP_OTF";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 28.8px */
  letter-spacing: 0.72px;
}

.member-bio {
  color: var(--text-Dark-gray, #3B5266);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25.6px;
  /* 25.6px */
  letter-spacing: 0.48px;
  padding: 5px 10px 5px 10px;
  /* margin-top: 16px; */
  /* border-top: 2px solid #008DC5; */
  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;
}

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

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

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

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

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

/* RECRUIT SECTION */
.section-recruit {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  /* background-color: #0000A0; */
  padding: 83px 0px;
}

@media screen and (max-width: 768px) {
  .section-recruit {
    padding: 72px 0px 30px;
  }
}

.container-recruit {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  background-color: var(--volve-blue);
  clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 0% 100%);
  padding-left: 8%;
  padding-bottom: 50px;
  padding-top: 10px;
  margin-left: 30%;
}

@media screen and (max-width: 768px) {
  .container-recruit{
    margin-left: 5%;
    padding-bottom: 18px;
    padding-top: 13px;
    padding-left: 20%;
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.section-title-recruit {
  color: var(--volve-white);
  font-size: clamp(40px, 5.5vw, 86px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 129px;
  letter-spacing: 2.58px;
  word-wrap: break-word
}

@media screen and (max-width: 768px) {
  .section-title-recruit {
    line-height: 50px;
    letter-spacing: 1;
  }
}


.recruit-link {
  
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;

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

  /* Japanese/UI/28 B */
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(10px, 3vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 33.6px;
  /* 33.6px */
  letter-spacing: 0.84px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .recruit-link img{
width: 5%;  }
}

.recruit-text {
  position: relative;
  font-size: clamp(14px, 4vw, 24px);;
}

.recruit-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  /* 下線の高さ（文字に近づける） */
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

.recruit-link:hover .recruit-text::after {
  width: 100%;
  /* ホバー時に左→右に線が伸びる！ */
  background: #FFF;
  /* 下線の色も変えるなら */
}


/* NEWS SECTION */
.section-news {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  padding: 128px 0px;
  background: #FFF;
}

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

.background-text-news {
  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;
}
@media screen and (max-width: 768px) {
  .background-text-news{
    display: none;  }
}
.news-item {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid #F2F7F8;
  /* background-color: #F2F7F8; */
}

.news-meta {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: #999;
  gap: 12px;
}

.news-date {
  color: var(--text-Black, #141414);
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  /* 17.5px */
}

.news-category {
  background: #008dc5;
  color: #fff;
  padding: 2px 12px;
  border-radius: 4px;
  display: inline-block;

  color: var(--Volve-White, #FFF);
  font-family: "LINE Seed JP_OTF";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 17.5px;
  /* 17.5px */
}

.news-title {
  color: var(--text-Black, #141414);
  text-align: justify;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 21px */
  text-decoration: none;
}

.news-title:hover {
  color: #afafaf;
}

.news-more-button {
  text-align: right;
  margin-top: 40px;
}

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

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

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

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

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

.news-text {
  color: var(--text-Lightblue, #018DC5);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: clamp(14px, 4vw, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}


/* COMPANY SECTION */
.section-company {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  /* background-color: #0000A0; */
  padding: 128px 0px;
  background-color: #F2F7F8;
}

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

.background-text-company {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: rotate(90deg) translateX(-100%);
  transform-origin: left bottom;
  font-size: 128px;
  color: #FFF;
  ;
  /* 本当はこれぐらい薄く */
  font-weight: 900;
  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;
}
@media screen and (max-width: 768px) {
  .background-text-company{
    display: none;  }
}

.company-info {
  display: flex;
  flex-direction: column;
  /* gap: 24px; 行間 */
  margin-top: 32px;
  margin-left: 30px;
}

@media screen and (max-width: 768px) {
  .company-info {
    margin: 0 auto;
  }
}

.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  /* ラベル160px＋内容 */
  align-items: center;
  /* 上下中央揃え */
  padding: 16px 0;
  border-bottom: 1px solid var(--Gray, #E6ECED);
  /* background-color: #008dc5; */
}

@media screen and (max-width: 768px) {
  .info-row {
    display: grid;
    grid-template-columns: 100px 1fr;
  }
}

.info-row dt {
  color: var(--text-Black, #141414);
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.info-row dd {
  color: var(--text-Black, #141414);
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-row dd a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-Black, #141414);
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.info-row dd a:hover {
  text-decoration: underline;
}

.info-row dd a img {
  object-fit: contain;
}

/* CONTACT SECTION */
.section-contact {
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;
  /* background-color: #0000A0; */
  background-color: #F2F7F8;
  padding-bottom: 200px;
}

.contact-background-image {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  /* 背景なのでクリック防止 */
  bottom: 0;
}

@media screen and (max-width: 768px) {
  .contact-background-image {
    top: 70px;  }
}

.contact-background-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  bottom: 0;
  min-width: 1040px;
}

.container-contact {
  position: relative;
  background: #008DC5;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  padding: 22px 0 22px 0;
  text-align: center;
  overflow: hidden;
  margin: 20px auto 0 auto;
}

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


.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  color: white;
}

.contact-title {
  color: #FFF;
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 5.5vw, 86px);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.58px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: transparent;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  color: #FFF;
  padding-bottom: 10px;
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(10px, 3vw, 28px);
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  letter-spacing: 0.72px;
  margin-top: 10px;
}

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

.contact-text {
  position: relative;
  display: inline-block;
}

.contact-text::after {
  content: '';
  position: absolute;
  bottom: -4px;
  /* 下線の高さ（文字に近づける） */
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
}

.contact-button:hover .contact-text::after {
  width: 100%;
  /* ホバー時に左→右に線が伸びる！ */
  background: #FFF;
  /* 下線の色も変えるなら */
}

@media screen and (max-width: 768px) {
  .contact-button img{
width: 10%;  }
}