/******************************/
/* Tripleテンプレートに合わせたCTAセクション */
/******************************/
.cta-section {
    background: #2589d0;
    color: #ffffff;
    padding: 75px 0;
}
@media screen and (max-width: 767px) {
    .cta-section {
        padding: 45px 0;
    }
}

.u-container {
    box-sizing: border-box;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}
@media screen and (max-width: 1270px) {
    .u-container {
        padding-left: 25px;
        padding-right: 25px;
        max-width: inherit;
    }
}
@media screen and (max-width: 1023px) {
    .u-container {
        padding-left: 25px;
        padding-right: 25px;
        max-width: inherit;
    }
}

/* CTAグリッド */
.cta-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -30px;
    margin-right: -30px;
}
@media screen and (max-width: 1023px) {
    .cta-grid {
        margin-left: -20px;
        margin-right: -20px;
    }
}
@media screen and (max-width: 767px) {
    .cta-grid {
        margin-left: 0;
        margin-right: 0;
    }
}

/* CTAカラム */
.cta-column {
    position: relative;
    box-sizing: border-box;
    padding-left: 30px;
    padding-right: 30px;
    width: 50%;
}
@media screen and (max-width: 1023px) {
    .cta-column {
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media screen and (max-width: 767px) {
    .cta-column {
        margin-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
}

/* 区切り線 */
.cta-column:first-child::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
    .cta-column:first-child::after {
        display: none;
    }
}

/* セクションタイトル */
.cta-title {
    font-size: 28px;
    font-weight: 600;
    font-family: "Spartan", sans-serif;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
}
@media screen and (max-width: 1023px) {
    .cta-title {
        font-size: 24px;
    }
}
@media screen and (max-width: 767px) {
    .cta-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
}

.cta-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .cta-subtitle {
        margin-bottom: 25px;
        font-size: 13px;
    }
}

/* 電話番号 */
.cta-phone {
    text-align: center;
    margin-bottom: 30px;
}

.cta-phone-number {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    font-family: "Spartan", sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
@media screen and (max-width: 1023px) {
    .cta-phone-number {
        font-size: 28px;
    }
}
@media screen and (max-width: 767px) {
    .cta-phone-number {
        font-size: 24px;
        letter-spacing: 1px;
    }
}

.cta-phone-number:hover {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

/* ボタン */
.cta-button {
    display: block;
    background: #ffffff;
    color: #2589d0;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    margin: 20px auto;
    max-width: 280px;
    transition: all 0.3s ease;
    font-family: "Spartan", sans-serif;
}
@media screen and (max-width: 767px) {
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2589d0;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 情報リスト */
.cta-info {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 767px) {
    .cta-info {
        font-size: 13px;
        line-height: 1.7;
    }
}

.cta-info-item {
    margin-bottom: 8px;
}

.cta-info-label {
    font-weight: bold;
    color: #ffffff;
}

.cta-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* 会社情報の整理 */
.company-name {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .company-name {
        font-size: 15px;
        margin-bottom: 12px;
    }
}

.company-details {
    text-align: left;
    margin: 0 auto;
    max-width: 350px;
}
@media screen and (max-width: 767px) {
    .company-details {
        text-align: center;
    }
}


/******************************/
/* Tripleテンプレートに合わせたヒーローセクション */
/******************************/

.features-section {
    padding: 75px 0;
    background: #ffffff;
}
@media screen and (max-width: 767px) {
    .features-section {
        padding: 45px 0;
    }
}

.u-container {
    box-sizing: border-box;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}
@media screen and (max-width: 1270px) {
    .u-container {
        padding-left: 25px;
        padding-right: 25px;
        max-width: inherit;
    }
}
@media screen and (max-width: 1023px) {
    .u-container {
        padding-left: 25px;
        padding-right: 25px;
        max-width: inherit;
    }
}

/* セクションタイトル */
.c-ttl-main-features {
    position: relative;
    margin-top: 0;
    margin-bottom: 50px;
    line-height: 1.2;
    font-size: 30px;
    font-weight: 600;
    font-family: "Spartan", sans-serif;
    text-align: center;
    color: #2d2d2d;
}
@media screen and (max-width: 1023px) {
    .c-ttl-main-features {
        margin-bottom: 40px;
        font-size: 26px;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-main-features {
        margin-bottom: 30px;
        font-size: 21px;
    }
}

/* 特徴グリッド */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
@media screen and (max-width: 1023px) {
    .features-grid {
        margin-left: -17px;
        margin-right: -17px;
    }
}
@media screen and (max-width: 767px) {
    .features-grid {
        flex-direction: column; /* ← カード縦並びに */
        margin-left: 0;
        margin-right: 0;
    }
}

/* 特徴カード */
.features-card {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    width: 33.3333%;
}
@media screen and (max-width: 1023px) {
    .features-card {
        padding-left: 17px;
        padding-right: 17px;
        width: 33.3333%;
    }
}
@media screen and (max-width: 767px) {
    .features-card {
        margin-bottom: 40px; /* ← スペース確保 */
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    .features-card:last-child {
        margin-bottom: 0; /* 最後のカードだけ余白なし */
    }
}

/* カード内容 */
.features-inner {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 40px 25px 25px 25px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .features-inner {
        padding: 35px 20px 20px 20px;
    }
}

/* アクセントボーダー */
.features-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #2589d0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.features-inner:hover::before {
    transform: scaleX(1);
}
.features-inner:hover {
    border-color: #2589d0;
    box-shadow: 0 8px 25px rgba(37, 137, 208, 0.15);
    transform: translateY(-5px);
}

/* アイコンエリア */
.features-icon {
    margin-bottom: 25px;
    position: relative;
}

.features-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2589d0, #1e7bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(37, 137, 208, 0.3);
    transition: all 0.3s ease;
}

.features-inner:hover .features-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 137, 208, 0.4);
}

.features-icon-circle svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

/* タイトル */
.features-title {
    font-size: 20px;
    font-weight: bold;
    color: #2d2d2d;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: "Spartan", sans-serif;
}
@media screen and (max-width: 767px) {
    .features-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

/* 説明文 */
.features-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}
@media screen and (max-width: 767px) {
    .features-description {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* 強調テキスト */
.features-highlight {
    color: #2589d0;
    font-weight: bold;
}



/******************************/
/* Tripleテンプレートに合わせたスタイル調整 */
/******************************/


/* セクション共通スタイル */
.top-content-section {
    padding: 60px 0;
}
@media screen and (max-width: 767px) {
    .top-content-section {
        padding: 45px 0;
    }
}

/* セクションタイトル - Tripleスタイルに統一 */
.c-ttl-main-custom {
    position: relative;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.2;
    font-size: 30px;
    font-weight: 600;
    font-family: "Spartan", sans-serif;
    text-align: center;
    color: #2d2d2d;
}

.c-ttl-main-custom::after {
    content: "";
    display: block;
    width: 60px; /* 線の幅はお好みで調整 */
    height: 5px; /* 線の太さ（太線） */
    background-color: #2589d0; /* 線の色は見出しと同じにしていますが、自由に変更可能 */
    margin: 16px auto 0; /* 上に少し余白を取って中央寄せ */
}

@media screen and (max-width: 1023px) {
    .c-ttl-main-custom {
        margin-bottom: 30px;
        font-size: 26px;
    }
}
@media screen and (max-width: 767px) {
    .c-ttl-main-custom {
        margin-bottom: 20px;
        font-size: 24px;
    }
}

.section-subtitle {
    text-align: center;
    color: #757575;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.4;
}
@media screen and (max-width: 767px) {
    .section-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }
}

/* 売れ筋商品セクション */
.bestseller-item:hover {
    text-decoration: none;
}

.bestseller-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
}
@media screen and (max-width: 1023px) {
    .bestseller-grid {
        margin-left: -17px;
        margin-right: -17px;
    }
}
@media screen and (max-width: 767px) {
    .bestseller-grid {
        margin-left: -12px;
        margin-right: -12px;
    }
}

.bestseller-item {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 45px;
    padding-left: 20px;
    padding-right: 20px;
    width: 33.3333%;
    word-break: break-all;
    text-decoration: none;
    color: inherit;
}
@media screen and (max-width: 1023px) {
    .bestseller-item {
        margin-bottom: 30px;
        padding-left: 17px;
        padding-right: 17px;
        width: 50%;
    }
}
@media screen and (max-width: 767px) {
    .bestseller-item {
        margin-bottom: 25px;
        padding-left: 12px;
        padding-right: 12px;
        width: 100%;
    }
}

.bestseller-img {
    position: relative;
    margin-bottom: 25px;
    text-align: center;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 1023px) {
    .bestseller-img {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 767px) {
    .bestseller-img {
        margin-bottom: 15px;
    }
}

.bestseller-img::before {
    display: block;
    padding-top: 75%;
    content: "";
}

.bestseller-img img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    margin: auto;
    object-fit: cover;
}

.bestseller-txt {
    position: relative;
    padding-bottom: 25px;
}

.bestseller-ttl {
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 10px;
    line-height: 1.4;
}
@media screen and (max-width: 767px) {
    .bestseller-ttl {
        font-size: 16px;
    }
}

.bestseller-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {
    .bestseller-desc {
        font-size: 12px;
    }
}

.bestseller-item:hover .bestseller-img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

/****** カテゴリセクション *******/
.category-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.category-card {
    position: relative;
    box-sizing: border-box;
    margin-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    width: 50%;
    word-break: break-word;
    display: flex;
    flex-direction: column;
}
.category-inner {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}
.category-inner:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.category-header {
    display: flex;
    align-items: center; /* ← 中央揃えに戻す */
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}
.category-icon {
    flex-shrink: 0;
    width: 80px;
    height:80px;
    border-radius: 4px;
    margin-right: 15px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.category-title h3 {
    font-size: 18px;
    color: #2d2d2d;
    margin-bottom: 5px;
    line-height: 1.4;
}
.category-count {
    color: #757575;
    font-size: 12px;
}
.product-list {
    list-style: none;
    margin: 0;
    padding: 10px 8px 10px 0;
    max-height: 200px;
    overflow-y: scroll;
    position: relative;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    overscroll-behavior-y: contain;
}
.product-list::-webkit-scrollbar {
    width: 4px;
}
.product-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}
.product-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
.product-list .product-item {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}
.product-list .product-item:last-child {
    border-bottom: none;
}
.product-list .product-item:hover {
    color: #2d2d2d;
    background-color: #fafafa;
}
.product-list .product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 12px 8px;
    margin: -12px -8px;
    width: 100%;
    box-sizing: border-box;
}
.product-list .product-item a:hover {
    text-decoration: underline;
}

/* スマホ向けレスポンシブ修正 */
@media screen and (max-width: 767px) {
  .category-title h3 {
    font-size: 16px;
    color: #2d2d2d;
    margin-bottom: 5px;
    line-height: 1.4;
}
    .category-grid {
        flex-direction: column;
        overflow-x: hidden;
        margin-left: 0;
        margin-right: 0;
    }
    .category-card {
        width: 100%;
        margin-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .category-inner {
        height: auto;
        min-height: auto;
    }
    .product-list {
        scrollbar-width: thin;
        scrollbar-color: #ccc #f1f1f1;
        padding-right: 12px;
    }
    .product-list::-webkit-scrollbar {
        width: 6px;
        display: block;
    }
    .product-list::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    .product-list::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 3px;
    }
    .product-list .product-item {
        min-height: 48px;
        padding: 12px 0;
    }
    .product-list .product-item a {
        padding: 16px 12px;
        margin: -16px -12px;
    }
}

/* タッチデバイス向けの追加最適化 */
@media (hover: none) and (pointer: coarse) {
    .category-inner:hover {
        box-shadow: none;
        transform: none;
    }
    .product-list .product-item:hover {
        color: #666;
        background-color: transparent;
    }
    .product-list .product-item a:active {
        background-color: #f0f0f0;
        color: #2d2d2d;
    }
}


/* メーカーセクション */
.manufacturer-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px 30px;
}

/* カード外枠 */
.manufacturer-item {
  width: 16.6666%;
  padding: 5px;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 1023px) {
  .manufacturer-item {
    width: 20%;
  }
}

@media screen and (max-width: 767px) {
  .manufacturer-item {
    width: 33.3333%;
  }
}

/* 正方形にするための親要素 */
.manufacturer-inner {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 正方形 */
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  transition: all 0.3s ease;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
}

/* ホバー効果 */
.manufacturer-inner:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  border-color: #ccc;
}

/* ロゴ */
.manufacturer-logo {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.manufacturer-logo img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
}

/* メーカー名 */
.manufacturer-name {
  font-size: 11px;
  color: #666;
  font-weight: normal;
  line-height: 1.3;
  text-align: center;
  word-break: break-word;
  flex-shrink: 0;
}

.manufacturer-item:hover .manufacturer-name {
  color: #2d2d2d;
}

/* 不要なカテゴリの調整 */
@media screen and (max-width: 767px) {
  .category-grid {
    margin-left: 0;
    margin-right: 0;
  }

  .category-card {
    padding-left: 0;
    padding-right: 0;
  }

  .manufacturer-grid {
    margin-left: -5px;
    margin-right: -5px;
  }
}


/******************************/
/* SLIDER */
/******************************/
.p-main-slider .bx-wrapper .bx-viewport {
  border: 0;
  box-shadow: none;
  left: 0;
}
.p-main-slider .bx-wrapper img {
  margin: 0 auto;
  width: 100%;
}
.p-main-slider .bx-wrapper .bx-pager {
  padding-top: 0;
  bottom: -40px;
}
@media screen and (max-width: 767px) {
  .p-main-slider .bx-wrapper .bx-pager {
    bottom: -25px;
  }
}
.p-main-slider .bx-wrapper .bx-pager.bx-default-pager a {
  margin-left: 10px;
  margin-right: 10px;
  background: #dddddd;
}

/******************************/
/* NEWS */
/******************************/
.p-line-informaiton {
  margin-top: 90px;
  margin-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .p-line-informaiton {
    margin-top: 90px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-line-informaiton {
    margin-top: 45px;
    margin-bottom: 45px;
  }
}

.p-line-informaiton-list__item {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-line-informaiton-list__item {
    display: block;
    margin-bottom: 15px;
  }
}

.p-line-informaiton-list__date {
  width: 120px;
}

.p-line-informaiton-list__ttl {
  flex: 1;
}

/******************************/
/* INFORMATION */
/******************************/
.p-information {
  margin-top: 90px;
  margin-bottom: 90px;
  padding: 60px 90px;
  background: url(https://img.shop-pro.jp/tmpl_img/87/bg-grid.png) repeat;
  color: #2d2d2d;
}
@media screen and (max-width: 1023px) {
  .p-information {
    margin-top: 60px;
    margin-bottom: 45px;
    margin-left: 25px;
    margin-right: 25px;
    padding: 45px 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-information {
    margin-left: 0;
    margin-right: 0;
    padding: 35px 25px;
  }
}

/******************************/
/* CONCEPT */
/******************************/
.p-concept-box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
  margin-bottom: 105px;
}
@media screen and (max-width: 1023px) {
  .p-concept-box {
    margin-top: 45px;
    margin-bottom: 75px;
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box {
    display: block;
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
  }
}

.p-concept-box__logo {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
  width: 330px;
  min-height: 300px;
  background:#f8f9fa;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-concept-box__logo {
    padding: 45px;
    width: 220px;
    min-height: 195px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__logo {
    padding: 30px 15px;
    width: auto;
    min-height: 80px;
  }
}
.p-concept-box__logo img {
  max-width: 210px;
}
@media screen and (max-width: 1023px) {
  .p-concept-box__logo img {
    max-width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__logo img {
    max-width: 120px;
  }
}



.p-concept-box__txt {
  box-sizing: border-box;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 120px;
  background: url(https://img13.shop-pro.jp/PA01283/285/etc_base64/YXR0ZW50aW9uX2JhY2s.png?cmsp_timestamp=20250806164056) no-repeat center center #000;
  background-size: cover;
  color: #ffffff;
  z-index: 0;
  overflow: hidden;
}

.p-concept-box__txt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9); /* ← 背景画像をほぼ消す */
  z-index: 1;
  pointer-events: none;
}

.p-concept-box__txt > * {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}




@media screen and (max-width: 1023px) {
  .p-concept-box__txt {
    padding: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-concept-box__txt {
    padding: 20px 25px;
  }
}
.p-concept-box__txt:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
}

.p-concept-box__body {
  position: relative;
  z-index: 10;
}

/******************************/
/* RECOMMEND ITEMS */
/******************************/
.c-ttl-bg.is-recommend:before {
  background: url(<{$recommendimg}>) center center no-repeat;
  background-size: cover;
}
.p-recommend {
  overflow: hidden;
  padding-bottom: 90px;
}
@media screen and (max-width: 1023px) {
  .p-recommend {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .p-recommend-list {
    margin-left: 25px;
    margin-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-recommend-list {
    margin-left: 0;
    margin-right: 0;
  }
}

/******************************/
/* TOP SHOP */
/******************************/
.p-shop {
  padding-top: 90px;
}
@media screen and (max-width: 1023px) {
  .p-shop {
    padding-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop {
    padding-top: 30px;
  }
}

.p-shop-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 45px;
  padding-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .p-shop-wrap {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.p-shop-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .p-shop-wrap:before {
    content: none;
  }
}

.p-shop__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shop__bg {
    position: static;
    width: auto;
    height: auto;
  }
}
.p-shop__bg img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-shop__bg img {
    max-width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .p-shop__bg .simpleParallax {
    overflow: visible !important;
  }
}
@media screen and (max-width: 767px) {
  .p-shop__bg .simpleParallax {
    overflow: hidden !important;
  }
}

.p-shop-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shop-contents {
    min-height: inherit;
  }
}

.p-shop-box {
  position: relative;
  z-index: 100;
  width: 660px;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-shop-box {
    margin-top: 15px;
    width: auto;
    color: #2d2d2d;
  }
}

.p-shop-box__ttl {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__ttl {
    font-size: 17px;
  }
}

.p-shop-box__body {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__body {
    margin-top: 0;
  }
}

.p-shop-box__url {
  margin-top: 15px;
}
.p-shop-box__url a {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-shop-box__url a {
    color: #2d2d2d;
  }
}

.p-shop-box__btn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-shop-box__btn {
    margin-top: 20px;
  }
}
