@charset "UTF-8";

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
  text-align: inherit;
  cursor: pointer;
}

/* ====================
  Variables & Base
==================== */
:root {
  --base-width: 414;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-roboto: "Roboto", sans-serif;
  --font-murecho: "Murecho", sans-serif;
  
  --c-dark: #341515;
  --c-brown: #6B3C19;
  --c-red: #CB0200;
  --c-white: #ffffff;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: var(--font-noto);
  color: #000000;
}

section {
  scroll-margin-top: 61px;
}

@media screen and (min-width: 501px) {
  a:hover,
  a:active,
  button:hover,
  button:active {
    opacity: 0.85;
    transition: opacity 0.2s;
  }

  a:focus-visible,
  button:focus-visible {
    opacity: 0.85;
  }
}

/* ====================
  Common
==================== */
.l-section-bg {
  margin-top: -9px;
  padding-bottom: 60px;
  text-align: center;
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.c-sec-title {
  padding: 73px 0 24px;
  margin: 0 20px;
  border-bottom: 2px solid;
}
.c-sec-title img {
  padding: 4px 0;
}
.c-sec-title .-caption {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.c-sec-title--about {
  border-color: rgba(252, 255, 154, 0.4);
}
.c-sec-title--about .-caption {
  color: var(--c-white);
}

.c-sec-title--model {
  border-color: rgba(255, 255, 255, 0.4);
}
.c-sec-title--model .-caption {
  color: var(--c-white);
}

.c-sec-title--flow {
  border-color: rgba(107, 60, 25, 0.4);
}
.c-sec-title--flow .-caption {
  color: var(--c-brown);
}

.p-cta__btn {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 0 8px;
}
.p-about .p-cta__btn,
.p-flow .p-cta__btn {
  margin: 0 10px;
}
.p-model .p-cta__btn {
  margin: 0 16px;
}
.p-cta__btn a {
  position: relative;
  display: block;
  text-align: center;
  flex: 1;
  border-radius: 8px;
  color: var(--c-white);
  padding: 14.5px 8px 14.5px 0;
  font-family: var(--font-roboto);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}
.p-cta__btn a.-black { background-color: var(--c-dark); }
.p-cta__btn a.-red { background-color: var(--c-red); }
.p-cta__btn a.-white { background-color: var(--c-white); color: var(--c-dark); }

.p-cta__btn a::after {
  content: "";
  width: 6.5px;
  height: 6.5px;
  border: 0;
  border-bottom: solid 1px var(--c-white);
  border-right: solid 1px var(--c-white);
  position: absolute;
  top: calc(50% - 2px);
  right: 16.5px;
  transform: translateY(-50%) rotate(45deg);
}
.p-cta__btn a.-white::after {
  border-color: var(--c-dark);
}

.p-about__dealer-title .-red,
.p-flow__item-title .-red {
  color: var(--c-red);
}

/* ====================
  Header
==================== */
.l-header {
  width: 100%;
  padding: 2px 0;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 959px) {
  .l-header { padding: 8px 0; }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0 48px;
}
@media screen and (max-width: 500px) {
  .l-header__inner { padding: 0 10px; }
}

.l-header__logo a { display: block; }
.l-header__logo img {
  width: 269px;
  height: 56px;
}
@media screen and (max-width: 959px) {
  .l-header__logo img {
    width: 212px;
    height: 44px;
  }
}

@media screen and (min-width: 960px) {
  .l-header__line { display: none; }
}

.l-header__line { width: 44px; }
.l-header__line a { display: block; }

/* ====================
  PC 横ナビ（960px以上）
==================== */
.pc-side { display: none; }

@media screen and (min-width: 501px) {
  .pc-side {
    display: block;
    position: fixed;
    z-index: 0;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100vh - 61px);
    background-image: url("../img/bg-pc.webp");
    background-position: center;
    background-size: cover;
  }
  .pc-side__inner { display: none; }
}

@media screen and (min-width: 960px) {
  .pc-side__inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .pc-side__logo,
  .pc-side__nav {
    width: calc(50vw - 207px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pc-side__logo { padding: 0 calc((54 / 1440) * 100vw); }
  .pc-side__nav { padding: 0 calc((64 / 1440) * 100vw); }

  .pc-side__anchor {
    width: 100%;
    max-width: 385px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .pc-side__anchor li a { display: block; }

  .pc-side__nav .p-cta__btn {
    width: 100%;
    max-width: 385px;
    margin-top: 32px;
    flex-direction: column;
    gap: 12px;
  }

  .pc-side__line { margin-top: 32px; }
  .pc-side__line a {
    display: block;
    width: 64px;
  }
}

@media screen and (max-height: 580px) {
  .pc-side__nav { display: none; }
}

/* ====================
  SP main
==================== */
.sp-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  background-color: var(--c-white);
}
@media screen and (min-width: 501px) {
  .sp-wrapper {
    max-width: 414px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
}

/* ====================
  MV
==================== */
.p-mv {
  padding-bottom: 49px;
  background-image: url("../img/bg-mv.webp");
  background-position: bottom center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.p-mv__cta { margin-top: 40px; }

.p-mv__cta .p-cta__txt {
  text-align: center;
  margin-bottom: 24px;
  color: var(--c-dark);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
}

/* ====================
  About
==================== */
.p-about {
  background-image: url("../img/bg-about.webp");
}

.p-about__catch {
  margin: 0 20px;
  padding: 30px 0 16px;
  color: var(--c-white);
  font-family: var(--font-murecho);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.3;
}
@media screen and (max-width: 414px) {
  .p-about__catch { font-size: calc((28 / var(--base-width)) * 100vw); }
}

.p-about__text {
  margin: 0 20px 22px;
  color: var(--c-white);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}

.p-about__image { margin: 0 8px; }

.p-about__dealer { margin: 30px 20px 48px; }

.p-about__dealer-content {
  background-color: var(--c-white);
  padding: 24px 20px;
  border-radius: 8px;
}

.p-about__dealer-title {
  color: var(--c-dark);
  font-family: var(--font-murecho);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
}

.p-about__dealer-text {
  color: var(--c-dark);
  margin: 12px 0;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 414px) {
  .p-about__dealer-text { font-size: calc((15 / var(--base-width)) * 100vw); }
}

/* ====================
  MODEL共通
==================== */
.p-model__image { margin: 32px 12px 0; }

.p-model__concept {
  margin: 24px 20px 20px;
  color: var(--c-white);
}

.p-model__concept-title {
  font-family: var(--font-murecho);
  font-weight: 900;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.p-model__concept-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.03em;
}

.p-model__features {
  position: relative;
  background-color: var(--c-white);
  border-radius: 8px;
  padding: 88px 24px 32px;
  margin: 68px 20px 48px;
}

.p-model__features-catch {
  position: absolute;
  top: -36px;
  left: -20px;
  z-index: 10;
}

.p-model__feature-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.p-model__feature-item {
  display: flex;
  flex-direction: column;
}

.p-model__feature-item:not(:last-child) { 
  padding-bottom: 40px;
  border-bottom: 1px solid;
}

.p-model__feature-title {
  font-family: var(--font-murecho);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.3;
  padding-bottom: 17px;
  margin-bottom: 10px;
  position: relative;
}
.p-model__feature-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 7px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 414px) {
  .p-model__feature-title { font-size: calc((28 / var(--base-width)) * 100vw); }
}

.p-model__feature-text {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 24px;
}

.p-model .p-cta__txt {
  text-align: center;
  font-family: var(--font-murecho);
  color: var(--c-white);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.36;
  margin-bottom: 12px;
}

/* ====================
  FREED
==================== */
.p-freed { background-image: url("../img/bg-freed.webp"); }

.p-freed .p-model__feature-item { color: var(--c-brown); }

.p-freed .p-model__features-catch { width: 320px; }
@media screen and (max-width: 414px) {
  .p-freed .p-model__features-catch { width: calc((320 / var(--base-width)) * 100vw); }
}

.p-freed .p-model__feature-title::after { background-image: url('../img/line-freed.svg'); }

.p-freed .p-model__feature-item:not(:last-child) { border-color: rgba(150, 118, 94, 0.5); }

/* ====================
  STEP WGN
==================== */
.p-stepwgn { background-image: url("../img/bg-stepwgn.webp"); }

.p-stepwgn .p-model__feature-item { color: #354577; }

.p-stepwgn .p-model__features-catch { width: 350px; }
@media screen and (max-width: 414px) {
  .p-stepwgn .p-model__features-catch { width: calc((350 / var(--base-width)) * 100vw); }
}

.p-stepwgn .p-model__feature-title::after { background-image: url('../img/line-stepwgn.svg'); }

.p-stepwgn .p-model__feature-item:not(:last-child) { border-color: rgba(93, 106, 146, 0.5); }

/* ====================
  FLOW
==================== */
.p-flow { background-image: url("../img/bg-flow.webp"); }

.p-flow__catch {
  margin: 32px 0 40px;
  font-family: var(--font-murecho);
  color: var(--c-brown);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.3;
}

.p-flow__list {
  margin: 0 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-flow__item {
  position: relative;
  background-color: var(--c-white);
  border: 2px solid var(--c-dark);
  border-radius: 8px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  z-index: 1;
}
.p-flow__item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 35px;
  border-left: 4px dotted var(--c-dark);
  z-index: -1;
}
.p-flow__item:last-child::after { display: none; }

.p-flow__item-num {
  position: absolute;
  left: 6px;
  top: 6px;
  width: 52px;
}
@media screen and (max-width: 414px) {
  .p-flow__item-num { width: calc((52 / var(--base-width)) * 100vw); }
}

.p-flow__item-body {
  flex: 1;
  text-align: center;
}

.p-flow__item-title {
  font-family: var(--font-murecho);
  color: var(--c-dark);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 12px;
}
@media screen and (max-width: 414px) {
  .p-flow__item-title { font-size: calc((20 / var(--base-width)) * 100vw); }
}

.p-flow__item-text {
  color: var(--c-dark);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: -0.03em;
}

/* ====================
  店舗情報
==================== */
.p-shop {
  background-image: url("../img/bg-shop.webp");
  background-position: top left;
  background-size: cover;
  font-family: var(--font-roboto);
}

.p-shop__inner { padding: 60px 32px; }

.p-shop__title {
  color: var(--c-white);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 33px;
}

.p-shop__item:not(:last-child) { margin-bottom: 20px; }
.p-shop__item.is-open:not(:last-child) { margin-bottom: 12px; }

.p-shop__header {
  position: relative;
  cursor: pointer;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--c-white);
  list-style: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.p-shop__header::-webkit-details-marker { display: none; }
@media screen and (max-width: 414px) {
  .p-shop__header { font-size: calc((20 / var(--base-width)) * 100vw); }
}

.p-shop__header::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  background-image: url("../img/shop-accordion-plus.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.p-shop__item.is-open .p-shop__header::after {
  background-image: url("../img/shop-accordion-minus.svg");
}

.p-shop__header .-try {
  display: block;
  position: relative;
  margin-bottom: 2px;
  padding-left: 18px;
  color: var(--c-red);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.36;
}
.p-shop__header .-try::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background-image: url("../img/icon-car.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}

.p-shop__content {
  margin-top: -8px;
  position: relative;
  z-index: 2;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
  background-color: var(--c-white);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0 16px;
}

.p-shop__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 20px;
}

.p-shop__tag {
  padding: 0 8px;
  border: 1px solid #000000;
  font-weight: 400;
  font-size: 10px;
  line-height: 2;
  letter-spacing: -0.03em;
  text-align: center;
  white-space: nowrap;
}

.p-shop__info {
  margin: 16px 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.715;
  letter-spacing: -0.03em;
}

.p-shop__info .-address a,
.p-shop__info .-tel a,
.p-shop__info .-time {
  position: relative;
  display: inline-block;
  padding-left: 24px;
}

.p-shop__info .-time {
  display: block;
}

.p-shop__info .-address a::after,
.p-shop__info .-tel a::after,
.p-shop__info .-time::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}
.p-shop__info .-address a::after { background-image: url("../img/icon-map.svg"); }
.p-shop__info .-tel a::after { background-image: url("../img/icon-tel.svg"); }
.p-shop__info .-time::after { background-image: url("../img/icon-time.svg"); }

/* ====================
  お問い合わせ
==================== */
.p-contact { padding-top: 48px; }

.p-contact__title {
  text-align: center;
  color: #000;
  font-family: var(--font-roboto);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/* ====================
  フローティング
==================== */
.p-sp-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  pointer-events: none;
}
@media screen and (min-width: 501px) {
  .p-sp-nav {
    width: 414px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 960px) {
  .p-sp-anchor { display: none; }
}

.p-pagetop {
  position: absolute;
  right: 10px;
  bottom: 85px;
  width: 72px;
  height: 72px;
  background-color: var(--c-dark);
  border: 3px solid var(--c-white);
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  pointer-events: auto;
}
.p-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
}
.p-pagetop::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 30px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  background-image: url("../img/icon-pagetop.svg");
}

.p-sp-anchor {
  background-color: var(--c-dark);
  box-shadow: 0 -14px 24px -10px rgba(255, 255, 255, 0.7);
  border-radius: 8px 8px 0 0;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s, visibility 0.3s;
  pointer-events: auto;
}
.p-sp-anchor.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.p-sp-anchor__list {
  display: flex;
  height: 64px;
}

.p-sp-anchor__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-sp-anchor__item a {
  text-align: center;
  width: 100%;
  padding: 8px 0;
  color: var(--c-white);
  text-decoration: none;
}

.p-sp-anchor__item a img {
  height: calc((18 / var(--base-width)) * 100vw);
  max-height: 18px;
  width: auto;
}

.p-sp-anchor__item a span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-murecho);
  font-weight: 800;
  font-size: 10px;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 2px 2px 1px rgba(107, 60, 25, 0.3);
}

.p-sp-anchor__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  height: 48px;
  width: 1px;
  background: var(--c-white);
}

/* ====================
  Footer
==================== */
.l-footer__line {
  padding: 48px;
  text-align: center;
  background-color: #FCE9DC;
}

.l-footer__line-text { margin-bottom: 10px; }

.l-footer__line-icon a {
  display: inline-block;
  width: 64px;
}

.l-footer__copy {
  text-align: center;
  font-family: var(--font-roboto);
  background-color: #8A421C;
  color: var(--c-white);
  padding: 6px 0;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}