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

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, ttitle, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, titleer, 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, titleer, 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;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}

.v2h-header {
  display: block;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(217, 217, 217, 0.8);
  color: #ffffff;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .v2h-header {
    background: none;
  }
}
.v2h-header.is-scrolled {
  color: #4F4A44;
}
.v2h-header.is-scrolled .v2h-header__accordion-icon::before,
.v2h-header.is-scrolled .v2h-header__accordion-icon::after {
  background: #4F4A44;
}
.v2h-header.is-scrolled .v2h-header__sublist-item a::before {
  border-top: 1px solid #4F4A44 !important;
}
.v2h-header .v2h-header__inner {
  max-width: 980px;
  width: calc(100% - 50px);
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .v2h-header .v2h-header__inner {
    max-width: none;
    width: 100%;
    height: 40px;
    display: block;
  }
}
.v2h-header .v2h-header__title {
  font-size: 18px;
  white-space: nowrap;
  padding: 10px 20px 10px 0;
  border-right: solid 1px #ffffff;
}
@media screen and (max-width: 768px) {
  .v2h-header .v2h-header__title {
    font-size: 30px;
    color: #4F4A44;
    margin-bottom: 28px;
    border-bottom: solid 1px #918D88;
    border-right: none;
  }
}
.v2h-header .v2h-header__nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.v2h-header .v2h-header__nav.is-open {
  display: flex;
  flex-direction: column;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .v2h-header .v2h-header__nav {
    width: 100%;
    min-height: 100vh;
    background: rgba(217, 217, 217, 0.8);
    padding: 50px;
    overflow-y: scroll;
    display: none;
    transition: 0.3s;
  }
}
.v2h-header .v2h-header__nav .v2h-header__list {
  display: flex;
  gap: 28px;
  margin-left: 20px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .v2h-header .v2h-header__nav .v2h-header__list {
    flex-direction: column;
    margin: 0;
  }
}
.v2h-header .v2h-header__nav .v2h-header__list .v2h-header__list-item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .v2h-header .v2h-header__nav .v2h-header__list .v2h-header__list-item {
    display: block;
  }
}
.v2h-header .v2h-header__nav .v2h-header__list .v2h-header__list-item .v2h-header__list-link {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .v2h-header .v2h-header__nav .v2h-header__list .v2h-header__list-item .v2h-header__list-link {
    font-size: 20px;
    color: #4F4A44;
  }
}
.v2h-header .v2h-header__nav .v2h-header__list .v2h-header__list-item .v2h-header__list-link.has-accordion {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .v2h-header .v2h-header__nav .v2h-header__list .v2h-header__list-item .v2h-header__list-link.has-accordion {
    display: flex;
  }
}

.has-sub {
  position: relative;
}
.has-sub .v2h-header__accordion-icon {
  position: relative;
  display: block;
  justify-self: end;
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 768px) {
  .has-sub .v2h-header__accordion-icon {
    width: 20px;
    height: 20px;
  }
}
.has-sub .v2h-header__accordion-icon::before, .has-sub .v2h-header__accordion-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .has-sub .v2h-header__accordion-icon::before, .has-sub .v2h-header__accordion-icon::after {
    background: #4F4A44;
  }
}
.has-sub .v2h-header__accordion-icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .has-sub .v2h-header__accordion-icon::before {
    height: 2px;
  }
}
.has-sub .v2h-header__accordion-icon::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  transform-origin: center;
}
@media screen and (max-width: 768px) {
  .has-sub .v2h-header__accordion-icon::after {
    width: 2px;
  }
}
.has-sub .v2h-header__sublist {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(217, 217, 217, 0.8);
  padding: 20px;
  display: none;
  min-width: 150px;
}
@media screen and (max-width: 768px) {
  .has-sub .v2h-header__sublist {
    display: none;
    position: static;
    background: none;
  }
}
.has-sub .v2h-header__sublist .v2h-header__sublist-item a {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .has-sub .v2h-header__sublist .v2h-header__sublist-item a {
    font-size: 16px;
    color: #4F4A44;
  }
}
.has-sub .v2h-header__sublist .v2h-header__sublist-item a:before {
  box-sizing: content-box;
  display: inline-block;
  width: 12px;
  height: 1px;
  margin-top: -2px;
  margin-right: 4px;
  vertical-align: middle;
  content: "";
  border-top: 1px solid #ffffff;
}
@media screen and (max-width: 768px) {
  .has-sub .v2h-header__sublist .v2h-header__sublist-item a:before {
    width: 15px;
    height: 2px;
    margin-right: 8px;
    border-top: 2px solid #4F4A44;
  }
}
.has-sub:hover .v2h-header__sublist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .has-sub:hover .v2h-header__sublist {
    display: none;
  }
}

.has-sub:hover .v2h-header__accordion-icon::after {
  transform: translateX(-50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .has-sub:hover .v2h-header__accordion-icon::after {
    transform: translateX(-50%) rotate(0deg);
  }
}

@media screen and (max-width: 768px) {
  .v2h-header__list-parent {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .has-sub.open .v2h-header__sublist {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .has-sub.open .v2h-header__accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
  }
  .v2h-header__sublist {
    display: none;
    padding-left: 10px;
    margin-top: 10px;
  }
}
.v2h-header__hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .v2h-header__hamburger {
    height: 40px;
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    box-sizing: border-box;
    border: none;
    background: none;
    z-index: 999;
  }
}
.v2h-header__hamburger .v2h-header__hamburger-line {
  position: relative;
  width: 40px;
  height: 40px;
}
.v2h-header__hamburger .v2h-header__hamburger-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #918D88;
  transform: translate(-50%, -50%);
  transition: 0.4s;
}
.v2h-header__hamburger .v2h-header__hamburger-line span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(0deg);
}
.v2h-header__hamburger .v2h-header__hamburger-line span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}
.v2h-header__hamburger.is-open .v2h-header__hamburger-line span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.v2h-header__hamburger.is-open .v2h-header__hamburger-line span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body.is-fixed {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}

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

.pc-only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.v2h {
  font-family: "HondaGlobalFontJP-Regular";
  background: #ffffff;
  color: #4F4A44;
}
.v2h sup {
  font-size: 0.6em;
  position: relative;
  vertical-align: 50%;
}
.v2h .inner {
  max-width: 980px;
  width: calc(100% - 50px);
  margin: auto;
}
@media screen and (max-width: 768px) {
  .v2h .inner {
    max-width: none;
    width: 100%;
    padding: 0 25px;
  }
}
.v2h .title {
  font-family: "HondaGlobalFontJP-Bold";
  font-size: clamp(45px, 6.1224489796vw, 60px);
  line-height: 1.4;
  color: #4F4A44;
  padding-bottom: 70px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .v2h .title {
    font-size: 30px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
.v2h .title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 50px;
  height: 6px;
  background-color: #4F4A44;
}
@media screen and (max-width: 768px) {
  .v2h .title::after {
    width: 25px;
    height: 3px;
  }
}
.v2h .txt {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .v2h .txt {
    font-size: 16px;
  }
}
.v2h .btn .btn__link {
  display: block;
  font-family: "HondaGlobalFontJP-Bold";
  max-width: 300px;
  font-size: clamp(18px, 2.4489795918vw, 24px);
  text-align: center;
  color: #ffffff;
  border-radius: 999px;
  margin: 60px auto 0;
  padding: 10px 0;
  background: #47B36F;
}
@media screen and (max-width: 768px) {
  .v2h .btn .btn__link {
    font-size: 16px;
  }
}
.v2h .note {
  text-align: left;
  margin-top: 10px;
  line-height: 2;
}
.v2h .note .note__txt {
  font-family: "HondaGlobalFontJP-Light";
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
}
.v2h .mv {
  width: 100%;
  height: auto;
  margin-top: -60px;
}
@media screen and (max-width: 768px) {
  .v2h .mv {
    margin-top: -40px;
  }
}
.v2h .lead {
  padding: 60px 0 0;
}
@media screen and (max-width: 768px) {
  .v2h .lead {
    padding: 30px 0 0;
  }
}
.v2h .lead .title {
  font-size: clamp(52.5px, 7.1428571429vw, 70px);
  color: #47B36F;
}
@media screen and (max-width: 768px) {
  .v2h .lead .title {
    font-size: 24px;
  }
}
.v2h .lead .lead__txt {
  font-size: clamp(15px, 2.0408163265vw, 20px);
  line-height: 3;
  text-align: center;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .v2h .lead .lead__txt {
    font-size: 15px;
    line-height: 2;
  }
}
.v2h .model {
  padding: 100px 0 120px;
}
@media screen and (max-width: 768px) {
  .v2h .model {
    padding: 60px 0 70px;
  }
}
@media screen and (max-width: 768px) {
  .v2h .model .title {
    font-size: 22px;
  }
}
.v2h .model .model__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .v2h .model .model__list {
    margin: 0 -10px 40px;
    padding: 0;
  }
}
.v2h .model .model__list .model__list-item {
  width: 100%;
  border: solid 1px #918D88;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .v2h .model .model__list .model__list-item {
    margin: 0 10px 10px;
  }
}
.v2h .model .model__list .model__list-name {
  font-size: clamp(19.5px, 2.6530612245vw, 26px);
  text-align: center;
  padding-bottom: 20px;
  border-bottom: solid 1px #918D88;
}
@media screen and (max-width: 768px) {
  .v2h .model .model__list .model__list-name {
    font-size: 18px;
  }
}
.v2h .model .model__list .model__list-desc {
  font-size: clamp(18px, 2.4489795918vw, 24px);
  display: inline-grid;
  grid-template-columns: max-content auto;
  gap: 10px 0;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .v2h .model .model__list .model__list-desc {
    font-size: 16px;
  }
}
.v2h .model .model__list .model__list-desc dt {
  text-align-last: justify;
}
.v2h .model .model__list .model__list-desc dt::after {
  content: "：";
}
.v2h .model .model__list .model__list-desc dd {
  margin: 0;
}
.v2h .model .model__table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
}
@media screen and (max-width: 768px) {
  .v2h .model .model__table {
    font-size: 14px;
  }
}
.v2h .model .model__table th, .v2h .model .model__table td {
  border: solid 1px #918D88;
  padding: 10px 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .v2h .model .model__table th, .v2h .model .model__table td {
    padding: 10px;
  }
}
.v2h .model .model__table th:first-child, .v2h .model .model__table td:first-child {
  text-align: left;
}
.v2h .model .model__table th {
  width: 33.3333333333%;
  color: #ffffff;
  background: #47B36F;
}
.v2h .movie {
  width: 100%;
  padding: 100px 0 0;
}
.v2h .movie:hover {
  opacity: 0.7;
}
.v2h .movie .movie__img {
  position: relative;
}
.v2h .movie .movie__img img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.v2h .movie .movie__img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/icon_play.svg) 50% 50% no-repeat;
  pointer-events: none;
}
.v2h .movie .model__txt {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  text-align: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .v2h .movie .model__txt {
    font-size: 14px;
    line-height: 1.4;
  }
}
.v2h {
  /* モーダル全体 */
}
.v2h .modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.v2h .modal.is-open {
  opacity: 1;
  visibility: visible;
}
.v2h .modal__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
  cursor: pointer;
}
.v2h .modal__close {
  width: 30px;
  height: 30px;
  margin: 0 0 0 0;
  background-image: url(../img/parts_modal_close.png);
  background-repeat: no-repeat;
  background-size: 30px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.1s ease;
}
.v2h .modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(800px, 90vw);
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
}
.v2h .modal__content iframe {
  width: 100%;
  height: 100%;
  display: block;
}
.v2h .merit {
  padding: 120px 0 100px;
  background: #E9EFF8;
}
@media screen and (max-width: 768px) {
  .v2h .merit {
    padding: 60px 0;
  }
}
.v2h .merit .note {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .v2h .merit .note {
    text-align: left;
  }
}
.v2h .merit .merit__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .v2h .merit .merit__list {
    gap: 30px;
  }
}
.v2h .merit .merit__item {
  padding: 50px 90px;
  background: #D0E8D9;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .v2h .merit .merit__item {
    padding: 30px;
  }
}
.v2h .merit .merit__item .merit__item-title {
  font-family: "HondaGlobalFontJP-Bold";
  font-size: clamp(30px, 4.0816326531vw, 40px);
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .v2h .merit .merit__item .merit__item-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.v2h .merit .merit__item .merit__item-title span {
  display: inline-block;
  width: 55px;
  height: auto;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .v2h .merit .merit__item .merit__item-title span {
    width: 20px;
  }
}
.v2h .merit .merit__item .merit__item-img {
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .v2h .merit .merit__item .merit__item-img {
    margin-bottom: 25px;
  }
}
.v2h .merit .merit__case {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .v2h .merit .merit__case {
    margin-bottom: 25px;
  }
}
.v2h .merit .merit__case:last-child {
  margin: 0;
}
.v2h .merit .merit__case .merit__case-title {
  font-family: "HondaGlobalFontJP-Bold";
  font-size: clamp(22.5px, 3.0612244898vw, 30px);
  text-align: center;
  color: #47B36F;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .v2h .merit .merit__case .merit__case-title {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.v2h .merit .merit__case .merit__case-txt {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .v2h .merit .merit__case .merit__case-txt {
    font-size: 14px;
    text-align: left;
  }
}
.v2h .purchase {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .v2h .purchase {
    padding: 60px 0;
  }
}
.v2h .purchase .title {
  font-size: clamp(43.5px, 5.9183673469vw, 58px);
}
@media screen and (max-width: 768px) {
  .v2h .purchase .title {
    font-size: 30px;
  }
}
.v2h .purchase .title span {
  display: inline-block;
}
.v2h .purchase .purchase__img {
  width: 100%;
  height: auto;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .v2h .purchase .purchase__img {
    padding: 0;
  }
}
.v2h .purchase .purchase__txt {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .v2h .purchase .purchase__txt {
    font-size: 16px;
  }
}
.v2h .purchase .purchase__txt--large {
  font-family: "HondaGlobalFontJP-Bold";
  font-size: clamp(30px, 4.0816326531vw, 40px);
  text-align: center;
  margin: 60px 0 30px;
}
@media screen and (max-width: 768px) {
  .v2h .purchase .purchase__txt--large {
    font-size: 20px;
  }
}
.v2h .purchase .purchase__subsidy-txt--small {
  font-family: "HondaGlobalFontJP-Light";
  font-size: clamp(10.5px, 1.4285714286vw, 14px);
  text-align: left;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .v2h .purchase .purchase__subsidy-txt--small {
    font-size: 12px;
  }
}
.v2h .purchase .purchase__subsidy-txt--small::before {
  content: "・";
}
.v2h .purchase .purchase__subsidy {
  text-align: center;
  border: solid 2px #918D88;
  padding: 20px 20px 40px;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.v2h .purchase .purchase__subsidy .purchase__subsidy-txt {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .v2h .purchase .purchase__subsidy .purchase__subsidy-txt {
    font-size: 14px;
  }
}
.v2h .purchase .purchase__subsidy .purchase__subsidy-btn {
  display: block;
  width: 80%;
  max-width: 416px;
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  text-align: center;
  color: #ffffff;
  padding: 12px;
  background: #918D88;
}
@media screen and (max-width: 768px) {
  .v2h .purchase .purchase__subsidy .purchase__subsidy-btn {
    width: 100%;
    font-size: 14px;
  }
}
.v2h .purchase .purchase__note {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  text-align: left;
  margin-top: 10px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .v2h .purchase .purchase__note {
    font-size: 14px;
  }
}
.v2h .purchase .purchase__note .purchase__note-txt {
  padding-left: 1em;
  text-indent: -1em;
}
.v2h .point {
  padding: 100px 0 120px;
  background: #E9EFF8;
}
@media screen and (max-width: 768px) {
  .v2h .point {
    padding: 60px 0;
  }
}
.v2h .point__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.v2h .point__list .point__item:nth-child(even) {
  flex-direction: row-reverse;
}
.v2h .point__item {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .v2h .point__item {
    display: block;
  }
}
.v2h .point__img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .v2h .point__img {
    margin-bottom: 20px;
  }
}
.v2h .point__desc {
  width: 100%;
  text-align: left;
}
.v2h .point__block {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .v2h .point__block {
    text-align: center;
  }
}
.v2h .point__block:last-child {
  margin: 0;
}
.v2h .point__block .point__block-title {
  font-family: "HondaGlobalFontJP-Bold";
  font-size: clamp(22.5px, 3.0612244898vw, 30px);
  line-height: 1.3;
  color: #47B36F;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .v2h .point__block .point__block-title {
    font-size: 20px;
    margin-bottom: 14px;
  }
}
.v2h .point__block .point__block-txt {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .v2h .point__block .point__block-txt {
    font-size: 15px;
  }
}
.v2h .point__block .point__block-txt span {
  white-space: nowrap;
}
.v2h .point__note {
  font-family: "HondaGlobalFontJP-Light";
  font-size: clamp(12px, 1.6326530612vw, 16px);
  text-align: left;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .v2h .point__note {
    font-size: 12px;
    text-align: center;
  }
}
.v2h .point__note .point__note-item {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 10px;
}
.v2h .point__note .point__note-item:last-child {
  margin: 0;
}
.v2h .howto {
  padding: 100px 0 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .v2h .howto {
    padding: 60px 0 0;
  }
}
.v2h .howto .howto__img {
  width: 100%;
  max-width: 780px;
  height: auto;
  margin: 0 auto;
}
.v2h .howto .howto__txt {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .v2h .howto .howto__txt {
    font-size: 16px;
  }
}
.v2h .howto .howto__txt--large {
  font-family: "HondaGlobalFontJP-Bold";
  font-size: clamp(30px, 4.0816326531vw, 40px);
  margin: 40px 0 30px;
}
@media screen and (max-width: 768px) {
  .v2h .howto .howto__txt--large {
    font-size: 18px;
  }
}
.v2h .howto .howto__note {
  font-family: "HondaGlobalFontJP-Light";
  font-size: clamp(9px, 1.2244897959vw, 12px);
  line-height: 1.6;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .v2h .howto .howto__note {
    font-size: 12px;
  }
}
.v2h .howto-step {
  margin-top: 80px;
  padding: 40px 0 60px;
  background: #D0E8D9;
}
@media screen and (max-width: 768px) {
  .v2h .howto-step {
    margin-top: 60px;
    padding: 40px 0 60px;
  }
}
.v2h .howto-step .howto-step__title {
  font-family: "HondaGlobalFontJP-Bold";
  font-size: clamp(30px, 4.0816326531vw, 40px);
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .v2h .howto-step .howto-step__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.v2h .howto-step .howto-step__list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.v2h .howto-step .howto-step__item {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .v2h .howto-step .howto-step__item {
    flex-direction: column;
  }
}
.v2h .howto-step .howto-step__desc {
  flex: 1;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .v2h .howto-step .howto-step__desc {
    text-align: center;
  }
}
.v2h .howto-step .howto-step__desc .howto-step__desc-head {
  font-family: "HondaGlobalFontJP-Bold";
  font-size: clamp(22.5px, 3.0612244898vw, 30px);
  color: #47B36F;
  padding-bottom: 20px;
  border-bottom: solid 1px #918D88;
}
@media screen and (max-width: 768px) {
  .v2h .howto-step .howto-step__desc .howto-step__desc-head {
    font-size: 20px;
    border: none;
    padding: 20px;
  }
}
.v2h .howto-step .howto-step__desc .howto-step__desc-txt {
  font-size: clamp(12px, 1.6326530612vw, 16px);
  line-height: 1.8;
  padding-top: 20px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .v2h .howto-step .howto-step__desc .howto-step__desc-txt {
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-align: left;
  }
}
+ .v2h .howto-step .howto-step__desc .howto-step__desc-txt {
  margin-bottom: 10px;
}
.v2h .howto-step .howto-step__desc .howto-step__desc-txt span {
  display: block;
  font-family: "HondaGlobalFontJP-Bold";
}
.v2h .howto-step .howto-step__desc .howto-step__desc-note {
  font-family: "HondaGlobalFontJP-Light";
  font-size: clamp(9px, 1.2244897959vw, 12px);
  line-height: 2;
  margin: 20px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .v2h .howto-step .howto-step__desc .howto-step__desc-note {
    font-size: 14px;
  }
}
.v2h .howto-step .howto-step__img {
  flex: 1;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .v2h .howto-step .howto-step__img {
    order: -1;
  }
}
.v2h .install {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .v2h .install {
    padding: 60px 0;
  }
}
.v2h .install .install__txt {
  font-size: clamp(13.5px, 1.8367346939vw, 18px);
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .v2h .install .install__txt {
    font-size: 16px;
  }
}
.v2h .install .install__img {
  max-width: 980px;
  width: calc(100% - 50px);
  margin: 60px auto 30px;
}
@media screen and (max-width: 768px) {
  .v2h .install .install__img {
    width: 100%;
    margin: 40px auto 30px;
  }
}
.v2h .install .install__btn {
  position: relative;
  margin-left: auto;
  max-width: 258px;
  font-size: clamp(12px, 1.6326530612vw, 16px);
  line-height: 1;
  color: #ffffff;
  padding: 20px 25px;
  border: solid 1px #649285;
  background: #649285;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .v2h .install .install__btn {
    font-size: 16px;
  }
}
.v2h .install .install__btn::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 3px solid #D0E8D9;
}
.v2h .install .install__btn img {
  width: 30px;
  height: auto;
  display: block;
}

.slick-dots li {
  margin: 0 10px;
}
@media screen and (max-width: 768px) {
  .slick-dots li {
    margin: 0;
  }
}

.slick-dots li button {
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 50%;
  background: #ccc;
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}
.slick-dots li button::before {
  display: none;
}

.slick-dots li.slick-active button {
  background: #626262;
}/*# sourceMappingURL=main.css.map */