@charset "utf-8";
/* CSS Document */
/*===============================================

●共通設定 & リセット

===============================================*/
#omusubi_cp *, *::before, *::after {
  box-sizing: border-box;
}
#omusubi_cp article {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 737px) {
  #contents {
    background-color: #fff;
    /* ▼ 追加：読み込み途中でも確実に画面の一番下まで背景領域を確保する */
    min-height: 100%;
    background-image: url("bg_pc.webp");
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
  }
}
@media screen and (max-width:736px) {
  #contents::before {
    background-color: #fff;
    background-image: url("bg_pc.webp");
    background-size: cover;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-position: bottom;
    z-index: -100;
    width: 100%;
    height: 100%;
  }
  .ly-btn-pagetop {
    background: #fff;
  }
  footer {
    background: #fff;
    z-index: -2;
  }
}
/* --- Main Container --- */
#omusubi_cp {
  max-width: 1200px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}
#omusubi_cp img {
  width: 100%;
  height: auto;
  display: block;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- 2. コンテナ --- */
.kv-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center; /* 左右中央 */
  align-items: flex-start; /* ★重要：上揃えにする */
  overflow: hidden; /* バウンス時のはみ出し対策 */
}
/* --- 3. アニメーション対象 (picture) --- */
.kv-anim-target {
  display: block;
  width: 100%;
  max-width: 1200px; /* PC最大幅 */
  /* 初期状態 */
  opacity: 0;
  visibility: hidden;
}
/* --- 4. 画像のレスポンシブ対応 --- */
.kv-anim-target img {
  width: 100%; /* 親要素に合わせる */
  height: auto; /* 高さは自動（アスペクト比維持） */
  display: block; /* 画像下の隙間消し */
}
/* ==========================================================================
   全体レイアウト（PC用：左右2カラム）
   ========================================================================== */
.omusubi_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  padding: 0px 40px;
}
/* 各セクションの大枠（ゴールド系の枠 ＆ 背景指定なし） */
.omusubi_section {
  border: 4px solid #da9e26;
  border-radius: 16px;
  overflow: hidden; /* H3の背景色が枠の角丸からはみ出さないように制御 */
  display: flex;
  flex-direction: column;
}
/* H3見出し共通（白文字でコントラスト比を確保） */
.omusubi_section .section_title {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1.25rem, 3vw, 1.625rem); /* 20px - 26px相当 */
  font-weight: 900;
  text-align: center;
  padding: 15px 10px;
  color: #fff;
}
/* ① 名店監修商品のH3背景色 */
.meiten_section .section_title {
  background-color: #bc2824;
}
/* ② 増量商品のH3背景色 */
.zoryo_section .section_title {
  background-color: #1e3a6c;
}
.omusubi_section .sub_title {
  font-family: "Zen Old Mincho", serif;
  min-height: clamp(3.125rem, 2.134rem + 2.16vw, 3.75rem);
  font-size: clamp(0.9rem, 0.741rem + 0.34vw, 1rem);
  font-weight: 700;
  text-align: center;
  padding: 5px 10px;
  display: grid;
  align-items: center;
}
.meiten_section .sub_title {
  background-color: #ebbebd;
}
.zoryo_section .sub_title {
  background-color: #bbc4d3;
}
/* 商品掲載部分（背景色指定なし） */
.product_container {
  padding: 35px 25px;
  display: flex;
  flex-direction: column;
  gap: 35px; /* 商品同士の縦の隙間 */
}
/* ==========================================================================
   商品カード内要素（画像の下に要素を配置）
   ========================================================================== */
.product_item {
  display: flex;
  flex-direction: column;
  height: auto;
  flex-wrap: nowrap !important;
}
.product_item .img_wrapper {
  width: 100%;
  margin-bottom: 15px;
}
.product_item .product_img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 5px;
  filter: drop-shadow(4px 6px 8px rgba(0, 0, 0, 0.3));
}
/* 発売日バッジ */
.product_item .release_date {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start; /* 左端にフィット */
}
.meiten_section .release_date {
  background-color: #bc2824;
}
.zoryo_section .release_date {
  background-color: #1e3a6c;
}
/* H4 商品名 */
.product_item .product_name {
  font-size: 1.25rem; /* 20px相当 */
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 6px;
}
/* 価格 */
.product_item .product_price {
  font-size: 1.125rem; /* 18px相当 */
  font-weight: 600;
  margin-bottom: 12px;
}
/* 商品紹介 */
.product_item .product_desc {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 12px;
  width: 100%;
}
.product_item .notes_list {
  list-style: none;
}
.product_item .notes_list li {
  font-size: 0.75rem; /* 12px相当 */
  color: #666;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
/* ==========================================================================
   スクロールアニメーション（ふわっと表示）
   ========================================================================== */
.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);
}
/* ==========================================================================
   スマートフォン表示調整（SPブレイクポイント：736px）
   ========================================================================== */
@media screen and (max-width: 736px) {
  .omusubi_grid {
    grid-template-columns: 1fr; /* 1カラム化 */
    gap: 30px;
    padding: 0 10px 10px;
  }
  .product_container {
    padding: 25px 15px;
    gap: 35px;
  }
}
/*===============================================

●pc.css 画面の横幅が737px以上

===============================================*/
@media screen and (min-width: 737px) {
  #omusubi_cp .pc-none {
    display: none;
  }
  /* 見出し等のスタイル */
  #omusubi_cp h1 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color: #000;
    font-size: 2.4rem;
    margin: 1.5rem 0 1rem;
  }
  #omusubi_cp .lead {
    text-align: center;
    color: #000;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: -1rem;
  }
  #omusubi_cp h2 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 800;
    font-style: normal;
    text-align: center;
    margin: 3rem 0 1rem;
    color: #000;
    font-size: 1.9rem;
    /*   clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0% 50%);*/
  }
  #omusubi_cp h2::before, #omusubi_cp h2::after {
    content: "";
    background-image: url("omusubi_ico.svg");
    background-repeat: no-repeat;
    padding: 0 1.3rem;
    margin: 0 0.7rem 0 0.4rem;
    color: #e7bf38;
    text-shadow: 2px 2px 2px #000;
  }
  .youtube {
    position: relative;
    width: 93%;
    margin: 1rem auto 1rem;
    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%;
  }
  .w90 {
    width: 93%;
    margin: 0 auto;
  }
  .w90_end {
    position: relative;
    width: 93%;
    color: #fff;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .w90_end::before {
    white-space: pre;
    content: '終了しました';
    position: absolute;
    color: #fff;
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    top: 40%;
    left: 10%;
    right: 10%;
    z-index: 2;
  }
  .w90_end::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 1);
    opacity: 0.6;
    z-index: 1;
    transition: none !important;
  }
}
/*===============================================

●sp.css 画面の横幅が736pxまで

===============================================*/
@media screen and (max-width: 736px) {
  #omusubi_cp .sp-none {
    display: none;
  }
  #omusubi_cp {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: -10px;
  }
  #omusubi_cp section {
    min-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #omusubi_cp h1 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color: #000;
    font-size: 1.5rem;
    margin: 1rem 0;
  }
  #omusubi_cp .lead {
    text-align: center;
    color: #000;
    padding: 0 1rem;
    font-size: 0.9rem;
  }
  #omusubi_cp h2 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-style: normal;
    text-align: center;
    color: #000;
    font-size: 1.3rem;
    line-height: 5rem;
    margin-bottom: -0.8rem;
  }
  #omusubi_cp h2::before, #omusubi_cp h2::after {
    content: "";
    background-image: url("omusubi_ico.svg");
    background-repeat: no-repeat;
    padding: 0.0rem 0.9rem;
    margin: 0 0.3rem 0 0.4rem;
    color: #e7bf38;
    text-shadow: 2px 2px 2px #000;
  }
  .youtube {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    margin-bottom: .5rem;
    height: 0;
    overflow: hidden;
    margin-top: 0px;
  }
  .youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .w90 {
    width: 90%;
    margin: 0 auto;
  }
  .w90_end {
    position: relative;
    width: 90%;
    color: #fff;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .w90_end::before {
    white-space: pre;
    content: '終了しました';
    position: absolute;
    color: #fff;
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    top: 40%;
    left: 10%;
    right: 10%;
    z-index: 2;
  }
  .w90_end::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 1);
    opacity: 0.6;
    z-index: 1;
    transition: none !important;
  }
  .aten {
    font-size: 0.8rem;
    color: #000;
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 500;
  }
}