@charset "UTF-8";

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー全体用 */
/* 全体のスタイル */
* {
  font-family: 'Meiryo', sans-serif !important;
}

/* インタビューセクション全体 */
.wp-block-lazyblock-interview-heading-p {
  border: none;
}

/* インタビューヘッダーラップ */
.interview_heading_bloc-p {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  box-sizing: border-box;
  padding: 0 1rem;
}

/* タイトルコンテナ */
.interview_heading_bloc_bottom-p {
  border: none;
}
h1 {
  font-size: 1.5em;
}
h1:first-letter {
  font-size: 1.7em;
  color: rgb(127, 197, 202);
}

h1 .title-small {
  font-size: 1.5rem;
  color: #555;
}
@media (max-width: 768px) {
h1 .title-small {
  font-size: 1.3rem;
  color: #555;
}

}
@media (max-width: 480px) {

h1 .title-small {
  font-size: 1.1rem;
  color: #555;
}
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー全体用 */
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーヘッダー */
.counseling-btn {
  background: linear-gradient(135deg, #e60023, #b4001a); /* 赤のグラデーション */
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 影で立体感 */
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  font-size: 1.6rem; /* ← フォントサイズを変更（例：16px相当） */
}

.counseling-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.counseling-btn:hover::after {
  left: 100%; /* ホバーで光が流れるようなエフェクト */
}

.counseling-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px); /* 少し浮き上がる */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* ヘッダメニュー2段目 */
  .container-h2 {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
  }
.h2menu {
    background-color: rgb(244, 244, 244);
    height: 60px;
}

.h2menu__inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;  /* 左揃え */
    align-items: center;          /* 垂直中央 */
    height: 100%;
    padding: 0 20px;
    gap: 20px;  /* 項目間の間隔（必要に応じて調整） */
}

.h2menu__item {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 10px;
    transition: color 0.3s;
    position: relative;
    display: inline-flex;
    align-items: center;

}

.h2menu__item::before {
    content: "▶";
    display: inline-block;
    color: #e91e63;
    font-size: 10px;
    margin-right: 6px;
    line-height: 1;
}

.h2menu__item:hover {
    color: #e91e63;
}


/* ▼ 画面幅が768px以下（タブレット・スマホなど）でサイズを小さくする */
@media (max-width: 768px) {
    .h2menu__item {
        font-size: 13px;  /* 通常より少し小さめ */
    }

    .h2menu__item::before {
        font-size: 8px;   /* 矢印も小さく */
        margin-right: 4px;
    }
}

/* ▼ さらに狭い場合（スマホ縦持ち想定） */
@media (max-width: 480px) {
  .container-h2 {
    max-width: 100%;
    margin: 0;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .h2menu__inner {
    gap: 0px;
    height: 60px; /* 親の高さに合わせる */
  }

  .h2menu__item {
    font-size: 11px;
  }

  .h2menu__item::before {
    font-size: 7px;
    margin-right: 3px;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーヘッダー */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー画像スライド */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー画像スライド */


/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーータグ用 */

/* タグブロック */
.interview_heading_bloc_top-p {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 1rem;
}

/* タグリスト */
.graduate_tag-p {
  list-style: none;
  padding: 0;
  margin: 0 0 1vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 5px;
}

/* 各タグ（デフォルトサイズ） */
.graduate_item-p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(127, 197, 202);
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 100vh;
  padding: 0.6em 1.2em;
  border: none;
  line-height: 1;
  height: 2.6em; /* 高さを固定して完全な中央揃えに */
  box-sizing: border-box;
}

.graduate_item-p span {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  line-height: 1;
  position: relative;
  top: 0.05em; /* テキスト＋アイコンをさらに下に微調整 */
}

.graduate_item-p i {
  font-size: 1em;
  line-height: 1;
  color: #fff;
  display: inline-block;
  position: relative;
  top: 0.05em; /* アイコンだけわずかに下げる */
}



/* ★ スマホ用にタグサイズを段階的に縮小 */
@media (max-width: 768px) {
  .graduate_item-p {
    font-size: 1rem;
    padding: 0.4em 0.8em 0.4em 0.6em;
  }
}

@media (max-width: 480px) {
  .graduate_item-p {
    font-size: 0.85rem;
    padding: 0.3em 0.6em 0.3em 0.5em;
  }
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーータグ用 */



/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーインタビュー前 */

  .image-c {
    max-width: 800px;       /* 最大幅800px */
    width: 100%;            /* 幅は画面幅に合わせて可変 */
    margin: 0 auto;         /* 水平中央揃え */
    box-sizing: border-box; /* パディングやボーダー含む */
    margin: -20px auto 0; /* ← 上-20px、左右auto、下0（間隔狭め） */
  }
  .image-c img {
    width: 100%;            /* コンテナ幅に合わせて画像サイズ調整 */
    height: auto;           /* 高さは自動で維持 */
    display: block;         /* 下の余白を消す */
  }
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーインタビュー前 */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー格言 */
/* 画像を含むコンテナのスタイル */
.image-container {
    position: relative; /* テキストの絶対位置を親要素に対して設定 */
    display: inline-block; /* コンテンツのサイズに合わせて表示 */
}

/* 画像のスタイル */
.image-container img {
    display: block; /* 画像の周囲の余白を削除 */
    width: 100%; /* 画像の幅を親要素に合わせる */
    height: auto; /* 高さを自動調整して縦横比を保つ */
}
/* テキストオーバーレイのスタイル */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: clamp(1.3rem, 2vw, 1.5em); /* 最小1rem、画面幅2%で調整、最大1.5em */
    text-align: center;
}
/* 折り返しを禁止 */
.text-overlay p {
    white-space: nowrap;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー格言 */


/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー導入文章 */
  .container-p {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
  }

  .text-p {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background: #fff;
  }
.mark-highlight-y {
  background-color: #ffd13a; /* もしくは rgb(255, 255, 0) や #ffff00 */
  box-sizing: border-box;
  border-style: solid;
  border-width: 0px;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー導入文章 */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーープロフィール */
.profile-heading-p {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0px;
  font-size: 32px;
  line-height: inherit;
  margin: -38px auto 0px; /* 中央揃えにするために左右marginをautoに */
  color: rgb(0, 140, 149);
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 90%; /* レスポンシブ対応 */
  width: 758px;    /* 最大サイズ */
  letter-spacing: -0.4px;
  background-color: rgb(255, 255, 255);
}
.border-box-p {
  border: 2px solid #eaf7f8; /* 枠線の色と太さ */
  padding: 40px 16px 16px 16px; /* 枠と中身の余白を上だけ大きく（上 右 下 左） */
  border-radius: 4px;        /* 角を少し丸める（任意） */
  background-color: #ffffff; /* 背景色（必要なら） */
  max-width: 800px;          /* 枠の最大幅（任意） */
  margin: 0 auto;            /* 中央揃え（任意） */
  margin-top: -25px;
 min-height: 200px; /* 内容が少なくても200pxの高さを確保 */
}
.columns-container {
  display: flex;
  gap: 16px;
  align-items: center; /* 縦位置を中央に揃える（任意） */
}

.column {
  flex: 1; /* 左右を等幅（5:5）にする */
}

.column img {
  width: 100%;         /* カラム内で画像を広げる */
  height: auto;        /* 縦横比を保つ */
  display: block;
  border-radius: 8px;  /* 任意で角丸に */
}
.name-heading-p {
  font-size: 1.7rem;
  margin-bottom: 8px;
  font-weight: bold;
  color: #008c95; /* 見出しと同じ色にして統一感を持たせる（任意） */
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーープロフィール */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー情報テーブル */
  .container-information {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    font-size: clamp(1.6rem, 2vw, 1.3em); /* 最小1rem、画面幅2%で調整、最大1.5em */
  }
.custom-table {
    width: 100%; /* 親要素に合わせてテーブルの幅を設定 */
  font-size: 1.8rem;
}

.custom-table table {
    width: 100%; /* 親要素に合わせてテーブル全体の幅を設定 */
    border-collapse: collapse; /* 枠線を重ねて表示 */
}

.custom-table td {
    padding: 10px; /* セル内に余白を設定 */
    border: 1px solid #7fc5ca; /* セルの境界線を濃ゆい色で設定 */
}

.custom-table td:first-child {
    background-color: #c7e7e8; /* 1列目の背景色をややグレーに設定 */
    width: 30%; /* 1列目の幅を30%に設定 */
}

.custom-table td:last-child {
    width: 70%; /* 2列目の幅を70%に設定 */
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー情報テーブル */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー給付金テーブル */
  .container-information2 {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    font-size: clamp(1.4rem, 1.5vw, 1.1em); /* 最小1rem、画面幅2%で調整、最大1.5em */
  }
.custom-table2 {
    width: 100%; /* 親要素に合わせてテーブルの幅を設定 */
}

.custom-table2 table {
    width: 100%; /* 親要素に合わせてテーブル全体の幅を設定 */
    border-collapse: collapse; /* 枠線を重ねて表示 */
}

.custom-table2 td {
    padding: 10px; /* セル内に余白を設定 */
    border: 1px solid #7fc5ca; /* セルの境界線を濃ゆい色で設定 */
}

.custom-table2 td:first-child {
    background-color: #c7e7e8; /* 1列目の背景色をややグレーに設定 */
    width: 30%; /* 1列目の幅を30%に設定 */
}

.custom-table2 td:last-child {
    width: 70%; /* 2列目の幅を70%に設定 */
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー給付金テーブル */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー目次 */
.center-contents-p {
  text-align: center;     /* 水平方向に中央揃え */
  font-size: 18px;        /* お好みの文字サイズに調整 */
  margin-top: -20px;        /* 上の余白を小さく */
}

.custom-list-p {
  list-style: decimal;        /* 数字付きリスト */
  padding-left: 1.7em;
  margin: 0;
}

.custom-list-p li {
  text-align: left;           /* 左揃え */
  font-size: 16px;
  margin: 4px 0;
}

.custom-list-p li::marker {
  color: rgb(0, 140, 149);    /* 数字部分だけ色を変更 */
  font-weight: bold;
}
html {
  scroll-behavior: smooth;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー目次 */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー記事内部 */
.h2-topics {
  position: relative;
  color: rgb(0, 140, 149);
  text-shadow: 0 0 2px white;
  text-align: center; /* テキストを中央揃え */
  margin: 40px 0;
  display: inline-block; /* 擬似要素をテキストに対して位置指定できるように */
 font-size: 24px;
}

.h2-topics::before {
  content: "";
  position: absolute;
  background: rgb(230, 230, 230);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  top: 50%;
  left: -17px; /* テキストの左外に円を配置 */
  transform: translateY(-54%);
  z-index: -1;
}

  .image-h2 {
    max-width: 600px;       /* 最大幅800px */
    width: 100%;            /* 幅は画面幅に合わせて可変 */
    margin: 0 auto;         /* 水平中央揃え */
    box-sizing: border-box; /* パディングやボーダー含む */
    margin: 10px auto 0; /* ← 上10px、左右auto、下0（間隔狭め） */
  margin-top: -37px;        /* 上の余白を小さく */
  }
  .image-h2 img {
    width: 100%;            /* コンテナ幅に合わせて画像サイズ調整 */
    height: auto;           /* 高さは自動で維持 */
    display: block;         /* 下の余白を消す */
  }



/* 共通スタイル */
.dialogue-photo-left,
.dialogue-photo-right {
  box-sizing: border-box;
  font-size: 10px;
  letter-spacing: -0.4px;
  background-color: #fff;
  color: #333;
  padding: 2vw 0;
}

/* 並び全体のスタイル */
.content_photo_left,
.content_photo_right {
  display: flex;
  align-items: flex-start;
  gap: 10px; /* 左右共通の間隔 */
  width: 90%;
  max-width: 900px;
  margin: auto;
}

/* 右用は並び順を反転 */
.content_photo_right {
  flex-direction: row-reverse;
}

/* 話者名と写真の枠 */
.content_speaker_wrapper {
  display: grid;
  gap: 0px;
  text-align: center;
  width: clamp(60px, 12vw, 120px);
  flex-shrink: 0;
}

/* 丸アイコン */
.speaker_photo {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
}

.speaker_photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 話者名 */
.content_speaker_wrapper p {
  margin: 10px 0 0;
  font-size: clamp(1.1rem, 1.4vw, 1.4rem);
  line-height: 1.2;
  font-weight: bold;
}

/* 吹き出し部分 */
.content_text {
  background: rgba(229, 243, 243, 0.4);
  border-radius: 5px;
  padding: 20px;
  font-size: 1.7rem;
  line-height: 1.6;
  width: min(600px, 78%);
}

.content_text p {
  margin: 0;
}

/* レスポンシブ対応（画面が狭い場合は縦並び） */
@media (max-width: 640px) {
  .content_photo_left,
  .content_photo_right {
    flex-direction: column !important;
    gap: 16px;
  }

  .content_photo_left {
    align-items: flex-start;
  }

  .content_photo_right {
    align-items: flex-end;
  }

  .content_text {
    width: 100%;
  }
}
.under {
  background: linear-gradient(transparent 59%, #ffd13a 61%);
  font-weight: bold;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー記事内部 */


/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーまずは無料カウンセリング */
.btn-copy {
  font-size: 1.5rem;
  font-weight: bold;

  position: relative;

  margin-bottom: .2em;

  text-align: center;
}

.btn-copy:before {
  margin-right: 1rem;

  content: '＼';
}

.btn-copy:after {
  margin-left: 1rem;

  content: '／';
}
.btn-wrapper {
  text-align: center; /* ボタン中央寄せ */
}

a.btn_counselling {
  display: inline-block;
  padding: 1.2rem 3rem;         /* 縦横に余白を増やしてボタンを横長に */
  font-size: 1.6rem;            /* 文字サイズを大きく */
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #008c95;
  background: #008c95;
  color: #fff;
  border-radius: 8px;           /* 少し角丸 */
  transition: 0.5s;
}
a.btn_counselling:hover {
  color: #008c95;
  background: #fff;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーまずは無料カウンセリング */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーオススメ記事 */

  .section_title.graduate-p {
    box-sizing: border-box;
    border: none;
    line-height: inherit;
    margin: 0;
    padding: 24px 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center; /* 水平方向中央揃え */
    color: #333;
    letter-spacing: -0.4px;
  }

  .post_list-p {
    box-sizing: border-box;
    margin: 0 auto 40px;
    padding: 0;
    list-style: none;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16.5px;
    max-width: 1140px;
    padding: 0 10px; /* 画面端に5px */
  }



  @media (max-width: 600px) {
    .post_list-p {
      grid-template-columns: 1fr;
    padding: 0 50px; /* 画面端に5px */
    }
  }

  .card-p,
  .card-p3 {
    box-sizing: border-box;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: rgba(10, 10, 10, 0.1) 0 8px 16px -2px, rgba(10, 10, 10, 0.02) 0 0 5px -10px;
    border-radius: 5px;
    width: 100%; /* Gridに合わせてカード幅は100%に */
    margin-bottom: 0; /* Gridのgapで調整 */
  }

  .card-p a,
  .card-p3 a {
    box-sizing: border-box;
    border: 0;
    background-color: transparent;
    text-decoration: none;
    transition: 0.2s;
    cursor: pointer;
    display: block;
    height: 100%;
  }

  .post_thumbnail_wrap-p {
    box-sizing: border-box;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    height: 0;
    padding-top: 57.14%; /* 350 / 200.094 ≈ 1.75 → 57.14% (高さを維持) */
    position: relative;
    overflow: hidden;
  }

  .thumbnail_inner-p {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .thumbnail_inner-p img {
    box-sizing: border-box;
    vertical-align: bottom;
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 100%;
  }

  .post_content_wrap-p {
    box-sizing: border-box;
    padding: 20px 25px;
  }

  .post_content_wrap-p h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin: 0 0 10px;
  }
.post-date-p {
  font-size: 1.2rem;
  color: #BBBBBB;
  margin: 0;
}
  /* 水平方向中央揃えは post_list-p に max-width & margin: auto で実現 */

.headline-line-p {
  display: flex;
  align-items: center;
  text-align: center;
  color: #333;
  font-size: 2.2rem;
  margin: 20px 0;
  max-width: 1100px;    /* 横幅の上限 */
  margin: 20px auto;    /* 上下 20px、左右は中央寄せ */
}

.headline-line-p::before,
.headline-line-p::after {
  content: "";
  flex: 1;
  border-top: 1px solid #ccc;
  margin: 0 12px;
}

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーオススメ記事 */

/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーフッター */
.l-footer {
    background-color: rgb(40, 40, 40);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 10px;
    font-size: 16px;
}

.l-footer_copyright {
    font-size: 12px;
}
/* ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーフッター */
