@charset "UTF-8";
/* ===============================================
全体スタイル
=============================================== */
/* --- カラーコード --- */
:root {
  --base: #333333;
  --white: #fff;
  --glay:#f6f4f0;
  --light:#afd152;
}

* {
  line-height: 1.6;
}

html {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", Meiryo, sans-serif;
  font-feature-settings: "palt";
  color: var(--base);
  letter-spacing: 2px;
  font-size: 62.5%;
}

.tac {
  text-align: center;
}

small {
  font-size: 1.3rem;
  display: block;
}

img {
  width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

h2 {
  margin: 2rem 0rem;
}

.title--design {
  background: var(--light);
  color: var(--base);
  padding: 2rem 0rem;
  margin-top: 0rem;
}
.title--design strong {
  color: var(--dark-yellow);
}

/* --- 矢印 --- */
.arrow {
  position: relative;
  display: inline-block;
}
.arrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px var(--base);
  border-right: solid 2px var(--base);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -10px;
}

/* ===============================================
header
=============================================== */
header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: #afd152;
  height: 8vh;
  display: grid;
}
header .headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
}
@media (max-width: 767px) {
  header .headerInner {
    padding: 0 1rem;
  }
}
header .search a {
  color: var(--black);
  font-size: 16px;
  font-weight: bold;
  border: 1px solid;
  padding: 0.7rem 1rem 0.7rem 3.5rem;
  margin-left: 7rem;
  position: relative;
}
header .search a:before {
  content: "location_on";
  font-size: 20px;
  line-height: 40px;
  font-family: "Material Symbols Outlined";
  position: absolute;
  top: -2px;
  left: 10px;
}
header .logo {
  width: 110px;
}

/*===============================================
contents
=============================================== */
/* --- main --- */
main {
  max-width: 490px;
  margin: 0 auto;
  font-size: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;
  padding-top: 70px;
}
@media (max-width: 767px) {
  main {
    padding-top: 65px;
  }
}
main .sectionInner {
  padding: 0rem 20px;
}

/* --- store --- */
.store {
  padding-bottom: 2rem;
}

.shop-tabs__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.shop-tabs__nav label {
  flex: 1;
  font-size: 16px;
  padding: 8px;
  cursor: pointer;
  font-weight: bold;
  background: var(--glay);
  color: var(--black);
  text-align: center;
  line-height: 1.4;
}
.shop-tabs__panel {
  display: none;
  text-align: left;
}

#tab-nagoya:checked ~ .shop-tabs__nav label[for=tab-nagoya] {
  background: var(--light);
  color: var(--base);
}
#tab-nagoya:checked ~ .shop-tabs__contents #panel-nagoya {
  display: block;
}

#tab-nishimikawa:checked ~ .shop-tabs__nav label[for=tab-nishimikawa] {
  background: var(--light);
  color: var(--base);
}
#tab-nishimikawa:checked ~ .shop-tabs__contents #panel-nishimikawa {
  display: block;
}

#tab-higashimikawa:checked ~ .shop-tabs__nav label[for=tab-higashimikawa] {
  background: var(--light);
  color: var(--base);
}
#tab-higashimikawa:checked ~ .shop-tabs__contents #panel-higashimikawa {
  display: block;
}

.shop-card {
  margin-bottom: 1.5rem;
  font-size: 16px;
}
.shop-card .shop-name {
  font-weight: bold;
  margin-bottom: 4px;
}
.shop-card .shop-address {
  margin-bottom: 12px;
}
.shop-card .shop-link {
  border-radius: 50px;
  padding: 10px;
  color: var(--base);
  display: block;
  margin: 1rem auto;
  text-align: center;
  border: 1px solid;
  max-width: 300px;
}
.shop-card .shop-link .arrow:before {
  border-top: solid 2px var(--base);
  border-right: solid 2px var(--base);
}

/* ============================================================
   form
============================================================ */
/* --- ステップバー --- */
.rsv-step-bar {
  display: flex !important;
  padding: 20px 20px 4px;
  max-width: 520px;
  margin: 0 auto;
  list-style: none;
}

.rsv-s-item {
  flex: 1;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  position: relative;
  /* --- コネクター線 --- */
}
.rsv-s-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% + 14px);
  right: calc(-50% + 14px);
  height: 2px;
  background: #e0e0e0;
  z-index: 0;
  transition: background 0.3s;
}
.rsv-s-item.s-done:not(:last-child)::after {
  background: var(--light) !important;
}
.rsv-s-item.s-done .rsv-s-circle {
  background: var(--light) !important;
  border-color: var(--light) !important;
  color: #fff !important;
}
.rsv-s-item.s-done .rsv-s-lbl {
  color: var(--light) !important;
  font-weight: bold;
}
.rsv-s-item.s-active .rsv-s-circle {
  border-color: var(--light) !important;
  color: var(--light) !important;
}
.rsv-s-item.s-active .rsv-s-lbl {
  color: var(--light) !important;
  font-weight: bold;
}

.rsv-s-circle {
  width: 26px;
  height: 26px;
  border-radius: 50% !important;
  border: 2px solid #e0e0e0;
  background: #fff;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
  color: #bbb;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  box-sizing: border-box;
}

.rsv-s-lbl {
  font-size: 10px;
  color: #bbb;
  white-space: nowrap;
}

/* --- ステップ共通 --- */
.rsv-step {
  display: none;
  padding: 16px 20px 24px;
  max-width: 520px;
  margin: 0 auto;
  animation: rsvFadeIn 0.25s ease;
}
.rsv-step.rsv-on {
  display: block !important;
}

@keyframes rsvFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rsv-sh {
  font-size: 13px;
  color: #666;
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

/* --- サマリーバー --- */
.rsv-summary {
  background: var(--glay);
  border: 1px solid var(--light);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--light);
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.6;
}
.rsv-summary .rsv-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- 店舗プルダウン --- */
.rsv-shop-select-wrap {
  margin-bottom: 20px;
}
.rsv-shop-select-wrap select {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  color: #333;
  background: #fff;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.rsv-shop-select-wrap select:focus {
  outline: none;
  border-color: var(--light);
}

/* --- 項目選択（ラジオカード） --- */
.rsv-item-select-wrap {
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.rsv-item-card {
  display: flex !important;
  align-items: center;
  border: 1.5px solid #e0e0e0 !important;
  border-radius: 12px !important;
  padding: 13px 16px;
  cursor: pointer;
  background: #fff !important;
  transition: background 0.2s, border-color 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  margin: 0;
}
.rsv-item-card input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.rsv-item-card:hover {
  border-color: var(--light) !important;
}
.rsv-item-card {
  /* 選択時：紺色バッジ風 */
}
.rsv-item-card:has(input:checked) {
  background: var(--navy, var(--light)) !important;
  border-color: var(--navy, var(--light)) !important;
}
.rsv-item-card:has(input:checked) .rsv-item-card-body strong,
.rsv-item-card:has(input:checked) .rsv-item-card-body .rsv-item-price {
  color: #fff !important;
}
.rsv-item-card:has(input:checked) .rsv-item-check {
  background: rgba(255, 255, 255, 0.28);
  border-color: transparent;
}
.rsv-item-card:has(input:checked) .rsv-item-check .material-symbols-outlined {
  opacity: 1;
}

.rsv-item-card-body {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.rsv-item-card-body strong {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: color 0.2s;
}

.rsv-item-price {
  font-size: 13px;
  color: #888;
  font-weight: 500;
  margin-left: 8px;
  transition: color 0.2s;
}

/* --- 右側の丸チェックマーク --- */
.rsv-item-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #ddd;
  flex-shrink: 0;
  margin-left: auto;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.rsv-item-check .material-symbols-outlined {
  font-size: 15px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
}

/* --- 日時選択 --- */
.rsv-date-wrap,
.rsv-time-wrap {
  margin-bottom: 14px;
}
.rsv-date-wrap small,
.rsv-time-wrap small {
  display: block;
  font-size: 11px;
  color: #aaa;
  margin-top: 5px;
  line-height: 1.6;
}

.rsv-field-lbl {
  display: block;
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
}

.rsv-date-wrap input[type=text],
.rsv-time-wrap select {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background: #fff;
}

#ui-datepicker-div {
  font-size: 14px;
}

.rsv-field {
  margin-bottom: 14px;
}
.rsv-field label {
  display: block;
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
}
.rsv-field input[type=text],
.rsv-field input[type=tel],
.rsv-field input[type=email],
.rsv-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 13px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background: #fff;
}
.rsv-field textarea {
  height: 90px;
  resize: vertical;
}
.rsv-field .rsv-err {
  color: #c0392b;
  font-size: 11px;
  margin-top: 4px;
  display: none;
}
.rsv-field.rsv-has-err input {
  border-color: #c0392b !important;
}

.rsv-req {
  display: inline-block;
  background: var(--light);
  color: #fff;
  font-size: 10px;
  padding: 1px 6px;
  border-radius: 4px;
  margin-left: 5px;
}

.rsv-field-note {
  font-size: 11px;
  color: #aaa;
  margin-top: 5px;
  line-height: 1.6;
  display: block;
}

/* --- プライバシー --- */
.rsv-priv {
  font-size: 11px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 16px;
}
.rsv-priv a {
  color: var(--light);
}

/* --- ボタン --- */
.rsv-btn-next {
  width: 100%;
  padding: 14px;
  box-sizing: border-box;
  background: var(--light) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
  display: block;
  text-align: center;
}
.rsv-btn-next:hover {
  opacity: 0.88;
}
.rsv-btn-next:disabled {
  opacity: 0.35 !important;
  cursor: not-allowed;
}

.rsv-btn-back {
  width: 100%;
  padding: 11px;
  box-sizing: border-box;
  background: #fff !important;
  border: 1px solid #ddd !important;
  border-radius: 10px;
  font-size: 13px;
  color: #888 !important;
  cursor: pointer;
  margin-top: 10px;
  display: block;
  text-align: center;
  transition: background 0.2s;
}
.rsv-btn-back:hover {
  background: #f5f5f5 !important;
}

/* ===============================================
thanks
=============================================== */
.thanks {
  padding: 4rem 0;
}
.thanks h2 {
  color: var(--light);
}

/* ===============================================
footer
=============================================== */
footer {
  font-size: 16px;
  font-weight: 400;
  max-width: 490px;
  font-size: 13px;
  margin: 0 auto;
}
footer a {
  color: #fff;
}
footer ul {
  background: #4c4c4c;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
footer ul li {
  padding: 0rem 0.5rem;
}
footer p.copy {
  background: var(--base);
  padding: 1rem 0rem;
  color: var(--white);
  font-size: 10px;
}/*# sourceMappingURL=shared.css.map */