/* ===== 蝓ｺ譛ｬ險ｭ螳� ===== */



.lp-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lp-wrapper html {
    scroll-behavior: smooth;
}

.lp-wrapper body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #FFFFFF;
}

.lp-wrapper h1,
.lp-wrapper h2,
.lp-wrapper h3,
.lp-wrapper h4,
.lp-wrapper h5,
.lp-wrapper h6 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.lp-wrapper h1 {
    font-size: 2.5rem;
}

.lp-wrapper h2 {
    font-size: 2rem;
}

.lp-wrapper h3 {
    font-size: 1.5rem;
}

.lp-wrapper p {
    margin-bottom: 1rem;
}

.lp-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.lp-wrapper a {
    color: #FF9800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-wrapper a:hover {
    color: #E65100;
}

.lp-wrapper .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-wrapper .section-padding {
    padding: 80px 0;
}

.lp-wrapper #products2.section-padding{
    padding:0 ; 
}

.lp-wrapper .section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.lp-wrapper .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FF9800;
}

.lp-wrapper .bg-light {
    background-color: #F9F9F9;
}

.lp-wrapper .center {
    text-align: center;
}


/* ===== 繝壹�繧ｸ蜀�リ繝薙ご繝ｼ繧ｷ繝ｧ繝ｳ ===== */
.page-navigation {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-links {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #333333;
    font-weight: 500;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FF9800;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #E65100;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== 繝輔ぃ繝ｼ繧ｹ繝医ン繝･繝ｼ ===== */
#hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.current {
    opacity: 1;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    margin-left: 10%;
    position: relative;
    z-index: 1;
}


.hero-content h1 {
    color: #E65100;
    margin-bottom: 15px;
}

.sub-copy {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.period-info {
    max-width: 500px;
    margin: 20px 0;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    border-left: 4px solid #FF9800;
    border-right: 4px solid #FF9800;
}

.period-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 500;
}

.period-info p:last-child {
    margin-bottom: 0;
}

.period-info span {
    background-color: #FF9800;
    color: white;
    padding: 3px 10px;
    border-radius: 3px;
    margin-right: 10px;
    font-size: 0.9rem;
    white-space: nowrap;

}

.period-info.center {
    margin: 2rem auto;
    text-align: center;
}

.limited-sale{
    font-size:1.5rem;
    text-align: center;
    font-weight:800;

}


.lp-wrapper .cta-button {
    display: block;
    background-color: #FF9800;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    max-width:300px;
    margin:30px auto 0 ;
}

.lp-wrapper .cta-button:hover {
    background-color: #E65100;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}



.lp-wrapper .cta-button.large {
    padding: 18px 36px;
    font-size: 1.3rem;
}


/* ===== 蜈ｱ諢溘�謔ｩ縺ｿ繝ｻ蝠城｡梧署襍ｷ ===== */
#about_melon {
    background-color: #F9F9F9;
}

.about_melon-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about_melon-content h2 {
    color: #E65100;
    margin-bottom: 30px;
}

.about_melon-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ===== 螟募ｼｵ繝｡繝ｭ繝ｳ縺ｮ鬲�鴨 ===== */
.appeal-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.appeal-item:last-child {
    margin-bottom: 0;
}

.appeal-item.reverse {
    flex-direction: row-reverse;
}

.appeal-image {
    flex: 1;
    padding: 0 20px;
}

.appeal-image img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.appeal-text {
    flex: 1;
    padding: 0 20px;
}

.appeal-text h3 {
    color: #E65100;
    margin-bottom: 20px;
}

.lisence {
    margin-top: 20px;
    text-align: center;
}

.lisence img {
    max-width: 150px;
    margin: 0 auto;
}

/* ===== 縺雁ｮ｢讒倥�螢ｰ繝ｻ繝ｬ繝薙Η繝ｼ ===== */
.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 350px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid #FF9800;
}

.testimonial-content {
    text-align: center;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: #E65100;
}

.rating {
    color: #FFD700;
    margin-top: 10px;
}

/* ===== 蝠�刀繝ｩ繧､繝ｳ繝翫ャ繝� ===== */
.products-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;

    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #FF9800;
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-gold-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #DAAF08 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #DAAF08 90%, #DAAF08 100%);
    background-size: 1000% 100%;
    animation: shine 2s infinite cubic-bezier(.62, .28, .23, .99);
    /* 繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ蜷阪ｒ螟画峩 */
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-silver-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #757575 85%, #757575 90%, #757575 100%);
    background-size: 1000% 100%;
    animation: shine 2s infinite cubic-bezier(.62, .28, .23, .99);
    /* 繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ蜷阪ｒ螟画峩 */
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.9rem;
}

.product-amount {
    position: absolute;
    top: 3rem;
    right: 10px;
    background-color: rgb(199, 15, 15);
    color: white;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.9rem;
}


.product-amount .limit {
    font-size: smaller;
}


.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    height: 50px;
}

.product-desc {
    color: #666666;
    font-size: 0.9rem;
    margin-bottom: 15px;
    height: 60px;
    display:none;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 15px;
}

.product-price span {
    font-size: 0.9rem;
    font-weight: 400;
}

.add-to-cart {
    display: block;
    width: 100%;
    background-color: #FF9800;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: #E65100;
}

.more_melons{
    text-align:center;

    justify-content:center;
    align-items: center;
    width: 600px;
    max-width: fit-content;
    margin:0 auto 4rem;
}

.more_melons p{
    font-weight:800;
    font-size:24px;
    background-color:#FF9800;
    color:white;
    padding:0.5rem 2rem;
    border-radius:15px;


}

.gift-options {
    margin-top: 50px;
}

.gift-options h3 {
    text-align: center;
    margin-bottom: 30px;
}

.gift-option-container {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.gift-option {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    max-width: 250px;
    text-align: center;
}

.gift-option img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.gift-option h4 {
    margin-bottom: 10px;
}

.option-price {
    font-weight: 700;
    color: #E65100;
    margin-top: 10px;
}

/* ===== 雉ｼ蜈･縺ｮ繝｡繝ｪ繝�ヨ繝ｻ螳牙ｿ�─ ===== */
.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.benefit-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 3rem;
    color: #FF9800;
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #E65100;
    margin-bottom: 15px;
}

.how-to-eat h3 {
    text-align: center;
    margin-bottom: 30px;
}

.how-to-eat-content {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.how-to-eat-image {
    flex: 1;
    width: 100%;
    height: auto;
}

.how-to-eat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-to-eat-text {
    flex: 1;
    padding: 30px;
}

.how-to-eat-text h4 {
    color: #E65100;
    margin-top: 20px;
    margin-bottom: 10px;
}

.how-to-eat-text h4:first-child {
    margin-top: 0;
}

.how-to-eat-text p {
    margin-bottom: 5px;
}

/* ===== FAQ ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 152, 0, 0.05);
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #FF9800;
    transition: all 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* ===== 繧ｯ繝ｭ繝ｼ繧ｸ繝ｳ繧ｰ繝ｻ譛邨りｳｼ蜈･蟆守ｷ� ===== */
.closing-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.closing-content h2 {
    color: #E65100;
    margin-bottom: 30px;
}

.countdown {
    margin: 30px 0;
}

.countdown p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

#countdown-timer {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background-color: #FF9800;
    color: white;
    border-radius: 10px;
    padding: 15px;
    min-width: 80px;
    text-align: center;
}

.countdown-item span {
    display: block;
}

#countdown-days,
#countdown-hours,
#countdown-minutes,
#countdown-seconds {
    font-size: 2rem;
    font-weight: 700;
}

.countdown-label {
    font-size: 0.9rem;
    margin-top: 5px;
}

.contact-info {
    margin-top: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info i {
    color: #FF9800;
    margin-right: 10px;
}

.contact-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: #2E7D32;
    color: white;
}

/* ===== 繝輔ャ繧ｿ繝ｼ ===== */
#footer {
    background-color: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    width: 150px;
    filter: brightness(0) invert(1);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.footer-links ul li {
    margin-right: 20px;
}

.footer-links ul li a {
    color: white;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: #FF9800;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    font-size: 1.5rem;
}

.footer-social a:hover {
    color: #FF9800;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.spbr {
    display: none;
}

/* ===== 繝ｬ繧ｹ繝昴Φ繧ｷ繝門ｯｾ蠢� ===== */
@media (max-width: 1024px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-content {
        max-width: 500px;
        margin-left: 5%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .appeal-item {
        margin-bottom: 60px;
    }

    .how-to-eat-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        justify-content: center;
        padding: 5px 0;

    }

    .nav-links li {
        margin: 0 10px;

        white-space: nowrap;
    }

    .nav-links li:first-child {}

    .nav-links li:last-child {}

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .appeal-item,
    .appeal-item.reverse {
        flex-direction: column;
        margin-bottom: 50px;
    }

    .appeal-image,
    .appeal-text {
        width: 100%;
        padding: 0;
    }

    .appeal-image {
        margin-bottom: 20px;
    }

    .how-to-eat-content {
        flex-direction: column;
    }

    .how-to-eat-image {
        width: 100%;
        height: 250px;
    }

    .gift-option-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-links ul {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer-links ul li {
        margin: 0 10px 10px;
    }

    .spbr {
        display: block;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 40px 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-content {
        padding: 30px 20px;
    }

    

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        ;
    }

    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }

    #countdown-days,
    #countdown-hours,
    #countdown-minutes,
    #countdown-seconds {
        font-size: 1.5rem;
    }

    .spbr {
        display: block;
    }
}

@keyframes shine {

    /* 繧｢繝九Γ繝ｼ繧ｷ繝ｧ繝ｳ蜷阪ｒ螟画峩 */
    0% {
        background-position: 0% 50%;
        /* 髢句ｧ区凾縺ｯ蜈��菴咲ｽｮ */
    }

    100% {
        background-position: 100% 50%;
        /* 譛蠕後↓遘ｻ蜍� */
    }
}

@media (max-width: 640px) {
    .product-card {
        max-width: 90%;
        margin: 0 auto;
    }
}