/* =============================
   共通設定
============================= */
header {
  margin-top: 26px;
}
.grecaptcha-badge { visibility: hidden; }

/* =============================
   LINE モーダル（スマホ用）
============================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.line-modal {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 30px 20px 25px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
  background: url("https://aodatami.com/wp-content/uploads/IMG_8772.jpg") center/cover no-repeat;
}

.line-modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
  z-index: 1;
  border-radius: inherit;
}

.line-modal * {
  position: relative;
  z-index: 2;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #666;
}

.line-modal h2 {
  display: block;
  font-size: 20px;
  margin: 10px auto;
  color: #222;
  font-weight: bold;
  background: rgba(255,255,255,0.95);
  padding: 10px 12px;
  border-radius: 6px;
  line-height: 1.5;
  border-bottom: 3px solid #06C755;
}

.line-modal p {
  font-size: 15px;
  color: #444;
  margin: 0 0 10px;
}

.btn-line {
  display: inline-block;
  background-color: #06C755;
  color: #fff;
  padding: 14px 22px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s;
}

.btn-line:hover {
  opacity: 0.85;
}

.btn-close-later {
  margin-top: 15px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}

.note {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
}

/* スマホではQR非表示 */
@media (max-width: 768px) {
  .line-qr { display: none; }
  .line-modal { width: 95%; padding: 20px 15px; }
  .line-modal h2 { font-size: 18px; padding: 8px 10px; }
  .line-modal p { font-size: 14px; }
}

/* モーダル中はスクロール禁止 */
body.modal-open { overflow: hidden; }

/* =============================
   PC上部固定バナー
============================= */
.line-banner-pc {
  display: none;
}

@media (min-width: 1025px) {
  .line-banner-pc {
    display: block;
    position: sticky;
    top: 0;
    z-index: 9998;
    background: url("https://aodatami.com/wp-content/uploads/IMG_8772.jpg") center/cover no-repeat;
    border-bottom: 3px solid #06C755;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .line-banner-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 30px;
    background: rgba(255,255,255,0.9);
    border-radius: 0;
  }

  .line-banner-qr {
    flex-shrink: 0;
    width: 100px;
    height: auto;
    border-radius: 8px;
  }

  .line-banner-text {
    flex: 1;
    text-align: left;
  }

  .line-banner-text h2 {
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    background: linear-gradient(90deg, #06C755 0%, #0FA94D 100%);
    display: inline-block;
    padding: 10px 18px;
    border-radius: 6px;
    line-height: 1.5;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    margin-bottom: 8px;
  }

  .line-banner-text p {
    font-size: 15px;
    color: #333;
    margin: 4px 0;
  }

  .btn
