/* ==========================================================================
   全体の設定
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
   background: linear-gradient(135deg, #fbe856 0%, #e7cb36 100%);
    color: #333333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* 縦並び中央配置のためのラッパー */
.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px; /* コンテナの最大幅と合わせる */
    animation: fadeInUp 1.2s ease-out forwards;
}

/* ロゴのスタイル（レスポンシブ対応） */
.logo {
    display: block;
    max-width: 80%;
    height: auto;
    margin-bottom: 30px; /* ロゴと白枠の間のスペース */
}

/* ==========================================================================
   コンテンツエリア（中央配置）
   ========================================================================== */
.container {
    text-align: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.75); /* 少し透ける白背景で上品に */
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px); /* 背景をほんのりぼかすトレンドのエフェクト */
}

/* サブタイトル (COMING SOON) */
.subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: #718096;
    font-weight: 700;
    margin-bottom: 15px;
    text-indent: 0.3em;
}

/* メインタイトル */
.title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.6;
    color: #2d3748;
    margin-bottom: 25px;
}

/* 区切り線 */
.divider {
    border: none;
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, #3182ce, #63b3ed);
    margin: 0 auto 30px auto;
}

/* メッセージ文章 */
.message {
  font-size: 1rem;
  line-height: 1.8;
  color: #2259b0;
  font-weight: 500;
  margin-bottom: 20px;
}


.sub-message {
  font-size: 0.95rem;
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 30px;

}

/* お問い合わせ情報エリア */
.contact-info {
    background-color: rgba(255, 255, 255, 0.6);
  border-top: 1px dashed #cbd5e0;
  padding: 20px 10px 20px 10px;
  margin-top: 25px;
  border-bottom: 1px dashed #cbd5e0;
}

.contact-info .tel {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
}

/* 電話番号のリンク記述（PC時は通常の黒文字、スマホ時はタップしやすく） */
.contact-info .tel a {
    color: #2d3748;
    text-decoration: none;
    pointer-events: none; /* PCではクリックを無効化 */
}

.contact-info .hours {
    font-size: 0.85rem;
    color: #4a5568;
}

/* ==========================================================================
   アニメーション定義
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   レスポンシブ（スマホ対応）
   ========================================================================== */
@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }
    .title {
        font-size: 1.4rem;
    }
    .message {
        font-size: 0.9rem;
        text-align: left;
    }
    .logo {
        max-width: 90%;
        margin-bottom: 20px;
    }
    
    /* スマホ閲覧時のみ電話番号にアンダーラインを付け、タップできるようにする */
    .contact-info .tel a {
        color: #3182ce; /* タップできることが分かりやすい色に */
        text-decoration: underline;
        pointer-events: auto; /* スマホではリンクを有効化 */
    }
}