@charset "UTF-8";
.fs-34 {
  font-size: 3.4rem;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: clip;
}

body {
  background-color: #eee !important;
}

html {
  font-size: 23.4%;
}

@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}
body.no-scroll {
  overflow-y: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

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

.site-logo {
  font-size: 16px;
  margin: 0;
}

.hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger:focus-visible {
  outline: 2px solid #d00;
  outline-offset: 2px;
}
.hamburger__bar {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #111;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger__bar:nth-child(1) {
  top: 12px;
}
.hamburger__bar:nth-child(2) {
  top: 19px;
}
.hamburger__bar:nth-child(3) {
  top: 26px;
}

.hamburger.is-active .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  display: none;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88vw;
  max-width: 480px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px 20px 32px;
  overflow-y: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.mobile-menu__list {
  list-style: none;
  padding: 56px 0 16px;
  margin: 0;
}
.mobile-menu__list li {
  margin: 16px 0;
}
.mobile-menu__list a {
  color: #c00;
  font-weight: 700;
  text-decoration: underline;
  font-size: 24px;
}
.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.mobile-menu__hours {
  color: #222;
  font-size: 14px;
}
.mobile-menu__brand {
  margin-top: 8px;
  color: #c00;
  font-weight: 800;
}

.mobile-menu.is-open {
  pointer-events: auto;
}
.mobile-menu.is-open .mobile-menu__backdrop {
  opacity: 1;
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

@media (max-width: 991px) {
  .hamburger {
    display: inline-block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
.site-logo {
  width: 42%;
}

.site-logo-text {
  font-size: 2.6rem;
  font-weight: 400;
}

.pc-header-nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  z-index: 100;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
}

.contact {
  max-width: 1440px;
  background: #fbf7dc;
  margin: 0 auto;
}

.contact__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-top: clamp(4rem, 1.6rem + 6.4vw, 8rem);
  padding-bottom: clamp(3.5rem, 1.4rem + 5.6vw, 7rem);
}

@media screen and (min-width: 992px) {
  .contact__inner {
    max-width: 55.5%;
    margin: 0 auto;
    padding-top: clamp(4rem, 1.6rem + 6.4vw, 8rem);
    padding-bottom: clamp(3.5rem, 1.4rem + 5.6vw, 7rem);
  }
}
.contact__title {
  position: relative;
  text-align: center;
  margin: 0 auto 8rem;
  font-size: 6.6rem;
  line-height: 1.023;
  letter-spacing: 0.1em;
  font-weight: 700;
}

@media screen and (min-width: 992px) {
  .contact__title {
    font-size: 5.8rem;
  }
}
.contact__title::after {
  content: "";
  position: absolute;
  bottom: -0.75em;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  max-width: 2.7em;
  width: 100%;
  height: 1px;
  background-color: #000;
  margin: 0 auto;
}

.contact__tabs {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

@media screen and (min-width: 992px) {
  .contact__tabs {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.contact__tabs ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.2rem 0;
}

.contact__tabs ul li {
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .contact__tabs ul li {
    width: 48.75%;
    text-align: center;
  }
}
.contact__tabs ul li a {
  display: block;
  background-image: linear-gradient(90deg, rgb(248, 215, 0), rgb(255, 227, 47), rgb(234, 203, 1));
  color: #000;
  border-radius: 50px;
  padding: 3rem 1rem;
  font-size: 4.3rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  box-shadow: 0 0.6rem 0 rgb(209, 181, 1);
  border: solid 4.5px #fff;
}

@media screen and (min-width: 992px) {
  .contact__tabs ul li a {
    font-size: 2rem;
  }
}
.contact__tabs ul li a span {
  margin-left: 2rem;
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
}

@media screen and (min-width: 992px) {
  .contact__tabs ul li a span {
    margin-left: 1rem;
    width: 2.4rem;
    height: 2.4rem;
  }
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.form-field {
  display: grid;
  gap: 0.6rem;
}
.form-field--full {
  grid-column: 1/-1;
}

.Form-Item-Label {
  margin-bottom: 1.5rem;
  font-size: clamp(1.6rem, 0.76rem + 2.24vw, 3rem);
  font-weight: 700;
}

.Form-Item-Label-Required {
  display: inline-block;
  font-size: clamp(1.2rem, 0.6rem + 1.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.38;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  margin-left: 0.6rem;
  background: #e60000;
  color: #fff;
}

.Form-Item-Label-optional {
  display: inline-block;
  font-size: clamp(1.2rem, 0.6rem + 1.6vw, 2.2rem);
  font-weight: 700;
  line-height: 1.38;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  margin-left: 0.6rem;
  background: #1c368c;
  color: #fff;
}

input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

input[type=text],
input[type=email],
input[type=tel],
textarea,
input[type=file],
input[type=date] {
  width: 100%;
  border-radius: 1.09rem;
  background: #fff;
  padding: 2.8rem 1.2rem;
  margin-bottom: 4rem;
  font-size: clamp(1.6rem, 0.76rem + 2.24vw, 3rem);
  box-shadow: 0 0.5rem 0 rgba(237, 102, 102, 0.3);
  color: #110606;
}

.wpcf7-select {
  width: 100%;
  border-radius: 1.09rem;
  background: #fff;
  padding: 3rem 1.2rem;
  margin-bottom: 4rem;
  font-size: clamp(1.6rem, 0.76rem + 2.24vw, 3rem);
  box-shadow: 0 0.5rem 0 rgba(237, 102, 102, 0.3);
  color: #000;
}

.wpcf7-radio {
  display: flex;
  gap: 10px;
}

input[type=file] {
  padding-left: 0rem;
}

textarea {
  height: 26rem;
}

input[type=file]::file-selector-button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #000;
  background: #fff;
  font-size: 3rem;
  border: 0;
  border-radius: 10em;
  padding: 0.8rem 1.6rem;
  text-align: center;
}

.wpcf7-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.wpcf7-list-item-label {
  font-size: clamp(1.6rem, 0.94rem + 1.76vw, 2.7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  cursor: pointer;
}

.wpcf7-list-item input[type=checkbox] {
  position: relative;
  margin-right: 1rem;
  width: 5rem;
  height: 5rem;
  border: 0.1rem solid #aaaaaa;
  cursor: pointer;
}

.checkbox:checked::after {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 0.4rem;
  width: 2rem;
  height: 1rem;
  border-bottom: 0.3rem solid #06b6d4;
  border-left: 0.3rem solid #06b6d4;
  transform: rotate(-45deg);
}

.form-hint {
  font-size: 1.2rem;
  color: #666;
}

.form-error {
  color: #d60000;
  font-size: 1.2rem;
  min-height: 1em;
}

.form-consent {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* -webkit-box-align: center; */
  -ms-flex-align: center;
  /* align-items: center; */
  gap: 8px;
  margin: 0 auto;
}

.checkbox-text {
  width: 100%;
  text-align: center;
}

.form-privacy-link {
  display: block;
  margin: 2rem auto 0;
  font-size: 3rem;
  color: #1c368c;
  text-decoration: underline;
  text-align: center;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 0.8rem;
}

.btn {
  border: none;
  cursor: pointer;
}

input[type=submit] {
  display: block;
  width: clamp(20rem, -2.56rem + 60.16vw, 57.6rem);
  background: linear-gradient(90deg, rgb(233, 0, 0), rgb(233, 97, 0), rgb(233, 0, 0));
  color: #fff;
  font-size: clamp(2.4rem, 1.206rem + 3.184vw, 4.39rem);
  letter-spacing: 0.1em;
  border-radius: 50px;
  box-shadow: 0 0.6rem 2px rgba(0, 0, 0, 0.7);
  margin: 7rem auto 0;
  padding: 4rem 0;
  font-weight: 700;
  text-align: center;
  border: solid 4.5px #fff;
}

input[type=submit][disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 1.4rem;
}

.container {
  max-width: 1440px;
  margin-inline: auto;
}

.fv-banner-wrap-1 img {
  margin-bottom: -7rem;
}

.fv-banner-wrap-1-img.pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .fv-banner-wrap-1-img.pc {
    display: block;
    margin-bottom: -8rem;
  }
}
.fv-banner-wrap-1-img.sp {
  display: block;
  margin-bottom: -8%;
}

@media screen and (min-width: 992px) {
  .fv-banner-wrap-1-img.sp {
    display: none;
  }
}
.fv-container {
  background-image: url(img/banner/fv-bg.jpg);
  background-position: 0;
  background-size: cover;
}

.fv-inner {
  max-width: 192rem;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .fv-inner {
    max-width: 1440px;
    margin: 0 auto;
  }
}

.fv-banner-wrap-2 {
  margin-top: -0.8%;
}

.fv-img {
  margin-bottom: -6rem;
}

.purchase-record {
  position: relative;
  background-image: url("img/banner/swiper-bg.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.purchase-record__inner {
  margin: 0 auto;
}

.purchase-record__title {
  width: 85.9%;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .purchase-record__title {
    max-width: 950px;
    margin: 0 auto;
  }
}
img.purchase-record__title-img {
  position: relative;
  margin-bottom: -14rem;
  z-index: 10;
}

.purchase-record__btn {
  /* position: absolute; */
  /* left: 50%; */
  /* bottom: -11%; */
  display: block;
  width: 73.1rem;
  margin: 0 auto;
  /* -webkit-transform: translate(-50%, -50%); */
  /* transform: translate(-50%, -50%); */
}

.purchase-record__btn-img {
  width: 100%;
  height: auto;
  margin-bottom: -5rem;
}

.purchase-record__text {
  margin-bottom: 1.5rem;
  font-size: 3.8rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.31;
  letter-spacing: 0.05em;
}

.banners {
  padding-bottom: 5rem;
}

.banners-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  background-color: #fdf7df;
}

@media screen and (min-width: 992px) {
  .banners-container {
    max-width: 1440px;
    margin: 0 auto;
  }
}
.benners-inner {
  display: flex;
  flex-direction: column;
  padding-inline: 6rem;
}

.bannner-btn-wrap {
  background-color: #fdf7df;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 4rem;
}

@media screen and (min-width: 615px) {
  .bannner-btn-wrap {
    width: 61%;
    margin: 0 auto;
  }
}
.banner_text {
  background-color: #fdf7df;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.75;
  color: #39b54a;
  text-align: center;
}

.tel-btn-wrap {
  width: 48.86%;
}

.form-link-btn-wrap {
  width: 48.86%;
}

.limited-banner-wrap.sp {
  display: block;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  padding-inline: 6rem;
  background: #fff;
}

.limited-banner-wrap.pc {
  display: none;
  padding-inline: 9.7%;
}

@media screen and (min-width: 615px) {
  .limited-banner-wrap.pc {
    display: block;
  }
  .limited-banner-wrap.sp {
    display: none;
  }
}
.purchase-record__title-img {
  margin-top: -2rem;
}

.gradation-bg {
  background: linear-gradient(90deg, #ffffff 0%, #fdf7df 100%);
}

.repeat-percent {
  background-image: url(img/banner/fv-bg.jpg);
  background-position: 0;
  background-size: cover;
}

.repeat-percent__inner {
  position: relative;
}

.repeat-percent-img-wrap {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .repeat-percent-img-wrap {
    width: 65.97%;
    margin: 0 auto;
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
.repeat-percent-img-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, #ffffff);
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .repeat-percent-img-wrap::after {
    max-width: 1440px;
    width: 151.6%;
    margin: 0 auto;
  }
}
.repeat-percent-img {
  position: relative;
  z-index: 10;
}

.repeat-percent-text-wrap {
  position: absolute;
  width: 38rem;
  top: 55.5555555556%;
  left: 5.6375838926%;
  z-index: 10;
}

@media screen and (min-width: 992px) {
  .repeat-percent-text-wrap {
    width: 38rem;
    top: 55.5555555556%;
    left: 19.4444444444%;
    z-index: 10;
  }
}
.repeat-percent-text {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.52;
}

.repeat-percent-dsc {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: 300;
}

.purchased-items__inner {
  padding-top: 5rem;
}

.purchased-items {
  background: linear-gradient(90deg, #ffffff 0%, #fdf7df 100%);
}

.purchased-items-ttl-wrap {
  width: 71.9rem;
  margin: 0 auto;
}

.purchased-items-ttl-wrap img {
  margin-bottom: -10rem;
}

.purchased-items__title {
  font-family: noto serif jp, serif;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.purchased-items-content-l-wrap {
  margin-top: 3%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

@media screen and (min-width: 992px) {
  .purchased-items-content-l-wrap {
    margin-top: -8%;
    display: none;
  }
}
.purchased-items-content-l {
  width: 31.07%;
}

.purchased-items-carousel {
  margin-top: 4rem;
  overflow: hidden;
  display: none;
}

@media screen and (min-width: 992px) {
  .purchased-items-carousel {
    margin-top: 6rem;
    display: block;
  }
}
.purchased-items-carousel__viewport {
  margin: 0 -20px;
}

.purchased-items-swiper {
  padding: 0 20px;
  overflow: visible;
}

.purchased-items-swiper__slide {
  display: flex;
  justify-content: center;
}

.purchased-items-swiper__slide .purchased-items-content-l {
  width: auto;
  max-width: 28rem;
}

.purchased-items-swiper__slide .purchased-items-content-l-img {
  width: 100%;
  height: auto;
}

.purchased-items-content-wrap {
  display: none;
  flex-wrap: wrap;
  gap: 2.4rem;
  padding-inline: 2rem;
  margin-bottom: 4rem;
}

.purchased-items-content {
  width: 17.75%;
  aspect-ratio: 1/1;
  border: solid 1px #ddcfcd;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
}

.purchased-txt {
  text-align: center;
  padding-bottom: 6.5rem;
}

.purchased-price {
  background: linear-gradient(90deg, #ffffff 0%, #fdf7df 100%);
}

.purchased-price-ttl-wrapp {
  background-color: #fff;
  box-shadow: 0.8rem 0.8rem #534741;
  max-width: 88rem;
  margin: 0 auto;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.purchased-price-ttl {
  font-size: 7.4rem;
  font-weight: bold;
  text-align: center;
}

.purchased-price-tb-btn-container {
  max-width: 88rem;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
}

.purchased-price-tb-btn-wrap {
  display: flex;
  width: 30.49%;
}

@media screen and (min-width: 615px) {
  .purchased-price-tb-btn-wrap {
    width: 23%;
  }
}
.purchased-price-tb-btn-container::before,
.purchased-price-tb-btn-container::after {
  content: "";
  display: block;
  width: 30.49%;
}

@media screen and (min-width: 615px) {
  .purchased-price-tb-btn-container::before,
  .purchased-price-tb-btn-container::after {
    width: 23%;
  }
}
.purchased-price-tb-btn-container::before {
  order: 1;
}

.purchased-praice-update {
  margin-bottom: 4.4rem;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

.purchased-price-tb-btn {
  width: 100%;
  font-size: 2.8rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border: solid 0.3rem #fff;
  border-radius: 0.68rem;
  background-color: #dbca99;
  color: #000;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 0.4rem #534741;
}

@media screen and (min-width: 615px) {
  .purchased-price-tb-btn {
    font-size: 2.2rem;
  }
}
.purchased-price-tb-btn.active {
  background-color: #8c6239;
  color: #fff;
}

.purchased-txt {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
}

.purchased-price__inner {
  padding-bottom: 8rem;
}

@media screen and (min-width: 615px) {
  .purchased-price__inner {
    padding-bottom: 10rem;
  }
}
.purchased-price-tb-card-price-container {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.purchased-price-tb-card-wrap {
  max-width: 93.4rem;
  margin: 6rem auto 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

@media screen and (min-width: 992px) {
  .purchased-price-tb-card-wrap {
    max-width: 98.6%;
    margin: 6rem auto 6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
  }
}
.purchased-price-tb-card-wrap.hidden {
  display: none;
}

.purchased-price-tb-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  width: 43.2%;
  min-width: 43.2rem;
  background-color: #fff;
  border: solid 0.4rem #f3ecd3;
  border-radius: 1rem;
}

.purchased-price-tb-card.pc6 {
  display: none;
}

.purchased-price-tb-card.card-hidden {
  display: none;
}

@media screen and (min-width: 615px) {
  .purchased-price-tb-card {
    padding: 1.5rem;
    width: 31.23%;
    min-width: 0;
  }
  .purchased-price-tb-card.pc6 {
    display: block;
  }
}
.purchased-price-tb-card-img {
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
}

@media screen and (min-width: 615px) {
  .purchased-price-tb-card-img {
    aspect-ratio: 1/1;
    display: flex;
  }
}
.purchased-price-tb-card-price-wrap {
  display: flex;
  align-items: center;
}

.purchased-price-tb-card-title {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .purchased-price-tb-card-title {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
  }
}
.purchased-price-tb-card-price-label {
  margin-right: 1.5rem;
  margin-bottom: 0.6rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  background-color: #c4a858;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .purchased-price-tb-card-price-label {
    margin-right: 1.5rem;
    margin-bottom: 0.6rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    background-color: #c4a858;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
  }
}
.purchased-price-tb-card-date-label {
  margin-right: 1.5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  background-color: #c4a858;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .purchased-price-tb-card-date-label {
    margin-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    background-color: #c4a858;
    font-size: 2.7rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
  }
}
.purchased-price-tb-card-price {
  font-size: 4rem;
  font-family: "Noto Serif JP", serif;
  color: #d92423;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (min-width: 992px) {
  .purchased-price-tb-card-price {
    font-family: "Noto Serif JP", serif;
    color: #d92423;
    font-weight: 700;
    line-height: 1.5;
  }
}
.purchased-price-tb-card-price-date {
  font-size: 2.6rem;
  color: #000;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 615px) {
  .purchased-price-tb-card-price-date {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.1em;
  }
}
.purchased-price-tb-card-btn-wrap {
  display: flex;
  margin: 0 auto;
  width: 77.8rem;
}

.purchased-price-tb-card-btn {
  position: relative;
  width: 100%;
  margin-bottom: 2.5rem;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  padding-right: 5.3rem;
  padding-left: 5.3rem;
  background-color: #fff;
  border: solid 1px #361a0f;
  border-radius: 4.847rem;
  color: #361a0f;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 0.692;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.purchased-price-tb-card-btn::before,
.purchased-price-tb-card-btn::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 0.3rem;
  height: 2.2rem;
  background-color: #361a0f;
  transform: translate(-50%, -50%);
}

.purchased-price-tb-card-btn::before {
  right: 1.92em;
  top: 50%;
}

.purchased-price-tb-card-btn::after {
  transform: rotate(90deg);
  right: 2em;
  top: 36%;
}

.purchased-price-tb-card-btn.active::before {
  animation: rotate 0s ease-in-out forwards;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: rotate(90deg);
    opacity: 0;
  }
}

.purchased-price-tb-card-btn-note {
  max-width: 88.7rem;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
  color: #361a0f;
}

.gold-purchased-price {
  max-width: 1440px;
  margin: 0 auto;
}

.gold-purchased-price__inner {
  padding-bottom: 10rem;
  padding-inline: 5rem;
}

@media screen and (min-width: 992px) {
  .gold-purchased-price__inner {
    padding-bottom: 8rem;
    padding-inline: 14rem;
  }
}
.gold-purchased-price {
  background-image: url(img/banner/fv-bg.jpg);
  background-position: 0;
  background-size: cover;
}

.gold-purchased-price-img-wrap {
  position: relative;
}

.gold-purchased-price-date {
  position: absolute;
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  transform: translate(-50%, -50%);
  top: 36.581395%;
  left: 50%;
}

.gold-purchased-price-text {
    position: absolute;
    width: 100%;
    width: 87%;
    top: 31%;
    left: 22.6244343891%;
    font-family: noto serif jp, serif;
    font-size: 3.6vw;
    font-weight: 700;
    display: inline-block;
    background: linear-gradient(90deg, #fbcf00 0.56%, #fffcd1 25.2%, #FFCC70 59.5%, #f3e18b 87%, #fffcd1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media screen and (min-width: 992px) {
  .gold-purchased-price-text {
    top: 31.2729948492%;
    left: 22.6244343891%;
    font-size: 6.3rem;
  }
}


.consultation {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #fdf7df;
}

.consultation__inner {
  padding-top: 10rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  .consultation__inner {
    padding-top: 10rem;
    padding-bottom: 1rem;
  }
}
.consultation-img-wrap {
  width: 88rem;
  margin: 0 auto;
  margin-bottom: -3%;
}

@media screen and (min-width: 992px) {
  .consultation-img-wrap {
    margin-bottom: 0;
  }
}
.consultation-text {
  margin-bottom: 4.5rem;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.38;
  text-align: center;
}

.promise {
  background: linear-gradient(90deg, #ffffff 0%, #e8ffff 100%);
}

.promise__inner {
  padding-bottom: 51rem;
  display: block;
}

@media screen and (min-width: 992px) {
  .promise__inner {
    max-width: 115rem;
    width: 79.86%;
    margin: 0 auto;
  }
}
.promise-content-container {
  display: flex;
  flex-direction: column;
  padding-top: 8rem;
}

@media screen and (min-width: 992px) {
  .promise-content-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.promise-content-wrap {
  display: flex;
  flex-direction: column;
  width: 81.6%;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .promise-content-wrap {
    width: 45.6%;
  }
}
.promise-content-ttl {
  position: relative;
  margin-bottom: 1.5rem;
  font-family: noto serif jp, serif;
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-left: 2.5em;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl {
    padding-left: 2.2em;
    line-height: 1;
  }
}
.promise-content-ttl::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: calc(100% - 3em);
  height: 2px;
  background-color: #d92423;
  transform: translateY(-50%);
  bottom: 0;
  left: 2.9em;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl::after {
    bottom: -0.3em;
    left: 2em;
    width: calc(100% - 2.1em);
  }
}
.promise-content-ttl.first-ttl::after {
  width: 9.5em;
  left: 0;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl {
    font-size: 3.6rem;
  }
}
.promise-content-ttl.first-ttl {
  margin-left: 2.2em;
  padding-left: 0;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl.first-ttl {
    padding-left: 0;
  }
}
.promise-content-ttl.second-ttl {
  font-size: 4.1rem;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl.second-ttl {
    font-size: 3.6rem;
  }
}
.promise-content-ttl.third-ttl {
  font-size: 4.4rem;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl.third-ttl {
    font-size: 3.6rem;
  }
}
.promise-content-ttl.fourth-ttl {
  font-size: 3.9rem;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl.fourth-ttl {
    font-size: 3.6rem;
  }
}
.promise-content-ttl.first-ttl::before {
  position: absolute;
  content: "";
  background-image: url("img/banner/promise-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-bottom: -7rem;
  margin-right: 2rem;
  width: 10rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  top: 73%;
  left: -1.2em;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl.first-ttl::before {
    left: -1.5em;
    top: 2rem;
  }
}
.promise-content-ttl.second-ttl::before {
  position: absolute;
  content: "";
  background-image: url("img/banner/promise-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-bottom: -7rem;
  margin-right: 2rem;
  width: 10rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  top: 5rem;
  left: 1em;
}

@media screen and (min-width: 992px) {
  .promise-content-ttl.second-ttl::before {
    left: 0.5em;
    top: 2rem;
  }
}
.promise-content-ttl.third-ttl::before {
  position: absolute;
  content: "";
  background-image: url("img/banner/promise-3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-bottom: -7rem;
  margin-right: 2rem;
  width: 10rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  top: 5rem;
  left: 0.7em;
}

.promise-content-ttl.fourth-ttl::before {
  position: absolute;
  content: "";
  background-image: url("img/banner/promise-4.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  margin-bottom: -7rem;
  margin-right: 2rem;
  width: 10rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  top: 5rem;
  left: 0.6em;
}

.promise-ttl-img-wrap {
  width: 84.1rem;
  margin: 0 auto;
  margin-bottom: -20%;
}

.promise-content-text {
  margin-bottom: 4.5rem;
  width: 100%;
  padding-left: 12rem;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.57;
  letter-spacing: 0.051em;
  color: #361a0f;
  word-break: break-word;
}

@media screen and (min-width: 992px) {
  .promise-content-text {
    font-size: 2rem;
    padding-left: 0;
  }
}
.promise-content-text span {
  font-weight: 700;
  color: #d92423;
  text-decoration: underline;
  text-decoration-color: #d92423;
  text-decoration-thickness: 0.1rem;
  text-underline-offset: 0px;
}

.manager-comment-wrap {
  padding-top: 4rem;
  padding-inline: 5rem;
  margin-top: -48rem;
  background-color: #fff;
}

@media screen and (min-width: 992px) {
  .manager-comment-wrap {
    padding-inline: 0rem;
  }
}
.manager-comment-ttl {
  margin-bottom: 0.6rem;
  font-size: 5.6rem;
  font-family: noto serif jp, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.1em;
  color: #000;
}

.manager-comment-ttl.pc {
  display: none;
  margin-top: -3rem;
  margin-bottom: 5rem;
  font-size: 5.6rem;
  font-family: noto serif jp, serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.1em;
  color: #000;
}

@media screen and (min-width: 615px) {
  .manager-comment-ttl {
    display: none;
  }
  .manager-comment-ttl.pc {
    display: block;
  }
}
.manager-comment-txt-wrap {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  padding-top: 5rem;
  padding-bottom: 4rem;
  padding-left: 4rem;
  padding-right: 3.2rem;
  max-width: 880px;
  border: solid 0.6rem #eee6ce;
  border-radius: 3rem;
  background-color: #fff;
}

@media screen and (min-width: 992px) {
  .manager-comment-txt-wrap {
    max-width: 116rem;
    width: 80.5%;
    margin: 0 auto;
  }
}
.manager-comment-txt {
  width: 67.0854271357%;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.7;
}

@media screen and (min-width: 615px) {
  .manager-comment-txt {
    width: 74.6%;
    font-size: 2rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 615px) {
  br.sp {
    display: none;
  }
}
.manager-comment-txt p {
  font-size: 2rem;
}

.manager-profile-wrap {
  width: 28.5175879397%;
}

@media screen and (min-width: 992px) {
  .manager-profile-wrap {
    width: 19.53%;
  }
}
.manager-profile-job {
  margin-top: 2rem;
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.52;
}

@media screen and (min-width: 615px) {
  .manager-profile-job {
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
  }
}
.manager-profile-name {
  margin-top: 1rem;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.11;
}

.manager-profile-name {
  margin-top: 0.5rem;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.11;
}

.shop-strength__inner {
  background-color: #fff;
  padding-top: 6rem;
  padding-inline: 6rem;
  padding-bottom: 6rem;
}

@media screen and (min-width: 992px) {
  .shop-strength__inner {
    padding-bottom: 13rem;
  }
  .shop-strength__inner > *:first-child {
    grid-column: 1/-1;
  }
}
.shop-strength-content-container {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
  }
}
.shop-strength-content-wrap {
  max-width: 88rem;
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 4rem;
  border-bottom: solid 0.3rem #c69c6d;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-wrap {
    width: 30.2%;
    border-bottom: none;
  }
}
.shop-strength-ttl-img-wrap {
  width: 86.9rem;
  margin: 0 auto -7rem;
}

.shop-strength-content-wrap.first-content {
  border-top: solid 0.3rem #c69c6d;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-wrap.first-content {
    border-top: none;
  }
}
.shop-strength-content-ttl {
  position: relative;
  display: flex;
  align-items: center;
  font-family: noto serif jp, serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.78;
  letter-spacing: 0.05em;
  padding-left: 2.5em;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-ttl {
    padding-left: 0;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
  }
}
.shop-strength-content-ttl.first-ttl::before {
  position: absolute;
  content: "";
  background-image: url("img/banner/strength-1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 11.6rem;
  height: 11.6rem;
  margin-bottom: -2rem;
  left: -0.2em;
}

.shop-strength-content-ttl.second-ttl::before {
  position: absolute;
  content: "";
  background-image: url("img/banner/strength-2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 11.6rem;
  height: 11.6rem;
  margin-bottom: -2rem;
  left: -0.2em;
}

.shop-strength-content-ttl.third-ttl::before {
  position: absolute;
  content: "";
  background-image: url("img/banner/strength-3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  width: 11.6rem;
  height: 11.6rem;
  margin-bottom: -2rem;
  left: -0.2em;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-ttl.third-ttl::before {
    top: -0.2em;
  }
}
.shop-strength-content-ttl.first-ttl span {
  font-size: 3.3rem;
  line-height: 1.73;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-ttl.first-ttl {
    font-size: 3.3rem;
    padding: 1rem 4.5rem 3rem 10rem;
  }
}
@media screen and (min-width: 992px) {
  .shop-strength-content-ttl.first-ttl span {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .shop-strength-content-ttl.second-ttl {
    font-size: 3.3rem;
    padding: 2rem 0 4rem 10rem;
  }
}
@media screen and (min-width: 992px) {
  .shop-strength-content-ttl.second-ttl span {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 992px) {
  .shop-strength-content-ttl.third-ttl {
    font-size: 3.3rem;
    padding: 2rem 8rem 4rem 10rem;
  }
}
@media screen and (min-width: 992px) {
  .shop-strength-content-ttl.third-ttl span {
    font-size: 2.6rem;
  }
}
.shop-strength-content-ttl.first-ttl span br {
  display: none;
}

.shop-strength-content-ttl br.pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-ttl br.pc {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .shop-strength-content-ttl.first-ttl span br {
    display: block;
  }
}
.shop-strength-content-ttl.second-ttl span {
  font-size: 3.3rem;
  line-height: 1.73;
  letter-spacing: 0.05em;
}

.shop-strength-content-ttl.third-ttl span {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}

.shop-strength-content-text-wrap {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-text-wrap {
    flex-direction: column;
  }
}
.shop-strength-content-text {
  width: 59.53%;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.61;
  letter-spacing: 0.051em;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-text {
    width: 100%;
    font-size: 1.5rem;
    margin-bottom: 3rem;
  }
}
.shop-strength-content-text-img {
  width: 36.9%;
  background-color: #e6e6e6;
  border-radius: 2rem;
}

@media screen and (min-width: 992px) {
  .shop-strength-content-text-img {
    width: 100%;
  }
}
.shop-strength + .consultation > .consultation__inner {
  padding-top: 8rem;
}

.features-wrap {
  background-color: #fff;
}

.purchased-600m-img-wrap {
  margin-bottom: -5em;
}

.features-txt {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (min-width: 615px) {
  .features-txt {
    margin-bottom: 2rem;
    font-size: 2.6rem;
  }
}
.features-img-wrap {
  width: 64.4rem;
  margin: 0 auto;
  padding-bottom: 5rem;
}

@media screen and (min-width: 992px) {
  .features-img-wrap {
    max-width: 107.8rem;
    width: 74.86%;
    margin: 0 auto;
    padding-bottom: 2rem;
  }
}
.features-img {
  display: block;
}

@media screen and (min-width: 992px) {
  .features-img {
    display: none;
  }
}
.pc-features-img {
  display: none;
}

@media screen and (min-width: 992px) {
  .pc-features-img {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .pc-features-img {
    display: block;
  }
}
.history__inner {
  background-color: #fff;
}

.history-detail {
  background-image: url("img/banner/history-bg.png");
  background-position: 0;
  background-size: cover;
}

.history-detail__inner {
  padding-top: 2rem;
}

.history-stores-255-img-wrap {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}

.history-600m-l-img {
  position: relative;
  margin-bottom: -9rem;
  z-index: 10;
}

.history-stores-history-img-wrap {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  margin-inline: auto;
  margin-bottom: -9rem;
  width: 88rem;
}

@media screen and (min-width: 992px) {
  .history-stores-history-img-wrap {
    max-width: 123.2rem;
    width: 85.5%;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.history-stores-history-img-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 117%;
  height: 100%;
  background: linear-gradient(transparent, #ffffff);
  z-index: 1;
}

@media screen and (min-width: 992px) {
  .history-stores-history-img-wrap::after {
    min-width: 123.2rem;
  }
}
.history-600m-l-img {
  display: block;
}

@media screen and (min-width: 992px) {
  .history-600m-l-img {
    display: none;
  }
}
.history-600m-l-img-pc {
  display: none;
}

@media screen and (min-width: 992px) {
  .history-600m-l-img-pc {
    display: block;
  }
}
.history-detail-item-wrap {
  position: relative;
  border-radius: 0 0 8rem 0;
  background-image: linear-gradient(60deg, #ffffff, #e8ffff);
}

.history-detail-item-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 51%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-color: #1a1a1a;
}

.history-detail-item-wrap__inner {
  padding-top: 14rem;
  padding-bottom: 10rem;
}

@media screen and (min-width: 992px) {
  .history-detail-item-wrap__inner {
    max-width: 130rem;
    margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 10rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 6rem;
         column-gap: 6rem;
    row-gap: 6rem;
    grid-auto-rows: auto;
  }
}
.history-detail-item {
  position: relative;
  max-width: 84rem;
  margin: 0 auto 9rem;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  padding-left: 8.5rem;
  padding-right: 4rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0.7rem 0.7rem #000;
}

@media screen and (min-width: 992px) {
  .history-detail-item {
    padding-bottom: 9rem;
  }
}
.history-detail-item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .history-detail-item:last-child {
    max-width: 100%;
    margin-bottom: 9rem;
  }
}
.history-detail-item.first-item ::before {
  content: "";
  position: absolute;
  background-image: url("img/banner/point1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  max-width: 55.1rem;
  width: 100%;
  height: 35.3474320242%;
  top: -15.1057401813%;
  left: -4.5rem;
}

.history-detail-item.second-item ::before {
  content: "";
  position: absolute;
  background-image: url("img/banner/point2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  max-width: 52rem;
  width: 100%;
  height: 35.3474320242%;
  top: -15.1057401813%;
  left: -4.5rem;
}

.history-detail-item.third-item ::before {
  content: "";
  position: absolute;
  background-image: url("img/banner/point3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  max-width: 42rem;
  width: 100%;
  height: 35.3474320242%;
  top: -15.1057401813%;
  left: -4.5rem;
}

.history-detail-item.fourth-item ::before {
  content: "";
  position: absolute;
  background-image: url("img/banner/point4.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  max-width: 58.13rem;
  width: 100%;
  height: 35.3474320242%;
  top: -15.1057401813%;
  left: -4.5rem;
}

.history-detail-item-ttl {
  font-family: noto serif jp, serif;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #e60012;
}

@media screen and (min-width: 992px) {
  .history-detail-item-ttl {
    font-size: 4.7rem;
  }
}
@media screen and (min-width: 992px) {
  .history-detail-item-ttl.fourth-ttl {
    font-size: 4.1rem;
  }
}
.history-detail-item-text {
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1.38;
}

@media screen and (min-width: 992px) {
  .history-detail-item-text {
    font-size: 2rem;
  }
}
.comparison {
  background-color: #1a1a1a;
}

.comparison-inner {
  padding-top: 3rem;
  padding-bottom: 9rem;
}

@media screen and (min-width: 615px) {
  .comparison-inner {
    padding-bottom: 4rem;
  }
}
.comparison-content-ttl {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.1em;
  color: #fff;
}

.comparison-content-wrap {
  width: 80.6rem;
  margin: 0 auto;
}

@media screen and (min-width: 615px) {
  .comparison-content-wrap {
    width: 55.97%;
    margin: 0 auto;
  }
}
.drive-through {
  position: relative;
  background-color: #d92423;
  border-radius: 0 0 8rem 0;
}

.drive-through::after {
  content: "";
  display: block;
  position: absolute;
  top: 51%;
  left: 50%;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: translate(-50%, -50%);
  background-color: #fff;
}

.drive-through {
  padding-bottom: 6rem;
}

.drive-through-banner-wrap {
  background-color: #1a1a1a;
}

img.drive-through-banner-img {
  margin-bottom: -10rem;
}

.drive-through-banner-text-wrap {
  max-width: 88rem;
  width: 100%;
  -webkit-clip-path: polygon(100% 0, 100% 83%, 54% 100%, 0 87%, 0 0);
          clip-path: polygon(100% 0, 100% 83%, 54% 100%, 0 87%, 0 0);
  margin: 0 auto;
  padding-top: 3rem;
  padding-bottom: 6.5rem;
  padding-left: 2.5rem;
  padding-right: 3.5rem;
  background-color: #fff;
}

.drive-through-banner-text {
  font-size: 2.6rem;
  line-height: 1.57;
}

.clip-path-shadow {
  filter: drop-shadow(0.8rem 0.8rem 0rem rgb(0, 0, 0));
}

.drive-through__steps {
  padding-top: 2rem;
}

.drive-through__step {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  max-width: 88rem;
  width: 100%;
  margin: 0 auto 5rem;
  padding-top: 3rem;
  padding-bottom: 4rem;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  border-radius: 2.065rem;
}

.drive-through__step:nth-child(4) {
  margin-bottom: 3rem;
}

.drive-through__step::after {
  position: absolute;
  content: "";
  display: block;
  width: 3.97rem;
  height: 3.44rem;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
  background-color: #fbb03b;
  bottom: -1.7rem;
  left: 50%;
  transform: translate(-50%, 50%);
}

.drive-through__step:nth-child(4)::after {
  display: none;
}

.drive-through__step-text-wrap {
  display: flex;
  flex-direction: column;
  width: 57.5308641975%;
}

.drive-through__step-number {
  margin-right: 1.5rem;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.75;
  color: #999999;
}

.drive-through__step-number span {
  font-size: 5.7rem;
}

.drive-through__step-title {
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1.75;
  color: #e60012;
}

.drive-through__step-car-icon-wrap {
  display: inline-block;
  width: 11.7rem;
  height: 4.44rem;
}

.drive-through__step-desc {
  font-size: 2.6rem;
  line-height: 1.57;
  color: #000;
}

.drive-through__step-image-wrap {
  width: 34.1975308642%;
  height: 28.5rem;
  background-color: #e6e6e6;
  border-radius: 1rem;
  aspect-ratio: 277/285;
}

.drive-through__step-title.second-ttl {
  line-height: 1.178;
  margin-bottom: 10px;
}

.drive-through__comment-text {
  font-family: noto serif jp, serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.drive-through__comment-text span.fs47 {
  font-size: 4.7rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.drive-through__comment-text span.fs45 {
  font-size: 4.5rem;
}

.drive-through__comment-text span.fs37 {
  font-size: 3.7rem;
}

.drive-through__comment-text span.fs31 {
  font-size: 3.1rem;
}

.drive-through__comment-text span.fs40 {
  font-size: 4rem;
}

.drive-through__comment-text span.bc-wh {
  display: inline-block;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 5.3rem;
  background-color: rgba(255, 255, 255, 0.74);
  color: #d92423;
}

.drive-through__comment-text span.bc-wh span.fs45 {
  font-size: 4.5rem;
}

.reason-inner {
  background-color: #fff;
  padding-top: 1.5rem;
  padding: 1rem;
}

@media screen and (min-width: 1440px) {
  .reason-inner {
    padding-top: 2.5rem;
    padding-bottom: 12rem;
  }
}
.reason-ttl-img-wrap {
  width: 89.8rem;
  margin: 0 auto;
}

.reason-ttl-img {
  margin-bottom: -13rem;
}

.reason-ttl-sb {
  font-size: 3.88rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}

.google-review-container {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .google-review-container {
    max-width: 124rem;
    margin: 0 auto;
    gap: 10rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
.reason-content-container {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 992px) {
  .reason-content-container {
    max-width: 124rem;
    margin: 3rem auto 0;
    width: 86.1%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}
.reason-content-item-ttl {
  margin-bottom: 5rem;
  font-family: noto serif jp, serif;
  font-size: 4.96rem;
  font-weight: 700;
  color: #e60012;
}

@media screen and (min-width: 992px) {
  .reason-content-item-ttl {
    font-size: 3.6rem;
  }
}
.reason-content-item-ttl.third-ttl {
  font-size: 6rem;
}

@media screen and (min-width: 992px) {
  .reason-content-item-ttl.third-ttl {
    font-size: 3rem;
  }
}
.reason-content-wrap {
  max-width: 88rem;
  width: 100%;
  margin: 0 auto 8rem;
  padding-left: 6rem;
  border-left: solid 2rem #e60012;
  border-radius: 2rem 0 0 0;
}

@media screen and (min-width: 992px) {
  .reason-content-wrap {
    max-width: 124rem;
    margin: 0 auto;
    width: 86.1%;
    padding-left: 3rem;
    border-left: solid 1rem #e60012;
    border-radius: 1rem 0 0 0;
  }
}
.reason-content-item-text-wrap {
  margin-bottom: 5rem;
}

.reason-content-item-text {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.57;
  color: #000;
}

@media screen and (min-width: 992px) {
  .reason-content-item-text {
    font-size: 1.6rem;
  }
}
.reason-content-item-img-wrap {
  background-color: #f2f2f2;
  max-width: 80rem;
  width: 100%;
  aspect-ratio: 800/360;
}

.google-review {
  background-color: #fdf7df;
}

.google-review-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.google-review-ttl-sb {
  font-size: 3.7rem;
  font-weight: 700;
  line-height: 1.811;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .google-review-ttl-sb {
    font-size: 2.7rem;
  }
}
.google-review-ttl {
  font-size: 7.97rem;
  font-weight: 700;
  line-height: 1.811;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .google-review-ttl {
    font-size: 5.1rem;
  }
}
.google-logo-img-wrap {
  width: 48.1rem;
  margin: 0 auto;
}

.google-score-img-wrap {
  width: 28.1rem;
  margin: 0 auto;
}

.google-review-img {
  margin-bottom: -6rem;
}

.google-review-img-wrap {
  width: 45rem;
  margin: 0 auto;
}

.google-api-wrap {
  margin-bottom: 1rem;
}

.google-api-dummy-wrap {
  width: 92.8rem;
  margin: 0 auto;
}

.google-review-date {
  max-width: 90rem;
  width: 100%;
  margin: 0 auto 1.5rem;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 2.61;
  letter-spacing: 0.01em;
  text-align: center;
  border-top: solid 0.1rem #000;
  border-bottom: solid 0.1rem #000;
}

.google-review-update {
  font-size: 2.51rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
}

.google-review + .consultation > .consultation__inner {
  padding-top: 2%;
}

.access {
  background-color: #fdf7df;
}

.access__inner {
  padding-top: 9rem;
  padding-bottom: 10rem;
}

.access-ttl-sub {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.64;
  letter-spacing: 0.025em;
}

.access-ttl {
  position: relative;
  margin-bottom: 8rem;
  font-size: 5.8rem;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0.051em;
  text-align: center;
  z-index: 10;
}

.access-ttl::after {
  display: block;
  position: absolute;
  content: "";
  background-image: url("img/svg/map-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 16.5rem;
  height: 22.4rem;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  z-index: -1;
}

.access-map-content-wrap {
  max-width: 92rem;
  width: 100%;
  margin: 0 auto 4.2rem;
}

@media screen and (min-width: 992px) {
  .access-map-content-wrap {
    max-width: 124rem;
    margin: 0 auto 4.2rem;
  }
}
.access-map-wrap {
  position: relative;
  aspect-ratio: 1240/564;
  margin-bottom: 2rem;
}

.access-map-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access-root-wrap {
  max-width: 88rem;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 2rem;
}

.access-root-wrap.--car {
  margin-bottom: 3rem;
  padding-top: 4rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 2rem;
}

.access-root-wrap.--train {
  margin-bottom: 3.5rem;
  padding-top: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-bottom: 3.5rem;
}

.access-map-text {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 992px) {
  .access-map-text {
    font-size: 2.8rem;
  }
}
.access-map-text:last-child {
  margin-top: 0;
}

.access-root-ttl-wrap {
  display: flex;
  align-items: center;
}

.access-root-ttl {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: #e60012;
}

.access-root-ttl-wrap-icon-wrap {
  width: 9.77rem;
  height: 3.97rem;
  margin-right: 3rem;
}

.access-root-ttl-wrap-icon-wrap.--train {
  width: 9.522rem;
  height: 7.737rem;
}

.access-root-text {
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0.051em;
}

.access-root-link {
  display: block;
  font-size: 3rem;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.05em;
  color: #e60012;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-thickness: 0.1rem;
  text-align: end;
}

.shop-image-items-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 87.7rem;
  width: 100%;
  margin: 0 auto;
}

.shop-image-item {
  max-width: 42.2rem;
  width: 48.1%;
}

.shop-image-wrap {
  width: 100%;
  aspect-ratio: 422/319;
  border-radius: 2rem;
}

.shop-image-desc {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.051em;
}

.assessment__inner {
  background: #fff;
  padding-bottom: 0.1rem;
}

.assessment-banner-img {
  margin-bottom: -25rem;
}

.assessment-tb-btns-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 89.2rem;
  width: 100%;
  margin: 0 auto 2rem;
}

@media screen and (min-width: 615px) {
  .assessment-tb-btns-wrap {
    max-width: 70.9%;
    margin: -17rem 0 15rem 7rem;
  }
}
.assessment-tb-btn-wrap {
  width: 32.06%;
}

.assessment-tb-btns-wrap::after {
  content: "";
  display: block;
  width: 32.06%;
  height: 100%;
  background-color: #fff;
}

.assessment-tb-btn {
  width: 100%;
  margin-bottom: 1.8rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border: solid 0.2rem #fff;
  border-radius: 0.681rem;
  background-color: #dbca99;
  color: #000;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0.2rem 0.2rem 0.1rem 0rem rgba(0, 0, 0, 0.25);
}

.assessment-tb-btn.active {
  background-color: #c4a858;
  color: #fff;
}

.assessment-check-wrap {
  max-width: 88rem;
  width: 100%;
  margin: 0 auto 3rem;
  padding-top: 5rem;
  padding-bottom: 6.5rem;
  background-color: #fdf7df;
  border-radius: 1.2042rem;
}

@media screen and (min-width: 615px) {
  .assessment-check-wrap {
    max-width: 61.1%;
  }
}
.assessment-check-wrap.active {
  display: block;
}

.assessment-check-wrap.hidden {
  display: none;
}

.assessment-check-ttl-wrap {
  max-width: 69.1rem;
  width: 100%;
  margin: 0 auto;
  border-bottom: solid 2px #361a0f;
  padding-bottom: 2.5rem;
}

.assessment-check-ttl {
  font-family: noto serif jp, serif;
  font-size: 5.09rem;
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (min-width: 615px) {
  .assessment-check-ttl {
    font-size: 4.09rem;
  }
}
.assessment-check-list-item {
  display: flex;
  max-width: 100%;
  width: 90%;
  padding-inline: 1rem;
  margin: 3rem auto 0;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.21;
  letter-spacing: 0.051em;
}

@media screen and (min-width: 615px) {
  .assessment-check-list-item {
    font-size: 2.5rem;
  }
}
.assessment-check-list-item::before {
  content: "";
  display: inline-block;
  background-image: url("img/icon/check.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 4.982rem;
  height: 3.937rem;
  margin-right: 0.8rem;
  aspect-ratio: 49.82/39.37;
}

.welcome-message-inner {
  padding-bottom: 0;
}

@media screen and (min-width: 615px) {
  .welcome-mesage-inner {
    padding-bottom: 16rem;
  }
}
.welcome-mesage-wrap {
  max-width: 1440px;
  margin-inline: auto;
  background-color: #fff;
}

.welcome-message-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.welcome-message-text {
  font-family: noto serif jp, serif;
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.636;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .welcome-message-text {
    font-size: 3.3rem;
  }
}
.welcome-message-text span {
  color: #d92423;
}

.welcome-mesage-wrap + .consultation > .consultation__inner {
  padding-top: 8rem;
}

.faq {
  background-color: #fdf7df;
  max-width: 1440px;
  margin: 0 auto;
}

.faq-inner {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.faq-ttl-wrap {
  margin-bottom: 3.4rem;
}

.faq-ttl-sb {
  font-size: 3.28rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
}

.faq-ttl {
  font-size: 7.74rem;
  font-weight: 700;
  line-height: 1.188;
  letter-spacing: 0.1em;
  text-align: center;
}

.faq-content-item {
  max-width: 88rem;
  width: 100%;
  margin: 0 auto 1.5rem;
}

.faq-content-item-ttl {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 1.4rem;
  padding-bottom: 1.8rem;
  padding-right: 6.7rem;
  padding-left: 1.4rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.285;
  letter-spacing: 0.05em;
  list-style: none;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0px 2px 0px 0px rgba(239, 101, 101, 0.3);
}

.faq-content-item-ttl::before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: "Q1";
  margin-right: 1.5rem;
  width: 5.956rem;
  height: 5.956rem;
  background-color: #fff;
  color: #e60012;
  font-size: 2.55rem;
  font-weight: 100;
  line-height: 1.75;
  letter-spacing: 0.05em;
  text-align: center;
  border: solid 0.3rem #e60012;
  border-radius: 50%;
}

.faq-content-item-ttl.second-ttl::before {
  content: "Q2";
}

.faq-content-item-ttl.third-ttl::before {
  content: "Q3";
}

.faq-content-item-ttl.fourth-ttl::before {
  content: "Q4";
}

.faq-content-item-ttl.fifth-ttl::before {
  content: "Q5";
}

.faq-content-item-ttl.sixth-ttl::before {
  content: "Q6";
}

.faq-content-item-ttl.seventh-ttl::before {
  content: "Q7";
}

.faq-content-item-ttl.eighth-ttl::before {
  content: "Q8";
}

.faq-content-item-ttl.ninth-ttl::before {
  content: "Q9";
}

.faq-content-item-ttl.tenth-ttl::before {
  content: "Q10";
  font-size: 2.4rem;
}

.faq-content-item-content {
  font-size: 3.1rem;
  line-height: 1.7;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 4rem;
  padding-right: 4rem;
  background-color: #fff;
  border-radius: 0 0 2rem 2rem;
}

.arrow {
  position: absolute;
  display: inline-block;
  width: 2.6rem;
  height: 1.7rem;
  right: 2rem;
  transition: 0.4s;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 2px);
  width: 0.4rem;
  height: 2.1rem;
  border-radius: 9999px;
  background-color: #e60012;
  transform-origin: 50% calc(100% - 2px);
  transition: 0.4s;
}

.arrow::before {
  transform: rotate(40.25deg);
}

.arrow::after {
  transform: rotate(-40.25deg);
}

details[open] .arrow::before {
  transform: rotate(220.25deg);
}

details[open] .arrow::after {
  transform: rotate(-220.25deg);
}

.blog {
  max-width: 1440px;
  margin: 0 auto;
}

.blog-inner {
  background: #fff;
  padding-top: 6rem;
}

.blog-content-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 88rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .blog-content-wrap {
    max-width: 1222px;
    margin: 0 auto;
  }
}
.blog-content-item {
  width: 47.1461187215%;
  margin-bottom: 7.5rem;
}

@media screen and (min-width: 992px) {
  .blog-content-item {
    width: 23.5833333333%;
    margin-bottom: 7.5rem;
  }
}
.blog-date {
  margin-bottom: 10px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.38;
  color: #e60012;
}

@media screen and (min-width: 992px) {
  .blog-date {
    font-size: 1.64rem;
  }
}
.blog-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.051em;
}

@media screen and (min-width: 992px) {
  .blog-ttl {
    font-size: 1.92rem;
  }
}
.blog-content-item-img-wrap {
  margin-bottom: 2.5rem;
  aspect-ratio: 413/319;
  border-radius: 1rem;
  background-color: #e6e6e6;
}

.essential {
  background-color: #fff;
}

.essential-inner {
  padding-bottom: 5rem;
}

.shop-information-inner:last-child {
  border-bottom: none;
}

.essential-content-wrap {
  max-width: 88rem;
  margin: 0 auto 5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 4rem;
  padding-bottom: 6rem;
  border: solid 0.5rem #999;
  border-radius: 2rem;
}

@media screen and (min-width: 992px) {
  .essential-content-wrap {
    max-width: 1240rem;
    width: 86.1%;
    margin: 0 auto 5rem;
    background-color: #fdf7df;
    border: none;
  }
}
.essential-content-ttl-wrap {
  max-width: 80rem;
  margin: 0 auto 5rem;
  padding-bottom: 3.5rem;
  border-bottom: solid 0.1rem #000;
}

@media screen and (min-width: 992px) {
  .essential-content-ttl-wrap {
    max-width: 103.2rem;
    width: 83.2%;
  }
}
.essential-content-ttl-sb {
  font-size: 4.89rem;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 992px) {
  .essential-content-ttl-sb {
    font-size: 4.08rem;
  }
}
.essential-content-ttl {
  font-size: 6.94rem;
  font-weight: 500;
  line-height: 1.32;
  text-align: center;
}

@media screen and (min-width: 615px) {
  .essential-content-ttl {
    font-size: 6.1rem;
  }
}
.essential-text {
  max-width: 80rem;
  margin: 0 auto 4rem;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.57;
}

@media screen and (min-width: 992px) {
  .essential-text {
    max-width: 103.2rem;
    width: 83.2%;
    font-size: 2.4rem;
  }
}
.essential-list-wrap {
  max-width: 100%;
  width: 100%;
  margin: 0 auto 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

@media screen and (min-width: 992px) {
  .essential-list-wrap {
    max-width: 64.5%;
    margin: 0 auto 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
}
.essential-list-item-text {
  padding-left: 3rem;
  padding-right: 3rem;
  color: #fff;
  font-size: 4.24rem;
  font-weight: 700;
  line-height: 2.25;
  background-color: #e60012;
  border-radius: 1rem;
  text-align: center;
}

@media screen and (min-width: 615px) {
  .essential-list-item-text {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    color: #fff;
    font-size: 4.24rem;
    font-weight: 700;
    line-height: 2.25;
    background-color: #e60012;
    border-radius: 1rem;
    text-align: center;
  }
}
.essential-list-item-text.second-item {
  text-align: center;
}

.essential-list-item:nth-child(odd) {
  width: 39.75%;
}

@media screen and (min-width: 615px) {
  .essential-list-item:nth-child(odd) {
    width: 37.75%;
  }
}
.essential-list-item:nth-child(even) {
  width: 57.5%;
}

.essential-list-item-text.fourth-item-text {
  font-size: 4rem;
}

@media screen and (min-width: 615px) {
  .essential-list-item-text.fourth-item-text {
    font-size: 4.24rem;
  }
}
.essential-annotatin-text {
  position: relative;
  margin: 0 auto;
  padding-left: 1em;
  max-width: 77.2rem;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.8;
}

@media screen and (min-width: 992px) {
  .essential-annotatin-text {
    max-width: 99.5rem;
    width: 80.2%;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.essential-annotatin-text::before {
  content: "※";
  position: absolute;
  display: inline-block;
  margin-right: 0.5rem;
  top: 0;
  left: -0.5em;
}

@media screen and (min-width: 992px) {
  .shop-information-list-wrap {
    max-width: 71.3%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.shop-information-list-item-text {
  font-size: 2em;
  font-weight: 400;
  line-height: 1.73;
  /* letter-spacing: 0.1em; */
  color: #361a0f;
}

.shop-information-list-wrap {
  max-width: 88%;
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .shop-information-list-wrap {
    max-width: 116rem;
    width: 83.8%;
    margin: 0 auto;
  }
}
.shop-information-list-item {
  display: flex;
  margin-bottom: 0.9rem;
}

@media screen and (min-width: 992px) {
  .shop-information-list-item {
    max-width: 104rem;
    width: 47.7%;
  }
}
.shop-information-list-item:last-child {
  margin-bottom: 0;
}

.shop-information-list-item-ttl {
  display: flex;
  justify-content: space-between;
  margin-right: 1.5rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  max-width: 14.2rem;
  width: 100%;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.73;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #361a0f;
}

@media screen and (min-width: 992px) {
  .shop-information-list-item-ttl {
    max-width: 14.2rem;
    width: 100%;
    font-size: 1.9rem;
  }
}
.shop-information-list-item-text {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.73;
  letter-spacing: 0.1em;
  color: #361a0f;
}

@media screen and (min-width: 992px) {
  .shop-information-list-item-text {
    font-size: 1.9em;
    letter-spacing: 0;
  }
}
.footer {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #fff;
}

@media screen and (min-width: 992px) {
  .footer-content-item {
    display: flex;
    justify-content: center;
  }
}
.footer-content-item-text {
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 1.51;
  letter-spacing: 0.01em;
  padding-top: 3.5rem;
  padding-bottom: 6rem;
  padding-left: 6rem;
  padding-right: 6rem;
}

@media screen and (min-width: 992px) {
  .footer-content-item-text {
    font-size: 1.6rem;
  }
}
.swiper-dummy-wrap {
  display: none;
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
}

.swiper-dummy-wrap img {
  display: block;
  margin-top: -10rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* スライダーのコンテナ 
.slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
*/
/* Swiperのラッパー設定 */
.swiper {
  width: 100%;
  padding-bottom: 2.5rem;
}

/* 各スライドのスタイル */
.swiper-slide {
  width: 22.2rem;
  background: #fff;
  border-radius: 1.75rem;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0.3rem 0.4rem 0.4rem rgba(0, 0, 0, 0.35);
  /* 後からコンテンツを追加しやすいよう最小限のスタイル */
}

.slide-img-wrap {
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
}

.slide-img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* スライド内のタイトル */
.slide-title {
  font-size: 2.4rem;
}

/* スライド内の説明文 */
.slide-description {
  font-family: noto serif jp, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.49;
  color: #d92423;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
  margin-top: 0.5rem;
  border: solid 1px #d60000;
  padding: 8px;
}

input[type=text], input[type=email], input[type=tel], textarea, input[type=file], input[type=date] {
  margin-bottom: 1rem !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background-color: #d60000;
  color: #fff;
  font-size: 16px;
  border: none !important;
  text-align: center;
  padding: 1rem;
}

input[type=text], input[type=email], input[type=tel], textarea, input[type=file] {
  font-size: 14px;
  line-height: 1.7;
}

.form-privacy-link {
  font-size: 14px !important;
}

.wpcf7-list-item-label {
  font-size: 14px !important;
}

.wpcf7-list-item input[type=checkbox] {
  transform: translateY(-3px);
}

@media screen and (min-width: 992px) {
  body {
    overflow-x: hidden;
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
  .site-header__inner {
    padding-left: 32px;
    padding-right: 32px;
  }
  .site-logo {
    width: 240px;
  }
  .site-logo-text {
    font-size: 1.8rem;
  }
  .fv-banner-wrap-1-img.pc {
    margin-bottom: 0;
  }
  .bannner-btn-wrap {
    padding-bottom: 1rem;
  }
  .fv-container {
    background-image: initial;
    height: auto;
  }
  .fv-img {
    margin-bottom: 0;
  }
  .banners {
    padding-top: 5rem;
  }
  .limited-banner-wrap.pc {
    width: 76%;
    margin: 0 auto;
  }
  img.purchase-record__title-img {
    margin-bottom: -5rem;
  }
  .purchase-record__title {
    max-width: 550px;
  }
  .slide-img-wrap {
    width: 67%;
    margin-left: auto;
    margin-right: auto;
  }
  .slide-title {
    font-size: 1.6rem;
  }
  .slide-description {
    font-size: 1.5rem;
  }
  .purchase-record__text {
    font-size: 2.4rem;
  }
  .purchase-record__btn {
    width: 53.1rem;
  }
  .repeat-percent-img-wrap {
    width: 46.97%;
  }
  .repeat-percent-text {
    font-size: 2.6rem;
  }
  .repeat-percent-dsc {
    font-size: 1.4rem;
  }
  .repeat-percent-img-wrap::after {
    display: none;
  }
  .repeat-percent__inner {
    position: relative;
  }
  .repeat-percent__inner::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, #ffffff);
    z-index: 1;
  }
  .purchased-items-ttl-wrap {
    width: 50.9rem;
  }
  .purchased-items__title {
    font-size: 2.5rem;
  }
  .purchased-items .swiper-wrapper {
    justify-content: center;
  }
  .purchased-txt {
    font-size: 1.8rem;
  }
  .purchased-price-ttl {
    font-size: 4.1rem;
  }
  .purchased-price-ttl-wrapp {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .purchased-price-tb-btn-container {
    max-width: initial;
  }
  .purchased-praice-update {
    font-size: 1.8rem;
  }
  .purchased-price-tb-btn-container {
    padding-left: 32px;
    padding-right: 32px;
  }
  .purchased-price-tb-btn-wrap {
    width: 13.1%;
  }
  .purchased-price-tb-btn {
    font-size: 1.7rem;
  }
  .purchased-price-tb-card-wrap {
    margin-top: 0;
    gap: 1.9%;
  }
  .purchased-price-tb-card {
    width: 14.53%;
    padding: 1.7rem 0.7rem 2.2rem;
  }
  .purchased-price-tb-card-title {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-bottom: 0;
  }
  .purchased-price-tb-card-price-wrap {
    margin-top: 15px;
    margin-bottom: 0px;
    display: block;
  }
  .purchased-price-tb-card-price-label, .purchased-price-tb-card-date-label {
    margin-right: 0;
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
  }
  .purchased-price-tb-card-price {
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
    display: block;
  }
  .purchased-price-tb-card-price-date {
    display: block;
    text-align: center;
  }
  .purchased-price-tb-card-btn-note {
    text-align: center;
    font-size: 1.6rem;
    max-width: initial;
  }
  .gold-purchased-price__inner {
    padding-bottom: 5rem;
  }
  .gold-purchased-price-img-wrap {
    max-width: 554px;
    margin: 0 auto;
  }
  .gold-purchased-price-text {
    font-size: 2.8rem;
    top: 32.172995%;
  }
  .gold-purchased-price-text span {
    font-size: 1.8rem;
  }
  .consultation__inner {
    padding-top: 5rem;
  }
  .consultation-img-wrap {
    width: 57rem;
  }
  .consultation-text {
    font-size: 2rem;
  }
  .consultation-text {
    margin-bottom: 0;
  }
  .banner_text {
    font-size: 2.4rem;
  }
  .promise {
    padding-top: 40px;
  }
  .promise-ttl-img-wrap {
    width: 44.1rem;
    margin-bottom: 0;
  }
  .promise-content-container {
    margin-top: -52px;
    padding-top: 0;
  }
  .promise-content-ttl.first-ttl, .promise-content-ttl.second-ttl, .promise-content-ttl.third-ttl, .promise-content-ttl.fourth-ttl {
    margin-left: 0;
    font-size: 2.4rem;
    padding-left: 52px;
  }
  .promise-content-ttl.first-ttl::before, .promise-content-ttl.second-ttl::before, .promise-content-ttl.third-ttl::before, .promise-content-ttl.fourth-ttl::before {
    top: 15px;
    left: 4px;
    width: 8.7rem;
    height: 8.7rem;
    z-index: 2;
  }
  .promise-content-ttl.first-ttl::after, .promise-content-ttl.second-ttl::after, .promise-content-ttl.third-ttl::after, .promise-content-ttl.fourth-ttl::after {
    width: 100%;
    left: 0;
  }
  .promise-content-text {
    font-size: 1.6rem;
    padding-left: 52px;
  }
  .manager-comment-ttl.pc {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }
  .manager-comment-txt p {
    font-size: 1.6rem;
  }
  .manager-comment-txt-wrap {
    align-items: center;
  }
  .shop-strength-content-container {
    align-items: flex-start;
  }
  .shop-strength-ttl-img-wrap {
    width: 53.9rem;
  }
  .shop-strength-content-ttl.first-ttl, .shop-strength-content-ttl.second-ttl, .shop-strength-content-ttl.third-ttl {
    font-size: 2rem;
    line-height: 1.4;
    padding: 0rem 8rem 2rem 11rem;
  }
  .shop-strength-content-ttl.first-ttl span, .shop-strength-content-ttl.second-ttl span, .shop-strength-content-ttl.third-ttl span {
    font-size: 1.8rem;
  }
  .shop-strength-content-ttl.first-ttl::before, .shop-strength-content-ttl.second-ttl::before, .shop-strength-content-ttl.third-ttl::before {
    top: 0;
  }
  .purchased-600m-img-wrap {
    margin-bottom: 0;
  }
  .features-txt {
    padding-top: 7rem;
  }
  .features-img-wrap {
    width: 54.86%;
  }
  .history-detail__inner {
    padding-top: 6rem;
    position: relative;
  }
  .history-detail-item-wrap__inner {
    padding-top: 8rem;
    row-gap: 0;
  }
  .history-stores-history-img-wrap {
    position: initial;
  }
  .history-stores-history-img-wrap img {
    position: relative;
    z-index: 3;
  }
  .history-detail-item-ttl, .history-detail-item-ttl.fourth-ttl {
    font-size: 2.7rem;
    padding-left: 29px;
  }
  .history-detail-item-text {
    margin-top: 8px;
    padding-left: 29px;
    font-size: 1.5rem;
  }
  .history-detail-item {
    padding-bottom: 5rem;
  }
  .history-detail-item-wrap__inner {
    padding-bottom: 0;
  }
  .comparison-content-ttl {
    font-size: 3.7rem;
  }
  .drive-through-banner-text {
    font-size: 1.6rem;
  }
  .drive-through__step-number {
    font-size: 2.8rem;
  }
  .drive-through__step-number span {
    font-size: 4.2rem;
  }
  .drive-through__step-car-icon-wrap {
    display: inline-block;
    width: 7.7rem;
    height: 3.44rem;
  }
  .drive-through__step-text-wrap {
    width: 61%;
  }
  .drive-through__step-title {
    font-size: 2.4rem;
  }
  .drive-through__step-desc {
    font-size: 1.6rem;
  }
  .drive-through__step-image-wrap {
    width: 25.197531%;
    height: 20.5rem;
  }
  .drive-through__comment-text span.fs47 {
    font-size: 2.7rem;
  }
  .drive-through__comment-text span.fs40 {
    font-size: 2.2rem;
  }
  .drive-through__comment-text span.bc-wh {
    font-size: 3.3rem;
  }
  .drive-through__comment-text span.bc-wh span.fs45 {
    font-size: 2.2rem;
  }
  .drive-through__comment-text span.fs45 {
    font-size: 2.2rem;
  }
  img.drive-through-banner-img {
    margin-bottom: 0;
    display: block;
  }
  .reason-ttl-img-wrap {
    width: 52.8rem;
  }
  .reason-ttl-img {
    margin-bottom: -9rem;
  }
  .reason-content-item-ttl, .reason-content-item-ttl.third-ttl {
    margin-bottom: 4rem;
    font-size: 2.4rem;
  }
  .reason-content-item-text-wrap {
    margin-bottom: 2rem;
  }
  .reason-inner {
    padding-bottom: 6rem;
  }
  .google-review-inner {
    padding-bottom: 2rem;
  }
  .google-logo-img-wrap {
    width: 28rem;
  }
  .google-score-img-wrap {
    width: 19.1rem;
  }
  .google-review-img-wrap {
    width: 27rem;
  }
  .google-review-ttl {
    font-size: 4rem;
  }
  .google-review-date {
    margin: 3rem auto 1.5rem;
    font-size: 2.2rem;
  }
  .access__inner {
    padding-bottom: 6rem;
  }
  .access-ttl {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
  .access-ttl-sub {
    font-size: 2.8rem;
  }
  .access-ttl::after {
    width: 10.5rem;
  }
  .access-map-text {
    font-size: 1.8rem;
    text-align: center;
  }
  .shop-image-items-wrap {
    max-width: 124rem;
  }
  .shop-image-item {
    width: 24%;
  }
  .shop-image-desc {
    font-size: 1.7rem;
  }
  .assessment-banner-img {
    margin-bottom: 0;
  }
  .assessment-tb-btns-wrap {
    margin-top: 0;
    margin-bottom: 2rem;
    max-width: 61.1%;
    margin-left: auto;
    margin-right: auto;
    justify-content: left;
    gap: 0.5%;
  }
  .assessment-tb-btn-wrap {
    width: 16.16%;
  }
  .assessment-tb-btn {
    font-size: 1.5rem;
  }
  .assessment-check-ttl {
    font-size: 3.09rem;
  }
  .assessment-check-list-item::before {
    width: 2.982rem;
    height: 2.937rem;
  }
  .assessment-check-list-item {
    font-size: 1.8rem;
  }
  .assessment-check-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .welcome-message-inner {
    padding-top: 0;
    padding-bottom: 4rem;
  }
  .faq-ttl-sb {
    font-size: 1.88rem;
  }
  .faq-ttl {
    font-size: 4.4rem;
  }
  .faq-content-item-ttl {
    font-size: 2rem;
  }
  .faq-content-item-content {
    font-size: 1.6rem;
  }
  .essential-content-ttl-sb {
    font-size: 2rem;
  }
  .essential-content-ttl {
    font-size: 3.8rem;
  }
  .essential-content-ttl-wrap {
    margin: 0 auto 2rem;
  }
  .essential-text {
    font-size: 1.6rem;
  }
  .essential-list-wrap {
    max-width: 103.2rem;
    width: 83.2%;
    justify-content: center;
    flex-wrap: nowrap;
  }
  .essential-list-item {
    width: 100% !important;
    text-align: center;
  }
  .essential-list-item-text {
    font-size: 1.6rem;
    text-align: center;
  }
  .essential-list-item-text.second-item {
    text-align: center;
  }
  .essential-list-item-text.fourth-item-text {
    font-size: 1.6rem;
    text-align: center;
  }
  .shop-information-list-item {
    align-items: center;
  }
  .shop-information-list-item-ttl {
    font-size: 1.7rem;
    line-height: 1.83;
  }
  .shop-information-list-item-text {
    font-size: 1.7rem;
  }
  .contact__title {
    font-size: 3.8rem;
    margin: 0 auto 5rem;
  }
  .Form-Item-Label {
    font-size: 1.7rem;
  }
  .Form-Item-Label-Required, .Form-Item-Label-optional {
    font-size: 1.5rem;
  }
  input[type=text], input[type=email], input[type=tel], textarea, input[type=file] {
    font-size: 1.7rem;
  }
  input[type=text], input[type=email], input[type=tel], textarea, input[type=file] {
    padding: 2rem 1.2rem;
  }
  .wpcf7-list-item-label {
    font-size: 1.6rem;
  }
  .wpcf7-list-item input[type=checkbox] {
    width: 2.5rem;
    height: 2.5rem;
  }
  .form-privacy-link {
    font-size: 1.7rem;
  }
  input[type=submit] {
    font-size: 1.6rem;
    width: 500px;
    padding: 2.5rem 3rem;
  }
}/*# sourceMappingURL=style.css.map */