@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/*------------------------------------------------------------
  共通
------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.7;
  font-feature-settings: "palt";
  background-color: #fff;
}

a {
  display: inline-block;
}

a img:hover {
  opacity: 0.7;
  z-index: 9999;
  transition-duration: 0.3s;
  transform: translate(5px, 5px);
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.wrapper {
  max-width: 1000px;
  margin-inline: auto;
}

.--green {
  background-color: #1f753d;
}

.--white {
  background-color: #fff;
}

.--black {
  background-color: #000000;
}

.--red {
  background-color: #ac0026;
}

.--gold {
  background-color: #bb9863;
}

/*------------------------------------------------------------
  mv
------------------------------------------------------------*/
.p-mv__content {
  position: relative;
}

.p-mv__title {
  text-align: center;
  margin-inline: auto;
}

.p-mv__swiper {
  width: 100%;
  padding-block-start: 20px;
}
@media screen and (min-width: 768px) {
  .p-mv__swiper {
    padding-block-start: 40px;
  }
}

#js-mv-swiper .swiper-slide {
  width: clamp(767px, 37.28vw + 627.2px, 1000px);
}

/*------------------------------------------------------------
  section
------------------------------------------------------------*/
.l-section {
  padding-block-start: 30px;
  padding-block-end: 40px;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-block-start: 60px;
    padding-block-end: 80px;
  }
}

.l-section__short {
  padding-block-start: 20px;
  padding-block-end: 20px;
}
@media screen and (min-width: 768px) {
  .l-section__short {
    padding-block-start: 40px;
    padding-block-end: 40px;
  }
}

.l-special {
  --element-position: -25px;
  position: relative;
  top: var(--element-position);
  margin-block-end: var(--element-position);
}
@media screen and (min-width: 768px) {
  .l-special {
    --element-position: -45px;
  }
}

.l-test-drive {
  padding-block-end: 90px;
}
.l-test-drive .l-section {
  padding-block-start: 20px;
  padding-block-end: 20px;
}
@media screen and (min-width: 768px) {
  .l-test-drive .l-section {
    padding-block-start: 40px;
    padding-block-end: 40px;
  }
}

.p-content {
  display: grid;
  place-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-content {
    gap: 60px;
  }
}

.p-title {
  text-align: center;
}

.p-img {
  text-align: center;
}

.c-map {
  width: 100%;
  aspect-ratio: 320/220;
}
.c-map iframe {
  width: 100%;
  height: 100%;
}

/*------------------------------------------------------------
  footer
------------------------------------------------------------*/
.footer {
  padding-top: 40px;
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.p-footer__tel {
  --element-position: -20px;
  position: relative;
  top: var(--element-position);
  margin-block-end: var(--element-position);
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-footer__tel {
    --element-position: -40px;
  }
}

/*------------------------------------------------------------
  anime
------------------------------------------------------------*/
.blur {
  --animation-time: 0.5s 0s;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.02);
  transition: opacity var(--animation-time) ease-in, transform var(--animation-time) ease-in, filter var(--animation-time) ease-in;
}
@media screen and (min-width: 768px) {
  .blur {
    --animation-time: 0.5s 0.3s;
  }
}
.blur.is-in-view {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/*------------------------------------------------------------
  unit
------------------------------------------------------------*/
.u-add__padding-in20 {
  padding-inline: 20px;
}

.u-add__padding-in30 {
  padding-inline: 30px;
}

.u-add__padding-bottom60 {
  padding-bottom: 60px;
}

.u-width50 {
  width: 50%;
}

.u-width65 {
  width: 65%;
}

.u-width75 {
  width: 75%;
}
