/* =========================
   style.css（画像LP + max 画面幅）
   ========================= */

/* ===== base ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

main,footer {
    width: 100%;
    margin: 0 auto;
}

picture {
    display: block;
}

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

a:hover {
    opacity: .85;
}

:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}
/* ===== layout（最大幅画面幅の中身だけ表示） ===== */
.lp-wrapper {
    width: 100%;
    margin: 0 auto;
}

/* ===== hero（FV,全て画像） ===== */
.hero {
    line-height: 0;
    position: relative;
}

.hero picture,
.hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* h1（画面上は隠す） */
.hero-text-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

/* ===== image sections（全セクション画像） ===== */
.lp-image-section {
    line-height: 0;
}

.lp-image-section picture,
.lp-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== CTA ===== */
/* CTA全体 */
.cta {
    line-height: 0;
}

.cta > picture img {
    width: 100%;
}

/* 画面幅中央固定 */
.lp-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* 背景画像 */
.cta-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* ボタン位置調整 */
.cta-button-link {
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 32%;
}

.cta-button {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== スマホ版（768px以下）の調整 ===== */
@media screen and (max-width: 768px) {
    .cta-button-link {
        width: 80%;
        margin-top: 10px;
    }

    .cta-button {
        max-width: 100%;
    }
}

/* --- サロンのご案内セクション --- */
.salon-info-section {
    background-color: #ebeae2;
}

/* 2カラムコンテナ */
.salon-info-container {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;

    /* PC表示用 */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-image {
    width: 60%;
}

.info-map {
    width: 40%;
}

/* 左：画像 */
.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 右：マップ */
.map-wrapper {
    width: 75%;
    aspect-ratio: 7 / 4;
    border-radius: 12px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* --- スマホ用（768px以下）のレスポンシブ調整 --- */
@media (max-width: 768px) {
    .salon-info-section {
        padding-bottom: 9%;
    }

    .salon-info-container {
        flex-direction: column;
    }

    .info-image,
    .info-map {
        width: 100%;
    }

    .map-wrapper {
        width: 90%;
        aspect-ratio: 16 / 9;
        margin: 0 auto;
    }
}

/* ===== footer ===== */
.site-footer {
    padding: 24px 0;
    background-color: #ffffff;
}

.footer-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-nav {
    list-style: none;
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.copyright {
    color: #444;
}
.privacy-policy,.company-info {
    color: #444;
}

/* =========================================
   会社情報・プライバシーポリシー 共通設定
========================================= */
.page-company,
.page-privacy {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    line-height: 1.8;
    color: #333;
}

.page-company h1,
.page-privacy h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* =========================================
   会社情報のデザイン（テーブル）
========================================= */
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.company-table th,
.company-table td {
    border: 1px solid #e0e0e0;
    padding: 16px 20px;
    text-align: left;
}

.company-table th {
    width: 30%;
    background-color: #f9f9f9;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
    }
    .company-table th {
        border-bottom: none;
        padding-bottom: 8px;
    }
}

/* =========================================
   プライバシーポリシーのデザイン
========================================= */
.page-privacy h2 {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #333;
}

.page-privacy p {
    margin-bottom: 20px;
}

.privacy-list {
    margin-bottom: 20px;
    padding-left: 1.5em;
}

.privacy-list li {
    margin-bottom: 8px;
}

.privacy-date {
    margin-top: 60px;
    text-align: right; 
    font-weight: bold;
}

/* ===== responsive ===== */
@media (max-width: 768px) {

    .cta-inner {
        justify-content: flex-start;
    }

    .footer-inner {
        justify-content: center;
    }
}