@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */

@font-face {
	font-family: 'Noto Sans CJK JP';
	src: url('../font/NotoSansCJKjp-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Brandon Grotesque';
	src: url('../font/Brandon_Grotesque_black.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.26vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 4.77vw;
  }
}
@media (min-width: 335px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #2c2c2c;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.access-layout {
  padding-top: 2.5rem;
  padding-bottom: 8.31rem;
}

.confirm-layout {
  padding-top: 2.5rem;
  padding-bottom: 5.62rem;
}

.footer-layout {
  padding-top: 3.87rem;
  padding-bottom: 1.25rem;
}

.price-layout {
  padding-bottom: 6.25rem;
}

.privacy-policy-layout {
  margin-top: 12.5rem;
  padding-bottom: 8.12rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy-layout {
    margin-top: 12.31rem;
  }
}

.reserve-layout {
  padding-top: 2.5rem;
  padding-bottom: 4.37rem;
}

.service-layout {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}

.space-layout {
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}

.thanks-layout {
  padding-top: 2.5rem;
  padding-bottom: 23.69rem;
}

.big-text {
  background-color: #fff;
  border: none;
  border-radius: 8px;
  color: #D00E25;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0 0.625rem;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  display: inline-block;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.005em;
  white-space: nowrap;
  cursor: default;
}

.big-text.big-text--red {
  background-color: #D00E25;
  color: #fff;
}

.button {
  background-color: #fff;
  border: none;
  border-radius: 60px;
  color: #D00E25;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.62rem 2.31rem 0.62rem 2.31rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05em;
}

.heading img {
  margin: auto;
}

.mail-button {
  background-color: #1EBE04;
  border: none;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  font-size: 1.0rem;
  font-weight: 700;
  padding: 0.69rem 1.3rem 0.69rem;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .mail-button {
    font-size: 1.25rem;
  }
  .mail-button.in_menu {
    font-size: 1rem;
  }
}

.mail-button img {
  width: 1.56rem;
  height: 1.125rem;
  display: block;
  margin-right: 0.3rem;
}

.mail-button.mail-button--border {
  border: 5px solid #fff;
  padding: 0.69rem 0;
  max-width: 10.12rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mail-button.mail-button--border {
  padding: 0.69rem 0;
  max-width: 18.12rem;
}

}

.page-top {
  position: relative;
}

.page-top-button {
  position: absolute;
  z-index: 700;
  width: 4.13rem;
  height: 4.14rem;
  right: 1.37rem;
  bottom: -40px;
}
@media screen and (min-width: 768px) {
  .page-top-button {
    cursor: pointer;
    right: 20.81rem;
  }
}

.tel-button {
  background-color: #0486BE;
  border: none;
  border-radius: 100px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.623rem 1.12rem 0.62rem 1.81rem;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .tel-button {
    font-size: 1.25rem;
  }
  .tel-button.in_menu {
    font-size: 1rem;
  }
}

.tel-button img {
  width: 1.38rem;
  height: 1.44rem;
  display: block;
  margin-right: 0.75rem;
}

.tel-button.tel-button--border {
  border: 5px solid #fff;
  padding: 0.69rem 0;
  max-width: 10.13rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .tel-button.tel-button--border {
    padding: 0.69rem 0;
    max-width: 18.12rem;
  }
}

.link-button.link-button--color {
  background-color: #1EBE04;
}

.text {
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.75;
  text-indent: -1.7em;
  padding-left: 1.7em;
  cursor: default;
}

.text.text--white {
  letter-spacing: 0.01em;
  color: #fff;
}

.text.text--red {
  color: #D00E25;
}

.text::before {
  margin-right: 0.56rem;
  content: "";
  display: inline-flex;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  border: 3px solid #D00E25;
}

.text.text--white::before {
  border: 3px solid #fff;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 18px 0 18px;
  border-color: #D00E25 transparent transparent transparent;
  margin: 4.25rem auto 0;
}

.access {
  background-color: #fff;
}

.access__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.44rem;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .access__inner {
    padding-right: 1.56rem;
    padding-left: 1.56rem;
    max-width: 26.56rem;
    overflow-x: visible;
  }
}

.access__heading {
  margin-bottom: 2.5rem;
}

.access__map {
  display: flex;
  justify-content: center;
}

.access__map-img {
  margin-top: 2.62rem;
  aspect-ratio: 349/349;
  max-width: 21.81rem;
  margin: 0 calc(100% - 50vw);
}
@media screen and (min-width: 768px) {
  .access__map-img {
    max-width: 43.75rem;
    aspect-ratio: 700/349;
    margin: 0 calc(100% - 50vw);
  }
}

.access__map iframe {
  width: 349px;
  height: 349px;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .access__map iframe {
    width: 700px;
    height: 349px;
  }
}

.access__link {
  margin-top: 1.75rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  font-weight: 500;
  color: #D00E25;
  border-bottom: 1px solid #D00E25;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
}

.access__link a {
  display: block;
}

.access__info {
  margin-top: 1.63rem;
  text-align: center;
  font-weight: 500;
  color: #D00E25;
}

.access__info-ja {
  font-size: 1.25rem;
}

.access__info-en {
  font-size: 0.937rem;
}

.access__info-address {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}

.bg-area-1 {
  position: relative;
  display: block;
}

.bg-area-1 img {
  position: absolute;
  right: 0;
  bottom: -0.25px;
}

.bg-area-2 {
  position: relative;
  display: block;
}

.bg-area-2 img {
  position: absolute;
  left: 0;
  top: -0.26px;
}

.bg-area-3 {
  position: relative;
  display: block;
}

.bg-area-3 img {
  position: absolute;
  left: 0;
  bottom: -0.25px;
}

.bg-area-4 {
  position: relative;
  display: block;
}

.bg-area-4 img {
  position: absolute;
  right: 0;
  top: -0.26px;
}

.confirm__wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.confirm {
  background-color: #D00E25;
  flex: 1;
}

.confirm__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.4375rem;
}
@media screen and (min-width: 768px) {
  .confirm__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    max-width: 24.0625rem;
  }
}

.confirm__title {
  margin-top: 2.125rem;
  text-align: center;
  font-size: 1.6875rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .confirm__title {
    margin-top: 2.5rem;
  }
}

.confirm__text {
  margin-top: 1.125rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}

table.formTable {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

table.formTable th, table.formTable td {
  display: block;
  text-align: left;
}

table.formTable th {
  margin-top: 2.3125rem;
}

table.formTable td {
  margin-top: 1.5625rem;
  text-indent: 1em;
}

.confirm__button-wrap {
  margin-top: 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.confirm__button {
  padding: 1.25rem 0;
  width: 100%;
  max-width: 13.375rem;
  text-align: center;
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  border-radius: 3.75rem;
  border: 3px solid #fff;
  background-color: #D00E25;
  cursor: pointer;
}

.footer {
  background-color: #D00E25;
}

.footer__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.4375rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    max-width: 26.5625rem;
  }
}

.footer__logo {
  display: flex;
  justify-content: center;
}

.footer__logo a {
  display: block;
  max-width: 6.25rem;
  width: 100%;
}

.footer_logo a img {
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__info {
  margin-top: 2rem;
  padding-bottom: 6.25rem;
  text-align: center;
  font-weight: 500;
  color: #fff;
}

.footer__info-ja {
  font-size: 1.25rem;
}

.footer__info-address {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

.footer__privacy {
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  border-bottom: 1px solid #fff;
}

.footer__company {
  margin-top: 1.25rem;
  margin-right: auto;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  border-bottom: 1px solid #fff;
}

.footer-button-wrap {
  display: flex;
  flex-direction: row;
  gap: 0.625rem;
  position: fixed;
  bottom: 1.25rem;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  .footer-button-wrap {
    margin-left: -5rem;
  }
}

.form__item:not(:first-child) {
  margin-top: 1.125rem;
}

.form__item:first-child {
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .form__item:first-child {
    margin-top: 1.875rem;
  }
}

.form__category {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.form__category.form__category--small {
  font-size: 0.8125rem;
}

.form__green {
  margin-left: 0.625rem;
  padding: 0.125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background-color: #5FD07F;
  border-radius: 0.5rem;
}

.form__gray {
  margin-left: 0.625rem;
  padding: 0.3125rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background-color: #A0A0A0;
  border-radius: 0.5rem;
}

input {
  width: 100%;
  border: none;
}

.form__text {
  margin-top: 0.5rem;
  display: block;
  width: 100%;
  max-width: 18.5625rem;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  border: 2px solid #c5c5c5;
  background-color: #fff;
  border-radius: 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

@media screen and (min-width: 768px) {
  .form__text {
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.form__text input::-moz-placeholder {
  font-size: 1rem;
  font-weight: 700;
  color: #cfcfcf;
  letter-spacing: 0.05em;
}

.form__text input::placeholder {
  font-size: 1rem;
  font-weight: 700;
  color: #cfcfcf;
  letter-spacing: 0.05em;
}

.form__text.form__text--high {
  height: 10.3125rem;
}

.form__item textarea {
  border: none;
  resize: none;
  width: 100%;
  height: 100%;
}

.form__sub {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.birthday__long {
  max-width: 90px;
}

.birthday__short {
  max-width: 55px;
}

.form__flex {
  display: flex;
  justify-content: space-between;
}

.form-birthday-error .parsley-required,
.form-birthday-error .parsley-maxlength,
.form-birthday-error .parsley-pattern {
  color: #fff
}

.form-birthday-error .parsley-errors-list:not(:first-of-type) {
  display: none;
}

.form__check {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0.625rem;
}

.form__button-wrap {
  margin-top: 2.8125rem;
  text-align: center;
  padding-right: 1.25rem;
}

.form__button {
  padding: 1.25rem 0;
  width: 100%;
  max-width: 13.375rem;
  text-align: center;
  display: inline-block;
  transition: opacity 0.3s;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: #D00E25;
  border-radius: 3.75rem;
  background-color: #fff;
  cursor: pointer;
}

.form__button:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .form__button:hover {
    opacity: 0.8;
  }
}

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

.form__wrap.form__wrap-align {
  align-items: start;
}

.form-check {
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  background: transparent;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.3s ease;
}
.form-check i.icon {
  opacity: 1;
  font-size: "calc(1rem + 1vw)";
  color: #cfcfcf;
  transition: opacity 0.3s 0.1s ease;
  -webkit-text-stroke: 3px;
}

/* header */
.header {
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .header {
    height: 3.1rem;
  }
}

.header__inner {
  padding-left: 1.75rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}

.header__logo {
  height: inherit;
  z-index: 888;
}

.header__logo a {
  position: absolute;
  left: 1.06rem;
  width: 16.84vw;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 414px) {
  .header__logo a {
    width: 63.26px;
  }
}
@media screen and (min-width: 768px) {
  .header__logo a {
    width: 6.68vw;
    top: 1.77vw;
    left: 3.43vw;
  }
}
@media screen and (min-width: 987px) {
  .header__logo a {
    width: min(6.58vw, 126.5px);
    top: min(1.77vw, 34px);
    left: min(3.43vw, 66px);

  }
}

.header__logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__hamburger {
  margin-top: 33px;
  position: fixed;
  right: 0;
  z-index: 999;
  height: 3.12rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__hamburger{
    margin-top: 60px;
  }
}

.header__hamburger-bars {
  position: fixed;
  top: 33px;
  right: 0;
  padding: 20px;
  width: 70px;
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
  background-color: #D00E25;
  height: inherit;
  display: block;
}
@media screen and (min-width: 768px) {
  .header__hamburger-bars {
    top: 60px;
  }
}

.header__hamburger-bars span {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  border-radius: 20px;
  background-color: #fff;
  transform: translateY(-50%);
  transition: 0.5s;
}

.header__hamburger-bars span:nth-of-type(1) {
  top: -30%;
}

.header__hamburger-bars span:nth-of-type(2) {
  top: 30%;
}

.header__hamburger-bars span:nth-of-type(3) {
  top: 80%;
}

.header__hamburger.is-open > .header__hamburger-bars span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(49deg);
}

.header__hamburger.is-open > .header__hamburger-bars span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open > .header__hamburger-bars span:nth-of-type(3) {
  top: -24%;
  transform: translateY(-50%) rotate(-48deg);
}

.header__drawer {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding-top: 2.5rem;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  background-color: #fff;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
@media screen and (min-width: 768px) {
  .header__drawer {
    width: 23.4375rem;
    padding-top: 5.1875rem;
  }
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-inner {
  padding-bottom: 1.25rem;
}

.header__drawer-nav {
  margin-left: 3.4375rem;
}

.header__drawer-logo {
  padding-top: 0.625rem;
  max-width: 2.875rem;
  width: 100%;
}

.header__drawer-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.header__drawer-items {
  margin-top: 2.875rem;
}

.header__drawer-item-en {
  padding-top: 0.9375rem;
  padding-bottom: 0.375rem;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.068em;
  color: #D00E25;
  text-transform: uppercase;
}

.header__drawer-item-ja {
  padding-top: 0.375rem;
  padding-bottom: 0.9375rem;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.068em;
  color: #D00E25;
  border-top: 1px solid #D00E25;
  text-transform: uppercase;
}

.header__drawer-button-wrap {
  margin-top: 3.125rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.125rem;
}

.label__checkbox {
  display: none;
}

.label__text {
  display: flex;
  align-items: end;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.label__check {
  display: inline-block;
  border-radius: 0.25rem;
  border: 1px solid #cfcfcf;
  background: white;
  vertical-align: middle;
  margin-right: 0.5rem;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border 0.3s ease;
}
.label__check i.icon {
  opacity: 0.2;
  font-size: "calc(1rem + 1vw)";
  color: transparent;
  transition: opacity 0.3s 0.1s ease;
  -webkit-text-stroke: 3px rgba(0, 0, 0, 0.5);
}
.label__check:hover {
  border: 1px solid #cfcfcf;
}

.label__checkbox:checked + .label__text .label__check .icon {
  opacity: 1;
  transform: scale(0);
  color: #5FD07F;
  -webkit-text-stroke: 3px;
  animation: icon 0.3s cubic-bezier(1, 0.008, 0.565, 1.65) 0.1s 1 forwards;
}

@keyframes icon {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.mv {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.mv::before {
  content: '';
  display: block;
  z-index: -1;
  background-color: #D0DEEA;
  background-repeat: no-repeat;
  background-size: contain; 
  margin-left: -5rem;
  height: 70%;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 32px; 
}
@media screen and (min-width: 768px) {
  .mv::before {
    height: 68%;
    bottom: 8%;
    border-radius: 4.58vw; 
    margin-left: -15rem;
  }
}
@media screen and (min-width: 987px) {
  .mv::before {
    border-radius: min(4.58vw, 88px); 
  }
}

.mv__img {
  width: 100%;
  margin-right: calc(50% - 50vw);
  margin-left: 3rem;
  height: 70vh;
  width: 100%;
  padding-top: 2.8vh;
  position: relative;
  margin-bottom: 2.6vh;
}
@media screen and (min-width: 414px) {
  .mv__img {
    width: 100%;
    margin-right: calc(50% - 50vw);
    margin-left: 3rem;
    height: 70vh;
    width: 100%;
    padding-top: 2.8vh;
    position: relative;
    margin-bottom: 2.6vh;
  }
}
@media screen and (min-width: 768px) {
  .mv__img {
    width: 80%;
    margin-left: auto;
    padding-top: 0;
    height: 32.03vw;
    margin-bottom: 2.8vh;
  }
}
@media screen and (min-width: 987px) {
  .mv__img {
    height: min(32.03vw, 615px);
  }
}

.up_pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .up_pc {
    display: block;
  }
}

.mv__img picture,
.mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-top-left-radius: 1.87rem;
  border-bottom-left-radius: 1.87rem;
}

.mv__top {
  position: absolute;
  top: 11vh;
  width: 68.8vw;
}
@media screen and (min-width: 414px) {
  .mv__top {
    width: 258px;
  }
}
@media screen and (min-width: 768px) {
  .mv__top {
    top: 0;
    margin-top: 2.8vw;
    left: 20%;
    width: 25.26vw;
  }
}
@media (min-width: 983px) {
  .mv__top {
    width: min(25.26vw, 485px);
    margin-top: min(2.8vw, 54px);
  }
}

.mv__topSubtitle::before{
  content: '・・・・・・';
  display: block;
  color: #D00E25;
  width: 22.1vw; 
  height: 0.8vw;
  font-size: 1rem;
  position: absolute;
  top: -1rem;
  right: 1rem;
}
@media screen and (min-width: 414px) {
  .mv__topSubtitle::before {
    width: 83px; 
    height: 3px;
  }
}
@media screen and (min-width: 768px) {
  .mv__topSubtitle::before {
    width: 8.38vw; 
    height: 0.31vw;
    font-size: 1.61vw;
    top: -1.3vw;
    right: 1vw;
  }
}
@media (min-width: 983px) {
  .mv__topSubtitle::before {
    width: min(8.38vw, 161px);
    height: min(0.31vw, 6px);
    font-size: min(1.61vw, 1.93rem);
    top: max(-1.3vw, -25px);
    right: min(1vw, 19.5px);
  }
}

.mv__topSubtitle {
  font-size: 1rem;
  font-weight: 800;
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  margin-bottom: 1.6vw;
  text-align: end;
  margin-left: auto;
  margin-right: 0;
  margin-left: 0.5rem;
  position: relative;
}
@media screen and (min-width: 414px) {
  .mv__topSubtitle {
    margin-bottom: 0.375rem;
  }
}
@media screen and (min-width: 768px) {
  .mv__topSubtitle {
    font-size: 1.61vw;
    margin-bottom: unset;
    margin-left: 0.5vw;
  }
}
@media (min-width: 983px) {
  .mv__topSubtitle {
    font-size: min(1.61vw, 1.93rem);
    margin-left: min(0.5vw, 10px);
  }
}

.mv__topTitleRwap {
  display: block;
  width: 100%;
  background-color: #D00E25;
  height: 11.46vw;
  border-radius: 0 999px 999px 0;
  align-items: center;
}
@media screen and (min-width: 414px) {
  .mv__topTitleRwap{
    height: 43px;
  }
}
@media screen and (min-width: 768px) {
  .mv__topTitleRwap {
    height: 3.22vw;
  }
}
@media (min-width: 983px) {
  .mv__topTitleRwap {
    height: min(3.22vw, 62px);
  }
}

.mv__topTitle {
  display: block;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  font-weight: 900;
  font-size: 1.68rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .mv__topTitle {
    font-size: 2.08vw;
  }
}
@media (min-width: 983px) {
  .mv__topTitle {
    font-size: min(2.08vw, 2.5rem);
  }
}

.mv__point {
  position: absolute;
  width: 33.33vw;
  aspect-ratio: 1/1;
  background-image: url(../images/common/mv_point-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;

  bottom: 15%;
  translate: -28% 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 414px) {
  .mv__point{
    width: 125px;
    }
}
@media screen and (min-width: 768px) {
  .mv__point{
    width: 10.41vw;
    aspect-ratio: 1/1;
    bottom: 25%;
    translate: -33% 0;
  }
}
@media screen and (min-width: 987px) {
  .mv__point{
    width: min(10.41vw, 200px);
  }
}

.mv__pointTitle {
  font-size: 1.25rem;
  font-weight: 900;
  color: #D00E25;
}
@media screen and (min-width: 768px) {
  .mv__pointTitle{
    font-size: 1.56vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__pointTitle{
    font-size: min(1.56vw, 1.87rem);
  }
}

.mv__pointText {
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv__pointText{
    font-size: 0.98vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__pointText{
    font-size: min(0.98vw, 1.18rem);
  }
}

.mv__point--sokuzitu {
  bottom: -3%;
  translate: 58% 0;
}
@media screen and (min-width: 768px) {
  .mv__point--sokuzitu{
    bottom: -3%;
    translate: 47% 0;
  }
}

.mv__price {
  width: 89.33vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  padding-block: 4.8vw;
  border: 4px solid #D00E25;
  margin-bottom: 4.26vw;
}
@media screen and (min-width: 414px) {
  .mv__price{
    width: 335px;
    padding-block: 18px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .mv__price{
    width: 36.97vw;
    padding-block: 1.12vw;
    margin-bottom: 1.2vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__price{
    width: min(36.97vw 710px);
    padding-block: min(1.12vw 21.5px);
    margin-bottom: min(1.2vw 23px);
  }
}

.mv__priceWrap {
  width: 73.33vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 414px) {
  .mv__priceWrap{
    width: 275px;
  }
}
@media screen and (min-width: 768px) {
  .mv__priceWrap{
    width: 33.20vw;
    flex-direction: row;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceWrap{
    width: min(33.20vw 637.55px);
  }
}

.mv__priceTitleRwap {
  width: 70.39vw;
  height: 8.53vw;
  background-color: #D00E25;
  border-radius: 7px;
  text-align: center;
  margin-bottom: 4.26vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 414px) {
  .mv__priceTitleRwap{
    width: 264px;
    height: 32px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .mv__priceTitleRwap{
    width: 12.73vw;
    height: 4.46vw;
    background-color: #D00E25;
    border-radius: 9px;
    margin-bottom: unset;
    margin-right: 1.04vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceTitleRwap{
    width: min(12.73vw, 244.42px);
    height: min(4.46vw, 85.71px);
    margin-right: min(1.04vw, 20px);
  }
}

.mv__priceTitle {
  font-size: 1rem;
  color: #fff;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .mv__priceTitle{
    font-size: 1.19vw;
    text-align: center;
    white-space: nowrap;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceTitle{
    font-size: min(1.19vw, 1.43rem);
    
  }
}

.mv__priceAreaWrap {
  width:76vw;
  margin: 0 auto;
}
@media screen and (min-width: 414px) {
  .mv__priceAreaWrap{
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .mv__priceAreaWrap{
    width:19.43vw;
    margin: unset;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceAreaWrap{
    width:min(19.43vw, 373.13px);
  }
}

.mv__priceText{
  font-size: 0.875rem;
  margin-bottom: 2.4vw;
  text-align: start;
}
@media screen and (min-width: 414px) {
  .mv__priceText{
    margin-bottom: 9px;
  }
}
@media screen and (min-width: 768px) {
  .mv__priceText{
    font-size: 0.98vw;
    margin-bottom: 0.52vw;
    translate: 0.52vw 0;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceText{
    font-size: min(0.98vw, 1.18rem);
    margin-bottom: min(0.52vw, 10px);
    translate: min(0.52vw, 10px) 0;
  }
}

.mv__priceText::before {
  content: 'デリバリー車検';
  display: inline-block;
  font-size: 0.87rem;
  color: #D00E25;
  border-radius: 999px;
  border: 1px solid #D00E25;
  padding-inline: 2.93vw;
  margin-right: 1.6vw;
  margin-left: 1.6vw;
}
@media screen and (min-width: 414px) {
  .mv__priceText::before{
    padding-inline: 11px;
    margin-right: 6px;
    margin-left: 6px;
  }
}
@media screen and (min-width: 768px) {
  .mv__priceText::before{
    font-size: 0.98vw;
    border-radius: 999px;
    border: 0.07vw solid #D00E25;
    padding-inline: 0.77vw;
    margin-right: 0.42vw;
    margin-left: unset;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceText::before{
    font-size: min(0.98vw, 1.18rem);
    border: min(0.07vw, 1.36px) solid #D00E25;
    padding-inline: min(0.77vw, 14.92px);
    margin-right: min(0.42vw, 8.14px);
    margin-left: unset;
  }
}

.mv__priceArea {
  height: 14.39vw;
  line-height: 14.39vw;
}
@media screen and (min-width: 414px) {
  .mv__priceArea{
    height: 54px;
    line-height: 54px;
  }
}
@media screen and (min-width: 768px) {
  .mv__priceArea{
    height: 3.18vw;
    line-height: 3.18vw;
    line-height: 1;
    margin-bottom: 0.4vw;
    display: flex;
    justify-content: center;
    align-items: baseline;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceArea{
    height: min(3.18vw, 73.27px);
    line-height: min(3.18vw, 73.27px);
    margin-bottom: min(0.4vw, 8px);
  }
}

.mv__priceArea--1 {
  font-size: 4.08rem;
  color: #D00E25;
  letter-spacing: -0.1em;
  font-weight: 700;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .mv__priceArea--1{
    font-size: 4.62vw;
    letter-spacing: -0.03em;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceArea--1{
    font-size: min(4.62vw, 5.54rem);
  }
}

.mv__priceArea--5 {
  font-size: 4.08rem;
  color: #D00E25;
  letter-spacing: -0.16em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv__priceArea--5{
    font-size: 4.62vw;
    letter-spacing: -0.09em;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceArea--5{
    font-size: min(4.62vw, 5.54rem);
  }
}

.mv__priceArea--comma {
  font-size: 2.51rem;
  color: #D00E25;
  letter-spacing: -0.2em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv__priceArea--comma{
    font-size: 2.84vw;
    letter-spacing: -0.08em;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceArea--comma{
    font-size: min(4.62vw, 3.34rem);
  }
}

.mv__priceArea--0 {
  font-size: 4.08rem;
  color: #D00E25;
  letter-spacing: -0.02em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv__priceArea--0{
    font-size: 4.62vw;
    letter-spacing: -0.02em;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceArea--0{
    font-size: min(4.62vw, 5.54rem);
  }
}

.mv__priceArea--en {
  font-size: 1.44rem;
  color: #D00E25;
  font-weight: 900;
  margin-left: -0.25rem;
}
@media screen and (min-width: 768px) {
  .mv__priceArea--en{
    font-size: 1.68vw;
    translate: 0 -0.26vw;
    margin-left: unset;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceArea--en{
    font-size: min(1.68vw, 1.95rem);
    translate: 0 min(-0.26vw, -5px);
  }
}

.mv__priceArea--tax {
  font-size: 1.12rem;
  color: #D00E25;
  font-weight: 900;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .mv__priceArea--tax{
    font-size: 1.27vw;
    translate: 0 -0.26vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__priceArea--tax{
    font-size: min(1.27vw, 1.52rem);
    translate: 0 min(-0.26vw, -5px);
  }
}

.mv__appeal {
  width: 89.33vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EFEFEF;
  border-radius: 16px;
  padding-top: 4vw;
  padding-bottom: 4.8vw;
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 414px) {
  .mv__appeal{
    width: 335px;
    padding-top: 15px;
    padding-bottom: 18px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 768px) {
  .mv__appeal{
    width: 36.97vw;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EFEFEF;
    border-radius: 0.83vw;
    padding-top: 1.27vw;
    padding-bottom: 1.27vw;
    margin-bottom: 0.88vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__appeal{
    width: min(36.97vw, 710px);
    padding-top: min(1.27vw, 24.5px);
    padding-bottom: min(1.27vw, 24.5px);
    margin-bottom: min(0.88vw, 17px);
    border-radius: min(0.83vw, 16px);
  }
}

@media screen and (min-width: 768px) {
  .mv__appealWrap{
    display: flex;
  }
}


.mv__appealTop {
  margin-bottom: 0.8vw;
}
@media screen and (min-width: 414px) {
  .mv__appealTop{
    margin-bottom: 3px;
  }
}
@media screen and (min-width: 768px) {
  .mv__appealTop{
    margin-bottom: unset;
  }
}

.mv__appealTopText {
  text-align: center;
  font-weight: 700;
  font-size: 0.87rem;
}
@media screen and (min-width: 768px) {
  .mv__appealTopText{
    font-size: 0.83vw;
    margin-right: 0.41vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__appealTopText{
    font-size: min(0.83vw, 1rem);
    margin-right: min(0.41vw, 8px);
  }
}


.mv__appealBottom {
  width: 70.93vw;
  height: 9.6vw;
  background: linear-gradient(to bottom, transparent 60%, #FFF159 40%);
}
@media screen and (min-width: 414px) {
  .mv__appealBottom{
    width: 266px;
    height: 36px;
  }
}
@media screen and (min-width: 768px) {
  .mv__appealBottom{
    width: 18.8vw;
    height: 2.55vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__appealBottom{
    width: min(18.8vw, 361px);
    height: min(2.55vw, 49px);
  }
}

.mv__appealBottomText {
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 9.6vw;
  white-space: nowrap;
}
@media screen and (min-width: 414px) {
  .mv__appealBottomText{
    line-height: 36px;
  }
}
@media screen and (min-width: 768px) {
  .mv__appealBottomText{
    font-size: 1.97vw;
    line-height: calc(1.97vw * 1.3);
  }
}
@media screen and (min-width: 987px) {
  .mv__appealBottomText{
    font-size: min(1.97vw, 2.37rem);
    line-height: min(calc(1.97vw * 1.3), calc(2.37rem * 1.3));
  }
}

.mv__appealBottomAfter {
  font-size: 1.12rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .mv__appealBottomAfter{
    font-size: 1.27vw;
  }
}
@media screen and (min-width: 987px) {
  .mv__appealBottomAfter{
    font-size: min(1.27vw, 1.52rem);
  }
}

.campain {
  width: 60.5vw;
  height: 8.53vw;
  margin: 0 auto;
  margin-bottom: 5.6vw;
}
@media screen and (min-width: 414px) {
  .campain{
    width: 227px;
    height: 32px;
    margin-bottom: 21px;
  }
}
@media screen and (min-width: 768px) {
  .campain{
    width: 14.79vw;
    height: 2.08vw;
    margin-bottom: 2.5vw;
  }
}
@media screen and (min-width: 987px) {
  .campain{
    width: min(14.79vw, 284px);
    height: min(2.08vw, 40px);
    margin-bottom: min(2.5vw, 48px);
  }
}

.campain__Title {
  color: #D00E25;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  width: 60.5vw;
  height: 8.53vw;
}
@media screen and (min-width: 414px) {
  .campain__Title{
    width: 227px;
    height: 32px;
  }
}
@media screen and (min-width: 768px) {
  .campain__Title{
    width: 14.79vw;
    height: 2.08vw;
    font-size: 2.08vw;
  }
}
@media screen and (min-width: 987px) {
  .campain__Title{
    width: min(14.79vw, 284px);
    height: min(2.08vw, 40px);
    font-size: min(2.08vw, 2.5rem);
  }
}

.page-arrow-wrap {
  text-align: center;
  padding-bottom: 2rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-arrow-wrap {
    margin-top: 0.78vw;
    padding-bottom: 1.6vw;
  }
}
@media screen and (min-width: 987px) {
  .page-arrow-wrap{
    margin-top: min(0.78vw, 15px);
    padding-bottom: min(1.6vw, 31px);
  }
}

.page-arrow {
  display: inline-block;
  vertical-align: middle;
  color: #D00E25;
  line-height: 1;
  position: relative;
  width: 28px;
  height: 28px;
  transform: translateY(-25%) rotate(135deg);
}

.page-arrow::before, .page-arrow::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.page-arrow::before {
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.page-arrow::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 5px;
}

.page-banner-wrap {
  max-width: 20.9375rem;
  margin: 0 auto;
}

.slick-dotted.slick-slider {
  margin-bottom: 4rem;
}

.slick-dots li button {
  padding: 0;
}

.slick-dots li button:before {
  display: block;
  content: '';
  border-radius: 50%;
  border: solid 2px #D00E25;
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  background-color: #D00E25;
  opacity: 1;
}

.slick-dots {
  bottom: -32px;
}

@media screen and (width >= 769px) {
  .page-banner-wrap {
    display: flex;
    max-width: 80%;
    gap: 5%;
    padding-bottom: 8.125rem;
  }

  .page-banner-wrap__img {
    width: 47.5%;
  }
}

.price {
  background-color: #D00E25;
}

.price__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.43rem;
  margin-bottom: 2.7rem;
}
@media screen and (min-width: 768px) {
  .price__inner {
    padding-right: 1.56rem;
    padding-left: 1.56rem;
    max-width: 26.56rem;
  }
}

.price__heading {
  margin-bottom: 0;
}

/* 左右に斜め線(両端を丸く) */
.price__title {
  align-items: center; /* 線を上下中央 */
  display: flex; /* 文字と線を横並び */
  justify-content: center; /* 文字を中央寄せ */
}

.price__title::before,
.price__title::after {
  background-color: #fff; /* 線の色 */
  border-radius: 5px; /* 線の両端を丸く */
  content: "";
  height: 50px; /* 線の高さ */
  width: 4px; /* 線の長さ */
}

.price__title::before {
  margin-right: 13px; /* 文字との余白 */
  transform: rotate(-21deg); /* 傾ける */
}

.price__title::after {
  margin-left: 13px; /* 文字との余白 */
  transform: rotate(20deg); /* 傾ける */
}
.price__titleCity {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.price__titleMain {
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
}

.price__container {
  margin-top: 0.375rem;
  width: 100%;
  max-width: 20.94rem;
  margin: 0 auto;
}

.price__containerRwap {
  width: 77.6%;
  height: 19.2vw;
  width: 280px;
  height: 72px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .price__containerRwap{
    width: 280px;
    height: 72px;
  }
}

.price__1500 {
  color: #fff;
  font-size: 3.75rem;
  font-weight: 700;
  text-align: center;
  width: 280px;
  height: 72px;
  line-height: 72px;
}

.price__en {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: -10px;
  margin-left: -10px;
}

.price__tilde {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  margin-left: -10px;
}

.price__list {
  width: 89.33vw;
  margin: auto;
}
@media screen and (min-width: 414px) {
  .price__list{
    width: 335px;
    margin: auto;
  }
}

.price__tabPanel {
	width: 100%;
  margin-bottom: 4.8vw;
}
@media screen and (min-width: 414px) {
  .price__tabPanel {
    margin-bottom: 18px;
  }
}

.price__tabGroup {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr); 
  gap: 2.13vw;
  margin-bottom: 4.26vw;
}
@media screen and (min-width: 414px) {
  .price__tabGroup {
    gap: 8px;
    margin-bottom: 16px;
  }
}

.price__tab {
	padding:5px;
	list-style:none;
	text-align:center;
	cursor:pointer;
  width: 28.35vw;
  height: 17.86vw;
  background-color: #fff;
  display: grid;
  place-content: center;
}
@media screen and (min-width: 414px) {
  .price__tab {
    width: 106.33px;
    height: 67px;
  }
}

.price__tabTextBox {
  position: relative; 
  width: 21.33vw;
  height: 10.66vw;
  display: flex;
  align-items: center;
  justify-content: center;

}
@media screen and (min-width: 414px) {
  .price__tabTextBox{
    width: 80px;
    height: 40px;
  }
}

.price__tabText {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: calc(0.875rem * 1.4);
  margin-bottom: 2.66vw;
  white-space: nowrap;
}
@media screen and (min-width: 414px) {
  .price__tabText{
    margin-bottom: 10px;
  }
}

.price__tabText--height{
  line-height: 0.9rem;
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 414px) {
  .price__tabText--height{
    margin-bottom: 12px;
  }
}

.price__tabTextBox::after {
  content: '';
  display: block;
  width: 2.1vw;
  height: 1.33vw;
  margin-top: 1.33vw;
  background-image: url(../images/common/priceTab_arrow--black.webp);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute; 
  bottom: -1.5vw; 
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 414px) {
  .price__tabTextBox::after{
    width: 7.9px;
    height: 5px;
    margin-top: 3px;
    bottom: -5px; 
  }
}

.price__panelGroup {
  background-color: #fff;
  border-radius: 24px;
  padding-block: 6.4vw;
  width: 89.33vw;
  margin: 0 auto;
}
@media screen and (min-width: 414px) {
  .price__panelGroup {
    padding-block: 24px;
    width: 335px;
  }
}

.price__panelArea {
  width: 76.53vw;
}
@media screen and (min-width: 414px) {
  .price__panelArea{
    width: 287px;
    margin: 0 auto;
  }
}

.price__carCategory {
  font-size: 1.12rem;
  font-weight: 700;
  text-align: center;
}

.price__carModel {
  font-size: 0.87rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 414px) {
  .price__carModel{
    margin-bottom: 12px;
  }
}

.price__carModelImg {
  width: 76.53vw;
  aspect-ratio: 287/164;
  margin: 0 auto;
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 414px) {
  .price__carModelImg{
    width: 287px;
    aspect-ratio: 287/164;
    margin-bottom: 12px;
  }
}

.price__allRwap {
  width: fit-content;
  height: 15.7vw;
  margin: 0 auto;
  margin-bottom: 3.2vw;
}
@media screen and (min-width: 414px) {
  .price__allRwap{
    width: 251px;
    height: 59px;
    margin-bottom: 12px;
  }
}

.price__all {
  color: #D00E25;
  font-size: 2.62rem;
  font-weight: 700;
}

.price__all::before {
  content: "車検\A総額"; 
  white-space: pre;
  display: inline-block;
  width: 11.2vw;
  aspect-ratio: 1/1;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  place-content: center;
  text-align: center;
  font-size: 0.75rem;
  margin-right: 1.86vw;
  translate: 0 -1.3vw;
  line-height: 1.05; 
}
@media screen and (min-width: 414px) {
  .price__all::before{
    translate: 0 -4.9px;
    width: 42px;
    margin-right: 7px;
  }
}

.price__all--en {
  width: 17.06vw;
  height: 5.86vw;
  font-size: 1rem;
  margin-left: 1vw;
}
@media screen and (min-width: 414px) {
  .price__all--en{
    width: 64px;
    height: 22px;
    margin-left: 3.74px;
  }
}

.price__caution {
  font-size: 0.75rem;
  font-weight: 500;
  text-align: center;
}

.price__panel {
	display:none;
}
.price__tab.is-active {
	background:#000;
	color:#FFF;
	transition: all 0.2s ease-out;
}

.price__tab.is-active .price__tabTextBox::after {
  background-image: url(../images/common/priceTab_arrow--white.webp);
}


.price__panel.is-show {
	display:block;
  width: 76.53vw;
  margin: 0 auto;
}
@media screen and (min-width: 414px) {
  .price__panel.is-show {
    width: 287px;
  }
}

.price__accordion {
	width: 100%;
  margin: 0 auto;
}
.price__accordionMenu {
	background-color: #000;
	cursor: pointer;
  width: 100%;
  height: 10.13vw;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media screen and (min-width: 414px) {
  .price__accordionMenu {
    height: 38px;
  }
}

.price__accordionTitle {
  font-size: 1rem;
  color: #fff;
  text-align: end;
}

.price__accordionTitle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 1.6vw solid transparent;
  border-right: 1.6vw solid transparent;
  border-top: 2.13vw solid #fff;
  margin-left: 29.06vw;
  margin-right: 2.13vw;
  translate: 0 -0.53vw;

}
@media screen and (min-width: 414px) {
  .price__accordionTitle::after{
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
    margin-left: 109px;
    margin-right: 8px;
    translate: 0 -2px;
  }
}

.price__accordionTitle.is-open::after {
  transform: rotate(180deg); 
}

.price__accordionContents {
	line-height: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition-duration: 0.4s;
}

.price__accordionContents.is-open {
	line-height: normal;
	opacity: 1;
  height: 88.53vw;
}
@media screen and (min-width: 414px) {
  .price__accordionContents.is-open {
    height: 332px;
  }
}

.price__table {
  width: 100%;
  height: 55.3vw;
  background-color: #fff;
  border-collapse: collapse; 
  margin-bottom: 2.66vw;
}
@media screen and (min-width: 414px) {
  .price__table{
    height: 207.5px;
    margin-bottom: 10px;
  }
}

.price__tableTd {
  border: 1px solid #000;
  text-align: center;        
  vertical-align: middle; 
  height: 18.4vw;
}
@media screen and (min-width: 414px) {
  .price__tableTd{
    height: 69px;
  }
}

.price__tableBalloon {
  font-size: 0.75rem;
  color: #FFF;
  position: relative;
  background-color: #D00E25;
  width: fit-content;
  border-radius: 999px;
  padding: 1vw 2.7vw;
  margin: 0 auto;
  margin-bottom: 5px;
}
@media screen and (min-width: 414px) {
  .price__tableBalloon{
    padding: 6px 8px;
  }
}

.price__tableBalloon::before {
  content: "";
  border: 1.33vw solid transparent;
  border-top: 1.33vw solid #D00E25;
  margin-left: -1.33vw;
  top: 100%;
  left: 50%;
  position: absolute;
}
@media screen and (min-width: 414px) {
  .price__tableBalloon::before {
    content: "";
    border: 5px solid transparent;
    border-top: 5px solid #D00E25;
    margin-left: -5px;
    top: 100%;
    left: 50%;
    position: absolute;
  }
}

.price__tableItem {
  font-size: 0.87rem;
}
.price__tableItem--parentheses {
  font-size: 0.75rem;
}

.price__tableItem--tight {
  letter-spacing: -0.7em;
}
.price__tableItem--little {
  font-size: 0.62rem;
}

.price__tablePrice {
  font-size: 1.62em;
  font-weight: 700;
}

.price__tablePrice--en {
  font-size: 0.875rem;
  font-weight: 700;
  margin-left: -1.3vw;
}
@media screen and (min-width: 414px) {
  .price__tablePrice--en{
    margin-left: -4.9px;
  }
}

.price__tableZero {
  font-size: 2.62rem;
  font-weight: 700;
  color: #D00E25;
}

.price__tableZero--en {
  font-size: 1.25rem;
  margin-left: -2.4px;
}
@media screen and (min-width: 414px) {
  .price__tableZero--en{
    margin-left: -9px;
  }
}

.price__cationArea {
  width: 89.33vw;
  margin: 0 auto;
}
@media screen and (min-width: 414px) {
  .price__cationArea{
    width: 335px;
  }
}

.price__cation {
  font-size: 0.75rem;
  color: #fff;
  line-height: calc(0.75rem * 1.6);
}

.price__cation--staff{
  text-indent: 0.75rem;
}

.privacy-policy__logo {
  position: absolute;
  left: calc(50% - 2px);
  transform: translateX(-50%);
  padding-top: 3.25rem;
  max-width: 7.9075rem;
  width: 100%;
}

.privacy-policy__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.privacy-policy__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.4375rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    max-width: 24.0625rem;
  }
}

.privacy-policy__title {
  text-align: center;
  font-size: 1.6875rem;
  font-weight: 700;
  color: #2c2c2c;
}

.privacy-policy__item {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__item {
    margin-top: 2.5rem;
  }
}

.privacy-policy__term {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c2c2c;
}

.privacy-policy__description-text {
  margin-top: 1.1875rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2c2c2c;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .privacy-policy__description-text {
    margin-top: 1.1rem;
  }
}

.privacy-policy__description-items {
  margin-top: 1.25rem;
  list-style-type: disc;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.privacy-policy__description-item {
  text-indent: 0;
  line-height: 1.45;
}

.privacy-policy__description-item:first-line {
  text-indent: -1em; /* １行目だけにインデントを適用 */
}

.reserve {
  background-color: #D00E25;
}

.reserve__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.4375rem;
}
@media screen and (min-width: 768px) {
  .reserve__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    max-width: 24.0625rem;
  }
}

.reserve__title {
  margin-top: 2.25rem;
  font-size: 1.6875rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.reserve__text {
  margin-top: 0.875rem;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: left;
}

.service {
  background-color: #fff;
}

.service__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.4375rem;
}
@media screen and (min-width: 768px) {
  .service__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    max-width: 26.5625rem;
  }
}

.service__heading {
  text-align: center;
}

.service__items {
  margin-top: 4rem;
}

.service__item + .service__item {
  margin-top: 7.5rem;
}

.service__item {
  display: flex;
  flex-direction: column;
}

.service__content {
  display: flex;
  flex-direction: column;
  position: absolute;
  margin-top: -3.375rem;
}
@media screen and (min-width: 768px) {
  .service__content {
    padding-left: 1.25rem;
  }
}

.service__big-text:not(:first-child) {
  margin-top: 0.625rem;
}

.service__img-first {
  margin-top: 3rem;
  aspect-ratio: 355/277;
  max-width: 22.1875rem;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .service__img-first {
    margin-right: calc(100% - 600px);
    aspect-ratio: 390/277;
    max-width: 24.375rem;
    margin-left: 16px;
  }
}

.service__img-first picture,
.service__img-first img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__img-second {
  aspect-ratio: 300/196;
  max-width: 18.75rem;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .service__img-second {
    margin-right: initial;
  }
}

.service__img-second img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service__img-second img {
    border-radius: 1.875rem;
  }
}

.service__img-third {
  aspect-ratio: 300/196;
  max-width: 18.75rem;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .service__img-third {
    margin-left: calc(50% - 210px);
    padding-left: 1.25rem;
  }
}

.service__img-third img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service__img-third img {
    border-radius: 1.875rem;
  }
}

.service__wrap {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .service__wrap {
    padding-left: 1.25rem;
  }
}

.service__wrapper {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .service__wrapper {
    padding-left: 1.25rem;
  }
}

.service__text:not(:first-child) {
  margin-top: 0.3125rem;
}

.service__wrap-text {
  margin-top: 1.25rem;
}

.service__text span {
  vertical-align: top;
  font-size: 0.625rem;
}

.space {
  background-color: #fff;
}

.space__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.4375rem;
}
@media screen and (min-width: 768px) {
  .space__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    max-width: 26.5625rem;
  }
}

.space__title {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #D00E25;
  text-align: center;
}

.space__img-container {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.space__img-first {
  aspect-ratio: 300/196;
  max-width: 18.75rem;
  margin-left: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .space__img-first {
    margin-left: initial;
  }
}

.space__img-second {
  aspect-ratio: 244/159;
  max-width: 15.25rem;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .space__img-second {
    margin-right: initial;
  }
}

.space__img-first img,
.space__img-second img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.space__img-first img {
  border-top-right-radius: 1.875rem;
  border-bottom-right-radius: 1.875rem;
}
@media screen and (min-width: 768px) {
  .space__img-first img {
    border-radius: 1.875rem;
  }
}

.space__img-second img {
  border-top-left-radius: 1.875rem;
  border-bottom-left-radius: 1.875rem;
}
@media screen and (min-width: 768px) {
  .space__img-second img {
    border-radius: 1.875rem;
  }
}

.space__content {
  margin-top: 3.3125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .space__content {
    padding-left: 1.25rem;
  }
}

.space__wrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .space__wrap {
    padding-left: 1.25rem;
  }
}

.space__text:not(:first-child) {
  margin-top: 0.25rem;
}

.thanks__wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thanks {
  background-color: #D00E25;
  flex: 1;
}

.thanks__inner {
  width: 100%;
  margin: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  max-width: 23.4375rem;
}
@media screen and (min-width: 768px) {
  .thanks__inner {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    max-width: 24.0625rem;
  }
}

.thanks__title {
  margin-top: 2.25rem;
  text-align: center;
  font-size: 1.6875rem;
  font-weight: 700;
  color: #fff;
}

.thanks__text {
  margin-top: 1rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.thanks__button-wrap {
  margin-top: 4.375rem;
  text-align: center;
  padding-right: 1.25rem;
}
/*# sourceMappingURL=style.css.map */

.content-button-wrap{
      text-align: center;
    margin-top: 1.5625rem;
}

@media screen and (min-width: 768px) {
.sp{
  display: none;
}
}

/* FAQ */
.faq-layout {
  padding-top: 2.5rem;
  padding-bottom: 6.56rem;
}
@media screen and (min-width: 768px) {
  .faq-layout {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.faq {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .faq__inner {
    gap: 8px;
  }
}

.faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
  padding: 2.5rem 3.6875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .faq__heading {
    padding: 2.5rem 3.6875rem;
  }
}

.faq__headingLogo {
  width: 3.375rem;
  height: 3.125rem;
}

.faq__headingLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.faq__headingText {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.625rem;
  font-weight: 900;
  color: #D00E25;
  letter-spacing: 0.12em;
  line-height: 1.14;
  text-align: center;
  width: 100%;
  padding-left: 2px;
}

.faq__list {
  width: 100%;
  max-width: 21.4375rem;
}
@media screen and (min-width: 768px) {
  .faq__list {
    max-width: 43.75rem;
  }
}

.faq__item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .faq__item {
    padding-bottom: 2rem;
  }
}

.faq__question {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 0 1.1875rem;
  border-bottom: 1px solid #e4a3aa;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .faq__question {
    gap: 0.5rem;
    align-items: center;
  }
}

.faq__questionLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  min-width: 2.125rem;
  background-color: #D00E25;
  border-radius: 0.5rem;
  font-family: "Brandon Grotesque", sans-serif;
  font-size: 1.375rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
  padding-bottom: 0.1875rem;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .faq__questionLabel {
    margin-top: 0;
  }
}

.faq__questionText {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #D00E25;
  line-height: 19px;
  margin: 0;
  padding-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .faq__questionText {
    font-size: 1.125rem;
  }
}

.faq__questionIcon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .faq__questionIcon {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.faq__questionIcon img {
  width: 100%;
  height: 100%;
  display: block;
}

.faq__question.is-open .faq__questionIcon {
  transform: translateY(-50%) rotate(180deg);
}

.faq__answer {
  line-height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease, line-height 0.4s ease;
}

.faq__answer.is-open {
  line-height: 1.7;
  opacity: 1;
  max-height: 1000px;
}

.faq__answerContent {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000;
  line-height: 1.7;
}

.faq__answerContent--leftSpacing {
  /* padding-left: 0.8rem; */
}

.faq__answerContent p {
  margin: 0;
}

.faq__answer-note {
  font-size: 0.75rem;
  line-height: 1.6;
  margin-top: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.faq__answer-note::before {
  content: "※";
  margin-right: 0.25rem;
  flex-shrink: 0;
}

/* REVIEWS */
.reviews-layout {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .reviews-layout {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

.reviews {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
  padding: 2.5rem 0;
}

.reviews__headingLogo {
  width: 3.375rem;
  height: 3.125rem;
}

.reviews__headingLogo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reviews__headingText {
  font-family: "Brandon Grotesque", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #D00E25;
  letter-spacing: 0.5rem;
  line-height: normal;
  text-align: center;
}

.reviews__headingTextLine::before {
  content: "CUSTOMER";
  display: block;
}

.reviews__headingTextLine::after {
  content: "REVIEWS";
  display: block;
}

@media screen and (min-width: 768px) {
  .reviews__headingTextLine::before {
    content: "CUSTOMER ";
    display: inline;
  }
  
  .reviews__headingTextLine::after {
    display: inline;
  }
  
  .reviews__headingTextLine {
    white-space: nowrap;
  }
}

.reviews__container {
  position: relative;
  width: 100%;
  padding: 0 1rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .reviews__container {
    max-width: 80rem;
    padding: 0 4.5rem;
  }
}

/* Swiper */
.reviewsSwiper {
  width: 100%;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .reviewsSwiper {
    overflow: hidden;
  }
}

.reviewsSwiper .swiper-wrapper {
  display: flex;
}

.reviewsSwiper .swiper-slide {
  height: auto;
}

/* レビューカード */
.reviews__card {
  background-color: #fff;
  border: 2px solid #D00E25;
  border-radius: 1.5rem;
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .reviews__card {
    padding: 1.5rem 2rem;
  }
}

/* 星評価 */
.reviews__stars {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  height: 1.5rem;
}

.reviews__stars img {
  width: 1.5rem;
  height: 1.5rem;
}

/* 顧客情報 */
.reviews__customer {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reviews__customerName {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

.reviews__customerNameMain {
  font-size: 2rem;
}

.reviews__customerNameSub {
  font-size: 1.25rem;
}

.reviews__customerCar {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .reviews__customerCar {
    font-size: 1.125rem;
  }
}

/* 区切り線 */
.reviews__divider {
  width: 100%;
  height: 0.75rem;
  position: relative;
  overflow: hidden;
}

.reviews__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #D00E25;
  border-radius: 999px;
}

/* レビューテキスト */
.reviews__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  color: #000;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .reviews__text {
    font-size: 1rem;
  }
}

/* ナビゲーションボタン (PCのみ) */
.reviews__navPrev,
.reviews__navNext {
  display: none;
}

@media screen and (min-width: 768px) {
  .reviews__navPrev,
  .reviews__navNext {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s;
  }

  .reviews__navPrev:hover,
  .reviews__navNext:hover {
    opacity: 0.7;
  }

  .reviews__navPrev.swiper-button-disabled,
  .reviews__navNext.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .reviews__navPrev {
    left: 3rem;
  }

  .reviews__navNext {
    right: 3rem;
  }

  .reviews__navPrev img,
  .reviews__navNext img {
    width: 100%;
    height: 100%;
    display: block;
  }
}
