.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;
    font-size: 19px;
}

@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: 40px 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: 20px;
    font-weight: bold;
    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) {
    .slide-pc {
        display: none;
    }
    .slide-sp {
        display: block;
    }
    .first_center {
        width: 100%;
        top: 48%;
    }
    .first_oukan {
        max-width: 350px;
        transform: translateX(-50%);
        bottom: 8px;
        left: 50%;
        width: 80%;
    }
}

/* 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: 3;
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-menu-group {
    min-width: 140px;
}

.footer-menu-title {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid #333;
}

.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;
        gap: 24px;
    }
    .footer-menu-group {
        min-width: 45%;
    }
    .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);
}

/* ===== Cross-link Section (SEO Internal Links) ===== */

.cross-link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0 auto;
}

.cross-link-card {
    display: block;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.cross-link-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.cross-link-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.cross-link-arrow {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e53935;
    transition: letter-spacing 0.3s;
}

.cross-link-card:hover .cross-link-arrow {
    letter-spacing: 0.5px;
}

/* ===== CTA Section (SEO Internal Links) ===== */

.seo-cta-section {
    margin: 2em auto;
    padding: 32px 24px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border-radius: 16px;
    text-align: center;
    border: 1px solid #fce4ec;
}

.seo-cta-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.seo-cta-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.seo-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #e53935;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.seo-cta-link:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.seo-cta-link.secondary {
    background: #fff;
    color: #e53935;
    border: 2px solid #e53935;
}

.seo-cta-link.secondary:hover {
    background: #e53935;
    color: #fff;
}

/* ===== Homepage SEO Internal Links Grid ===== */

.seo-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 0 auto;
}

.seo-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.seo-link-item:hover {
    border-color: #e53935;
    color: #e53935;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.seo-link-item .arrow {
    margin-left: auto;
    font-size: 1.1rem;
    color: #e53935;
}

@media (max-width: 768px) {
    .cross-link-grid {
        grid-template-columns: 1fr;
    }
    .seo-links-grid {
        grid-template-columns: 1fr;
    }
    .seo-cta-links {
        flex-direction: column;
        align-items: center;
    }
}

/* AI-SEO: 定義ブロック */
.about-definition {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #faf8f5;
    border-radius: 12px;
    line-height: 1.9;
    font-size: 15px;
    color: #444;
}
.about-definition p {
    margin-bottom: 16px;
}
.about-definition strong {
    color: #c8917e;
}
.about-features {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e0d8;
}
.about-features dt {
    font-weight: 700;
    color: #c8917e;
    white-space: nowrap;
}
.about-features dd {
    margin: 0;
}

/* ============================================================
   HOMEPAGE REDESIGN v2 - Premium Wedding Aesthetic
   ============================================================ */

:root {
  --color-primary: #c8917e;
  --color-primary-light: #e8c4b8;
  --color-primary-dark: #a0725f;
  --color-accent: #e53935;
  --color-dark: #1a1a1a;
  --color-text: #333;
  --color-text-light: #777;
  --color-bg: #fffbf7;
  --color-bg-alt: #faf8f5;
  --color-border: #e8e0d8;
  --font-display: 'Cormorant Garamond', 'Noto Serif JP', serif;
  --font-body: 'Noto Sans JP', sans-serif;
  --font-accent: 'Noto Serif JP', serif;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----- HERO ----- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: heroSlide 25s infinite;
}

.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 5s; }
.hero__slide:nth-child(3) { animation-delay: 10s; }
.hero__slide:nth-child(4) { animation-delay: 15s; }
.hero__slide:nth-child(5) { animation-delay: 20s; }

@keyframes heroSlide {
  0%   { opacity: 0; transform: scale(1.08); }
  8%   { opacity: 1; transform: scale(1.04); }
  28%  { opacity: 1; transform: scale(1); }
  36%  { opacity: 0; transform: scale(0.98); }
  100% { opacity: 0; transform: scale(1.08); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.15) 0%,
    rgba(26, 26, 26, 0.4) 50%,
    rgba(26, 26, 26, 0.7) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
}

.hero__eyecatch {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  color: var(--color-primary-light);
}

.hero__title {
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}

.hero__price {
  font-family: var(--font-display);
  font-size: 1.6em;
  font-weight: 600;
  color: var(--color-primary-light);
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero__badges {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero__badges img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary-light);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .hero { min-height: 100svh; }
  .hero__badges {
    bottom: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-width: 140px;
    gap: 6px;
  }
  .hero__badges img {
    width: 60px;
    height: auto;
  }
  .hero__scroll-hint { display: none; }
}

/* ----- BUTTONS ----- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-quart);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s var(--ease-out-quart);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 145, 126, 0.4);
}

.btn-primary--large {
  padding: 22px 52px;
  font-size: 1.1rem;
}

.btn-primary--glow {
  box-shadow: 0 4px 20px rgba(200, 145, 126, 0.3);
}

.btn-primary__arrow {
  display: flex;
  transition: transform 0.3s var(--ease-out-quart);
}

.btn-primary:hover .btn-primary__arrow {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 60px;
  transition: all 0.4s var(--ease-out-quart);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

/* ----- TRUST NUMBERS ----- */
.trust-numbers {
  background: var(--color-dark);
  color: #fff;
  padding: 60px 20px;
}

.trust-numbers__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.trust-numbers__item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

.trust-numbers__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-primary-light);
  line-height: 1;
}

.trust-numbers__unit {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-primary-light);
  margin-left: 2px;
}

.trust-numbers__label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

.trust-numbers__divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

@media (max-width: 768px) {
  .trust-numbers__inner { gap: 24px; }
  .trust-numbers__divider { height: 30px; }
}

/* ----- SECTION HEADER ----- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
}

.section-header--left {
  text-align: left;
}

.section-header__label {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  font-weight: 300;
  color: var(--color-primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header__title {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.section-header__desc {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 600px;
}

.section-header--left .section-header__desc {
  max-width: none;
}

/* ----- FEATURES v2 ----- */
.features-section {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}

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

.feature-card-v2 {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transition: all 0.5s var(--ease-out-quart);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.feature-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.feature-card-v2__number {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200, 145, 126, 0.15);
  z-index: 1;
  line-height: 1;
}

.feature-card-v2__image {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.feature-card-v2__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s var(--ease-out-quart);
}

.feature-card-v2:hover .feature-card-v2__image img {
  transform: scale(1.06);
}

.feature-card-v2__body {
  padding: 28px 24px;
}

.feature-card-v2__title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.6;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.feature-card-v2__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.8;
}

.feature-card-v2__desc strong {
  color: var(--color-primary-dark);
  font-weight: 500;
}

@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ----- FLOW TIMELINE ----- */
.flow-section {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  padding: 100px 0;
}

.flow-timeline {
  position: relative;
  padding-left: 60px;
}

.flow-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-border);
}

.flow-step {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.flow-step:last-child { margin-bottom: 0; }

.flow-step__number {
  position: absolute;
  left: -60px;
  width: 48px;
  height: 48px;
  background: var(--color-bg);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.flow-step__number span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.flow-step__content h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.flow-step__content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text-light);
  line-height: 1.7;
}

.flow-step__content em {
  color: var(--color-primary-dark);
  font-style: normal;
  font-weight: 500;
}

.flow-step__visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

@media (max-width: 768px) {
  .flow-timeline { padding-left: 40px; }
  .flow-timeline::before { left: 14px; }
  .flow-step { grid-template-columns: 1fr; }
  .flow-step__number { left: -40px; width: 28px; height: 28px; }
  .flow-step__number span { font-size: 0.8rem; }
  .flow-step__visual { max-width: 200px; }
}

/* ----- MOVIES SECTION ----- */
.movies-section {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
  padding: 80px 0;
}

.movie-category {
  margin-bottom: 80px;
}

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

/* Product card enhancements for homepage */
.movies-section .product-card {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-quart);
}

.movies-section .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-quart);
}

.product-img__overlay span {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 10px 24px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 30px;
}

.product-card:hover .product-img__overlay {
  opacity: 1;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
  transition: transform 0.8s var(--ease-out-quart);
}

.price__amount {
  font-family: var(--font-display);
  font-size: 1.4em;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.price__tax {
  font-size: 0.75em;
  color: var(--color-text-light);
  font-weight: 300;
}

/* ----- LINK MORE (enhanced) ----- */
.link-more__arrow {
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease-out-quart);
}

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

/* ----- MID CTA ----- */
.mid-cta {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%);
  opacity: 0;
  transform: translateY(30px);
}

.mid-cta__inner {
  text-align: center;
}

.mid-cta__lead {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  line-height: 1.6;
}

.mid-cta__note {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

/* ----- REVEAL ANIMATION BASE ----- */
[data-reveal].revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.8s var(--ease-out-quart), transform 0.8s var(--ease-out-quart);
}

[data-reveal][data-delay="1"].revealed { transition-delay: 0.15s; }
[data-reveal][data-delay="2"].revealed { transition-delay: 0.3s; }
[data-reveal][data-delay="3"].revealed { transition-delay: 0.45s; }

/* ----- REDUCED MOTION ----- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__eyecatch, .hero__title, .hero__subtitle, .hero__cta-group {
    opacity: 1 !important; transform: none !important;
  }
}

/* ----- SERVICE NAVIGATION ----- */
.service-nav {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
}

.service-nav__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  opacity: 0;
  transform: translateY(30px);
}

.service-nav__card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--color-border, #e8e0d8);
  border-radius: 16px;
  text-decoration: none;
  color: var(--color-text, #333);
  transition: all 0.4s var(--ease-out-quart, cubic-bezier(0.25, 1, 0.5, 1));
  position: relative;
  overflow: hidden;
}

.service-nav__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary, #c8917e), var(--color-primary-light, #e8c4b8));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-quart, cubic-bezier(0.25, 1, 0.5, 1));
}

.service-nav__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary, #c8917e);
}

.service-nav__card:hover::before {
  transform: scaleX(1);
}

.service-nav__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--color-bg-alt, #faf8f5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: var(--color-primary, #c8917e);
  transition: all 0.3s ease;
}

.service-nav__card:hover .service-nav__icon {
  background: var(--color-primary, #c8917e);
  color: #fff;
}

.service-nav__title {
  font-family: var(--font-accent, 'Noto Serif JP', serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark, #1a1a1a);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.service-nav__desc {
  font-family: var(--font-body, 'Noto Sans JP', sans-serif);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--color-text-light, #777);
  line-height: 1.6;
  flex-grow: 1;
}

.service-nav__arrow {
  display: block;
  margin-top: 16px;
  font-size: 1.1rem;
  color: var(--color-primary, #c8917e);
  transition: transform 0.3s ease;
  align-self: flex-end;
}

.service-nav__card:hover .service-nav__arrow {
  transform: translateX(6px);
}

@media (max-width: 1024px) {
  .service-nav__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .service-nav__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-nav__card {
    flex-direction: row;
    align-items: center;
    padding: 20px;
    gap: 16px;
  }
  .service-nav__icon {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .service-nav__desc {
    display: none;
  }
  .service-nav__arrow {
    margin-top: 0;
    margin-left: auto;
  }
}

@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;
    }
}



