.main {
    max-width: 1800px;
    margin: 0 auto;
}

.main95 {
    max-width: 1500px;
    width: 95%;
    height: auto;
    margin: 0 auto;
}

.first {
    width: 100%;
    height: auto;
    position: relative;
}

.first_center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    /* 中央揃え */
}

.img100 {
    width: 100%;
    height: auto;
}

.first_center img {
    max-width: 80%;
    /* 画像が大きすぎる場合 */
}

.first_oukan {
    position: absolute;
    display: flex;
    bottom: 20px;
    right: 79px;
    max-width: 400px;
    gap: 10px;
}

.first_oukan img {
    width: 100%;
    height: auto;
}

.first_iro {
    color: white;
    margin: 0 auto 0.5em auto;
}

@media (max-width: 1200px) {
    .first_oukan {
        max-width: 300px;
        right: 27px;
    }
}

.cta-orange {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 300px;
    margin: 1em auto 0 auto;
    padding: 29px 40px 13px 40px;
    background: #f7931e;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    /* ✨ shineを閉じ込める */
    overflow: hidden;
}

/* shineエフェクト */

.cta-orange::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-20deg);
    /* 自動でキラーンを繰り返す */
    animation: shine 3s infinite;
}

/* アニメーション */

@keyframes shine {
    0% {
        left: -75%;
    }
    20% {
        left: 125%;
        /* ここまで動く */
    }
    100% {
        left: 125%;
        /* 残り時間は待機 */
    }
}

.cta-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* 補足テキスト */

.cta-orange .cta-sub {
    position: absolute;
    top: 6px;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    width: 100%;
    text-align: center;
}

/* メインテキスト */

.cta-orange .cta-main {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
}

/* 矢印 */

.cta-orange .cta-icon {
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
}

.slide-sp {
    display: none;
}

@media (max-width: 880px) {
    .first_oukan {
        max-width: 300px;
        right: 27px;
    }
    .slide-pc {
        display: none;
    }
    .slide-sp {
        display: block;
    }
    .first_center {
        width: 100%;
        top: 48%;
    }
    .first_oukan {
        max-width: 205px;
        right: 9px;
        bottom: 8px;
    }
}

/* PCで幅を広げる */

@media (min-width: 1024px) {
    .cta-orange {
        max-width: 720px;
    }
}

.slideshow {
    position: relative;
    width: 100%;
    height: 70vh;
    /* ←全画面ヒーローにしたいなら */
    overflow: hidden;
}

.slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
    left: 0;
    opacity: 0;
    animation: fadeZoom 25s infinite;
}

/* 各画像の開始タイミングをずらす */

.slideshow .slide:nth-child(1) {
    animation-delay: 0s;
}

.slideshow .slide:nth-child(2) {
    animation-delay: 5s;
}

.slideshow .slide:nth-child(3) {
    animation-delay: 10s;
}

.slideshow .slide:nth-child(4) {
    animation-delay: 15s;
}

.slideshow .slide:nth-child(5) {
    animation-delay: 20s;
}

/* ズーム + フェードアニメーション */

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    10% {
        opacity: 1;
        transform: scale(1.05);
    }
    30% {
        opacity: 1;
        transform: scale(1.1);
    }
    40% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

.section-title {
    text-align: left;
    margin: 3em 0;
    position: relative;
}

.section-title .subtitle {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
    font-weight: 400;
}

.section-title .title {
    font-family: "Archivo Black", sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
}

.features {
    display: flex;
    gap: 20px;
    margin: 1em auto;
    max-width: 1500px;
    padding: 1em 16px;
    overflow-x: auto;
    /* スマホで横スクロール */
    scroll-snap-type: x mandatory;
    /* スナップスクロール */
}

.feature-card {
    flex: 1;
    min-width: 320px;
    /* スマホ時に1枚ずつ見えるサイズ */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    scroll-snap-align: start;
    /* スクロールがカードごとに止まる */
}

.feature-card img {
    width: 100%;
    display: block;
    border-radius: 12px 12px 0 0;
}

.feature-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    position: absolute;
    top: 8px;
    left: 12px;
}

.feature-label {
    display: inline-block;
    margin: 12px 0 12px 10px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #f44336, #ff9800);
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
}

.feature-card p {
    padding: 0 12px 16px;
    font-size: 0.95rem;
    color: #444;
}

/* PC時に3列固定 */

@media (min-width: 768px) {
    .features {
        overflow-x: visible;
    }
    .feature-card {
        min-width: unset;
        /* 可変に戻す */
    }
}

.steps {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    padding: 1em 16px;
}

.step-card {
    flex: 1;
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 40px 10px 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 数字デザイン */

.step-num {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(229, 57, 53, 0.1);
    /* 薄い赤 (#e53935) */
    line-height: 1;
    z-index: 0;
    font-family: "Archivo Black", sans-serif;
}

/* 中身を数字より上に配置 */

.step-card h3,
.step-card p,
.step-card img {
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 16px;
}

.step-card img {
    width: 100%;
    border-radius: 12px;
    margin-top: auto;
    max-width: 200px;
}

.step_number {
    height: 60px;
}

.step-card p {
    text-align: justify;
    margin-top: 1em;
}

.step-card p span {
    color: #f44336;
}

/* スマホ対応 横スクロール */

@media (max-width: 768px) {
    .steps {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }
    .step-card {
        min-width: 260px;
        flex: none;
        scroll-snap-align: start;
    }
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 3em auto;
    padding: 0 16px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 0 0 80%;
    text-decoration: none;
    color: #333;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-img img {
    width: 100%;
    display: block;
}

.product-body {
    padding: 16px;
    text-align: left;
}

.product-body h3 {
    font-size: 1.2rem;
    margin: 0 0 6px;
    font-weight: 600;
}

.product-body .price {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px;
}

.product-body .tags {
    font-size: 12px;
    color: #285af0;
}

/* 📱 スマホのときはスライド式に変更 */

@media (max-width: 768px) {
    .products {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        /* スナップでピタッと止まる */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }
    .product-card {
        scroll-snap-align: start;
        min-width: 90%;
        /* 画面幅の8割を1カードにする */
    }
    .products::-webkit-scrollbar {
        display: none;
        /* スクロールバー非表示 */
    }
}

.link-wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 1em 0;
    /* 右寄せ */
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 50px;
    font-size: 1rem;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #aaa;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.link-more .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.link-more:hover {
    color: #e53935;
    border-color: #e53935;
}

.link-more:hover .arrow {
    transform: translateX(4px);
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 3em auto;
    padding: 0 16px;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
}

.review-header .avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
}

.review-header .username {
    font-weight: bold;
    color: #333;
}

.review-img img {
    width: 95%;
    display: block;
    border-radius: 8px;
    margin: 0.5em auto;
}

.review-body {
    padding: 12px 16px;
}

.review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* ← 最初は2行でカット */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.readmore {
    font-size: 12px;
    color: #666;
    text-decoration: none;
}

.review-tags {
    padding: 8px 16px 16px;
}

.review-tags a {
    font-size: 12px;
    color: #285af0;
    margin-right: 8px;
    text-decoration: none;
}

/* -------- スマホ時は横スクロール -------- */

@media (max-width: 768px) {
    .reviews {
        display: flex;
        /* 横並び */
        overflow-x: auto;
        /* 横スクロール有効化 */
        gap: 16px;
        /* カード間の余白 */
        padding: 1em 16px;
        scroll-snap-type: x mandatory;
        /* スナップスクロール */
    }
    .review-card {
        flex: 0 0 80%;
        /* 画面幅の80%でカード表示 */
        scroll-snap-align: start;
        /* スクロール時にピタッと止まる */
    }
    /* スクロールバー非表示（好みで） */
    .reviews::-webkit-scrollbar {
        display: none;
    }
    .reviews {
        -ms-overflow-style: none;
        /* IE/Edge */
        scrollbar-width: none;
        /* Firefox */
    }
}

.gray_section {
    background-color: #f3f3f3;
    padding: 1em 0 2em 0;
}

.news {
    max-width: 1200px;
    margin: 3em auto;
    padding: 0 16px;
}

.section-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1em;
    color: #666;
}

.section-title span {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.news-img img {
    width: 100%;
    border-radius: 8px;
    -o-object-fit: cover;
       object-fit: cover;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.news-list li {
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.news-list .date {
    font-size: 0.9rem;
    color: #555;
    margin-right: 12px;
}

.news-list .label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    background: #e53935;
    color: #fff;
    border-radius: 4px;
    padding: 2px 6px;
    margin-right: 8px;
}

.news-list p {
    margin: 6px 0 0;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.marg1 {
    margin-top: 0.5em;
}

.news-list a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
}

/* 右寄せリンク */

.link-wrapper {
    text-align: right;
    margin-top: 1em;
}

.link-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* ← 矢印との間を広げる */
    font-size: 1rem;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #aaa;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.link-more .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.link-more:hover {
    color: #e53935;
    border-color: #e53935;
}

.link-more:hover .arrow {
    transform: translateX(6px);
}

/* SP：縦並び */

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
    }
}

.message {
    position: relative;
    width: 100%;
    /* 高さ調整 */
    overflow: hidden;
}

.message-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    filter: brightness(0.6);
    /* 背景を暗くして文字を読みやすく */
}

.message-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

.message-content h2 {
    font-family: "Archivo Black", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2em;
}

.message-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1em;
}

.message-content p {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

/* スマホ対応 */

@media (max-width: 768px) {
    .message {
        height: auto;
    }
    .message-bg img {
        height: 300px;
    }
    .message-content {
        position: relative;
        transform: none;
        top: auto;
        left: auto;
        padding: 20px;
        max-width: 100%;
        color: #0b0b0b;
    }
    .message-content h3 {
        font-size: 18px;
    }
}

.gallery {
    overflow: hidden;
    max-width: 1500px;
    width: 100%;
    margin: 1em auto;
}

.gallery-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* 上下の段の間隔 */
}

.gallery-row {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.gallery-row::-webkit-scrollbar {
    display: none;
    /* スクロールバー非表示 (Chrome, Safari) */
}

.gallery-row {
    scrollbar-width: none;
    /* スクロールバー非表示 (Firefox) */
}

.gallery img {
    flex: 0 0 auto;
    width: 260px;
    height: 180px;
    margin-right: 16px;
    /* gap の代わりに margin-right */
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

/* スマホ対応 */

@media (max-width: 768px) {
    .gallery img {
        width: 70%;
        height: auto;
        margin-right: 12px;
    }
    .gallery-track {
        gap: 12px;
    }
}

.message {
    width: 96%;
    text-align: center;
    padding: 60px 2%;
}

.message-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: KosugiMaru, sans-serif;
}

.message-logo img {
    width: 40px;
    height: auto;
}

.message-logo .logo-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
}

.message-logo .highlight {
    color: #e53935;
    /* 赤強調 */
}

.message-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.message-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.footer {
    background: #111;
    color: #ddd;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-right {
    flex: 2;
    display: flex;
    gap: 60px;
    justify-content: flex-end;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: #e53935;
    /* hoverで赤強調 */
}

.footer-copy {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
    color: #666;
    border-top: 1px solid #222;
    padding-top: 10px;
}

/* スマホ対応 */

/* SNSアイコン */

.footer-sns {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.sns-icon {
    font-size: 1.4rem;
    color: #ccc;
    transition: color 0.3s, transform 0.3s;
}

.sns-icon:hover {
    transform: scale(1.2);
}

.sns-icon.insta:hover {
    color: #e4405f;
    /* Instagramカラー */
}

.sns-icon.youtube:hover {
    color: #ff0000;
    /* YouTubeカラー */
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .footer-right {
        justify-content: center;
        text-align: left;
    }
    .footer-sns {
        align-items: center;
        justify-content: center;
    }
}

/* ===== Price Section ===== */

.price-section {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
}

.price-title,
.option-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
    font-family: "Noto Serif JP", serif;
}

.price-title span,
.option-title span {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: #c62828;
    margin-top: 4px;
    letter-spacing: 1px;
}

.price-main {
    background: #faf7f5;
    padding: 30px 20px;
    border-radius: 14px;
    margin-bottom: 60px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    display: inline-block;
    min-width: 260px;
}

.price-plan {
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: #e53935;
}

.price-desc {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #555;
}

.price-amount {
    font-size: 1.8rem;
    font-weight: bold;
    color: #111;
}

.price-amount span {
    font-size: 0.9rem;
    color: #777;
}

/* ===== Option Grid ===== */

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.option-card {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 14px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.option-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.option-card h3 span {
    font-size: 0.95rem;
    color: #c62828;
    font-weight: 600;
}

.option-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* hover演出 */

.option-card:hover {
    border-color: #e53935;
    box-shadow: 0 8px 20px rgba(229, 57, 53, 0.12);
    transform: translateY(-4px);
}

.price-card {
    background: linear-gradient(135deg, #fff, #fdf7f7);
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 260px;
    position: relative;
    overflow: hidden;
}

/* 背景に光の装飾 */

.price-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 180, 180, 0.25),
        transparent 70%
    );
    transform: rotate(25deg);
}

/* hover時の演出 */

.price-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 14px 35px rgba(229, 57, 53, 0.25);
}

.price-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e53935;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.price-sub {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 18px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
}

.price-value span {
    font-size: 2.2rem;
    color: #000;
}

.price-value .tax {
    font-size: 0.9rem;
    color: #777;
    font-weight: 400;
}

.delivery-title {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    font-family: "Noto Serif JP", serif;
    position: relative;
}

.delivery-title span {
    display: block;
    font-size: 1rem;
    color: #e53935;
    letter-spacing: 2px;
    margin-top: 4px;
}

.delivery-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* ===== Grid Layout ===== */

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

/* ===== Card Style ===== */

.delivery-card {
    background: #fafafa;
    border-radius: 14px;
    padding: 28px 22px;
    text-align: left;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* 装飾ライン */

.delivery-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #e53935, #ff9800);
}

.delivery-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e53935;
    margin-bottom: 10px;
}

.delivery-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.delivery-card .note {
    font-size: 0.85rem;
    color: #777;
}

/* hover演出 */

.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(229, 57, 53, 0.15);
}

@font-face {
    font-family: "KosugiMaru";
    src: url("/fonts/KosugiMaru-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Archivo Black";
    src: url("/fonts/ArchivoBlack-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* ========== 基本 ========== */

body {
    margin: 0;
    /* ヘッダーの高さ分 */
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI",
        "Meiryo", sans-serif;
    line-height: 1.6;
}

/* ========== ヘッダー ========== */

.header {
    position: fixed;
    /* 固定 */
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    /* オーバーレイより上にしたいなら 1200 とか */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 6px;
    background: #fff;
    border-bottom: 1px solid #eee;
    height: 64px;
    /* 高さを固定しておくと安定 */
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: "KosugiMaru", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #e53935;
    text-decoration: none;
}

.logo img {
    height: 35px;
    /* 少し大きめに */
}

.logo span2 {
    color: #616161;
}

/* ========== ハンバーガー ========== */

.menu-btn {
    width: 56px;
    height: 56px;
    border: 2px solid #e53935;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    transition: all 0.3s ease;
}

.menu-btn:hover {
    transform: scale(1.05);
    color: #fff;
    background: #e53935;
}

.menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 2px;
    background: #e53935;
    transition: background 0.3s ease;
}

.red-bg .menu-btn {
    border-color: #fff;
}

.red-bg .menu-btn span {
    background: #fff;
}

/* ========== オーバーレイ ========== */

.overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #e94e77, #f78b6d, #ffb347);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    color: #fff;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.6s ease;
    z-index: 1000;
    padding: 80px 20px;
    overflow-y: auto;
}

.overlay.open {
    transform: translateY(0);
    opacity: 1;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* 閉じるボタン */

.close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 42px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s;
}

.close-btn:hover {
    transform: rotate(90deg);
}

/* ========== メニューリスト ========== */

.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    font-family: "Archivo Black", sans-serif;
}

.overlay.open .menu li {
    opacity: 1;
    transform: translateY(0);
}

.overlay.open .menu li:nth-child(1) {
    transition-delay: 0.1s;
}

.overlay.open .menu li:nth-child(2) {
    transition-delay: 0.2s;
}

.overlay.open .menu li:nth-child(3) {
    transition-delay: 0.3s;
}

.overlay.open .menu li:nth-child(4) {
    transition-delay: 0.4s;
}

.overlay.open .menu li:nth-child(5) {
    transition-delay: 0.5s;
}

.overlay.open .menu li:nth-child(6) {
    transition-delay: 0.6s;
}

.overlay.open .menu li:nth-child(7) {
    transition-delay: 0.7s;
}

.overlay.open .menu li:nth-child(8) {
    transition-delay: 0.8s;
}

.overlay.open .menu li:nth-child(9) {
    transition-delay: 0.9s;
}

.menu a {
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.menu a span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 6px;
    opacity: 0.85;
}

/* ホバーアニメーション */

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #fff;
    transition: width 0.4s;
}

.menu a:hover::after {
    width: 100%;
}

.menu-auth a {
    font-size: 16px;
}

@media (max-width: 768px) {
    .menu a {
        font-size: 27px;
    }
    .menu li {
        margin: 16px 0;
    }
    .overlay {
        padding: 62px 10px;
    }
    .menu-auth a {
        font-size: 14px;
    }
}

.first64 {
    margin-top: 64px;
}

.first100 {
    margin-top: 100px;
}

/* 動画コンテナ（余白を消す） */

.unique-video-container {
    position: relative;
    width: 100%;
    margin: 3em auto 2em auto;
}

/* サムネイル画像 */

.unique-video-thumbnail {
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 100%;
}

.unique-video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* 再生ボタン */

.unique-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 40px;
    font-weight: bold;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    pointer-events: none;
}

/* iframeを16:9のアスペクト比でレスポンシブ対応 */

.unique-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9の比率 */
    display: none;
}

.unique-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* 説明文の余白を調整 */

.unique-introduction {
    margin: 1em auto;
    font-size: 14px;
    color: #262626;
}

.uni-itemd_dd {
    width: 98%;
    margin: 1em auto;
}

.uni-itemd_dd h4 {
    font-size: 16px;
    font-weight: bold;
    color: #292929;
    margin-bottom: 10px;
}

.uni-itemd_dd h4 span {
    font-size: 14px;
}

.uni-itemd_dd h4 a {
    color: #287ad7;
}

/* ログイン・新規登録 */

.menu-auth {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    padding: 0 6px;
}

.auth-btn {
    flex: 1;
    padding: 12px 0;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    /* ← pill型に */
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ログイン（透明＋白枠） */

.menu-auth {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    justify-content: flex-start;
}

.auth-btn {
    flex: 0 0 auto;
    /* 幅いっぱいをやめる */
    min-width: 120px;
    /* 最小幅 */
    padding: 8px 20px;
    /* 小さめpadding */
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ログイン（透明＋枠線） */

.login-btn {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    font-size: 17px;
}

.login-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* 新規登録（赤グラデーション） */

.register-btn {
    background: linear-gradient(135deg, #ff6f61, #e53935);
    color: #fff;
    border: none;
}

.register-btn:hover {
    background: linear-gradient(135deg, #ff867c, #c62828);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-register-btn {
    background: linear-gradient(135deg, #ff6f61, #e53935);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(229, 57, 53, 0.3);
}

.header-register-btn:hover {
    background: linear-gradient(135deg, #ff867c, #c62828);
}

/* Reset CSS (シンプル版) */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5要素をブロック要素に */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
}

/* リストのデフォルト装飾を削除 */

ol,
ul {
    list-style: none;
}

/* 引用符を消す */

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: "";
}

/* テーブルの余白をなくす */

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic UI",
        "Meiryo", sans-serif;
}

.fadein {
    opacity: 0;
    transform: translateY(30px);
    /* 初期状態：下に30pxずらす */
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadein.show {
    opacity: 1;
    transform: translateY(0);
    /* 元の位置に戻る */
}

.campaign-popup {
    position: fixed;
    right: 8px;
    bottom: 8px;
    width: 500px;
    border-radius: 12px;
    z-index: 1000;
    padding: 10px;
    text-align: center;
}

.campaign-popup img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.campaign-popup .close-btn {
    position: absolute;
    top: 4px;
    right: 6px;
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #666;
    background-color: white;
    /* 背景色を白に */
    border-radius: 50%;
    /* 丸ボタンにしたい場合 */
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
}

/* 📱 スマホ用（画面幅 600px以下） */

@media (max-width: 1100px) {
    .campaign-popup {
        width: 400px;
        /* 小さめに */
        bottom: 6px;
        right: 6px;
        padding: 6px;
    }
}

@media (max-width: 600px) {
    .campaign-popup {
        width: 250px;
    }
}



