/* ==========================================
   トップスライダー
   ========================================== */

/* トップスライダーのコンテナ */
.top-slider-container {
    /* max-width: 1280px; */
    margin: 0 auto;
    padding: 0 20px;
}

/* Splide設定 */
.splide {
    padding: 0; /* 左右のピーキング用余白（メイン2枚を中央に配置）*/
}

.splide__track {
    overflow: visible; /* ピーキング表示のため */
}

.splide__slide {
    /* opacity: 0.4; 非アクティブスライドの透明度 */
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    /* border-radius: 8px; */
}

.splide__slide.is-active {
    opacity: 1; /* アクティブスライドは完全不透明 */
    /* transform: scale(1); アクティブスライドは通常サイズ */
}

/* 非アクティブスライドを少し小さく */
.splide__slide:not(.is-active) {
    /* transform: scale(0.9); */
}

/* スライド画像 */
.slide-image {
    width: 100%;
    height: auto; /* 画像本来のアスペクト比を維持 */
    object-fit: contain; /* 画像が切り取られないように */
    display: block;
    transition: transform 0.3s ease;
    /* background-color: #f5f5f5; 背景色を設定 */
}

.slide-link:hover .slide-image {
    /* transform: scale(1.05); */
}

.slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* スライド内容 */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 20px;
}

.slide-title {
    font-size: 1.2rem;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    font-weight: bold;
    margin-bottom: 5px;
}

.slide-description {
    font-size: 0.9rem;
    font-size: clamp(0.8rem, 0.94vw, 0.9rem);
    opacity: 0.9;
}

/* レスポンシブ対応 */
@media (max-width: 750px) {
    .top-slider-container {
        /* padding: 0 10px; */
    }
    
    .splide {
       /*  padding: 0 10%; スマホ時の左右余白を調整 */
    }


    .slide-content {
        padding: 15px;
    }
    

}

@media (max-width: 480px) {
    .splide {
       /*  padding: 0 8%; より小さい画面での余白調整 */
    }

}

/* ==========================================
   特集セクション
   ========================================== */

/* 特集セクション全体 */
.featured-section {
    padding: 80px 0;
    padding: clamp(50px, 5.71vw, 80px) 0;
}

/* 特集グリッドコンテナ */
.featured-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    gap: clamp(15px, 2.14vw, 30px);
    justify-content: flex-start;
}

/* 特集アイテム */
.featured-item {
    width: calc((100% - (clamp(15px, 2.14vw, 30px)*2)) / 3);
    margin-bottom: 40px;
    margin-bottom: clamp(30px, 2.86vw, 40px);
}

/* 特集アイテムリンク */
.featured-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 特集画像 */
.featured-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
    margin-bottom: clamp(12px, 1.07vw, 15px);
}

/* 特集テキストエリア */
.featured-content {
    text-align: left;
}

/* 特集アイテムタイトル */
.featured-title {
    font-size: 1.8rem;
    font-size: clamp(1.5rem, 1.29vw, 1.8rem);
    color: var(--text-color);
    font-weight: normal;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* 特集説明文 */
.featured-description {
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 1.14vw, 1.6rem);
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 750px) {
    .featured-section {
        padding: 50px 0;
        padding: clamp(40px, 13.33vw, 50px) 0;
    }
    
    .featured-grid {
        gap: 10px;
    }
    
    .featured-item {
        width: calc((100% - 10px) / 2);
        margin-bottom: 30px;
        margin-bottom: clamp(25px, 8vw, 30px);
    }
    
    .featured-image {
        margin-bottom: 10px;
        margin-bottom: clamp(8px, 2.67vw, 10px);
    }
    
    .featured-title {
        font-size: 1.6rem;
        font-size: clamp(1.4rem, 4.27vw, 1.6rem);
        margin-bottom: 6px;
    }
    
    .featured-description {
        font-size: 1.4rem;
        font-size: clamp(1.2rem, 3.73vw, 1.4rem);
    }
}

/* ==========================================
   ランキングセクション
   ========================================== */

/* ランキングセクション全体 */
.ranking-section {
    padding: 80px 0;
    padding: clamp(50px, 6.25vw, 80px) 0;
    background-color: var(--background-color);
}

/* ランキングスライダーラッパー */
.ranking-slider-wrapper {
    position: relative;
    padding: 0 0 0 3%;
}

/* ランキングスライダー設定 */
#ranking-slider.splide {
    padding: 0; /* 内部でpaddingを設定 */
}
#ranking-slider .splide__slide{
    overflow: visible;
}

#ranking-slider .splide__track {
    overflow: visible; /* はみ出し表示のため */
}

#ranking-slider .splide__slide {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ランキングアイテム */
.ranking-item {
    position: relative;
    background-color: white;
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
    /* overflow: hidden; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.ranking-item:hover {
    /* transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
}

/* ランキング番号 */
.ranking-item::before {
    content: attr(data-rank);
    position: absolute;
    top: -2%;
    left: 12px;
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-size: clamp(2rem, 1.875vw, 2.4rem);
    font-weight: bold;
    color: white;

}

/* ランキング番号の色分け */
.ranking-item[data-rank="1"]::before {
    background-color: #CC9900;
}

.ranking-item[data-rank="2"]::before {
    background-color: #ACABA6;
}

.ranking-item[data-rank="3"]::before {
    background-color: #CC5F00;
}

.ranking-item[data-rank="4"]::before,
.ranking-item[data-rank="5"]::before,
.ranking-item[data-rank="6"]::before {
    background-color: #333333;
}

/* ランキングリンク */
.ranking-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* ランキング画像ラッパー */
.ranking-image-wrapper {
    position: relative;
    width: 100%;
    /* overflow: hidden; */
}

/* ランキング画像 */
.ranking-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ranking-link:hover .ranking-image {
    transform: scale(1.05);
}

/* 産地表示 */
.ranking-origin {
    position: absolute;
    top: -2%;
    right: 12px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    padding: 0 4px;
    font-size: 1.8rem;
    font-size: clamp(1.6rem, 1.6vw, 1.8rem);
    font-weight: bold;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 1;
    min-height: clamp(60px, 7.81vw, 100px);
}
span.ranking-origin-text {
    border-left: 1px solid var(--text-color);
    border-right: 1px solid var(--text-color);
    /* height: 100%; */
    display: block;
    padding: 10px 4px;
    text-align: center;
}
/* ランキングコンテンツエリア */
.ranking-content {
    padding: 20px 0;
    padding: clamp(15px, 1.56vw, 20px) 0;
}

/* 商品名 */
.ranking-product-name {
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 1.25vw, 1.6rem);
    color: var(--text-color);
    font-weight: normal;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

/* 価格 */
.ranking-price {
    font-size: 1.8rem;
    font-size: clamp(1.6rem, 1.4vw, 1.8rem);
    margin-bottom: 12px;
    margin-bottom: clamp(10px, 0.94vw, 12px);
}

.ranking-tax {
    font-size: 1.3rem;
    font-size: clamp(1.2rem, 1.02vw, 1.3rem);
    color: #666666;
    font-weight: normal;
    margin-left: 8px;
}

/* タグエリア */
.ranking-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.ranking-tag {
    display: inline-block;
    font-size: 1.1rem;
    font-size: clamp(1rem, 0.86vw, 1.1rem);
    color: var(--text-color);
    border: 1px solid var(--graycolor);
    border-radius: 12px;
    padding: 4px 8px;
    white-space: nowrap;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* ==========================================
   ランキングスライダー矢印
   ※矢印を非表示にしたい場合は、下記のスタイルブロック全体を
   コメントアウトし、ranking.htmlの arrows: true を false に変更
   ========================================== */

/* 矢印共通スタイル */
#ranking-slider .splide__arrow {
    background-color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    opacity: 1;
    transition: opacity 0.3s ease;
    border: none;
}

#ranking-slider .splide__arrow:hover {
    opacity: 0.7;
}

#ranking-slider .splide__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* 矢印のSVG（くの字部分）を白色に */
#ranking-slider .splide__arrow svg {
    fill: #ffffff;
    width: 12px;
    height: 12px;
}

/* 左矢印の位置 */
#ranking-slider .splide__arrow--prev {
    left: 10px;
    left: -3%;
}

/* 右矢印の位置 */
#ranking-slider .splide__arrow--next {
    right: 10px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 980px) {
    .ranking-slider-wrapper {
        padding: 0 45px; /* タブレット用のスペース */
    }
    
    #ranking-slider .splide__arrow--prev {
        left: 8px;
    }
    
    #ranking-slider .splide__arrow--next {
        right: 8px;
    }
}

@media screen and (max-width: 750px) {
    .ranking-slider-wrapper {
        padding: 0 40px; /* スマホ用のスペース */
    }
    
    #ranking-slider .splide__arrow {
        width: 28px;
        height: 28px;
    }
    
    #ranking-slider .splide__arrow svg {
        width: 10px;
        height: 10px;
    }
    
    #ranking-slider .splide__arrow--prev {
        left: 6px;
    }
    
    #ranking-slider .splide__arrow--next {
        right: 6px;
    }
}

@media screen and (max-width: 480px) {
    .ranking-slider-wrapper {
        padding: 0px; /* 小画面スマホ用のスペース */
    }
    
    #ranking-slider .splide__arrow {
        width: 26px;
        height: 26px;
    }
    
    #ranking-slider .splide__arrow--prev {
        left: 5px;
    }
    
    #ranking-slider .splide__arrow--next {
        right: 5px;
    }
}

/* ページネーション */
.ranking-pagination-wrapper {
    margin-top: 30px;
    margin-top: clamp(20px, 2.34vw, 30px);

    display: flex;
    justify-content: center;
}

.ranking-pagination {
    display: flex;
    align-items: center;
    background-color: var(--graycolor2);
    width: clamp(200px, 42.86vw, 600px);
}

.ranking-pagination-dot {
    width: clamp(60px, 7.14vw, 100px);
    height: 8px;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
}
.ranking-pagination-dot.active {
    background-color: #D4D4D4;
}

/* レスポンシブ対応 */
@media screen and (max-width: 980px) {
    .ranking-section {
        padding: 60px 0;
        padding: clamp(50px, 6.25vw, 60px) 0;
    }
    
    .ranking-item::before {
        width: 45px;
        height: 45px;
        font-size: 2.2rem;
        font-size: clamp(1.8rem, 2.2vw, 2.2rem);
        /* top: 10px; */
        left: 10px;
    }
    
    .ranking-image-wrapper {
        /* height: 180px;
        height: clamp(160px, 18vw, 180px); */
    }
    
    .ranking-origin {
        font-size: 1.3rem;
        font-size: clamp(1.3rem, 3.47vw, 1.6rem);
        padding: 0px 3px;
        /* top: 10px; */
        right: 10px;
    }
    
    .ranking-pagination-wrapper {
        margin-top: 25px;
        margin-top: clamp(18px, 2.5vw, 25px);
    }
    
    .ranking-pagination-dot {
        /* width: 10px;
        height: 10px; */
    }
}
@media screen and (min-width: 981px) {
    .ranking-slider-block {
        margin-left: 10%;
        margin-right: 0; /* 右側にも余白を追加（右寄せを維持） */
        overflow: hidden;
        padding-top: 1%;
    }
}
@media screen and (max-width: 980px) {
    .ranking-slider-block {
        margin-left: 20px;
        margin-right: 20px; /* 中央寄せにするため左右同じ値 */
        overflow: hidden;
        padding-top: 4%;
    }
}
@media screen and (max-width: 750px) {
    .ranking-section {
        padding: 50px 0;
        padding: clamp(40px, 13.33vw, 50px) 0;
    }
    
    .ranking-item::before {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        font-size: clamp(1.6rem, 4.8vw, 1.8rem);
        /* top: 8px; */
        left: 8px;
    }
    
    .ranking-image-wrapper {
        /* height: 160px;
        height: clamp(140px, 42.7vw, 160px); */
    }
    
    .ranking-content {
        padding: 15px 0;
        padding: clamp(12px, 4vw, 15px) 0;
    }
    
    .ranking-product-name {
        font-size: 1.4rem;
        font-size: clamp(1.2rem, 3.7vw, 1.4rem);
        margin-bottom: 6px;
    }
    
    .ranking-price {
        font-size: 1.6rem;
        font-size: clamp(1.4rem, 4.3vw, 1.6rem);
        margin-bottom: 10px;
        margin-bottom: clamp(8px, 2.7vw, 10px);
    }
    
    .ranking-tax {
        font-size: 1.2rem;
        font-size: clamp(1.1rem, 3.2vw, 1.2rem);
        margin-left: 6px;
    }
    
    .ranking-tag {
        font-size: 1rem;
        font-size: clamp(0.9rem, 2.7vw, 1rem);
        padding: 3px 6px;
        border-radius: 10px;
    }
    
    .ranking-origin {
        /* font-size: 1rem;
        font-size: clamp(0.9rem, 2.7vw, 1rem); */
        padding: 0 2px;
        /* top: 8px; */
        right: 8px;
    }
    
    .ranking-pagination-wrapper {
        margin-top: 20px;
        margin-top: clamp(15px, 5.3vw, 20px);
    }
    
    .ranking-pagination {
        /* gap: 6px; */
    }
    
    .ranking-pagination-dot {
        /* width: 8px;
        height: 8px; */
    }
}

@media screen and (max-width: 480px) {
    .ranking-image-wrapper {
        /* height: 140px;
        height: clamp(120px, 37.3vw, 140px); */
    }
    
    .ranking-tags {
        gap: 4px;
    }
}

/* ==========================================
   カテゴリセクション
   ========================================== */

/* カテゴリセクション全体 */
.category-section {
    background-color: var(--subbackground-color);
    padding: 80px 0;
    padding: clamp(50px, 6.25vw, 80px) 0;
}

/* カテゴリグリッドコンテナ */
.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 1px;
    gap: clamp(15px, 2.34vw, 30px) 1px;
    justify-content: flex-start;
    margin-bottom: 60px;
    margin-bottom: clamp(40px, 4.69vw, 60px);
}

/* カテゴリアイテム */
.category-item {
    width: calc((100% - 1px * 4) / 5);
    text-align: center;
}

/* カテゴリアイテムリンク */
.category-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.category-link:hover {
    /* transform: translateY(-5px); */
}

/* カテゴリ画像ラッパー */
.category-image-wrapper {
    width: 100%;
    margin-bottom: 15px;
    margin-bottom: clamp(10px, 1.17vw, 15px);
    overflow: hidden;
}

/* カテゴリ画像 */
.category-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-link:hover .category-image {
    transform: scale(1.05);
}

/* カテゴリ名 */
.category-name {
    font-size: 1.4rem;
    font-size: clamp(1.2rem, 1.09vw, 1.4rem);
    color: var(--text-color);
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* CTAボタンエリア */
.category-cta {
    text-align: center;
}

/* CTAボタン（ゴーストボタンスタイル） */
.category-cta-button {
    display: inline-block;
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 1.25vw, 1.6rem);
    color: var(--text-color);
    text-decoration: none;
    padding: 15px 40px;
    padding: clamp(12px, 1.17vw, 15px) clamp(30px, 3.13vw, 40px);
    border: 1px solid var(--text-color);
    transition: all 0.3s ease;
    font-weight: normal;
    letter-spacing: 0.17em;
}

.category-cta-button:hover {
    background-color: var(--text-color);
    color: var(--subbackground-color);
    transform: translateY(-2px);
    opacity: 1;
}

/* タブレット対応（981px〜751px） */
@media screen and (max-width: 980px) and (min-width: 751px) {
    .category-grid {
        gap: 20px;
        gap: clamp(10px, 2.34vw, 20px) 1px;
    }
    
    .category-item {
        width: calc((100% - 1px * 2) / 3);
    }
}

/* スマホ対応（750px以下） */
@media screen and (max-width: 750px) {
    .category-section {
        padding: 50px 0;
        padding: clamp(40px, 13.33vw, 50px) 0;
    }
    
    .category-grid {
        gap: 15px;
        gap: clamp(10px, 4vw, 15px) 1px;
        margin-bottom: 40px;
        margin-bottom: clamp(30px, 10.67vw, 40px) 1px;
    }
    
    .category-item {
        width: calc((100% - 1px ) / 2);
    }
    
    .category-image-wrapper {
        margin-bottom: 8px;
        margin-bottom: clamp(6px, 2.13vw, 8px);
    }
    
    .category-name {
        font-size: 1.3rem;
        font-size: clamp(1.1rem, 3.47vw, 1.3rem);
    }
    
    .category-cta-button {
        font-size: 1.5rem;
        font-size: clamp(1.3rem, 4vw, 1.5rem);
        padding: 12px 30px;
        padding: clamp(10px, 3.2vw, 12px) clamp(25px, 8vw, 30px);
    }
}

/* ==========================================
   トップページバナー画像
   ========================================== */
   .top-banner-section{
    margin-bottom: 70px;
   }

   @media screen and (max-width: 750px) {
    .top-banner-section{
        margin-bottom: 40px;
       }
   }

/* ==========================================
   お知らせセクション
   ========================================== */
div#news-block {
    background-color: var(--graycolor2);
    padding: 50px 0;
}
.news-wraper {
    display: flex;

}
.news-wraper .section-title {
    width: 260px;
    width: clamp(200px, 20.83vw, 260px);
    text-align: left;
    margin-bottom: 0;
}
.news-wraper ul.fs-p-dateList {
    width: calc(100% - clamp(200px, 20.83vw, 260px));
}

.news-wraper ul.fs-p-dateList span.newstime {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: normal;
    display: inline-block;
    margin-right: 25px;
}
.news-wraper .fs-p-dateList > li{
    border: none;
    padding: 5px 0;
    font-size: 1.4rem;
}
@media screen and (max-width: 750px) {
    .news-wraper{
        flex-direction: column;
        gap: 20px;
    }
    .news-wraper .section-title {
        width: 100%;
        text-align: center;
    }
    .news-wraper ul.fs-p-dateList {
        width: 100%;
    }
    .news-wraper ul.fs-p-dateList span.newstime {
        display: block;
        margin-bottom: 10px;
    }
}

/* ==========================================
   ギフトページセクション
========================================== */

/* FVセクション */
.gift-fv-content {
    position: relative;
    margin-top: 40px;
}
.gift-fv-content .fv-catch {
    position: absolute;
    top: 8%;
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
    left: 9%;
}
.gift-fv-content h1.fv-title {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 30px;
    font-size: clamp(19px, 2.34vw, 30px);
    color: #FFF;
    letter-spacing: -0.1em;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
    margin: 0;
}
.gift-fv-content h1.fv-title span.fv-title-sub {
    font-size: 54px;
    font-size: clamp(25px, 4.22vw, 54px);
    letter-spacing: -0.3em;
}
.gift-fv-content p.fv-description {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 18px;
    font-size: clamp(12px, 1.41vw, 18px);
    color: #FFF;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}
.gift-fv-content .fv-text-info {
    position: absolute;
    color: #6CBA04;
    top: 20px;
    right: 20px;
    font-size: 16px;
    font-size: clamp(11px, 1.25vw, 16px);
}
.gift-fv-content .fv-text-info p {
    margin: 0;
}

@media screen and (max-width: 750px) {
    .gift-fv-section .inner{
        padding: 0;
    }
    .gift-fv-content {
        aspect-ratio: 4 / 3;
        overflow: hidden;
    }
    img.gift-fv-bg{
        object-fit: cover;
        width: 100%;
        height: 100%;
        object-position: left center;
    }
    .gift-fv-content .fv-catch {
        left: 5%;
        gap: 15px;
    }
    .gift-fv-content h1.fv-title {
        font-size: 25px;
        font-size: clamp(19px, 6.67vw, 30px);
        text-shadow: 1px 1px 6px rgb(0 0 0 / 86%);
    }
    .gift-fv-content h1.fv-title span.fv-title-sub {
        font-size: 38px;
        font-size: clamp(19px, 10.13vw, 54px);
    }
    .gift-fv-content p.fv-description{
        font-size: 14px;
        font-size: clamp(12px, 3.73vw, 18px);
        text-shadow: 1px 1px 6px rgb(0 0 0 / 86%);
    }
    .gift-fv-content .fv-text-info {
        color: #FFF;
        top: 10px;
        right: 10px;
        font-size: 12px;
        font-size: clamp(11px, 3.2vw, 16px);
        text-shadow: 1px 1px 6px rgb(0 0 0 / 86%);
    }
    

}
/* --- iOS Safari専用の保険的対応 --- */
@supports (-webkit-touch-callout: none) {
    .gift-fv-content h1.fv-title,
    .gift-fv-content h1.fv-title span.fv-title-sub {
      letter-spacing: 0;
    }
  }
  
  /* --- Android向けの追加保険（必要なら） --- */
  @media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 0) {
    .gift-fv-content h1.fv-title,
    .gift-fv-content h1.fv-title span.fv-title-sub {
      letter-spacing: 0;
    }
  }
/* テキストセクション */
.gift-text-section {
    padding: 80px 0;
    padding: clamp(50px, 6.25vw, 80px) 0 clamp(100px, 19.53vw, 300px);
}
.gift-text-section .inner {
    position: relative;
}
.gift-text-img {
    position: absolute;
    max-width: 50%;
    top:0;
}
.gift-text-img.image01 {
    width: 40%;
    max-width: 284px;
    left: 0;
}
.gift-text-img.image02 {
    width: 20%;
    max-width: 170px;
    left: 15%;
    top: 88%;
}
.gift-text-img.image03 {
    width: 30%;
    max-width: 247px;
    right: 0;
    top: -13%;
}
.gift-text-img.image04 {
    width: 30%;
    max-width: 129px;
    right: 20%;
    top: 100%;
}
.gift-text-content p {
    text-align: center;
    line-height: 4;
    margin: 0;
    font-size: clamp(1.2rem, 1.25vw, 16px);
}
@media screen and (max-width: 1000px) {
    .gift-text-img.image01 {
        width: 23%;
        left: 0;
    }
    .gift-text-img.image02{
        width: 17%;
        left: 10%;
        top: 71%;
    }
    .gift-text-img.image03 {
        width: 25%;
    }
    .gift-text-img.image04 {
        width: 30%;
        right: 13%;
        top: 106%;
    }
}
@media screen and (max-width: 750px) {
    .gift-text-section .inner{
        display: flex;
        gap: 20px;
        flex-direction: column;
        padding-bottom: 30px;
    }
    .gift-text-img-wrapper {
        width: 100%;
    }
    .gift-text-section {
        padding: 0;
    }
    .gift-text-content {
        margin-top: 15px;
    }
    .gift-text-content p{
        text-align: left;
        line-height: 3;
        margin: 0;
        font-size: 14px;
    }
    .gift-text-img.image01{
        top: 0;
    }
    .gift-text-img.image01,.gift-text-img.image02,.gift-text-img.image03,.gift-text-img.image04{
        width: 100%;
        max-width: 100%;
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        font-size: 0;
    }
}


/* 検索フォームセクション */
.cc-searchbox-wrapper {
    padding: 80px 0;
    padding: clamp(50px, 6.25vw, 80px) 0;
}
.search-box-wrap {
    width: 100%;
    justify-content: center;
    gap: 60px;
    gap: clamp(40px, 3.13vw, 60px);
    position: relative;
}
.search-box-item {
    width: 40%;
    width: calc((100% - clamp(40px, 3.13vw, 60px)) / 2);
    max-width: 340px;
    position: relative;
}
.search-box-item select {
    height: 40px;
    text-align: center;
    padding-right: 11%;
}
.search-box-item::after {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border-top: 2px solid #333333;
    border-right: 2px solid #333333;
    transform: rotate(135deg);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 4%;
    pointer-events: none;
}
.search-box-and-icon {
    position: absolute;
    font-size: 25px;
    width: 25px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: inline-block;
    text-align: center;
}
.search-box-button {
    display: block;
    max-width: 280px;
    width: 100%;
    margin: 30px auto 10px;
    position: relative;
}
.search-box-button button {
    background: var(--maincolor);
    border: none;
    width: 100%;
    box-shadow: none;
    color: #FFF;
    border-radius: 9px;
    padding: 20px 10px;
    font-size: 18px;
    display: inline-block;
}
.search-box-button-icon {
    position: absolute;
    width: 32px;
    height: 30px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 30%;
}
@media screen and (max-width: 750px) {
    .search-box-button{
        width: 80%;
    }
    .search-box-button button{
        padding: 11px 10px;
        font-size: 16px;
    }
    .search-box-item select{
        font-size: 13px;
        padding-right: 18px;
    }
    .search-box-item::after{
        width: clamp(6px, 0.63vw, 8px); 
        height: clamp(6px, 0.63vw, 8px);
        right: 6%;

    }
}