@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;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-start;
  padding-left: 80px;
  padding-right: 80px;
}

/* ナビアイテム */
.itemshin {
  align-self: stretch;
  flex-basis: auto;
  width: 19%;
  padding-left: 0;
  margin-bottom: 2%;
}

/* 商品一覧 */
.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;
}

/* =====================================================
   余白調整
===================================================== */

.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%;
}

.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.example1 {
  vertical-align: super;
  font-size: 50%;
}

/* =====================================================
   カラー
===================================================== */

.color01 {
  color: #e73562;
}

/* =====================================================
   ホバー効果
===================================================== */

.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 {
    padding-left: 0;
    padding-right: 0;
    align-content: flex-start;
  }

  /* ナビアイテム */
  .itemshin {
    width: 49%;
    padding-left: 0;
  }

  /* 商品一覧 */
  .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;
  }

  .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;
  }
}