@charset "UTF-8";
/* =========================================================
   chefsvoice.scss — AWCP 本サイト「シェフの声」一覧 / 詳細
   設定は _setting.scss を参照（全体共通は common.scss）
   メディアクエリ: @include media1024 / media900 / media640 / media768
   ※ 色は Figma 実測値（KV背景 #f9f9f9 / リード #eff5f8 /
     アンカー非アクティブ #c1d8e4 / アクティブ #066191）
   ========================================================= */
/* =========================================================
   AWCP 本サイト 固有トークン（プロジェクト追記 / 2026-06-25）
   ※ ここより上は社内標準。以下が本案件の設定。
   ========================================================= */
body.chefsvoice {
  padding-top: var(--header-h);
}

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* パンくずは common.scss の .breadcrumb に統一 */
/* =========================================================
   ページタイトル（CHEF & EGGS ＋ シェフの声）
   ========================================================= */
.cv_pagehead {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
  padding-top: 24px;
}
@media only screen and (max-width: 900px) {
  .cv_pagehead {
    padding-top: 20px;
  }
}

.cv_pagehead_en {
  display: block;
  color: #f4962d;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.cv_pagehead_sep {
  display: block;
  width: 240px;
  max-width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #12a391 0, #12a391 25%, #f4962d 25%, #f4962d 50%, #cd3846 50%, #cd3846 75%, #066191 75%, #066191 100%);
  margin: 18px 0 14px;
}

.cv_pagehead_ja {
  display: block;
  color: #12a391;
  font-weight: 300;
  font-size: clamp(32px, 5vw, 57px);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

/* =========================================================
   voice_list（カード一覧）
   ========================================================= */
.cv_list_wrap {
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 56px 20px 0;
}
@media only screen and (max-width: 900px) {
  .cv_list_wrap {
    padding: 40px 16px 0;
  }
}

.cv_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  max-width: 1140px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .cv_list {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 560px;
  }
}

.cv_card {
  display: block;
}
.cv_card:hover {
  opacity: 1;
}
.cv_card:hover .cv_card_shop {
  color: #f4962d;
}
.cv_card:hover .cv_card_thumb img {
  transform: scale(1.04);
}
.cv_card:hover .cv_card_more {
  color: #f4962d;
}
.cv_card:hover .cv_card_more_mark {
  transform: scale(1.1);
  animation: link_blob 2.5s ease-in-out infinite;
}

.cv_card_thumb {
  position: relative;
  display: block;
  aspect-ratio: 520/292;
  border-radius: 14px;
  overflow: hidden;
  background: #ccecfd;
}
.cv_card_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.cv_card_meta {
  display: block;
  padding: 16px 0 0;
}

.cv_card_catch {
  display: block;
  color: #12a391;
  font-weight: 700;
  font-size: clamp(16px, 1.85vw, 24px);
  line-height: 1.4;
  margin-bottom: 9px;
}

.cv_card_shop {
  display: block;
  color: #066191;
  font-weight: 700;
  font-size: clamp(15px, 1.55vw, 20px);
  line-height: 1.4;
  margin-bottom: 5px;
  transition: color 0.2s;
}

.cv_card_tag {
  display: block;
  color: #066191;
  font-size: clamp(12px, 1.1vw, 14px);
}

.cv_card_more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: #066191;
  font-weight: 400;
  font-size: clamp(14px, 1.45vw, 18px);
  line-height: 1.3;
  transition: color 0.2s;
}

.cv_card_more_mark {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: transform 0.35s ease, border-radius 0.4s ease, box-shadow 0.4s ease;
}

/* =========================================================
   ページネーション（一覧下部）
   ========================================================= */
.cv_pager {
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 64px 20px 0;
}
@media only screen and (max-width: 900px) {
  .cv_pager {
    padding: 48px 16px 0;
  }
}

.cv_pager_inner {
  border-top: 1px solid #066191;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

a.cv_pager_arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #066191;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #066191;
  transition: background 0.2s, color 0.2s;
}
a.cv_pager_arrow svg {
  width: 16px;
  height: 16px;
}
a.cv_pager_arrow:hover {
  background: rgba(77, 180, 214, 0.15);
  color: #066191;
}
a.cv_pager_arrow[aria-disabled=true] {
  opacity: 0.35;
  pointer-events: none;
}

.cv_pager_count {
  color: #066191;
  font-size: clamp(15px, 1.5vw, 18px);
  letter-spacing: 0.1em;
}
.cv_pager_count .cv_pager_current {
  font-weight: 700;
}
.cv_pager_count .cv_pager_slash {
  margin: 0 0.5em;
  opacity: 0.6;
}

/* =========================================================
   ▼ 詳細ページ
   ========================================================= */
/* サブタイトル（CHEF & EGGS のみ） */
.cv_subhead {
  width: min(1280px, 100% - 48px);
  margin: 0 auto;
  padding-top: 20px;
}
@media only screen and (max-width: 900px) {
  .cv_subhead {
    padding-top: 16px;
  }
}
.cv_subhead .cv_subhead_en {
  display: block;
  color: #f4962d;
  font-weight: 700;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.cv_subhead .cv_subhead_sep {
  display: block;
  width: 240px;
  max-width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #12a391 0, #12a391 25%, #f4962d 25%, #f4962d 50%, #cd3846 50%, #cd3846 75%, #066191 75%, #066191 100%);
  margin: 16px 0 0;
}

/* KV（メインビジュアル） */
.cv_kv {
  background: #f9f9f9;
  margin-top: 28px;
}
@media only screen and (max-width: 900px) {
  .cv_kv {
    margin-top: 20px;
  }
}

.cv_kv_inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 820fr 620fr;
  align-items: stretch;
}
@media only screen and (max-width: 900px) {
  .cv_kv_inner {
    grid-template-columns: 1fr;
  }
}

.cv_kv_figure {
  margin: 0;
  position: relative;
  aspect-ratio: 820/440;
  overflow: hidden;
}
.cv_kv_figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv_kv_play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}
.cv_kv_play:hover {
  background: rgba(0, 0, 0, 0.08);
}
.cv_kv_play:hover .cv_kv_play_icon {
  transform: scale(1.08);
  background: #fff;
}

.cv_kv_play_icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s, background 0.3s;
}
.cv_kv_play_icon svg {
  width: 26px;
  height: 30px;
  margin-left: 4px;
  fill: #12a391;
}
@media only screen and (max-width: 640px) {
  .cv_kv_play_icon {
    width: 60px;
    height: 60px;
  }
  .cv_kv_play_icon svg {
    width: 20px;
    height: 23px;
  }
}

/* 動画モーダル */
.video_modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow-y: auto;
  padding: 80px 100px;
  background: rgba(0, 0, 0, 0.82);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
@media only screen and (max-width: 640px) {
  .video_modal {
    padding: 72px 12px;
  }
}
.video_modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video_modal_overlay {
  position: fixed;
  inset: 0;
  cursor: pointer;
}

.video_modal_inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.video_modal_frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.video_modal_frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video_modal_close {
  position: absolute;
  top: 24px;
  right: -90px;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 0;
}
.video_modal_close img {
  display: block;
  width: 100%;
  height: 100%;
}
.video_modal_close:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 640px) {
  .video_modal_close {
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
  }
}

.cv_kv_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 56px;
}
@media only screen and (max-width: 1024px) {
  .cv_kv_body {
    padding: 32px;
  }
}
@media only screen and (max-width: 640px) {
  .cv_kv_body {
    padding: 28px 16px;
  }
}

.cv_kv_catch {
  color: #066191;
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.45;
  margin-bottom: 22px;
}

.cv_kv_sub {
  color: #12a391;
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 24px);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cv_kv_shop {
  color: #066191;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.4;
}

/* 本体 2カラム */
.cv_detail {
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 56px 20px 0;
  display: grid;
  grid-template-columns: 282px 1fr;
  gap: 62px;
  align-items: start;
}
@media only screen and (max-width: 1024px) {
  .cv_detail {
    gap: 40px;
  }
}
@media only screen and (max-width: 900px) {
  .cv_detail {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 16px 0;
  }
}
.cv_detail.is-no_side {
  grid-template-columns: 1fr;
}
.cv_detail.is-no_side .cv_side {
  display: none;
}

/* --- サイドバー --- */
.cv_side {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
@media only screen and (max-width: 900px) {
  .cv_side {
    position: static;
  }
}

.cv_side_index {
  color: #066191;
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.cv_anchor {
  border-top: 1px solid #066191;
  border-bottom: 1px solid #066191;
  padding: 20px 0;
  margin-bottom: 40px;
}

.cv_anchor_list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

a.cv_anchor_link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #00465c;
  font-size: 14px;
  line-height: 1.45;
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.cv_anchor_link::before {
  content: "";
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border-radius: 50%;
  background: #eff5f8;
  transition: background 0.2s;
}
a.cv_anchor_link:hover, a.cv_anchor_link.is-active {
  color: #f4962d;
}
a.cv_anchor_link:hover::before, a.cv_anchor_link.is-active::before {
  background: #f4962d;
}

/* プロフィール */
.cv_profile {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 32px;
  padding: 16px;
  border: 1px solid #066191;
  border-radius: 12px;
}
@media only screen and (max-width: 640px) {
  .cv_profile {
    flex-direction: column;
    gap: 16px;
  }
}

.cv_profile_thumb {
  flex: 0 0 auto;
  width: 200px;
  aspect-ratio: 200/230;
  margin: 0;
  overflow: hidden;
}
@media only screen and (max-width: 640px) {
  .cv_profile_thumb {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 1/1;
    margin: 0 auto;
  }
}
.cv_profile_thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cv_profile_body {
  flex: 1 1 auto;
  min-width: 0;
}

.cv_profile_label {
  color: #066191;
  font-weight: 700;
  font-size: clamp(15px, 1.5vw, 18px);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.cv_profile_name {
  color: #066191;
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  margin-bottom: 14px;
}

.cv_profile_text {
  color: #066191;
  font-size: clamp(13px, 1.3vw, 14px);
  line-height: 1.85;
}
.cv_profile_text p {
  margin: 0;
}
.cv_profile_text p + p {
  margin-top: 1em;
}
.cv_profile_text a {
  color: inherit;
  text-decoration: underline;
}
.cv_profile_text a:hover {
  opacity: 0.8;
}

/* --- コンテンツ --- */
.cv_content {
  min-width: 0;
}

.cv_content_date {
  text-align: right;
  color: #066191;
  font-size: clamp(13px, 1.3vw, 14px);
  margin-bottom: 18px;
}

.cv_lead {
  background: #eff5f8;
  border-radius: 14px;
  padding: 30px 34px;
  color: #066191;
  font-size: clamp(14px, 1.4vw, 15px);
  line-height: 1.9;
  margin-bottom: 56px;
}
@media only screen and (max-width: 640px) {
  .cv_lead {
    padding: 22px 18px;
  }
}

.cv_lead_text p {
  margin: 0;
}
.cv_lead_text p + p {
  margin-top: 1em;
}
.cv_lead_text a {
  color: inherit;
  text-decoration: underline;
}
.cv_lead_text a:hover {
  opacity: 0.8;
}

/* Q&A ブロック */
.cv_qa {
  margin-top: 48px;
}

.cv_qa ~ .cv_profile,
.cv_qa ~ .cv_lead {
  margin-top: 48px;
}

.cv_qa_num {
  color: #f4962d;
  font-weight: 400;
  font-size: clamp(15px, 1.5vw, 18px);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.cv_qa_question {
  color: #066191;
  font-weight: 700;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  margin-bottom: 24px;
}

.cv_qa_turn + .cv_qa_turn {
  margin-top: 32px;
}

.cv_qa_speaker {
  color: #12a391;
  font-weight: 700;
  font-size: clamp(15px, 1.6vw, 18px);
  margin-bottom: 8px;
}

.cv_qa_answer {
  color: #066191;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
}
.cv_qa_answer p {
  margin: 0;
}
.cv_qa_answer p + p {
  margin-top: 1.6em;
}
.cv_qa_answer a {
  color: inherit;
  text-decoration: underline;
}
.cv_qa_answer a:hover {
  opacity: 0.8;
}

.cv_qa_figure {
  margin: 30px 0 0;
}
.cv_qa_figure figure {
  margin: 0;
}
.cv_qa_figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.cv_qa_figure figcaption {
  color: #066191;
  font-size: clamp(12px, 1.1vw, 13px);
  margin-top: 10px;
  opacity: 0.85;
}

/* ページコントロール（前後の記事） */
.cv_control {
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 72px 20px 0;
}
@media only screen and (max-width: 900px) {
  .cv_control {
    padding: 56px 16px 0;
  }
}

.cv_control_inner {
  border-top: 2px solid #066191;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

a.cv_control_link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #066191;
  font-size: clamp(14px, 1.5vw, 16px);
  transition: color 0.2s;
}
a.cv_control_link .cv_control_arrow {
  width: 44px;
  height: 44px;
  border: 1px solid #066191;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
a.cv_control_link .cv_control_arrow svg {
  width: 16px;
  height: 16px;
}
a.cv_control_link:hover .cv_control_arrow {
  background: rgba(77, 180, 214, 0.15);
}
a.cv_control_link.cv_control_next {
  flex-direction: row-reverse;
  text-align: right;
}
a.cv_control_link[aria-disabled=true] {
  opacity: 0.35;
  pointer-events: none;
}