@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Raleway&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --breakpoint-2xl: 1060px; /* サイトの最大横幅 */
  --inner-width: var(--breakpoint-2xl); /* ページ/セクションで上書き可 */
  --default-ease: cubic-bezier(.72, .17, .17, 1);
  --smooth-ease: cubic-bezier(.32, .72, 0, 1);
  --bouncy-ease: cubic-bezier(.34, 1.42, .64, 1);
  --elastic-ease-out: linear(0, .5737 7.6%, .8382 11.87%, .9463 14.19%, 1.0292 16.54%, 1.0886 18.97%, 1.1258 21.53%, 1.137 22.97%, 1.1424 24.48%, 1.1423 26.1%, 1.1366 27.86%, 1.1165 31.01%, 1.0507 38.62%, 1.0219 42.57%, .9995 46.99%, .9872 51.63%, .9842 58.77%, 1.0011 81.26%, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

main {
  overflow: hidden;
}

main,
header {
  font-family: "Noto Sans JP", sans-serif;
}

body {
  color: #252525;
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

#body.fixed {
  width: 100%;
  height: 100%;
  position: fixed;
}

body.modal-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  line-height: 1;
  border-left: none;
}

ul,
ol {
  list-style: none inside;
}

a {
  transition-duration: 300ms;
}

a:hover {
  opacity: 0.8;
  transition-duration: 300ms;
}

a:link,
a:visited {
  text-decoration: none;
  color: #fff;
}

li::marker {
  display: none;
}

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

.is-sp {
  display: none;
}
@media (width < 834px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media (width < 834px) {
  .is-pc {
    display: none;
  }
}

.inblo {
  display: inline-block;
}

.tel a {
  color: #483f42;
}

input[type=button],
button,
select {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #000;
}

@keyframes wiggle {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(3px);
  }
  100% {
    transform: translate(0);
  }
}
.is-wiggle {
  animation: wiggle 4s infinite;
}

body.no-scroll {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding-inline: 20px;
}
@media (width < 834px) {
  .header {
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .header.is-active {
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 102%;
  height: 100%;
  background-color: rgba(31, 31, 31, 0.85);
  z-index: -1;
}
.header__in {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media (width < 834px) {
  .header__in {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100vw;
    height: 100lvh;
    padding: 10px 0;
  }
}
.header__logo {
  width: 160px;
  margin-top: 15px;
  flex-shrink: 0;
}
@media (width < 834px) {
  .header__logo {
    width: 120px;
  }
}
.header__nav ul {
  display: flex;
  gap: 10px 30px;
  flex-wrap: wrap;
  margin-top: 15px;
  justify-content: center;
  padding-bottom: 15px;
}
@media (width < 834px) {
  .header__nav ul {
    display: block;
  }
}
.header__nav ul li {
  text-align: center;
}
.header__nav ul a {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  transition: scale 0.725s var(--elastic-ease-out);
}
.header__nav ul a:hover {
  scale: 1.05;
}
@media (width < 834px) {
  .header__nav ul a {
    font-size: 14px;
    display: block;
    padding: 15px;
    border-bottom: 1px solid #fff;
  }
}
.header__nav ul a > span {
  font-size: 16px;
}
.header__btn {
  width: 156px;
}

.ham-btn {
  display: none;
}
@media (width < 834px) {
  .ham-btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 20px;
    width: 30px;
    height: 22px;
    z-index: 101;
    mix-blend-mode: difference;
  }
  .ham-btn span, .ham-btn::before, .ham-btn::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .ham-btn span {
    top: 50%;
    transform: translateY(-50%);
  }
  .ham-btn::before {
    top: 0;
  }
  .ham-btn::after {
    bottom: 0;
  }
}

.s-mv {
  position: relative;
  padding: 160px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: url(../images/bg-mv01.webp) no-repeat center/cover;
}
@media (width < 834px) {
  .s-mv {
    padding: 120px 0 160px;
  }
}
.s-mv__in {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 20px;
  text-align: center;
}
.s-mv__in h1 {
  max-width: 724px;
  margin: 0 auto 24px;
  filter: drop-shadow(2px 4px 6px black);
}
.s-mv__in h2 {
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  filter: drop-shadow(2px 4px 6px black);
}
@media (width < 834px) {
  .s-mv__in h2 {
    font-size: 24px;
    line-height: 1.6;
  }
}
.s-mv__mid {
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  border: 1px solid #fff;
  display: inline-block;
  padding: 8px 36px;
  border-radius: 5px;
  margin-bottom: 34px;
  filter: drop-shadow(2px 4px 6px black);
}
@media (width < 834px) {
  .s-mv__mid {
    font-size: 16px;
    padding: 6px 26px;
  }
}
.s-mv__mid span {
  font-size: 30px;
  font-weight: bold;
}
@media (width < 834px) {
  .s-mv__mid span {
    font-size: 19px;
  }
}
.s-mv__btm {
  display: inline-block;
  padding: 8px 46px;
  border-radius: 5px;
  font-size: 26px;
  font-weight: bold;
  color: #272926;
  background-color: #ffe012;
  filter: drop-shadow(2px 4px 6px black);
}
@media (width < 834px) {
  .s-mv__btm {
    font-size: 19px;
    padding: 8px 36px;
  }
}
.s-mv__icon {
  position: absolute;
  right: 0px;
  bottom: -90px;
  width: 554px;
  max-width: calc(100% - 20px);
}
@media (width < 834px) {
  .s-mv__icon {
    bottom: -70px;
  }
}

.s-intro {
  position: relative;
  padding: 70px 0 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (width < 834px) {
  .s-intro {
    padding: 170px 0 240px;
  }
}
.s-intro__in {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 20px;
  text-align: center;
}
.s-intro__in h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #01131a;
  line-height: 1.6;
}
@media (width < 834px) {
  .s-intro__in h2 {
    font-size: 17px;
    line-height: 1.6;
  }
}
.s-intro__in h2 .u-bar {
  position: relative;
  font-size: 36px;
  font-weight: 900;
}
@media (width < 834px) {
  .s-intro__in h2 .u-bar {
    font-size: 28px;
    display: block;
  }
}
.s-intro__in h2 .u-bar::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 11px;
  background-color: #fa696a;
  opacity: 0.65;
  border-radius: 5px;
}
@media (width < 834px) {
  .s-intro__in h2 .u-bar::after {
    height: 8px;
    width: 300px;
  }
}
.s-intro__txt {
  font-size: 18px;
  line-height: 1.8;
  color: #1f1f1f;
  margin-top: 40px;
  max-width: 840px;
  margin-inline: auto;
}
@media (width < 834px) {
  .s-intro__txt {
    font-size: 16px;
  }
}
.s-intro__txt-en {
  font-family: "Raleway", sans-serif;
  color: #8d7b59;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.8;
}
@media (width < 834px) {
  .s-intro__txt-en {
    font-size: 15px;
    font-weight: 600;
  }
}
.s-intro__img {
  position: absolute;
}
.s-intro__img._num01 {
  width: 204px;
  top: 140px;
  left: calc(50% + 460px);
  border: 5px solid #fff;
  border-radius: 50%;
  filter: drop-shadow(2px 2px 6px #e5e9eb);
}
@media (width < 834px) {
  .s-intro__img._num01 {
    width: 100px;
    top: 80px;
    left: calc(50% + 80px);
  }
}
.s-intro__img._num02 {
  width: 204px;
  bottom: 0px;
  right: calc(50% + 460px);
  border: 5px solid #fff;
  border-radius: 50%;
  filter: drop-shadow(2px 2px 6px #e5e9eb);
}
@media (width < 834px) {
  .s-intro__img._num02 {
    width: 100px;
    bottom: 100px;
    right: calc(50% + 80px);
  }
}
.s-intro__img._num03 {
  top: -145px;
  left: 0;
  width: clamp(150px, 25vw, 301px);
  z-index: -1;
  animation-delay: 1s;
}
@media (width < 834px) {
  .s-intro__img._num03 {
    top: -40px;
  }
}
.s-intro__img._num04 {
  top: 380px;
  right: 0;
  width: clamp(140px, 27.5vw, 329px);
  z-index: -1;
  animation-delay: 2s;
}
@media (width < 834px) {
  .s-intro__img._num04 {
    top: auto;
    bottom: 0px;
  }
}

.s-plan {
  position: relative;
  padding: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 25px;
}
.s-plan::before {
  content: "";
  position: absolute;
  background-color: #163803;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: -1;
}
@media (width < 834px) {
  .s-plan::before {
    height: calc(100% - 150px);
  }
}
.s-plan__in {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 20px;
  text-align: center;
  display: flex;
}
@media (width < 834px) {
  .s-plan__in {
    flex-direction: column;
    align-items: center;
  }
}
.s-plan__info {
  width: 35%;
  text-align: center;
}
@media (width < 834px) {
  .s-plan__info {
    width: 100%;
  }
}
.s-plan__info h2 {
  max-width: 312px;
}
@media (width < 834px) {
  .s-plan__info h2 {
    max-width: 280px;
    margin-inline: auto;
  }
}
.s-plan__list {
  width: 65%;
  margin-top: 30px;
  margin-left: 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (width < 834px) {
  .s-plan__list {
    margin-left: 0px;
    margin-top: 50px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.s-plan__list li {
  position: relative;
  max-width: 200px;
}
.s-plan__list li:not(:last-child)::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: -31px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
}
@media (width < 834px) {
  .s-plan__list li:not(:last-child)::after {
    display: none;
  }
}
.s-plan__list li img {
  border: 3px solid #fff;
  border-radius: 50%;
  filter: drop-shadow(0px 0px 0px #fff);
  transition: translate 0.725s var(--elastic-ease-out), scale 0.725s var(--elastic-ease-out);
}
.s-plan__list li img:hover {
  translate: 0px -10px;
  scale: 1.05;
}
.s-plan__list li p {
  font-size: 18px;
  margin-top: 15px;
  background: #fff;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: bold;
}
@media (width < 834px) {
  .s-plan__list li p {
    font-size: 16px;
  }
}

.s-info {
  position: relative;
  padding: 55px 0 70px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.s-info__in {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 20px;
  text-align: center;
}
.s-info__in h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 55px;
  color: #01131a;
  line-height: 1.6;
}
@media (width < 834px) {
  .s-info__in h2 {
    font-size: 16px;
    line-height: 1.6;
  }
}
.s-info__in h2 .u-bar {
  position: relative;
  font-size: 36px;
  font-weight: 900;
}
@media (width < 834px) {
  .s-info__in h2 .u-bar {
    font-size: 22px;
  }
}
.s-info__in h2 .u-bar::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 105%;
  height: 11px;
  background-color: #ffe012;
  opacity: 0.65;
  border-radius: 5px;
}
.s-info__in h2 .is-pink {
  color: #fa696a;
}
.s-info__in h2 .is-orange {
  color: #f7941d;
}
.s-info__hd {
  margin-bottom: 60px;
}
.s-info__hd-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
  gap: 10px;
}
@media (width < 834px) {
  .s-info__hd-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.s-info__hd-list li {
  max-width: 184px;
}
@media (width < 834px) {
  .s-info__hd-list li {
    max-width: 30%;
  }
}
.s-info__hd-list li img {
  aspect-ratio: 150/277;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  transition: translate 0.725s var(--elastic-ease-out), scale 0.725s var(--elastic-ease-out), width 0.3s ease, height 0.3s ease;
}
.s-info__hd-list li img:hover {
  translate: 0px -10px;
  width: 100%;
  height: 105%;
}
.s-info__hd-txt {
  text-align: left;
  line-height: 2;
  font-size: 18px;
  padding-inline: 10px;
}
@media (width < 834px) {
  .s-info__hd-txt {
    font-size: 16px;
  }
}
.s-info__bd {
  display: flex;
}
@media (width < 834px) {
  .s-info__bd {
    flex-direction: column;
    align-items: center;
  }
}
.s-info__content {
  width: 57%;
  text-align: left;
}
@media (width < 834px) {
  .s-info__content {
    width: 100%;
    margin-top: 30px;
  }
}
.s-info__content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #01131a;
  line-height: 1.6;
}
@media (width < 834px) {
  .s-info__content h3 {
    font-size: 19px;
    line-height: 1.6;
  }
}
.s-info__content h3 .is-orange {
  color: #f7941d;
}
.s-info__content h3 .is-pink {
  color: #fa696a;
}
.s-info__content h3 .fs-b {
  font-size: 36px;
}
@media (width < 834px) {
  .s-info__content h3 .fs-b {
    font-size: 28px;
  }
}
@media (width < 834px) {
  .s-info__content h3 {
    font-size: 19px;
    line-height: 1.4;
  }
}
.s-info__content p {
  font-size: 18px;
  line-height: 2;
}
.s-info__btn {
  margin-top: 15px;
  text-align: right;
}
@media (width < 834px) {
  .s-info__btn {
    margin-top: 35px;
  }
}
.s-info__btn a {
  position: relative;
  color: #fff;
  background-color: #b71313;
  font-size: 16px;
  font-weight: bold;
  padding: 4px 15px;
  border-radius: 5px;
}
.s-info__btn a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 5px;
  width: 150%;
  height: 2px;
  background-color: #b71313;
  transform-origin: right;
  transform: scaleX(1);
  transition: transform 0.3s ease-out;
}
.s-info__btn a:hover::after {
  transform: scaleX(0);
  transition: transform 0.3s ease-out;
}
.s-info__img {
  position: relative;
  width: 43%;
}
@media (width < 834px) {
  .s-info__img {
    width: 100%;
    margin-top: 30px;
  }
}
.s-info__img img {
  width: 100%;
}
.s-info__img-bg {
  position: absolute;
  top: 50%;
  z-index: -1;
}
.s-info__block._num01 {
  margin-bottom: 40px;
}
.s-info__block._num01 .s-info__img-bg {
  left: 50%;
  transform: translate(0%, -50%);
}
.s-info__block._num01 .s-info__img-bg img {
  width: 461px;
}
.s-info__block._num01 .s-info__img img {
  max-width: 414px;
}
.s-info__block._num02 .s-info__bd {
  flex-direction: row-reverse;
}
@media (width < 834px) {
  .s-info__block._num02 .s-info__bd {
    flex-direction: column;
  }
}
.s-info__block._num02 .s-info__img-bg {
  transform: translate(-50%, -50%);
}
.s-info__block._num02 .s-info__img-bg img {
  width: 581px;
}
.s-info__block._num02 .s-info__img img {
  max-width: 451px;
}

.s-lp01 {
  position: relative;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.s-lp01__hd {
  display: flex;
  position: relative;
  margin-bottom: 70px;
}
@media (width < 834px) {
  .s-lp01__hd {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
    padding-inline: 20px;
  }
}
.s-lp01__hd::before {
  content: "";
  position: absolute;
  background-color: #efe7d9;
  bottom: calc(50% + 11px);
  left: 50%;
  transform: translate(-50%, 50%);
  width: 101vw;
  height: 22px;
  z-index: 1;
}
.s-lp01__hd::after {
  content: "";
  position: absolute;
  background-color: #e1cfb0;
  top: calc(50% + 11px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101vw;
  height: 22px;
  z-index: 1;
}
.s-lp01__list > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}
@media (width < 834px) {
  .s-lp01__list > ul {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
}
.s-lp01__tag {
  position: relative;
  width: 250px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-right: 60px;
  z-index: 2;
}
@media (width < 834px) {
  .s-lp01__tag {
    width: 170px;
    font-size: 16px;
  }
}
.s-lp01__tag-top {
  background-color: #ffe012;
  padding: 6px 0;
}
.s-lp01__tag-top img {
  max-width: 116px;
}
@media (width < 834px) {
  .s-lp01__tag-top img {
    max-width: 93px;
  }
}
.s-lp01__tag-btm {
  background-color: #1f1f1f;
  padding: 6px 0;
  color: #fff;
}
.s-lp01__ttl {
  position: relative;
  z-index: 2;
}
.s-lp01__ttl h2 {
  max-width: 376px;
}
@media (width < 834px) {
  .s-lp01__ttl h2 {
    max-width: 300px;
  }
}
.s-lp01__ttl p {
  font-size: 30px;
  font-weight: 900;
}
@media (width < 834px) {
  .s-lp01__ttl p {
    font-size: 24px;
  }
}
.s-lp01::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(90deg, #f0f0f0, #f0f0f0 1px, transparent 1px, transparent 13px), repeating-linear-gradient(0deg, #f0f0f0, #f0f0f0 1px, #f4f4f4 1px, #f4f4f4 13px);
  z-index: -1;
}

.car-item {
  position: relative;
  padding: 25px 25px 40px;
  background-color: #fff;
  border-radius: 15px;
  border: 2px solid #767676;
  width: 420px;
}
@media (width < 834px) {
  .car-item {
    width: 320px;
    padding: 10px 10px 50px;
  }
}
.car-item__hd {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 16px;
}
.car-item__class {
  text-align: center;
  background-color: #1f1f1f;
  color: #fff;
  font-weight: bold;
  margin-right: 9px;
}
.car-item__class p {
  font-size: 12px;
  line-height: 1;
  width: 60px;
  padding-bottom: 3px;
}
.car-item__class .car-class {
  font-size: 24px;
}
@media (width < 834px) {
  .car-item__class .car-class {
    font-size: 18px;
  }
}
.car-item__ttl {
  font-size: 20px;
  color: #ba2020;
}
@media (width < 834px) {
  .car-item__ttl {
    font-size: 16px;
  }
}
.car-item__ttl .car-ttl {
  font-weight: bold;
  line-height: 1.2;
}
.car-item__num {
  font-size: 14px;
  color: #6a7762;
}
@media (width < 834px) {
  .car-item__num {
    font-size: 12px;
  }
}
.car-item__img {
  text-align: center;
}
.car-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  overflow: hidden;
  aspect-ratio: 380/220;
}
.car-item__price {
  background-color: #f7f7f4;
  border-radius: 15px;
}
.car-item__price ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 5px;
}
@media (width < 834px) {
  .car-item__price ul {
    padding: 0;
  }
}
.car-item__price ul li {
  padding: 5px 0;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: start;
  gap: 5px;
  line-height: 1.2;
}
.car-item__price ul li .period {
  position: relative;
  font-size: 14px;
  font-weight: bold;
  color: #1c1c1d;
  width: 47px;
}
@media (width < 834px) {
  .car-item__price ul li .period {
    font-size: 12px;
  }
}
.car-item__price ul li .period::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 20px;
  background-color: #ffd800;
}
.car-item__price ul li .period .car-period {
  position: relative;
  z-index: 2;
}
.car-item__price ul li .fee {
  letter-spacing: 0.05em;
}
.car-item__price ul li .fee .car-fee {
  font-size: 20px;
  font-weight: bold;
  color: #ea5432;
}
@media (width < 834px) {
  .car-item__price ul li .fee .car-fee {
    font-size: 16px;
  }
}
.car-item__price ul li .fee .yen {
  font-size: 14px;
  font-weight: bold;
  color: #ea5432;
}
@media (width < 834px) {
  .car-item__price ul li .fee .yen {
    font-size: 12px;
  }
}
.car-item__price ul li .fee .tax {
  font-size: 14px;
  color: #483f42;
}
@media (width < 834px) {
  .car-item__price ul li .fee .tax {
    font-size: 12px;
  }
}
.car-item .sup {
  margin-top: 5px;
  text-align: center;
  font-size: 14px;
}
@media (width < 834px) {
  .car-item .sup {
    font-size: 12px;
  }
}
.car-item__btm {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  justify-content: center;
}
.car-item__btn {
  position: relative;
  color: #262626;
  width: 165px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.15));
  text-align: center;
  margin-top: 15px;
}
@media (width < 834px) {
  .car-item__btn {
    width: 140px;
    font-size: 14px;
  }
}
.car-item__btn input {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}
@media (width < 834px) {
  .car-item__btn input {
    left: 20px;
  }
}
.car-item__btn label {
  display: block;
  width: 100%;
  padding-block: 10px;
  cursor: pointer;
}
.car-item__btn label > span {
  position: relative;
  left: 10px;
  pointer-events: none;
}
.car-item__btn a {
  color: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.car-item__btn-01 {
  background-color: #ffd800;
}
.car-item__btn-02 {
  background-color: #65b55c;
}
.car-item__modal {
  position: fixed;
  z-index: 5;
  width: 100vw;
  height: 100vh;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  display: none;
}
.car-item__modal.is-active {
  display: block;
  overflow-y: scroll;
}
.car-item__modal-inner {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}
@media (width < 834px) {
  .car-item__modal-inner {
    margin: 0px auto;
  }
}
.car-item__modal-inner a {
  font-size: 40px;
}
.car-item__modal-inner .close-modal {
  text-align: right;
}
.car-item__modal-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  height: 600px;
}
.car-item__modal-content ul li {
  position: relative;
  max-width: 300px;
}
.car-item__modal-content ul li img {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 300/177;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
  border-radius: 10px;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.15));
  transition: scale 0.3s ease;
}
.car-item__modal-content ul li img:hover {
  scale: 1.5;
  transition: scale 0.3s ease;
  z-index: 10;
}

.s-lp02 {
  position: relative;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.s-lp02__hd {
  display: flex;
  position: relative;
  margin-bottom: 70px;
}
@media (width < 834px) {
  .s-lp02__hd {
    margin-bottom: 40px;
    flex-direction: column;
    gap: 20px;
    padding-inline: 20px;
  }
}
.s-lp02__hd::before {
  content: "";
  position: absolute;
  background-color: #efe7d9;
  bottom: calc(50% + 11px);
  left: 50%;
  transform: translate(-50%, 50%);
  width: 101vw;
  height: 22px;
  z-index: 1;
}
.s-lp02__hd::after {
  content: "";
  position: absolute;
  background-color: #e1cfb0;
  top: calc(50% + 11px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101vw;
  height: 22px;
  z-index: 1;
}
.s-lp02__tag {
  position: relative;
  width: 250px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-right: 60px;
  z-index: 2;
}
@media (width < 834px) {
  .s-lp02__tag {
    width: 210px;
    font-size: 16px;
    margin-right: 0px;
  }
}
.s-lp02__tag-top {
  background-color: #ffe012;
  padding: 6px 0;
}
.s-lp02__tag-top img {
  max-width: 238px;
}
@media (width < 834px) {
  .s-lp02__tag-top img {
    max-width: 190px;
  }
}
.s-lp02__tag-btm {
  background-color: #1f1f1f;
  padding: 6px 0;
  color: #fff;
}
.s-lp02__ttl {
  position: relative;
  z-index: 2;
}
.s-lp02__ttl h2 {
  max-width: 507px;
}
@media (width < 834px) {
  .s-lp02__ttl h2 {
    max-width: 405px;
  }
}
.s-lp02__ttl p {
  font-size: 30px;
  font-weight: 900;
}
@media (width < 834px) {
  .s-lp02__ttl p {
    font-size: 24px;
  }
}
.s-lp02::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(90deg, #f0f0f0, #f0f0f0 1px, transparent 1px, transparent 13px), repeating-linear-gradient(0deg, #f0f0f0, #f0f0f0 1px, #f4f4f4 1px, #f4f4f4 13px);
  z-index: -1;
}
.s-lp02__bd {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 20px;
}
.s-lp02__bd-ttl {
  text-align: center;
}
.s-lp02__bd-ttl h3 {
  font-size: 36px;
  font-weight: bold;
}
.s-lp02__bd-ttl p {
  font-size: 13px;
  font-weight: bold;
  margin-top: 15px;
}
.s-lp02__category {
  position: relative;
}
.s-lp02__category::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 18px;
  background-color: #d3d3d3;
}
@media (width < 834px) {
  .s-lp02__category::before {
    display: none;
  }
}
.s-lp02__category ul {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin: 15px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (width < 834px) {
  .s-lp02__category ul {
    max-width: 310px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
    justify-content: center;
  }
}
.s-lp02__category ul::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
  width: 226px;
  height: 63px;
  background: url(../images/icon-step02.webp) no-repeat center/contain;
}
@media (width < 834px) {
  .s-lp02__category ul::before {
    display: none;
  }
}
.s-lp02__category ul::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 110%;
  transform: translateY(-50%);
  width: 226px;
  height: 63px;
  background: url(../images/icon-step02.webp) no-repeat center/contain;
}
@media (width < 834px) {
  .s-lp02__category ul::after {
    display: none;
  }
}
.s-lp02__category ul li {
  margin-inline: auto;
}
@media (width < 834px) {
  .s-lp02__category ul li {
    margin-inline: 0;
  }
}
.s-lp02__category ul li a {
  position: relative;
  display: flex;
  width: 80px;
  height: 80px;
  background-color: #1f1f1f;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  border-radius: 50%;
  letter-spacing: 0.01em;
  transition: translate 0.725s var(--elastic-ease-out), rotate 0.725s var(--elastic-ease-out), scale 0.35s var(--default-ease), transform 0.35s var(--default-ease), box-shadow 0.35s var(--smooth-ease);
}
.s-lp02__category ul li a::before {
  content: "›";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #1f1f1f;
  font-size: 13px;
}
.s-lp02__category ul li a:hover {
  translate: 0.375em 0 0;
  rotate: 4deg;
  opacity: 1;
}
.s-lp02__category .category-active {
  background-color: #ffe012 !important;
  color: #1f1f1f !important;
}

.s-lp03 {
  position: relative;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.s-lp03__hd {
  display: flex;
  position: relative;
  margin-bottom: 70px;
}
@media (width < 834px) {
  .s-lp03__hd {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding-inline: 20px;
  }
}
.s-lp03__hd::before {
  content: "";
  position: absolute;
  background-color: #efe7d9;
  bottom: calc(50% + 11px);
  left: 50%;
  transform: translate(-50%, 50%);
  width: 101vw;
  height: 22px;
  z-index: 1;
}
.s-lp03__hd::after {
  content: "";
  position: absolute;
  background-color: #e1cfb0;
  top: calc(50% + 11px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101vw;
  height: 22px;
  z-index: 1;
}
.s-lp03__tag {
  position: relative;
  width: 250px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-right: 60px;
  z-index: 2;
}
@media (width < 834px) {
  .s-lp03__tag {
    width: 210px;
    font-size: 16px;
    margin-right: 0px;
  }
}
.s-lp03__tag-top {
  background-color: #ffe012;
  padding: 6px 0;
}
.s-lp03__tag-top img {
  max-width: 108px;
}
@media (width < 834px) {
  .s-lp03__tag-top img {
    max-width: 86px;
  }
}
.s-lp03__tag-btm {
  background-color: #1f1f1f;
  padding: 6px 0;
  color: #fff;
}
.s-lp03__ttl {
  position: relative;
  z-index: 2;
}
.s-lp03__ttl h2 {
  max-width: 406px;
}
@media (width < 834px) {
  .s-lp03__ttl h2 {
    max-width: 320px;
  }
}
.s-lp03__ttl p {
  font-size: 30px;
  font-weight: 900;
}
@media (width < 834px) {
  .s-lp03__ttl p {
    font-size: 24px;
  }
}
.s-lp03::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(90deg, #f0f0f0, #f0f0f0 1px, transparent 1px, transparent 13px), repeating-linear-gradient(0deg, #f0f0f0, #f0f0f0 1px, #f4f4f4 1px, #f4f4f4 13px);
  z-index: -1;
}
.s-lp03__bd {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 20px;
}
.s-lp03__bd-ttl {
  text-align: center;
}
.s-lp03__bd-ttl h3 {
  font-size: 36px;
  font-weight: bold;
}
.s-lp03__bd-ttl p {
  font-size: 13px;
  font-weight: bold;
  margin-top: 15px;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.items-wrap {
  margin-top: 50px;
}
.items-wrap ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 60px 30px;
}
@media (width < 834px) {
  .items-wrap ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
}
.items-wrap ul.is-opacity {
  animation: fade 1s ease-in-out;
}
.items-wrap .item {
  position: relative;
  display: grid;
  padding: 5px 15px 30px;
  background-color: #fff;
  border: 1px solid #767676;
  border-radius: 15px;
}
@media (width < 834px) {
  .items-wrap .item {
    padding: 5px 5px 30px;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
  }
}
.items-wrap .item-img {
  margin-bottom: 15px;
}
.items-wrap .item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  overflow: hidden;
  aspect-ratio: 276/174;
}
.items-wrap .item-ttl {
  position: absolute;
  bottom: 85px;
  left: 50%;
  width: 90%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #ff5432;
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke;
}
@media (width < 834px) {
  .items-wrap .item-ttl {
    position: static;
    transform: none;
    display: block;
    font-size: 15px;
    letter-spacing: -0.05em;
    bottom: 80px;
    width: 100%;
  }
}
.items-wrap .item__btm {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media (width < 834px) {
  .items-wrap .item__btm {
    position: static;
    flex-direction: column;
    align-items: center;
    transform: none;
    width: 100%;
    gap: 10px;
  }
}
.items-wrap .item__btn {
  position: relative;
  color: #262626;
  width: 145px;
  font-size: 15px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
  margin-top: 15px;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.15));
}
@media (width < 834px) {
  .items-wrap .item__btn {
    width: 100%;
    font-size: 12px;
    margin-top: 0;
  }
}
.items-wrap .item__btn input {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
@media (width < 834px) {
  .items-wrap .item__btn input {
    left: 5px;
  }
}
.items-wrap .item__btn label {
  display: block;
  width: 100%;
  padding-block: 10px;
  cursor: pointer;
}
.items-wrap .item__btn label > span {
  position: relative;
  left: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media (width < 834px) {
  .items-wrap .item__btn label > span {
    left: 0;
  }
}
.items-wrap .item__btn a {
  color: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (width < 834px) {
  .items-wrap .item__btn a {
    height: 33px;
  }
}
.items-wrap .item__btn-01 {
  background-color: #ffd800;
}
.items-wrap .item__btn-02 {
  background-color: #65b55c;
}
.items-wrap .item.count-one .price-list {
  justify-content: center;
  grid-template-columns: 1fr;
}
.items-wrap .tag-list {
  position: absolute;
  top: -15px;
  left: 5px;
  display: flex;
  gap: 5px;
}
.items-wrap .tag-list .item-tag {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #1f1f1f;
}
@media (width < 834px) {
  .items-wrap .tag-list .item-tag {
    font-size: 10px;
  }
}
.items-wrap .price-list {
  display: flex;
  padding: 5px;
  gap: 5px;
  place-items: center;
  justify-items: center;
}
@media (width < 834px) {
  .items-wrap .price-list {
    gap: 10px;
    flex-direction: column;
  }
}
.items-wrap .price-list li {
  width: 100%;
  padding: 5px 0;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1.2;
}
.items-wrap .price-list li .period {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  color: #1c1c1d;
  width: 47px;
}
.items-wrap .price-list li .period::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 20px;
  background-color: #ffd800;
}
.items-wrap .price-list li .period .item-period {
  position: relative;
  z-index: 2;
}
.items-wrap .price-list li .fee {
  letter-spacing: 0.05em;
}
.items-wrap .price-list li .fee .item-fee {
  font-size: 18px;
  font-weight: bold;
  color: #ea5432;
}
.items-wrap .price-list li .fee .yen {
  font-size: 13px;
  font-weight: bold;
  color: #ea5432;
}
.items-wrap .price-list li .fee .tax {
  font-size: 13px;
  color: #483f42;
  letter-spacing: 0.01em;
}

.contirm-btn a {
  background-color: #b71313;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 340px;
  margin-inline: auto;
  padding-block: 15px;
  border-radius: 15px;
  text-align: center;
}
@media (width < 834px) {
  .contirm-btn a {
    max-width: 320%;
    font-size: 16px;
  }
}

.s-shop {
  position: relative;
  padding: 70px 0 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.s-shop__in {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 20px;
  text-align: center;
}
.s-shop__ttl {
  line-height: 1.2;
}
.s-shop__ttl p {
  font-size: 36px;
  font-weight: bold;
}
@media (width < 834px) {
  .s-shop__ttl p {
    font-size: 24px;
  }
}
.s-shop__ttl h3 {
  font-size: 20px;
  font-weight: bold;
}
@media (width < 834px) {
  .s-shop__ttl h3 {
    font-size: 16px;
  }
}
.s-shop__bd {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding: 60px 0 90px;
}
@media (width < 834px) {
  .s-shop__bd {
    flex-direction: column;
    align-items: center;
    max-width: 420px;
    margin-inline: auto;
  }
}
.s-shop__bd::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 102vw;
  background: url(../images/bg-shop01.webp) repeat-x center/cover;
  height: 100%;
  z-index: -1;
}
.s-shop__map {
  max-width: 545px;
  width: 100%;
}
@media (width < 834px) {
  .s-shop__map {
    max-width: 420px;
    height: 300px;
  }
}
.s-shop__info {
  position: relative;
  text-align: left;
  padding: 100px 35px 130px 40px;
  background: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
@media (width < 834px) {
  .s-shop__info {
    padding: 70px 20px 90px 25px;
    width: 100%;
  }
}
.s-shop__info h4 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ce615a;
  line-height: 1.6;
}
@media (width < 834px) {
  .s-shop__info h4 {
    font-size: 20px;
    line-height: 1.6;
  }
}
.s-shop__info p {
  font-size: 18px;
  line-height: 2;
}
@media (width < 834px) {
  .s-shop__info p {
    font-size: 15px;
    line-height: 1.8;
  }
}
.s-shop__icon {
  position: absolute;
}
.s-shop__icon._num01 {
  width: 70px;
  top: 0px;
  left: 30px;
}
@media (width < 834px) {
  .s-shop__icon._num01 {
    width: 50px;
    top: 0px;
    left: 10px;
  }
}
.s-shop__icon._num02 {
  width: 61px;
  top: 35px;
  right: 30px;
}
@media (width < 834px) {
  .s-shop__icon._num02 {
    width: 50px;
    top: 20px;
    right: 10px;
  }
}
.s-shop__icon._num03 {
  width: 297px;
  bottom: 20px;
  right: 0px;
}
@media (width < 834px) {
  .s-shop__icon._num03 {
    width: 200px;
    bottom: 10px;
    right: 0px;
  }
}

.s-reserve {
  position: relative;
  padding: 0px 0 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 280px;
  background: url(../images/bg-reserve01.webp) no-repeat center bottom/100% auto;
}
@media (width < 834px) {
  .s-reserve {
    padding-bottom: 200px;
  }
}
.s-reserve__hd {
  margin-bottom: 70px;
  width: 100%;
}
.s-reserve__bd {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 20px;
  text-align: center;
}
.s-reserve__hd {
  background-color: #dcbc86;
  padding-block: 10px 20px;
}
.s-reserve__ttl {
  line-height: 1.2;
  text-align: center;
}
.s-reserve__ttl p {
  font-size: 36px;
  font-weight: bold;
}
@media (width < 834px) {
  .s-reserve__ttl p {
    font-size: 24px;
  }
}
.s-reserve__ttl p > span {
  position: relative;
}
.s-reserve__ttl p > span::before {
  content: "";
  position: absolute;
  top: -10px;
  left: calc(100% + 30px);
  background: url(../images/icon-reserve01.webp) no-repeat right/contain;
  width: 556px;
  height: 87px;
  z-index: 3;
}
@media (width < 834px) {
  .s-reserve__ttl p > span::before {
    width: 300px;
    height: 47px;
  }
}
.s-reserve__ttl p > span::after {
  content: "";
  position: absolute;
  top: -10px;
  right: calc(100% + 40px);
  background: url(../images/icon-reserve01.webp) no-repeat right/contain;
  width: 556px;
  height: 87px;
  z-index: 3;
}
@media (width < 834px) {
  .s-reserve__ttl p > span::after {
    width: 300px;
    height: 47px;
  }
}
.s-reserve__ttl h3 {
  font-size: 20px;
  font-weight: bold;
}
@media (width < 834px) {
  .s-reserve__ttl h3 {
    font-size: 16px;
  }
}
.s-reserve__top {
  font-size: 18px;
  line-height: 2;
  font-size: 16px;
}
.s-reserve__mid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 5px;
  gap: 20px;
  color: #dc1616;
  font-size: 24px;
  font-weight: bold;
}
@media (width < 834px) {
  .s-reserve__mid {
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    gap: 10px;
  }
}
.s-reserve__mid a {
  color: #dc1616;
  font-size: 50px;
}
@media (width < 834px) {
  .s-reserve__mid a {
    font-size: 36px;
  }
}
.s-reserve__btm {
  font-size: 15px;
  line-height: 1.5;
  color: #dc1616;
  font-weight: bold;
  margin-bottom: 50px;
}
@media (width < 834px) {
  .s-reserve__btm {
    font-size: 13px;
    margin-bottom: 40px;
  }
}

.s-reserve__form {
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  /* ボタン上に出すポップアップ */
}
.s-reserve__form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
@media (width < 834px) {
  .s-reserve__form-item {
    margin-bottom: 10px;
  }
}
.s-reserve__form-item label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #1c1c1d;
}
@media (width < 834px) {
  .s-reserve__form-item label {
    font-size: 15px;
  }
}
.s-reserve__form-item input, .s-reserve__form-item select, .s-reserve__form-item textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #999999;
  border-radius: 3px;
  font-size: 18px;
}
@media (width < 834px) {
  .s-reserve__form-item input, .s-reserve__form-item select, .s-reserve__form-item textarea {
    font-size: 15px;
  }
}
.s-reserve__form-item input::-moz-placeholder, .s-reserve__form-item select::-moz-placeholder, .s-reserve__form-item textarea::-moz-placeholder {
  color: #999999;
}
.s-reserve__form-item input::placeholder, .s-reserve__form-item select::placeholder, .s-reserve__form-item textarea::placeholder {
  color: #999999;
}
.s-reserve__form-item span:has(.w-half) {
  width: 48%;
}
.s-reserve__form-item .column {
  display: flex;
  justify-content: space-between;
}
.s-reserve__form-item .column > p {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.s-reserve__form-item .input-accept {
  width: auto;
}
.s-reserve__form-item .wpcf7-list-item-label a[href*="/promise/"] {
  color: #f08300 !important;
  text-decoration: underline;
}
.s-reserve__form-item .wpcf7-list-item-label a[href*="/promise/"]:hover {
  color: #d86f00 !important;
}
.s-reserve__form-btn {
  display: block;
  margin-inline: auto;
  margin-top: 40px;
  background-color: #6a9c41;
  border: none;
  width: 250px;
  padding: 10px;
  border-radius: 5px;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.5em;
  filter: drop-shadow(2px 2px 2px rgb(92, 92, 92));
  transition: opacity 0.35s var(--smooth-ease);
}
.s-reserve__form-btn:hover {
  opacity: 0.8;
}
.s-reserve__form .simulation-btn {
  position: relative;
  max-width: 300px;
  background-color: #af0000;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 50px;
  font-size: 16px;
  margin-inline: auto;
  text-align: center;
}
.s-reserve__form .simulation-btn p {
  cursor: pointer;
}
.s-reserve__form .simulation {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
@media (width < 834px) {
  .s-reserve__form .simulation {
    flex-direction: column;
    margin-top: 30px;
  }
}
.s-reserve__form .simulation-ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #1c1c1d;
}
.s-reserve__form .simulation-ttl > span {
  color: #dc1616;
}
@media (width < 834px) {
  .s-reserve__form .simulation-ttl {
    font-size: 15px;
  }
}
.s-reserve__form .simulation .input-money {
  width: 40%;
  padding: 10px;
  border: 1px solid #999999;
  border-radius: 3px;
  font-size: 18px;
  height: 50px;
  text-align: right;
}
@media (width < 834px) {
  .s-reserve__form .simulation .input-money {
    width: 300px;
    font-size: 15px;
  }
}
.s-reserve__form .error-pop {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  max-width: min(90vw, 320px);
  background: #ffefef;
  color: #b00020;
  border: 1px solid #f5c2c7;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  line-height: 1.5;
  z-index: 50;
}
.s-reserve__form .error-pop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #ffefef; /* 吹き出しの三角 */
}

.footer {
  background-color: #426426;
  color: #fff;
  padding: 30px 0 40px;
}
.footer__in {
  max-width: calc(100% - 40px);
  width: var(--inner-width);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
@media (width < 834px) {
  .footer__in {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
.footer__l {
  max-width: 330px;
}
.footer__l p {
  margin-top: 15px;
  font-size: 16px;
}
.footer__r {
  text-align: right;
}
.footer__r ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
  margin-block: 15px;
}
@media (width < 834px) {
  .footer__r ul {
    gap: 20px 20px;
  }
}
.footer__r ul li a {
  font-size: 16px;
  font-weight: bold;
}
.footer__r ul li a:hover {
  text-decoration: underline;
}
.footer__r small {
  font-size: 14px;
}
@media (width < 834px) {
  .footer__r small {
    font-size: 12px;
  }
}

.complete {
  padding-top: 200px;
  padding-bottom: 120px;
}
.complete_head {
  font-size: 30px;
  text-align: center;
  font-weight: 900;
  margin-bottom: 80px;
  color: #c7ad75;
}
.complete_txt {
  font-size: 18px;
  text-align: center;
  line-height: 1.7;
}
.complete_tel {
  text-align: center;
  font-weight: 900;
  padding: 30px 0;
}
.complete_btn {
  margin: 50px auto;
  display: block;
  width: 300px;
  text-align: center;
}
.complete_btn a {
  display: block;
  color: #fff;
  background-color: #6a9c41;
  padding: 10px 0;
}/*# sourceMappingURL=index.css.map */
