@charset "utf-8";

/* =====================================================
   共通レイアウト
===================================================== */

/* セクション内幅制御 */
.block-special-section-inner {
  width: 1200px;
  margin: 0 auto;
}

/* 2カラム内テキスト幅 */
.block-special-col2 {
  margin: 0 20px;
  max-width: 900px;
  width: 100%;
}

/* Flexコンテナ（ナビ部分） */
.container {
  display: flex!important;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
	padding-left: 250px;
	padding-right: 250px;
}


/* 商品一覧 */
.block-special-item-list {
  justify-content: center;
}

.block-special-item-list-item {
  width: 228px !important;
  margin-right: 12px;
  margin-bottom: 60px;
}

/* 商品説明テキスト */
.block-special-text {
  font-size: 22px;
  line-height: 36px;
}

.block-special-section .otokubin {
    text-align: center;
}

/* =====================================================
   余白調整
===================================================== */

.mt10 {
  margin-top: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb-pc40-sp30 {
  margin-bottom: 40px !important;
}

.mb-pc60-sp40 {
  margin-bottom: 60px !important;
}

/* =====================================================
   見出し
===================================================== */

.midashi {
  font-size: 35px;
  text-align: center;
  font-weight: bold;
  line-height: 150%;
}

.midashi2 {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 140%;
}

.midashi3 {
  font-size: 20px;
  text-align: center;
}

.midashi_name {
  font-size: 20px;
  line-height: 150%;
  text-align: center;
}

.midashi_sub {
  font-size: 28px;
  line-height: 150%;
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

span.small_text {
    font-size: 70%;
    line-height: 120%;
}

span.example1 {
  vertical-align: super;
  font-size: 50%;
}

/* =====================================================
  スペックまわり
===================================================== */

.block-special-item-price-selling-price {
    color: #000;
    margin-bottom: 4px;
    text-align: right;
    line-height: 1.2;
}

.block-special-item-detail-btn a.temp-iw-btn-order-mov-lr--color::before {
    background: #555 !important;
}

.block-special-item-detail-btn a.temp-iw-btn-order-mov-lr--color {
    border-color: #555 !important;
    color: #FFFFFF !important;
}

/* ボタン本体 */
.block-special-item-list-item-btn a.temp-iw-btn-order-mov-lr--color {
  background-color: #555 !important;
  border-color: #555 !important;
  color: #FFFFFF !important;
}

.block-special-item-list-item-btn a.temp-iw-btn-order-mov-lr--color::before {
  background-color: #555 !important;
}

.block-special-item-list-item-price,
.block-special-item-list-item-price span {
  color: #323232 !important;
}

/* =====================================================
   カラー
===================================================== */

.color01 {
  color: #2ba5d6;
}

/* =====================================================
   ホバー効果
===================================================== */

.boxhover img:hover {
  opacity: 0.5 !important;
}

/* =====================================================
   フェードインアニメーション
===================================================== */

.content_fadein {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}

.content_fadein.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =====================================================
   SP対応
===================================================== */

@media screen and (max-width: 750px) {

  /* セクション幅 */
  .block-special-section-inner {
    width: 100%;
    margin: 0 auto;
  }

  /* ナビコンテナ */
  .container {
    display: block;
	  padding-right: 0px;
	  padding-left: 0px;
  }


  /* 商品一覧 */
  .block-special-item-list-item {
    width: calc(50% - 6px) !important;
    margin-right: 12px;
    margin-bottom: 30px;
  }

  /* 商品説明テキスト */
  .block-special-text {
    font-size: 16px;
    line-height: 160%;
  }

  /* 見出し */
  .midashi {
    font-size: 19px;
  }

  .midashi2 {
    font-size: 16px;
  }
	.midashi3 {
    font-size: 15px;
  }

  .midashi_name {
    font-size: 14px;
    line-height: 140%;
    margin-bottom: 0;
  }

  .midashi_sub {
    font-size: 17px;
    line-height: 140%;
    margin-bottom: 5px;
  }

  /* 余白 */
  .mb-pc40-sp30 {
    margin-bottom: 30px !important;
  }

  .mb-pc60-sp40 {
    margin-bottom: 40px !important;
  }
}


/* =========================
   ナビレイアウト最適化
========================= */

/* 共通 */
.block-special-section .container {
  display: flex;
  box-sizing: border-box;
}

.block-special-section .itemshin {
  box-sizing: border-box;
}

.block-special-section .itemshin img {
  width: 100%;
  height: auto;
  display: block;
}


/* ---------- PC ---------- */
@media screen and (min-width: 751px) {

  .block-special-section .container {
    justify-content: center;
    gap: 20px;               /* 画像間 */
    padding-left: 100px;
    padding-right: 100px;
  }

.block-special-section .itemshin {
    flex: 0 0 calc(25% - 15px);
  }
}


/* ---------- SP ---------- */
@media screen and (max-width: 750px) {

  .block-special-section .container {
    display: flex !important;
    flex-wrap: wrap;   /* ← ここだけ変更 */
    padding-left: 10px;
    padding-right: 10px;
    gap: 10px;
  }

  .block-special-section .itemshin {
    flex: 0 0 calc(50% - 5px);  /* ← シンプルに */
  }
}