html,
body {
  overflow-x: hidden !important;
  width: 100vw;
}

html,
body,
* {
  box-sizing: border-box;
  font-family: "LINE Seed JP_OTF";
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .container {
    padding: 60px 20px 160px 20px
  }
}

.bread_list {
  margin-top: 80px;
}

.page_h1_title {
  font-size: min(4.5vw,50px);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
  margin-bottom: 72px;
    font-family: "Montserrat";
  color: #183783;
}

.page_h1_title span {
  font-size: 18px;
  color: #183783;
  display: block;
  font-weight: normal;
  margin-top: -6px;
  padding-bottom: 4px;
}

.page_h1_title h1 {
  font-size: 18px;
  color: #183783;
  display: block;
  font-weight: normal;
  margin-top: -6px;
  padding-bottom: 4px;
}

.page_h1_title::after {
  content: "";
  width: 40px;
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  background: #183783;
  border: solid 1px #183783;
}

/* VOICE SECTION */
.section-voice {
  position: relative;
  padding: 128px 20px;
}

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

.voice_ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  list-style: none;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .voice_ul {
    grid-template-columns: 1fr;
    padding-top: 0px;
  }
}

.voice_li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  height: 100%;
  border-left: 6px solid #183783;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.voice_li:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  /* 任意：影も強調 */
}

.voice_li a {
  display: flex;
  flex-direction: column;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.voice_profile_wrap {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  flex-wrap: nowrap;
  /* ← 折り返し禁止 */
  border-bottom: 2px solid #183783;
  align-items: center;
  padding: 16px 0;
}

.voice_img {
  flex-shrink: 0;
}

.voice_img img {
  object-fit: contain;
  display: block;
}

.voice_details_wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
  min-width: 0;
}

.voice_title {
  color: var(--text-Black, #141414);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  /* 22.5px */
  margin: 0;

}

.txt_profile {
  color: var(--text-Black, #141414);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 15px;
  /* 15px */
}

.txt_intro {
  color: var(--text-Black, #141414);
  text-align: justify;
  font-family: "LINE Seed JP_OTF";
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%;
  /* 17.5px */
  margin-top: 10px;
}

.voice_detail p {
  color: var(--text-Black, #141414);
  text-align: justify;
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(12px, 3vw, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.voice-befor {
  display: inline-block;
  font-size: 0.9rem;
  color: #fff;
  background-color: #183783;
  border-radius: 5px;
  padding: 2px 8px;
  margin-top: 16px;
  margin-bottom: 4px;
}

.voice-after {
  display: inline-block;
  font-size: 0.9rem;
  color: #fff;
  background-color: #018DC5;
  border-radius: 5px;
  padding: 2px 8px;
  margin-top: 16px;
  margin-bottom: 4px;
}

/*------------------------------------------------------
　カテゴリ
------------------------------------------------------*/
.pickup-category__list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 30px;
}

.pickup-category__list-item {
  margin: 0 14px 13px 0;
}

.pickup-category__list-item-link {
  font-size: 14px;
  font-weight: 700;
  display: block;
  padding: 12px;
  color: #333;
  background-color: #e2e6eb;
  border: 1px solid #ccd8dc;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}



.pickup-category__list-item-link.is-active {
  background-color: #183783;
  color: #fff;
}

.voice-category-list {
  list-style: none;
  padding: 0;
}

.voice-category-item {
  margin-bottom: 10px;
}

.voice-parent-btn {
  background-color: #f0f0f0;
  border: none;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
}

.voice-child-list {
  margin-top: 5px;
  padding-left: 12px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  /* 折り返し可能に */
  gap: 16px;
  /* 各要素の間隔 */
  list-style: none;
  margin-top: 8px;
  flex-wrap: wrap;

}

.voice-child-list li {
  flex: 0 0 auto;
  /* 幅を自動調整・均等に */
}

.voice-parent-btn {
  background-color: #f5f5f5;
  border: none;
  padding: 12px 16px;
  text-align: left;
  font-weight: bold;
  width: 100%;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  /* アイコンとテキストの間隔 */
  cursor: pointer;
}

.voice-child-list[style*="display: block"] {
  display: flex !important;
}


.voice-parent-btn .toggle-icon {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  transform-origin: center;
}

.voice-parent-btn.open .toggle-icon {
  transform: rotate(180deg);
  /* ▼ → ▲に見える */
}



/* 基本リセット */
.voice-category-list a {
  text-decoration: none;
  color: inherit;
  font-size: clamp(14px, 4vw, 18px);
}

/* ホバー */
.voice-category-list a:hover {
  color: #183783;
  text-decoration: none;
}

/* 親カテゴリ アクティブ */
.voice-parent-btn.is-active {
  color: #183783;
  font-weight: bold;
  text-decoration: none;
}

/* 子カテゴリ アクティブ */
.voice-child-btn.is-active {
  color: #183783;
  font-weight: bold;
  text-decoration: none;
}

/*------------------------------------------------------
　シングルページ
------------------------------------------------------*/
/* voice single 共通CSS */


/*------------------------------------------------------
  240614追加分_ピックアップ：コンテンツ
------------------------------------------------------*/
/* PC */
.voice_content {
  font-size: 18px;
  line-height: 2;
  font-weight: 500;
  display: flow-root;
  padding: 0 0 40px;
  text-align: left;
  margin-top: 64px;
}

.voice_content:after {
  content: "";
  display: block;
  clear: both;
}

.voice_content>* {
  margin-bottom: 30px;
}

.voice_content> :first-child,
.voice_content div> :first-child {
  margin-top: 0 !important;
}

.voice_ttl {
  font-size: 28px;
  letter-spacing: 0.04em;
  text-align: left;
  border-bottom: solid 2px #183783;
  padding-bottom: 8px;
  margin-bottom: 10px;
  position: relative;
  font-weight: bold;
  color: #183783;
  line-height: 1.5;
}

.voice_content h2 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  margin: 60px 0 30px;
  padding: 10px;
  color: #183783;
  border-left: solid 6px #183783;
  border-bottom: solid 1px #183783;
}

.voice_content h3 {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #222;
}

.voice_content h4 {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin: 30px 0 20px;
  padding: 0 0 0 15px;
  color: #183783;
  border-left: 4px solid #183783;
}

.voice_content p {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  color: #000;
}

.voice_content b {
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
  color: #000;
}

.voice_content figure {
  text-align: center;
}

.voice_content figcaption {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  text-align: center;
}

.voice_content img {
  max-width: 700px;
  width: 100%;
  height: auto;
  transition: .3s;
}

.voice_content blockquote {
  padding: 25px 36px;
  font-size: 14px;
  line-height: 2;
  background-color: #f5f8fa;
  text-align: left;
}

.voice_content mark {
  background-color: #fffcb6;
}

.voice_content strong {
  font-weight: bold;
}

.voice_content a {
  color: #097cf2;
  text-decoration: underline;
}

.voice_content a[target="_blank"]:hover img {
  opacity: 0.7;
}

.voice_content a:hover {
  text-decoration: none;
  opacity: 1;
}

.voice_content .wp-block-button .wp-block-button__link {
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  background-color: #183783;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.voice_content .wp-block-button .wp-block-button__link:hover {
  opacity: 0.8;
}

.voice_content ul {
  padding: 0 0 0 20px;
  list-style: disc;
}

.voice_content ul li {
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
  color: #333;
}

.voice_content ol {
  padding: 0 0 0 20px;
}

.voice_content ol li {
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.voice_content table {
  margin: 15px 0;
}

.voice_content table tr:last-of-type td {
  border-bottom: 1px solid #b7bfc1;
}

.voice_content table th {
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  padding: 10px !important;
  vertical-align: middle;
  background-color: #dee7ea;
  border: 1px solid #b7bfc1 !important;
}

.voice_content table td {
  font-size: 13px;
  line-height: 2;
  font-weight: 500;
  padding: 10px !important;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #b7bfc1 !important;
}

.voice_content table thead {
  border-bottom: none;
}

.voice_content .wp-block-table table {
  margin: 15px 0;
}

.voice_content .wp-block-table table tr:last-of-type td {
  border-bottom: 1px solid #b7bfc1;
}

.voice_content .wp-block-table table th {
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
  padding: 10px !important;
  vertical-align: middle;
  background-color: #dee7ea;
  border: 1px solid #b7bfc1 !important;
}

.voice_content .wp-block-table table td {
  font-size: 13px;
  line-height: 2;
  font-weight: 500;
  padding: 10px !important;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #b7bfc1 !important;
}

.voice_content .wp-block-table table thead {
  border-bottom: none;
}

.voice_content .wp-block-flexible-table-block-table table {
  margin: 15px 0;
}

.voice_content .wp-block-flexible-table-block-table table tr:last-of-type td {
  border-bottom: 1px solid #b7bfc1;
}

.voice_content .wp-block-flexible-table-block-table table th {
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  padding: 10px !important;
  vertical-align: middle;
  background-color: #dee7ea;
  border: 1px solid #b7bfc1 !important;
}

.voice_content .wp-block-flexible-table-block-table table td {
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  padding: 10px !important;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #b7bfc1 !important;
}

.voice_content .wp-block-flexible-table-block-table table thead {
  border-bottom: none;
}

.voice_content .wp-block-image {
  text-align: center;
}

.voice_content .is-provider-youtube {
  margin: 30px 0;
}

.voice_content .is-provider-youtube .wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.voice_content .is-provider-youtube .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.voice_content .wp-block-video {
  margin: 30px 0;
}

.voice_content .wp-block-video video {
  vertical-align: middle;
  width: 100%;
}

/* スマホ */
@media screen and (max-width: 767px) {
  .voice_content {
    font-size: 15px;
    margin-top: 0px;
    /* padding: 0 0 30px; */
  }

  .voice_content>* {
    margin-bottom: 20px;
  }

  .voice_ttl {
    font-size: 20px;
  }

  .voice_content h2 {
    font-size: 20px;
    margin: 40px 0 30px;
    padding: 10px;
  }

  .voice_content h3 {
    font-size: 18px;
    margin: 30px 0 20px;
  }

  .voice_content h4 {
    font-size: 16px;
    margin: 25px 0 20px;
    padding: 0 0 0 15px;
  }

  .voice_content p {
    font-size: 15px;
    line-height: 2;
    font-weight: 500;
    color: #000;
  }

  .voice_content figcaption {
    margin-top: 20px;
    font-size: 12px;
  }

  .voice_content blockquote {
    padding: 20px;
    font-size: 14px;
  }

  .voice_content ul {
    padding: 0 0 0 20px;
  }

  .voice_content table {
    margin: 15px 0;
  }
}

.summary_detail p {
  margin: 0;
  font-size: 16px;
  color: #000;
  /* background-color: #183783; */
  padding: 6px 0;
  border-radius: 4px;
}

.before_wrap {
  display: flex;
  align-items: center;
  /* ← これで縦中央揃え */
  gap: 12px;
  flex-direction: row;
  /* margin-bottom: 10px; */
  margin-bottom: 10px;
}

.before_label {
  color: #183783;
  background-color: #fff;
  padding: 2px 8px;
  white-space: nowrap;
  border-radius: 4px;
  font-size: 14px;
  border: solid 1px #183783;
  /* 線の種類・太さ・色 */
  font-weight: 400;
}

.profile-text {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  /* 好きな余白 */
  margin: 0;
  padding: 0;
}

.before_detail p {
  margin: 0;
  font-size: 16px;
  color: #000;
  /* background-color: #183783; */
  padding: 6px 12px;
  border-radius: 4px;
}

/* スマホ時：縦並び＆左揃え */
@media screen and (max-width: 768px) {
    .before_label{
        margin-bottom:8px;
  }

  .before_wrap {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
    gap:3px;
  }

  .profile-text {
    gap: 5px;
  }

  
.before_detail p {
  padding: 0px 0px;
      line-height: 1.2;
}
}

.after_wrap {
  display: flex;
  align-items: center;
  /* ← これで縦中央揃え */
  gap: 12px;
  flex-direction: row;
  margin-bottom: 62px;
}

.after_label {
  color: #fff;
  background-color: #183783;
  padding: 2px 8px;
  white-space: nowrap;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  border: solid 1px #183783;
  /* 線の種類・太さ・色 */
}

.after_detail p {
  margin: 0;
  font-size: 16px;
  color: #000;
  /* background-color: #183783; */
  padding: 6px 12px;
  border-radius: 4px;
}

/* スマホ時：縦並び＆左揃え */
@media screen and (max-width: 768px) {
  .after_label{
        margin-bottom:8px;
  }
  .after_wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .after_wrap {
    gap: 5px;
  }

  .after_detail p {
  padding: 0px 0px;
  line-height: 1.2;
}
}


.voice-more-button {
  text-align: center;
  margin-top: 72px;
}

@media screen and (max-width: 768px) {
  .voice-more-button {
    text-align: center;
    margin-top: 42px;
  }
}

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

@media screen and (max-width: 768px) {
  .voice-more-button a {
    padding: 3px 20px;
    gap: 8px;
      font-size: 15px;
  }
}

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

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

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

.voice-category-item-all {
  text-align: right;
  margin-top: 18px;
}

.voice-parent-btn-all {
  display: inline-block;
  padding: 6px 14px;
  background-color: #f5f5f5;
  color: #333;
  font-size: 13px !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
  transition: all 0.2s ease;
}

.voice-parent-btn-all:hover {
  background-color: #e2e2e2;
  border-color: #999;
  color: #111 !important;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); */
  cursor: pointer;
}

/* COVER */
.consult-banner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.consult-banner img {
  width: 100%
}

.consult-banner.first {
  height: 300px;
}

.consult-banner.second {
  height: 500px;
}

@media screen and (max-width: 768px) {
  .consult-banner.second {
    height: 300px;
  }
}

.consult-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 145, 0.6);
  z-index: 1;
}

.consult-content {
  position: relative;
  z-index: 2;
}

.consult-btn {
  display: inline-flex;
  align-items: center;
  background: white;
  color: #008DC5;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: auto;
  height: auto;
  padding: 20px 28px 20px 72px;
  justify-content: flex-end;
  align-items: center;
  gap: 162px;
  border-radius: 100px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media screen and (max-width: 768px) {
  .consult-btn {
    gap: 20px;
    padding: 8px 10px 8px 10px;
  }
}

.consult-btn:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}


.consult-text {
  color: var(--Volve_Darkblue_secondary, #183783);
  font-feature-settings: 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(16px, 4vw, 32px);
  font-style: normal;
  font-weight: 600;
  text-align: left;
  line-height: 1.2;
}

.consult-text-pc {
  display: block;
}

.consult-text-sp {
  display: none;
}

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

  .consult-text-sp {
    display: block;
  }
}

.consult-arrow {
  background: #183783;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  .consult-arrow {
    width: 10%;
    height: auto;
  }
}

.consult-sub {
  margin-top: 20px;
  color: var(--Volve-White, #FFF);
  font-feature-settings: 'palt' on, 'liga' off, 'clig' off;
  font-family: "LINE Seed JP_OTF";
  font-size: clamp(16px, 3vw, 32px);
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.96px;
}

@media screen and (max-width: 768px) {
  .consult-sub {
    margin-top: 0px;
  }
}