@charset "UTF-8";

/* ===============================
   全体共通設定 (リセットと基本スタイル)
=============================== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* ユニバーサルセレクタ：重複を統合 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: normal;
  line-height: 1;
  color: #333333;
  font-family: 'Noto_Sans_JP';
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

/* 書体設定 */
.overpass {
  font-family: 'Overpass';
}

/* ===============================
   変数設定 (CSSカスタムプロパティ)
=============================== */
:root {
  --header-top-space: 35.25px;  /* ページ最上部の余白 */
  --header-height: 128.5px;     /* 固定ヘッダー本体 */
  --fixed-header-offset: calc(var(--header-top-space) + var(--header-height));
  --breadcrumb-gap: 19.25px;    /* ヘッダー下との間隔 */
  --title-gap: 133px;           /* パンくず→タイトル */
  --hover-duration: 0.3s;              /* ホバーの時間 */
  --hover-ease: cubic-bezier(.22,.61,.36,1); /* 動き方 */
  --fv-main-text : clamp(5rem, 1.25rem + 6vw, 6.375rem);
  --fv-sub-text : clamp(1rem, 0.5rem + 0.8vw, 1.25rem);
}

/* ===============================
   レイアウト関連 (ラッパー・コンテナ)
=============================== */

/* ── 共通ラッパー（Max-Width: 1600px） ─────────── */
/* 共通プロパティを一括指定 */
.section__inner__1,
.section__inner__1__112,
.section__inner__2,
.section__inner__2__112,
.section__inner__2__110,
.section__inner__3,
.section__inner__3__130,
.section__inner__4,
.section__inner__5,
.approach__inner, /* 重複を統合 */
.section__inner__r  /* 重複を統合 */
 {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.section__inner__2__112_mv {
  width: 100%; /* max-width: 1600px; を適用しない */
  margin: 0 auto;
}

/* 個別の Padding/Margin 設定 */
.section__inner__1 {
  padding: 0 min(7.5%, 120px);
}

.section__inner__1__112 {
  padding-left: min(7%, 112px);
  padding-right: min(7.5%, 120px);
}

.section__inner__2 {
  padding-left: min(7.5%, 120px);
}

.section__inner__2__112,
.section__inner__2__112_mv {
  padding-left: min(7%, 112px);
}

.section__inner__2__110 {
  padding-left: min(6.875%, 110px);
}

.section__inner__3,
.section__inner__3__130,
.section__inner__4 {
  padding-left: min(17.8125%, 285px);
}

.section__inner__3 {
  padding-right: min(7.5%, 120px);
}

.section__inner__3__130 {
  padding-right: min(8.125%, 130px);
}

.section__inner__5 {
  padding-left: min(23.75%, 380px);
  padding-right: min(7.5%, 120px);
}

/* .section__inner__5 {
  padding-left: min(19.12%, 260px);
} */

/* ── コンテナ設定 (画面端まで広がる要素) ─────────── */
/* margin-right: calc(50% - 50vw); を一括指定 */
.section__container__2,
.section__container__2__112,
.section__container__2__110,
.section__container__4 {
  margin-right: calc(50% - 50vw);
}

.section__container__2 {
  margin-left: 7.5%;
}

.section__container__2__112 {
  margin-left: 7%;
}

.section__container__2__110 {
  margin-left: 6.875%;
}

.section__container__4 {
  margin-left: 17.8125%;
}

/* ── ヘッダー・フッターの個別ラッパー ─────────── */
.header__inner {
  padding: 0 2.1875%;
}

.footer__container {
  width: 97.5%;
  margin: 0 auto;
  margin-bottom: 1.25%;
}

.footer__inner {
  max-width: 1560px;
  width: 100%;
  padding-left: min(3.84%, 60px);
  padding-right: min(3.84%, 60px);
  margin: 0 auto;
}

/* ===============================
   共通追加スタイル
=============================== */

/* PC/SPデバイス表示切り替え */
.pc_device {
  display: block;
}

.sp_device {
  display: none;
}

/* 乗算設定 */
.back-blend{
  background-image: url(../img/common/texture2.png);
  background-blend-mode: multiply;
  background-size: cover;
  position: relative;
  padding-bottom: 300px;
}

.back-blend::after{
  content: "";
  display: block;
  background-image: url(../img/common/texture1.png);
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  left: 0;
}

/* ===============================
   ヘッダー
=============================== */
header {
  position: fixed;
  top: var(--header-top-space);
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  pointer-events: none;
}

header a {
  pointer-events: all;
}

.section_header_title {
  margin-top: var(--title-gap);
}

.header_layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.header_cluster {
  display: flex;
  flex-direction: column;
  gap: 21px;
  align-items: flex-end;
}

/* ロゴ */
.header_logo {
  flex-shrink: 1;
}

.header_logo_link {
  display: inline-block;
}

.header_logo_img {
  width: 128px;
  height: auto;
  max-width: 100%;
}

.header--top.is-dark .header_logo_img.dark{
  display: none;
}

.header--top .header_logo_img.lite{
  display: none;
}

.header--top.is-dark .header_logo_img.lite{
  display: block;
}

.header--top .header_logo_img.dark{
  display: block;
}

/* ナビ */
.header_nav_list {
  display: flex;
  gap: 25px;
  align-items: center;
  white-space: nowrap;
}

.header_nav_link {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  display: inline-block;
  position: relative;
}

.header_nav_link::after{
  content:"";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #333;
  position: absolute;
  bottom: -2px;
  transition: .3s;
}

.is-dark .header_nav_link::after{
  background-color: #fff;
}

/* hover */
.header_nav_link:hover {
  text-decoration-thickness: 1px;
  text-decoration-color: #333333;
  text-underline-offset: 2px;
}

.header_nav_link:hover::after{
  width: 100%;
}

.header--top.is-dark .header_nav_link {
    color: #FFFFFF;
}

.header--top.is-dark .header_nav_link:hover {
    text-decoration-color: #FFFFFF;
}

/* CTAエリア */
.header_cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* 各ボタン共通の構造（ベース） */
.header_button--main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  background-color: #634A3C;
  border-radius: 5px;
  width: 230px;
  height: 46px;
}

.header_button--main:hover,
.header_button--main:focus-visible {
  background-color: rgba(99, 74, 60, 0.8);
  text-decoration-thickness: 1px;
  text-decoration-color: #FFFFFF;
  text-underline-offset: 2px;
}

.header--top.is-dark .header_button--main {
  background-color: rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(230, 230, 230, 0.2);
  transition:
    background-color var(--hover-duration) var(--hover-ease),
    border-color var(--hover-duration) var(--hover-ease);
}

.header--top.is-dark .header_button--main:hover {
  background-color: rgba(99, 74, 60, 0.2);
  border-bottom: 1px solid rgba(230, 230, 230, 0.2);
}

.header_button_icon--mail {
    width: 46px;
    height: 46px;
}

.header_button_icon--mail img {
  width: 100%;
  height: 100%;
}

.header_button_label {
  font-size: 1rem;
  color: #FFFFFF;
}

.header_button_inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.header_button_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header_button_icon img {
  width: 20px;
  height: 20px;
}

.header_icon_mail img {
  display: block;
  width: 24px;
  height: 24px;
}

.header_button--mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 5px;
  background-color: #d2cbc8;
  transition: transform var(--hover-duration) var(--hover-ease);
  cursor: pointer;
  border: solid 1px #DDDCDA;
}

.is-dark .header_button--mail{
  background-color: #E5E2E0;
}

/* SVGサイズ */
.header_icon_mail {
  width: 46px;
  height: 46px;
}

/* 通常時：封筒は茶色 */
.header_icon_mail .mail-shape path {
  fill: #634A3C;
  transition: fill var(--hover-duration) var(--hover-ease);
}

/* ホバー時：封筒が白に変化 */
.header_button--mail:hover .mail-shape path,
.header_button--mail:focus-visible .mail-shape path {
  fill: #FFFFFF;
}

/* トップページでの画像差し替え */
.header--top .header_button--mail:hover .header_icon_mail--top {
  content: url("../img/common/icon_mail_top_hover.svg");
}

.header--top.is-dark .header_button--mail:hover .header_icon_mail--top {
  content: url("../img/common/icon_mail_top_hover.svg");
}

/* ホバー時：矢印画像を差し替え */
.header--top.is-dark .header_button--main:hover .header_button_icon--arrow img {
  content: url("../img/common/icon_arrow_hover.svg");
}

/* メニューボタン（PCでは非表示） */
/* ボタン本体（PCではdisplay:none、SPで表示） */
.header_menu_button {
  display: none; /* PCは非表示。SPメディアクエリでdisplayを変える */
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 95px;
  height: 30px;
  background-color: #272116;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  border: 0.25px solid #C1C1C1;
}

/* MENUテキスト */
.header_menu_label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.28px;
  color: #FFFFFF;
  font-family: 'Overpass', sans-serif;
  line-height: 1.21;
  white-space: nowrap;
  display: inline-block;
  position: relative;
  top: 2px;
}

/* まずはデフォルトは非表示 */
.sp_drawer_mail {
  display: none;
}

.header_actions {
  display: none;
}

.drawer_nav_icon {
  display: none;
}

.drawer_footer {
  display: none;
}

/* ハンバーガーの枠（19 × 11） */
.header_menu_icon {
  position: relative;
  width: 19px;
  height: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 線の共通スタイル */
.header_menu_line {
  position: absolute;
  left: 0;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background-color: #FFFFFF;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* 3 本線の並び位置 */
.header_menu_line:nth-child(1) {
  top: 0; /* 上 */
}

.header_menu_line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%); /* 真ん中 */
}

.header_menu_line:nth-child(3) {
  bottom: 0; /* 下 */
}

/* X に変形する時の線 */
.header_menu_button.is-open .header_menu_line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(35deg);
}

.header_menu_button.is-open .header_menu_line:nth-child(2) {
  opacity: 0;
}

.header_menu_button.is-open .header_menu_line:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-35deg);
}
/* ヘッダーここまで */

/* ===============================
    パンくずリスト
=============================== */
/* パンくず全体（右寄せ・1600px制限）*/
.breadcrumb_nav {
  max-width: 1600px;
  margin: calc(var(--fixed-header-offset) + var(--breadcrumb-gap)) 0 0 auto;
  padding: 0 2.1875%;
}

/* .breadcrumb_nav.page{
  margin: calc(var(--fixed-header-offset) + var(--breadcrumb-gap)) 0 0 auto;
} */

.breadcrumb {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #989898;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumb .breadcrumb_item a,
.breadcrumb .breadcrumb_item span {
  color: inherit;
  text-decoration: none;
  height: 14px;
  line-height: 12px;
}

/* 区切り点 */
.breadcrumb .breadcrumb_item + .breadcrumb_item::before {
  content: "・";
  margin: 0 0.4em;
  color: #989898;
  display: inline-block;
  height: 14px;
  line-height: 12px;
}

/* TOP（1階層目） */
.breadcrumb .breadcrumb_item:first-child {
  color: #989898;
  height: 14px;
  line-height: 12px;
}
.breadcrumb .breadcrumb_item:first-child a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

/* 中間階層（リンク） */
.breadcrumb .breadcrumb_item:not(:first-child):not(.is-current) {
  color: #989898;
}

/* 現在地 */
.breadcrumb .breadcrumb_item.is-current {
  color: #333333;
  pointer-events: none;
}

/* is-dark */
/* .breadcrumb_nav.is-dark .breadcrumb_item a{
  color: #fff;
}

.breadcrumb_nav.is-dark .breadcrumb_item.is-current{
  color: #fff;
}

.breadcrumb_nav.is-dark .breadcrumb_item + .breadcrumb_item::before{
  color: #fff;
} */

/* ホバー無効 */
.breadcrumb a:hover {
  color: inherit;
  text-decoration: inherit;
  opacity: 1;
}

/* パンくずの長いタイトル省略・整形 */
.breadcrumb_item.is-current span {
  display: inline-block;
  max-width: 420px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  height: 14px;
  line-height: 12px;
}

/* ===============================
    フッター
=============================== */
/* ── フッター全体  ─────────── */
.footer_bg {
  background-color: #272116;
  margin: 0 auto;
  border-radius: 10px;
  padding: 53px 0 55px;
}

.footer_layout {
  display: flex;
  flex-direction: column;
}

/* ── 上段（お問い合わせ） ─────── */
.footer_row--contact {
  display: flex;
  flex-direction: column;
  gap: 37px;
  margin-bottom: 50px;
}

.footer_contact_head {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer_contact_title {
  position: relative;
  color: #FFFFFF;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.45;
}

.footer_contact_title::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 20px;
  background-color: #FFFFFF;
  margin-left: 20px;
  position: relative;
  top: 1.2px;
}

.footer_contact_note {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.44;
}

.footer_cols--contact {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer_col--contact {
  flex: 1;
}

.footer_card--contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 35px 20px 35px 35px;
  background-color: #634A3C;
  border-radius: 10px;
}

.footer_card_main {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.2vw, 30px);
}

.footer_card_media {
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 116px;
}

.footer_card_media img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 10px;
}

.footer_card_img {
  transform: scale(1);
  transition: transform var(--hover-duration) var(--hover-ease);
  will-change: transform;
  backface-visibility: hidden;
}

.footer_card_kicker {
 display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
}

.footer_card_line_icon {
  display: block;
  width: 25.29px;
  height: 25.29px;
  object-fit: contain;
}

.footer_card_label {
  font-size: clamp(15px, 2.4vw, 26px);
  font-weight: 700;
  line-height: 1.15;
  color: #FFFFFF;
}

.footer_button_icon img {
  width: 49px;
  height: 49px;
  object-fit: contain;
}

.footer_card_body {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer_card_tail {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 丸付き矢印ボタン（白丸） */
.footer_button_icon--arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition:
    background-color var(--hover-duration) var(--hover-ease),
    transform var(--hover-duration) var(--hover-ease);
  position: relative;
  overflow: hidden;
}

.footer_button_icon--arrow::after{
  content: "";
  display: block;
  background-image: url(../img/common/icon_arrow_only.svg);
  position: absolute;
  top: 1px;
  left: -50px;
  width: 49px;
  height: 49px;
  background-size: contain;
}

/* ホバーアニメーション */
.footer_card:hover .footer_card_img,
.footer_card:focus-visible .footer_card_img {
  transform: scale(1.10);
}

.footer_card:hover .footer_button_icon--arrow img{
  transform: translateX(50px);
  transition: all .3s ease-out;
}

.footer_card:hover .footer_button_icon--arrow::after{
  left: 1px;
  transition: all .3s ease-out;
  animation: yazirushi-new .8s ease-in-out forwards;
}

/* ── 区切り線 ───────────────── */
.footer_divider {
  border-top: 1px dashed #8E8479;
  width: 100%;
  margin-bottom: 43px;
}

/* ── 下段（左右2カラム） ──────── */
.footer_row--bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
}

/* 左カラム（ブランド） */
.footer_col--brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.footer_logo_img {
  width: 200px;
  height: auto;
}

.footer_sns {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 137px;
}

.footer_sns_item {
  display: flex;
}

.footer_copyright {
  margin-top: 32px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.21;
  letter-spacing: 0.42px;
  color: #FFFFFF;
  font-family: 'Overpass', sans-serif;
}

/* 右カラム（情報） */
.footer_col--feature {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex: 1;
}

.footer_nav_list {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* フッターナビ：基本スタイル */
.footer_nav_link {
  font-size: 1.375rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.45;
  display: inline-block;
  text-decoration: none;
  position: relative;
}

.footer_nav_link::after{
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -2px;
  transition: .3s;
}

.footer_nav_link:hover::after{
  width: 100%;
}

.footer_feature_card {
  display: flex;
  justify-content: space-between;
  margin-top: 36px;
  margin-bottom: 15px;
  background-color: #F7F3EF;
  border-radius: 10px;
  max-width: 840px;
}

.footer_feature_main {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 46px 24px 38px 40px;
}

.footer_feature_media { /* 重複を統合・調整 */
  flex-shrink: 0;
  max-width: 315px;
  aspect-ratio: 315 / 206;
  width: 37.5%;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}

.footer_feature_media img { /* 重複を統合・調整 */
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 10px 10px 0;
  transform: scale(1);
  transition: transform var(--hover-duration) var(--hover-ease);
  will-change: transform;
  backface-visibility: hidden;
}

/* YouTube配信中 */
.footer_feature_tag {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #B08D57;
  font-family: 'Overpass', sans-serif;
  margin-bottom: 3px;
}

/* 就労支援ファンタジスタの事業完全ガイドTV */
.footer_feature_title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #272116;
  line-height: 1.45;
  margin-bottom: 21px; /* 下の本文との余白 */
}

/* 就労支援のあるある〜（説明文） */
.footer_feature_text {
  font-size: 0.875rem;
  font-weight: 400;
  color: #272116;
  line-height: 1.53;
  letter-spacing: 0.14px;
}

.footer_badges {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 35px;
  max-width: 840px;
  width: 100%;
}

.footer_badges_item {
  /* flex: 0 0 auto; */
  flex: 1;
}

.footer_badge {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; 
  height: 70px;
  border-radius: 10px;
  background-color: #634A3C;
  max-width: 270px;
  width: 100%;
}

.footer_badge:hover{ /* 重複を削除して統合 */
  transition: 0.3s;
  background-color: #B08D57;
}

.footer_badge_label {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.48px;
  color: #FFFFFF;
}

/* 斜め矢印アイコン配置 */
.footer_badge_icon {
  position: absolute;
  top: 6px;
  right: 6.5px;
}

.footer_badge_icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.footer_policies {
  display: flex;
  gap: 29px;
  padding: 0;
  margin: 0;
}

.footer_policies_link {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.16px;
  color: #FFFFFF;
  position: relative;
}

.footer_policies_link::after{
  display: block;
  content: "";
  width: 0%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -1px;
  transition: .3s;
}

.footer_policies_link:hover::after{
  width: 100%;
}

/* ホバーアニメーション */
.footer_feature_card:hover .footer_feature_media img,
.footer_feature_card:focus-visible .footer_feature_media img {
  transform: scale(1.10);
}

.footer_feature_card:hover .footer_feature_title,
.footer_feature_card:focus-visible .footer_feature_title {
  color: #634A3C;
  text-decoration-color: #634A3C;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer_badge:hover .footer_badge_label,
.footer_badge:focus-visible .footer_badge_label {
  transform: scale(1);
  text-decoration-thickness: 1px;
  text-decoration-color: #FFFFFF;
  text-underline-offset: 2px;
}

.br-xl {
  display: none;
}

.footer_br_sp {
  display: none;
}

.footer_br_pc {
    display: none;
}

/* ===============================
    フッター（PC・中間幅の調整）
    ※ 改行位置のコントロール
=============================== */
@media screen and (max-width: 1420px) {
  .br-xl {
    display: inline;
  }
}

@media screen and (max-width: 1120px) {
  .br-xl {
    display: none;
  }
}


/* ===============================
    アニメーション
=============================== */
@keyframes yazirushi-new{
  0%{
      transform: scaleX(1);
      margin-left: 0;
  }
  50%{
      transform: scaleX(0.8);
      margin-left: 4px;
  }
  100%{
      transform: scaleX(1);
      margin-left: 0;
  }
}

/* ===============================
   下層ページ共通スタイル
=============================== */
.lower__margin{
  margin-top: 100px;
}

.section__col-title{
  width: 220px;
  white-space: nowrap;
  position: relative;
}

.section__col-title h2{
  font-family: "Georgia";
  font-size: 2.5rem;
  letter-spacing: -1.2px;
  font-weight: normal;
  line-height: 46px;
  margin: 4px 0 10px;
  height: 46px;
}

.section__col-title p{
  font-weight: bold;
  line-height: 26px;
  height: 26px;
  color: #634A3C;
}

.section__col-body{
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.section__col-area{
  max-width: 880px;
  width: calc(100% - 260px);
}

/* ===============================
   ボタン (companies-btn)
=============================== */
.companies-btn{
    position: relative;
    margin: 38px 0 120px;
    max-width: 400px;
    width: 100%;
    height: 70px;
    background-color: #493932;
    border-radius: 70px;
    display: block;
    overflow: hidden;
}

.companies-btn__hover{
    position: relative;
    left: -120%;
    pointer-events: none;
    transition: left 1s ease;
}

.companies-btn__background{
    width: 400px;
    height: 70px;
    border-radius: 70px;
}

.companies-btn__cut-out{
    width: 70px;
    height: 70px;
    border-radius: 70px;
    background-color: #493932;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* 交互の動作 */
.first-action .companies-btn__hover,
.second-action .companies-btn__hover{
    left: 100%;
}

.first-action .companies-btn__background{
    background-color: #b18e57;
}
.second-action .companies-btn__background{
    background-color: #b18e57;
}

/* テキスト */
.companies-btn__text{
    font-size: 20px;
    font-weight: 700;
    line-height: 29px;
    color: #FFFFFF;
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    height: 29px;
    pointer-events: none;
}

/* 矢印 */
.companies-btn__yazirushi{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.yazirushi-area{
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.yazirushi-area__image,
.yazirushi-area__image-new{
    background-image: url(../img/common/arrow_black_circle_transparent.svg);
    background-size: calc(100% + 4px);
    background-position: center center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.yazirushi-area__image{
    left: 0;
}

.yazirushi-area__image-new{
    left: -60px;
    opacity: 0;
}

.companies-btn:hover .yazirushi-area__image{
    transition-delay: .5s;
    transition: left .5s ease;
    left: 60px;
}

.companies-btn:hover .yazirushi-area__image-new{
    transition-delay: 2.5s;
    transition: left .4s ease;
    left: 0px;
    animation: yazirushi-new .8s ease-in-out forwards;
    opacity: 1;
}

/* ===============================
   目次機能 (Table of Contents)
=============================== */
.table-of-contents{
    position: fixed;
    left: 50px;
    z-index: 10;
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: transform .2s .1s linear, opacity .2s .1s linear, visibility .1s linear;
    visibility: visible;
    opacity: 0;
}

.table-of-contents>li{
    width: fit-content;
}

.table-of-contents>li>a{
    font-size: 0.9rem;
    font-family: "Noto_Sans_JP";
    font-weight: 400; /* 重複を削除して400を残す */
    line-height: 24px;
    display: block;
    min-height: 24px;
    position: relative;
}

.table-of-contents.is-dark>li>a{
  color: #fff;
}

/* aタグの下線の設定 */
.table-of-contents>li>a::after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #333333;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width .2s linear, transform .2s linear;
    transform: scaleX(0);
    transform-origin: right;
}

.table-of-contents>li>a:hover::after{
    transform: scaleX(1);
    transform-origin: left;
}

.table-of-contents.is-dark>li>a:hover::after{
  transform: scaleX(1);
  transform-origin: left;
  background-color: #fff;
}

#js-toc-list a.active {
  font-weight: bold;
}

/* フッターが見えたら消えるようする */
.table-of-contents.disapper{
    transition: transform .2s linear, opacity .2s linear, visibility .1s .2s linear;
    transform: translateY(-60px);
    opacity: 0;
    visibility: hidden;
}


/* トップへ戻る */
.backToTop {
    margin-left: auto;
    margin-top: -120px;
    margin-bottom: 60px;
    border-radius: 50%;
    bottom: 60px;
    cursor: pointer;
    height: 60px;
    position: sticky;
    right: 60px;
    opacity: 0;
    visibility: hidden;
    width: 60px;
    border: 1.5px solid #333;
    transition: .3s;
    z-index: 100;
    display: block;
}

.backToTop .st0 {
  fill: none;
}

.backToTop .st1 {
  fill: #333;
}

.backToTop.is-active {
  opacity: 1;
  visibility: visible;
}

.backToTop.is-dark {
  border: 1.5px solid #fff;
}

.backToTop.is-dark .st1 {
  fill: #fff;
}

@media (width <= 800px) {

#area1.lower__margin{
  margin-top: 6px;
}

.table-of-contents {
    left: 0;
    background-color: #272116;
    padding: 3px 0px;
    border-radius: 0px 7px 7px 0px;
    min-width: 143px;
    gap: unset;
    top: 270px; /*変更*/
    opacity: 1; /*変更*/
    position: absolute; /*変更*/
  }
  .table-of-contents.vision-toc {
    top: 310px;
  }
  .table-of-contents>li {
    width: 100%;
  }
  .table-of-contents>li>a {
    font-size: 0.75rem;
    /* font-weight: bold; */
    line-height: 1.41;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    gap: 5px;
  }
  /* background-colorを削除してbackground-imageで画像を表示します */
  .table-of-contents>li>a::after {
    width: 11px;
    height: 11px;
    position: static;
    background-image: url(../img/common/table_arrow.svg);
    border-radius: 50%;
    transition: unset;
    transform: unset;
    background-size: cover;
    background-color: unset;
  }
  .table-of-contents>li>a:hover::after {
    transform: unset;
    transform-origin: unset;
  }

  .backToTop{
    right: calc((20 / 390) * 100%);
    bottom: 30px;
    width: 40px;
    height: 40px;
    margin-top: -70px;
    margin-bottom: 30px;
  }

  .back-blend {
      padding-bottom: 200px;
      margin-bottom: -100px;
  }
}

/* ===============================
    ヘッダー（スマホ：767px以下）
=============================== */
@media screen and (max-width: 800px) {
  /* ▼ SP用ヘッダー寸法の上書き */
  :root {
    --header-top-space: 20px;  /* トップからの距離 */
    --header-height: 80px;     /* ヘッダーの高さ */
    --breadcrumb-gap: 40px;    /* ヘッダー下との間隔 */
  }

  .drawer_footer {
    display: block;
  }

  /* ヘッダー全体のレイアウト（PC/SP共通） */
  .header_layout {
    align-items: flex-start;
    position: relative; /* ボタンの絶対配置の基準にする */
  }

  .header_nav_link:hover::after {
    width: 0; /* 下線アニメーションはオフ */
  }

  .header_logo_img {
    width: 80px;
    height: 80px;
  }

  /* ハンバーガーボタンを表示＆右上に配置 */
  .header_menu_button {
    display: inline-flex;
    z-index: 1001;
  }

  /* ドロワーを有効化（SPのときだけ使う） */
  /* ロゴを一番上に出す（ドロワーの上に重ねる） */
  .header_logo {
    position: relative;
    z-index: 1001;
  }

  .header__inner {
    padding: 0 calc((20 / 390) * 100%);
    height: 100%;
  }

  /* PC用レイアウトから切り替え：header_cluster をドロワーとして使う */
  .header_cluster {
    position: fixed;
    inset: 0;
    padding: 155px calc((20 / 390) * 100%) 28px;
    background-color: #272116;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    /* transition: opacity .28s ease-in-out; */
    transition: opacity .33s cubic-bezier(.33, .67, .38, .99);
    z-index: 1000;
    max-height: 100vh;              /* 画面の高さまで */
    overflow-y: auto;               /* 縦スクロールを許可 */
    -webkit-overflow-scrolling: touch; /* iOSでスルスルスクロール */
  }

  /* ▼ 開いた状態 */
  .header_cluster.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .js-global-nav,
  .header_cluster {
    backface-visibility: hidden;
    will-change: opacity;
    transform: translate3d(0, 0, 0);
  }

  /* ナビリスト縦並び */
  .header_nav_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header_button--main {
    width: 100%;
  }

  /* 背景スクロール止める用 */
  body.is-nav-open {
    overflow: hidden;
  }

  /* 枠線（li に付ける） */
  .header_nav_item {
    border-bottom: 0.25px solid #707070;
    width: 100%;
  }
  .header_nav_item:first-child {
    border-top: 0.25px solid #707070;
  }

  /* リンクの範囲を100%にして padding を付ける */
  .header_nav_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 51px;
    font-size: 1.0625rem;
    line-height: 1.47;
  }

  .header_nav {
    width: 100%;
    margin-bottom: 36px;
  }

  /* ドロワーが開いているときだけ表示
     → JSで付けている body.is-nav-open を利用 */
  body.is-nav-open .header_button--mail-sp {
    display: inline-flex;
  }

  .header_actions {
    display: flex;
    z-index: 1001;
    gap: 11px;
    pointer-events: auto;
  }

  .sp_drawer_mail_icon {
    width: 30px;
    height: 30px;
  }

  .header_cta .header_button--mail {
  display: none;
  }

  body.is-nav-open .sp_drawer_mail {
  display: inline-flex;
  }

  .drawer_nav_icon {
    display: block;
  }

  .header_cta {
    display: none;
  }

  .is-open .header_nav .header_nav_link {
    color: #FFFFFF;
  }

  /* SPドロワーが開いている間はロゴを白にする */
  body.is-nav-open .header_logo_img.dark {
    display: none;
  }

  body.is-nav-open .header_logo_img.lite {
    display: block;
  }

  .drawer_nav_icon img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }

  .drawer_footer .footer_row--contact {
    gap: 13px;
  }

  .drawer_footer .footer_cols--contact {
    gap: 15px;
  }

  .drawer_footer .footer_feature_card {
    margin: 0 0 20px 0;
  }

  .drawer_footer .footer_policies_link {
    padding-bottom: 14px;
  }

  .drawer_footer .footer_copyright {
    margin-top: 25px;
  }

  .drawer_footer .footer_contact_title {
    font-size: 0.8125rem;
    line-height: 1.46;
  }

  .drawer_footer .footer_card_media img {
    border-radius: 4px;
  }

  .drawer_footer .footer_card_main {
    gap: 24px;
  }

  .drawer_footer .footer_card_kicker {
    gap: 12px;
  }

  .drawer_footer .footer_card--contact {
    padding: 14px;
  }

  .drawer_footer .footer_feature_media {
    aspect-ratio: 350 / 75;
  }

  .breadcrumb_item.is-current span {
	max-width: 220px;
  }
  
  .breadcrumb_nav {
    padding: 0 calc((20 / 390) * 100%);
  }

}
/* フッターここまで */

/* ===============================
    フッター（PC・中間幅の調整）
    ※ 改行位置のコントロール
=============================== */
@media screen and (max-width: 1420px) {
  .br-xl {
    display: inline;
  }
}

@media screen and (max-width: 1145px) {
  .footer_br_pc {
    display: inline;
  }
}

@media screen and (max-width: 1120px) {
  .br-xl {
    display: none;
  }
}

/* ===============================
    フッター（スマホ：959px以下）
=============================== */
@media screen and (max-width: 959px) {
  .sp_device {
    display: block;
  }

  .pc_device {
    display: none;
  }

  .footer_br_pc {
    display: none;
  }

  .footer_contact_title::after {
    display: none;
  }

  .footer__container {
    width: calc((370 / 390) * 100%);
    margin-bottom: calc((10 / 390) * 100%);
  }

  .footer__inner {
    padding-left: calc(20 / 370 * 100%);
    padding-right: calc(20 / 370 * 100%);
  }

  .footer_contact_head {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .footer_cols--contact {
    flex-direction: column;
  }

  .footer_row--contact {
    gap: 20px;
    margin-bottom: 30px;
  }

  .footer_cols--contact {
    gap: 10px;
  }

  .footer_card_line_icon {
    width: 19px;
    height: 19px;
  }

  .footer_row--bottom {
    flex-direction: column;
  }

  .footer_divider {
    margin-bottom: 40px;
  }

  .footer_sns {
    width: 100%;
    justify-content: center;
    margin-top: 30px;
  }

  .footer_col--brand {
    width: 100%;
    align-items: center;
  }

  .footer_row--bottom {
    gap: 40px;
  }

  .footer_nav {
    width: 100%;
  }

  .footer_nav_item {
    width: 100%;
  }

  .footer_nav_list {
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
  }

  .footer_nav_link {
    display: flex;
    align-items: center;
    width: 100%;
    height: 45px;
    border-bottom: 1px dashed #8E8479;
  }

  .footer_nav_item:first-child a {
    border-top: 1px dashed #8E8479;
  }

  .footer_feature_card {
    margin: 20px 0;
    flex-direction: column-reverse;
    border-radius: 6px;
  }

  .footer_feature_media {
    max-width: 100%;
    aspect-ratio: 330 / 75;
    width: 100%;
    border-radius: 6px 6px 0 0;
  }

  .footer_feature_main {
    padding: 21px 20px 14px 20px;
  }

  .footer_badges {
    gap: 10px;
  } 

  .footer_badge_label {
    font-size: 0.8125rem;
    line-height: 1.46;
    font-weight: 700;
    letter-spacing: 0;
  }

  .footer_feature_media img {
    border-radius: 0;
    object-position: 50% 15%;
  }

  .footer_badges_item {
    width: 100%;
  }

  .footer_badge {
    max-width: 100%;
    width: 100%;
    height: 33px;
    border-radius: 5px;
  }

  .footer_badges {
    width: 100%;
  }

  .footer_policies {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .footer_copyright {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.33;
    letter-spacing: 0.36px;
    font-weight: 100;
    color: #C7C7C7;
  }

  .footer_policies_item {
    width: 100%;
  }
  
  .footer_policies_link {
    width: 100%;
    display: inline-block;
    padding-bottom: 14px;
    text-align: center;
    font-size: 0.8125rem;
    line-height: 1.46;
    font-weight: 500;
    letter-spacing: 0.13px;
  }

  .footer_copyright {
    margin-top: 25px;
  }

  .footer_bg {
    padding: 25px 0 28px;
  }

  .footer_contact_title {
    font-size: 1.0625rem;
    line-height: 1.47;
  }

  .footer_contact_note {
    font-size: 0.8125rem;
    line-height: 1.36;
  }

  .footer_card_body {
    gap: 4px;
  }

  .footer_card--contact {
    padding: 15px;
  }

  .footer_card_main { 
    /* gap: 20px; */
    gap: clamp(10px, 3.5vw, 20px);
  }

  .footer_logo_img {
    width: 130px;
    height: auto;
  }

  .footer_card_media img {
    width: 48px;
    height: 48px;
    border-radius: 5px;
  } 

  .footer_card_kicker { 
    /* font-size: 0.8125rem; */
    line-height: 1.46;
    margin-bottom: 0;
    font-size: clamp(11px, 3.4vw, 13px);
  }

  .footer_card_label {
    /* font-size: 0.9375rem; */
    line-height: 1.4;
    font-size: clamp(13px, 4vw, 15px);
  }

  .footer_nav_link {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .footer_badges {
    flex-direction: column;
  }

  .footer_card_media {
    flex: 0 0 48px;
  }

  .footer_badges {
    margin-bottom: 20px;
  }

  .footer_col--feature .footer_divider {
    margin-bottom: 25px;
  }

  .footer_feature_tag {
    font-size: 0.75rem;
    line-height: 1.33;
    margin-bottom: 4px;
  }

  .footer_feature_title {
    font-size: 0.9375rem;
    margin-bottom: 13px;
    line-height: 1.46;
  }

  .footer_feature_text {
    font-size: 0.8125rem;
    line-height: 1.48;
    letter-spacing: 0.13px;
  }

  /* 画像ズームオフ */
  .footer_card:hover .footer_card_img {
    transform: none;
  }

  /* 矢印のスライド・アニメーションオフ */
  .footer_card:hover .footer_button_icon--arrow img,
  .footer_card:hover .footer_button_icon--arrow::after {
    transform: none;
    animation: none;
    left: 0;
  }

   /* 特集カードもズームと下線オフ */
  .footer_feature_card:hover .footer_feature_media img {
    transform: none;
  }

  .footer_feature_card:hover .footer_feature_title {
    color: #272116;
    text-decoration: none;
  }

  .footer_nav_link::after {
    display: none; /* 下線そのものを非表示に */
  }

  .footer_nav_link:hover::after {
    width: 0;
  }

  /* ポリシーリンクの下線も消す */
  .footer_policies_link::after {
    display: none;
  }
  .footer_policies_link:hover::after {
    width: 0;
  }

  .footer_badge:hover {
    background-color: #634A3C; /* 元の色で固定 → 変化なし */
  }

  .footer_badge_icon {
    top: 5px;
    right: 5.45px;
    width: 8px;
    height: 8px;
  } 
}

/* ===============================
    （スマホ：480px以下）
=============================== */
@media screen and (max-width: 480px) {
  .breadcrumb_item.is-current span {
    max-width: 160px;
  }

  .footer_br_sp {
    display: block;
  }
}