:root {
    --color-navy: #002891;
    --color-blue: #2b55c6;
    --color-bg: #f5f7fa;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: var(--color-bg);
    line-height: 1.6;
}

/* ================================
   LP コンテナ・共通画像
   ================================ */
.lp-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.lp-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   CTA ボタン
   ================================ */
.cta-image-wrapper {
    position: relative;
    width: 100%;
}

.cta-floating-btn {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 850px;
    display: block;
    z-index: 10;
}

.cta-floating-btn img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 15px rgba(0, 55, 163, 0.4));
    transition: filter 0.3s ease;
}

.cta-floating-btn:hover img {
    filter: drop-shadow(0 10px 15px rgba(0, 55, 163, 0.4)) brightness(1.15);
}

@keyframes pulse-btn {
    0%   { transform: translate(-50%, -50%) scale(1); }
    50%  { transform: translate(-50%, -50%) scale(1.03); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.pulse {
    animation: pulse-btn 2s infinite;
}

/* ================================
   FAQ アコーディオン
   ================================ */
.faq-image-wrapper {
    position: relative;
    width: 100%;
    container-type: inline-size;
    color: white;
    background-color: var(--color-navy);
    /* ドット柄のみの画像：アコーディオン展開に合わせて伸縮 */
    background-image: url('faq-dots-bg.webp');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top center;
    min-height: 44cqw;
}

/* 上部ヘッダー（よくある質問タイトル等）を正しい縦横比で上書き */
.faq-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 44cqw;
    background-image: url('よくある質問背景.webp');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top center;
    z-index: 1;
    pointer-events: none;
    /* 下端をフェードアウトして境目を自然に消す */
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

/* 背景用 img タグは非表示にする */
.faq-image-wrapper > img {
    display: none;
}

.faq-accordion-overlay {
    position: relative;
    z-index: 2;
    margin-top: 44cqw;
    padding-bottom: 15cqw;
    width: 82cqw;
    margin-left: auto;
    margin-right: auto;
}

.faq-item-new {
    border-bottom: 0.2cqw solid white;
}

.faq-q-new {
    padding: 4.5cqw 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    list-style: none;
}

.faq-q-new::-webkit-details-marker {
    display: none;
}

.faq-q-num {
    font-size: 6.5cqw;
    font-weight: 900;
    margin-right: 3cqw;
    line-height: 1;
    font-family: "Arial Black", Arial, sans-serif;
    letter-spacing: 0.1cqw;
}

.faq-text-new {
    flex-grow: 1;
    font-size: 3.2cqw;
    font-weight: bold;
    line-height: 1.6;
}

.faq-icon-plus {
    width: 6cqw;
    height: 6cqw;
    border: 0.2cqw solid white;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    margin-left: 2cqw;
    transition: transform 0.3s;
}

.faq-icon-plus::before,
.faq-icon-plus::after {
    content: '';
    position: absolute;
    background-color: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon-plus::before {
    width: 3.2cqw;
    height: 0.2cqw;
}

.faq-icon-plus::after {
    width: 0.2cqw;
    height: 3.2cqw;
}

details[open] .faq-icon-plus {
    transform: rotate(45deg);
}

.faq-a-new {
    padding: 0 0 5cqw 9.5cqw;
    font-size: 3cqw;
    line-height: 1.7;
    color: #e2e8f0;
}

/* ================================
   フッター・プライバシーリンク
   ================================ */
.footer-image-wrapper {
    position: relative;
    width: 100%;
    container-type: inline-size;
}

.privacy-link-text {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5cqw;
    font-weight: bold;
    text-decoration: underline;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s;
}

.privacy-link-text:hover {
    opacity: 0.7;
}

/* ================================
   スライダー（Point 2〜6）
   ================================ */
.point-image-wrapper {
    position: relative;
    width: 100%;
    container-type: inline-size;
}

.inner-slider-overlay {
    position: absolute;
    top: 40cqw;
    left: 50%;
    transform: translateX(-50%);
    width: 83.3cqw;
    z-index: 2;
}

.point6-slider-overlay {
    top: 42.75cqw;
}

.inner-swiper {
    width: 100%;
    height: 100%;
    padding-bottom: 85px;
}

.inner-swiper .swiper-slide {
    text-align: center;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ページネーション（点々） */
.inner-swiper .swiper-pagination {
    bottom: 15px !important;
}

.inner-swiper .swiper-pagination-bullet {
    background: var(--color-navy);
    opacity: 0.3;
    width: 14px;
    height: 14px;
}

.inner-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* 矢印ボタン */
.inner-swiper .swiper-button-prev,
.inner-swiper .swiper-button-next {
    background-color: var(--color-blue);
    color: #ffffff;
    border-radius: 50%;
    bottom: 0;
    top: auto;
    width: 44px;
    height: 44px;
    margin: 0;
}

.inner-swiper .swiper-button-prev::after,
.inner-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
}

.inner-swiper .swiper-button-prev {
    left: 20%;
}

.inner-swiper .swiper-button-next {
    right: 20%;
}

/* ================================
   レスポンシブ（スマホ）
   ================================ */
@media (max-width: 768px) {
    .cta-floating-btn {
        width: 95%;
        top: 46%;
    }

    .cta-floating-btn img {
        filter: none;
    }

    .cta-floating-btn:hover img {
        filter: brightness(1.15);
    }

    .inner-swiper {
        padding-bottom: 50px;
    }

    .inner-swiper .swiper-button-prev,
    .inner-swiper .swiper-button-next {
        width: 32px;
        height: 32px;
        bottom: 5px;
    }

    .inner-swiper .swiper-button-prev::after,
    .inner-swiper .swiper-button-next::after {
        font-size: 14px;
    }

    .inner-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .inner-swiper .swiper-pagination {
        bottom: 16px !important;
    }
}
