@charset "UTF-8";


/*ヘッダー
---------------------------------------------------------------------------*/
.headertop {
    background-color: #FEF9E9;
    width: 100%;
    height: 20%;
}

#header {
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 150px;
    margin: 0 auto;
    padding: 0 5%;
}
#header ul {
    display: flex;
    padding: 2px 0;
}
#header li {
    margin-left: 20px;
}
#header li a {
    color: #000000;
    font-weight:500;
    font-size: 0.9rem;
}

#header li a:hover{
	opacity:0.6;
    transition: .5s;
}

#header .site-title img {
    width: 200px;
}

/* タブレット対応 */
@media (min-width: 768px) and (max-width: 1024px) {
.headertop {
    background-color: #FEF9E9;
    width: 80%;
    height: 20%;
}
    #header {
        max-width: 100%;
        height: 80px;
        margin-top: 20px;
    }
    #header .site-title img {
        width:150px;
    }
    #header li {
        margin-left: 20px;
    }
    #header li a {
        font-size: 0.9rem;
    }
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
    #header {
        justify-content: center;
        height: 70px;
        margin-top: 15px;
    }
    #header .site-title {
        text-align: center;
    }
    #header .site-title img {
        width: 150px;
    }
    #header nav {
        display: none; /* メニューを非表示 */
    }
}



/*メインビジュアル
---------------------------------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height:80vh;
    margin: 50px auto;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation-duration: 15s;
    animation-iteration-count: infinite; /* 無限にアニメーションを繰り返す */
    animation-direction: alternate; /* 行き来するアニメーション */
    animation-timing-function: ease-in-out;

}


/* スライドごとに異なるズームアニメーションを適用 */
.slide:nth-child(1) .slide-image {
    animation-name: zoom-in-out;
}

.slide:nth-child(2) .slide-image {
    animation-name: pan-zoom;
}

.slide:nth-child(3) .slide-image {
    animation-name: diagonal-zoom;
}

.slide:nth-child(4) .slide-image {
    animation-name: rotate-zoom;
}

/* ズームイン・アウトを繰り返す */
@keyframes zoom-in-out {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.15); }
}

/* 左右に少しずつパンしながらズーム */
@keyframes pan-zoom {
    0% { transform: scale(1.0) translateX(-5px); }
    100% { transform: scale(1.15) translateX(10px); }
}

/* 斜めに動きながらズーム */
@keyframes diagonal-zoom {
    0% { transform: scale(1.0) translate(-5px, -5px); }
    100% { transform: scale(1.1) translate(5px, 5px); }
}

/* 少し回転しながらズーム */
@keyframes rotate-zoom {
    0% { transform: scale(1.0) rotate(-1deg); }
    100% { transform: scale(1.1) rotate(1deg); }
}

.slide-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}


/* タブレット対応 */
@media (min-width: 768px) and (max-width: 1024px) {
    .slider-container {
        width: 100%;
        height: 80hw; /* タブレットでの高さ調整 */
    }
    .slide-image {
        object-position: center; /* 画像の中央部分を表示 */
    }
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
    .slider-container {
        height: 350px; /* スマホでの高さ調整 */
        margin: 15px 0 50px 0;
    }
    .slide-image {
        object-position: center; /* 画像の中央部分を表示 */
    }
    /* スマホでのアニメーション調整 */
    @keyframes zoom-in-out {
        0% { transform: scale(1.0); }
        100% { transform: scale(1.1); }
    }
    @keyframes pan-zoom {
        0% { transform: scale(1.02) translateX(-5px); }
        100% { transform: scale(1.1) translateX(5px); }
    }
    @keyframes diagonal-zoom {
        0% { transform: scale(1.02) translate(-5px, -5px); }
        100% { transform: scale(1.1) translate(5px, 5px); }
    }
    @keyframes rotate-zoom {
        0% { transform: scale(1.02) rotate(-0.5deg); }
        100% { transform: scale(1.1) rotate(0.5deg); }
    }
}

/*ルール説明セクション
---------------------------------------------------------------------------*/

.feature {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 0 0 0 30%;
    pointer-events: none;
}

.center {
    grid-column: 1;
    justify-self: center;
    width: 100%;
    margin-bottom: 80px;
}

.right {
    grid-column: 2;
    justify-self:flex-start;
}


.bottom {
    width: 80%;
    font-size: 20px;
    line-height: 50px;
    letter-spacing: 0.05em;
    color: #3A3A3A;
    margin:0 auto;
    text-align: center;
    }

.notice {
    padding-top: 100px;
    width: 100%;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #3A3A3A;
    margin:0 auto;
    text-align: center;
}

ion-icon {
    width: 50px;
    height: 30px;
    align-items: center;
    justify-content: center;
    vertical-align: bottom;
}

.day_title {
    padding-top: 30px;
    width: 800px;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #3A3A3A;
    margin:0 auto;
    text-align: center;
    line-height: 70px;
}

.day_explanation {
    padding-top: 30px;
    width: 800px;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: #3A3A3A;
    margin:0 auto;
    text-align: left;
}

.container_free {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.box1 {
    width: 35%;
    height: 320px;
    border: 1px solid #3A3A3A;
    margin: 10px 20px;
    border-radius:30px;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon {
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
}

.shipping_quality {
    width: 85%;
    margin: 0 auto;
    padding-top: 5%;
    font-size: clamp(0.6rem, 0.9rem, 0.9rem);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    line-height: 18px;

}

.free_line {
    width: 80%;
    margin: 0 auto;
    padding-top: 2%;
    font-size: clamp(0.9rem, 1.2rem, 1.2rem);
    letter-spacing: 0.05em;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-align: center;

}

.free_title{
    color: #EB5D57;
    font-weight: 600;
    font-size: 3rem;
    letter-spacing: 0.01em;
}



.sway.is-animated {
    animation: poyoyon 0.5s cubic-bezier(0.12, 0, 0.39, 0) 1 forwards;
}


.anime-object {
    animation: bounce 2s linear infinite;
}
.circle{
    position: relative;
    display: inline-block;
    width:  200px;
    height: 200px;
    border-radius:50%;
    background: #187bb4;
}
.circle span {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 15%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width :200px;
    text-align:center;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin:70px auto;
}

.responsive-text {
    font-size: 2.7rem;
    padding: 10px 0 0 7px;
    color: #fff;
    font-weight: 600;
}



/* タブレット向けのスタイル */
@media (min-width: 768px) and (max-width: 1024px) {

    .feature {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        padding: 0 0 0 20%;
        pointer-events: none;
    }

    .center {
        width: 100%;
        grid-column: 1;
        justify-self: start;
        margin-bottom: 80px;
    }

    .right {
        grid-column: 2;
        justify-self:center;
    }

.circle{
    position: absolute;
    display: inline-block;
    width: 180px;
    height: 180px;
    border-radius:50%;
    background: #187bb4;
}
.circle span {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: (-50%);
    width :180px;
    text-align:center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 95px auto;
}
.bottom {
    width: 80%;
    font-size: 22px;
    line-height: 50px;
    letter-spacing: 0.05em;
    color: #3A3A3A;
    margin:0 auto;
    text-align: center;
    }

    .responsive-text {
        font-size: 2.3rem;
        padding: 5px 0 0 7px;
        color: #fff;
        font-weight: 600;
    }

    .br-tb::after {
        content: "\A"; /* 改行 */
        white-space: pre; /* 改行を適用 */
}


    .notice {
        padding-top: 100px;
        width: 100%;
        font-size: 32px;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        margin:0 auto;
        text-align: center;
    }
    ion-icon {
        width: 70px;
        height:40px;
        align-items: center;
        justify-content: center;
        vertical-align: bottom;
    }
    .day_title {
        padding-top: 30px;
        width: 80%;
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        margin:0 auto;
        text-align: center;
        line-height: 50px;
    }
    .day_explanation {
        padding-top: 30px;
        width: 80%;
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        margin:0 auto;
        text-align: left;
    }

    .box1 {
        width: 80%;
        height: 300px;
        border: 1px solid #3A3A3A;
        margin: 10px 20px;
        border-radius:30px;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .icon {
        width: 100%;
        margin: 0 auto;
        padding-top: 30px;
    }
    .shipping_quality {
        width: 85%;
        margin: 0 auto;
        padding-top: 5%;
        font-size: clamp(0.6rem, 0.9rem, 0.9rem);
        letter-spacing: 0.05em;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        line-height: 18px;
    }
    .free_line {
        width: 80%;
        margin: 0 auto;
        padding-top: 2%;
        font-size: clamp(0.9rem, 1.2rem, 1.2rem);
        letter-spacing: 0.05em;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .free_title{
        color: #E8320D;
        font-weight: 600;
        font-size: 3rem;
        letter-spacing: 0.01em;
    }

}

/* タブレット向けのスタイル */
@media (max-width: 767px) {
    .feature {
        width: 60%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        padding: 0 0 0 0;
        pointer-events: none;
    }

    .center {
        width: 280px;
        grid-column: 1;
        justify-self: start;
        margin-bottom: 40px;
    }

    .right {
        grid-column: 2;
        justify-self:center;
    }

.circle{
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius:50%;
    background: #187bb4;
}
.circle span {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: (-50%);
    width :100px;
    text-align:center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    margin: 50px auto;
}
.responsive-text {
    font-size: 1.2rem;
    padding: 5px 0 0 7px;
    color: #fff;
    font-weight: 600;
}
.bottom {
    width: 80%;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #3A3A3A;
    margin:0 auto;
    text-align: center;
    }

    .br-sp::after {
        content: "\A"; /* 改行 */
        white-space: pre; /* 改行を適用 */
}


    .notice {
        padding-top: 80px;
        width: 100%;
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        margin:0 auto;
        text-align: center;
    }
    ion-icon {
        width: 40px;
        height:30px;
        align-items: center;
        justify-content: center;
        vertical-align: bottom;
    }
    .day_title {
        padding-top: 20px;
        width: 80%;
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        margin:0 auto;
        text-align: center;
        line-height: 30px;
    }
    .day_explanation {
        padding-top: 20px;
        width: 80%;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        line-height: 18px;
        margin:0 auto;
        text-align: left;
    }

    .box1 {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 290px;
        border: 1px solid #3A3A3A;
        padding: 10px 5px;
        margin: 10px 5px;
        border-radius:0px;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .icon {
        width: 100%;
        margin: 0 auto;
        padding-top: 3px;
    }
    .shipping_quality {
        width: 100%;
        margin: 0 auto;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        padding-top: 10px;
        line-height: 18px;
    }
    .free_line {
        width: 100%;
        margin: 0px auto;
        padding-top: 10px;
        margin-bottom: -15px;
        font-size: 1rem;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .free_title{
        color: #E8320D;
        font-weight: 600;
        font-size: 1.8rem;
        letter-spacing: 0.01em;
        padding-bottom: 20px;
    }
}


/* SP向けのスタイル */
@media (max-width: 480px) {
    .feature {
        width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        padding: 0 0 0 0;
        pointer-events: none;
    }

    .center {
        width: 280px;
        grid-column: 1;
        justify-self: start;
        margin-bottom: 40px;
    }

    .right {
        grid-column: 2;
        justify-self:center;
    }

.circle{
    position: absolute;
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius:50%;
    background: #187bb4;
}
.circle span {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: (-50%);
    width :100px;
    text-align:center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    margin: 50px auto;
}
.responsive-text {
    font-size: 1.2rem;
    padding: 5px 0 0 7px;
    color: #fff;
    font-weight: 600;
}
.bottom {
    width: 80%;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.05em;
    color: #3A3A3A;
    margin:0 auto;
    text-align: center;
    }

    .br-sp::after {
        content: "\A"; /* 改行 */
        white-space: pre; /* 改行を適用 */
}


    .notice {
        padding-top: 80px;
        width: 100%;
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        margin:0 auto;
        text-align: center;
    }
    ion-icon {
        width: 40px;
        height:30px;
        align-items: center;
        justify-content: center;
        vertical-align: bottom;
    }
    .day_title {
        padding-top: 20px;
        width: 80%;
        font-size: 1.2rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        margin:0 auto;
        text-align: center;
        line-height: 30px;
    }
    .day_explanation {
        padding-top: 20px;
        width: 80%;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
        color: #3A3A3A;
        line-height: 18px;
        margin:0 auto;
        text-align: left;
    }
    .container_free {
        margin-top: 50px;
        display: flex;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
    }
    .box1 { 
        display: flex;
        flex-direction: column;
        width: 90%;
        height: 90%;
        border: 1px solid #3A3A3A;
        padding: 20px 20px;
        margin: 10px 5px;
        border-radius:0px;
        background-color: #fff;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 30px;
    }
    .icon {
        width: 100%;
        margin: 0 auto;
        padding-top: 3px;
    }
    .shipping_quality {
        width: 100%;
        margin: 0 auto;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        padding-top: 10px;
        line-height: 18px;
    }
    .free_line {
        width: 100%;
        margin: 0px auto;
        padding-top: 10px;
        margin-bottom: -5px;
        font-size: 1rem;
        font-weight: 600;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .free_title{
        color: #E8320D;
        font-weight: 600;
        font-size: 2.5rem;
        letter-spacing: 0.01em;
        padding-top: 10px;
        padding-bottom: 20px;
    }
}


/* アニメーション */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px); /* 上に跳ねる */
    }
    60% {
        transform: translateY(-15px); /* 少し下がって再度跳ねる */
    }
}



/*メニューセクション
---------------------------------------------------------------------------*/
/* メニュー全体の中央配置 */
.menu-container {
    display: flex;
    justify-content: center;
}

/* メニューのスタイル */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* ボタンの間隔 */
    list-style: none;
    padding: 0;
    margin-top: 100px;
}

/* 各メニューアイテム（ボタン風） */
.menu-item {
    padding: 10px 30px;
    border: 2px solid #187bb4; /* 枠線 */
    border-radius: 25px; /* 丸みを持たせる */
    background: #fff;
    text-align: center;
}

/* メニューのリンク */
.menu-item a {
    color: #187bb4; /* 文字色 */
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    font-size: 0.9rem;
}

/* ホバー時のスタイル */
.menu-item a:hover {
    background: #187bb4;
    color: #fff;
    border-radius: 25px;
}

/* 基本スタイルはそのまま適用 */

@media (min-width: 768px) and (max-width: 1024px) {
    /* タブレット向けスタイル */
    .menu-item {
        padding: 8px 25px; /* パディングを縮小 */
    }

    .menu-item a {
        font-size: 1.2rem; /* フォントサイズを縮小 */
        padding: 8px 12px; /* ボタン内部のパディングを縮小 */
    }
}

@media (max-width: 767px) {
    /* モバイル向けスタイル */
    .menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px; /* ボタンの間隔 */
        list-style: none;
        padding: 0;
        margin-top: 10px;
        margin-bottom: -10px;
    }
    .menu-item {
        padding: 10px 20px; /* さらにパディングを縮小 */
    }

    .menu-item a {
        font-size: 0.8rem; /* フォントサイズをさらに縮小 */
        padding: 2px 4px; /* ボタン内部のパディングも縮小 */
    }

}




/*鰹節説明セクション
---------------------------------------------------------------------------*/
.image-katuogift {
    margin-top: 10%;
    pointer-events: none;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.image {
    width: 100%;
    height: 800px; /* デフォルト（PC） */
    display: block;
    object-fit: cover;
}

/* オーバーレイのスタイル */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2% 21%;
    box-sizing: border-box;
    text-align: left;
    font-size: 1.4rem;
    line-height: 2.5rem;
    letter-spacing: 0.05em;
}

/* タブレット対応（幅768px以下） */
@media (max-width: 768px) {
    .image-katuogift {
        margin-top: 10%;
        pointer-events: none;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    .image {
        height: 500px; /* 高さを調整 */
    }

    .overlay {
        padding: 4% 10%; /* 左右の余白を小さくする */
        font-size: 1.2rem;
        line-height: 2rem;
    }
}

/* スマホ対応（幅767px以下） */
@media (max-width: 767px) {
    /* オーバーレイのスタイル */
    .image-katuogift {
        margin-top: 20%;
        pointer-events: none;
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    .image {
        height: 400px; /* さらに高さを低く */
    }

    .overlay {
        padding: 5% 5%; /* よりコンパクトに */
        font-size: 1rem; /* 文字サイズを小さく */
        line-height: 1.6rem;
    }
}


/*ギフト説明セクション
---------------------------------------------------------------------------*/
.gift_titlelogo {
    pointer-events: none;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    z-index: 2;
}
.gift_titlelogo img {
    max-width: 100%;
    height: auto;
    position: relative;
    top: 70px;
    margin-bottom: 100px;
}
.container_gift {
    max-width: 1200px;
    margin: -150px auto;
    padding: 80px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    box-shadow: 1px 1px 5px rgb(223, 223, 223);
}
.service {
    margin: 100px 0px 0px 0px;
    padding: 0px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.point {
    background: #d9534f;
    color: white;
    display: inline-block;
    padding: 30px;
    border-radius: 50%;
    font-family:"Dancing Script", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 3rem;
}
.service h3 {
    padding-top: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
    letter-spacing: 0.5px;
}
.service p {
    padding: 20px 0px 20px 0px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    line-height: 1.5;
}
.images_gift {
    pointer-events: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.images_gift  img {
    width: 100%;
    max-width: 300px;
}

.gallery {
    pointer-events: none;
    display: flex;
    justify-content:space-evenly;
    align-items: flex-end;
}

.gallery figure {
    text-align: center;
    margin: 50px 0px 50px 0px;
}

.gallery img {
    max-width: 300px;
    height: auto;
}

.gallery figcaption {
    margin-top: 8px;
    font-size: 0.9rem;
}


/* タブレット対応（幅767px以下） */
@media (max-width: 767px) {
    .gift_titlelogo {
        pointer-events: none;
        position: relative;
        max-width: 70%;
        margin: 0 auto;
        padding: 5% 5%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        z-index: 2;
    }
    .gift_titlelogo img {
        max-width: 100%;
        height: auto;
        position: relative;
        top: 70px;
        margin-bottom: 100px;
    }
    .container_gift {
        max-width: 100%;
        margin: -120px auto;
        padding: 10px;
        background: #fff;
        border-radius: 10px;
        position: relative;
        z-index: 1;
        box-shadow: 1px 1px 5px rgb(223, 223, 223);
    }
    .service {
        margin: 80px 0px 0px 0px;
        padding: 0px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .point {
        background: #d9534f;
        color: white;
        display: inline-block;
        padding: 20px;
        border-radius: 50%;
        font-family:"Dancing Script", cursive;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 700;
        font-size: 2rem;
    }
    .service h3 {
        padding-top: 20px;
        font-size: 1.6rem;
        font-weight: bold;
        margin: 10px 0;
        letter-spacing: 0.5px;
    }
    .service h4 {
        font-size: 0.7rem;
    }
    .service p {
        padding: 10px 0px 20px 0px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        line-height: 1.5;
        text-align: center;
    }
    .images_gift {
        pointer-events: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
        font-size: 1rem;
    }
    .images_gift img {
        width: 45%;
        max-width: 150px;
    }
    
    .gallery {
        pointer-events: none;
        display: flex;
        justify-content:space-evenly;
        align-items: flex-end;

    }
    
    .gallery figure {
        text-align: center;
        margin: 50px 0px 50px 0px;
    }
    
    .gallery img {
        max-width: 50%;
        height: auto;
    }
    
    .gallery figcaption {
        margin-top: 8px;
        font-size: 0.7rem;
    }
    
}

/* SP対応（幅480px以下） */
@media (max-width: 480px) {
    .gift_titlelogo {
        pointer-events: none;
        position: relative;
        max-width: 70%;
        margin: 0 auto;
        padding: 5% 5%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
        z-index: 2;
    }
    .gift_titlelogo img {
        max-width: 100%;
        height: auto;
        position: relative;
        top: 70px;
        margin-bottom: 100px;
    }
    .container_gift {
        max-width: 100%;
        margin: -120px auto;
        padding: 10px;
        background: #fff;
        border-radius: 10px;
        position: relative;
        z-index: 1;
        box-shadow: 1px 1px 5px rgb(223, 223, 223);
    }
    .service {
        margin: 80px 0px 0px 0px;
        padding: 0px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .point {
        background: #d9534f;
        color: white;
        display: inline-block;
        padding: 20px;
        border-radius: 50%;
        font-family:"Dancing Script", cursive;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 700;
        font-size: 2rem;
    }
    .service h3 {
        padding-top: 20px;
        font-size: 1.6rem;
        font-weight: bold;
        margin: 10px 0;
        letter-spacing: 0.5px;
    }
    .service h4 {
        font-size: 0.8rem;
    }
    .service p {
        padding: 10px 0px 20px 0px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        line-height: 1.5;
        text-align: left;
    }
    .images_gift {
        pointer-events: none;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 10px;
        font-size: 0.8rem;
    }
    .images_gift img {
        width: 70%;
        max-width: 200px;
    }
    .gallery {
        pointer-events: none;
        display: flex;
        justify-content:space-evenly;
        align-items: flex-end;

    }
    .gallery figure {
        text-align: center;
        margin: 0px 0px 50px 0px;
    }
    .gallery img {
        max-width: 70%;
        height: auto;
    }
    .gallery figcaption {
        margin-top: 8px;
        font-size: 0.8rem;
    }
}

/*無限ローテーション写真スライダー
---------------------------------------------------------------------------*/
.image-loop {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.image-loopwrapper {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
}

.image-loopwrapper img {
    display: inline-block;
    width: 20%;
    height: auto;
    pointer-events: none;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* タブレット対応（幅480px以下） */
@media (max-width: 480px) {
    .image-loop {
        overflow: hidden;
        white-space: nowrap;
        width: 100%;
    }
    
    .image-loopwrapper {
        display: inline-block;
        white-space: nowrap;
        animation: scroll 35s linear infinite;
    }
    
    .image-loopwrapper img {
        display: inline-block;
        width: 50%;
        height: auto;
        pointer-events: none;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
}

/*ランキングセクション　１位２位３位
---------------------------------------------------------------------------*/
.ranking-section {
    text-align: center;
    padding: 300px 10px;
    position: relative;
}
.ranking-item {
    box-sizing: border-box; /* パディングとボーダーを含む幅の計算 */
    margin: 20px auto; /* スペースを確保しつつ中央寄せ */
    padding: 20px; /* 内側のスペースを確保 */
    background-color: #fff; /* 背景色を白に設定 */
    border-radius: 10px; /* 角を丸くする */
    width: 100%; /* 全幅を使う */
    max-width: 1200px; /* 最大幅を設定 */
    box-shadow: 1px 1px 5px rgb(223, 223, 223);
}
.ranking-header h2 {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    line-height: 100px;
    letter-spacing: 0.7px;
    font-weight: 500;

}
.ranking-title {
    font-family:"Birthstone", cursive;
    font-size: 8rem;
    color: #EB5D57;
    line-height: 100px;
    letter-spacing: 0.7px;
    margin-bottom: 300px;
    font-weight: 500;

}
.ranking-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* ラップさせて調整 */
    justify-content: space-between; /* 子要素間を均等に */
    align-items: flex-start;
}

.ranking-text {
    padding-right: 20px; /* 右側にパディングを追加 */
}
.ranking-number {
    position: absolute;
    width: 75%;
    top: -230px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 3rem;
    pointer-events: none;
}
.ranking-number img {
    width: 250px;
}
.ranking-number p {
    font-size: 2.2rem;
    font-weight: 600;
    color: #3A3A3A;
    letter-spacing: 0.7px;
    line-height: 40px;
    margin-top: 10px;
    font-family: serif;
    background: linear-gradient(transparent 50%, #ffec6d 50%);
    padding: 0 0.1em;
}

.ranking-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; /* ラップさせて調整 */
    justify-content: space-between; /* 子要素間を均等に */
    align-items: flex-start;
}
.ranking-content a {
    flex: 1 1 45%; /* 45%を基準に調整 */
    max-width: 48%; /* ギャップを考慮して調整 */
    display: block;
    margin-bottom: 20px;
}

.ranking-content img {
    width: 100%; /* 画像をフル幅に */
    height: auto; /* 自動で高さ調整 */
}

.ranking-text {
    flex: 1 1 45%; /* テキスト領域の幅調整 */
    max-width: 48%; /* ギャップを考慮して調整 */
    padding-right: 20px; /* 右側にパディングを追加 */
    box-sizing: border-box; /* パディングを含む幅の計算 */
    text-align: left; /* テキストを左寄せ */
}
.ranking-text h3 {
    font-family:sans-serif;
    font-size: 2rem;
    color: #EB5D57;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 0.7px;
}
.ranking-text p {
    font-size: 1rem;
    color: #3A3A3A;
    letter-spacing: 0.5px;
    line-height: 30px;
    padding-top: 30px;
}
.item_name {
    font-size: 1.5rem;
    color: #3A3A3A;
    font-weight: 600;
    letter-spacing: 0.7px;
    margin-bottom: -80px;
    padding: 40px 0px 50px 0px;
}
.tags {
    margin: 30px 0;
    margin-top: 50px;
}
.tag {
    display: inline-block;
    background: #ffffe5;
    color: #207b97;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin: 3px;
    font-family:Arial, Helvetica, sans-serif;
}
.price {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    letter-spacing: 3px;
    margin: 5% 0px 20% 10%;
}
.btn {
    display: flex;
    justify-content: center; /* 水平方向中央揃え */
    align-items: center;   /* 垂直方向中央揃え */
    text-align: center;    /* テキストを中央揃え */
    background: #EB5D57;
    color: #fff;
    padding: 5% 45% 5% 20%;   /* パディングを固定値に */
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.7px;
    white-space: nowrap;
    margin: -15% auto;       /* 水平方向中央揃え */
    width: fit-content;   /* コンテンツに合わせて幅を調整 */
}


.first-place {
        position: relative;
        background-color: #FEF9E9;
        padding-top: 20px;
        padding-bottom: 50px;
}

.first-place::before {
        content: '';
        position: absolute;
        top: -2px;
        left: 0;
        right: 0;
        background-color: #FEF9E9;
        z-index: -1;
}

.second-place {
    position: relative;
    background-color: #fff;
    padding-top: 250px;
    padding-bottom: 50px;
}

.second-place::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: -1
}

.third-place {
    position: relative;
    background-color: #FEF9E9;
    padding-top: 250px;
    padding-bottom: 50px;
}

.third-place::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background-color: #FEF9E9;
    z-index: -1;
}

.four-place {
    position: relative;
    background-color: #FEF9E9;
    padding-top: -200px;
}

.four-place::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background-color: #FEF9E9;
    z-index: -1;
}

/* PCmini対応（幅1024px以下） */
@media (max-width: 1024px) {
    .btn {
        display: flex;
        justify-content: center; /* 水平方向中央揃え */
        align-items: center;   /* 垂直方向中央揃え */
        text-align: center;    /* テキストを中央揃え */
        background: #EB5D57;
        color: #fff;
        padding: 5% 50% 5% 20%;   /* パディングを固定値に */
        border-radius: 40px;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 0.7px;
        white-space: nowrap;
        margin: -15% auto;       /* 水平方向中央揃え */
        width: fit-content;   /* コンテンツに合わせて幅を調整 */
    }
    .ranking-number {
        position: absolute;
        width: 75%;
        top: -230px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        font-size: 3rem;
        pointer-events: none;
    }
    .ranking-number p {
        font-size: 1.6rem;
        font-weight: 600;
        color: #3A3A3A;
        letter-spacing: 0.7px;
        line-height: 40px;
        margin-top: 10px;
        font-family: serif;
        background: linear-gradient(transparent 50%, #ffec6d 50%);
        padding: 0 0.1em;
    }

}

/* 768px以下の時に適用 */
@media (max-width: 768px) {
    .btn {
        display: flex;
        justify-content: center;
        align-items: center; /* 縦中央揃え */
        text-align: center;
        padding: 18px 120px;
        font-size: 2rem;
        max-width: 350px;
        top: -10px; /* ボタンを上に移動 */
    }

    .ranking-item {
        padding: 15px; /* 内側のスペースをコンパクトに */
        max-width: 90%; /* コンテンツの幅を調整 */
    }

    .ranking-number {
        position: absolute;
        width: 100%;
        margin-top: -30px;
        transform: translateX(-50%);
        text-align: center;
        font-size: 3rem;
        pointer-events: none;
    }
    .ranking-number img {
        width: 50%;
    }
    .ranking-number p {
        font-size: 1.3rem;
        font-weight: 600;
        color: #3A3A3A;
        letter-spacing: 0.7px;
        font-family: serif;
        background: linear-gradient(transparent 50%, #ffec6d 50%);
        padding: 0 0;
    }

    .ranking-content {
        flex-direction: column; /* 縦方向に並べる */
        align-items: center;
    }

    .ranking-content a, .ranking-text {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: left;
    }

    .ranking-text {
        padding-right: 10px;
    }
}

/* スマートフォン用スタイル調整 */
@media (max-width: 480px) {


    .ranking-section {
        text-align: center;
        padding: 200px 10px;
        position: relative;
    }
    .ranking-item {
        box-sizing: border-box; /* パディングとボーダーを含む幅の計算 */
        margin: 0px auto; /* スペースを確保しつつ中央寄せ */
        padding: 10px; /* 内側のスペースを確保 */
        background-color: #fff; /* 背景色を白に設定 */
        border-radius: 10px; /* 角を丸くする */
        width: 100%; /* 5幅を使う */
        max-width: 100%; /* 最大幅を設定 */
        box-shadow: 1px 1px 5px rgb(223, 223, 223);
    }

    .ranking-number {
    position: absolute;
    width: 100%;
    margin-top: 40px;
    transform: translateX(-50%);
    text-align: center;
    font-size: 3rem;
    pointer-events: none;
}
.ranking-number img {
    width: 50%;
}
.ranking-number p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3A3A3A;
    letter-spacing: 0.7px;
    font-family: serif;
    background: linear-gradient(transparent 50%, #ffec6d 50%);
    padding: 0 0;
}
    .ranking-header h2 {
        font-size: 1.8rem;
        color: #3A3A3A;
        font-family:serif;
        letter-spacing: 0.7px;
        font-weight: 500;
        margin-bottom: -40px;
    }
    .ranking-title {
        font-family:"Birthstone", cursive;
        font-size: 5rem;
        color: #EB5D57;
        letter-spacing: 0.7px;
        margin-bottom: 220px;
        font-weight: 500;
    }


    .ranking-content {
        flex-direction: column; /* 縦方向に並べる */
        align-items: center; /* 中央揃え */
    }
    .ranking-content a, .ranking-text {
        flex: 1 1 100%; /* フル幅 */
        max-width: 100%; /* フル幅 */
        text-align: left; /* テキストを左寄せ */
    }
    .ranking-text {
        padding-right: 10px; /* モバイル用パディング */
    }
    .ranking-text h3 {
        font-family:sans-serif;
        font-size: 1.2rem;
        color: #EB5D57;
        font-weight: 600;
        line-height: 15px;
        letter-spacing: 0.7px;
    }
    .ranking-text p {
        font-size: 0.8rem;
        color: #3A3A3A;
        letter-spacing: 0.5px;
        line-height: 20px;
        padding-top: 10px;
    }
    .item_name {
        font-size: 1.1rem;
        color: #3A3A3A;
        font-weight: 600;
        letter-spacing: 0.7px;
        margin-bottom: -80px;
        padding: 20px 0px 50px 0px;
    }
    .tags {
        margin: 20px 0;
        margin-top: 50px;
    }
    .tag {
        display: inline-block;
        background: #ffffe5;
        color: #207b97;
        padding: 5px 7px;
        border-radius: 5px;
        font-size: 0.8rem;
        margin: 3px;
        font-family:Arial, Helvetica, sans-serif;
    }
    .price {
        font-size: 1.6rem;
        color: #3A3A3A;
        font-family:serif;
        letter-spacing: 3px;
        margin: 0 0 5% 5%;
    }
    .btn {
        display: flex;
        justify-content: center; /* 水平方向中央揃え */
        align-items: center;   /* 垂直方向中央揃え */
        text-align: center;    /* テキストを中央揃え */
        background: #EB5D57;
        color: #fff;
        padding: 5% 15% 5% 15%;   /* パディングを固定値に */
        border-radius: 40px;
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 0.7px;
        white-space: nowrap;
        margin: 10px auto;       /* 水平方向中央揃え */
        width: fit-content;   /* コンテンツに合わせて幅を調整 */
    }

}

/*ランキングセクション　４位以降
---------------------------------------------------------------------------*/

.container_rankingunder {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-top: -250px;
    margin-bottom: 200px;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.card {
    display: flex; /* flexboxを使用 */
    flex-direction: column; /* 要素を縦に並べる */
    align-items: center; /* 横方向のセンタリング */
    justify-content: center; /* 縦方向のセンタリング */
    background: white;
    border-radius: 20px;
    padding: 2px 0px 50px 0px;
    width: 40%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.ranking_under {
    width: 40%;
    margin: 0 auto;
    text-align: center;
    pointer-events: none;
}
.image_under {
    display: flex; /* flexboxを使用 */
    justify-content: center; /* 横方向のセンタリング */
    align-items: center; /* 縦方向のセンタリング */
    width: 100%; /* 画像が親要素に対してセンタリングされるようにする */
}

.image_under img {
    width: 80%;
    object-fit: cover;
    padding: 2% 0%;
}
.product-title {
    font-family:sans-serif;
    font-size: 2rem;
    color: #EB5D57;
    font-weight: 500;
    padding-top: 30px;
    letter-spacing: 0.7px;
}
.product_explanation {
    width: 90%;
    margin: 0 auto;
    font-size: 1rem;
    color: #3A3A3A;
    letter-spacing: 0.5px;
    line-height: 25px;
    padding-top: 30px;
    text-align: left;
}
.tags-under {
    padding: 5% 15% 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: left;
}
.tag-under {
    display: inline-block;
    background: #ffffe5;
    color: #207b97;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin: 3px;
}
.price_under {
    font-size: 3rem;
    font-family: serif;
    margin: 10px 0 20px 40px;
    padding: 0px 250px 20px 0px;

}
.button_under {
    background-color: #EB5D57;
    color: white;
    padding: 20px 80px;
    display: inline5block;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.6rem;
}

@media (max-width: 1280px) and (min-width: 768px) {
    .container_rankingunder {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        margin-top: -250px;
        margin-bottom: 200px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .card {
        display: flex; /* flexboxを使用 */
        flex-direction: column; /* 要素を縦に並べる */
        align-items: center; /* 横方向のセンタリング */
        justify-content: center; /* 縦方向のセンタリング */
        background: white;
        border-radius: 20px;
        padding: 2px 0px 50px 0px;
        width: 46%;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    .product-title {
        font-family:sans-serif;
        font-size: 1.5rem;
        color: #EB5D57;
        font-weight: 500;
        padding: 5% 5%;
        letter-spacing: 0.5px;
    }
    .product_explanation {
        width: 90%;
        margin: 0 auto;
        font-size: 1rem;
        color: #3A3A3A;
        letter-spacing: 0.5px;
        line-height: 25px;
        padding-top: 30px;
        text-align: left;
    }
    .tags-under {
        padding: 5% 0% 0 0;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
    }
    .tag-under {
        display: inline-block;
        background: #ffffe5;
        color: #207b97;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        margin: 3px;
    }
    .price_under {
        font-size: 2rem;
        font-family: serif;
        padding: 2% 20% 0 0;
    }
    .button_under {
        background-color: #EB5D57;
        color: white;
        padding: 5% 20%;
        display:inline-block;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.4rem;
    }

}

@media (max-width: 767px) {
    .container_rankingunder {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: -180px;
        margin-bottom: 100px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .card {
        display: flex; /* flexboxを使用 */
        flex-direction: column; /* 要素を縦に並べる */
        align-items: center; /* 横方向のセンタリング */
        justify-content: center; /* 縦方向のセンタリング */
        background: white;
        border-radius: 0px;
        padding: 5px 0px 10px 0px;
        width: 46%;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    .ranking_under {
        width: 40%;
        margin: 0 auto;
        text-align: center;
        pointer-events: none;
    }
    .image_under {
        display: flex; /* flexboxを使用 */
        justify-content: center; /* 横方向のセンタリング */
        align-items: center; /* 縦方向のセンタリング */
        width: 100%; /* 画像が親要素に対してセンタリングされるようにする */
    }
    .image_under img {
        width: 95%;
        object-fit: cover;
        padding: 2% 0%;
    }
    .product-title {
        width: 90%;
        font-family:sans-serif;
        font-size: 1rem;
        color: #EB5D57;
        font-weight: 500;
        padding: 5px 0;
        letter-spacing: 0.5px;
        text-align: left;
    }
    .product_explanation {
        width: 90%;
        margin: 0 auto;
        font-size: 0.9rem;
        color: #3A3A3A;
        letter-spacing: 0.5px;
        line-height: 15px;
        padding-top: 10px;
        text-align: left;
    }
    .tags-under {
        padding: 5% 15% 0 0;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: left;
    }
    .tag-under {
        display: inline-block;
        background: #ffffe5;
        color: #207b97;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.8rem;
        margin: 1px;
    }
    .price_under {
        font-size: 1.4rem;
        font-family: serif;
        margin: 10px 0 0px 40px;
        padding: 0px 0px 10px 0px;
    
    }
    .button_under {
        background-color: #EB5D57;
        color: white;
        padding: 10px 30px;
        display: inline5block;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container_rankingunder {
        flex-direction: column;
        display: flex;
        flex-wrap: wrap;
        gap: 80px;
        margin-top: -180px;
        margin-bottom: 100px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .card {
        display: flex; /* flexboxを使用 */
        flex-direction: column; /* 要素を縦に並べる */
        align-items: center; /* 横方向のセンタリング */
        justify-content: center; /* 縦方向のセンタリング */
        background: white;
        border-radius: 15px;
        padding: 5px 0px 10px 0px;
        width: 95%;
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
    }
    .ranking_under {
        width: 40%;
        margin: 0 auto;
        text-align: center;
        pointer-events: none;
    }
    .image_under {
        display: flex; /* flexboxを使用 */
        justify-content: center; /* 横方向のセンタリング */
        align-items: center; /* 縦方向のセンタリング */
        width: 100%; /* 画像が親要素に対してセンタリングされるようにする */
    }
    
    .image_under img {
        width: 95%;
        object-fit: cover;
        padding: 2% 0%;
    }
    .product-title {
        width: 90%;
        font-family:sans-serif;
        font-size: 1.2rem;
        color: #EB5D57;
        font-weight: 500;
        padding: 5px 0;
        letter-spacing: 0.5px;
        text-align: left;
    }
    .product_explanation {
        width: 90%;
        margin: 0 auto;
        font-size: 0.8rem;
        color: #3A3A3A;
        letter-spacing: 0.5px;
        line-height: 20px;
        padding-top: 10px;
        text-align: left;
    }
    .tags-under {
        padding: 5% 15% 0 0;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: left;
        margin: 0 0 0 18px;
    }
    .tag-under {
        display: inline-block;
        background: #ffffe5;
        color: #207b97;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.8rem;
        margin: 1px;
    }
    .price_under {
        font-size: 1.6rem;
        font-family: serif;
        letter-spacing: 3px;
        margin: 10px 0 0px -200px;
        padding: 10px 0px 15px 0px;
    }
    .button_under {
        background-color: #EB5D57;
        color: white;
        padding: 15px 60px;
        display: inline5block;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}



/*価格別セクション
---------------------------------------------------------------------------*/

.five-place {
    position: relative;
    background-color: #FFF;
    padding-top: 100px;
    padding-bottom: 50px;
}

.five-place::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: -1;
}

.kakaku_header {
    background-color: #ffffff;
    padding: 0px;
}
nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 20px;
    font-family: noto-sans-jp;
}
button {
    padding: 15px 30px;
    border: 1px solid #EB5D57;
    background-color: #fff;
    color: #EB5D57;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    font-size: 1.2rem;
}
.kakaku_title {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    line-height: 100px;
    letter-spacing: 0.7px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 30px;
}

.price-category {
    margin: 40px auto;
    max-width: 1200px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.price-category h2 {
    background-color: #187bb4;
    color: white;
    padding: 15px;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.7px;
}
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}
.product {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product img {
    width: 100%;
}
.tags_kakaku {
    padding: 2px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: left;
}
.tag_kakaku {
    display: inline-block;
    background: #ffffe5;
    color: #207b97;
    padding: 5px 5px;
    border-radius: 5px;
    font-size: 0.6rem;
    margin: 1px;
}
.product h3 {
    color:#2e2005;
    font-family: serif;
    font-weight: 600;
    font-size: 1rem;
    margin: 5px 0;
    text-align: left;
    line-height: 20px;
}
.product p {
    font-size: 1rem;
    color: #3A3A3A;
    text-align: left;
    margin: 10px 0;
    letter-spacing: 0.5px;
    line-height: 20px;

}
.product button {
    background-color: #EB5D57;
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 5px;
    font-size: 1rem;
}

@media (max-width: 1024px) and (min-width: 769px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .button {
        padding: 10px 20px; /* 内側に余白を設定 */
        border: 1px solid #EB5D57;
        background-color: #fff;
        color: #EB5D57;
        cursor: pointer;
        border-radius: 30px;
        font-weight: 500;
        font-size: 1rem; /* 字体を適度なサイズに */
    }
}

@media (max-width: 768px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .button {
        padding: 5px 10px; /* 小さめの内側余白設定 */
        border: 1px solid #EB5D57;
        background-color: #fff;
        color: #EB5D57;
        cursor: pointer;
        border-radius: 30px;
        font-weight: 500;
        font-size: 0.9rem; /* 字体を少し小さく */
    }
}

@media (max-width: 480px) {

    .five-place {
        position: relative;
        background-color: #FFF;
        padding-top: 30px;
        padding-bottom: 10px;
    }
    .product-list {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .button {
        padding: 5px 10px; /* 小さめの内側余白設定 */
        border: 1px solid #EB5D57;
        background-color: #fff;
        color: #EB5D57;
        cursor: pointer;
        border-radius: 30px;
        font-weight: 500;
        font-size: 0.9rem; /* 字体を少し小さく */
    }
    .kakaku_title {
        font-size: 2.6rem;
        color: #3A3A3A;
        font-family:serif;
        letter-spacing: 0.7px;
        text-align: center;
        font-weight: 500;
    }
    .price-category {
        margin: 40px auto;
        max-width: 1200px;
        background: #fff;
        padding: 5px;
        border-radius: 0px;
    }
    .price-category h2 {
        background-color: #187bb4;
        color: white;
        padding: 15px;
        font-size: 1.4rem;
        text-align: center;
        letter-spacing: 0.7px;
    }
    .product-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 5px;
        padding: 20px 5px 5px 5px;
    }
    .product {
        background: white;
        border: 0px solid #ddd;
        border-radius: 0px;
        padding: 5px;
        text-align: center;
        position: relative;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .product img {
        width: 100%;
    }
    .tags_kakaku {
        padding: 2px 0px;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: left;
    }
    .tag_kakaku {
        display: inline-block;
        background: #ffffe5;
        color: #207b97;
        padding: 5px 5px;
        border-radius: 5px;
        font-size: 0.6rem;
        margin: 1px;
    }
    .product h3 {
        color:#2e2005;
        font-family: serif;
        font-weight: 600;
        font-size: 0.8rem;
        margin: 5px 0;
        text-align: left;
        line-height: 20px;
    }
    .product p {
        font-size: 0.8rem;
        color: #3A3A3A;
        text-align: left;
        margin: 10px 0;
        letter-spacing: 0.5px;
        line-height: 20px;
    }
    .product button {
        background-color: #EB5D57;
        color: white;
        border: none;
        padding: 10px 40px;
        border-radius: 20px;
        cursor: pointer;
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 0.8rem;
    }
}

/*シーンで選ぶセクション
---------------------------------------------------------------------------*/

.six-place {
    position: relative;
    background-color: #FEF9E9;
    padding-top: 80px;
    padding-bottom: 50px;
}

.six-place::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #FEF9E9;
    z-index: -1;
}
.scene_title {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    line-height: 100px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
    margin-bottom: 50px;
}
.header_scene {
    background-color: #FEF9E9;
    padding: 20px 0px 70px 0px;
}
.scene-category {
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
    border-radius: 10px;
}
.scene-category h2 {
    max-width: 650px;
    padding: 15px;
    font-size: 2rem;
    text-align: center;
    align-items: center;
    justify-self: center;
    font-family: serif;
    font-weight: 600;
        padding: 0.2rem;
        margin-bottom: 0.2rem;
        background: linear-gradient(transparent 60%, #e3ff95 60%);
}
.scene-image {
    width: 100%;
    height: 800px;
    display: block;
    object-fit: cover;
    pointer-events: none;
}
.sceneproduct-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}
.sceneproduct {
    background: #FFF;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.sceneproduct img {
    width: 100%;
}
.tags_scene {
    padding: 2px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: left;
}
.tag_scene {
    display: inline-block;
    background: #ffffe5;
    color: #207b97;
    padding: 5px 5px;
    border-radius: 5px;
    font-size: 0.6rem;
    margin: 1px;
}
.sceneproduct h3 {
    color:#2e2005;
    font-family: serif;
    font-weight: 600;
    font-size: 1rem;
    margin: 5px 0;
    text-align: left;
    line-height: 20px;
}
.sceneproduct p {
    font-size: 1rem;
    color: #3A3A3A;
    text-align: left;
    margin: 10px 0;
    letter-spacing: 0.5px;
    line-height: 20px;

}
.sceneproduct button {
    background-color: #EB5D57;
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 5px;
    font-size: 1rem;
}

.scene-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -70px;
    background-color: #FFF;
}
.scene-content a {
    display: block;
    width: 45%;
    text-decoration: none;
}

.scene-content img {
    width: 100%;
}

.scene-text {
    width: 50%;
    padding-left: 20px;
    text-align: left;
}
.scene-text h3 {
    font-family:sans-serif;
    font-size: 2rem;
    color: #EB5D57;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 0.7px;
}
.scene-text p {
    font-size: 1rem;
    color: #3A3A3A;
    letter-spacing: 0.5px;
    line-height: 30px;
    padding-top: 30px;
}
.sceneitem_name {
    font-size: 1.5rem;
    color: #3A3A3A;
    font-weight: 600;
    letter-spacing: 0.7px;
    margin-bottom: -80px;
    padding: 40px 0px 50px 0px;
}
.scenetags {
    margin: 30px 0;
    margin-top: 50px;
}
.scenetag {
    display: inline-block;
    background: #ffffe5;
    color: #207b97;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin: 3px;
    font-family:Arial, Helvetica, sans-serif;
}
.sceneprice {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    letter-spacing: 3px;
    margin: 50px 0px 50px 70px;
}
.scenebtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EB5D57;
    color: #fff;
    padding: 20px 270px 20px 130px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.7px;
    width: 100%;
    max-width: 500px;
    height: 70px;
    white-space: nowrap;
    margin: 20px auto;
    text-align: center;
}


@media (max-width: 1024px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
.six-place {
    position: relative;
    background-color: #FEF9E9;
    padding-top: 80px;
    padding-bottom: 50px;
}

.six-place::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #FEF9E9;
    z-index: -1;
}
.scene_title {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    line-height: 100px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
    margin-bottom: 50px;
}
.header_scene {
    background-color: #FEF9E9;
    padding: 20px 0px 70px 0px;
}
.scene-category {
    margin: 40px auto;
    max-width: 1200px;
    padding: 20px;
    border-radius: 10px;
}
.scene-category h2 {
    max-width: 650px;
    padding: 15px;
    font-size: 2rem;
    text-align: center;
    align-items: center;
    justify-self: center;
    font-family: serif;
    font-weight: 600;
        padding: 0.2rem;
        margin-bottom: 0.2rem;
        background: linear-gradient(transparent 60%, #e3ff95 60%);
}
.scene-image {
    width: 100%;
    height: 800px;
    display: block;
    object-fit: cover;
    pointer-events: none;
}
.sceneproduct-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}
.sceneproduct {
    background: #FFF;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.sceneproduct img {
    width: 100%;
}
.tags_scene {
    padding: 2px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: left;
}
.tag_scene {
    display: inline-block;
    background: #ffffe5;
    color: #207b97;
    padding: 5px 5px;
    border-radius: 5px;
    font-size: 0.6rem;
    margin: 1px;
}
.sceneproduct h3 {
    color:#2e2005;
    font-family: serif;
    font-weight: 600;
    font-size: 1rem;
    margin: 5px 0;
    text-align: left;
    line-height: 20px;
}
.sceneproduct p {
    font-size: 1rem;
    color: #3A3A3A;
    text-align: left;
    margin: 10px 0;
    letter-spacing: 0.5px;
    line-height: 20px;

}
.sceneproduct button {
    background-color: #EB5D57;
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 5px;
    font-size: 1rem;
}

.scene-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-right: -70px;
    background-color: #FFF;
}
.scene-content a {
    display: block;
    width: 45%;
    text-decoration: none;
}

.scene-content img {
    width: 100%;
}

.scene-text {
    width: 50%;
    padding-left: 20px;
    text-align: left;
}
.scene-text h3 {
    font-family:sans-serif;
    font-size: 2rem;
    color: #EB5D57;
    font-weight: 600;
    line-height: 50px;
    letter-spacing: 0.7px;
}
.scene-text p {
    font-size: 1rem;
    color: #3A3A3A;
    letter-spacing: 0.5px;
    line-height: 30px;
    padding-top: 30px;
}
.sceneitem_name {
    font-size: 1.5rem;
    color: #3A3A3A;
    font-weight: 600;
    letter-spacing: 0.7px;
    margin-bottom: -80px;
    padding: 40px 0px 50px 0px;
}
.scenetags {
    margin: 30px 0;
    margin-top: 50px;
}
.scenetag {
    display: inline-block;
    background: #ffffe5;
    color: #207b97;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin: 3px;
    font-family:Arial, Helvetica, sans-serif;
}
.sceneprice {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    letter-spacing: 3px;
    margin: 50px 0px 50px 70px;
}
.scenebtn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EB5D57;
    color: #fff;
    padding: 20px 270px 20px 130px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.7px;
    width: 100%;
    max-width: 500px;
    height: 70px;
    white-space: nowrap;
    margin: 20px auto;
    text-align: center;
}
}

@media (max-width: 480px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .six-place {
        position: relative;
        background-color: #FEF9E9;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .six-place::before {
        content: '';
        position: absolute;
        top: 20px;
        left: 0;
        right: 0;
        background-color: #FEF9E9;
        z-index: -1;
    }
    .scene_title {
        font-size: 2rem;
        color: #3A3A3A;
        font-family:serif;
        line-height: 50px;
        font-weight: 500;
        letter-spacing: 0.7px;
        text-align: center;
        margin-bottom: 50px;
    }
    .header_scene {
        background-color: #FEF9E9;
        padding: 20px 0px 70px 0px;
    }
    .scene-category {
        margin: 0px auto;
        max-width: 1200px;
        background: #fff;
        padding: 5px;
        border-radius: 0px;
    }
    .scene-category h2 {
        max-width: 650px;
        padding: 10px;
        font-size: 1.2rem;
        text-align: center;
        align-items: center;
        justify-self: center;
        font-family: serif;
        font-weight: 600;
        margin-bottom: 0.2rem;
        background: linear-gradient(transparent 60%, #e3ff95 60%);
    }
    .scene-image {
        margin-top: 20px;
        width: 100%;
        height: 400px;
        display: block;
        object-fit: cover;
        pointer-events: none;
    }
    .sceneproduct-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 5px;
        padding: 20px 5px 5px 5px;
    }
    .sceneproduct {
        background: white;
        border: 0px solid #ddd;
        border-radius: 0px;
        padding: 5px;
        text-align: center;
        position: relative;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .sceneproduct img {
        width: 100%;
    }
    .tags_scene {
        padding: 2px 0px;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: left;
    }
    .tag_scene {
        display: inline-block;
        background: #ffffe5;
        color: #207b97;
        padding: 5px 5px;
        border-radius: 5px;
        font-size: 0.6rem;
        margin: 1px;
    }
    .sceneproduct h3 {
        color:#2e2005;
        font-family: serif;
        font-weight: 600;
        font-size: 0.8rem;
        margin: 5px 0;
        text-align: left;
        line-height: 20px;
    }
    .sceneproduct p {
        font-size: 0.8rem;
        color: #3A3A3A;
        text-align: left;
        margin: 10px 0;
        letter-spacing: 0.5px;
        line-height: 20px;
    }
    .sceneproduct button {
        background-color: #EB5D57;
        color: white;
        border: none;
        padding: 10px 40px;
        border-radius: 20px;
        cursor: pointer;
        margin-top: 5px;
        margin-bottom: 5px;
        font-size: 0.8rem;
    }
    .scene-content {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-right: -70px;
        background-color: #FFF;
    }
    .scene-content a {
        display: block;
        width: 100%;
        text-decoration: none;
    }
    .scene-content img {
        width: 100%;
    }
    .scene-text {
        width: 50%;
        padding-left: 20px;
        text-align: left;
    }
    .scene-text h3 {
        font-family:sans-serif;
        font-size: 2rem;
        color: #EB5D57;
        font-weight: 600;
        line-height: 50px;
        letter-spacing: 0.7px;
    }
    .scene-text p {
        font-size: 0.8rem;
        color: #3A3A3A;
        text-align: left;
        margin: 10px 0;
        letter-spacing: 0.5px;
        line-height: 20px;
    }
    .sceneitem_name {
        font-size: 1.5rem;
        color: #3A3A3A;
        font-weight: 600;
        letter-spacing: 0.7px;
        margin-bottom: -80px;
        padding: 40px 0px 50px 0px;
    }
    .scenetags {
        margin: 30px 0;
        margin-top: 50px;
    }
    .scenetag {
        display: inline-block;
        background: #ffffe5;
        color: #207b97;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        margin: 3px;
        font-family:Arial, Helvetica, sans-serif;
    }
    .sceneprice {
        font-size: 3rem;
        color: #3A3A3A;
        font-family:serif;
        letter-spacing: 3px;
        margin: 50px 0px 50px 70px;
    }
    .scenebtn {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #EB5D57;
        color: #fff;
        padding: 20px 270px 20px 130px;
        border-radius: 40px;
        text-decoration: none;
        font-size: 24px;
        font-weight: 500;
        letter-spacing: 0.7px;
        width: 100%;
        max-width: 500px;
        height: 70px;
        white-space: nowrap;
        margin: 20px auto;
        text-align: center;
    }
}


/*おすすめカテゴリーセクション
---------------------------------------------------------------------------*/

.seven-place {
    position: relative;
    background-color: #fff;
    padding-top: 80px;
}

.seven-place::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #fff;
    z-index: -1;
}

h2.category_title {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    line-height: 100px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
    margin-bottom: 50px;
}

/* カテゴリコンテナ */
.container_category {
    max-width: 800px;
    margin: auto;
}

/* グリッドレイアウト */
.categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}



/* カテゴリボックス */
.category {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: box-shadow 0.3s ease-in-out, transform 0.2s ease-in-out;
}

/* ホバー時のエフェクト */
.category:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* 画像のスタイル */
.category img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

/* テキストスタイル */
.category span {
    flex: 1;
    font-size: 1.2rem;
    padding: 20px;
    text-align: left;
    font-family: serif;
}

/* 右下の矢印 */
.category::after {
    content: "▶";
    font-size: 12px;
    color: #d93f3f;
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-weight: bold;
}

@media (max-width: 480px) {
    .categories {
        grid-template-columns: 1fr;
    }

/* カテゴリコンテナ */
.container_category {
    max-width: 80%;
    margin: auto;
}

h2.category_title {
    font-size: 2rem;
    color: #3A3A3A;
    font-family:serif;
    line-height: 100px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
    margin-bottom: 50px;
}
}


/*会社説明セクション
---------------------------------------------------------------------------*/
/* タイトルと説明 */
.commitment_title {
    font-size: 3rem;
    color: #3A3A3A;
    font-family:serif;
    line-height: 70px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 120px;
}

.commitment_desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #3A3A3A;
    letter-spacing: 0.5px;
    text-align: center;
}

/* グリッドレイアウト */
.commitment_grid {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}



/* 各アイテムのデザイン */
.commitment_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0px solid #ddd;
    padding: 20px;
    background: #fff;
    text-align: left;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* 画像スタイル */
.commitment_item img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    pointer-events: none;
}

/* テキスト部分 */
.commitment_text {
    margin-top: 15px;
}

.commitment_text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-align: center;
}

.commitment_text p {
    font-size: 0.9rem;
    color: #3A3A3A;
    line-height: 1.5;
    letter-spacing: 0.5px;
}


@media (max-width: 768px) {
    .commitment_grid {
        grid-template-columns: 1fr;
    }
    .commitment_title {
        font-size: 2.5rem;
        color: #3A3A3A;
        font-family:serif;
        line-height: 70px;
        font-weight: 500;
        letter-spacing: 0.7px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 120px;
    }
    .commitment_desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        color: #3A3A3A;
        letter-spacing: 0.5px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .commitment_grid {
        grid-template-columns: 1fr;
    }
    .commitment_title {
        font-size: 1.8rem;
        color: #3A3A3A;
        font-family:serif;
        line-height: 50px;
        font-weight: 500;
        letter-spacing: 0.7px;
        text-align: center;
        margin-bottom: 20px;
        margin-top: 120px;
    }
    .commitment_desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        color: #3A3A3A;
        letter-spacing: 0.5px;
        text-align: center;
    }
    .commitment_text h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.5;
        letter-spacing: 0.5px;
        text-align: center;
    }
    .commitment_text p {
        font-size: 0.9rem;
        color: #3A3A3A;
        line-height: 1.5;
        letter-spacing: 0.5px;
    }
}

/*父の日お届けセクション
---------------------------------------------------------------------------*/
.header_freemother {
    background-color: #187bb4;
    padding: 20px 0;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    margin-top: 100px;
}
.header_freemother p{
    font-size: 2rem;
    color: #fff;
    font-family:serif;
    line-height: 70px;
    font-weight: 500;
    letter-spacing: 0.7px;
    text-align: center;
}
.freemother_img {
    width: 60%;
    height: auto;
    text-align: center;
    display: block;
    object-fit: cover;
    pointer-events: none;
    margin:0 auto;
    padding-top: 50px;
}

@media (max-width: 768px) {
    .header_freemother {
        background-color: #187bb4;
        padding: 20px 0;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
        margin-top: 100px;
    }
    .header_freemother p{
        font-size: 2rem;
        color: #fff;
        font-family:serif;
        line-height: 70px;
        font-weight: 500;
        letter-spacing: 0.7px;
        text-align: center;
    }
    .freemother_img {
        width: 90%;
        height: auto;
        text-align: center;
        display: block;
        object-fit: cover;
        pointer-events: none;
        margin:0 auto;
        padding-top: 50px;
    }
}

@media (max-width: 480px) {
    .header_freemother {
        background-color: #EB5D57;
        padding: 10px 0;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
        margin-top: 100px;
    }
    .header_freemother p{
        font-size: 2rem;
        color: #fff;
        font-family:serif;
        line-height: 70px;
        font-weight: 500;
        letter-spacing: 0.7px;
        text-align: center;
    }
    .freemother_img {
        width: 100%;
        height: auto;
        text-align: center;
        display: block;
        object-fit: cover;
        pointer-events: none;
        margin:0 auto;
        padding-top: 50px;
    }
}


/*フッダーセクション
---------------------------------------------------------------------------*/
/* フッター */
.footer {
    width: 100%;
    background-color: #fff;
    padding: 50px 0px 0px 0px;
    margin-top: 20px;
    text-align: center;
    position: relative;
}

/* TOPへ戻るボタン */
.top-button {
    background-color: #187bb4;
    color: white;
    border: none;
    padding: 15px 100px;
    font-size: 1.4rem;
    font-weight: 400;
    border-radius: 20px;
    cursor: pointer;
    display: block;
    margin: 0 auto 20px;
}

/* フッターコンテンツ */
.footer-content {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo {
    width: 200px;
    margin: 15px 0px 15px 0px;
}

.site-title {
    font-size: 1rem;
    color: #3A3A3A;
    letter-spacing: 0.5px;
    margin: 10px 0px 10px 0px;
    z-index: 5;
}

/* 著作権表記 */
.copyright {
    background-color: #187bb4;
    color: white;
    padding: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        width: 100%;
        background-color: #fff;
        padding: 50px 0px 0px 0px;
        margin-top: 20px;
        text-align: center;
        position: relative;
    }
}


@media (max-width: 480px) {
    .footer {
        width: 100%;
        background-color: #fff;
        padding: 50px 0px 0px 0px;
        margin-top: 20px;
        text-align: center;
        position: relative;
    }
}