* {
    box-sizing: border-box;
}

html {
    letter-spacing: 0.05em;
    font-size: 1rem;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
}

body {
    margin: 0;
    font-family: "Poppins", "Noto Sans JP", sans-serif;
    font-size: 1rem;
    color: #37373F;
    overflow-x: hidden;
}

.en {
    font-family: "Syne", sans-serif;
}

.content--wrap {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 70px 0 80px;
}

.content--wrap h2 {
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 50px;
}

.content--wrap h2 span {
    font-size: 38px;
    font-weight: 500;
    margin-bottom: 30px;
}

.pkbg {
    background-color: #FBF8F8;
}

.gybg {
    background-color: #848A90;
}

.ftbg {
    background-color: #F5F5F5;
}



/* ヘッダー */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    /* Safari対応 */
    width: 100%;
    position: fixed;
    box-shadow: none;
    border-bottom: none;
    padding: 20px 0;

}



.header-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ロゴ */
.logo {
    flex-shrink: 0;
    margin-right: 40px;
}

.logo a {
    color: #37373F;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    font-family: "Syne", sans-serif;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.7;
}

.logo a img {
    width: 263px;
    height: auto;
    vertical-align: bottom;
}

/* メインナビゲーション */
.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.nav-link {
    color: #37373F;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: #37373F;
}

.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #37373F;
}

.nav-link.dropdown .arrow-icon {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
    transform-origin: center;
}

.nav-dropdown:hover .nav-link.dropdown .arrow-icon {
    transform: rotate(180deg);
}

/* アクティブメニューの下ボーダー */
.nav-dropdown.active {
    position: relative;
}

.nav-dropdown.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #37373F;
    z-index: 1002;
}

/* 右側エリア */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.search--box {
    display: flex;
    align-items: center;
    position: relative;
}

.search--box input {
    padding: 8px 45px 8px 16px;
    border: none;
    border-radius: 100px;
    background: #F2F2F2;
    width: 320px;
    height: 38px;
    flex-shrink: 0;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.search--box input::placeholder {
    color: #999;
    font-size: 14px;
}

.search-btn {
    position: absolute;
    right: 17px;
    top: 49%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn::before {
    content: "";
    width: 15.601px;
    height: 15.601px;
    flex-shrink: 0;
    aspect-ratio: 15.60/15.60;
    background-image: url('https://gigaplus.makeshop.jp/beautytoybox/assets/img/search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    display: block;
    width: 20px;
    height: 20px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.icon-link:hover {
    opacity: 0.7;
}

.user-icon::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('https://gigaplus.makeshop.jp/beautytoybox/assets/img/user.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.cart-icon::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('https://gigaplus.makeshop.jp/beautytoybox/assets/img/bag.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* キャンペーンバナー */
.campaign-banner {
    background-color: #E8A5A5;
    text-align: center;
    padding: 6px 0;
}

.campaign-banner p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

/* ドロップダウンメニュー - メガメニュー */
.nav-dropdown {
    position: relative;
    z-index: 1000;
}

/* メイン領域にオーバーレイを追加してレイアウトシフトを防ぐ */
.header::before {
    content: '';
    position: fixed;
    top: 114px;
    /* ヘッダー高さ + キャンペーンバナー高さを除外 */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.header.dropdown-active::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-content {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    border-radius: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    transform: translateY(-10px);
}

.dropdown-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    justify-content: flex-start;
}

.nav-dropdown.active .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ブランドドロップダウン */
.dropdown-content.brands-dropdown .dropdown-inner {
    gap: 40px;
}

.dropdown-image {
    width: 300px;
    flex: 0 0 300px;
    text-align: center;
}

.dropdown-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 16px;
    background-color: #f8f9fa;
}

.dropdown-image p {
    font-size: 13px;
    color: #37373f;
    margin: 0;
    text-align: left;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: underline;
    transition: all 0.3s ease;
}



.dropdown-brands {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

.header-brand-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.header-brand-column a {
    color: #37373F;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.header-brand-column a:hover {
    opacity: 0.7;
}

/* カテゴリードロップダウン */

.category-columns {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.header-category-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.header-category-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #37373F;
    margin: 0 0 8px 0;
    position: relative;
}



.header-category-column a {
    color: #37373F;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.header-category-column a:hover {
    opacity: 0.7;
}

/* 内側からキレイに の項目のみ見出しサイズに */
.header-category-column:last-child a {
    font-size: 16px;
    font-weight: bold;
}


/* お悩み・部位ドロップダウン */

.concerns-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.concerns-list a {
    color: #37373F;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.concerns-list a:hover {
    opacity: 0.7;
}


/* アニメーション効果削除 */

/* head-mainimg スライダー */
.head-mainimg {
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-inline: auto;
    margin-bottom: 40px;
}

.head-mainimg .swiper-wrapper {
    display: flex;
}

.head-mainimg .swiper-slide {
    position: relative;
    width: 100%;
    flex-shrink: 0;
}

.head-mainimg .swiper-slide::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.49);
}

.head-mainimg .swiper-slide.swiper-slide-active::after {
    width: 0;
    height: 0;
}

.head-mainimg .swiper-slide>div {
    width: 100%;
}

.head-mainimg .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
}

/* 1024px以上で3つ表示、中央寄せ */
@media (min-width: 1024px) {
    .head-mainimg .swiper-slide {
        width: calc(100% / 3);
        /* max-width: 366px; */
    }
}

/* head-mainimg ナビゲーション全体コンテナ */
.head-mainimg-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* head-mainimg ナビゲーションボタン */
.head-mainimg-button-next,
.head-mainimg-button-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    position: relative;
}

.head-mainimg-button-next:after,
.head-mainimg-button-prev:after {
    font-family: swiper-icons;
    font-size: 14px;
    font-weight: 900;
    color: #37373F;
}

.head-mainimg-button-next:hover,
.head-mainimg-button-prev:hover {
    opacity: 0.7;
}

.head-mainimg-button-next.swiper-button-disabled,
.head-mainimg-button-prev.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* head-mainimg ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal.head-mainimg-pagination {
    display: flex;
    gap: 8px;
    position: relative;
    max-width: 550px;
    min-width: 373px;
    width: fit-content;
    justify-content: center;
}

.head-mainimg-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(55, 55, 63, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
}

.head-mainimg-pagination .swiper-pagination-bullet-active {
    background-color: #CA9182;
}

/* トピックス */

.b_top_topics .topics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.b_top_topics .topics>div {
    flex: 1;
    min-width: 250px;
}

.b_top_topics .topics>div a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.b_top_topics img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.b_top_topics .title {
    font-size: 0.95rem;
    font-weight: 700;
}

.b_top_topics p {
    font-size: 0.75rem;
}

/* ピックアップ */
.b_top_pickup {
    position: relative;
    overflow: hidden;
}

.b_top_pickup .pickup-container {
    position: relative;
}

.b_top_pickup .pickup-swiper {}

.b_top_pickup .pickup {
    display: flex;
    overflow: visible;
}

.b_top_pickup .swiper-slide {
    width: 250px;
    flex-shrink: 0;
}

.b_top_pickup img {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
}

.b_top_pickup .brand {
    font-size: 15px;
    font-family: "Syne", sans-serif;
    text-align: left;
}

.b_top_pickup .item-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: left;
}

.b_top_pickup .price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.b_top_pickup .price-row:has(.free-shipping) {
    justify-content: space-between;
}

.b_top_pickup .price-row:not(:has(.free-shipping)) {
    justify-content: flex-end;
}

.b_top_pickup .free-shipping {
    font-size: 11px;
    padding: 2px 9px;
    border-radius: 100px;
    border: 1px solid #C9C9C9;
    background: #FFF;
    white-space: nowrap;
}

.b_top_pickup .price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.b_top_pickup .spec {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
}

.b_top_pickup .price {
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.b_top_pickup .unit {
    font-size: 14px;
    font-weight: normal;
    font-family: "Noto Sans JP", sans-serif;
}

.b_top_pickup .swiper-slide a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.b_top_pickup .swiper-slide a:hover {
    opacity: 0.7;
}

/* ピックアップ ナビゲーションボタン */
.pickup-container .pickup-swiper-button-next,
.pickup-container .pickup-swiper-button-prev {
    position: absolute;
    top: 130px;
    /* top: 44%;
    transform: translateY(-44%); */
    width: 50px;
    height: 50px;
    background-color: #DC9A95;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pickup-container .pickup-swiper-button-next svg,
.pickup-container .pickup-swiper-button-prev svg {
    width: 15px;
    height: 15px;
    fill: #fff;
}

.pickup-container .pickup-swiper-button-next svg path,
.pickup-container .pickup-swiper-button-prev svg path {
    fill: #fff;
}

.pickup-swiper-button-next:after,
.pickup-swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}

.pickup-container .pickup-swiper-button-next {
    right: -20px;
}

.pickup-container .pickup-swiper-button-prev {
    left: -20px;
}

.pickup-swiper-button-next:hover,
.pickup-swiper-button-prev:hover {
    opacity: 0.8;
}


.pickup-swiper-button-next.swiper-button-disabled,
.pickup-swiper-button-prev.swiper-button-disabled {
    opacity: 0;
    cursor: not-allowed;
}

/* ピックアップ VIEW MORE ボタン */
.b_top_pickup .pickup-viewmore {
    text-align: center;
    margin-top: 60px;
}

.b_top_pickup .viewmore-btn {
    display: inline-block;
    width: 250px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid #37373F;
    background: #000000;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Syne", sans-serif;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.b_top_pickup .viewmore-btn:hover {
    opacity: 0.7;
}

/* カテゴリー */

.b_top_category .category-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 50px auto 64px auto;
    border-bottom: 1px solid #EAEAEA;
    max-width: 680px;
}

.b_top_category .tab-button {
    flex: 1;
    text-align: center;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.1s ease;
    white-space: nowrap;
}

.b_top_category .tab-button:hover {
    color: #37373F;
}

.b_top_category .tab-button.active {
    color: #37373F;
}

.b_top_category .tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #37373F;
}

.b_top_category .tab-content {
    margin-top: 30px;
    position: relative;
}

.b_top_category .category--item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 38px 28px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 14px;
    right: 0;
}

.b_top_category .category--item.active {
    opacity: 1;
    visibility: visible;
    position: static;
}

.b_top_category .category--item>div {
    text-align: center;
}

.b_top_category .category--item img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}

.b_top_category .category--item>div>div {
    font-size: 14px;
    text-align: center;
}

.b_top_category .category--item a {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.b_top_category .category--item a:hover {
    opacity: 0.7;
}

/* 共通リンクスタイル */
a {
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* ランキング */

.b_top_ranking .ranking-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 28px;
}

.b_top_ranking .ranking-item {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.b_top_ranking .rank-number {
    position: absolute;
    top: 15px;
    left: 15px;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: normal;
    font-family: "Poppins", sans-serif;
    z-index: 1;
}

.b_top_ranking .ranking-item:nth-child(1) .rank-number {
    background: #C5B16F;
}

.b_top_ranking .ranking-item:nth-child(2) .rank-number {
    background: #A6A6A3;
}

.b_top_ranking .ranking-item:nth-child(3) .rank-number {
    background: #B48C65;
}

.b_top_ranking .ranking-item:nth-child(n+4) .rank-number {
    background: #616160;
}

.b_top_ranking .ranking-item img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.b_top_ranking .brand {
    font-size: 15px;
    font-family: "Syne", sans-serif;
    text-align: left;
}

.b_top_ranking .item-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: left;
}

.b_top_ranking .price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.b_top_ranking .price-row:has(.free-shipping) {
    justify-content: space-between;
}

.b_top_ranking .price-row:not(:has(.free-shipping)) {
    justify-content: flex-end;
}

.b_top_ranking .free-shipping {
    font-size: 11px;
    padding: 2px 9px;
    border-radius: 100px;
    border: 1px solid #C9C9C9;
    background: #FFF;
    white-space: nowrap;
}

.b_top_ranking .price-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.b_top_ranking .spec {
    font-size: 13px;
    font-family: "Poppins", sans-serif;
}

.b_top_ranking .price {
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
}

.b_top_ranking .unit {
    font-size: 14px;
    font-weight: normal;
    font-family: "Noto Sans JP", sans-serif;
}

/* ブランド */

.b_top_brand .brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
}

.b_top_brand .brand-item {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    border-right: 1px solid #000;
    padding: 0 32px;
    transition: opacity 0.3s ease;
}

.b_top_brand .brand-item:nth-child(3n) {
    border-right: none;
}

.b_top_brand .brand-item:nth-child(1) {
    border-left: 1px solid #000;
}

.b_top_brand .brand-item:nth-child(3) {
    border-right: 1px solid #000;
}

.b_top_brand .brand-item:nth-child(4) {
    border-left: 1px solid #000;
}

.b_top_brand .brand-item:nth-child(6) {
    border-right: 1px solid #000;
}

.b_top_brand .brand-item:hover {
    opacity: 0.7;
}

.b_top_brand .brand-item img {
    width: 100%;

    height: auto;
    margin-bottom: 16px;
}

.b_top_brand .brand-name {
    font-size: 16px;
    font-weight: 400;
    font-family: "Syne", sans-serif;
}

/* ブランド2 */

.b_top_brand .brand2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.b_top_brand .brand2-item {
    display: block;
    text-decoration: none;
    color: inherit;
    text-align: center;
    border: 1px solid #D9D9D9;
    padding: 24px 20px;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.b_top_brand .brand2-item:hover {
    opacity: 0.7;
}

.b_top_brand .brand2-item img {
    width: 58%;
    height: auto;
    text-align: center;
    margin: auto;
}

/* VIEW MORE ボタン */

.b_top_brand .brand-viewmore {
    text-align: center;
    margin-top: 60px;
}

.b_top_brand .viewmore-btn {
    display: inline-block;
    width: 250px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid #37373F;
    background: #000000;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Syne", sans-serif;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.b_top_brand .viewmore-btn:hover {
    opacity: 0.7;
}

/* 記事コラム */

.b_top_article {
    color: white;
}

.b_top_article .title {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    text-align: left;
    padding: 0 50px;
    margin-bottom: 50px;
}

.b_top_article .title h2 {
    position: relative;
    padding-right: 30px;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
    text-align: left;
    flex-shrink: 0;
}

.b_top_article .title h2::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: white;
}

.b_top_article .title h2 span {
    font-size: 38px;
    font-weight: 500;
    display: block;
    margin-bottom: 0;
}

.b_top_article .title p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    padding-top: 5px;
}

.b_top_article .articles {
    /* display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; */
    padding: 0 50px;
}

.b_top_article .articles .swiper-wrapper {
    gap: 40px;
}

.b_top_article .articles .swiper-slide {
    width: calc((100% - 80px) / 3);
}

.b_top_article .article {
    display: block;
    text-decoration: none;
    color: white;
    text-align: left;
}

.b_top_article .article img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
}

.b_top_article .article .day {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: "Poppins", sans-serif;
}

.b_top_article .article .title {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    margin-bottom: 0;
    transition: text-decoration 0.3s ease;
}

.b_top_article .article:hover .title {
    text-decoration: underline;
}

.b_top_article .article-viewmore {
    text-align: center;
    margin-top: 40px;
    padding: 0 50px;
}

.b_top_article .viewmore-btn {
    display: inline-block;
    width: 250px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid #FFFFFF;
    background: #FFFFFF;
    color: #000000;
    text-decoration: none;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    font-family: "Syne", sans-serif;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.b_top_article .viewmore-btn:hover {
    opacity: 0.7;
}

/* ブランド説明 */

.b_top_branddesc {
    position: relative;
    padding: 127px 0 102px;
}

.branddesc-container {
    display: flex;
    align-items: center;
    min-height: 400px;
    position: relative;
}

/* 左側エリア */
.branddesc-left {
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    width: 100%;
}

.branddesc-content-inner {
    max-width: 443px;
}

.branddesc-left h3 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 500;
}

.branddesc-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #F9F2F2;
    width: 65.38%;
    margin-left: calc(50% - 50vw);
    z-index: -1;
}

.branddesc-content {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.branddesc-content h2 {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
    text-align: left;
}

.branddesc-content h2 span {
    font-size: 38px;
    font-weight: 500;
    display: block;
}

.branddesc-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #37373F;
    margin-bottom: 20px;
}

.branddesc-content p:last-child {
    margin-bottom: 0;
}

.branddesc-btn {
    margin-top: 80px;
}

.branddesc-btn a {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 17px;
    text-decoration: none;
    transition: all .3s;
}

.branddesc-btn a .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    transition: all .3s;
}

.branddesc-btn a .txt {
    position: relative;
    padding-bottom: 4px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    color: #000;
}

.branddesc-btn a .txt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
}

/* 右側エリア */
.branddesc-right {
    position: absolute;
    right: 0;
    top: 63px;
    width: 48.92%;
    height: 100%;
    z-index: 1;
}

.branddesc-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ショッピングガイド */

.b_top_guide .guide-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 0;
}

.b_top_guide .guide-item {
    text-align: center;
    border-right: 1px solid #000;
    padding: 0 32px;
}

.b_top_guide .guide-item:nth-child(3n) {
    border-right: none;
}

.b_top_guide .guide-item:nth-child(1) {
    border-left: 1px solid #000;
}

.b_top_guide .guide-item:nth-child(3) {
    border-right: 1px solid #000;
}

.b_top_guide .guide-icon {
    margin-bottom: 24px;
}

.b_top_guide .icon-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #7D7D7D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.b_top_guide .icon-circle img {
    width: 64px;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.b_top_guide h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #37373F;
}

.b_top_guide p {
    font-size: 16px;
    line-height: 1.6;
    color: #37373F;
    margin: 0;
}

/* フッターテキストアニメーション */
.footer {
    overflow: hidden;
    color: #37373F;
}

.footer .text1 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    white-space: nowrap;
}

.footer .text2 {
    font-size: 278px;
    font-weight: bold;
    font-family: "Syne", sans-serif;
    line-height: 0.75;
    margin-bottom: 60px;
    position: relative;
    white-space: nowrap;
}

/* タグセクション */
.tag-section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
}

.tag-section .tag {
    display: inline-block;
    background-color: #F4F4F4;
    border-radius: 100px;
    padding: 6px 15px;
    text-decoration: none;
    color: #37373F;
    font-size: 13px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.tag-section .tag:hover {
    opacity: 0.7;
}

.footer hr {
    border: none;
    border-top: 1px solid #D9D9D9;
    margin-top: 30px;
}

.footer .content--wrap {
    padding: 70px 0 55px;
}

/* Footer Content */
.footer-content {
    width: 100%;
    background-color: #F5F5F5;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

}

.footer-content .content--wrap {
    max-width: 1100px;
    margin: 0;
    margin-left: calc((100% - 1100px) / 2);
    display: flex;
    gap: 60px;
    align-items: flex-start;
    font-weight: 500;
}

/* 左ブロック: ブランドリスト */
.footer-left {
    width: 400px;
    flex-shrink: 0;
}

.footer-left h3 {
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #37373F;
}

.brand-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.brand-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.brand-column a {
    text-decoration: none;
    color: #37373F;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.brand-column a:hover {
    opacity: 0.7;
}

/* 中央・右ブロック: カテゴリとコンテンツ */
.footer-center-right {
    display: flex;
    flex-wrap: wrap;
}

.category-section,
.contents-section {
    flex: 1;
}

.category-section h3,
.contents-section h3 {
    font-family: "Syne", sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #37373F;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-list a {
    text-decoration: none;
    color: #37373F;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.category-list a:hover {
    opacity: 0.7;
}

.footer-center-right .toybox-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin-top: 30px;
    width: 100%;
}

.footer-center-right .toybox-image {
    width: 350px;
    height: auto;
}

.footer-center-right .toybox-column h4 {
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #37373F;
}

.footer-center-right .toybox-column p {
    font-size: 12px;
    line-height: 1.8;
    margin: 0;
    color: #37373F;
}

.contents-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;

}

.contents-list a:first-child {
    margin-top: 0;
}

.contents-list a {
    text-decoration: none;
    color: #37373F;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.contents-list a:hover {
    opacity: 0.7;
}

.toybox-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.toybox-image {
    width: 150px;
    height: auto;
}

.toybox-column h4 {
    font-family: "Syne", sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #37373F;
}

.toybox-column p {
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
    color: #37373F;
}

/* SNSアイコンエリア（下部） */
.social-links {
    position: absolute;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    right: 0;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* 各SNSアイコンのサイズ調整 */
.social-link.facebook img {
    width: 20px;

}

.social-link.twitter img {
    width: 18px;

}

.social-link.instagram img {
    width: 22px;

}

.social-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    width: 100%;
    padding: 20px 0 50px 0;
    background-color: #F5F5F5;
}

.footer-bottom .copyright {
    padding: 0;
    font-size: 1rem;
}

.footer-bottom p {
    margin: 4px 0;
    font-size: 13px;
    color: #37373F;
}

.u-pc-none {
    display: none;
}

.sold-out {
    border-radius: 300px;
}

.item-list-cart a {
    display: none;
}

.item-list-system-code {
    display: none;
}


section.item {
    margin: 40px auto 100px;
}


/* 商品一覧 */

.sort-select {
    background-color: #f2f2f2;
    padding: 0px 10px 0px 15px;
    border: none;
}

.child-category-list li a {
    background: #f2f2f2;
    border: none;
    border-radius: 100px;
    padding: 6px 12px;
}

.child-category-list {
    gap: 15px;
    margin-top: 50px;
    max-width: 1100px;
}

.child-category-list {
    margin: 70px auto 70px auto;
}

.item-list-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: 2.8em;
    /* line-heightの2倍 */
}

i[class^="fi-rr-"]:before,
i[class*=" fi-rr-"]:before,
span[class^="fi-rr-"]:before,
span[class*="fi-rr-"]:before {
    line-height: 1.5;
}

.item-list-name a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-list-cart a {
    background: #000000;
    border-radius: 100px !important;
}

/* お客様のレビュー */

.item .item-review {
    grid-column: span 2;
    margin-top: 0;
}

.item-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 27px;
    padding-bottom: 11px;
    border-bottom: solid 1px #37373F;
}

.item-review-head h3 {
    font-size: var(--font-size-display);
    margin-bottom: 0;
}

.item-review-head .item-review-post {
    width: 150px;
}

.item-review-head .item-review-post a {
    background: #000;
    border-radius: 3px;
    height: 41px;
}

.item-review-empty {
    background: #F4F4F4;
    padding: 30px;
    text-align: center;
    font-size: var(--font-size-std);
    font-weight: var(--font-weight-regular);
    margin-bottom: 0;
}



/*商品詳細画像スライダー*/
.item-image-wrap .swiper-button-next svg,
.item-image-wrap .swiper-button-prev svg {
    width: 22px;
    height: 40px;
}

@media(min-width: 768px) {
    /* パンクズ */

    .breadcrumb {
        margin: 40px auto 0;
    }

    .breadcrumb+.breadcrumb {
        margin-top: 9px;
    }

    section.item {
        gap: 60px;
    }


}

/* レスポンシブ対応 */

@media (max-width: 1299px) {
    .search--box input {
        width: 200px;
    }

    .main-nav {
        gap: 20px;
    }
}

@media (max-width: 1099px) {
    .content--wrap {
        padding-inline: 20px;
    }

    /* ヘッダー */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 99;
        display: flex;
        align-items: center;
        padding: 0;
        height: 60px;
    }

    .header-container {
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo a img {
        width: 240px;
    }

    .header-right {
        align-items: flex-start;
    }

    /* メインナビと検索ボックスを非表示 */
    .main-nav {
        display: none;
    }

    .search--box {
        display: none;
    }

    /* モバイルメニューボタンを表示 */
    .mobile-menu-button {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        padding: 0;
        width: 24px;
        height: 24px;
    }

    .mobile-menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        background-color: #37373F;
        border-radius: 5px;
        margin: 4px 0;
        transition: 0.3s;
        transform-origin: center;
    }

    .mobile-menu-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* モバイルメニュー */
    .mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1001;
        max-height: calc(100vh - 60px);
        height: 0;
        overflow-y: auto;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        height: 100vh;
    }

    /* モバイル検索ボックス */
    .mobile-search-box {
        display: flex;
        align-items: center;
        position: relative;
        margin-bottom: 20px;
    }

    .mobile-search-box input {
        padding: 8px 45px 8px 16px;
        border: none;
        border-radius: 100px;
        background: #F2F2F2;
        width: 100%;
        height: 38px;
        font-size: 14px;
        outline: none;
        box-sizing: border-box;
    }

    .mobile-search-box input::placeholder {
        color: #999;
        font-size: 14px;
    }

    .mobile-search-box .search-btn {
        position: absolute;
        right: 17px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-search-box .search-btn::before {
        content: "";
        width: 15.601px;
        height: 15.601px;
        flex-shrink: 0;
        aspect-ratio: 15.60/15.60;
        background-image: url('https://gigaplus.makeshop.jp/beautytoybox/assets/img/search.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
    }

    /* モバイルナビゲーションリンク */
    .mobile-nav-link {
        color: #37373F;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    /* アコーディオン */
    .mobile-nav-accordion {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav-trigger {
        width: 100%;
        background: none;
        border: none;
        color: #37373F;
        font-size: 16px;
        font-weight: 600;
        padding: 12px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        text-align: left;
    }

    .mobile-nav-icon {
        width: 24px;
        height: 24px;
        transition: transform 0.3s ease;
    }

    .mobile-nav-trigger.active .mobile-nav-icon {
        transform: rotate(180deg);
    }

    .mobile-nav-content {
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
    }

    /* ブランドリスト */
    .mobile-nav-brands {
        padding: 10px 0 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
    }

    .mobile-nav-brands-children {}

    .mobile-nav-brands a {
        display: block;
        color: #37373F;
        text-decoration: none;
        font-size: 14px;
        padding: 4px 0;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-brands a:hover {
        opacity: 0.7;
    }

    /* カテゴリーリスト */
    .mobile-nav-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 16px;
        padding: 10px 0 20px;
    }

    .mobile-nav-category {
        margin-bottom: 20px;
    }

    .mobile-nav-category:last-child {
        margin-bottom: 0;
    }

    .mobile-nav-category h4 {
        font-size: 16px;
        font-weight: 700;
        color: #37373F;
        margin: 0 0 12px 0;
    }

    .mobile-nav-category.boldlink h4 {
        /* margin-bottom: 0;
        padding: 4px 0; */
    }

    .mobile-nav-category a {
        color: #37373F;
        text-decoration: none;
        font-size: 14px;
        padding: 4px 0;
        display: block;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-category a:hover {
        opacity: 0.7;
    }

    .mobile-nav-category.boldlink a {
        font-size: 16px;
        font-weight: 700;
        color: #37373F;
    }

    /* お悩み・部位リスト */
    .mobile-nav-concerns {
        padding: 10px 0 20px;
    }

    .mobile-nav-concerns a {
        color: #37373F;
        text-decoration: none;
        font-size: 14px;
        padding: 8px 0;
        display: block;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-concerns a:hover {
        opacity: 0.7;
    }

    .mobile-nav-other {
        margin-top: 25px;
    }

    .mobile-nav-other a {
        display: block;
        color: #37373F;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        padding: 8px 0;
        display: block;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-nav .toybox-column {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 30px;
        text-align: left;
    }

    .mobile-menu-nav .toybox-image {
        width: 100%;
        max-width: 349px;
        border: solid 1px #D7D7D7;
    }

    .mobile-menu-nav .toybox-column p {
        font-size: 12px;
        line-height: 2;
        margin: 0;
        color: #37373F;
    }

    .mobile-menu-nav .social-links {
        position: static;
        transform: none;
        display: flex;
        justify-content: flex-start;
        gap: 16px;
        margin-top: 21px;
    }

    .mobile-menu-nav .social-link {
        border: solid 1px #D9D9D9;
        border-radius: 50%;
    }


    /* フッター */
    .footer .text1 {
        font-size: 36px;
    }

    .footer .text2 {
        font-size: 240px;
    }

    .footer-content .content--wrap {
        gap: 50px;
        padding: 60px 15px 70px;
        margin-left: 0;
    }

    .footer-left {
        width: 380px;
    }

    .footer-left h3,
    .category-section h3,
    .contents-section h3 {
        font-size: 17px;
    }

    .brand-column a,
    .category-list a,
    .contents-list a {
        font-size: 13px;
    }

    .footer-center-right .toybox-column p {
        font-size: 11px;
    }

    .social-links {
        gap: 18px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .b_top_topics .topics>div {
        width: calc((100% - 60px) / 4);
        min-width: auto;
        flex: auto;
    }

    /* ピックアップとランキングのprice-rowレスポンシブ対応 */
    /* .b_top_pickup .swiper-slide a,
    .b_top_ranking .ranking-item {
        display: flex;
        flex-direction: column;
    }
    
    .b_top_pickup .price-row,
    .b_top_ranking .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-top: auto;
    }
    
    .b_top_pickup .price-row:has(.free-shipping),
    .b_top_ranking .price-row:has(.free-shipping) {
        justify-content: flex-start;
    }
    
    .b_top_pickup .price-row:not(:has(.free-shipping)),
    .b_top_ranking .price-row:not(:has(.free-shipping)) {
        justify-content: flex-start;
    } */
}

/* タブレット */
@media (max-width: 1024px) {
    .content--wrap {
        padding: 50px 20px 60px;
    }

    /* ヘッダー */
    .header {
        padding: 16px 0;
    }

    .header-container {
        padding: 0 15px;
    }

    .logo a img {
        width: 220px;
    }

    .main-nav {
        gap: 25px;
    }

    .nav-link {
        font-size: 12px;
    }

    .search--box input {
        width: 220px;
        height: 34px;
        font-size: 12px;
        padding: 6px 40px 6px 14px;
    }

    .header-icons {
        gap: 15px;
    }

    /* ドロップダウンメニュー */
    .dropdown-inner {
        padding: 30px 20px;
    }

    .dropdown-brands {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    /* トピックス */

    /* カテゴリー */
    .b_top_category .category--item {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px 20px;
    }

    /* ランキング */
    .b_top_ranking .ranking-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }

    /* ブランド */
    .b_top_brand .brand2-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* ブランド説明 */
    .b_top_branddesc {
        padding: 0 0 32px;
    }

    .branddesc-container {
        flex-direction: column;
    }

    .branddesc-left {
        order: 2;
        top: -40px;
        z-index: 2;
        width: calc(100% - 30px);
        padding-bottom: 53px;
        margin-bottom: -40px;
    }

    .branddesc-left::before {
        width: 100%;
        margin-left: 0;
    }

    .branddesc-left h3 {
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 18px;
    }

    .branddesc-right {
        order: 1;
        position: static;
        width: 100%;
        max-height: 500px;
        overflow: hidden;
    }


    /* 記事コラム */
    .b_top_article .title {
        padding: 0 20px;
        margin-bottom: 10px;
    }

    .b_top_article .articles {
        padding: 0 20px;
    }

    .b_top_article .article-viewmore {
        padding: 0 20px;
    }

    /* フッター */
    .footer .text1 {
        font-size: 32px;
    }

    .footer .text2 {
        font-size: 200px;
    }

    .footer-content .content--wrap {
        gap: 35px;
        padding: 45px 20px 55px;
    }

    .footer-left {
        width: 320px;
    }

    .footer-left h3,
    .category-section h3,
    .contents-section h3 {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .brand-column a,
    .category-list a,
    .contents-list a {
        font-size: 12px;
    }

    .footer-center-right .toybox-image {
        width: 300px;
    }

    .social-links {
        gap: 16px;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .social-link img {
        width: 20px;
        height: 20px;
    }
    /* ピックアップ ナビゲーションボタン */
    .pickup-container .pickup-swiper-button-next,
    .pickup-container .pickup-swiper-button-prev {
        top: 15vw;
    }
}

/* スマートフォン */
@media (max-width: 768px) {
    .content--wrap {
        padding: 40px 15px 50px;
    }

    .content--wrap h2 {
        margin-bottom: 30px;
    }

    /* ヘッダー */
    .header {
        padding: 15px 0;
    }

    .header-container {
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        margin-right: 0;
    }

    .logo a {
        font-size: 20px;
    }

    .logo a img {
        width: 217px;
    }


    .header-icons {
        gap: 15px;
    }

    /* メインビジュアル */
    .head-mainimg {
        margin-bottom: 26px;
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal.head-mainimg-pagination {
        min-width: auto;
    }

    .head-mainimg-navigation {
        justify-content: space-between;
        margin-bottom: 14px;
    }


    /* トピックス */

    .b_top_topics .topics>div {
        width: calc(50% - 30px);
        min-width: unset;
    }

    /* ピックアップ */
    .b_top_pickup .pickup-container {
        padding-left: 15px;
        margin-left: 0;
    }

    .pickup-swiper-button-next,
    .pickup-swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .pickup-swiper-button-next:after,
    .pickup-swiper-button-prev:after {
        font-size: 14px;
    }

    .pickup-swiper-button-next {
        right: 10px;
    }

    .pickup-swiper-button-prev {
        left: 10px;
    }

    /* カテゴリー */
    .b_top_category .category-tabs {
        flex-wrap: wrap;
        margin: 30px auto 40px auto;
    }

    .b_top_category .tab-button {
        font-size: 13px;
        padding: 12px 15px;
    }

    .b_top_category .category--item {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    /* ランキング */
    .b_top_ranking {
        overflow: hidden;
    }

    .b_top_ranking .ranking-grid-wrapper {
        overflow-x: scroll;

    }

    .b_top_ranking .ranking-grid {
        /* width: 630px; */
        width: 168vw;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 25px 15px;
    }

    .b_top_ranking .ranking-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .b_top_ranking .ranking-item:nth-child(1) {
        grid-area: 1 / 1;
    }

    .b_top_ranking .ranking-item:nth-child(2) {
        grid-area: 1 / 2;
    }

    .b_top_ranking .ranking-item:nth-child(3) {
        grid-area: 2 / 1;
    }

    .b_top_ranking .ranking-item:nth-child(4) {
        grid-area: 2 / 2;
    }

    .b_top_ranking .ranking-item:nth-child(5) {
        grid-area: 1 / 3;
    }

    .b_top_ranking .ranking-item:nth-child(6) {
        grid-area: 1 / 4;
    }

    .b_top_ranking .ranking-item:nth-child(7) {
        grid-area: 2 / 3;
    }

    .b_top_ranking .ranking-item:nth-child(8) {
        grid-area: 2 / 4;
    }

    .b_top_ranking .brand,
    .b_top_ranking .item-name,
    .b_top_ranking .free-shipping,
    .b_top_ranking .spec,
    .b_top_ranking .unit {
        font-size: 10px;
    }

    .b_top_ranking .price {
        font-size: 11px;
    }

    .b_top_ranking .rank-number {
        width: 27px;
        height: 27px;
        font-size: 12px;
        top: 10px;
        left: 10px;
    }

    .b_top_ranking .price-row {
        flex-direction: column;
        align-items: flex-start;
    }

    /* ブランド */
    .b_top_brand .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 0;
    }

    .b_top_brand .brand-item {
        padding: 0;
        border-right: none;
    }

    .b_top_brand .brand-item:nth-child(1),
    .b_top_brand .brand-item:nth-child(3),
    .b_top_brand .brand-item:nth-child(4),
    .b_top_brand .brand-item:nth-child(6) {
        border-left: none;
        border-right: none;
    }



    .b_top_brand .brand-item:nth-child(odd) {
        border-right: 1px solid #000;
        padding-right: 20px;
    }

    .b_top_brand .brand-item:nth-child(even) {
        padding-left: 20px;
    }

    .b_top_brand .brand2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .b_top_brand .brand-item img {
        margin-bottom: 5px;
    }

    .b_top_brand .brand-name {
        font-size: 10px;
    }

    /* 記事コラム */
    .b_top_article {
        padding: 20px 0 10px;
    }

    .b_top_article .title {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .b_top_article .title h2::after {
        display: none;
    }

    .b_top_article .title p {
        font-size: 12px;
        text-align: left;
    }

    .b_top_article .articles {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    /* articlesのSwiper対応（768px以下） */
    .b_top_article .articles.swiper {
        padding: 0;
    }

    .b_top_article .articles .swiper-wrapper {
        padding: 0 15px;
        gap: 0;
    }

    .b_top_article .articles .swiper-slide {
        width: auto;
    }

    .b_top_article .article-viewmore {
        padding: 0 15px;
        margin-top: 0;
    }


    /* ブランド詳細 */
    .branddesc-right {
        max-height: none;
        width: 100%;
        aspect-ratio: 1273 / 1672;
        overflow: hidden;
    }

    .branddesc-btn {
        margin-top: 60px;
    }

    .branddesc-btn a {
        justify-content: flex-start;
    }

    /* ショッピングガイド */
    .b_top_guide .guide-section {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .b_top_guide .guide-item {
        border-right: none !important;
        border-left: none !important;
        border-top: 1px solid #000;
        padding: 23px 0;
        display: flex;
        align-items: center;
        gap: 23px;
    }

    .b_top_guide .guide-item:last-child {
        border-bottom: 1px solid #000;
    }

    .b_top_guide .guide-icon {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .b_top_guide .guide-description {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .b_top_guide h3 {
        font-size: 16px;
        margin: 0;
    }

    .b_top_guide p {
        font-size: 14px;
        line-height: 1.5;
        margin-top: 8px;
        text-align: left;
    }

    .b_top_guide .icon-circle {
        width: 92px;
        height: 92px;
    }

    .b_top_guide .icon-circle img {
        width: 48px;
    }

    /* フッター */

    .footer .text1 {
        font-size: 28px;
    }

    .footer .text2 {
        font-size: 120px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer .content--wrap {
        padding: 35px 0 68px;
    }

    .footer-content .content--wrap {
        flex-direction: column;
        gap: 30px;
        margin-left: 0;
        padding: 50px 15px 0;
    }

    .footer-left {
        display: none;
        width: 100%;
    }

    .footer-center-right .category-section {
        display: none;
    }

    .brand-list {
        grid-template-columns: 1fr;
    }

    .footer-center-right {
        width: 100%;
    }

    .footer-center-right .toybox-image {
        width: 100%;
        max-width: 349px;
    }

    .footer-center-right .toybox-column {
        margin-top: 9px;
    }

    .social-links {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 30px;
        padding-left: 15px;
    }

    .footer-bottom {
        padding: 20px 15px 60px;
    }

    .footer-bottom p {
        text-align: left;
        line-height: 1.2;
    }

    .footer-bottom .copyright {
        margin: 30px 0 0;
        font-size: 18px;
    }

    .tag-section {
        justify-content: flex-start;
        padding-inline: 15px;
    }

    .u-pc-none {
        display: block;
    }


    .news-swiper-container {
        margin-top: 55px;
    }

    .breadcrumb {
        margin-top: 20px;
    }

    section.item {
        margin: 0 auto 40px;
    }

    /* ピックアップ ナビゲーションボタン */
    .pickup-container .pickup-swiper-button-next,
    .pickup-container .pickup-swiper-button-prev {
        top: 38vw;
    }

}

/* 小さなスマートフォン */
@media (max-width: 480px) {

    .content--wrap h2 span {
        font-size: 28px;
    }

    /* ヘッダー */
    .logo a {
        font-size: 18px;
    }

    /* ピックアップ */
    .b_top_pickup .pickup-container {
        padding-left: 10px;
    }

    .pickup-swiper-button-next,
    .pickup-swiper-button-prev {
        width: 32px;
        height: 32px;
    }

    .pickup-swiper-button-next:after,
    .pickup-swiper-button-prev:after {
        font-size: 12px;
    }

    .pickup-swiper-button-next {
        right: 5px;
    }

    .pickup-swiper-button-prev {
        left: 5px;
    }

    /* カテゴリー */
    .b_top_category .tab-button {
        font-size: 12px;
        padding: 10px 8px;
    }

    /* ランキング */
    .b_top_ranking .ranking-grid {
        gap: 17px;
    }

    /* フッター */
    .footer .text1 {
        font-size: 20px;
    }

    .footer .text2 {
        font-size: 80px;
    }

    /* お客様のレビュー */
    .item .item-review {
        margin-top: 40px;
    }

    .item-review-head h3 {
        font-size: var(--font-size-medium);
    }

    .item-review-post a {
        height: 36px;
        font-size: var(--font-size-small);
    }

    .item-review-empty {
        font-size: var(--font-size-small);
    }


}

/* ハンバーガーメニューを非表示（デフォルト） */
@media (min-width: 1100px) {
    .mobile-menu-button {
        display: none;
    }

    .mobile-menu {
        display: none;
    }
}