/* Hide page titles on static pages */
.page .entry-title {
    display: none;
}

/* Hide title on static front page */
.home .entry-title {
    display: none;
}


/* --- 基本設定 --- */
:root {
    --primary-orange: #f97316;
    --primary-orange-hover: #ea580c;
    --primary-green: #4c7845;
    --primary-green-hover: #16a34a;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --bg-light: #f9fafb;
    --bg-feature: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- 共通クラス --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 9999px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-green {
    background-color: var(--primary-green);
    color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-green:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-2px);
}

.btn-orange {
    background-color: var(--primary-orange);
    color: #fff;
    padding: 16px 32px;
    font-size: 1.025rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-orange:hover {
    background-color: var(--primary-orange-hover);
    transform: scale(1.05);
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2.2rem;
    text-align: center;
}

.section-desc {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 4rem;
}

.only-pc {
    display: none;
}

/* reCAPTCHAのバッジを隠す */
.grecaptcha-badge {
    visibility: hidden;
}

/* --- ヘッダー --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(251, 251, 251, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo-icon {
    background-color: #ffedd5;
    color: var(--primary-orange);
    padding: 8px;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: none;
    gap: 2rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* --- ヒーローセクション --- */
.hero {
    height: 580px;
    margin-top: 69px;
    padding-top: 62px;
    background-image: url('https://zendesignjp.com/wp-content/uploads/2026/02/hero-2.webp');
    background-repeat: no-repeat;
    background-position: calc(-760px + 1vw) 0px;
    background-size: cover;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background-color: #ffedd5;
    color: #ea580c;
    padding: 4px 16px;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-content {
    padding: 25px 10px;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.14rem;
    margin-bottom: 1.5rem;
    color: #f2f2f2;
}

.hero h1 span {
    color: var(--primary-orange);
}

.hero-text {
    font-size: 1.025rem;
    color: #f2f2f2;
    /* color: var(--text-gray); */
    margin-bottom: 2rem;
    line-height: 1.8;
}

.google-play-btn {
    display: flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    width: fit-content;
    transition: background-color 0.3s;
    text-align: left;
}

.google-play-btn:hover {
    background-color: #333;
}

.google-play-btn i {
    font-size: 1.75rem;
    margin-right: 12px;
}

.play-store-text {
    font-size: 0.75rem;
    line-height: 1;
}

.play-store-title {
    font-size: 1.25rem;
    font-weight: bold;
    line-height: 1.2;
}

/* スマホモックアップ関連 */
.mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-bg-green {
    position: absolute;
    background-color: #bbf7d0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    top: 20px;
    right: 0;
    z-index: 0;
}

.mockup-bg-orange {
    position: absolute;
    background-color: #fed7aa;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    bottom: 0;
    left: -20px;
    z-index: 0;
}

.phone-frame {
    position: relative;
    z-index: 10;
    border: 12px solid #333;
    border-radius: 30px;
    background: #fbfbfb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 280px;
    height: 580px;
    /* 画像のアスペクト比に合わせて調整 */
    overflow: hidden;
    margin: 0 auto;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: #333;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 20;
}

/* アプリ画面再現（HTML版） */
.app-screen {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 48px 16px 32px 16px;
    text-align: center;
}

.app-alert {
    background-color: #fff7ed;
    color: #ea580c;
    font-size: 0.7rem;
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #fed7aa;
    margin-bottom: 24px;
}

.app-main-btn {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--primary-orange);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fbfbfb;
    margin: 0 auto;
    cursor: pointer;
    transition: background 0.3s;
}

.app-main-btn:hover {
    background-color: var(--primary-orange-hover);
}

/* --- 特徴セクション --- */
.features {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.feature-card {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    margin: 0 auto 1.5rem auto;
}

.icon-orange {
    background-color: #ffedd5;
    color: var(--primary-orange);
}

.icon-green {
    background-color: #dcfce7;
    color: var(--primary-green);
}

.icon-blue {
    background-color: #dbeafe;
    color: #3b82f6;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    font-weight: bold;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    text-align: left;
}

/* --- 使い方セクション --- */
.how-to {
    padding: 80px 0;
    background-color: #f0fdf4;
    /* 薄い緑 */
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    background-color: #fbfbfb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbfbfb;
    margin-bottom: 1rem;
}

.num-1 {
    background-color: var(--primary-orange);
}

.num-2 {
    background-color: var(--primary-green);
}

.num-3 {
    background-color: #f87171;
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

.step-icon {
    font-size: 2.5rem;
    margin-top: 1rem;
}

.step-alert-border {
    border-left: 4px solid #f87171;
}

/* --- おすすめの方 --- */
.recommend {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.recommend-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.2rem;
}

.recommend-card {
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
}

.recommend-card:hover {
    background-color: #fff7ed;
}

.recommend-card-img {
    height: auto;
}

.recommend-card-img img {
    max-width: 100%;
    height: 100%;
    border-radius: 5px;
}

.recommend-card-text {
    padding: 17px 0 17px;
    background-color: #f9fafb;
}

.recommend-card p {
    font-weight: bold;
    letter-spacing: 0.05rem;
    line-height: 1.6;
}

/* --- CTAセクション --- */
.cta {
    padding: 80px 0;
    background-color: #1f2937;
    color: #f2f2f2;
    text-align: center;
}

.cta .container {
    max-width: 1200px;
    margin: 0 auto 50px;
    padding: 0 24px;
}

.cta h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.cta p {
    color: #f2f2f2;
    font-size: 1.025rem;
    margin-bottom: 2.5rem;
}

/* --- フッター --- */
footer {
    /* margin-bottom: -19px; */
    /* padding-bottom: 40px; */
    background-color: #111827;
    color: #9ca3af;
    padding: 7px 10px 7px 0;
    font-size: 0.875rem;
    text-align: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    color: #fbfbfb;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: disc;
    padding-left: 1.25rem;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a:hover {
    color: #fbfbfb;
}

.copyright {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

/* --- レスポンシブ対応 (メディアクエリ) --- */
@media (min-width: 768px) {
    .hero {
        background-position: -460px 0px;
    }

    .nav-links {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

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

    .step-card {
        flex-direction: row;
        text-align: left;
        padding: 1.5rem 2rem;
    }

    .step-number {
        margin-bottom: 0;
        margin-right: 2rem;
    }

    .step-icon {
        margin-top: 0;
        margin-left: 2rem;
    }

    .recommend-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .only-pc {
        display: block;
    }

    .hero {
        height: 629px;
        margin-top: 88px;
        background-position: 0px -30px;
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: bold;
        color: #f2f2f2;
    }

    .app-dl {
        display: flex;
    }

    .app-dl-android.only-pc {
        width: 77px;
        margin-left: 23px;
    }

    .recommend h2 {
        margin-bottom: 2.6rem;
    }

    .recommend-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .recommend-card-img {
        height: 200px;
    }

    .recommend-card-img img {
        max-width: 100%;
        height: 100%;
        border-radius: 5px;
    }

    .cta .container {
        max-width: 1200px;
        margin: 0 auto 50px;
        padding: 0 24px;
    }

    .cta .app-dl-android.only-pc {
        width: 88px;
        margin: 41px auto 0;
    }

}