:root {
    --primary-color: rgb(13, 92, 47);
}

body {
    font-family: 'Helvetica Neue', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
    line-height: 1.8;
}

header.hero {
    background: url('https://webgrave.net/wp-content/uploads/2025/03/Untitled-13-1.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 10rem 0;
    position: relative;
}

header.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

header.hero .container {
    position: relative;
    z-index: 2;
}

section {
    padding: 60px 0;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: rgb(9, 66, 33);
    border-color: rgb(9, 66, 33);
}

#cta .btn {
    padding: 15px 30px;
    font-size: 1.25rem;
}

footer {
    padding: 20px 0;
}

.app-badge {
    height: 60px;
    /* 共通の高さに設定 */
    width: auto;
    /* 幅は高さに合わせて自動調整 */
    max-width: 100%;
    /* 親要素からはみ出さないように */
}

@media (max-width: 767.98px) {
    .app-badge {
        height: 50px;
        /* スマホでの高さを少し小さく */
    }
}

.google-play-badge {
    height: 70px;
    /* Google Playバッジの高さ調整 */
}

@media (max-width: 767.98px) {
    .google-play-badge {
        height: 60px;
        /* スマホでのGoogle Playバッジの高さ調整 */
    }
}

.btn-outline-primary {
    color: #000;
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:active,
.btn-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    background-color: rgb(9, 66, 33) !important;
    border-color: rgb(9, 66, 33) !important;
}