/* プライバシーポリシー ページ ---------------------------------------------------- */
section.privacy-policy.container {
    margin-top: 100px;
}

.privacy-policy h2 {
    margin-bottom: 20px;
    font-size: 1.9rem;
    font-weight: bold;
}

.privacy-policy h3 {
    font-weight: bold;
}

.privacy-policy p {
    margin-bottom: 14px;
}

.privacy-policy li {
    margin-bottom: 19px;
}

.privacy-policy section a {
    border-bottom: 1px solid;
    font-weight: bold;
}


/* 重量計センサーページ ------------------------------------------------------------------------------  */
/* --- ヒーローセクション --- */
.hero-sensor {
    height: 100vh;
    margin-top: 69px;
    padding-top: 62px;
    background-image: url('https://zendesignjp.com/wp-content/uploads/2026/08/mimalink-sensor-hero-mp.webp');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    overflow: hidden;
}


/*- こんな方におすすめセクション ------------------------------------------------------------------------------- */
.recommend-grid {
    grid-template-columns: repeat(3, 1fr);
}

.recommend {
    padding: 100px 0;
}

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

/*- スマホモックアップセクション ------------------------------------------------------------------------------- */
/* アプリ画面の枠（余白をゼロにして画像をピッタリはめる） */
.cta p {
    /* color: #f2f2f2; */
    /* font-size: 1.025rem; */
    margin-bottom: 0rem;
}

.sensor-android-btn {
    margin-top: 2.5rem;
}

.app-screen {
    height: 100%;
    width: 100%;
    padding: 0;
    display: block;
}

/* 読み込んだキャプチャ画像の設定 */
.app-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 縦横比を保ちつつ、フレームいっぱいに広げる */
    display: block;
}


/* --- 実機案内セクション -------------------------------------------------------- */
.device-info {
    padding: 80px 0;
    background-color: #f0fdf4;
}

.device-info-inner {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    background-color: #f9fafb;
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
}

.device-title {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.device-image {
    width: 100%;
    max-width: 400px; /* 画像が大きくなりすぎないように制限 */
}

.device-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.device-text {
    width: 100%;
}

.device-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* 注意書きのボックス（オレンジのハイライト） */
.notice-box {
    background-color: #fff7ed;
    border-left: 4px solid var(--primary-orange);
    padding: 1.25rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
}

.notice-box p {
    margin-bottom: 0;
}

.notice-subtext {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.75rem;
    line-height: 1.6;
}

/* ボタンの幅調整 */
.btn-contact {
    width: 100%; /* スマホでは画面幅いっぱいのボタンに */
    text-align: center;
}

/* --- レスポンシブ対応 (PC用) --- */
@media (min-width: 768px) {
    .hero-sensor {
        height: 800px;
        margin-top: 69px;
        padding-top: 62px;
        background-image: url('https://zendesignjp.com/wp-content/uploads/2026/08/mimalink-sensor-hero-3.webp');
        background-repeat: no-repeat;
        background-position: bottom;
        background-size: cover;
        overflow: hidden;
    }

    .device-info-inner {
        flex-direction: row;
        padding: 4rem;
        gap: 4rem;
    }
    
    .device-image {
        flex: 1;
        max-width: 45%;
    }
    
    .device-text {
        flex: 1;
    }

    .device-title {
        font-size: 2rem;
    }
    
    .btn-contact {
        width: auto; /* PCでは文字数に合わせた幅に */
    }
}

/* 特定商取引法に基づく表記ページ -------------------------------------------------------- */
section.legal-notice {
    margin-top: 70px;
}