/* =========================================
  変数（React版と同じ色を再現）
========================================= */
:root {
    --white: #fff;
    --black: #000;
    --yellow: #fff100;
    --gray: #ccc;
}

/* =========================================
  スクロール時フェードイン
========================================= */
.landing-page-container .hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.landing-page-container .fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
  星背景
========================================= */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #080f1c;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    display: block;
    background-color: #e1e1e1;
    border-radius: 50%;
    box-shadow: 0 0 4px 2px rgba(255,255,255,0.1);
    opacity: 0;
    animation: twinkle 6s infinite;
    z-index: -1;
}

@keyframes twinkle {
    0% { opacity: 0; }
    50% { transform: translateZ(0) scale(1.1); opacity: 1; }
    100% { opacity: 0; transform: translateZ(0) scale(1); }
}

/* =========================================
  コンテナ
========================================= */
.landing-page-container {
    position: relative;
    color: var(--white);
    padding: 5.4rem 1rem 0;
    z-index: 1;
    height: 100vh;
    overflow-y: auto;
    text-align: center;
}

.landing-page-container p.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 10rem;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
}
.landing-page-container .logo {
    width: 90px;
    margin-left: 1.6rem;
}

/* =========================================
  MV
========================================= */
.mv {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8rem 0 3.2rem;
    letter-spacing: .04em;
    line-height: 1.2;
    position: relative;
}

.it-word {
    font-size: 6.4rem;
    font-family: "Berkshire Swash", serif;
    margin: 0.4rem 0;
    color: var(--white);
}

.floating-icon {
    position: absolute;
    top: 80px;
    left: calc(50% - 25px);
    transform: translateX(-50%);
    pointer-events: none;
    animation: moveIcon 8s ease-in-out infinite;
}

.floating-icon .add-wish-icon {
    width: 50px;
    height: 50px;
    animation: float 3s ease-in-out infinite alternate;
}

.word-wrapper {
    font-size: 6.4rem;
    font-family: "Berkshire Swash", serif;
    margin-right: 0.5rem;
    display: inline-block;
    color: var(--white);
    transition: color 1s ease-in-out;
}

@keyframes moveIcon {
    0% { transform: translateX(-180px) rotate(-10deg); }
    50% { transform: translateX(180px) rotate(10deg); }
    100% { transform: translateX(-180px) rotate(-10deg); }
}

@keyframes float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* =========================================
  共通テキスト
========================================= */
.landing-page-container h3 {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: .2em;
    margin-bottom: 2.4rem;
}
.landing-page-container p {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: .4em;
    line-height: 2;
    text-shadow: 0 0 10px var(--black);
}
.landing-page-container .p-color {
    color: var(--yellow);
    font-weight: 400;
}

/* =========================================
  セクション 1（トップ）
========================================= */
.landing-page-top,
.service-intro,
.community-benefits {
    margin-bottom: 8rem;
}

.landing-page-top h3 {
    font-size: 3.2rem;
    text-shadow: 0 0 16px var(--white);
}
.landing-page-top p {
    font-size: 2rem;
    text-shadow: 0 0 16px var(--white);
    margin-bottom: 12rem;
}

/* =========================================
  セクション 2（Wishバブル）
========================================= */
.lp-wish-card-wrapper {
    position: relative;
    display: inline-block;
    width: 320px;
}

.service-intro p {
    margin-bottom: 16rem;
}
.lp-wish-card {
    width: 100%;
}

.lp-wish-bubbles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 1;
    transition: opacity 1s ease-out;
}
.lp-wish-bubbles.fade-out { opacity: 0; }

.lp-wish-bubble {
    position: absolute;
    background-color: var(--white);
    color: var(--black);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    font-size: 1.4rem;
    max-width: 170px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.lp-wish-bubble.fade-in-out-LP {
    transform: scale(1) translateY(0);
    animation: fadeInOut-LP 1s ease-in-out forwards;
    opacity: 1;
}

@keyframes fadeInOut-LP {
    0% { transform: scale(0.8) translateY(20px); opacity: 0; }
    50% { transform: scale(1.1) rotate(var(--rotate-angle)); opacity: 1; }
    100% { transform: scale(1) rotate(var(--rotate-angle)); opacity: 1; }
}

.lp-wish-bubble::after {
content: "";
position: absolute;
bottom: -16px;
left: 50%;
transform: translateX(-50%);
border-width: 10px;
border-style: solid;
border-color: var(--white) transparent transparent transparent;
z-index: 0;
}



/* 6つのバブル位置 */
.lp-wish-bubble:nth-child(1) { top: 10px; left: -5px; transform: rotate(-8deg); }
.lp-wish-bubble:nth-child(2) { top: 30px; right: -40px; background: var(--gray); transform: rotate(15deg); }
.lp-wish-bubble:nth-child(2)::after {
border-color: var(--gray) transparent transparent transparent;
}
.lp-wish-bubble:nth-child(3) { top: -40px; left: -30px; background: var(--yellow); transform: rotate(-12deg); }
.lp-wish-bubble:nth-child(3)::after {
border-color: var(--yellow) transparent transparent transparent;
}
.lp-wish-bubble:nth-child(4) { top: -30px; left: 140px; transform: rotate(12deg); }
.lp-wish-bubble:nth-child(5) { top: -86px; left: 80px; background: var(--gray); transform: rotate(-2deg); }
.lp-wish-bubble:nth-child(5)::after {
border-color: var(--gray) transparent transparent transparent;
}
.lp-wish-bubble:nth-child(6) { top: -78px; right: -17px; background: var(--yellow); transform: rotate(19deg); }
.lp-wish-bubble:nth-child(6)::after {
border-color: var(--yellow) transparent transparent transparent;
}

/* =========================================
  特徴セクション
========================================= */
.service-features {
    margin-bottom: 12rem;
}
.service-features__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.4rem;
}
.service-features .feature {
    background: var(--white);
    color: var(--black);
    padding: 2.4rem;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    box-sizing: border-box;
}
.service-features .feature h4 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.6rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid;
}
.service-features .feature p {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: .1em;
    line-height: 1.2;
    text-align: left;
    text-shadow: none;
}
.service-features .feature .lp-tap {
    height: 50px;
    margin-bottom: 1.6rem;
}
.service-features .feature .fa-list-check,
.service-features .feature .fa-people-group {
    font-size: 50px;
    margin-bottom: 1.6rem;
}


/* =========================================
  コミュニティセクション
========================================= */
.community-benefits {
    position: relative;
}
.community-benefits .circle-wrapper {
    text-align: center;
    position: relative;
    display: inline-block;
    width: 400px;
    height: auto;
}
.community-benefits .lp-community { 
    width: 240px;
    display: block;
    margin: 0 auto 2rem;
}

.community-benefits .semi-circle-text {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    overflow: inherit;
}

.community-benefits .semi-circle-text text,
.community-benefits .semi-circle-text textPath {
    font-size: 3rem;
    font-weight: 600;
    fill: var(--white);
}

.community-benefits #curve {
    stroke: none;
}

/* =========================================
  最下部フッター前
========================================= */
.landing-page-footer {
    max-width: 800px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(2px);
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 10rem auto 12rem;
    text-align: center;
    color: var(--white);
    box-shadow: 0 0 6px 4px var(--yellow), 0 0 6px 4px var(--yellow) inset;
}
.landing-page-footer h2 {
    font-size: 2.2rem;
    text-shadow: 0 0 16px var(--yellow);
    color: var(--yellow);
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .4em;
    margin-bottom: 3rem;
}
.get-started-button {
    display: block;
    width: 200px;
    margin: 2rem auto 0;
    padding: 1.4rem 2.4rem;
    border-radius: 30px;
    background: var(--white);
    color: var(--black);
    font-size: 1.5rem;
}
.get-started-button:hover {
    color: var(--black);
}


.app-download {
    background: #ffffff;
    margin: 2rem auto;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}
.app-download .gp-badge {
    width: 240px;
    margin-bottom: 1rem;
}
.download-main {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.landing-page-container .download-sub {
    font-size: 1.5rem;
    color: #5a5a5a;
    letter-spacing: .2em;
    text-shadow: none;
}







.footer {
    background-color: var(--black);
    padding: 1rem 1rem 2rem;
    text-align: center;
    color: var(--white);
}

.footer ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.4rem;
    margin: 1.6rem 0 2.4rem;
}
.footer li {
    text-decoration: underline;
}
.footer li:hover {
    text-decoration: none;
}

.footer .logo {
    width: 200px;
}

.footer__amazon {
    font-size: 1.2rem!important;
    margin: 1.6rem .4rem;
}

.footer small {
    display: block;
}



@media screen and (max-width: 768px) {
    .footer ul {
        gap: 1.6rem;
        margin: 1.6rem 0;        
    }
}