body {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    color: #333;
    background: #FFF5E1;
    line-height: 1.7;
    overflow-x: hidden;
  }
  
  .sec-title {
    font-size: 22px;
    text-align: center;
    margin: 30px 0 20px 0;
    font-weight: bold;
    color:#748C76;
  }

  /* ============================
   ヘッダー（スマホ最適）
============================ */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: center; /* ロゴを中央 */
    height: 65px;
    padding: 0 20px;
    position: relative;
  }
  
  /* ロゴ */
  .header-logo {
    height: 50px;
    width: auto;
    display: block;
  }
  
  /* ハンバーガーメニュー */
  .menu-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  
  .menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    margin-bottom: 5px;
  }
  
  .menu-btn span:last-child {
    margin-bottom: 0;
  }

  /* ▼ SPではPCナビ非表示（追加） */
.pc-nav {
  display: none;
}
  
  /* ============================
   スライドインメニュー
============================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;              /* 初期状態は画面外 */
    width: 75%;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 10px rgba(0,0,0,0.15);
    transition: right 0.35s ease;
    z-index: 2000;
    padding: 20px;
  }
  
  .mobile-menu.open {
    right: 0;                 /* スライドイン */
  }
  
  /* 背景の中身（スクロール用） */
  .menu-inner {
    height: 100%;
    overflow-y: auto;
  }
  
  /* 閉じるボタン */
  .menu-close {
    font-size: 32px;
    background: none;
    border: none;
    float: right;
    cursor: pointer;
  }
  
  /* リスト */
  .menu-list {
    list-style: none;
    padding: 0;
    margin: 60px 0 40px;
  }
  
  .menu-list li {
    margin-bottom: 20px;
  }
  
  .menu-list a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
  }
  
  /* CTAボタン */
  .menu-cta {
    width: 100%;
    padding: 14px 0;
    background: #3cb371;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
  }
  
/* ============================
   HERO（完全差し替え）
============================ */

/* 全体 */
.hero {
    width: 100%;
    background: #faf7ef;
  }
  
  /* 画像エリア（縦長に見せるが比率は保持） */
  .hero-img-wrap {
    width: 100%;
    height: 60vh;                  /* ←縦長にする高さ（調整可） */
    overflow: hidden;
    position: relative;
  }
  
  /* 画像の比率を絶対に崩さない中央配置 */
  .hero-img {
    height: 100%;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    display: block;
  }
  
  /* キーテキスト（共通） */
  .key-text {
    position: absolute;
    background: #ffffff;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 10px;
  }

  /* 左側オレンジ */
  .key-orange {
    top: 20%;
    left: 8%;
    color: #DC8400;
    font-size:15px;
  }
  
  /* 右側ブラック */
  .key-black {
    top: 3%;
    left: 30%;
    color: #222;
    font-size:15px;
  }

  /* ============================
   NEXT SECTION（悩み訴求）
============================ */
.worry-section {
    background: #ffffff;
    padding: 20px 20px 0 20px;  /* 下を大きめにしてイラストに余白 */
    position: relative;
  }
  
  /* 説明テキスト */
  .worry-lead {
    text-align: center;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
    margin:0 auto 28px auto;
  }

  
  /* 中央の太字メッセージ */
  .worry-box {
    background: #fff8f0;
    border: 1px dashed #d3a476;
    border-radius: 10px;
    padding: 18px 18px;
    font-size: 14px;
    line-height: 1.9;
    text-align: center;
    font-weight: 600;
    color: #333;
    margin-bottom: 40px;
  }
  
  /* 強調色 */
  .worry-box .blue {
    font-size: 15px;
    color: #540069;
  }
  
  .worry-box .red {
    font-size: 15px;
    color: #D32F2F;
  }
  
  /* 下部イラスト */
  .worry-images {
    position: relative;
    width: 100%;
    height: 50px;          /* 画像の高さに応じて調整可 */
  }
  
  .worry-img {
    position: absolute;
    width: 35%;
    bottom: 0;
  }
  
  .worry-img.left {
    left: 0;
  }
  
  .worry-img.right {
    right: 0;
  }

.care-section {
    background: #fff5e6;
    padding: 0px 20px 20px 20px;
    text-align: center;
  }
  
  /* 上の小さいオレンジ矢印 */
  /* 下三角形アニメーション */
    .care-arrow {
        font-size: 22px;
        color: #DC8400;
        margin-bottom: 20px;
        margin-top:-20px;
        animation: arrowBounce 2s ease-in-out infinite;
    }
    
    @keyframes arrowBounce {
        0%   { transform: translateY(0); }
        50%  { transform: translateY(6px); }
        100% { transform: translateY(0); }
    }
  
  
  /* タイトル（黒太字） */
  .care-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.6;
  }
  
  /* 小テキスト（黒） */
  .care-text-small {
    font-size: 14px;
    margin-bottom: 14px;
    color: #444;
  }
  
  /* 訪問専門ケア（オレンジ強調） */
  .care-text-orange {
    font-size: 20px;
    font-weight: 700;
    color: #DC8400;
    margin-bottom: 24px;
  }
  
  /* ロゴ */
  .care-logo-wrap {
    width: 100%;
  }
  
  .care-logo {
    width: 100%;
    max-width: 360px;
    display: block;
    margin: 0 auto;
  }
  

/* ============================
   フローティングCTA（2ボタン）
============================ */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));  /* ← 必須！ */
    display: flex;
    gap: 8px;
    background: #ffffff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 99999;    /* 最前面に */
    box-sizing: border-box;
}

  
  /* ボタン共通 */
  .cta-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 6px;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
  }
  
  /* 背景色 */
  .cta-reserve {
    background: #F6A623;  /* オレンジ */
  }
  
  .cta-line {
    background: #00C300;  /* LINEグリーン */
  }
  
  /* アイコン画像 */
  .cta-icon {
    width: 30px;
    height: 30px;
    display: block;
  }
  


  /* ============================
   SERVICE SECTION
============================ */
.service-section {
    padding: 40px 20px 10px 20px;
    background: #faf7ef;
  }
  
  /* 各ブロック */
  .service-block {
    margin-bottom: 20px;
  }
  
  /* 見出しBOX（アイコン＋タイトル） */
  .service-heading {
    border: 3px solid #748C76;
    border-radius: 12px;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .service-icon {
    width: 50px;
    height: auto;
  }
  
  /* タイトル文字 */
  .service-title {
    font-size: 18px;
    font-weight: 700;
    color: #748C76;
  }
  
  /* メイン画像 */
  .service-photo {
    width: 100%;
    border-radius: 10px;
  }
  
  /* 説明文 */
  .service-text {
    background: #ffffff;
    border-radius: 10px;
    padding: 20px 18px;
    line-height: 1.8;
    font-size: 14px;
    color: #444;
    margin:0;
  }
  
/* ============================
   施術メニュー
============================ */
.menu-section {
    padding: 40px 20px;
    background: #fff;
  }
  
  /* カテゴリー見出し */
  .menu-category {
    background: #f3dfd3;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    margin: 30px 0 16px;
    color: #6b4d3c;
  }
  
  .menu-category.female {
    background: #e9d8d0;
  }
  
  /* カード */
  .menu-card {
    background: #fff;
    border-radius: 10px;
    padding: 18px 16px;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
  
  /* コース名 */
  .menu-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 6px;
  }
  
  /* 説明文 */
  .menu-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
  }
  
  /* 時間・料金 */
  .menu-info {
    display: flex;
    justify-content: space-between;
    padding-top: 6px;
    border-top: 1px solid #eee;
  }
  
  .menu-info .time {
    font-size: 14px;
    color: #333;
  }
  
  .menu-info .price {
    font-size: 16px;
    font-weight: 700;
    color: #c65353; /* 赤系カラー */
  }
  
  /* ▼ メニュー注意書き */
.menu-notes {
  background: #fff8f3;
  padding: 18px 14px;
  border-radius: 8px;
  margin-top: -10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.menu-notes p {
  font-size: 13px;
  color: #6b4d3c;
  line-height: 1.7;
  margin-bottom: 8px;
}

.menu-notes p:last-child {
  margin-bottom: 13px;
}

  
/* ============================
   お客様の声
============================ */
.voice-section {
  padding: 50px 20px 10px 20px;
  background: #faf7ef;
  position: relative;
}
  
.voice-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 70px 20px 25px 20px; /* ← 上に大きな余白を確保（写真分） */
  margin-top: 90px;             /* ← 写真が外に出ても崩れないための余白 */
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* 写真を“外側へ”飛び出させる */
.voice-img-wrap {
  position: absolute;
  top: -60px;           /* ← カード外に半分出す */
  left: 50%;
  transform: translateX(-50%);
}

/* 写真（丸型） */
.voice-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;       /* ← 写真縁に白い縁追加（デザイン通り） */
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

/* 名前 */
.voice-name {
  font-size: 18px;
  font-weight: 700;
  color: #DC8400;
  margin-bottom: 16px;
}

/* テキスト */
.voice-text {
  font-size: 14px;
  line-height: 2.5;
  color: #444;
  text-align: left;
}
  
  
/* ============================
   ご利用の流れ
============================ */
.flow-section {
    padding: 40px 20px 10px 20px;
    background: #faf7ef;
  }
  
  /* ▼ 各ステップの行 */
.flow-item {
  display: flex;
  align-items: center; /* ← これを追加すると左右ブロックの高さが揃う */
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
  
  /* 左ブロック（緑背景） */
  .flow-left {
    background: #7da68a;
    color: #fff;
    width: 30%;
    min-width: 90px;
    padding: 16px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .flow-label {
    font-size: 20px;
    font-weight: 700;
  }
  
  .flow-num {
    font-size: 26px;
    font-weight: 700;
    margin-top: 6px;
  }
  
  /* 右テキスト部分 */
.flow-right {
  width: 70%;
  padding: 18px 12px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  display: flex;                 /* ← 各行要素を上下中央に */
  align-items: center;           /* ← 縦中央寄せ */
}
  
  
/* ============================
   FAQ SECTION（全体）
============================ */
.faq-section {
  padding: 40px 20px 10px 20px;
  background: #faf7ef;
}

/* ============================
 FAQカテゴリタブ（塗りつぶし）
============================ */
.faq-category-wrap {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.faq-cat-btn {
  flex: 1;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  border: 1px solid #7da68a;
  background: #fff;
  color: #7da68a;
  cursor: pointer;
  transition: all .25s ease;
}

/* 選択中（塗りつぶし） */
.faq-cat-btn.active {
  background: #7da68a;
  color: #fff;
}

/* ============================
 FAQ ITEM（アコーディオン）
============================ */
.faq-item {
  background: #ffffff;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
}

/* 質問部分 */
.faq-question {
  width: 100%;
  background: #7da68a;
  color: #fff;
  padding: 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-q-left {
  display: flex;
  gap: 10px;
  align-items: center;
}

.faq-q-label {
  font-size: 16px;
  font-weight: 700;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 600;
}

/* ＋／ー */
.faq-toggle {
  font-size: 22px;
  font-weight: 700;
  transition: transform .2s;
}

/* 回答（アニメ用 max-height） */
.faq-answer {
  background: #fff;
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  padding: 0 16px; 
  max-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: max-height .35s ease;
}

/* 開く時 */
.faq-item.open .faq-answer {
  padding: 16px;
  max-height: 600px;
}

.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}

/* ============================
 FAQ：もっと見る
============================ */
.faq-more-btn {
  display: block;
  width: 100%;
  margin: 20px auto 0;
  padding: 14px 0;
  text-align: center;
  background: #fff;
  color: #7da68a;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #7da68a;
  border-radius: 8px;
  cursor: pointer;
}

  
  
/* ============================
   会社情報
============================ */
.company-section {
    padding: 40px 20px 80px;
    background: #faf7ef;
  }
  
  /* 白いカード全体 */
  .company-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }
  
  /* 行レイアウト */
  .company-row {
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px dotted #999;
  }
  
  /* 最後の行は線なし */
  .company-row:last-child {
    border-bottom: none;
  }
  
  /* 左項目名 */
  .company-label {
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    color: #333;
    width: 30%;
  }
  
  /* 右内容 */
  .company-value {
    font-size: 14px;
    color: #444;
    width: 70%;
    line-height: 1.6;
  }
  
/* ============================
   FADE-IN ANIMATION
============================ */
.fadein-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fadein-up.show {
  opacity: 1;
  transform: translateY(0);
}


/* ============================
   PC レイアウト
============================ */
@media (min-width: 768px) {

  /* ▼ ベース余白調整 */
  .sec-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  section {
    max-width: 1080px;
    margin: 0 auto;
  }

  /* ▼ HERO（例：テキスト + 画像横並び） */
  .hero {
    max-width: 1080px;
  }

  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 120px 0;
  }

  .hero-text {
    flex: 1;
    font-size: 20px;
  }

  .hero-image {
    max-width: 1080px;
    width:100%;
  }

  .hero-img-wrap {
    width: 100%;
    height: 70vh;
  }

/* ============================
   PCヘッダー（通常ナビ）
============================ */
  /* ヘッダーの高さ調整 */
  .header-inner {
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
  }

  /* ロゴサイズ調整 */
  .header-logo {
    height: 60px;
  }

  /* PCナビ表示 */
  .pc-nav {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
  }

  .pc-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: opacity .2s ease;
  }

  .pc-nav a:hover {
    opacity: 0.6;
  }

  /* SP用ハンバーガーは非表示 */
  .menu-btn,
  .mobile-menu {
    display: none !important;
  }
/* ============================
   HERO：PCは全幅表示
============================ */
  .hero {
    max-width: 1120px !important;
    width: 100%;
    padding: 0;          /* セクション余白リセット */
  }

  .hero-img-wrap {
    width: 100%;
    height: 70vh;        /* 必要なら調整 */
  }

  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* 画面いっぱいに収める */
    object-position: center;
  }

  /* ============================
     ご利用の流れ（PCは横並び）
  ============================= */
  .flow-item {
    width:90%;
    margin:0 auto 18px auto;
    display: grid;
    grid-template-columns: 200px 1fr;
  }

  .flow-left {
    width: auto;
    text-align: center;
    padding: 24px;
    font-size: 20px;
  }

  .flow-right {
    font-size: 16px;
    padding: 24px 20px;
  }


  /* ============================
     メニュー（3列レイアウト）
  ============================= */
  .menu-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .menu-card {
    padding: 24px;
    font-size: 16px;
  }

/* ============================
   PC：お客様の声 3カラム整列
============================ */
  /* ▼ セクションはブロックでOK */
  .voice-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 20px;
    display: block; /* ←ここが重要（flexを外す） */
  }

  /* ▼ 実際の3カラム親 */
  .voice-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }

  /* ▼ カードを3分割 */
  .voice-card {
    width: calc(33.33% - 30px);
    margin-top: 120px;
    box-sizing: border-box;
  }

  /* ▼ 画像調整 */
  .voice-img-wrap {
    top: -70px;
  }

  .voice-photo {
    width: 140px;
    height: 140px;
    border-width: 6px;
  }

  .voice-text {
    font-size: 15px;
    line-height: 1.9;
    text-align: left;
  }

  /* ============================
     FAQ（中央寄せ + 幅固定）
  ============================= */
  .faq-section {
    max-width: 1080px;
    margin: 0 auto;
  }

  .faq-question {
    font-size: 18px;
    padding: 20px;
  }

  .faq-answer {
    font-size: 16px;
  }

/* ============================
   PCレイアウト：サービス3カラム
============================ */
  .service-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
  }

  .service-block {
    width: 33%;
    display: flex;
    flex-direction: column;
  }

  .service-heading {
    padding: 10px;
  }

  .service-photo {
    height: 240px;
    object-fit: cover;
  }

  .service-title {
    font-size:16px;
  }

  .service-text {
    font-size: 14px;
    padding: 20px;
  }

  /* 各ブロックを均等幅に、縦揃え */
  .service-block {
    width: 32%;
    display: flex;
    flex-direction: column;
  }

  /* タイトル枠高さ揃え */
  .service-heading {
    min-height: 80px; /* ★好みに調整可能 */
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .service-photo {
    margin-top: 16px;
  }

  .service-text {
    flex-grow: 1;
  }
  .worry-box {
    width: 40%;
    margin: 0 auto;
  }

  .worry-img {
    width: 25%;
  }

  .company-section{
    padding: 40px 20px 120px;
  }

  .key-text {
    font-size: 30px;
    padding: 12px 12px;
  }

  .key-orange {
    top: 10%;
    left: 10%;
    font-size:25px;
  }

  .key-black {
    top: 5%;
    left: 20%;
    font-size:25px;
  }

  .key-black p{
    margin:0;
  }

  .key-orange p {
    margin:0;
  }

}


/* ============================
   エリア別ご予約
============================ */
.area-section{
  padding: 40px 20px 10px 20px;
  background: #faf7ef;
}

.area-lead{
  text-align: center;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 auto 20px auto;
}

.area-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.area-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 14px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid rgba(125,166,138,0.35);
}

.area-name{
  font-size: 16px;
  font-weight: 800;
  color: #333;
}

.area-cta{
  background: #F6A623;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.area-note{
  margin-top: 14px;
  font-size: 12px;
  color: #6b4d3c;
  line-height: 1.7;
  background: #fff8f3;
  border-radius: 10px;
  padding: 12px 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* PC */
@media (min-width: 768px){
  .area-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .area-card{
    padding: 18px 16px;
  }
  .area-name{
    font-size: 17px;
  }
}

/* ============================
   エリア別ご予約（リスト選択）
============================ */
.area-section{
  padding: 40px 20px 10px 20px;
  background: #faf7ef;
}

.area-picker{
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1px solid rgba(125,166,138,0.25);
}

.area-label{
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #333;
  margin-bottom: 10px;
}

.area-search{
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 12px 12px;
  border: 1px solid #ddd;
  background: #fff8f3;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
}

.area-select{
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 12px 12px;
  border: 2px solid #7da68a;
  background: #fff;
  font-size: 15px;
  outline: none;
}

.area-reserve-btn{
  margin-top: 12px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 0;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 900;
  background: #F6A623;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.10);
}

.area-reserve-btn.is-disabled{
  opacity: 0.45;
  pointer-events: none;
}

@media (min-width: 768px){
  .area-picker{
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 20px;
  }
}
