/* ==========================================================================
   全体設定
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* フォントファミリーをここに統一 */
    font-family: 
        "Helvetica Neue", 
        "Helvetica", 
        "Arial", 
        "Yu Gothic", 
        "YuGothic", 
        "Hiragino Kaku Gothic ProN", 
        "Hiragino Sans", 
        Meiryo, 
        sans-serif;
}

body {
    color: #333333;
    background-color: #ffffff;
    line-height: 1.7;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* 120vhから100vhに変更（無駄なスクロールをなくすため） */
    padding: 40px 20px;
}

.container {
    width: 90%;
    max-width: 900px;
    text-align: center;
}

/* ==========================================================================
   ロゴエリア
   ========================================================================== */
.logo-area {
    margin: 0 0 40px 0; /* 右の40px余白があるとロゴが左にズレるため 0 に修正 */
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-main img {
    max-width: 100%; /* 親要素からはみ出さないように */
    width: 520px;    /* 画像の推奨表示サイズ（必要に応じて調整してください） */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ==========================================================================
   ステータス（準備中）エリア
   ========================================================================== */
.status-area {
    margin-bottom: 40px;
}

.status-sub {
    font-size: 1.4rem;
    color: #0066cc;
    letter-spacing: 0.1em;
}

.status-main {
    font-size: 3rem;
    color: #0066cc;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 0 auto 30px auto;
}

.message {
    font-size: 1rem;
    color: #444444;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   インフォメーションボックス（グレーの背景部分）
   ========================================================================== */
.info-box {
    background-color: #e9ecef;
    border-radius: 120px;
    text-align: left;
    padding: 30px 0; /* 上下均等に余白を配置 */
}

.info-box_inner {
    width: 75%; /* 少し横幅を広げて見やすく調整 */
    margin: 0 auto;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* 左側：住所・マップ */
.info-left {
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

.info-left .zip {
    margin-bottom: 5px;
}

.info-left .address {
    margin-bottom: 20px;
    line-height: 1.5;
}

.map-btn {
    display: inline-flex; /* 内包するアイコンと文字の縦位置を揃える */
    align-items: center;
    background-color: #0055aa;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: normal;
    transition: background-color 0.3s ease;
}

.map-btn:hover {
    background-color: #003c78;
}

.icon-external {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

.icon-external img {
    width: 1rem;
    height: auto;
}

/* 右側：連絡先 */
.info-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.border-top {
    border-top: 2px solid #ffffff;
}

/* 追加：丸枠のアイコン背景 */
.icon-circle {
    background-color: #ffffff;
    width: 40px;      /* 枠のサイズ */
    height: 40px;     /* 枠のサイズ */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;   /* 画面幅が狭まっても丸が潰れないように固定 */
}

/* 追加：丸枠の中の画像サイズ制御 */
.icon-circle img {
    width: 90%;       /* 丸の大きさに対して50%のサイズで画像を収める */
    height: auto;
    object-fit: contain;
}

.tel-link, .mail-link {
    color: #0055aa;
    text-decoration: none;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.mail-link {
    font-size: 1.15rem;
}

.tel-link:hover, .mail-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   レスポンシブ対応（スマホ・タブレット用レイアウト）
   ========================================================================== */
@media (max-width: 768px) {
    body {
        padding: 40px 15px;
    }

    .logo-area {
        margin: 0 0 40px 0; /* 右余白をリセット */
    }
    
    .logo-main img {
        width: 100%;
    }

    .status-area {
        margin-bottom: 40px;
    }

    .status-main {
        font-size: 2.3rem;
    }

    .message{
        width: 90%;
        margin: 0 auto;
        text-align: left;
    }

    .message br {
        display: none; /* スマホでは改行を解除 */
    }

    .info-box {
        border-radius: 40px; /* 角丸を少しマイルドに */
        padding: 40px 0;
    }

    .info-box_inner {
        width: 85%; /* 横幅を広げてスマホでも文字を入りやすく */
    }

    .info-grid {
        grid-template-columns: 1fr; /* 1列に縦並び */
        gap: 30px;
    }

    .info-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .map-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .info-right {
        border-top: 2px solid #ffffff; /* スマホ時は白線で区切る */
        padding-top: 20px;
    }

    .contact-item {
        justify-content: center; /* スマホ時は連絡先も中央寄せに */
    }
    
    .border-top {
        border-top: none; /* スマホ時は1行目の上の線と重複するため解除 */
    }
}