body {
  background-color: #ebe9e9;
}
/*　TOP画面　*/

.itc-hero {
  min-height: 100vh;
  background: url("/wp-content/themes/clabel/images/bg-dots.png") center / cover no-repeat;
  color: #fff;
  padding-top: 4em;
}

.itc-hero-inner {
  position: relative;
  width: 1440px;
  height: 800px;
  margin: 0 auto;
}

.itc-hero-header {
  position: absolute;
  top: 2rem;
  right: 210px;
  padding: 1.2em;
  border-radius: 12px;
  text-align: left;
}

.itc-hero-title-image {
  width: 633px;
  height: 160px;
}

.itc-her-heading {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  min-width: 326px;
}
/* 5人の画像 */

.photo-layout {
  position: relative;
  width: 1440px;
  height: 800px;
  overflow: hidden;
}

.photo {
  position: absolute;
  object-fit: cover;
}
/* 各写真の位置を調整 */

.photo1 {
  top: 230px;
  left: 12px;
  width: 443px;
}

.photo2 {
  top: 230px;
  left: 583px;
  width: 252px;
}

.photo3 {
  top: 450px;
  left: 474px;
  width: 252px;
}

.photo4 {
  top: 230px;
  left: 855px;
  width: 269px;
}

.photo5 {
  top: 230px;
  left: 1153px;
  width: 269px;
}

/*　TOP　レスポンシブ対応　*/
@media screen and (max-width: 600px) {
  .itc-hero {
    background-size: cover;
    padding: 5rem 0;
    min-height: 32rem;
	}

  .itc-hero-inner {
    width: 100%;
    height: auto;
    padding: 0.1rem;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .itc-hero-header {
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    margin-bottom: 0;
    padding-bottom: 0;
    display: flex;
    justify-content: flex-end; /* ← 右寄せのポイント */
  }

  .itc-hero-title-image {
    width: 90%; /* スマホでも大きめに表示 */
    max-width: 380px; /* 必要に応じて調整可能 */
    height: auto;
  }

  .photo-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .photo-layout {
    position: relative;
    width: 100%;
    height: 300px;
  }

  .photo1 {
    top: 40px;
    left: 0px;
    width: 43%;
  }

  .photo2 {
    top: 40px;
    left: 44%;
    width: 25%;
  }

  .photo3 {
    top: 152px;
    left: 44%;
    width: 25%;
  }

  .photo4 {
    top: 40px;
    left: 72%;
    width: 27%;
  }

  .photo5 {
    top: 120px;
    left: 120%;
    width: 30%;
    display: none;
  }
}
/* 代表メッセージ　*/

* {
  box-sizing: border-box;
}

.message-frame {
  position: relative;
  width: min(1320px, 92vw);
  min-height: 1010px;
  margin: 0 auto 132px auto;
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.message-content {
  display: flex;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 60px;
  gap: 40px;
  z-index: 0;
}

.message-photo {
  position: absolute;
  bottom: -110px;
  left: 0;
  z-index: 1;
}

.message-photo img {
  width: 322px;
  height: 835px;
  object-fit: cover;
  border-radius: 8px;
}

.message-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.icon-image {
  width: 26px;
  height: 34px;
  vertical-align: middle;
  display: inline-block;
}

.signature {
  margin-top: 3em;
  line-height: 1;
  font-weight: bold;
}

.signature .title {
  font-size: 16px;
  display: block;
  font-weight: normal; /* ← 太字を解除 */
}

.signature .name {
  font-size: 26px;
  display: block;
}

.message-text {
  flex: 1;
  font-size: 18px;
  color: #000000;
  line-height: 1.8;
  z-index: 3;
  margin-left: auto; /* 写真の隣に寄せる */
  padding-left: 380px; /* 写真の幅＋余白に合わせる */
  font-weight: bold;
}

.message-text h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1em;
}

.message-text p {
  margin-bottom: 1.4em; /* 調整可能：1.4em?1.8em程度が読みやすい */
}

.message-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  padding-inline: 20px; /* 左右に余白 */
  box-sizing: border-box;
}

.message-decoration img {
  width: 1208px;
  height: 140px;
  display: block;
  margin: 0 auto;
}
/*　代表メッセージ　レスポンシブ対応　*/

@media screen and (max-width: 600px) {
  .message-frame {
    max-width: 92vw;
    margin: 0 auto 80px auto;
    padding: 24px 16px;
    box-sizing: border-box;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e9ecef;
    margin-top: -120px;
  }

  .message-content {
    display: block;
    padding-top: 0;
    max-width: 100%;
  }
  /* タイトル */

  .message-heading {
    font-size: 24px !important;
    justify-content: center;
    text-align: center;
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    gap: 0.5em;
  }

  .icon-image {
    width: 18px;
    height: 24px;
  }
  /* テキスト */

  .message-text {
    text-align: center;
    font-size: 16px;
    font-weight: normal;
    padding: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 500px;
  }

  .message-text p {
    margin-bottom: 1.2em;
    text-align: start;
  }
  /* シグネチャー */

  .signature {
    margin-top: 2em;
    text-align: left;
    font-weight: bold;
  }

  .signature .title {
    font-size: 14px;
  }

  .signature .name {
    font-size: 20px;
  }
  /* 写真調整：左寄せ＋小さめ＋自然な位置に */

  .message-photo {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: -5em;
    margin-bottom: -10px; /* ← ★ここで下方向にかぶせる */
    display: flex;
    justify-content: flex-start;
    z-index: 2;
  }

  .message-photo img {
    width: 65%;
    height: auto;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3 / 4;
    transform: translateY(-10%);
    border-radius: 8px;
  }
  /* 装飾画像 */

  .message-decoration img {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 2em;
    display: block;
    z-index: 1;
  }
}
/*　パソコン画面のところ*/

.icon-and-image-block {
  text-align: center; /* 全体中央揃え */
  margin-bottom: 40px;
}

.icon-text-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: bold;
  font-size: 36px;
  color: #000000;
  margin-bottom: 30px;
}

.icon-text-label .icon {
  width: 26px; /* アイコンサイズ（調整可能） */
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.below-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* セクション全体の枠 */
.section-wrapper {
  position: relative;     /* 子要素（スライド）を画像の上に重ねるための準備 */
  width: 800px;           /* セクションの横幅。画像のサイズに合わせて調整 */
  margin: 50px auto;      /* 上下に余白をつけて、中央に配置 */
}

/* パソコンの画像 */
.pc-image {
  width: 100%;            /* 枠にぴったり合わせる */
  display: block;         /* 画像の下に余白ができないようにする */
}

/* スライドを表示する枠（画像の画面部分に重ねる） */
.speakerdeck-iframe {
  position: absolute;     /* 画像の上に重ねるための指定 */
  top: 3%;               /* 上からの位置。画像の画面部分に合わせて調整 */
  left: 9%;              /* 左からの位置。画像の画面部分に合わせて調整 */
  width: 82%;             /* スライドの横幅。画面にぴったり合うように調整 */
  height: 76%;            /* スライドの高さ。画面にぴったり合うように調整 */
  border: none;           /* 枠線を消してスッキリ表示 */
}
/*　パソコン画面のところ　レスポンシブ対応　*/

@media screen and (max-width: 600px) {
  .icon-and-image-block {
    text-align: center;
    margin-bottom: 24px; /* 少し詰める */
    padding: 0 1rem; /* 余白確保 */
  }
.section-wrapper{
		width:380px;
	}
  .icon-text-label {
    font-size: 24px; /* 少し小さく */
    gap: 0.4em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .icon-text-label .icon {
    width: 18px;
    height: 24px;
  }

}
/* 画像群レイアウト */

.photo-layout2 {
  position: relative;
  width: 1440px;
  height: 550px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  display: block;
}
/* 各写真の共通設定 */

.photo-2 {
  position: absolute;
  object-fit: cover;
  display: block;
}
/* 各写真の位置とサイズ */

.photo6 {
  top: 60px;
  left: 60px;
  width: 251px;
}

.photo7 {
  top: 60px;
  left: 400px;
  width: 235px;
}

.photo8 {
  top: 260px;
  left: 350px;
  width: 235px;
}

.photo9 {
  top: 60px;
  left: 675px;
  width: 251px;
}

.photo10 {
  top: 60px;
  left: 969px;
  width: 414px;
}
/*　画像群（５枚）　レスポンシブ対応　*/

@media screen and (max-width: 600px) {
  .photo-layout2 {
    width: 100%;
    height: 15rem; /* 適宜画像が収まる高さに調整 */
  }

  .photo-2 {
    position: absolute;
    object-fit: cover;
    display: block;
    max-width: 40vw;
    height: auto;
  }

  .photo6 {
    top: 10%;
    left: 0%;
    width: 20%;
    height: 11rem;
  }

  .photo7 {
    top: 10%;
    left: 22%;
    width: 18%;
    height: 5rem;
  }

  .photo8 {
    top: 47%;
    left: 22%;
    width: 18%;
    height: 5rem;
  }

  .photo9 {
    top: 10%;
    left: 42%;
    width: 20%;
    height: 11rem;
  }

  .photo10 {
    top: 10%;
    left: 64%;
    width: 35%;
    height: 11rem;
  }
}
/*働く環境と成長を支える制度*/

.support-section-wrapper {
  position: relative;
  width: 1330px;
  height: 2478px;
  background-color: #b2cbe2;
  padding: 0 0 80px;
  overflow: hidden;
  margin: 0;
  margin-left: auto;
}
/* 波模様の背景画像 */

.wave-bg {
  position: absolute;
  top: 1618px;
  right: 0;
  width: 1323px;
  height: 860px;
  background-image: url("/wp-content/themes/clabel/images/image_notice14.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}
/* タイトル（アイコン＋テキスト） */

.support-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.support-icon {
  width: 26px;
  height: 34px;
}

.support-heading {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
}
/* セクション全体を横並びに */

.support-content {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0px;
  position: relative;
}
/* 縦書きラベル */

.support-label {
  writing-mode: vertical-rl;
  font-size: 36px;
  font-weight: bold;
  color: #000000;
  margin-right: 40px;
  padding-left: 40px; /* ← 左に余白をつけて右寄りに */
}
/* メインエリア */

.support-main {
  flex: 1;
  position: relative;
}
/* 英語タイトル */

.support-subtitle {
  font-size: 16px;
  font-weight: normal;
  color: #000000;
  margin-bottom: 20px;
}
/* ボックス配置用コンテナ */

.box-container {
  position: relative;
  height: 550px; /* 必要に応じて調整 */
}
/* ライフイベント支援だけ高さを小さく */

.box-container.life-event {
  height: 380px;
}
/* 共通ボックススタイル */

.box {
  position: absolute;
}

.box img {
  width: 100%;
  height: auto;
  display: block;
}
/* ▼ 画像の位置とサイズを個別指定 ▼ */ /* --- 働き方セクション --- */

.box1 {
  top: 0px;
  left: 0px;
  width: 373px;
  height: 242px;
}

.box2 {
  top: 0px;
  left: 400px;
  width: 372px;
  height: 313px;
}

.box3 {
  top: 0px;
  left: 800px;
  width: 373px;
  height: 185px;
}

.box4 {
  top: 270px;
  left: 0px;
  width: 373px;
  height: 185px;
}
/* --- ライフイベント支援セクション --- */

.box5 {
  top: 0px;
  left: 0px;
  width: 373px;
  height: 276px;
}

.box6 {
  top: 0px;
  left: 400px;
  width: 373px;
  height: 185px;
}

.box7 {
  top: 0px;
  left: 800px;
  width: 373px;
  height: 240px;
}
/* --- 成長支援セクション --- */

.box8 {
  top: 0px;
  left: 0px;
  width: 373px;
  height: 203px;
}

.box9 {
  top: 0px;
  left: 400px;
  width: 373px;
  height: 203px;
}

.box10 {
  top: 0px;
  left: 800px;
  width: 373px;
  height: 178px;
}

.box11 {
  top: 230px;
  left: 0px;
  width: 373px;
  height: 203px;
}

.box12 {
  top: 230px;
  left: 400px;
  width: 373px;
  height: 203px;
}
/* --- その他の制度セクション --- */

.box13 {
  top: 0px;
  left: 0px;
  width: 373px;
  height: 296px;
}

.box14 {
  top: 0px;
  left: 400px;
  width: 373px;
  height: 195px;
}

.box15 {
  top: 0px;
  left: 800px;
  width: 373px;
  height: 315px;
}
/* ▼ ボタン配置 ▼ */

.support-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.support-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0044a4;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.support-button:hover {
  background-color: #0056b3;
}

.support-button img {
  width: 22px;
  height: 22px;
}
/* 働く環境と成長を支える制度　レスポンシブ対応 */

@media screen and (max-width: 600px) {
  .support-section-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 20px 16px 70px;
  }

  .wave-bg {
    width: 100%;
    max-width: 600px;
    height: auto;
    bottom: 0px;
    left: 0px;
    margin-left: 0px;
  }

  .support-title {
    padding-top: 30px; /* 上の余白を半分に */
    gap: 6px; /* アイコンとテキストの間隔を少し狭く */
  }

  .support-icon {
    width: 18px; /* アイコン小さめに */
    height: 24px;
  }

  .support-heading {
    font-size: 21px; /* フォントサイズも小さく */
  }

  .support-content {
    gap: 8px; /* ラベルとメインの間の隙間 */
    top: 2rem;
  }

  .support-label {
    font-size: 18px;
    margin-right: 0; /* 横並びなので右マージン不要 */
    padding-left: 5px;
    line-height: 1;
    height: auto;
    flex-shrink: 0; /* 横幅を固定 */
    width: 30px; /* 適宜調整 */
    margin-top: 10px;
  }

  .support-main {
    width: auto;
    display: flex;
    flex-direction: column; /* subtitle と box-container を縦並び */
    height: 19rem;
  }

  .support-subtitle {
    font-size: 13px;
    margin-bottom: 10px; /* 下に隙間 */
  }

  .box-container {
    position: relative;
    width: 100%;
    height: 500px; /* 必要に応じて調整 */
    margin-bottom: 30px;
  }

  .box-container {
    height: 19rem; /* 必要に応じて調整 */
  }
  /* ボックスは絶対配置のまま個別に位置指定 */

  .box1 {
    top: 5px;
    left: 10px; /* support-main 内なので左端 */
    width: 48%; /* PCの373pxを縮小 */
    height: auto;
    position: absolute;
  }

  .box2 {
    top: 5px;
    left: 55%;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box3 {
    top: 140px;
    left: 10px;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box4 {
    top: 140px;
    left: 55%;
    width: 48%;
    height: auto;
    position: absolute;
  }
  /* ライフイベント支援セクション */

  .box5 {
    top: 5px;
    left: 10px;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box6 {
    top: 5px;
    left: 55%;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box7 {
    top: 8rem;
    left: 10px;
    width: 48%;
    height: auto;
    position: absolute;
  }
  /* 成長支援セクション */

  .box8 {
    top: 5px;
    left: 10px;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box9 {
    top: 5px;
    left: 55%;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box10 {
    top: 6rem;
    left: 10px;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box11 {
    top: 6rem;
    left: 55%;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box12 {
    top: 180px;
    left: 10px;
    width: 48%;
    height: auto;
    position: absolute;
  }
  /* その他の制度セクション */

  .box13 {
    top: 5px;
    left: 10px;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box14 {
    top: 5px;
    left: 55%;
    width: 48%;
    height: auto;
    position: absolute;
  }

  .box15 {
    top: 9rem;
    left: 10px;
    width: 48%;
    height: auto;
    position: absolute;
  }
  /* 画像は幅100%、高さ自動に */

  .box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  /*　ボタン　*/

  .support-button-wrapper {
    flex-direction: column; /* ボタンを縦並び（1個なら影響なし） */
    align-items: center; /* 中央寄せ */
    margin-top: 90px;
    margin-bottom: 0px;
    padding: 0 20px; /* 横に少し余白 */
  }

  .support-button {
    font-size: 16px; /* テキスト小さめに */
    padding: 16px 30px; /* コンパクトに */
    gap: 8px;
    border-radius: 4px;
  }

  .support-button img {
    width: 18px;
    height: 18px;
  }
}

/* 画像群レイアウト */
.photo-layout3 {
  position: relative;
  width: 1440px;
  height: 1000px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  display: block;
}
/* 各写真の共通設定 */

.photo-3 {
  position: absolute;
  object-fit: cover;
  display: block;
}
/* 各写真の位置とサイズ */

.photo11 {
  top: 60px;
  left: 60px;
  width: 245px;
  height: 372px;
}

.photo12 {
  top: 60px;
  left: 350px;
  width: 229px;
  height: 175px;
}

.photo13 {
  top: 260px;
  left: 400px;
  width: 229px;
  height: 175px;
}

.photo14 {
  top: 60px;
  left: 675px;
  width: 245px;
  height: 372px;
}

.photo15 {
  top: 60px;
  left: 969px;
  width: 403px;
  height: 372px;
}

.photo16 {
  top: 460px;
  left: 60px;
  width: 495px;
  height: 401px;
}

.photo17 {
  top: 460px;
  left: 600px;
  width: 435px;
  height: 401px;
}

.photo18 {
  top: 460px;
  left: 1080px;
  width: 300px;
  height: 401px;
}

.recruit-section {
  position: relative;
  padding: 20px 20px 60px;
  text-align: center;
  overflow: hidden;
}

/*　画像群レイアウト　レスポンシブ対応　*/

@media (max-width: 600px) {
  .photo-layout3 {
    width: 100%;
    height: 80rem; /* 必要に応じて高さを調整 */
    padding-bottom: 20px;
    position: relative;
  }

  .photo-3 {
    position: absolute;
    object-fit: cover;
    display: block;
  }
  /* スマホ用の画像位置・サイズ指定 */

  .photo11 {
    top: 40px;
    left: 10px;
    width: 10rem;
    height: 17rem;
  }

  .photo12 {
    top: 40px;
    left: 200px;
    width: 12rem;
    height: 8rem;
  }

  .photo13 {
    top: 180px;
    left: 200px;
    width: 12rem;
    height: 8rem;
  }

  .photo14 {
    top: 350px;
    left: 210px;
    width: 12rem;
    height: 17rem;
  }

  .photo15 {
    top: 350px;
    left: 10px;
    width: 12rem;
    height: 17rem;
  }

  .photo16 {
    top: 900px;
    left: 10px;
    width: 12rem;
    height: auto;
  }

  .photo17 {
    top: 650px;
    left: 30px;
    width: 23rem;
    height: auto;
  }

  .photo18 {
    top: 900px;
    left: 210px;
    width: 12rem;
    height: auto;
  }
}

/* === 一緒に働く仲間を募集していますセクション === */

.recruit-section {
  position: relative;
  background-image: url("/wp-content/themes/clabel/images/image_notice24.png");
  background-repeat: no-repeat;
  background-position: center 500px; /* ← 下にずらす */
  background-size: contain;
  padding: 10px 0 30px; /* ↑ padding-topも増やして調整 */
  text-align: center;
  z-index: 0;
}

/* アイコン＋タイトル */
.recruit-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.recruit-icon {
  width: 26px;
  height: 34px;
}

.recruit-title {
  font-size: 36px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  color: #000000;
}

/* 説明テキスト */
.recruit-text {
  font-size: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 2;
  margin-top: 0;
  margin-bottom: 40px;
}

/* 画像1 */
.recruit-image1 {
  margin-top: 10px;
}

.recruit-image1 img {
  width: 1000px;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 画像2 */
.recruit-image2 {
  margin-top: 10px;
}

.recruit-image2 img {
  width: 1300px;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* === レスポンシブ対応（スマホ） === */
@media (max-width: 600px) {
  .recruit-section {
    background-size: 100% auto; /* ← 小さく見せる */
    background-position: center 300px; /* ← さらに下にずらす */
    padding: 40px 0 30px; /* ↑ 上部余白を増やすことで背景を下げる */
  }

  .recruit-heading {
    flex-direction: row;
    gap: 6px;
    margin-bottom: 12px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .recruit-icon {
    width: 18px;
    height: 24px;
  }

  .recruit-title {
    font-size: 20px;
  }

  .recruit-text {
    font-size: 16px;
    line-height: 1.8;
    padding: 0 10px;
    margin-bottom: 24px;
  }

  .recruit-image1 img,
  .recruit-image2 img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
  }
}


