@charset "utf-8";
/* CSS Document */
#contents {
  background-color: #fecf02;
}
/* ==========================================================================
       共通・ベース設定
========================================================================== */
#fmcollab45_cp_2606, #fmcollab45_cp_2606 *, #fmcollab45_cp_2606 *::before, #fmcollab45_cp_2606 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
#fmcollab45_cp_2609 article {
  width: 100%;
}
#fmcollab45_cp_2609 section {
  max-width: 1200px;
  margin: 0 auto 60px;
}
#fmcollab45_cp_2609 main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5px;
}
#fmcollab45_cp_2609 {
  background-color: #fecf02;
  color: #402010;
  overflow-x: hidden;
  /*padding-bottom: 80px;*/
  line-height: 1.6;
}
/* ①キービジュアル */
.kv_section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.kv_section picture img {
  width: 100%;
  height: auto;
  display: block;
  /* ▼ アニメーションを呼び出す（1.2秒かけて1回再生し、最後の状態で止まる） */
  animation: bounceKV 1.2s forwards;
}

/* ===================================================
   KV用：2回バウンスするキーフレームアニメーション
=================================================== */
@keyframes bounceKV {
  /* スタート：上空から透明状態ではじまる */
  0% {
    transform: translateY(-100px);
    opacity: 0;
    animation-timing-function: ease-in;
  }
  /* 1回目の着地 */
  33% {
    transform: translateY(0);
    opacity: 1;
    animation-timing-function: ease-out;
  }
  /* 1回目の跳ね上がり */
  55% {
    transform: translateY(-30px);
    animation-timing-function: ease-in;
  }
  /* 2回目の着地 */
  77% {
    transform: translateY(0);
    animation-timing-function: ease-out;
  }
  /* 2回目の跳ね上がり（小さく） */
  88% {
    transform: translateY(-10px);
    animation-timing-function: ease-in;
  }
  /* 最終着地 */
  100% {
    transform: translateY(0);
    opacity: 1;
    animation-timing-function: ease-out;
  }
}

/* ②右寄せ注釈 */
.annotation {
  max-width: 1200px;
  margin: 10px auto 0;
  padding: 0 15px;
  text-align: right;
  font-size: 0.75rem;
  font-weight: bold;
}
/* ③H1 / ④リード文 */
.head_area {
  max-width: 1200px;
  margin: 1.5rem auto;
  text-align: center;
  padding: 0;
}
.main_title {
  font-size: clamp(1.8rem, 0.531rem + 2.76vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-shadow: 4px 3px 0px #fff;
}
.sub_text {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 600;
}
.lead_text {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 600;
  /* 1. 行間を固定する（文字サイズの2倍の高さ） */
  line-height: 2.2;
  /* 2. 背景グラデーションで「丸い点（ドット）」を作る */
  /* 指定したマスの下部（calc(100% - 2px)）に、半径1.5pxの円を描画します */
  background-image: radial-gradient(circle at center calc(100% - 1.5px), #857166 1px, transparent 1px);
  /* 3. マスのサイズ（横幅8px、縦幅はline-heightと同じ2em）を指定して繰り返す */
  background-size: 6px 2.2em;
  /* 文字が線にピタッとくっつきすぎないように微調整 */
  padding-bottom: 3px;
}
.section_title_area {
  max-width: 1200px;
  margin: 15px auto;
  text-align: center;
  padding: 0;
}
.section_title {
  text-align: center;
  font-size: clamp(1.3rem, 0.507rem + 1.72vw, 1.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #fff;
  display: inline-block;
  position: relative;
  background: #E12F1D;
  padding: 10px 50px;
  border: 4px solid #402010;
  border-radius: 50px;
  box-shadow: 4px 4px 0px #402010;
}
/* ==========================================================================
       商品紹介エリア
========================================================================== */
.product_intro_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
/* タブデザイン */
.tab_list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0 0px -22px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 736px) {
  .tab_list {
    margin: 0 0px -17px;
  }
}
.tab_list li {
  flex: 1;
}
.tab_btn {
  display: block;
  width: 100%;
  padding: 22px 10px;
  background-color: #eee;
  color: #555;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  font-size: clamp(1rem, 4vw, 1.375rem); /* 16px - 22px相当 */
  border: 4px solid #402010;
  border-bottom: none;
  border-radius: 15px 15px 0 0;
  cursor: pointer;
  transition: background-color 0.3s;
  box-shadow: 4px 0px 0px #402010;
}
/* アクティブ時の色 */
.tab_btn[aria-selected="true"] {
  background-color: #17883B;
  color: #fff;
}
#tab-week2[aria-selected="true"] {
  background-color: #1A7EAB;
}
/* 白背景枠 */
.white_frame {
  background-color: #fff;
  border: 4px solid #402010;
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  /*min-height: 400px;*/
  box-shadow: 4px 4px 0px #402010;
}
@media screen and (max-width: 736px) {
  .white_frame {
    padding: 25px 15px;
    border-radius: 15px;
  }
}
/* タブパネルの表示切り替え */
.tab_panel {
  display: none;
}
.tab_panel.is-active {
  display: block;
}
/* 商品グリッド */
.product_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 30px;
}
@media screen and (max-width: 736px) {
  .product_grid {
    grid-template-columns: 1fr;
  }
}
/* 商品カード内要素 */
.product_item {
  display: flex;
  flex-direction: column;
}
.product_img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: #f9f9f9;
}
.product_imgG {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 2px solid #17883B;
}
.product_imgB {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
  background-color: #1A7EAB;
  border: 2px solid #1A7EAB;
}
.release_date {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start;
  background-color: #1A7EAB;
}
.is-week1 .release_date {
  background-color: #17883B;
}
.is-week2 .release_date {
  background-color: #1A7EAB;
}
.product_name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
}
.product_price {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 15px;
}
/* =======================================
   余白のばらつきを強制的に揃える修正
======================================= */
.product_desc {
  font-size: 0.95rem;
  /* ブラウザの余白を無効化し、絶対に15px空ける */
  margin-bottom: 15px !important; 
}

/* 注釈リスト（疑似要素※） */
.notes_list {
  list-style: none;
  /* ブラウザが勝手につける上余白を消す */
  margin-top: 0 !important; 
  /* 下余白を上の description と同じ15pxで固定 */
  margin-bottom: 15px !important; 
  /* SPで左にズレるのを防ぐため念のためリセット */
  padding-left: 0 !important; 
}
.notes_list li {
  position: relative;
  font-size: 0.85rem;
  color: #666;
}
/* 企業コメントエリア */
.comment_area {
  background-color: #fffcf0;
  padding: 15px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-left: 4px solid #e8321d;
  margin-top: auto;
}
.comment_area h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.comment_area p {
  font-size: 0.9rem;
  font-weight: 500;
}
.comment_area p > span {
  font-size: 85%;
}
/* 切り替えボタン（右下） */
.panel_nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.nav_btn {
  background-color: #402010;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
}
.nav_btn {
  background-color: #402010;
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 0px rgba(0, 0, 0, 0.2);
}
.nav_btn::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}
.nav_btn:hover {
  background-color: #5a311c;
  transform: translateY(-2px);
  box-shadow: 0 6px 0px rgba(0, 0, 0, 0.2);
}
/* アニメーション用クラス */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-active {
  opacity: 1;
  transform: translateY(0);
}
/* スクリーンリーダー用 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.youtube {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 56.25%;
  padding-top: 0px;
  height: 0;
  overflow: hidden;
  margin-top: 0px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*===============================================

●sp.css 画面の横幅が736pxまで

===============================================*/
@media screen and (max-width: 736px) {
  #fmcollab45_cp_2609 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: -10px;
  }
  #fmcollab45_cp_2609 main {
    padding: 0 14px 0 10px;
  }
  .youtube {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    margin-top: 0px;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
/* ===================================================
   SP専用：コメントエリア上の余白を強制的に均等にする
=================================================== */
@media screen and (max-width: 736px) {
  
  /* ★特効薬：カードのFlexboxを強制解除し、中身に合わせた自然な高さにする */
  #fmcollab45_cp_2609 .product_item {
    display: block !important;
  }
  
  /* 下揃え（auto）を無効化し、上余白を15pxでカッチリ固定 */
  #fmcollab45_cp_2609 .comment_area {
    margin-top: 15px !important;
  }
  
  /* 上のテキストの下余白を0にして、二重に空くのを防ぐ */
  #fmcollab45_cp_2609 .product_desc {
    margin-bottom: 0 !important;
  }
  
  /* ※印（注釈）がある場合の調整 */
  #fmcollab45_cp_2609 .notes_list {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
  }
  
}