@charset "UTF-8";
/* import */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  font-size: 62.5%;
  scroll-padding-top: 100px;
}

body {
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  color: #333;
  line-height: 1.8;
  position: relative;
  /* 透過用：下地色（画像が約60%透過なので背面に表示） */
  background-color: #fff;
}

/* 背景画像を疑似要素で表示し、約60%透過（opacity: 0.4 = 40%表示） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../img/bg_amiyaki.jpg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.6;
  pointer-events: none;
}

/* import */
main {
  position: relative;
}

img {
  width: 100%;
  height: auto;
}

.wrap {
  overflow: clip;
}

h1 {
  font-size: clamp(24px, 2.2222222222vw, 32px);
  line-height: 1.3;
  font-weight: 700;
}

h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(18px, 1.3888888889vw, 20px);
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 1.6rem;
  line-height: 1.7;
}

/* スクリーンリーダー用（アクセシビリティ） */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bold {
  font-weight: bold;
}

.container {
  max-width: 640px;
  margin: 0 auto;
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: content-box;
}

.inner {
  max-width: 640px;
  margin: 0 auto;
  padding-left: 4%;
  padding-right: 4%;
  box-sizing: content-box;
}

@media (max-width: 768px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 960px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}
@media (max-width: 960px) {
  .tab_db {
    display: block;
  }
}

.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
@media (max-width: 768px) {
  .bread ul li {
    padding: 5px 0;
  }
}
.bread ul li a {
  transition: 0.15s;
}
@media (hover: hover) and (pointer: fine) {
  .bread ul li a:hover {
    opacity: 0.6;
  }
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: flex;
  flex-wrap: wrap;
}

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

/* ========== ボタン ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  min-height: 48px;
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
}

.btn:focus-visible {
  outline: 2px solid #0d6fb8;
  outline-offset: 2px;
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: #0d6fb8;
  color: #fff;
  font-size: 2rem;
  padding: 1.5rem 2rem;
}

.btn-secondary {
  background: #eb6d97;
  color: #fff;
}

.btn-outline {
  display: flex;
  background: transparent;
  color: #333;
  border: 2px solid #666;
  margin-top: 2rem;
  margin-inline: auto;
  font-size: 1.4rem;
}

.btn-area-search {
  background: transparent;
  color: red;
  border: 2px solid red;
  width: 100%;
}
.btn-area-search img {
  width: 16px;
  margin-right: 0.5rem;
  transform: rotate(15deg);
}

.btn-full {
  width: 90%;
  margin: auto;
}

.search-inline {
  display: flex;
  gap: 0.5rem;
}

.search-input {
  flex: 1;
}

.btn-icon {
  width: 52px;
  min-width: 52px;
  min-height: 48px;
  padding: 0;
  font-size: 2rem;
  border-radius: 8px;
  background: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
}

.btn-icon .icon-search {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  fill: #555;
}

/* import */
header {
  width: 100%;
  min-height: 70px;
  position: fixed;
  top: 0;
  background-color: #d64034;
  z-index: 100;
}

.header-title {
  text-align: center;
}

.header-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 1rem;
}

.header-logo {
  width: 100%;
  max-width: 79px;
  height: auto;
}

/* ========== ファーストビュー（Hero） ========== */
.hero {
  max-width: 640px;
  margin: 70px -1.5rem 0;
}
@media (max-width: 768px) {
  .hero {
    width: 100vw;
    margin: 70px calc(50% - 50vw) 0;
  }
}

/* ヒーロー背景（静的な背景エリア・動画は使用しない） */
.hero-video-wrapper {
  width: 100%;
}

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

/* import */
footer {
  padding: 1.5rem;
  background: #333;
  color: #999;
}
@media (max-width: 768px) {
  footer {
    margin-top: 0;
  }
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-link {
  background: none;
  border: none;
  color: #ccc;
  font-size: 1.4rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: #fff;
}

.footer-link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.footer-copy {
  margin: 0;
  font-size: 1.2rem;
}

/* import */
/* ========== メイン 1カラム（PC/SP共通 750px中央） ========== */
.main-wrapper {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  align-items: stretch;
  box-sizing: border-box;
  position: relative;
}

/* iOSで background-attachment: fixed が効かないため、疑似要素で固定背景を再現 */
.main-wrapper::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: url("../img/bg_contents.jpg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto;
  pointer-events: none;
  max-width: 640px;
  width: 100%;
  margin: auto;
}

/* aside全体を1枚のカードに（浮き感を解消） */
.aside-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* aside内のsearch-card-wrapperは親カードに任せる（二重枠防止） */
.aside-card .search-card-wrapper:has(> .search-card) {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* aside内キャンペーン（asideのみ表示） */
.aside-campaign {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.aside-campaign-title {
  margin: 0;
}

.aside-campaign-title-note {
  text-align: center;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.aside-campaign-detail-box {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 4rem 1.5rem;
}

.aside-campaign-banner-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 1rem 0;
  border: none;
  background: #d64034;
  cursor: pointer;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  border-radius: 10px;
}

.aside-campaign-banner-btn:focus-visible {
  outline: 2px solid #c00;
  outline-offset: 2px;
  border-radius: 10px;
}

.aside-campaign-banner-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid rgba(204, 0, 0, 0.6);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.aside-campaign-banner-btn:hover::before,
.aside-campaign-banner-btn:focus-visible::before {
  opacity: 1;
}

.aside-campaign-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* ========== カード共通 ========== */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 4rem 1.5rem;
}

/* search-card-wrapper：search-card cardと同じ枠デザイン */
.search-card-wrapper:has(> .search-card) {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}

.search-card-wrapper .search-card.card {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* ========== 検索カード（PC時 sticky） ========== */
.search-card-title {
  margin-bottom: 1rem;
  color: #eb6d97;
}

/* フォーム要素 */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-label {
  display: block;
  margin-bottom: 0.375rem;
  font-weight: 700;
  color: #333;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  min-height: 48px;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-input {
  background-image: none;
  padding-right: 1rem;
}

.form-input:focus,
.form-select:focus {
  outline: 2px solid #c00;
  outline-offset: 0;
  border-color: #c00;
}

.form-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.2rem;
  color: #666;
}

/* クイックフィルター */
.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-check {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #f5f5f5;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.filter-check:hover {
  background: #eee;
}

.filter-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.filter-check input:checked + .filter-check-text {
  font-weight: 700;
  color: #c00;
}

.filter-check:has(input:checked) {
  background: #ffe5e5;
}

.filter-check-text {
  font-size: 1.4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ========== 地図セクション ========== */
.map-section {
  scroll-margin-top: 1rem;
  padding: 1rem;
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: var(--h2-size);
  font-weight: 700;
}

.map-chips {
  margin-bottom: 0.75rem;
  min-height: 1.5em;
}

.chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 1.3rem;
  background: #e8e8e8;
  border-radius: 16px;
  color: #555;
}

.map-placeholder {
  position: relative;
  height: 280px;
  background: #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

/* Leaflet 地図コンテナ（.map-placeholder 内で全面に表示） */
.leaflet-map {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
}

/* 現在地マーカー（青い円・店舗ピンと区別） */
.leaflet-user-marker {
  background: none !important;
  border: none !important;
}

.leaflet-user-marker-inner {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  background: #2196f3;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

@media (min-width: 769px) {
  .map-placeholder {
    height: 380px;
  }
}
@media (min-width: 1025px) {
  .map-placeholder {
    height: 420px;
  }
}
.map-placeholder-text {
  margin: 0;
  color: #888;
  font-size: 1.4rem;
}

.map-pins {
  position: absolute;
  inset: 0;
  pointer-events: auto;
}

.map-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -100%);
}

.map-pin-dot {
  position: relative;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: #c00;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.map-pin-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.map-pin-bubble {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.6rem;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2;
}

.map-pin-bubble::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: #fff transparent transparent;
}

.map-pin.is-open .map-pin-bubble {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.map-pin-title {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #c00;
  cursor: pointer;
}

.map-pin-phone {
  margin-top: 0.25rem;
  font-size: 1.2rem;
  color: #555;
}

/* ========== 店舗一覧 ========== */
.store-list-section {
  scroll-margin-top: 1rem;
  padding: 1rem;
}

.store-list-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.sort-ui {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sort-label {
  font-size: 1.4rem;
  color: #666;
}

.sort-select {
  width: auto;
  min-width: 140px;
  padding: 0.5rem 2rem 0.5rem 1rem;
}

.store-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.store-empty {
  padding: 2rem;
  text-align: center;
  color: #666;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* 店舗カード */
.store-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 1.25rem;
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.store-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.store-card-name {
  margin: 0 0 0.5rem;
  font-size: var(--h3-size);
  font-weight: 700;
}

.store-card-address {
  margin: 0;
  font-size: var(--p-size);
  color: #555;
}

/* ========== 訴求セクション ========== */
.appeal-section {
  scroll-margin-top: 1rem;
}

.appeal-content-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.appeal-photo {
  width: 100%;
  aspect-ratio: 3/2;
  background: #ddd;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.placeholder-text {
  color: #888;
  font-size: 1.4rem;
}

.appeal-list {
  margin: 0;
  padding-left: 1.25rem;
}

.appeal-list li {
  margin-bottom: 0.5rem;
}

.appeal-list-check li::marker {
  content: "✓ ";
  color: #06c755;
}

.appeal-note {
  margin: 0;
  font-size: 1.2rem;
  color: #888;
}

.step-section {
  background-color: #fff;
  border-radius: 10px;
  padding: 4rem 1.5rem;
}
.step-section .appeal-title {
  color: #eb6d97;
  margin-bottom: 1rem;
}
.step-section .appeal-note {
  text-align: center;
}
.step-section .btn-line-official {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  margin: 1rem auto;
}
.step-section .line-official-img {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  aspect-ratio: 29/9;
}
.step-section .line-step-num {
  background: #eb6d97;
}
.step-section .step-content-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 768px) {
  .step-section .step-content-inner {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.step-section .step-content-inner .ami-pass-img {
  flex-basis: 25%;
}
@media (max-width: 768px) {
  .step-section .step-content-inner .ami-pass-img {
    flex-basis: 100%;
    width: 70%;
  }
}
.step-section .step-content-inner .line-steps {
  flex-basis: 75%;
}
@media (max-width: 768px) {
  .step-section .step-content-inner .line-steps {
    flex-basis: 100%;
  }
}

.ami-pass-section .ami-pass-content-inner {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .ami-pass-section .ami-pass-content-inner {
    flex-direction: column;
  }
}
.ami-pass-section .ami-pass-content-inner .ami-pass-img {
  flex-basis: 35%;
}
.ami-pass-section .ami-pass-content-inner .ami-pass-steps {
  flex-basis: calc(65% - 1rem);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 1.5rem;
}

.appeal-note-section {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 4rem 1.5rem;
}
.appeal-note-section p {
  text-align: center;
}

/* LINE予約セクション */
.line-section {
  background: #f0fdf4;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #bbf7d0;
}

.line-section .appeal-title {
  text-align: center;
}

.line-note {
  margin: 0.5rem 0 0;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
}

.line-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.line-buttons .btn {
  flex: 1;
  min-width: 160px;
}

.line-steps {
  margin: 0 0 1.5rem;
  padding-left: 0;
  list-style: none;
}

.line-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.4rem;
  line-height: 1.4;
}

.line-step-num {
  flex-shrink: 0;
  min-width: 72px;
  height: 28px;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06c755;
  color: #fff;
  border-radius: 6px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-line {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  background: #06c755;
}

.line-note {
  margin: 0;
  font-size: 1.3rem;
  color: #555;
}

/* FAQ */
.faq-list {
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 600;
  background: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f9f9f9;
}

.faq-question:focus-visible {
  outline: 2px solid #c00;
  outline-offset: -2px;
}

.faq-question::before {
  content: "Q";
  position: absolute;
  left: 1rem;
  font-weight: 700;
  color: #c00;
}

.faq-question[aria-expanded=true]::after {
  content: "−";
  position: absolute;
  right: 1rem;
  font-size: 2rem;
  font-weight: 400;
  color: #666;
}

.faq-question[aria-expanded=false]::after {
  content: "+";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  font-size: 2rem;
  color: #666;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  background: #fafafa;
  overflow: hidden;
  opacity: 0;
  transition: grid-template-rows 0.35s ease-out, opacity 0.25s ease-out;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 1rem 1rem 3rem;
}

.faq-answer p {
  margin: 0;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.6;
}

#privacy-content {
  padding: 2rem 0;
}

/* ========== SP用 追従CTA ========== */
.sticky-cta-sp {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  gap: 0.5rem;
}

.sticky-cta-sp.visible {
  display: flex;
}

.sticky-cta-sp .btn-sticky {
  flex: 1;
  min-height: 44px;
  font-size: 1.4rem;
}

/* ========== モーダル ========== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-content {
  position: relative;
  max-width: 560px;
  max-height: 85vh;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: 10px;
  flex-shrink: 0;
  background-color: #eb6d97;
  color: #ffffff;
}

.modal-title {
  margin: 0;
  line-height: 1;
}
.modal-title span {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  padding-left: 1rem;
}

.modal-close {
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 2.4rem;
  line-height: 1;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.modal-close:focus-visible {
  outline: 2px solid #c00;
  outline-offset: 2px;
}

.modal-body {
  padding: 0;
  overflow-y: auto;
  flex: 1;
}

.search-modal-body {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .search-modal-body {
    gap: 1rem;
  }
}

/* キャンペーン詳細モーダル */
.campaign-modal-content {
  max-width: 560px;
}

.campaign-modal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.campaign-modal-title-inner {
  margin: 0;
  font-size: var(--h3-size);
  font-weight: 700;
}

.campaign-modal-image {
  width: 100%;
  border-radius: 8px;
}

.campaign-modal-image img {
  display: block;
  width: 100%;
  height: auto;
}

.campaign-download-btn {
  flex-shrink: 0;
}

.campaign-modal-detail h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.campaign-modal-detail p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #555;
}

.campaign-notes {
  margin: 0;
  padding-left: 1.4rem;
  font-size: 1.4rem;
  text-indent: -1.4rem;
  color: #555;
  line-height: 1.6;
}

.campaign-notes li {
  margin: 0 0 0.4rem;
}

.campaign-notes li:last-child {
  margin-bottom: 0;
}

.campaign-modal-detail .campaign-note-red {
  margin: 0.75rem 0 0;
  font-size: 1.3rem;
  color: #c00;
  line-height: 1.6;
}

/* 店舗詳細 せり上がりパネル（モーダル内約70%） */
.store-detail-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  max-height: 100vh;
  background: #fff;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.35s ease-out;
  z-index: 10;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  pointer-events: none;
}

.store-detail-panel.is-open {
  transform: translateY(0);
  pointer-events: auto;
}

.store-detail-panel-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.store-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
  background-color: #3F51B5;
  color: #fff;
}

.store-detail-title {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  flex: 1;
  padding-right: 1rem;
}

.store-detail-map {
  flex-shrink: 0;
  height: 200px;
  background: #eee;
  overflow: hidden;
}

.store-detail-map iframe {
  display: block;
}

.store-detail-body {
  padding: 1.25rem 1.5rem 1.5rem;
  overflow-y: auto;
  flex: 1;
  font-size: 1.5rem;
}

/* 店舗詳細：情報テーブル */
.store-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.store-detail-table th,
.store-detail-table td {
  border-bottom: 1px solid #e9ecef;
  padding: 0.85rem 1rem;
}

.store-detail-table tr:last-child th,
.store-detail-table tr:last-child td {
  border-bottom: none;
}

.store-detail-table th {
  width: 8em;
  font-size: 1.3rem;
  font-weight: 700;
  color: #495057;
  text-align: left;
  vertical-align: top;
}

.store-detail-table td {
  color: #212529;
  line-height: 1.65;
  word-break: break-word;
}

.store-detail-table .postal {
  display: block;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.15rem;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.store-detail-row-payment .payment-icons {
  justify-content: flex-start;
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  font-size: 1.2rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  color: #333;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  flex: 0 0 auto;
}

/* 簡単予約ボタン */
.btn-line-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  background: #3F51B5;
  color: #fff;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-line-official {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 232px;
  margin: auto;
  padding: 0;
  background: none;
  border: none;
}

.line-official-img {
  display: block;
  width: 100%;
  height: auto;
}

.line-section .line-official-img {
  width: 50%;
  margin: 0 auto;
}

.store-detail-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.store-detail-reserve {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 160px;
}

.store-detail-official {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 160px;
}

.store-detail-actions-note {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #3F51B5;
  text-align: center;
}

.store-detail-actions-note-green {
  color: #06c755;
  font-weight: 700;
}

.store-detail-actions .btn {
  flex: 1;
  min-width: 160px;
}

.btn-line-reserve:hover {
  background: #364495;
}

.btn-line-reserve:focus-visible {
  outline: 2px solid #06c755;
  outline-offset: 2px;
}

/* SP: 店舗詳細の行を縦積み */
@media (max-width: 480px) {
  .store-detail-table,
  .store-detail-table tbody,
  .store-detail-table tr,
  .store-detail-table th,
  .store-detail-table td {
    display: block;
    width: 100%;
  }
  .store-detail-table th {
    padding: 0.75rem 1rem 0.35rem;
    margin: 0;
    color: #6c757d;
  }
  .store-detail-table td {
    padding: 0 1rem 0.95rem;
  }
  .store-detail-row-payment .payment-icons {
    margin-top: 0.35rem;
    gap: 0.4rem;
  }
}
.modal-body h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.6rem;
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body p {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  line-height: 1.6;
}

/* ========== レスポンシブ（PC/SPほぼ同一レイアウト・750px中央） ========== */
@media (max-width: 768px) {
  /* 検索カードは常に表示（1カラムで左→右の順） */
  .search-card {
    padding: 1.25rem;
  }
  /* SP追従CTA: 下からせり上がり／下に下がる */
  .sticky-cta-sp {
    display: flex;
    transform: translateY(100%);
    transition: transform 0.35s ease-out;
    pointer-events: none;
  }
  .sticky-cta-sp.visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  /* 追従CTAの高さ分、フッターに余白を確保 */
  .footer {
    padding-bottom: calc(1.5rem + 44px + 1rem);
  }
}
@media (min-width: 769px) {
  .sticky-cta-sp {
    display: none !important;
  }
  /* PC: heroキャッチの改行を非表示（1行で表示） */
  .hero-br-sp {
    display: none;
  }
  /* PC: 汎用の改行を非表示 */
  .br-sp {
    display: none;
  }
}
/* ========== フォーカス可視化（アクセシビリティ） ========== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .filter-check {
    transition: none;
  }
}
/* import */
.fadein {
  opacity: 0;
  transform: translateY(6%);
}
.fadein.active {
  animation: 0.6s forwards fadein;
}

.fadein2 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein2.active {
  animation: 0.6s forwards 0.2s fadein;
}
@media (max-width: 768px) {
  .fadein2.active {
    animation: 0.4s forwards fadein;
  }
}

.fadein3 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein3.active {
  animation: 0.6s forwards 0.4s fadein;
}
@media (max-width: 768px) {
  .fadein3.active {
    animation: 0.4s forwards fadein;
  }
}

.fadein4 {
  opacity: 0;
  transform: translateY(3%);
}
.fadein4.active {
  animation: 0.6s forwards 0.6s fadein;
}
@media (max-width: 768px) {
  .fadein4.active {
    animation: 0.4s forwards fadein;
  }
}

.leftin {
  transform: translateX(-100%);
  overflow: hidden;
}
.leftin.active {
  animation: 0.4s forwards leftin;
}

.rightin {
  transform: translateX(200%);
  overflow: hidden;
}
.rightin.active {
  animation: 0.8s forwards rightin;
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(6%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftin {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes rightin {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */