@charset "UTF-8";
/* stylelint-disable at-rule-empty-line-before */

:root {
  /* ===================================================
     📏 レイアウト・基本設定
     =================================================== */
  --margin-section: 2.4em; /* セクション間の基本マージン */

  /* ===================================================
     🎨 カラーパレット（デザイン刷新用）
     =================================================== */
  
  /* メインカラー：清潔感・透明感のある「水色」 */
  --main-blue: #00b7ee;
  --main-blue-light: #e6f7ff; /* 背景やストライプ用 */
  --main-blue-alpha: rgba(0, 183, 238, 0.1); /* 薄い影用 */

  /* アクセントカラー：元気・情熱・活力を象徴する「強ピンク」 */
  --accent-pink: #f21795;
  --accent-pink-shadow: rgba(167, 58, 116, 0.4); /* ピンクボタンの影用 */

  /* ベースカラー：信頼・誠実・引き締めを担う「黒と紺」 */
  --tight-black: #222222; /* テキストやボタン、アイコンの引き締め用 */
  --base-navy: #005588;  /* 誠実な印象を与える濃い紺色 */
  --bg-gray: #f8f9fa;    /* 以前のグレーより少し明るく清潔なグレー */

  /* ===================================================
     ✨ 装飾パターン
     =================================================== */
  
  /* 刷新デザインの象徴「爽やかな水色ストライプ」 */
  --stripe-pattern: repeating-linear-gradient(
    -45deg,
    var(--main-blue-light) 0,
    var(--main-blue-light) 20px,
    #ffffff 20px,
    #ffffff 40px
  );
}

.imain_content {
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .imain_content {
    padding-top: 100px;
  }
}
.imain_content img {
  max-width: 100%;
  display: block;
}
.imain_content .bg_gray {
  background-color: #f2f2f2;
}
.imain_content .btn_wrap.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.imain_content .btn_wrap.right {
  display: block;
  margin-left: auto;
  margin-right: 0;
  text-align: right;
}
/* =============================================
   💎 募集要項ボタン：グリーンを撲滅し、誠実なネイビーへ
   ============================================= */
.imain_content .large_link {
  /* --- レイアウト数値（home.css継承） --- */
  margin-bottom: 0;
  letter-spacing: 0.1em; /* 少し広げて読みやすく */
  padding: 18px 66px;    /* 右側の66pxを活かしつつ上下を調整 */
  
  /* --- デザイン刷新：ぷっくりネイビー --- */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #005588; /* 信頼のネイビー */
  background-image: linear-gradient(135deg, #005588 0%, #003366 100%);
  color: #ffffff !important;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px; /* カプセル形状 */
  border: 3px solid #ffffff; /* ストライプの上で映える白フチ */
  
  /* 立体感を出す影 */
  box-shadow: 0px 8px 15px rgba(0, 51, 102, 0.2);
  
  position: relative;
  overflow: hidden; /* きらりんを閉じ込める */
  transition: all 0.3s ease;
  z-index: 1;
}

/* ホバーで水色に変化 ＋ 浮き上がる */
.imain_content .large_link:hover {
  background-color: #00b7ee;
  background-image: linear-gradient(135deg, #00b7ee 0%, #0088cc 100%);
  transform: translateY(-3px);
  box-shadow: 0px 12px 20px rgba(0, 183, 238, 0.3);
}

/* ボタン専用：きらりんシマーエフェクト */
.imain_content .large_link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.6s;
}

.imain_content .large_link:hover::before {
  left: 100%;
}
/* =============================================
   ✨ ポップアップアニメーション（挙動は維持）
   ============================================= */
.imain_content .popup_animation {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.41, 1.22, 0.5, 1.1);
  transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.41, 1.22, 0.5, 1.1);
  transition: transform 0.5s cubic-bezier(0.41, 1.22, 0.5, 1.1), opacity 0.5s;
  transition: transform 0.5s cubic-bezier(0.41, 1.22, 0.5, 1.1), opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.41, 1.22, 0.5, 1.1);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.imain_content .popup_animation.js-gsap_css_animation-after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* =============================================
   🚀 HERO本体：ここにストライプとサークルを集約
   ============================================= */
.hero {
  height: 806px; /* 数値死守 */
  max-height: 806px; /* 数値死守 */
  padding-left: clamp(20px, 20.7vw, 430px); /* 数値死守 */
  position: relative;
  overflow: hidden; /* サークルのハミ出しをカット */
  
  /* --- ✨ デザイン刷新：ここが正解の場所です --- */
  background: repeating-linear-gradient(
    -45deg,
    #e6f7ff 0,
    #e6f7ff 20px,
    #ffffff 20px,
    #ffffff 40px
  );
  border-radius: 40px;
  box-shadow: 25px 25px 0px rgba(0, 153, 255, 0.1);
}

/* --- 🟡 HYOGO MIKI サークル（.hero の中に入れる） --- */
.hero::before {
  content: "HYOGO\A MIKI";
  white-space: pre;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 0.9;
  
  position: absolute;
  top: 50%;
  left: 60%; 
  transform: translate(-50%, -50%) rotate(-10deg);
  
  width: 550px;
  height: 550px;
  background-color: #ffeb3b;
  border-radius: 50%;
  
  font-family: "Arial Black", sans-serif;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.5); /* ストライプが少し透ける白 */
  
  z-index: 1; /* 浮島(z-2)より下 */
  pointer-events: none;
}

/* レスポンシブ数値も home.css のまま維持 */
@media screen and (max-width: 999px) {
  .hero { height: 856px; max-height: 856px; }
}
@media screen and (max-width: 767px) {
  .hero { height: 630px; max-height: 630px; padding-left: clamp(20px, 25.7vw, 430px); }
  .hero::before { width: 350px; height: 350px; font-size: 4.5rem; left: 50%; }
}


.hero {
  height: 806px;
  max-height: 806px;
  padding-left: clamp(20px, 20.7vw, 430px);
  position: relative;
}
@media screen and (max-width: 999px) {
  .hero {
    height: 856px;
    max-height: 856px;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    height: 630px;
    max-height: 630px;
    padding-left: clamp(20px, 25.7vw, 430px);
  }
}
@media screen and (max-width: 576px) {
  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: auto;
    max-height: none;
    padding-left: 0;
  }
}
.hero__content {
  position: absolute;
  z-index: 5;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 154px;
  top: 0;
  left: 50px;
}
@media screen and (max-width: 1399px) {
  .hero__content {
    left: 30px;
  }
}
@media screen and (max-width: 999px) {
  .hero__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero__content {
    padding-top: 0;
  }
}
@media screen and (max-width: 576px) {
  .hero__content {
    position: static;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-top: 0;
    margin-top: -30px;
  }
}
.hero__main_text {
  position: relative;
  margin-bottom: 27px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.hero__main_text .main_text_top {
  width: clamp(250px, 30.43vw, 426px);
  margin-bottom: 4px;
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 0.3s cubic-bezier(0.3, 0.05, 0.75, 0.76);
  transition: -webkit-clip-path 0.3s cubic-bezier(0.3, 0.05, 0.75, 0.76);
  transition: clip-path 0.3s cubic-bezier(0.3, 0.05, 0.75, 0.76);
  transition: clip-path 0.3s cubic-bezier(0.3, 0.05, 0.75, 0.76), -webkit-clip-path 0.3s cubic-bezier(0.3, 0.05, 0.75, 0.76);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.hero__main_text .main_text_bottom {
  width: clamp(330px, 39.86vw, 558px);
  opacity: 0;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 0.4s cubic-bezier(0.3, 0.05, 0.75, 0.76);
  transition: -webkit-clip-path 0.4s cubic-bezier(0.3, 0.05, 0.75, 0.76);
  transition: clip-path 0.4s cubic-bezier(0.3, 0.05, 0.75, 0.76);
  transition: clip-path 0.4s cubic-bezier(0.3, 0.05, 0.75, 0.76), -webkit-clip-path 0.4s cubic-bezier(0.3, 0.05, 0.75, 0.76);
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.hero__main_text .deco {
  width: 53px;
  position: absolute;
  top: 44%;
  left: -75px;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03);
  transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03);
  transition: transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03), opacity 0.5s;
  transition: transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03), opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03);
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}
.hero__main_text .deco img._sp {
  display: none;
}
@media screen and (max-width: 1399px) {
  .hero__main_text .deco {
    width: 43px;
    top: -32px;
    left: -25px;
  }
}
@media screen and (max-width: 767px) {
  .hero__main_text .deco {
    width: 30px;
    top: -20px;
    left: -20px;
  }
}
@media screen and (max-width: 576px) {
  .hero__main_text .deco {
    width: 60px;
    top: -50px;
    left: 0px;
  }
  .hero__main_text .deco img._pc {
    display: none;
  }
  .hero__main_text .deco img._sp {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  .hero__main_text {
    margin-bottom: 0;
  }
}
.hero__circle_link {
  width: 265px;
  height: 265px;
  padding-left: 65px;
  margin-bottom: 12px;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
@media screen and (max-width: 1199px) {
  .hero__circle_link {
    padding-left: 30px;
  }
}
@media screen and (max-width: 999px) {
  .hero__circle_link {
    width: 210px;
    height: 210px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .hero__circle_link {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 576px) {
  .hero__circle_link {
    margin: 0 auto 5px;
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.hero__circle_link a .circle {
  position: absolute;
  top: 35px;  /* 数値死守 */
  left: 35px; /* 数値死守 */
  width: 200px; /* 数値死守 */
  height: 210px; /* 数値死守 */
  
  /* =============================================
     🎨 デザイン刷新（水色系：清潔感と信頼）
     ============================================= */
  /* ストライプより一段濃い、鮮やかなスカイブルー */
  background-color: #00b7ee; 
  /* ぷっくり感を出す放射状グラデーション（左上を明るく） */
  background-image: radial-gradient(circle at 30% 30%, #76d9f9 0%, #00b7ee 100%);
  
  border: 8px solid #ffffff; 
  border-radius: 50%;
  
  /* 影も水色系に合わせて調整し、透明感を演出 */
  box-shadow: 
    10px 10px 0px rgba(0, 183, 238, 0.2),
    inset -8px -8px 15px rgba(0, 0, 0, 0.1);
  
  overflow: hidden; 
  z-index: 10;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 0; /* バー無し・中央配置 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- ✨ きらりんエフェクト（水色に映える強めの光） --- */
.hero__circle_link a .circle::before {
  content: "";
  position: absolute;
  top: 0; left: -200%;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.8) 50%, 
    rgba(255, 255, 255, 0) 60%
  );
  z-index: 2;
}

.hero__circle_link a:hover .circle::before {
  left: 200%;
  transition: left 0.6s ease;
  transition-delay: 0.1s;
}

.hero__circle_link a:hover .circle {
  transform: scale(1.05);
}

/* --- 📝 テキストデザイン --- */
.hero__circle_link a .circle .text {
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  position: relative;
  z-index: 3;
  /* 水色背景に白文字をくっきりさせるための微細な影 */
  text-shadow: 0px 2px 4px rgba(0, 85, 136, 0.3);
}

/* --- 🌀 回転文字 --- */
.hero__circle_link a .outside_text {
  position: absolute;
  top: 5px;
  left: 4px;
  -webkit-animation: spin 20s linear infinite;
  animation: spin 20s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@media screen and (max-width: 999px) {
  /* 🧱 1. 一番外側の親要素（.hero__content や .hero__area 内にあると想定）
        PC版の配置数値をすべてリセットし、画面幅全体を使って中央に寄せる */
  .hero__circle_link {
    display: block !important;
    position: relative !important; /* または absolute、親の構造によります */
    width: 210px !important;  /* 回転文字を含んだサイズ */
    height: 210px !important;
    
    /* PC版の padding や margin、left 指定をすべて根絶 */
    padding: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    left: 0 !important;
    right: 0 !important;
    
    /* タイトルなどの下に来るように位置を調整 */
    margin-top: 20px !important; 
    margin-bottom: 20px !important;
    
    transform: none !important; /* PC版の変形をリセット */
    float: none !important; /* 万が一 float してたらリセット */
  }

  /* 🔵 2. エントリーボタン本体（水色の円）
        親要素（210px×210px）の真ん中に配置 */
  .hero__circle_link a .circle {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 165px !important;
    height: 165px !important;
    
    /* PC版の数値をリセット */
    margin: 0 !important;
    box-sizing: border-box;
  }

  /* 🌀 3. 外側の回転文字
        ボタンと同じく、親要素の真ん中に配置 */
  .hero__circle_link a .outside_text {
    top: 50% !important;
    left: 50% !important;
    width: 210px !important;
    height: 210px !important;
    
    /* PC版の数値をリセット */
    margin: 0 !important;
    
    /* 中央配置（translate）を維持しながら回転させるアニメーションへ */
    animation: spin_center 20s linear infinite !important;
    display: block !important;
  }

  /* 4. 中の画像が歪まないように固定 */
  .hero__circle_link a .outside_text img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain; 
  }
}

/* 🎬 アニメーション定義（既にファイル内にあれば不要です） */
@keyframes spin_center {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}
/* 念のためアニメーション定義も確認（これが必要） */
@keyframes spin_center {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* --- 🌊 中央維持のためのアニメーション定義（追加してください） --- */
@keyframes spin_center {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.hero__important {
  position: relative;
  z-index: 2;
  width: clamp(320px, 49.3vw, 690px);
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
@media screen and (max-width: 999px) {
  .hero__important {
    width: 100%;
  }
}
.hero__important__head {
  font-weight: 700;
  letter-spacing: 0.06rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 999px) {
  .hero__important__head {
    margin-bottom: 5px;
  }
}
.hero__important__newsline {
  display: block;
  width: 100%;
  min-height: 56px;
  border-radius: 10px;
  background: #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
  padding: 5px 40px 5px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  -webkit-box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
  box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
}
.hero__important__newsline::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #222222;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  left: auto;
  margin: auto;
}
@media screen and (max-width: 1199px) {
  .hero__important__newsline {
    padding: 10px 40px 10px 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (max-width: 576px) {
  .hero__important__newsline {
    padding: 20px 35px 20px 20px;
  }
  .hero__important__newsline::after {
    right: 20px;
  }
}
@media screen and (max-width: 576px) {
  .hero__important__newsline__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
  }
}
.hero__important__newsline__date {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #222222;
  letter-spacing: 0.1rem;
}
.hero__important__newsline__ex {
  line-height: 1.5;
  color: #222222;
  font-weight: 700;
  letter-spacing: 0.06rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero__important__newsline ._sp {
  display: none;
}
.hero__important__newsline ._sp .new {
  margin-left: 0;
}
@media screen and (max-width: 576px) {
  .hero__important__newsline ._pc {
    display: none;
  }
  .hero__important__newsline ._sp {
    display: block;
  }
}
.hero__important__newsline .new {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.hero__important__newsline:hover {
  opacity: 1;
  background-color: #00be9b;
}
.hero__important__newsline:hover::after {
  background-color: #ffffff;
}
.hero__important__newsline:hover .hero__important__newsline__date {
  color: #ffffff;
}
.hero__important__newsline:hover .hero__important__newsline__ex {
  color: #ffffff;
}
/* --- 🗺️ 浮島（地図）：数値を死守しつつ背景を透かす --- */
.hero__map {
  position: relative;
  height: 100%;
  min-width: 1170px; /* home.css 数値死守 */
  padding-top: 135px; /* home.css 数値死守 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2; /* サークル(z-1)の上に配置 */

  /* =============================================
     ✨ ぷかぷかアニメーション ＆ 影
     ============================================= */
  background: transparent !important; /* 背景を透明にして下のサークルを見せる */
  animation: floatingIsland 4s ease-in-out infinite;
  filter: drop-shadow(25px 25px 15px rgba(0, 85, 136, 0.15));
}

/* --- ❌ 水色の半円（after）を完全に削除して背後を見せる --- */
.hero__map::after {
  content: none !important;
  display: none !important;
}

/* --- 🎬 登場時のアニメーション（数値維持） --- */
@-webkit-keyframes base_map {
  0% {
    -webkit-transform: scale(1.2) translateY(-50px);
    transform: scale(1.2) translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@keyframes base_map {
  0% {
    -webkit-transform: scale(1.2) translateY(-50px);
    transform: scale(1.2) translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

/* --- 🌊 ぷかぷかアニメーションの動き定義 --- */
@keyframes floatingIsland {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

@-webkit-keyframes label {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes label {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes here {
  0% {
    -webkit-transform: scale(0.001) rotateY(0deg);
    transform: scale(0.001) rotateY(0deg);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.1) rotateY(1080deg);
    transform: scale(1.1) rotateY(1080deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotateY(1080deg);
    transform: scale(1) rotateY(1080deg);
    opacity: 1;
  }
}
@keyframes here {
  0% {
    -webkit-transform: scale(0.001) rotateY(0deg);
    transform: scale(0.001) rotateY(0deg);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(1.1) rotateY(1080deg);
    transform: scale(1.1) rotateY(1080deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1) rotateY(1080deg);
    transform: scale(1) rotateY(1080deg);
    opacity: 1;
  }
}



.hero__map .map_img {
  width: 100%;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  pointer-events: none;
}
.hero__map .map_img img {
  opacity: 0;
}
.hero__map .map_img.base_img {
  position: relative;
  z-index: 2;
}
.hero__map .map_img:not(.base_img) {
  position: absolute;
  z-index: 3;
  top: 135px;
}
.hero__map .map_img.here_icon {
  width: 9.74%;
  left: 30.3%;
  top: 37.5%;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.hero__map .map_img.here_icon img {
  -webkit-transform: scale(0.001) rotateY(0deg);
  transform: scale(0.001) rotateY(0deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}
@media screen and (max-width: 999px) {
  .hero__map {
    padding-top: 150px;
  }
  .hero__map .map_img {
    -webkit-transform: translateX(-10%);
    transform: translateX(-10%);
  }
  .hero__map .map_img:not(.base_img):not(.here_icon) {
    top: 150px;
  }
  .hero__map .map_img.tree_left_upper {
    display: none;
  }
  .hero__map .map_img.here_icon {
    left: 21.3%;
  }
}
@media screen and (max-width: 767px) {
  .hero__map {
    height: auto;
    padding-top: 10px;
    min-width: auto;
    width: 100vw;
    position: relative;
  }
  .hero__map .map_img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 920px;
  }
  .hero__map .map_img:not(.base_img):not(.here_icon) {
    top: 10px;
  }
  .hero__map .map_img.here_icon {
    left: 50%;
    -webkit-transform: translateX(-21%);
    transform: translateX(-21%);
    width: 920px;
    top: 24%;
  }
  .hero__map .map_img.here_icon img {
    max-width: 108px;
  }
}
@media screen and (max-width: 576px) {
  .hero__map .map_img {
    -webkit-transform: translateX(-42%);
    transform: translateX(-42%);
    top: -20px;
  }
  .hero__map .map_img.tree_left_upper {
    display: block;
    left: 68%;
  }
  .hero__map .map_img:not(.base_img):not(.here_icon) {
    top: -20px;
  }
  .hero__map .map_img.here_icon {
    left: 50%;
    -webkit-transform: translateX(-13%);
    transform: translateX(-13%);
    width: 920px;
    top: 19.5%;
  }
}

.hero.js-gsap_css_animation-after .hero__main_text .main_text_top {
  opacity: 1;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.hero.js-gsap_css_animation-after .hero__main_text .main_text_bottom {
  opacity: 1;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.hero.js-gsap_css_animation-after .hero__main_text .deco {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.hero.js-gsap_css_animation-after .hero__circle_link {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.hero.js-gsap_css_animation-after .hero__important {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.hero.js-gsap_css_animation-after .hero__map .map_img.base_img img, .hero.js-gsap_css_animation-after .hero__map .map_img.tree_left_upper img {
  -webkit-animation: base_map 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s forwards;
  animation: base_map 0.5s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s forwards;
}
.hero.js-gsap_css_animation-after .hero__map .map_img.chubu_text_img img {
  -webkit-animation: label 0.5s cubic-bezier(0.86, 0, 0.07, 1) 0.6s forwards;
  animation: label 0.5s cubic-bezier(0.86, 0, 0.07, 1) 0.6s forwards;
}
.hero.js-gsap_css_animation-after .hero__map .map_img.tajimi_text_img img {
  -webkit-animation: label 0.5s cubic-bezier(0.86, 0, 0.07, 1) 0.8s forwards;
  animation: label 0.5s cubic-bezier(0.86, 0, 0.07, 1) 0.8s forwards;
}
.hero.js-gsap_css_animation-after .hero__map .map_img.nouriha_text_img img {
  -webkit-animation: label 0.5s cubic-bezier(0.86, 0, 0.07, 1) 1s forwards;
  animation: label 0.5s cubic-bezier(0.86, 0, 0.07, 1) 1s forwards;
}


/* =============================================
   📦 データエリア：基本構造（data.htmlの成功例を継承）
   ============================================= */
.idata_area {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 1399px) { .idata_area { margin-bottom: 40px; } }
@media screen and (max-width: 999px) { .idata_area { padding-bottom: 60px; } }
@media screen and (max-width: 767px) { .idata_area { padding-bottom: 0; } }

.idata_area .en_title {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1399px) { .idata_area .en_title { right: 15px; } }

/* 🚀 カラム：data.htmlと同じ「自動改行あり」の3列設定 */
.idata_area .data_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  /* 重要：入り切らない分は次の行へ回す（data.htmlの挙動） */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; 
  -webkit-column-gap: clamp(20px, 4.3vw, 60px);
  -moz-column-gap: clamp(20px, 4.3vw, 60px);
  column-gap: clamp(20px, 4.3vw, 60px);
  row-gap: 40px; /* 行間の隙間を追加 */
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.idata_area .data_column > * {
  /* 成功していた時の計算式を死守 */
  width: calc(100% - clamp(20px, 4.3vw, 60px) / 3); 
  /* 実際には3等分として機能させるための補正（data.htmlの実装） */
  width: calc((100% - (clamp(20px, 4.3vw, 60px) * 2)) / 3);
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media screen and (max-width: 1299px) {
  .idata_area .data_column {
    -webkit-column-gap: clamp(15px, 4.3vw, 15px);
    -moz-column-gap: clamp(15px, 4.3vw, 15px);
    column-gap: clamp(15px, 4.3vw, 15px);
  }
  .idata_area .data_column > * {
    width: calc((100% - 30px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .idata_area .data_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    row-gap: 20px;
  }
  .idata_area .data_column > * {
    width: 100% !important;
    margin: 0 auto;
  }
}
/* =============================================
   🎨 カード内部：デザインのみを水色へ塗り替え
   ============================================= */
.idata_area .data_box {
  max-width: 400px;
  min-height: 260px;
  border-radius: 15px;
  /* 色のみ刷新：清潔感のあるライトブルー */
  background-color: #f8fdff; 
  border: 1px solid #e6f7ff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px 40px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* 🟢 にっくきグリーンを「水色バー」へ */
.idata_area .data_box::before {
  display: block;
  content: "";
  width: 34px;
  height: 6px;
  border-radius: 3px;
  background-color: #00b7ee; /* 刷新ブルー */
  position: absolute;
  top: -3px;
  right: 0; bottom: auto; left: 0;
  margin: auto;
}

.idata_area .data_box:after {
  display: block;
  content: "";
  width: calc(100% - 100px);
  height: 60px;
  -webkit-clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 0% 100%);
  background-color: #eef4f7; /* ネイビーグレー */
  position: absolute;
  right: 0;
  top: calc(100% - 60px);
  z-index: 0;
  border-radius: 0 0 15px 0;
}


.idata_area__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; /* ✅ これを確実に記述することで右に寄ります */
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 999px) {
  .idata_area .data_box__head {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .idata_area .data_box__head {
    font-size: 1.25rem;
  }
}
.idata_area .data_box__body {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 50%;
  padding-bottom: 22px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 999px) and (min-width: 768px) {
  .idata_area .data_box__body {
    padding-right: 0;
  }
}
@media screen and (max-width: 999px) {
  .idata_area .data_box__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .idata_area .data_box__body {
    padding-right: 48%;
  }
}
.idata_area .data_box .explanation {
  font-size: 0.938rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.idata_area .data_box__img {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .idata_area .data_box__img {
    opacity: 0.3;
  }
}
.idata_area .data_box__img img {
  width: 100%;
}
.idata_area .data_box._arrangement .data_box__body {
  padding-top: 15px;
  padding-right: 87px;
  overflow: visible;
}
.idata_area .data_box._arrangement .data_box__body .explanation {
  margin-bottom: 15px;
}
@media screen and (max-width: 1199px) and (min-width: 767px) {
  .idata_area .data_box._arrangement .data_box__body {
    padding-right: 0;
  }
}
.idata_area .data_box._arrangement .data_box__img {
  width: 108px;
  top: 15px;
  right: -25px;
}
@media screen and (max-width: 999px) {
  .idata_area .data_box._arrangement .data_box__img {
    right: -5px;
    top: auto;
    bottom: 5px;
  }
}
@media screen and (max-width: 419px) {
  .idata_area .data_box._arrangement .data_box__img {
    width: 98px;
  }
}
/* 「2交代制」の文字を一行に固定する */
.idata_area .data_box._taisei .data_set__data {
  white-space: nowrap !important;
}

.idata_area .data_box._ratio .data_box__body {
  padding-top: 17px;
  padding-right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: calc(100% + 40px);
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}
@media screen and (max-width: 999px) {
  .idata_area .data_box._ratio .data_box__body {
    width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
}
.idata_area .data_box._ratio .data_box__img {
  width: 142px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 999px) {
  .idata_area .data_box._ratio .data_box__img {
    bottom: -45px;
  }
}
.idata_area .data_box._night_shift {
  position: relative;
}
.idata_area .data_box._night_shift .data_box__body {
  position: static;
  padding-top: 15px;
  padding-right: 83px;
}
@media screen and (max-width: 1199px) and (min-width: 767px) {
  .idata_area .data_box._night_shift .data_box__body {
    padding-right: 0;
  }
}
.idata_area .data_box._night_shift .data_box__img {
  width: 290px;
  bottom: 35px;
  right: 0;
}
@media screen and (max-width: 999px) {
  .idata_area .data_box._night_shift .data_box__img {
    bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .idata_area .data_box._night_shift .explanation {
    padding-right: 1em;
  }
}
.idata_area .data_box .data_set {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3px;
  position: relative;
  z-index: 2;
}
.idata_area .data_box .data_set:not(:last-of-type) {
  margin-bottom: 7px;
}
.idata_area .data_box .data_set._vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.idata_area .data_box .data_set__label {
  font-size: 0.938rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.05em;
  -ms-flex-item-align: center;
  align-self: center;
}
.idata_area .data_box .data_set__data {
  min-width: 85px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  background-color: #ffffff;
  font-size: 3.125rem;
  border-radius: 3px;
  font-weight: 700;
  line-height: 0.8;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: center;
  padding: 0 0.13em 0 0.17em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .idata_area .data_box .data_set__data {
    font-size: 2.5rem;
    line-height: 1.1;
  }
}
.idata_area .data_box .data_set__data > .unit {
  font-size: 1.375rem;
}
.idata_area .data_box .data_set__data._small_ls {
  letter-spacing: -0.02em;
}
.idata_area .data_box .data_set__data._small_ls > .unit {
  margin-left: 4px;
}


.inews_area {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 73px;
}
.inews_area .btn_wrap._sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .inews_area .btn_wrap._pc {
    display: none;
  }
  .inews_area .btn_wrap._sp {
    display: block;
  }
}
.inews_area__deco {
  width: 172px;
  position: absolute;
  right: 0;
  bottom: -47px;
}
@media screen and (max-width: 1199px) {
  .inews_area__deco {
    display: none;
  }
}
.inews_area__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: clamp(10px, 13.43vw, 188px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 43px;
}
@media screen and (max-width: 1199px) {
  .inews_area__head {
    padding-right: 0;
  }
}
@media screen and (max-width: 999px) {
  .inews_area__head {
    display: block;
    margin-bottom: 30px;
  }
  .inews_area__head__l {
    margin-bottom: 20px;
  }
}
.inews_area__head__r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 1199px) {
  .inews_area__head__r {
    gap: 30px;
  }
}
@media screen and (max-width: 999px) {
  .inews_area__head__r {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
@media screen and (max-width: 576px) {
  .inews_area__head__r {
    width: 100%;
  }
}
.inews_area__head .news_tab_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #e7e7e7;
}
@media screen and (max-width: 576px) {
  .inews_area__head .news_tab_list {
    width: 100%;
  }
}
.inews_area__head .news_tab_list > * {
  width: 100px;
}
@media screen and (max-width: 576px) {
  .inews_area__head .news_tab_list > * {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .inews_area__head .news_tab_list > * .tab {
    font-size: 0.875rem;
  }
}
.inews_area__head .news_tab_list > * .tab {
  display: block;
  text-align: center;
  color: #222222;
  font-weight: 700;
  line-height: 1;
  padding-top: 17px;
  padding-bottom: 17px;
  position: relative;
}
.inews_area__head .news_tab_list > * .tab._selected::before {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #222222;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.inews_area__body {
  padding-left: 30px;
  padding-right: clamp(10px, 15.71vw, 220px);
}
@media screen and (max-width: 1199px) {
  .inews_area__body {
    padding-right: 0;
  }
}
@media screen and (max-width: 999px) {
  .inews_area__body {
    padding-left: 0;
  }
  .inews_area__body .swiper {
    margin-bottom: 30px;
  }
}

.icalendar_area {
  margin-bottom: 110px;
}
@media screen and (max-width: 999px) {
  .icalendar_area {
    margin-bottom: 70px;
  }
}
.icalendar_area__head {
  margin-bottom: 40px;
}

.imessage_area {
  position: relative;
  margin-bottom: 78px;
}
.imessage_area::before {
  display: block;
  content: "";
  width: 62.5vw;
  height: 330px;
  border-radius: 0 30px 30px 0;
  background-color: #f2f2f2;
  position: absolute;
  bottom: 60px;
  left: -62.5vw;
  -webkit-transform: translateX(10%);
  transform: translateX(10%);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98);
  transition: -webkit-transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98);
  transition: transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98);
  transition: transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98), -webkit-transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98);
}
@media screen and (max-width: 999px) {
  .imessage_area::before {
    bottom: 160px;
    height: 430px;
  }
}
@media screen and (max-width: 1460px) {
  .imessage_area {
    max-width: 1400px;
    margin: 0 auto 78px;
  }
  .imessage_area::before {
    left: calc(-62.5vw - 30px);
  }
}
@media screen and (max-width: 767px) {
  .imessage_area {
    margin-bottom: 5px;
  }
}
.imessage_area .btn_wrap._sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .imessage_area .btn_wrap._pc {
    display: none;
  }
  .imessage_area .btn_wrap._sp {
    display: block;
  }
}
.imessage_area .container {
  position: relative;
  padding-bottom: 170px;
}
.imessage_area .container .en_title {
  position: absolute;
  bottom: 31px;
  right: clamp(20px, 12.43vw, 174px);
}
@media screen and (max-width: 999px) {
  .imessage_area .container .en_title {
    right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .imessage_area .container .en_title {
    bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .imessage_area .container {
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 999px) {
  .imessage_area .container {
    padding-bottom: 140px;
  }
}
.imessage_area__deco {
  width: 80px;
  position: absolute;
  top: -66px;
  left: -70px;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03);
  transition: opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03);
  transition: transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03), opacity 0.5s;
  transition: transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03), opacity 0.5s, -webkit-transform 0.5s cubic-bezier(0.2, 1.52, 0.24, 2.03);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
@media screen and (max-width: 1460px) {
  .imessage_area__deco {
    left: 0;
  }
}
@media screen and (max-width: 999px) {
  .imessage_area__deco {
    width: 50px;
    top: -11px;
    left: -2px;
  }
}
.imessage_area__human {
  width: 190px;
  position: absolute;
  bottom: -50px;
  left: 78px;
}
@media screen and (max-width: 1199px) {
  .imessage_area__human {
    width: 140px;
    bottom: -10px;
    left: 40px;
  }
}
@media screen and (max-width: 999px) {
  .imessage_area__human {
    width: 110px;
    bottom: 0px;
    left: 20px;
  }
}
@media screen and (max-width: 999px) {
  .imessage_area__human {
    bottom: 30px;
  }
}

.imessage_area__l {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.7); /* 50%透明な白背景を敷く */
    padding: 20px;
    border-radius: 10px;
}
.imessage_area__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: clamp(20px, 6.8vw, 95px);
  -moz-column-gap: clamp(20px, 6.8vw, 95px);
  column-gap: clamp(20px, 6.8vw, 95px);
}
@media screen and (max-width: 1299px) {
  .imessage_area__column {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}
@media screen and (max-width: 999px) {
  .imessage_area__column {
    display: block;
  }
}
.imessage_area__l {
  padding-top: 1em;
}
.imessage_area__title {
  font-size: 2.188rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0;
  margin-bottom: 48px;
}
@media screen and (max-width: 1199px) {
  .imessage_area__title {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 999px) {
  .imessage_area__title {
    font-size: 1.875rem;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .imessage_area__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 419px) {
  .imessage_area__title {
    font-size: 1.375rem;
  }
}
.imessage_area__text {
  letter-spacing: 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 999px) {
  .imessage_area__text {
    margin-bottom: 20px;
  }
}
.imessage_area__btn {
  text-align: right;
}
.imessage_area__r {
  position: relative;
  width: clamp(400px, 42.86vw, 600px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media screen and (max-width: 999px) {
  .imessage_area__r {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 30px;
  }
}
.imessage_area__r__message {
  position: absolute;
  bottom: 40px;
  left: -20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 7px;
}
.imessage_area__r__message .line {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 40px;
  color: #222222;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #ffffff;
  padding: 0 16px;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0rem;
  line-height: 40px;
}
@media screen and (max-width: 767px) {
  .imessage_area__r__message .line {
    font-size: 1.125rem;
    min-height: 35px;
    line-height: 35px;
  }
}
@media screen and (max-width: 576px) {
  .imessage_area__r__message .line {
    font-size: 1rem;
    min-height: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .imessage_area__r__message {
    bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .imessage_area__r__message {
    bottom: 20px;
    left: -10px;
  }
}
@media screen and (max-width: 420px) {
  .imessage_area__r__message {
    bottom: 10px;
  }
}
.imessage_area .swiper .swiper-slide img {
  border-radius: 20px;
}
.imessage_area .swiper .swiper-button-prev,
.imessage_area .swiper .swiper-button-next {
  width: 18px;
  height: 28px;
  background: url("../common/img/icon/arrow/slider_arrow.webp") no-repeat;
  background-size: contain;
}
.imessage_area .swiper .swiper-button-prev::after,
.imessage_area .swiper .swiper-button-next::after {
  display: none;
}
.imessage_area .swiper .swiper-button-prev {
  left: 30px;
}
@media screen and (max-width: 999px) {
  .imessage_area .swiper .swiper-button-prev {
    left: 10px;
  }
}
.imessage_area .swiper .swiper-button-next {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  right: 30px;
}
@media screen and (max-width: 999px) {
  .imessage_area .swiper .swiper-button-next {
    right: 10px;
  }
}
.imessage_area .swiper .swiper-pagination {
  bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 999px) {
  .imessage_area .swiper .swiper-pagination {
    bottom: 15px;
    padding-right: 10px;
    padding-left: 10px;
    gap: 5px;
  }
}
.imessage_area .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  opacity: 1;
}
.imessage_area .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background-color: #222222;
}

.imessage_area.js-gsap_css_animation-after .imessage_area__deco {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.imessage_area.js-gsap_css_animation-after::before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.imessage_area .swiper .swiper-slide img {
  width: 100%;           /* スライドの幅いっぱいに広げる */
  height: 450px;         /* 高さを固定する（大きすぎる場合は 350px などに下げてください） */
  object-fit: cover;     /* 画像を歪ませずに、指定したサイズで切り抜く（重要！） */
  border-radius: 20px;
}

/* スマホでの表示が縦長すぎる場合は、これも追加してください */
@media screen and (max-width: 767px) {
  .imessage_area .swiper .swiper-slide img {
    height: 250px;       /* スマホでは高さを抑える */
  }
}


.ivoice_area {
  max-width: 1400px;
  margin: 0 auto 53px;
  position: relative;
  padding-bottom: 54px;
}
@media screen and (max-width: 1399px) {
  .ivoice_area {
    padding-bottom: 25px;
  }
}
@media screen and (max-width: 999px) {
  .ivoice_area {
    padding-bottom: 5px;
  }
}
.ivoice_area::before {
  display: block;
  content: "";
  width: 100vw;
  height: 440px;
  border-radius: 30px 0 0 30px;
  background-color: #f2f2f2;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  -webkit-transform: translateX(90%);
  transform: translateX(90%);
  -webkit-transition: -webkit-transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98);
  transition: -webkit-transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98);
  transition: transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98);
  transition: transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98), -webkit-transform 1.5s cubic-bezier(0.78, 1.12, 0.66, 0.98);
}
@media screen and (max-width: 1399px) {
  .ivoice_area::before {
    border-radius: 0;
  }
}
@media screen and (max-width: 649px) {
  .ivoice_area::before {
    height: 70%;
  }
}
.ivoice_area .en_title {
  position: absolute;
  bottom: -40px;
  right: -10px;
}
@media screen and (max-width: 1399px) {
  .ivoice_area .en_title {
    right: 15px;
  }
}
@media screen and (max-width: 999px) {
  .ivoice_area .en_title {
    bottom: -30px;
  }
}
.ivoice_area__deco {
  width: 67px;
  position: absolute;
  top: -80px;
  right: 0;
}
@media screen and (max-width: 1399px) {
  .ivoice_area__deco {
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .ivoice_area__deco {
    display: none;
  }
}
.ivoice_area .container {
  position: relative;
}
@media screen and (max-width: 999px) {
  .ivoice_area .container {
    padding: 0;
  }
}
.ivoice_area__head {
  margin-bottom: 60px;
}
@media screen and (max-width: 999px) {
  .ivoice_area__head {
    margin-bottom: 40px;
  }
}
.ivoice_area__body > ._sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .ivoice_area__body {
    margin-bottom: 15px;
  }
  .ivoice_area__body > ._pc {
    display: none;
  }
  .ivoice_area__body > ._sp {
    display: block;
  }
}
.ivoice_area__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(15px, 5.7vw, 80px);
  -moz-column-gap: clamp(15px, 5.7vw, 80px);
  column-gap: clamp(15px, 5.7vw, 80px);
}
@media screen and (max-width: 999px) {
  .ivoice_area__column {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .ivoice_area__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
}
.ivoice_area .swiper {
  padding-bottom: 50px;
}
.ivoice_area .swiper .swiper-slide {
  width: 100%;
  max-width: 560px;
  padding-right: 30px;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .ivoice_area .swiper .swiper-slide {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.ivoice_area .swiper .swiper-button-prev,
.ivoice_area .swiper .swiper-button-next {
  width: 18px;
  height: 28px;
  background: url("./common/img/icon/arrow/slider_arrow.webp") no-repeat;
  background-size: contain;
  top: 40%;
}
.ivoice_area .swiper .swiper-button-prev::after,
.ivoice_area .swiper .swiper-button-next::after {
  display: none;
}
.ivoice_area .swiper .swiper-button-prev {
  left: 30px;
}
@media screen and (max-width: 999px) {
  .ivoice_area .swiper .swiper-button-prev {
    left: 10px;
  }
}
.ivoice_area .swiper .swiper-button-next {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  right: 30px;
}
@media screen and (max-width: 999px) {
  .ivoice_area .swiper .swiper-button-next {
    right: 10px;
  }
}
.ivoice_area .swiper .swiper-pagination {
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 30px;
  padding-left: 30px;
}
@media screen and (max-width: 999px) {
  .ivoice_area .swiper .swiper-pagination {
    bottom: 15px;
    padding-right: 10px;
    padding-left: 10px;
    gap: 5px;
  }
}
.ivoice_area .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  opacity: 1;
}
.ivoice_area .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background-color: #222222;
}
.ivoice_area .voice_card {
  display: block;
  max-width: 560px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media screen and (max-width: 767px) {
  .ivoice_area .voice_card {
    margin: 0 auto;
  }
}
.ivoice_area .voice_card__body {
  display: block;
  position: relative;
  margin-bottom: 35px;
}
.ivoice_area .voice_card__job_label {
  display: block;
  width: 100px;
  min-height: 30px;
  line-height: 30px;
  border-radius: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 0.875rem;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.ivoice_area .voice_card__job_label._nurse {
  background-color: #00b7ee;
}
.ivoice_area .voice_card__job_label._associate_nurse {
  background-color: #3497ca;
}
.ivoice_area .voice_card__job_label._care_worker {
  background-color: #3d68c9;
}
@media screen and (max-width: 767px) {
  .ivoice_area .voice_card__job_label {
    top: 15px;
    left: 15px;
  }
}
.ivoice_area .voice_card__message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: -20px;
  row-gap: 6px;
}
.ivoice_area .voice_card__message > .line {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  color: #222222;
  font-size: 1.25rem;
  font-weight: 700;
  min-height: 40px;
  line-height: 40px;
  padding: 0 1em;
  border-radius: 3px;
}
@media screen and (max-width: 999px) {
  .ivoice_area .voice_card__message > .line {
    font-size: 1.125rem;
    min-height: 35px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  .ivoice_area .voice_card__message > .line {
    font-size: 1rem;
    min-height: 30px;
    line-height: 30px;
  }
}
@media screen and (max-width: 999px) {
  .ivoice_area .voice_card__message {
    left: -10px;
    bottom: 65px;
  }
}
@media screen and (max-width: 649px) {
  .ivoice_area .voice_card__message {
    bottom: 20px;
  }
}
.ivoice_area .voice_card__link_icon {
  position: absolute;
  right: 26px;
  bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .ivoice_area .voice_card__link_icon {
    right: 15px;
    bottom: 10px;
  }
}
.ivoice_area .voice_card__img {
  height: 440px;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
  box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
}
.ivoice_area .voice_card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media screen and (max-width: 420px) {
  .ivoice_area .voice_card__img {
    height: 320px;
  }
}
.ivoice_area .voice_card__name {
  display: block;
  font-size: 1.875rem;
  color: #222222;
  font-weight: 700;
  line-height: 1;
}
.ivoice_area .voice_card__name ._label {
  font-size: 1.25rem;
}
@media screen and (max-width: 999px) {
  .ivoice_area .voice_card__name {
    font-size: 1.625rem;
  }
  .ivoice_area .voice_card__name ._label {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 576px) {
  .ivoice_area .voice_card__name {
    font-size: 1.5rem;
  }
  .ivoice_area .voice_card__name ._label {
    font-size: 1rem;
  }
}
.ivoice_area .voice_card__year {
  color: #222222;
  font-size: 1.125rem;
  font-weight: 700;
}
.ivoice_area .voice_card__foot__column {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: clamp(25px, 10vw, 80px);
  -moz-column-gap: clamp(25px, 10vw, 80px);
  column-gap: clamp(25px, 10vw, 80px);
  position: relative;
}
.ivoice_area .voice_card__foot__column::before {
  display: block;
  content: "×";
  width: 15px;
  height: 15px;
  font-size: 1.125rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #222222;
  line-height: 1;
}
.ivoice_area .voice_card:hover {
  opacity: 1;
}
.ivoice_area .voice_card:hover .voice_card__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.ivoice_area .voice_card:hover .voice_card__name,
.ivoice_area .voice_card:hover .voice_card__year {
  color: #00b7ee;
}
.ivoice_area .voice_card:hover .voice_card__link_icon .link_icon {
  background-color: #00b7ee;
}

.ivoice_area.js-gsap_css_animation-after::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.irecruit_area {
  max-width: 1400px;
  margin: 0 auto 130px;
  position: relative;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .irecruit_area {
    margin-bottom: 120px;
  }
}
.irecruit_area::after {
  display: block;
  content: "";
  width: 100%;
  height: 220px;
  border-radius: 30px;
  background-color: #f2f2f2;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 1399px) {
  .irecruit_area::after {
    border-radius: 0;
  }
}
.irecruit_area__head {
  margin-bottom: 40px;
}
.irecruit_area__body {
  position: relative;
  z-index: 1;
}
.irecruit_area__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: clamp(20px, 4.3vw, 60px);
  -moz-column-gap: clamp(20px, 4.3vw, 60px);
  column-gap: clamp(20px, 4.3vw, 60px);
}
.irecruit_area__column > * {
  width: calc(33.33% - clamp(20px, 4.3vw, 60px) * 2 / 3);
}
@media screen and (max-width: 999px) {
  .irecruit_area__column {
    -webkit-column-gap: clamp(20px, 3vw, 30px);
    -moz-column-gap: clamp(20px, 3vw, 30px);
    column-gap: clamp(20px, 3vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .irecruit_area__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .irecruit_area__column > * {
    width: 100%;
  }
}
.irecruit_area .irecruit_btn {
  display: block;
  height: 200px;
  max-width: 360px;
  border-radius: 10px;
  -webkit-box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
  box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
  color: #ffffff;
  padding: 40px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
@media screen and (max-width: 999px) {
  .irecruit_area .irecruit_btn {
    padding: 20px 20px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .irecruit_area .irecruit_btn {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 576px) {
  .irecruit_area .irecruit_btn {
    height: 160px;
  }
}
.irecruit_area .irecruit_btn::before {
  display: block;
  content: "";
  width: calc(100% - 70px);
  height: 100px;
  -webkit-clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(50% 50%, 100% 0%, 100% 100%, 0% 100%);
  position: absolute;
  right: 0;
  top: calc(100% - 70px);
  z-index: 0;
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
/* ==========================================================================
   🎯 採用情報エリア（ふんわり浮遊モダンパネル版）
   ========================================================================== */

/* エリア全体の設定（余白など） */
.irecruit_area {
  max-width: 1400px;
  margin: 0 auto 130px;
  position: relative;
  padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
  .irecruit_area { margin-bottom: 120px; }
}

/* 💡 後ろにある背景の装飾を、白パネルが映える爽やかな極薄ブルーグレーに変更 */
.irecruit_area::after {
  display: block;
  content: "";
  width: 100%;
  height: 220px;
  border-radius: 30px;
  background-color: #f8fbfd; 
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 1399px) {
  .irecruit_area::after { border-radius: 0; }
}
.irecruit_area__head { margin-bottom: 40px; }
.irecruit_area__body { position: relative; z-index: 1; }

/* 💡 パネルを横に並べる設定 */
.irecruit_area__column {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4.3vw, 40px);
}
@media screen and (max-width: 767px) {
  .irecruit_area__column {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* 👇 ここから新しいパネルデザイン（パクリ感ゼロのオリジナル！） */
.irecruit_area .irecruit_btn {
  flex: 1;
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 60px 30px 30px; /* 右側に矢印用の余白を確保 */
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 85, 136, 0.08); /* 上品な影 */
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 💡 右端に「丸い矢印アイコン」を出現させる魔法 */
.irecruit_area .irecruit_btn::after {
  content: "\279C";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #f4f9fc;
  color: #005588;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* 左端の数字（01, 02...）のデザイン */
.irecruit_area .irecruit_btn__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #00b7ee;
  margin-right: 20px;
  font-family: "Helvetica Neue", "Arial", sans-serif;
  opacity: 0.8;
}

/* テキストのデザイン */
.irecruit_area .irecruit_btn__text {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333333;
  transition: color 0.3s ease;
  margin-bottom: 0;
}

/* =========================================
   🖱️ ホバー時（マウスを乗せた時）の動き
   ========================================= */
.irecruit_area .irecruit_btn:hover {
  transform: translateY(-6px); /* ふわっと上に浮く */
  background: #f4f9fc; /* ほんのり水色に */
  box-shadow: 0 12px 30px rgba(0, 85, 136, 0.15); /* 影を濃く */
}
.irecruit_area .irecruit_btn:hover .irecruit_btn__text {
  color: #005588;
}
.irecruit_area .irecruit_btn:hover::after {
  background: #005588;
  color: #ffffff;
  transform: translateY(-50%) translateX(6px); /* 矢印がスッと右へ動く！ */
}
/* 💡 採用情報エリアの透かし文字を「右上」に配置（イラスト被り回避） */
.irecruit_area .en_title {
  position: absolute;
  top: 0px;           /* 💡 bottom ではなく top に変更 */
  right: -20px;
  bottom: auto;       /* 💡 念のため bottom の設定をリセット */
  z-index: 0;
  pointer-events: none;
}


.iday_area {
  max-width: 1400px;
  margin: 0 auto 140px;
  position: relative;
}
.iday_area__tree {
  width: 113px;
  position: absolute;
  top: -70px;
  left: 0;
}
@media screen and (max-width: 1399px) {
  .iday_area__tree {
    left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .iday_area__tree {
    width: 70px;
  }
}
@media screen and (max-width: 576px) {
  .iday_area__tree {
    top: -100px;
  }
}
.iday_area__human {
  position: absolute;
  width: 244px;
  top: -210px;
  right: 0;
  -webkit-transition-delay: 0.7s !important;
  transition-delay: 0.7s !important;
}
@media screen and (max-width: 1399px) {
  .iday_area__human {
    width: 200px;
    top: -180px;
  }
}
@media screen and (max-width: 767px) {
  .iday_area__human {
    width: 140px;
    top: -180px;
  }
}
@media screen and (max-width: 576px) {
  .iday_area__human {
    width: 110px;
  }
}
.iday_area__head {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .iday_area__head {
    margin-bottom: 35px;
  }
}
.iday_area__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: clamp(20px, 4.3vw, 80px);
  -moz-column-gap: clamp(20px, 4.3vw, 80px);
  column-gap: clamp(20px, 4.3vw, 80px);
}
.iday_area__column > * {
  width: calc(100% - clamp(20px, 4.3vw, 80px) / 2);
}
@media screen and (max-width: 1399px) {
  .iday_area__column {
    -webkit-column-gap: clamp(20px, 4.3vw, 30px);
    -moz-column-gap: clamp(20px, 4.3vw, 30px);
    column-gap: clamp(20px, 4.3vw, 30px);
  }
}
@media screen and (max-width: 767px) {
  .iday_area__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
  .iday_area__column > * {
    width: 100%;
  }
}
.iday_area .day_btn {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  -webkit-box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
  box-shadow: 0px 10px 0px 0px rgba(46, 55, 74, 0.15);
}
.iday_area .day_btn::before {
  display: block;
  content: "";
  height: 100%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.9) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.iday_area .day_btn__img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
}
.iday_area .day_btn__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.iday_area .day_btn__text {
  position: absolute;
  bottom: 25px;
  left: 50px;
  right: 80px;
  font-size: 1.5rem;
  color: #222222;
  font-weight: 700;
  z-index: 2;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
.iday_area .day_btn__text .line {
  display: inline-block;
}
@media screen and (max-width: 1199px) {
  .iday_area .day_btn__text {
    left: 30px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 999px) {
  .iday_area .day_btn__text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 419px) {
  .iday_area .day_btn__text {
    font-size: 1.125rem;
    bottom: 20px;
    left: 20px;
  }
}
.iday_area .day_btn__link_icon {
  position: absolute;
  right: 25px;
  bottom: 16px;
  z-index: 2;
}
.iday_area .day_btn:hover .day_btn__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.iday_area .day_btn:hover .link_icon {
  background-color: #00b7ee;
}

.ibenefit_area__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .ibenefit_area__inner {
    padding-bottom: 50px;
  }
}
.ibenefit_area__deco {
  width: 173px;
  position: absolute;
  top: -100px;
  right: 29.75%;
}
@media screen and (max-width: 1199px) {
  .ibenefit_area__deco {
    width: 130px;
    top: -110px;
  }
}
@media screen and (max-width: 999px) {
  .ibenefit_area__deco {
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .ibenefit_area__deco {
    top: -105px;
  }
}
@media screen and (max-width: 576px) {
  .ibenefit_area__deco {
    width: 100px;
    top: -115px;
  }
}
.ibenefit_area .en_title {
  position: absolute;
  right: -4px;
  bottom: -4px;
}
.ibenefit_area .btn_wrap._sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .ibenefit_area .btn_wrap._pc {
    display: none;
  }
  .ibenefit_area .btn_wrap._sp {
    display: block;
  }
}
.ibenefit_area__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 200px;
  height: 167px;
  margin-bottom: 60px;
}
.ibenefit_area__head .btn_wrap {
  padding-bottom: 45px;
}
.ibenefit_area__head .btn_wrap._sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .ibenefit_area__head .btn_wrap._pc {
    display: none;
  }
  .ibenefit_area__head .btn_wrap._sp {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .ibenefit_area__head {
    height: 137px;
    gap: 90px;
  }
}
@media screen and (max-width: 999px) {
  .ibenefit_area__head {
    height: auto;
    padding-top: 120px;
  }
}
@media screen and (max-width: 767px) {
  .ibenefit_area__head {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 576px) {
  .ibenefit_area__head {
    padding-top: 70px;
  }
}
.ibenefit_area__title {
  font-size: 2.188rem;
  font-weight: 700;
}
@media screen and (max-width: 999px) {
  .ibenefit_area__title {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 576px) {
  .ibenefit_area__title {
    font-size: 1.5rem;
  }
}
.ibenefit_area__explanation {
  font-size: 1.063rem;
  font-weight: 700;
}
.ibenefit_area__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: clamp(20px, 4.3vw, 60px);
  -moz-column-gap: clamp(20px, 4.3vw, 60px);
  column-gap: clamp(20px, 4.3vw, 60px);
  margin-bottom: 53px;
}
@media screen and (max-width: 999px) {
  .ibenefit_area__column {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .ibenefit_area__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }
}
.ibenefit_area .benefit_card {
  display: block;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
@media screen and (max-width: 767px) {
  .ibenefit_area .benefit_card {
    margin: 0 auto;
    width: 100%;
    max-width: 460px;
    height: 250px;
  }
}
.ibenefit_area .benefit_card__label {
  width: 100px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 15px;
  text-align: center;
  line-height: 30px;
  font-size: 0.875rem;
  font-weight: 700;
  position: absolute;
  top: 20px;
  left: 20px;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .ibenefit_area .benefit_card__label {
    top: 15px;
    left: 15px;
  }
}
.ibenefit_area .benefit_card__img {
  height: 450px;
  display: block;
  border-radius: 15px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}
.ibenefit_area .benefit_card__img img {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .ibenefit_area .benefit_card__img {
    height: 100%;
  }
  .ibenefit_area .benefit_card__img img {
    -o-object-position: center;
    object-position: center;
  }
  .ibenefit_area .benefit_card__img._takuji img {
    -o-object-position: 0% 66%;
    object-position: 0% 66%;
  }
}
.ibenefit_area .benefit_card__title {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 40px;
  background-color: #ffffff;
  border-radius: 3px;
  color: #222222;
  font-size: 1.25rem;
  font-weight: 700;
  padding-right: 0.7em;
  padding-left: 0.8em;
  position: absolute;
  bottom: 8.9%;
  left: -20px;
  letter-spacing: 0;
}
@media screen and (max-width: 999px) {
  .ibenefit_area .benefit_card__title {
    left: -10px;
    font-size: 1.125rem;
    min-height: 35px;
    line-height: 35px;
  }
}
@media screen and (max-width: 999px) and (min-width: 768px) {
  .ibenefit_area .benefit_card__title {
    bottom: 60px;
  }
}
@media screen and (max-width: 576px) {
  .ibenefit_area .benefit_card__title {
    font-size: 1rem;
    min-height: 30px;
    line-height: 30px;
  }
}
.ibenefit_area .benefit_card__link_icon {
  position: absolute;
  right: 26px;
  bottom: 20px;
}
@media screen and (max-width: 1199px) {
  .ibenefit_area .benefit_card__link_icon {
    right: 15px;
    bottom: 10px;
  }
}
.ibenefit_area__link_list {
  max-width: 780px;
  min-height: 70px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-column-gap: clamp(15px, 7.5vw, 90px);
  -moz-column-gap: clamp(15px, 7.5vw, 90px);
  column-gap: clamp(15px, 7.5vw, 90px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1em;
}
@media screen and (max-width: 999px) {
  .ibenefit_area__link_list {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .ibenefit_area__link_list {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}
@media screen and (max-width: 620px) {
  .ibenefit_area__link_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.ibenefit_area__link_list li:not(:last-of-type) {
  position: relative;
}
.ibenefit_area__link_list li:not(:last-of-type)::after {
  display: block;
  content: "/";
  font-size: 1.125rem;
  color: #222222;
  font-weight: 700;
  position: absolute;
  top: 0;
  right: clamp(-50px, -4vw, -7.5px);
  bottom: 0;
  left: auto;
}
@media screen and (max-width: 767px) {
  .ibenefit_area__link_list li:not(:last-of-type)::after {
    right: -20px;
    top: -2px;
  }
}
@media screen and (max-width: 620px) {
  .ibenefit_area__link_list li:not(:last-of-type)::after {
    display: none;
  }
}
.ibenefit_area__link {
  font-size: 1.125rem;
  color: #222222;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .ibenefit_area__link {
    font-size: 1rem;
  }
}

.ifacility_area {
  padding-bottom: 115px;
}
.ifacility_area__head {
  margin-bottom: 30px;
}
@media screen and (max-width: 999px) {
  .ifacility_area__head {
    margin-bottom: 20px;
  }
}
.ifacility_area__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ifacility_area__column > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.ifacility_area__column > *:nth-of-type(3n + 1) {
  padding-right: clamp(10px, 3.7vw, 70px);
}
.ifacility_area__column > *:nth-of-type(3n + 2) {
  padding-right: clamp(10px, 3.7vw, 70px);
  padding-left: clamp(10px, 3.7vw, 70px);
}
.ifacility_area__column > *:nth-of-type(3n) {
  padding-left: clamp(10px, 3.7vw, 70px);
}
.ifacility_area__column > *:not(:last-of-type) {
  border-right: 1px solid #d7d7d7;
}
@media screen and (max-width: 999px) {
  .ifacility_area__column > *:nth-of-type(3n + 1) {
    padding-right: clamp(10px, 3vw, 80px);
  }
  .ifacility_area__column > *:nth-of-type(3n + 2) {
    padding-right: clamp(10px, 3vw, 80px);
    padding-left: clamp(10px, 3vw, 80px);
  }
  .ifacility_area__column > *:nth-of-type(3n) {
    padding-left: clamp(10px, 3vw, 80px);
  }
}
@media screen and (max-width: 767px) {
  .ifacility_area__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .ifacility_area__column > * {
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .ifacility_area__column > *:not(:last-of-type) {
    border-right: none;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
  }
}
.ifacility_area .facility_box {
  padding-top: 22px;
}
.ifacility_area .facility_box__name {
  margin-bottom: 10px;
}
.ifacility_area .facility_box__name a {
  font-size: 1.375rem;
  font-weight: 700;
  color: #222222;
}
.ifacility_area .facility_box__name:after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 14px;
  background: url("./common/img/icon/ext_black.webp");
  background-size: contain;
  margin-left: 5px;
}
@media screen and (max-width: 999px) {
  .ifacility_area .facility_box__name a {
    font-size: 1.125rem;
  }
}
.ifacility_area .facility_box__address {
  margin-bottom: 5px;
}
.ifacility_area .facility_box__tell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 12px;
}
.ifacility_area .facility_box__tell > .label {
  font-size: 1.25rem;
  font-weight: 700;
}
.ifacility_area .facility_box__tell > .number {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15rem;
}



/* ==========================================================================
   ✨ 1. メインコンテンツ全体の背景：動くグリッド（パターン2）
   ========================================================================== */
.imain_content {
    background-color: #f8faff !important;
    /* 極薄い水色の動くグリッド背景で「デジタル・データ」感を演出 */
    background-image: 
        linear-gradient(rgba(0, 145, 234, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 145, 234, 0.04) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    animation: gridMoving 40s linear infinite !important;
}

@keyframes gridMoving {
    from { background-position: 0 0; }
    to { background-position: 40px 40px; }
}



/* --------------------------------------------------------------------------
   ✨ その他セクション共通
   -------------------------------------------------------------------------- */
.ititle {
  color: #222222;
  font-size: 1.875rem;
  font-weight: 900;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* 左側のアイコンを無くした分、余白をスッキリ調整 */
  padding: 8px 25px 8px 15px; 
  margin-bottom: 50px;
  background-color: #ffffff; 
  border-left: 8px solid #005588; /* 左側に太めのネイビーラインで「タイトル感」を強調 */
  border-radius: 4px; /* 角丸を控えめにして清潔感を出す */
  box-shadow: 5px 5px 0px rgba(0, 183, 238, 0.2); /* 水色の影でポップさを維持 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 0.08rem;
}

/* ❌ 黄色の丸もグリーンも廃止 → シンプルなアクセントドットへ */
.ititle::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: #00b7ee; /* 右上に水色のアクセント */
  border-radius: 50%;
  opacity: 0.6;
}

/* ::before は黄色い丸だったので削除 */
.ititle::before {
  content: none !important;
}

@media screen and (max-width: 999px) {
  .ititle { font-size: 1.5rem; padding: 6px 20px 6px 12px; }
}

/* 🌀 詳しく見るアイコン：シンプルで分かりやすい「矢印」へ */
.link_icon {
  display: block;
  width: 44px;
  height: 44px;
  background-color: #005588; 
  border-radius: 50%; /* 正円へ */
  position: relative;
  margin: auto;
  transition: all 0.3s ease;
}

/* 🟢 ドットを根絶 → 白い「＞」マークへ */
.link_icon::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translate(-70%, -50%) rotate(45deg); /* 矢印の形 */
  position: absolute;
  top: 50%;
  left: 50%;
}

/* ホバー時に少し右に動く「クリックしたくなる」演出 */
.large_link:hover .link_icon {
  background-color: #00b7ee; /* 水色に変化 */
  transform: translateX(5px); /* 右にスライド */
}

@media screen and (max-width: 999px) {
  .link_icon { width: 36px; height: 36px; }
}

/* センター配置用タイトル（刷新版に合わせて微調整） */
.ititle_center {
  color: #222222;
  font-size: 1.875rem;
  font-weight: 900;
  text-align: center;
  margin: 0 auto 40px;
  padding: 0 40px;
  border-bottom: 3px dashed #00b7ee; /* 下線を水色の破線にしてポップに */
  width: fit-content;
}


/* ==========================================================================
   ✨ 【完全オリジナル版】アウトライン透かし文字 ＋ スライドイン
   ========================================================================== */
.en_title {
  display: inline-block;
  /* 👇 NEWSと同じ洗練されたフォントに変更！イタリックも解除！ */
  font-family: "Helvetica Neue", "Arial", -apple-system, sans-serif;
  font-size: 4rem; /* 文字が長くなるので少しだけ小さめに調整 */
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  
  /* 👇 アウトラインのデザイン */
  color: transparent;
  -webkit-text-stroke: 2px #a9d4ee; /* 💡 背景に馴染みつつ、しっかり見える絶妙な水色 */
  
  /* 👇 アニメーションの初期状態（透明＆左にズレている） */
  opacity: 0;
  transform: translateX(-40px);
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

@media screen and (max-width: 999px) {
  .en_title { font-size: 2.8rem; }
}
@media screen and (max-width: 767px) {
  .en_title { display: none; }
}

/* 👇 スクロールして画面に入った時の状態 */
.en_title.js-gsap_css_animation-after {
  opacity: 1; 
  transform: translateX(0);
}

.link_icon {
  display: block;
  content: "";
  width: 42px;
  height: 60px;
  background-color: #222222;
  border-radius: 21px;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.link_icon::after {
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 100%;
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  left: auto;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .link_icon {
    width: 35px;
    height: 50px;
  }
  .link_icon::after {
    right: 14px;
  }
}

.ititle_center {
  color: #212121;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  line-height: 1.2;
  padding-right: clamp(30px, 7.14vw, 90px);
  padding-left: clamp(30px, 7.14vw, 90px);
}
.ititle_center::before, .ititle_center::after {
  display: block;
  content: "";
  width: 24px;
  height: 40px;
  background: url("./common/img/home/slash.webp") no-repeat;
  background-size: contain;
  position: absolute;
}
.ititle_center::before {
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  margin: auto;
}
.ititle_center::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  margin: auto;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.ititle_center .line {
  display: inline-block;
}
@media screen and (max-width: 999px) {
  .ititle_center {
    font-size: 1.625rem;
  }
  .ititle_center::before, .ititle_center::after {
    width: 20px;
    height: 36px;
  }
}
@media screen and (max-width: 576px) {
  .ititle_center {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 419px) {
  .ititle_center {
    font-size: 1.25rem;
  }
}

/* カードのタイトル（看護配置、男女比など）を大きくする */
.data_box__head {
    font-size: 1.5rem !important; /* 以前より一回り大きく（24px相当） */
    font-weight: 700 !important;   /* しっかりとした太字にする */
    color: #333333 !important;    /* 文字色を少し濃くしてハッキリさせる */
    margin-bottom: 15px !important; /* 下のコンテンツとの間に少し余白を作る */
    display: block !important;
}

/* スマホでの表示を調整（大きすぎると感じる場合） */
@media screen and (max-width: 767px) {
    .data_box__head {
        font-size: 1.25rem !important; /* スマホでは20px相当に抑える */
    }
}

/* スマホ画面（767px以下）での調整 */
@media screen and (max-width: 767px) {
    /* タイトルとボタンの横並びを解除して縦に並べる */
    .idata_area__head {
        display: block !important;
        text-align: center; /* 中央寄せにしたい場合 */
    }

    /* タイトルの横幅をいっぱいにする */
    .ititle {
        width: 100% !important;
        margin-bottom: 20px !important; /* ボタンとの間に隙間を作る */
        font-size: 1.4rem !important;   /* タイトルの大きさを調整 */
        line-height: 1.5;
    }

    /* ボタンの形を横長に復活させる */
    .btn_wrap._pc, 
    .btn_wrap._sp {
        display: block !important; /* スマホでも表示させる */
        width: 100% !important;
        text-align: center;
    }

    .large_link {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        width: 200px !important;  /* ボタンの横幅を固定 */
        height: 54px !important;   /* ボタンの高さを固定 */
        writing-mode: horizontal-tb !important; /* 文字を横書きに強制 */
        padding: 0 20px !important;
        margin: 0 auto !important;
    }
}


/* ===================================================
   【完全版】全デバイス対応：紺色のきらりんボタン
   =================================================== */

/* 1. ボタン自体のスタイル（全デバイス共通） */
.btn-shiny-navy {
    background-color: #005588 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px 35px !important;
    border-radius: 50px !important;
    font-weight: bold;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    min-width: 180px;
}

/* きらりんエフェクト */
.btn-shiny-navy::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.6s;
}
.btn-shiny-navy:hover::before { left: 100%; }

/* 2. PCレイアウト（画面幅 768px 以上） */
@media screen and (min-width: 768px) {
    /* データセクションのヘッダーを横並びに */
    .idata_area__head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }
    .btn_wrap._pc {
        display: inline-block !important;
        margin: 0 !important;
    }
}

/* 3. スマホレイアウト（画面幅 767px 以下） */
@media screen and (max-width: 767px) {
    /* データセクション：タイトルとボタンを縦に並べて中央揃え */
    .idata_area__head {
        display: flex !important;
        flex-direction: column !important; /* 縦並び */
        align-items: center !important;
        gap: 15px !important;
        text-align: center;
    }

    /* タイトルの幅を調整 */
    .ititle {
        width: 100% !important;
        margin: 0 0 10px 0 !important;
    }

    /* ボタンの包み箱を中央に */
    .btn_wrap._pc {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        margin: 10px auto !important;
    }

    /* ボタン自体のサイズをスマホ向けに少し調整 */
    .btn-shiny-navy {
        width: 80% !important; /* 少し幅を広げて押しやすく */
        max-width: 280px;
        padding: 12px 20px !important;
    }
}

/* 福利厚生セクションなどの単体ボタン用（PC/スマホ共通で中央寄せ） */
section .btn_wrap._pc {
    display: block !important;
    text-align: center !important;
    margin: 30px auto 0 !important;
}

/* --- TOPページ専用：見出しの2色使い --- */
.idata_area .ititle span {
    color: #00b7ee !important; /* 水色（data.htmlと一致） */
    margin-right: 0.2em;
}

/* --- ボタンをホバーした時に「ぐっと」押し込む動き --- */
.btn-shiny-navy {
    transition: all 0.2s ease !important;
}

.btn-shiny-navy:hover {
    transform: translateY(4px) !important; /* 下に4px沈ませる */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important; /* 影を小さくして接地感を出す */
}

.btn-shiny-navy:active {
    transform: translateY(6px) !important; /* クリックでさらに沈む */
    box-shadow: none !important;
}

/* 📢 お知らせエリア用CSS ここから (ゆったりフローティングカード版) */
.v2-top-news {
	position: relative;
	z-index: 10;
	margin-top: -50px; /* 💡 メイン画像の上に少し被せて浮かせる！ */
	margin-bottom: 80px; /* 💡 下のセクションとの余白をたっぷり取る */
	padding: 0 20px;
}

.v2-news-wrapper {
	display: flex;
	align-items: center;
	gap: 40px;
	max-width: 1100px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 16px; /* 💡 角丸の白い箱 */
	box-shadow: 0 10px 30px rgba(0, 85, 136, 0.08); /* 💡 綺麗な影で浮かす */
	padding: 40px 50px; /* 💡 箱の中の余白もたっぷり取る */
}

@media (max-width: 767px) {
	.v2-top-news {
		margin-top: -30px;
		margin-bottom: 50px;
	}
	.v2-news-wrapper { 
		display: block; 
		padding: 30px 20px; /* スマホ時の箱の余白 */
	}
}

/* 👇 ここから下は元々の美しいデザインを完全キープ！ 👇 */
.v2-news-title {
	flex-shrink: 0;
	text-align: center;
}
.v2-news-title .en {
	display: inline-block;
	font-family: "Helvetica Neue", "Arial", -apple-system, sans-serif;
	font-size: 2.8rem;
	color: #005588; 
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.2;
	text-transform: uppercase;
}
.v2-news-title .jp {
	color: #777;
	font-size: inherit;
	font-family: inherit;
}
.v2-news-list {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
@media (max-width: 767px) {
	.v2-news-list { margin-top: 15px; }
}
.v2-news-item {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	background: #f4f9fc;
	border-radius: 12px;
	transition: all 0.3s ease;
	text-decoration: none;
	color: inherit;
}
.v2-news-item:hover {
	background: #e3f2fd;
	transform: translateX(5px);
}
.v2-news-item .date {
	font-size: 1.4rem;
	color: #005588;
	margin-right: 20px;
	font-weight: bold;
	font-family: "Helvetica Neue", "Arial", sans-serif;
}
.v2-news-item .category {
	background: #005588;
	color: #fff;
	font-size: 1.1rem;
	padding: 3px 12px;
	border-radius: 20px;
	margin-right: 20px;
	flex-shrink: 0;
}
.v2-news-item .title {
	font-size: inherit !important;
	font-family: inherit !important;
	font-weight: inherit !important;
	color: inherit !important;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	flex-grow: 1;
	margin: 0;
}
@media (max-width: 767px) {
	.v2-news-item { flex-wrap: wrap; gap: 8px 10px; }
	.v2-news-item .title { width: 100%; white-space: normal; }
}


/* ==========================================================================
   💡 お知らせエリアの透かし文字を右下に配置（白い箱の後ろ）
   ========================================================================== */
.v2-top-news .en_title {
  position: absolute;
  bottom: -60px;       /* 白い箱の下から少しはみ出る位置 */
  right: 5%;          /* 画面右端から少し内側 */
  z-index: -1;        /* 💡 白い箱の後ろに潜り込ませる魔法 */
  pointer-events: none;
}

/* 白い箱が確実に透かし文字より手前に来るように設定 */
.v2-news-wrapper {
  position: relative;
  z-index: 1;
}

/* 💡 重要なお知らせ用の赤色ラベル */
.v2-news-item .category._red {
    background-color: #ff7b7b;
}
/* 📢 お知らせエリア用CSS ここまで */


/* ==========================================================================
   🎯 カードナビゲーション用CSS（絶対に他を崩さない独立設計）
   ========================================================================== */
.v2-top-navigation {
	padding: 80px 0 100px;
	background-color: #fafdff; /* 背景をほんのり優しい色に */
}
.v2-card-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
.v2-card-item {
	width: calc(50% - 15px);
	display: flex;
}
.v2-card-item._fullwidth {
	width: 100%;
}
@media (max-width: 767px) {
	.v2-card-item { width: 100%; }
}

/* カード本体のスタイリッシュなデザイン */
.v2-nav-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 85, 136, 0.05);
	transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
	text-decoration: none;
	color: #333;
	border: 2px solid transparent;
}
.v2-nav-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 85, 136, 0.12);
	border-color: #bce2f7;
}
.v2-card-img {
	width: 100%;
	height: 220px;
	overflow: hidden;
	background: #e3f2fd;
}
.v2-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.v2-nav-card:hover .v2-card-img img {
	transform: scale(1.05); /* マウスを乗せると画像がじわっと拡大 */
}
.v2-card-body {
	padding: 30px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.v2-card-en {
	font-family: "Helvetica Neue", "Arial", sans-serif;
	font-size: 1.3rem;
	color: #005588;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}
.v2-card-body h3 {
	font-size: 1.6rem;
	color: #1a1a1a;
	margin: 0 0 12px 0;
	font-weight: bold;
}
.v2-card-body p {
	color: #666;
	line-height: 1.6;
	margin: 0 0 25px 0;
	flex-grow: 1;
}
.v2-card-more {

	color: #005588;
	font-weight: bold;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.3s ease;
	margin-top: auto;
}
.v2-nav-card:hover .v2-card-more {
	gap: 12px; /* 矢印が右にピョコッと動く */
}

/* ==========================================================================
   🎯 採用エントリー用 横長カード（鮮やかグラデーション版）
   ========================================================================== */
.v2-nav-card._entry-cta {
	/* 💡 ヒーローエリア風の鮮やかな水色グラデーションに変更！点線は削除 */
	background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
	border: none;
	box-shadow: 0 10px 30px rgba(0, 114, 255, 0.2);
	transition: all 0.3s ease;
}

.v2-nav-card._entry-cta .v2-card-body {
	align-items: center;
	text-align: center;
	padding: 50px 40px; /* 余白を少し広げて存在感アップ */
}

/* 💡 文字をすべて白抜きにしてパキッと見せる */
.v2-nav-card._entry-cta .v2-card-en {
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 0.1em;
}

.v2-nav-card._entry-cta h3,
.v2-nav-card._entry-cta p {
	color: #ffffff;
}

.v2-nav-card._entry-cta h3 {
	font-size: 2.4rem;
	margin-bottom: 15px;
}

/* 🔘 「エントリーする」ボタンを白く輝かせる */
.v2-card-more-btn {
	background: #ffffff;
	color: #0072ff; /* 文字はグラデーションに合わせた青色 */
	padding: 15px 50px;
	border-radius: 40px;
	font-weight: bold;
	font-size: 1.6rem;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	display: inline-block;
	margin-top: 25px;
}

/* 🖱️ マウスを乗せた時のリッチな動き */
.v2-nav-card._entry-cta:hover {
	/* グラデーションを少し明るくして、上にフワッと浮かす */
	background: linear-gradient(135deg, #1ad0ff 0%, #1a82ff 100%);
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 114, 255, 0.3);
}

.v2-nav-card._entry-cta:hover .v2-card-more-btn {
	background: #ffffff;
	color: #005588;
	transform: scale(1.05);
	box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   👨‍⚕️👩‍⚕️ エントリーカード：キャラクター画像の配置
   ========================================================================== */
/* カードの基準点を設定（すでに relative があればそのままでOK） */
.v2-nav-card._entry-cta {
    position: relative;
    overflow: hidden; /* カードからはみ出た部分を綺麗に隠す */
}

/* 文字やボタンがキャラクターの下に隠れないようにする */
.v2-nav-card._entry-cta .v2-card-body {
    position: relative;
    z-index: 2;
}

/* キャラクターを右下に配置 */
.v2-entry-chara {
    position: absolute;
    right: 5%; /* 右からの位置 */
    bottom: -15px; /* 下に少しめり込ませて接地感を出す */
    width: 200px; /* キャラクターの大きさ（お好みで調整してください） */
    height: auto;
    z-index: 1; /* 文字の後ろ、背景の前に配置 */
    pointer-events: none; /* 画像がボタンクリックの邪魔にならないようにする魔法 */
    
    /* スッと現れるアニメーション（おまけ） */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(10px);
    opacity: 0.9;
}

/* 🖱️ カードにマウスを乗せた時にキャラクターが少し上を向く（伸びる）ような動き */
.v2-nav-card._entry-cta:hover .v2-entry-chara {
    transform: translateY(0px) scale(1.03);
    opacity: 1;
}

/* 📱 スマホ表示の時は、文字の邪魔にならないように薄くして背景に馴染ませる */
@media screen and (max-width: 767px) {
    .v2-entry-chara {
        width: 140px;
        right: -10px;
        bottom: -10px;
        opacity: 0.35; /* スマホでは透かして背景のように扱う */
    }
}
.v2-entry-chara {
    /* 既存の設定（position: absolute; など）はそのまま */
    
    /* 🌟 パキッとした白フチステッカーの魔法 */
    filter: 
        drop-shadow( 2px  0px 0px #ffffff)  /* 右に白 */
        drop-shadow(-2px  0px 0px #ffffff)  /* 左に白 */
        drop-shadow( 0px  2px 0px #ffffff)  /* 下に白 */
        drop-shadow( 0px -2px 0px #ffffff)  /* 上に白 */
        drop-shadow( 0px  5px 10px rgba(0, 85, 136, 0.2)); /* 最後に全体を少し浮かせる影 */
}
/* ==========================================================================
   💳 カード内の「詳しく見る」リンク（さりげない動く矢印）
   ========================================================================== */
.v2-card-more {
    display: inline-flex;
    align-items: center;
    color: #007bc2; /* 綺麗な青色 */
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

/* ➔ 矢印アイコンの設定 */
.v2-card-more::after {
    content: "\279C"; /* くっきりした太矢印（➜） */
    margin-left: 8px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

/* 🖱️ カード全体にマウスが乗った時に、矢印だけ右にスッと動かす */
.v2-nav-card:hover .v2-card-more::after {
    transform: translateX(6px);
    color: #005588;
}

/* divでもaでもカードとして成立させるための追加スタイル */
.v2-nav-card {
    display: block !important;
    text-decoration: none !important;
}

/* カードを縦並びにするためのコンテナ */
.v2-entry-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

/* ピンクボタンのスタイル */
.v2-card-more-btn._pink {
    background: #f48fb1 !important;
    color: #ffffff !important;
    border: none;
}
.v2-card-more-btn._pink:hover {
    background: #ec407a !important;
    transform: scale(1.05);
}
/* ==========================================================================
   📅 みきやまの勤務体制：ある看護師の1週間（タイムライン表）
   ========================================================================== */
.iweek_area {
    position: relative; /* 💡 必須：右下配置の基準点にします */
    overflow: hidden;   /* 💡 必須：文字がはみ出しても画面が横揺れしないようにします */
    padding-bottom: 120px;
    margin-bottom: 50px;
    background: #f8faff;
    padding-top: 60px;
    border-radius: 40px;
}

/* 💡 1週間エリアの透かし文字を「下部」に絶対配置（お知らせと同じ-60px！） */
.iweek_area .en_title {
    position: absolute;
    bottom: -10px;      /* 💡 下部にスッと落とします */
    right: 5%;
    z-index: 0;         /* 白い表の後ろ側に潜らせます */
    pointer-events: none;
}

/* 💡 見出しの <span> を水色にする設定 */
.iweek_area .ititle span {
    color: #00b7ee !important;
    margin-right: 0.2em;
}

/* ==========================================================================
   👨‍⚕️👩‍⚕️ 1週間エリア：キャラクター画像の配置（シンプル解決版）
   ========================================================================== */
.iweek-chara {
    position: absolute;
    /* 👇 おっしゃる通り、ここを「0」や「10px」に下げるだけで解決します！ */
    top: 0px;           
    right: 5%;          
    width: 200px;       
    height: auto;
    z-index: 10;        
    pointer-events: none; 
}

/* 📱 スマホ表示の時は少し小さく */
@media screen and (max-width: 767px) {
    .iweek-chara {
        width: 120px;
        top: 10px;
        right: 10px;
        opacity: 0.6;
    }
}

.iweek_intro {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* スマホ表示の時の「横にスクロールしてね」のテキスト */
._sp-scroll-hint { display: none; }

/* 📊 タイムラインの大枠 */
.timeline-wrapper {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 85, 136, 0.08);
    overflow-x: auto; /* スマホではみ出た分をスクロールさせる */
    border: 2px solid #eaf0f6;
}
.timeline-scroll-box {
    min-width: 900px; /* これより画面が狭い場合はスクロールになる */
}

/* 🕛 時間の目盛りヘッダー */
.time-scale {
    display: flex;
    background: #f4f9fc;
    border-bottom: 2px solid #eaf0f6;
}
.day-label-empty {
    width: 60px; /* 左の曜日スペース分 */
    flex-shrink: 0;
    border-right: 2px solid #eaf0f6;
}
.hours-scale {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    color: #666;
    font-size: 0.85rem;
    font-weight: bold;
}
.hours-scale div {
    padding: 5px 0 5px 4px;
    border-left: 1px dashed #dbe6f0;
}

/* 各曜日の行 */
.timeline-row {
    display: flex;
    border-bottom: 1px solid #eaf0f6;
}
.timeline-row:last-child {
    border-bottom: none;
}

/* 曜日のラベル */
.day-label {
    width: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #005588;
    background: #f4f9fc;
    border-right: 2px solid #eaf0f6;
}

/* 時間軸のグリッド背景 */
.hours-grid {
    flex-grow: 1;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    background-image: linear-gradient(to right, #eaf0f6 1px, transparent 1px);
    background-size: calc(100% / 24) 100%;
    padding: 8px 0;
}

/* 🎨 色付きのシフトバー */
.shift-bar {
    margin: 4px;
    border-radius: 6px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.4;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    white-space: nowrap;
    overflow: hidden;
}
.shift-bar .time {
    font-size: 0.95rem;
    font-weight: bold;
}
.shift-bar .comment {
    font-size: 0.8rem;
    opacity: 0.85;
}

/* シフトごとの色設定（画像のような優しいパステルカラー） */
.shift-bar._day {
    background: #fff3e0;
    border-left: 6px solid #ffb74d; /* オレンジ */
    color: #d87a00;
}
.shift-bar._early {
    background: #e3f2fd;
    border-left: 6px solid #64b5f6; /* 水色 */
    color: #0277bd;
}
.shift-bar._night {
    background: #e8f5e9;
    border-left: 6px solid #81c784; /* グリーン */
    color: #2e7d32;
}
.shift-bar._off {
    background: #fce4ec;
    border-left: 6px solid #f06292; /* ピンク */
    color: #c2185b;
}

/* 📱 スマホ対応 */
@media screen and (max-width: 767px) {
    ._sp-scroll-hint {
        display: inline-block;
        margin-top: 10px;
        color: #f21795;
        font-size: 0.95rem;
    }
    .iweek_area { padding-bottom: 60px; margin-bottom: 30px; }
}


