@charset "UTF-8";
@import url(reset.css);
/* ===============================================
全体スタイル
=============================================== */
/* --- カラーコード --- */
:root {
  --base: #333333;
  --white: #fff;
  --pink: #ed647e;
  --pink-light: #fdf0f2;
  --glay:#f3f4f6;
  --yellow:#ffff00;
}

* {
  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;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

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

/* --- 矢印 --- */
.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;
}

/* --- アニメーション --- */
.poyopoyo {
  animation: poyopoyo 1.5s ease-out infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}
/* --- CTAエリア --- */
.cta {
  padding: 20px 0px;
}
.cta__contents p a {
  background-image: linear-gradient(90deg, #de576c, #f7931e);
  font-weight: bold;
  display: block;
  font-size: 26px;
  padding: 1rem 0rem;
  color: var(--white);
  border-radius: 50px;
}
@media (max-width: 767px) {
  .cta__contents p a {
    font-size: 23px;
  }
}
.cta__contents p a span {
  display: block;
  font-size: 13px;
}
@media (max-width: 767px) {
  .cta__contents p a span {
    font-size: 11px;
  }
}
.cta__contents p a strong {
  color: var(--yellow);
}
.cta .arrow::before {
  border-top: solid 2px var(--white);
  border-right: solid 2px var(--white);
  margin-top: -25px;
}

.fixed {
  position: fixed;
  bottom: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 490px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.fixed.visible {
  opacity: 1;
  visibility: visible;
}

/* --- 影 --- */
.shadow {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.15);
}

/* --- 追随ボタン --- */
.visible {
  opacity: 1;
  display: block;
}

/* ===============================================
header
=============================================== */
header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: var(--pink);
  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(--white);
  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: 60px;
}
@media (max-width: 767px) {
  header .logo {
    width: 50px;
  }
}

/*===============================================
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: 60px;
  }
}
main .sectionInner {
  padding: 0rem 20px;
}

/* --- mv --- */
.mv {
  position: relative;
}
.mv ul {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  gap: 2%;
}
.mv ul li {
  width: 31.6666666667%;
}

/* --- worries --- */
.worries__contents {
  background: var(--glay);
  padding: 2rem 0rem 6rem;
}
.worries h2 {
  margin-bottom: -25px;
}
.worries .picture {
  margin-top: -55px;
}
.worries ul {
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
}
.worries ul li {
  display: flex;
  align-items: center;
  padding: 14px 0;
  border-bottom: var(--base) dashed 1px;
}
.worries ul li span {
  color: var(--pink);
  font-weight: bold;
}
.worries ul li:last-child {
  border-bottom: none;
}
.worries ul li {
  /*✅アイコン*/
}
.worries ul li:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: url(../img/ico_top_check_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/* --- propose --- */
.propose {
  padding: 30px 0px;
}
.propose h2 {
  margin-bottom: 20px;
}
.propose ul li {
  background: #f9f2f3;
  text-align: center;
  width: 49%;
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.propose ul li span {
  color: var(--pink);
  font-weight: bold;
}
.propose ul li p {
  padding: 0rem 0.5rem;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.propose ul li img {
  width: 100%;
  display: block;
}
.propose .flex {
  flex-wrap: wrap;
  gap: 7px;
}

/* --- consultation --- */
.consultation__contents {
  padding: 30px 0px;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .consultation__contents {
    padding: 10px 0px;
  }
}
.consultation__contents .picture {
  max-width: 118px;
  width: 100%;
}
@media (max-width: 767px) {
  .consultation__contents .picture {
    width: 30%;
  }
}
.consultation__contents .text {
  max-width: 290px;
  width: 100%;
}
@media (max-width: 767px) {
  .consultation__contents .text {
    width: 60%;
  }
}

/* --- voice --- */
.voice {
  margin: 30px 0;
  background-color: var(--glay);
  padding: 30px 0px;
}
.voice .flex {
  justify-content: flex-start;
  gap: 10px;
}
@media (max-width: 767px) {
  .voice .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.voice h3 {
  font-size: 20px;
  margin-top: 5px;
}
.voice li {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  height: auto;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .voice li {
    font-size: 16px;
  }
}
.voice__contents {
  margin: 0 !important;
}
.voice__contents__inner {
  width: 100%;
  margin: 0 auto;
}
.voice__contents__top .picture {
  max-width: 118px;
  width: 100%;
}
.voice__contents__top .title .age {
  background: var(--pink);
  color: var(--white);
  border-radius: 5px;
  max-width: 100px;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
}
.voice__contents__bottom {
  margin-top: 15px;
}
.voice__contents__bottom dt {
  font-weight: bold;
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.voice__contents__bottom dt span {
  color: var(--pink);
}

/* Swiper カスタマイズ */
.voiceSwiper {
  padding: 0rem 0 7rem !important;
}
.voiceSwiper .swiper-slide {
  width: 80%;
  box-sizing: border-box;
}
.voiceSwiper .swiper-wrapper {
  align-items: stretch;
}
.voiceSwiper .swiper-slide-active li {
  border: 2px solid var(--pink);
}
.voiceSwiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  bottom: 3rem;
}
.voiceSwiper .swiper-pagination-bullet-active {
  background: var(--pink);
}
.voiceSwiper .swiper-button-prev,
.voiceSwiper .swiper-button-next {
  top: auto;
  bottom: 1.5rem;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.voiceSwiper .swiper-button-prev::after,
.voiceSwiper .swiper-button-next::after {
  display: none;
}
.voiceSwiper .swiper-button-prev img,
.voiceSwiper .swiper-button-next img {
  width: 100%;
  height: 100%;
}
.voiceSwiper .swiper-button-prev {
  left: calc(50% - 100px);
}
.voiceSwiper .swiper-button-next {
  right: calc(50% - 100px);
}

/* --- store --- */
.store {
  padding: 30px 0px;
}

h2 {
  margin-bottom: 2rem;
}

.shop-tabs__nav {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.shop-tabs__nav label {
  flex: 1;
  font-size: 16px;
  padding: 8px;
  border-radius: 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-image: linear-gradient(90deg, #efbf6c, #e1a542);
  color: var(--white);
}
#tab-nagoya:checked ~ .shop-tabs__contents #panel-nagoya {
  display: block;
}

#tab-nishimikawa:checked ~ .shop-tabs__nav label[for=tab-nishimikawa] {
  background-image: linear-gradient(90deg, #efbf6c, #e1a542);
  color: var(--white);
}
#tab-nishimikawa:checked ~ .shop-tabs__contents #panel-nishimikawa {
  display: block;
}

#tab-higashimikawa:checked ~ .shop-tabs__nav label[for=tab-higashimikawa] {
  background-image: linear-gradient(90deg, #efbf6c, #e1a542);
  color: var(--white);
}
#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(--black);
  display: block;
  margin: 0 auto;
  text-align: center;
  border: 1px solid;
}

/* --- contact --- */
.contact {
  background: #f9f8e5;
}
.contact h2 {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .contact .flex {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}
.contact__contents h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact__contents h3 span {
  display: block;
  font-size: 1.4rem;
}
.contact__contents h3 strong {
  color: var(--pink);
}
.contact__contents__text {
  max-width: 280px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact__contents__text {
    max-width: 360px;
  }
}
.contact__contents__text .flex {
  flex-wrap: wrap;
  gap: 5px;
}
.contact__contents__text ul li {
  max-width: 48.5%;
}
.contact__contents__picture {
  max-width: 142px;
  width: 100%;
}

/* ============================================================
   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(--pink) !important;
}
.rsv-s-item.s-done .rsv-s-circle {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
  color: #fff !important;
}
.rsv-s-item.s-done .rsv-s-lbl {
  color: var(--pink) !important;
  font-weight: bold;
}
.rsv-s-item.s-active .rsv-s-circle {
  border-color: var(--pink) !important;
  color: var(--pink) !important;
}
.rsv-s-item.s-active .rsv-s-lbl {
  color: var(--pink) !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-fixed-badge {
  display: flex !important;
  align-items: center;
  gap: 10px;
  background: var(--pink);
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 18px;
}
.rsv-fixed-badge .rsv-badge-icon {
  font-size: 22px;
  color: #fff;
}
.rsv-fixed-badge .rsv-badge-text strong {
  display: block;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  margin: 0;
}
.rsv-fixed-badge .rsv-badge-text small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.82);
}
.rsv-fixed-badge .rsv-badge-check {
  margin-left: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.rsv-fixed-badge .rsv-badge-check span {
  font-size: 15px;
  color: #fff;
}

/* --- 選択チェックボックス --- */
.rsv-concern-label {
  font-size: 13px;
  color: #555;
  margin: 0 0 10px;
  display: block;
}
.rsv-concern-label small {
  font-size: 11px;
  color: #aaa;
  margin-left: 4px;
}

.rsv-concern-list {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.rsv-cc {
  display: flex !important;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #e0e0e0 !important;
  border-radius: 10px !important;
  padding: 12px 14px;
  cursor: pointer;
  background: #fff !important;
  transition: border-color 0.2s, background 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-sizing: border-box;
  margin: 0;
}
.rsv-cc:hover, .rsv-cc.rsv-sel {
  border-color: var(--pink) !important;
  background: #fdf0f2;
}
.rsv-cc .rsv-cc-box {
  width: 20px !important;
  height: 20px !important;
  border-radius: 4px !important;
  border: 2px solid #ccc !important;
  flex-shrink: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: #fff !important;
  box-sizing: border-box;
  position: relative;
}
.rsv-cc .rsv-cc-box::after {
  content: none !important;
}
.rsv-cc.rsv-sel .rsv-cc-box {
  background: var(--pink) !important;
  border-color: var(--pink) !important;
}
.rsv-cc.rsv-sel .rsv-cc-box::after {
  content: "" !important;
  display: block !important;
  width: 5px !important;
  height: 9px !important;
  border: 2px solid #fff !important;
  border-top: none !important;
  border-left: none !important;
  transform: rotate(45deg) translateY(-1px) !important;
  position: static;
  background: transparent !important;
  border-radius: 0 !important;
}

.rsv-cc-text {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

/* --- サマリーバー --- */
.rsv-summary {
  background: #fdf0f2;
  border: 1px solid #f5b8c4;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--pink);
  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(--pink);
}

/* --- 日時選択 --- */
.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(--pink);
  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(--pink);
}

/* --- ボタン --- */
.rsv-btn-next {
  width: 100%;
  padding: 14px;
  box-sizing: border-box;
  background: var(--pink) !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(--pink);
}

/* ===============================================
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 */