@charset "shift_jis";
/* --------------------------
    全体要素
-------------------------- */
#contents {
  padding: 0;
  color: #000;
  background-color: #fff;
  font-family: Meiryo, "Hiragino Kaku Gothic ProN", Osaka, sans-serif, sans-serif;
  text-align: center;
  letter-spacing: -.40em;
  font-size: 1.2em;
  word-break: break-all;
  word-wrap: break-word;
  box-sizing: border-box;
}
#contents h2.sub-ttl {
  font-weight: 900;
}
.contents-box {
  max-width: 1800px;
  margin: 0 auto;
}
#contents .fes-area-ctr .contents-area .sub-ttl {
  padding: .5em 0;
  text-align: center;
  margin: 60px 0 0;
  color: #333333;
  font-size: 3em;
}
/* --------------------------
    メインビジュアル
-------------------------- */
.main-visual-area {
  height: 655px;
  background-color: #0181fc;
  position: relative;
}
h1.main-ttl img {
  max-height: 600px;
  position: absolute;
  top: 305px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  z-index: 50;
}
/* 装飾 */
.main-visual-area .main-decoration {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}
.fv-icon {
  position: absolute;
  top: -55px;
  right: 4%;
  z-index: 6;
}
.fv-icon img {
  max-width: 230px;
}
.mv_item01 img, .mv_item03 img {
  max-width: 250px;
}
.mv_item02 img {
  max-width: 260px;
}
.mv_item01 {
  position: absolute;
  top: 240px;
  left: -3%;
  z-index: 5;
}
.mv_item02 {
  position: absolute;
  top: 230px;
  left: 80%;
  z-index: 5;
}
.mv_item03 {
  position: absolute;
  top: -68px;
  left: 0%;
  z-index: 4;
}
/* --------------------------
    メニュー
-------------------------- */

.prime-menu {
  display: flex;
  flex-wrap: nowrap;          /* 広い画面では横一列固定 */
  overflow-x: auto;           /* PC でもウィンドウが狭まった時はスクロール */
  -webkit-overflow-scrolling: touch;
  gap: 15px;
  padding: 0.8em 1em;
  background: #fff;
  font-size: 1.5em;
}

.prime-menu-item {
  position: relative;
  flex: 0 0 auto;             /* shrink 無効 ＝ 幅固定 */
  text-decoration: none;
  color: #fff;
  font-size: 0.8em;           /* 後で clamp() で可変にする */
  padding: 0.8em 1em;
  white-space: nowrap;
  transition: color 0.2s;
  background-color: #333;
  border-radius: 5px;
}

.prime-menu-item:hover {
  color: #fed928; 
}



.prime-menu-item:hover::after {
  transform: scaleX(1);
}

.prime-menu-item span{
        padding: 0 0 0 7px;
        font-size: .8em;

}

#menu .contents-box {
    max-width: 2210px;
}

/* ===== Right-Bottom Vertical Menu ===== */
.floating-menu {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  /* 初期は非表示（スクロールで出現） */
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

.floating-menu.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* メニュー本体（縦並び） */
.fm-panel {
  width: min(260px, 92vw);
  max-height: 60vh;
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* 複製された各リンクの見た目 */
.fm-panel .fm-item {
  display: block;
    padding: 10px 12px;
    text-decoration: none;
    color: #fff;
    border-radius: 8px;
    line-height: 1.2;
    border: 1px solid transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1.2rem;
}

.fm-panel .fm-item:hover,
.fm-panel .fm-item:focus {
  background: #f7f7f7;
  border-color: #eee;
  outline: none;
  color: #333;
}

/* 共通の見た目：ラベル付きピルボタン */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px; 
  min-height: 44px;
  border-radius: 9999px; 
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap; 
  justify-content: center; 
}

.back-to-top:hover,
.back-to-top:focus {
  background: #f7f7f7;
  outline: none;
}

/* アイコンだけ微調整（任意） */
.btt-icon {
  font-size: 12px;
  transform: translateY(-1px);
}

/* モバイルで幅が厳しい際の省略（任意・不要なら削除可） */
@media (max-width: 360px) {
  .btt-label { display: none; } /* 極小幅ではアイコンのみ表示 */
}


/* 既存の縦型（>2300px）はそのまま */

/* ===== 2300px以下：下部横一列の追従バー ===== */
@media (max-width: 2300px) {
  .floating-menu {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    /* 初期は非表示（スクロールで出現）仕様は継続 */
    margin: 0;
    transform: translateY(8px);
    opacity: 0;
    pointer-events: none;
    z-index: 2000;

    /* 下部バー配置用レイアウト */
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* 中央寄せ・左右に余裕があれば中央揃え */
    gap: 10px;

    /* iOS等のセーフエリアに配慮 */
    padding: 8px max(12px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
  }

  .floating-menu.is-visible {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    padding: 0;
  }
  .btt-label{
  display: none;
  
  }

  /* メニュー本体は横スクロール1行に */
  .fm-panel {
    width: auto;                 /* 横幅は内容に応じる */
    max-width: min(2600px, 96vw);/* 画面に収まる上限 */
    max-height: none;
    background: #fff;
    border-radius: 12px;
    padding: 6px;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;

    overflow-x: auto;            /* 1行でオーバー時は横スクロール */
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  /* 横一列表示に合うボタンスタイル */
  .fm-panel .fm-item {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    border: 1px solid transparent;
    line-height: 1;
    font-size: 1.1rem;
  }

  .fm-panel .fm-item:hover,
  .fm-panel .fm-item:focus {
    background: #f7f7f7;
    border-color: #eee;
    outline: none;
  }

  /* ページトップボタンはバーの右側に並べる */
  .back-to-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.12);
    flex: 0 0 auto;
  }
}

/* モバイル寄り最適化（任意調整） */
@media (max-width: 768px) {
  .fm-panel { max-width: 100vw; }
  .fm-panel .fm-item { padding: 10px;font-size: .9rem; }
}


@media (max-width: 499px) {
  .fm-panel { max-height: 50vh; }

.back-to-top{
display: none;

}
}




/* --------------------------
    レコメンド
-------------------------- */
#recommend h2 {
  text-align: center;
  font-size: 3em;
  margin: 0 auto;
}
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide {
  /* スライドのスタイリング */
}
/* 必要に応じてナビゲーションボタンの色なども調整 */
.swiper-button-next, .swiper-button-prev {
  color: #2976C6; /* お好みの色に */
  font-weight: bold;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
.swiper-slide {
  transition-property: transform;
}
.swiper-slide {
  opacity: 0.5;
  transform: scale(0.9) !important;
  transition: all 0.3s ease;
}
.swiper-slide-active {
  opacity: 1;
  transform: scale(1.05) !important;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 0px) !important;
}
/* --------------------------
    クーポン
-------------------------- */
.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 800px;
  background-color: #fed928;
  margin: 0 auto;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: .5em 0;
  border-radius: 5px;
  font-family: 'Arial', 'Hiragino Sans', 'Meiryo', sans-serif;
}
.store-tag {
  background-color: #333;
  color: white;
  padding: 8px 12px;
  font-size: 1.2em;
  margin: 5px 0 0 0;
  font-weight: bold;
  border-radius: 4px;
  white-space: nowrap;
}
.discount-text {
  color: #FF0000;
  font-size: 3em;
  font-weight: 900;
  letter-spacing: -2px;
}
.coupon-text {
  color: #333;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 7px 0 0 0;
}
.usage-button {
  background-color: #333;
  color: white;
  padding: 6px 16px;
  border: none;
  border-radius: 20px;
  font-size: 1.3em;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}
.usage-button:hover {
  background-color: #555;
}
/* --------------------------
    セール
-------------------------- */
.sale-item-area {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2em 1em;
  justify-items: center;
  align-items: start;
  max-width: 1800px;
  margin: 0 auto;
  padding: 1em 0;
}
.item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.item-group {
  padding: 16px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sale-txt {
  padding: 0 1em .5em;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  min-height: 135px; 
}

.item-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.sale-item-area .item .itemst {
  color: #fff;
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.name {
  font-size: 1em;
  font-weight: 500;
  margin: 12px 0 4px;
  color: #333;
  text-align: left;
}
.review {
  font-size: 1.2em;
  color: #666;
  gap: 4px;
  margin-bottom: 3px;
  text-align: left;
}

.price {
  font-family: Arial, sans-serif;
  font-size: 2em;
  color: #000;
  text-align: left;
}
.original-price {
  font-size: .8em;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 4px;
  text-align: left;
}
.discount-rate {
  color: #cc0c39;
  font-weight: 100;
  font-size: 0.9em;
  padding: 0 5px 0 0;
}
.percent {
  font-weight: 700;
}
.yen {
  color: #000;
  font-size: .7em;
  padding: 0 3px 0 0;
}
.sale-btn {
  background: #FCD200;
  color: #333;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}
.sale-in {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.csdf-right-dtl-txt-greater {
  margin-left: 6px;
}
.itemlink {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sale-item-area.scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1em;
  -webkit-overflow-scrolling: touch;
  padding: 1em 0;
  max-width: 1800px;
  margin: 0 auto 1em;
}

.sale-item-area.scroll .item {
  flex: 0 0 calc((100% - 5.5em) / 5.5); 
  scroll-snap-align: start;
}

.carousel-wrapper {
  position: relative;
  max-width: 1800px;
  margin: 0 auto;
}

.carousel-btn {
  position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 135px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #ccc;
    border-radius: 7px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: #555;
    cursor: pointer;
    user-select: none;
    padding: 0;
    transition: background 0.3s, box-shadow 0.3s;
}

.carousel-btn.left {
  left: 5px;
}

.carousel-btn.right {
  right: 5px;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}


/* --------------------------
    もっと見るボタン
-------------------------- */
#contents .more-link-box .link-btn .icon-greater-right-b::before {
  color: #D71C1C;
}

#contents .more-link-box.all .link-btn .icon-greater-right-b::before {
  color: #FCD200;
}

#contents .more-link-box {
  display: block;
  max-width: 800px;
  width: 90%;
  margin: 2em auto 1em;
  text-align: center;
  font-size: 1.2em;
  border: none;
}
#contents .more-link-box .link-btn {
  transition: all 0.3s;
  width: 100%;
  display: block;
  border-radius: 100px;
}
#contents .more-link-box .link-btn .btn-inner {
width: 100%;
    display: block;
    color: #333;
    background-color: #fff;
    padding: 1.2em 0;
    font-size: 1.2em;
    border-radius: 150px;
    font-weight: bold;
    border: 5px solid #FCD200;
}

#contents .more-link-box.all .link-btn .btn-inner {
    display: block;
    color: #fff;
    background-color: #D71C1C;
    border: 5px solid #D71C1C;
}

.all{
margin: 5em 0 0;


}


#contents .more-link-box .link-btn .icon-greater-right-b {
  display: inline-block;
  padding: 0 0 0 10px;
}
/* --------------------------
    PC用スタイル
-------------------------- */
@media screen and (min-width: 499px) {
  #contents h1 {
    font-family: 'M PLUS 1p', sans-serif;
  }
  #contents h2.sub-ttl {
    font-family: 'M PLUS 1p', sans-serif;
  }
  /* ブチ抜き */
  #m_col_center_wrap {
    margin-left: 0;
  }
  #clsd_contents .contents-center-area {
    max-width: 100%;
    margin: 0 auto;
  }
  #col_center {
    margin: 0 0 0 0 !important;
  }
  #clsd_contents {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  }
@media screen and (min-width: 481px) {
  .fes-area-ctr {
    width: 100%;
    margin: 0 auto;
  }
}

/* --------------------------
    スマホ用スタイル
-------------------------- */
@media screen and (min-width: 500px) and (max-width: 1500px) {
.price {
    font-size: 1.5em;
}
}
/* --------------------------
    スマホ用スタイル
-------------------------- */
@media screen and (max-width: 500px) {
  h1.main-ttl img {
    top: 175px;
    width: 95%;
  }
  .main-visual-area {
    height: 405px;
  }
  .banner-container {
    height: 50px;
  }
  .banner-content {
    top: 85%;
    gap: 4px;
    border-radius: 0;
  }
  .store-tag {
    font-size: 10px;
    padding: 4px 6px;
    margin: 0;
  }
  .discount-text {
    font-size: 22px;
  }
  .coupon-text {
    font-size: 12px;
  }
  .usage-button {
    padding: 3px 10px;
    font-size: 9px;
  }
  #contents .more-link-box .link-btn .btn-inner {
    padding: .8em 0;
    font-size: 1em;
    font-weight: 400;
    border: 2px solid #FCD200;
  }
  


  #contents .more-link-box {
    margin: 2em auto 1em;
    width: 95%;

  }
  .sale-item-area {
    grid-template-columns: repeat(2, 1fr); /* PC: 5列 */
    padding: 1em;
  }
  .item-group {
    padding: 6px;
  }
  .sale-txt {
    padding: 0 .4em .5em;
    font-size: .8em;
    min-height: 120px;

  }
  .original-price {
    font-size: 1em;
  }
  #contents .fes-area-ctr .contents-area .sub-ttl {
    font-size: 1.8em;
}

.sale-item-area.scroll .item {
    flex: 0 0 calc((100% - 2.5em) / 2.5);
}

.sale-item-area.scroll .price {
    font-size: 1.7em;
}

.carousel-btn {
    display: none;
  }
  
.prime-menu-item {
font-size: 0.7em;
}
.prime-menu {
padding: .5em;
}
}