@charset "UTF-8";
/*-----------------------
reset
-----------------------*/
*:focus {
  outline: none;
}

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

html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

:where(body) {
  line-height: 1.5;
}

address {
  font-style: inherit;
}

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

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img) {
  max-width: 100%;
  border: none;
  vertical-align: bottom;
}

:where(ul, ol) {
  list-style: none;
}

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

:where(summary) {
  display: list-item;
}

:where(a) {
  border: none;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.2ex;
}

:where(a:link, a:active, a:visited, a:hover) {
  color: inherit;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  word-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(p) {
  margin: 0;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

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

:where(textarea) {
  resize: vertical;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

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

:where(caption, th, td) {
  text-align: left;
  vertical-align: middle;
  font-weight: normal;
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 300;
  font-display: swap;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-Light.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-display: swap;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-display: swap;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-display: swap;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-display: swap;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 900;
  font-display: swap;
  src: url(../font/Noto_Sans_JP/static/NotoSansJP-Black.ttf) format("truetype");
}
@font-face {
  font-family: "M PLUS 1p";
  font-weight: 400;
  font-display: swap;
  src: url(../font/M_PLUS_1p/MPLUS1p-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "M PLUS 1p";
  font-weight: 800;
  font-display: swap;
  src: url(../font/M_PLUS_1p/MPLUS1p-ExtraBold.ttf) format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-display: swap;
  src: url(../font/Roboto/Roboto-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-display: swap;
  src: url(../font/Roboto/Roboto-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-display: swap;
  src: url(../font/Roboto/Roboto-Bold.ttf) format("truetype");
}
/*color*/
/*mediaquery*/
/*mixin*/
/* function */
/*-----------------------
base
-----------------------*/
html {
  font-size: 62.5%;
  line-height: 1;
  margin-top: 0 !important;
}

body {
  position: relative;
  color: #000;
  letter-spacing: 0em;
  line-height: 1.6;
  width: 100%;
  font-size: clamp(1.4rem, 1.724137931vw, 2rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/*-----------------------
tag
-----------------------*/
section {
  padding: 7rem 0;
}

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

:where(a) {
  color: inherit;
  transition: 0.3s;
}
:where(a):hover {
  opacity: 0.8;
}

blockquote {
  font-size: 100%;
}

embed,
iframe,
object {
  max-width: 100%;
}

/*-----------------------
common
-----------------------*/
.inner {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

/* Top */
.mT10 {
  margin-top: 1rem;
}

.mT20 {
  margin-top: 2rem;
}

.mT30 {
  margin-top: 3rem;
}

.mT40 {
  margin-top: 4rem;
}

.mT50 {
  margin-top: 5rem;
}

.mT60 {
  margin-top: 6rem;
}

.mT70 {
  margin-top: 7rem;
}

.mT80 {
  margin-top: 8rem;
}

.mT90 {
  margin-top: 9rem;
}

.mT100 {
  margin-top: 10rem;
}

.mT110 {
  margin-top: 11rem;
}

.mT120 {
  margin-top: 12rem;
}

.mT130 {
  margin-top: 13rem;
}

.mT140 {
  margin-top: 14rem;
}

.mT150 {
  margin-top: 15rem;
}

.mT160 {
  margin-top: 16rem;
}

.mT170 {
  margin-top: 17rem;
}

.mT180 {
  margin-top: 18rem;
}

.mT190 {
  margin-top: 19rem;
}

.mT200 {
  margin-top: 20rem;
}

/* Bottom */
.mB10 {
  margin-bottom: 1rem;
}

.mB20 {
  margin-bottom: 2rem;
}

.mB30 {
  margin-bottom: 3rem;
}

.mB40 {
  margin-bottom: 4rem;
}

.mB50 {
  margin-bottom: 5rem;
}

.mB60 {
  margin-bottom: 6rem;
}

.mB70 {
  margin-bottom: 7rem;
}

.mB80 {
  margin-bottom: 8rem;
}

.mB90 {
  margin-bottom: 9rem;
}

.mB100 {
  margin-bottom: 10rem;
}

.mB110 {
  margin-bottom: 11rem;
}

.mB120 {
  margin-bottom: 12rem;
}

.mB130 {
  margin-bottom: 13rem;
}

.mB140 {
  margin-bottom: 14rem;
}

.mB150 {
  margin-bottom: 15rem;
}

.mB160 {
  margin-bottom: 16rem;
}

.mB170 {
  margin-bottom: 17rem;
}

.mB180 {
  margin-bottom: 18rem;
}

.mB190 {
  margin-bottom: 19rem;
}

.mB200 {
  margin-bottom: 20rem;
}

.sp {
  display: none;
}

.flex {
  display: flex;
}

.float--L {
  float: left;
}

.float--R {
  float: right;
}

/* font */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.en {
  font-family: "Roboto", sans-serif;
}

.weight--normal {
  font-weight: normal;
}

.weight--medium {
  font-weight: 500;
}

.weight--bold {
  font-weight: bold;
}

.font--small {
  font-size: 80%;
}

.txt--black {
  color: #000;
}

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

.txt--gray {
  color: #666666;
}

.txt--red {
  color: #d0280e;
}

.txt--red2 {
  color: #e22e13;
}

.txt--blue {
  color: #0b97e9;
}

.txt--yellow {
  color: #fdff3e;
}

.marker {
  text-decoration: underline;
  text-underline-offset: -0.2em;
  text-decoration-thickness: 0.4em;
  -webkit-text-decoration-color: #fdff3e;
          text-decoration-color: #fdff3e;
}

[data-bg-text] {
  display: inline-block;
  position: relative;
  z-index: 5;
  text-shadow: 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff), 0 0 var(--width, 10px) var(--color, #fff);
}
[data-bg-text]::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  font-weight: inherit;
}

/*
点はこれで text-emphasis: filled circle;
text-shadowも-webkit-text-strokeも影響を与えるので同じ効果を重ねられる
*/
.blue-stripe-bg {
  background: url(../img/blue-stripe-bg.png) no-repeat center/cover;
}

.splide .splide__track {
  overflow: visible;
}
.splide .splide__arrow {
  --arrow-position: calc(-4.5em - 1.5rem);
  width: 4.5em;
  height: auto;
  aspect-ratio: 1/1;
  background: none;
  transform: none;
  translate: 0 -100%;
  opacity: 1;
  transition: 0.3s;
}
.splide .splide__arrow svg {
  width: 100%;
  height: auto;
}
.splide .splide__arrow:hover {
  opacity: 0.8;
}
.splide .splide__arrow--prev {
  left: var(--arrow-position);
}
.splide .splide__arrow--next {
  right: var(--arrow-position);
}

:root {
  --btn-color: #000;
  --btn-color-txt: #fff;
}

.btn--right {
  text-align: right;
}
.btn--left {
  text-align: left;
}
.btn--center {
  text-align: center;
}

.btn--base {
  min-width: 25rem;
  padding: 1.5rem 5rem;
  background: var(--btn-color);
  color: var(--btn-color-txt);
  border: 1px solid var(--btn-color);
  font-size: 2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn--base.white {
  --btn-color: #fff;
  --btn-color-txt: #000;
}
.btn--base:hover {
  background: var(--btn-color-txt);
  color: var(--btn-color);
  border: 1px solid currentColor;
  opacity: 1;
}

.list {
  padding-left: 1em;
}
.list > li {
  display: list-item;
}
.list--dot > li {
  list-style-type: "・";
}
.list--order > li {
  list-style-type: decimal;
}
.list--tree > li {
  margin-bottom: 0;
  list-style-type: "├";
}
.list--tree > li:last-child {
  list-style-type: "└";
}

.accordion__wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
}
.accordion__item {
  --icon-padding-L: 5em;
  background: #fff;
  border: 2px solid #000;
}
.accordion__item.open .accordion__toggle::after, .accordion__item[open] .accordion__toggle::after {
  rotate: 0deg;
  translate: -50% -0.1rem;
}
.accordion__icon {
  display: inline-block;
  width: 2.5em;
  aspect-ratio: 1/1;
  background: #0b97e9;
  border: 2px solid #0b97e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1em;
  left: 1.5em;
}
.accordion__icon img {
  width: 0.8em;
}
.accordion__title {
  min-height: 4.5em;
  padding: 1.3em 4em;
  padding-left: var(--icon-padding-L);
  list-style: none;
  position: relative;
}
.accordion__title::-webkit-details-marker {
  display: none;
}
.accordion__title span {
  font-size: clamp(1.4rem, 2.0689655172vw, 2.4rem);
}
.accordion__toggle {
  width: 1.5em;
  aspect-ratio: 1/1;
  position: absolute;
  top: 1.5em;
  right: 2em;
}
.accordion__toggle::before, .accordion__toggle::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.accordion__toggle::after {
  rotate: 90deg;
}
.accordion__contents {
  min-height: 4.5em;
  padding: 1.3em;
  padding-left: var(--icon-padding-L);
  background: #fcfada;
  position: relative;
}
.accordion__contents .accordion__icon {
  background: #fff;
}

.tab__menu {
  display: inline-flex;
  position: relative;
}

.tab__btn {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, .1);
  border-bottom: none;
  cursor: pointer;
}
.tab__btn.active {
  background: rgba(0, 0, 0, .1);
}

.tab__line {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, .1);
  position: absolute;
  bottom: 0;
  left: 0;
}

.tab__indicator {
  background: #3b82f6;
  position: absolute;
  top: 0;
  bottom: 0;
  transition-duration: 200ms;
  transition-property: transform, width;
}

.tab__contents-wrap {
  border: 1px solid rgba(0, 0, 0, .1);
}

.tab__contents {
  padding: 1rem;
}
.tab__contents:not(.active) {
  display: none;
}

.slide-in {
  transition: 0.7s;
  opacity: 0;
  transform: translate(-10rem, 0);
}
.slide-in.anime-on {
  opacity: 1;
}
.slide-in.anime-on {
  transform: translate(0, 0);
}

.slide-in__wrap .slide-unit {
  transform: translate(-10rem, 0);
}
.slide-in__wrap.anime-on .slide-unit {
  transform: translate(0, 0);
}
.slide-in__wrap .slide-unit {
  transition: 0.7s;
}
.slide-in__wrap .slide-unit:nth-child(1) {
  transition-delay: 0s;
}
.slide-in__wrap .slide-unit:nth-child(2) {
  transition-delay: 0.2s;
}
.slide-in__wrap .slide-unit:nth-child(3) {
  transition-delay: 0.4s;
}
.slide-in__wrap .slide-unit:nth-child(4) {
  transition-delay: 0.6s;
}
.slide-in__wrap .slide-unit:nth-child(5) {
  transition-delay: 0.8s;
}
.slide-in__wrap .slide-unit:nth-child(6) {
  transition-delay: 1s;
}

.slide-in-clip {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.3s linear 0.7s;
}
.slide-in-clip.anime-on {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.slide-in-clip__wrap .slide-unit {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.3s linear 0.7s;
}
.slide-in-clip__wrap.anime-on .slide-unit {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.slide-in-clip__wrap .slide-unit:nth-child(1) {
  transition-delay: 0s;
}
.slide-in-clip__wrap .slide-unit:nth-child(2) {
  transition-delay: 0.5s;
}
.slide-in-clip__wrap .slide-unit:nth-child(3) {
  transition-delay: 1s;
}
.slide-in-clip__wrap .slide-unit:nth-child(4) {
  transition-delay: 1.5s;
}
.slide-in-clip__wrap .slide-unit:nth-child(5) {
  transition-delay: 2s;
}
.slide-in-clip__wrap .slide-unit:nth-child(6) {
  transition-delay: 2.5s;
}

.fade-up {
  display: block;
  transition: 1s;
  opacity: 0;
  transform: translate(0, 100px);
}
.fade-up.anime-on {
  opacity: 1;
}
.fade-up.anime-on {
  transform: translate(0, 0);
}

.fade-up__wrap .fade-unit {
  opacity: 0;
}
.fade-up__wrap.anime-on .fade-unit {
  opacity: 1;
}
.fade-up__wrap .fade-unit {
  transform: translate(0, 100px);
}
.fade-up__wrap.anime-on .fade-unit {
  transform: translate(0, 0);
}
.fade-up__wrap .fade-unit {
  display: inline-block;
  transition: 1s;
}
.fade-up__wrap .fade-unit:nth-child(1) {
  transition-delay: 0s;
}
.fade-up__wrap .fade-unit:nth-child(2) {
  transition-delay: 0.5s;
}
.fade-up__wrap .fade-unit:nth-child(3) {
  transition-delay: 1s;
}
.fade-up__wrap .fade-unit:nth-child(4) {
  transition-delay: 1.5s;
}
.fade-up__wrap .fade-unit:nth-child(5) {
  transition-delay: 2s;
}
.fade-up__wrap .fade-unit:nth-child(6) {
  transition-delay: 2.5s;
}
.fade-up__wrap .fade-unit:nth-child(7) {
  transition-delay: 3s;
}
.fade-up__wrap .fade-unit:nth-child(8) {
  transition-delay: 3.5s;
}
.fade-up__wrap .fade-unit:nth-child(9) {
  transition-delay: 4s;
}
.fade-up__wrap .fade-unit:nth-child(10) {
  transition-delay: 4.5s;
}
.fade-up__wrap .fade-unit:nth-child(11) {
  transition-delay: 5s;
}

@keyframes loop-x {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.svg-symbol {
  display: none;
}

.contents--flex {
  display: flex;
}
.contents--grid {
  display: grid;
}

.ds-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.ds-grid-2.inline {
  display: inline-grid;
}
.ds-grid-2--left {
  grid-column: 1;
  grid-row: 1;
}
.ds-grid-2--right {
  grid-column: 2;
  grid-row: 1;
}

.ds-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.ds-grid-3.inline {
  display: inline-grid;
}
.ds-grid-3--left {
  grid-column: 1;
  grid-row: 1;
}
.ds-grid-3--center {
  grid-column: 2;
  grid-row: 1;
}
.ds-grid-3--right {
  grid-column: 3;
  grid-row: 1;
}

.ds-grid-justifyItemsCenter {
  justify-items: center;
}

.ds-grid-alignItemsCenter {
  align-items: center;
}

.grid-layer {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.grid-layer--left, .grid-layer--right {
  grid-column: 1;
  grid-row: 1;
  width: 81.6%;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 898px;
}
.grid-layer--left.upper, .grid-layer--right.upper {
  z-index: 35;
}
.grid-layer--right {
  margin-top: 11rem;
  justify-self: flex-end;
}
.grid-layer--center {
  align-items: center;
}
.grid-layer--center .grid-layer--left,
.grid-layer--center .grid-layer--right {
  margin-top: 0;
}

.header {
  width: 100%;
  filter: drop-shadow(0 0 8px rgba(50, 48, 42, .05));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header .contents--flex {
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 0 0 1rem 1rem;
  overflow: hidden;
}
.header .inner {
  max-width: 148rem;
  position: relative;
}
.header__left {
  padding: 1em 0 1em min(2.7027027027vw, 4rem);
  font-size: 1.2rem;
  font-weight: normal;
  display: flex;
  align-items: center;
}
.header__logo {
  margin-right: min(2.027027027vw, 3rem);
}
.header__logo a {
  display: block;
}
.header__logo img {
  display: block;
  max-width: min(17.2297297297vw, 25.5rem);
  max-height: 8.8rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__right {
  align-self: stretch;
  padding: min(0.6756756757vw, 1rem);
  padding-bottom: min(0.9459459459vw, 1.4rem);
  display: flex;
  justify-content: flex-end;
  -moz-column-gap: min(0.6756756757vw, 1rem);
       column-gap: min(0.6756756757vw, 1rem);
}
.header__cv {
  --btn-shadow-distance: min(0.2702702703vw, 0.4rem);
  min-width: 12.3em;
  padding: 1em 0.7em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.7em;
  background: linear-gradient(162deg, var(--cv-color2, rgb(255, 173, 30)) 50%, var(--cv-color, #f99e00) 50%) no-repeat center/cover;
  border-radius: 0.6rem;
  box-shadow: 0 var(--btn-shadow-distance) rgb(212, 148, 37);
  font-size: 1.3rem;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.header__cv-icon {
  width: 2em;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.header__cv-balloonTop {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1em;
  background: #fdff3e;
  border-radius: 100em;
  color: #000;
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  translate: 0 -20%;
}
.header__cv-balloonTop::after {
  content: "";
  width: 0.9em;
  height: 0.5em;
  background: inherit;
  position: absolute;
  top: 100%;
  left: 50%;
  translate: -50% 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.header__cv-tellNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.27em;
       column-gap: 0.27em;
  font-size: clamp(1.4rem, 3.1034482759vw, 3.6rem);
  line-height: 1;
}
.header__cv-tellNumber .header__cv-icon {
  width: 0.86em;
}
.header__cv--line {
  --cv-color: #23c100;
}
.header__cv--tell {
  --cv-color: #23c100;
  --cv-color2: rgb(38, 208, 0);
  box-shadow: 0 var(--btn-shadow-distance) rgb(53, 164, 29);
  padding: 2em 1.6em 1em;
}
.header__board {
  padding-top: 1.5rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 100%;
  left: 0;
}
.header__board::before, .header__board::after {
  content: "";
  width: 0.6rem;
  aspect-ratio: 6/25;
  background: url(../img/header-board-wire.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  z-index: 2;
}
.header__board::before {
  left: 1.3rem;
}
.header__board::after {
  right: 1.3rem;
}
.header__board-clip {
  padding: 1.2rem 0;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
}
.header__board-inner {
  display: flex;
  align-items: center;
}
.header__board-title {
  flex-shrink: 0;
  margin-left: 1.4rem;
  margin-right: 0.8rem;
  padding: 0.3em 0.9em;
  background: #e22e13;
  border-radius: 100em;
  color: #fff;
  font-size: 1.2rem;
}
.header__board-loop {
  width: 16.56em;
  font-size: 1.6rem;
  white-space: nowrap;
  overflow: hidden;
}
.header__board-loop-text {
  display: flex;
}
.header__board-loop-text .loop-unit {
  padding-right: 1em;
  animation: loop-x 10s linear infinite;
}
.header__board .font--large1 {
  font-size: 1.5em;
}
.header__board .font--large2 {
  font-size: 1.25em;
}

/*
// メニューボタン
.g-menu__btn {
	width: 5rem;
	height: 5rem;
	background: none;
	border: 1px solid $black;
	border-radius: 0;
	transition: .3s;
	position: relative;
	cursor: pointer;
	.button-border {
		width: 80%;
		height: 2px;
		background: $black;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -1px);
		&.top {
			//top: 1px;
			top: calc(50% - 15px);
		}
		&.bottom {
			//top: calc(100% - 1px);
			top: calc(50% + 15px);
		}
	}

	&.menu-active {
		.button-border {
			height: 3px;
			background: transparent;
			transform: translate(-50%, -1px);
			&.top {
				background: $black;
				top: 50%;
				transform: translate(-50%, -1px)rotate(45deg);
			}
			&.bottom {
				background: $black;
				top: 50%;
				transform: translate(-50%, -1px)rotate(-45deg);
			}
		}
	}
}
// メニュー
#g-menu {
	@include sp {
		display: none;
		width: 100%;
		height: 100vh;
		height: 100dvh;
		padding: 10px 25px;
		background: rgba($black,.2);
		overflow-y: auto;
		overflow-x: hidden;
		overscroll-behavior-y: contain;
		position: absolute;
		top: 100%;
		left: 0;
		&.menu-active {
			display: block;
		}
	}
}
.g-menu {
	&__nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 0 80px;
		@include sp {
			display: block;
		}
		&-list {
			font-weight: bold;
			color: $black;
			font-size: 14px;
			line-height: 1.4;
			display: flex;
			align-items: center;
			justify-content: center;
			gap: 0 40px;
			@include sp {
				display: block;
			}
		}
		&-list-item {
			@include sp {
				padding: 14px 0;
			}
			a {
				&:hover {
				}
			}
		}
	}
}
*/

.footer .inner {
  padding: 5rem 0;
  text-align: center;
  font-size: clamp(1.4rem, 1.3793103448vw, 1.6rem);
}
.footer__logo {
  margin-bottom: 5.4rem;
}
.footer__logo img {
  min-width: 22.3rem;
  max-width: 30rem;
  max-height: 14rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.footer__slogan {
  margin-bottom: 1em;
  font-size: clamp(1.4rem, 1.724137931vw, 2rem);
  font-weight: bold;
}
.footer__nav {
  margin-top: 6rem;
  padding-top: 4rem;
  border-top: 1px solid #e1e1e1;
  line-height: 1;
  display: flex;
  justify-content: center;
}
.footer__nav li {
  padding: 0 1em;
}
.footer__nav li:not(:last-child) {
  border-right: 1px solid #000;
}
.footer__copyright {
  padding: 1em 0;
  background: #125ba2;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
}

/*============================
#privacy
============================*/
#privacy.contents {
  background-color: #f8f8f8;
  padding: 200px 0;
}
#privacy.contents h1 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
#privacy.contents .contents__bg {
  margin-top: 50px;
  background-color: white;
  border-radius: 15px;
  padding: 8.6206896552%;
}
#privacy.contents .contents__bg ul .bold {
  font-size: 1.1em;
  font-weight: bold;
}
#privacy.contents .contents__bg ul li {
  margin-top: 2em;
}
#privacy.contents .contents__bg ul .list--order li {
  margin-top: 0;
}

/*============================
#company
============================*/
#company.contents {
  background-color: #f8f8f8;
  padding: 200px 0;
}
#company.contents h1 {
  font-size: 34px;
  font-weight: bold;
  text-align: center;
}
#company.contents .contents__bg {
  margin-top: 50px;
  background-color: white;
  border-radius: 15px;
  padding: 8.6206896552%;
}
#company.contents .contents__bg dl {
  display: flex;
  border-bottom: 1px solid black;
}
#company.contents .contents__bg dl dt {
  width: 35%;
  padding: 24px;
  font-weight: bold;
}
#company.contents .contents__bg dl dd {
  padding: 24px 0;
}

h2 {
  font-size: clamp(1.4rem, 5.1724137931vw, 6rem);
  text-align: center;
}
h2 img {
  display: inline-block;
}

.mainv {
  width: 100%;
  aspect-ratio: 1600/1000;
  background: linear-gradient(135deg, #269fdd, #125aa5);
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  overflow-y: initial;
}
.mainv .inner {
  padding-top: 1px;
  padding-bottom: 5vw;
  position: relative;
  z-index: 2;
}
.mainv__bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.mainv__bg-product {
  width: 25.625%;
  aspect-ratio: 410/797;
  position: absolute;
  bottom: 2.875%;
  right: 3.75%;
}
.mainv__title {
  margin-top: 14.5625vw;
  filter: drop-shadow(0.5rem 0.5rem 0 rgba(0, 0, 0, .2));
  transform: translateZ(0);
  position: relative;
  z-index: 5;
}
.mainv__title-flag {
  display: inline-block;
  padding: 0.5em 1em;
  padding-right: 1.9em;
  background: url(../img/mainv-title-flag.png) no-repeat center/100% 100%;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.4137931034vw, 2.8rem);
  color: #fff;
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  transform: skewY(-6deg);
  transform-origin: left bottom;
}
.mainv__title-flag-txt {
  display: inline-block;
}
.mainv__title-main {
  display: block;
}
.mainv__title--typeB {
  margin-top: 11.375vw;
}
.mainv__title--typeB .mainv__title-flag {
  top: 1.8em;
}
.mainv__title--typeC {
  margin-top: 8.5625vw;
}
.mainv__appeals {
  margin-top: -2.5%;
  margin-bottom: 5.1724137931%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transform: skewY(-5.8deg) translateZ(0);
  filter: drop-shadow(0.5rem 0.5rem 0 rgba(0, 0, 0, .2));
}
.mainv__appeals--typeB {
  margin-top: -1.724137931%;
}
.mainv__appeals--typeC {
  margin-top: -2.9310344828%;
}
.mainv__appeal {
  --shadow-width: min(1.0344827586vw, 1.2rem);
  height: min(9.0517241379vw, 10.5rem);
  margin-right: -1.9%;
  background: #fdff3e;
  box-shadow: inset 0 0 0 var(--shadow-width) #fff;
  border-radius: 20em;
  line-height: 1.2;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mainv__appeal::before, .mainv__appeal::after {
  content: "";
  width: calc(100% - var(--shadow-width) * 2);
  height: calc(100% - var(--shadow-width) * 2);
  border: 2px dotted #000;
  border-radius: 20em;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  clip-path: polygon(0 0, min(3.4482758621vw, 4rem) 0, min(3.4482758621vw, 4rem) 100%, 0 100%);
}
.mainv__appeal::after {
  scale: -1;
}
.mainv__appeal-value {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mainv__appeal-title {
  display: block;
  margin-right: 0.4em;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.mainv__appeal .line1 {
  font-size: clamp(1.4rem, 3.0172413793vw, 3.5rem);
}
.mainv__appeal .line2 {
  text-indent: -0.3em;
  font-size: clamp(1.4rem, 2.0689655172vw, 2.4rem);
}
.mainv__appeal .line3 {
  font-size: clamp(1.4rem, 1.724137931vw, 2rem);
  line-height: 1;
}
.mainv__appeal .num {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 7.4137931034vw, 8.6rem);
  color: #e22e13;
  line-height: 1;
}
.mainv__appeal .unit {
  margin-left: 0.1em;
  font-size: clamp(1.4rem, 3.7931034483vw, 4.4rem);
}
.mainv__appeal--type1 .unit {
  margin-right: 0.2em;
}
.mainv__appeal--type2 .unit {
  margin-right: -0.5em;
}
.mainv__appeal--pro {
  margin-right: 0;
}
.mainv__appeal--pro .line2 {
  margin-right: 0.8em;
  text-indent: 0;
  font-size: clamp(1.4rem, 1.8103448276vw, 2.1rem);
}
.mainv__appeal--pro .appeal-txt {
  font-size: clamp(1.4rem, 2.0689655172vw, 2.4rem);
  line-height: 1.1;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.mainv__appeal--pro .appeal-txt .size--18 {
  font-size: clamp(1.4rem, 1.5517241379vw, 1.8rem);
}
.mainv__appeal--pro .appeal-txt .txt--red2 {
  font-size: clamp(1.4rem, 3.4482758621vw, 4rem);
  letter-spacing: -0.05em;
}
.mainv__appeal--discount .mainv__appeal-title, .mainv__appeal--warranty .mainv__appeal-title {
  margin-right: 0;
}
.mainv__appeal--discount .line2, .mainv__appeal--warranty .line2 {
  text-indent: 0;
  font-size: clamp(1.4rem, 1.9827586207vw, 2.3rem);
  line-height: 1;
}
.mainv__appeal--discount .super, .mainv__appeal--warranty .super {
  display: block;
  font-size: clamp(1rem, 1.0344827586vw, 1.2rem);
}
.mainv__appeal--discount .num, .mainv__appeal--warranty .num {
  letter-spacing: -0.05em;
}
.mainv__appeal--discount .unit {
  line-height: 1;
}
.mainv__appeal--discount .off {
  display: block;
  font-size: clamp(1rem, 1.6379310345vw, 1.9rem);
}
.mainv__appeal--warranty .super {
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
}
.mainv__appeal--inspection .mainv__appeal-title {
  margin-right: 0.2em;
}
.mainv__appeal--inspection .line1 {
  font-size: clamp(1.4rem, 3.0172413793vw, 3.5rem);
  line-height: 1;
}
.mainv__appeal--inspection .super {
  display: block;
  font-size: clamp(1rem, 1.3793103448vw, 1.6rem);
}
.mainv__appeal--inspection .unit {
  margin-left: 0;
  margin-right: 0.3em;
}
.mainv__text {
  width: 74.1379310345%;
  max-width: 86rem;
}
.mainv__message {
  --width: 6px;
  margin-top: -1em;
  text-align: right;
  font-size: clamp(1.4rem, 2.0689655172vw, 2.4rem);
  font-weight: bold;
}
.mainv__maker {
  margin-top: 3rem;
  padding: 2rem 1em 2.7rem;
  background: #fff;
  border: 2px solid #000;
  position: relative;
}
.mainv__maker-title {
  padding: 0.1em 0.35em;
  background: #000;
  font-size: clamp(1.4rem, 1.5517241379vw, 1.8rem);
  font-weight: bold;
  color: #fff;
  transform: skewY(-6deg);
  transform-origin: left bottom;
  position: absolute;
  bottom: calc(100% - 1.5em);
  left: -1.1em;
  z-index: 5;
}
.mainv__maker-list {
  width: 84.1911764706%;
  max-width: 82.4rem;
  margin: 0 auto;
}
.mainv__maker-other {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  right: 1em;
  bottom: 1em;
}
.mainv__title-guide {
  position: absolute;
  z-index: -1;
}
.mainv__title-guide img {
  width: 100%;
}

.popup-banner {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
}
.popup-banner a:hover {
  transform: none;
}
.popup-banner__item {
  display: none;
  position: relative;
}
.popup-banner__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  translate: 50% -50%;
  cursor: pointer;
}
.popup-banner__body {
  display: block;
  max-width: 30rem;
  position: relative;
}
.popup-banner__body img {
  display: block;
  width: 100%;
  height: auto;
}
.popup-banner__body-btn {
  width: 100%;
  aspect-ratio: 600/120;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.lpLinks {
  padding: 6rem 0;
}
.lpLinks ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.6rem 2rem;
}
.lpLinks + .banner {
  padding-top: 0;
}

.banner {
  padding: 6rem 0;
}
.banner__item {
  display: block;
}
.banner__item + .banner__item {
  margin-top: 1.5rem;
}
.banner__item img {
  width: 100%;
}

.troubles {
  background: url(../img/troubles-bg.webp) no-repeat center/cover;
  position: relative;
}
.troubles .inner {
  width: 100%;
}
.troubles__title img {
  width: min(74.6551724138vw, 86.6rem);
}
.troubles__board {
  margin-top: 1.8rem;
}
.troubles__board img {
  margin: 0 auto;
}
.troubles__band {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  translate: 0 50%;
}
.troubles__band img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1920px;
}

.repair {
  padding-top: 9.375vw;
  padding-bottom: 10rem;
  background: url(../img/blue-stripe-bg.png) no-repeat center/cover;
}
.repair__title {
  margin-bottom: 4rem;
}
.repair__title img {
  width: min(37.7586206897vw, 43.8rem);
}
.repair__list {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.repair__item {
  background: #fff;
  border-radius: var(--radius, 1rem);
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, .1);
  position: relative;
}
.repair__item-title {
  min-height: 2.14em;
  background: #0b97e9;
  border-radius: var(--radius, 1rem) var(--radius, 1rem) 0 0;
  text-align: center;
  color: #fff;
  font-size: clamp(1.4rem, 2.4137931034vw, 2.8rem);
  font-weight: bold;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.repair__item-title::before {
  content: "";
  width: 1.7em;
  aspect-ratio: 48/45;
  background: url(../img/repair-item-ribbon.svg) no-repeat center/contain;
  position: absolute;
  top: -0.357em;
  left: 0.71em;
}
.repair__item-content {
  border-radius: 0 0 var(--radius, 1rem) var(--radius, 1rem);
  display: grid;
  grid-template-columns: 1fr 31.8584070796%;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  overflow: hidden;
}
.repair__item-text {
  padding-left: 8%;
  font-weight: bold;
}
.repair__item-text .item {
  display: grid;
  grid-template-columns: 3.65em 1fr;
  -moz-column-gap: 0.65em;
       column-gap: 0.65em;
  align-items: center;
}
.repair__item-text .item + .item {
  margin-top: 1em;
}
.repair__item-text .item dt {
  padding: 0.14em 0.5em;
  background: var(--item-color, #000);
  border-radius: 100em;
  font-size: clamp(1.4rem, 1.3793103448vw, 1.6rem);
  text-align: center;
  color: #fff;
}
.repair__item-text .item dd {
  color: var(--item-color, #000);
}
.repair__item-text .item--red {
  --item-color: #e22e13;
}
.repair__item-text .item--red dd {
  font-size: clamp(1.4rem, 1.5517241379vw, 1.8rem);
}
.repair__item-text .item--red .price {
  font-size: clamp(1.4rem, 3.4482758621vw, 4rem);
  line-height: 1;
}
.repair__payment {
  margin-top: 10rem;
}
.repair__payment-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.repair__payment-title {
  text-align: left;
  position: relative;
  z-index: 2;
}
.repair__payment-title img {
  width: min(32.5862068966vw, 37.8rem);
}
.repair__payment-title-sub {
  width: min(8.6206896552vw, 10rem);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  translate: -28% -77%;
}
.repair__payment-support {
  margin-top: 3rem;
  padding: 2.5862068966% 4.3103448276%;
  background: #fff;
  border: 2px solid #000;
  grid-template-columns: auto minmax(63.6363636364%, 67.2rem);
  display: grid;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.repair__payment-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.repair__payment-brand img {
  max-width: 8.2rem;
  max-height: 5.2rem;
}
.repair__payment-brand [alt=Mastercard] {
  max-height: 4.2rem;
}

.cta {
  padding: 6rem 0;
  background: linear-gradient(90deg, #269fdd, #125aa5);
}
.cta__txt1 {
  display: inline-block;
}
.cta__txt2 {
  display: inline-block;
  width: 71.6379310345%;
  margin-top: 1.5rem;
}
.cta__title--inLogo {
  margin-bottom: 0.7em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  font-size: clamp(1.4rem, 2.5862068966vw, 3rem);
}
.cta__title--inLogo .line1 img,
.cta__title--inLogo .line2 img {
  height: 1.1em;
  margin: 0 auto;
}
.cta__title--inLogo .logo {
  max-width: 8.23em;
  max-height: 2.67em;
  margin: 0 0.5em;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__title-main {
  display: inline-block;
}
.cta__caution {
  max-width: 83rem;
  margin: 1.4em auto 1.1em;
  padding: 1rem;
  border: 1px solid #fdff3e;
  border-radius: 0.6rem;
  font-size: clamp(1.4rem, 1.5517241379vw, 1.8rem);
  font-weight: bold;
  color: #fdff3e;
  line-height: 1.3888888889;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.cta__caution-icon {
  flex-shrink: 0;
  width: 1.44em;
}
.cta__cvWrap {
  position: relative;
  z-index: 2;
}
.cta__cvWrap--noBeforeCaution {
  margin-top: 4rem;
}
.cta__lion {
  width: min(21.5517241379vw, 25rem);
  aspect-ratio: 250/196;
  position: absolute;
  left: 0;
  bottom: 100%;
  z-index: -1;
  translate: -47.6% 15.8163265306%;
}
.cta__lion--arm {
  z-index: 5;
}
.cta__lion-arm {
  width: 17.6%;
  position: absolute;
  top: 66.5%;
  left: 48.4%;
}
.cta__cvGrid {
  margin-top: 4rem;
  padding: 1rem 1rem 1.6rem;
  background: #fff;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cta__cvGrid--cv2 {
  margin-top: 2rem;
  grid-template-columns: 60.5263157895% 1fr;
}
.cta__cv {
  --btn-shadow-distance: .6rem;
  padding: 1em 0.7em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.54em;
  background: var(--cv-color, #f99e00);
  border-radius: 0.6rem;
  box-shadow: 0 var(--btn-shadow-distance) rgb(212, 148, 37);
  font-size: clamp(1.4rem, 1.8965517241vw, 2.2rem);
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
}
.cta__cv-icon {
  width: 1.8em;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__cv-balloonTop {
  width: 84.2105263158%;
  margin: 0 auto;
  padding: 0 0.5em;
  background: #fdff3e;
  border-radius: 100em;
  color: #000;
  font-size: clamp(1.4rem, 2.0689655172vw, 2.4rem);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  translate: 0 -50%;
}
.cta__cv-balloonTop::after {
  content: "";
  width: 0.9em;
  height: 0.5em;
  background: inherit;
  position: absolute;
  top: 98%;
  left: 50%;
  translate: -50% 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.cta__cv-tellNumber {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.35em;
       column-gap: 0.35em;
  font-size: clamp(1.4rem, 5.3448275862vw, 6.2rem);
  line-height: 1;
  translate: 0 0.137em;
}
.cta__cv-tellNumber .cta__cv-icon {
  width: 0.82em;
}
.cta__cv--col2 {
  grid-column: span 2;
  flex-direction: row;
  -moz-column-gap: 0.35em;
       column-gap: 0.35em;
  font-size: clamp(1.4rem, 3.4482758621vw, 4rem);
}
.cta__cv--col2 .cta__cv-icon {
  width: 1.5em;
}
.cta__cv--line {
  --cv-color: #23c100;
  box-shadow: 0 var(--btn-shadow-distance) rgb(53, 164, 29);
}
.cta__cv--tell {
  --cv-color: #e22e13;
  grid-column: span 2;
  box-shadow: 0 var(--btn-shadow-distance) rgb(189, 73, 56);
  padding: 1em;
}
.cta__cv2 {
  --btn-shadow-distance: .6rem;
  padding: 1em 0.7em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.54em;
  background: linear-gradient(170deg, var(--cv-color2, rgb(255, 173, 30)) 50%, var(--cv-color, #f99e00) 50%) no-repeat center/cover;
  border-radius: 0.6rem;
  box-shadow: 0 var(--btn-shadow-distance) rgb(212, 148, 37);
  font-size: clamp(1.4rem, 1.8965517241vw, 2.2rem);
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.cta__cv2-icon {
  width: 1.8em;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__cv2-balloonTop {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1em;
  background: #fdff3e;
  border-radius: 100em;
  color: #000;
  font-size: clamp(1.4rem, 2.0689655172vw, 2.4rem);
  line-height: 1.7;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  translate: 0 -50%;
}
.cta__cv2-balloonTop::after {
  content: "";
  width: 0.9em;
  height: 0.5em;
  background: inherit;
  position: absolute;
  top: 98%;
  left: 50%;
  translate: -50% 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.cta__cv2--tell {
  --cv-color: #23c100;
  --cv-color2: rgb(38, 208, 0);
  box-shadow: 0 var(--btn-shadow-distance) rgb(53, 164, 29);
  padding: 1.2em 0.7em 0.8em;
  padding-right: 3em;
  flex-direction: row;
  -moz-column-gap: 0.55em;
       column-gap: 0.55em;
  font-size: clamp(1.4rem, 3.4482758621vw, 4rem);
}
.cta__cv2--tell .cta__cv2-icon {
  width: 1.3em;
}
.cta__cv2--tell .free {
  width: 3.625em;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  font-size: 0.6em;
  color: var(--cv-color, #f99e00);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0.78em;
  translate: 0 -40%;
}
.cta__cv2--lpLink {
  padding: 1rem 1em;
  padding-right: 1.8em;
  flex-direction: row;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  position: relative;
}
.cta__cv2--lpLink .cta__cv2-lion {
  width: auto;
  height: 3.77em;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta__cv2--lpLink .cta__cv2-linkTitle {
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 1.9em;
}
.cta__cv2--lpLink .cta__cv2-arrow {
  flex-shrink: 0;
  width: 1.72em;
  min-width: 2rem;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 1em;
}
.cta__cv2--lpLink .cta__cv2-arrow::after {
  content: "";
  width: 1.6rem;
  aspect-ratio: 16/9;
  background-color: var(--cv-color, #f99e00);
  -webkit-mask-image: url(../img/arrow-down.svg);
          mask-image: url(../img/arrow-down.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  translate: 0 16%;
}
.cta__cv2--breakdown {
  --cv-color: #e22e13;
  --cv-color2: rgb(238, 77, 53);
  box-shadow: 0 var(--btn-shadow-distance) rgb(189, 73, 56);
}
.cta__cv2--replacement {
  --cv-color: #0b97e9;
  --cv-color2: rgb(20, 161, 244);
  box-shadow: 0 var(--btn-shadow-distance) rgb(48, 141, 196);
}
.cta__line {
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.5em auto 0;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1.4rem, 1.8965517241vw, 2.2rem);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  position: relative;
}
.cta__line::after {
  content: "";
  width: 0.6rem;
  margin-top: 0.1em;
  aspect-ratio: 6/12;
  background: url(../img/step-arrow.png) no-repeat center/contain;
  filter: brightness(0) invert(1);
}
.cta__line-icon {
  width: 1.1em;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}

.reason {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background: url(../img/reason-bg.webp) no-repeat center/cover;
}
.reason__title {
  margin-bottom: 4rem;
}
.reason__title img {
  width: min(66.3793103448vw, 77rem);
}
.reason__item {
  max-width: 104rem;
  min-height: 24rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, .1);
  display: grid;
  grid-template-columns: 1fr 33.6538461538%;
  align-items: center;
  position: relative;
}
.reason__item + .reason__item {
  margin-top: 3rem;
}
.reason__item-number {
  width: 6.15em;
  aspect-ratio: 160/70;
  padding-top: 0.53em;
  padding-left: 0.65em;
  background: #0b97e9;
  border-radius: 1rem 0 0 0;
  font-size: clamp(1.4rem, 2.2413793103vw, 2.6rem);
  font-weight: bold;
  color: #fff;
  line-height: 1;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.reason__item-number img {
  width: auto;
  height: 0.846em;
}
.reason__item-content {
  padding: 1rem 11.5942028986%;
  padding-right: 1rem;
  line-height: 2;
}
.reason__item-img {
  justify-self: center;
  max-width: 80%;
}
.reason__item-title {
  margin-bottom: 0.85em;
  font-size: clamp(1.4rem, 2.9310344828vw, 3.4rem);
  color: #0b97e9;
  font-weight: bold;
  line-height: 1.1;
}
.reason__item:nth-child(even) {
  margin-left: auto;
}
.reason__item:nth-child(3) .reason__item-img img {
  margin-top: -2.6819923372%;
  margin-bottom: -8.0459770115%;
}

.flow {
  padding-top: 5rem;
  padding-bottom: 12rem;
  background: url(../img/flow-bg.png) no-repeat center/cover;
}
.flow__title {
  margin-bottom: 6rem;
}
.flow__title img {
  width: min(37.0689655172vw, 43rem);
}
.flow__item {
  display: grid;
  grid-template-columns: 11rem 1fr;
  -moz-column-gap: 2.2rem;
       column-gap: 2.2rem;
  position: relative;
}
.flow__item-number {
  font-size: clamp(1.4rem, 2.5862068966vw, 3rem);
  font-weight: bold;
  color: #fff;
  line-height: 1;
  position: relative;
}
.flow__item-number::before {
  content: "";
  width: 0.4rem;
  height: 100%;
  background: #0b97e9;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.flow__item-number-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.flow__item-number-circle::before {
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  background: #0b97e9;
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px #0b97e9, inset 0 0 0 6px #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
.flow__item-number-circle img {
  width: auto;
  height: 0.83em;
}
.flow__item-content {
  line-height: 2;
  padding-bottom: 7.5rem;
}
.flow__item-title {
  margin-bottom: 0.7em;
  font-size: clamp(1.4rem, 2.9310344828vw, 3.4rem);
  font-weight: bold;
  color: #0b97e9;
  line-height: 1.1;
}
.flow__item .note {
  font-size: 0.8em;
}
.flow__item .cta__cvGrid {
  padding: 0;
  background: none;
}
.flow__item .cta__cv {
  font-size: clamp(1.4rem, 1.724137931vw, 2rem);
}
.flow__item .cta__cv-balloonTop {
  font-size: clamp(1.4rem, 1.8103448276vw, 2.1rem);
}
.flow__item .cta__cv-tellNumber {
  font-size: clamp(1.4rem, 4.8275862069vw, 5.6rem);
}
.flow__item .cta__cv--col2 {
  font-size: clamp(1.4rem, 3.1034482759vw, 3.6rem);
}
.flow__item .repair__payment-support {
  line-height: 1.4;
}
.flow__item:last-child .flow__item-number::before {
  content: none;
}
.flow__item:last-child .flow__item-content {
  padding-bottom: 0;
}

.support {
  margin-top: 6rem;
}
.support__title {
  margin-bottom: 4rem;
}
.support__title img {
  width: min(26.8103448276vw, 31.1rem);
}
.support__area {
  display: grid;
  grid-template-columns: 50% 1fr;
  -moz-column-gap: 4.3103448276%;
       column-gap: 4.3103448276%;
}
.support__area-map {
  position: relative;
}
.support__area-map-img {
  width: 100%;
  aspect-ratio: 581/411;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, .1);
}
.support__area-map-time {
  width: 12.27em;
  font-size: clamp(1.4rem, 1.8965517241vw, 2.2rem);
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 0.77em;
  left: -1em;
}
.support__area-map-time img {
  width: 100%;
}
.support__area-title {
  margin-top: 3rem;
  margin-bottom: 1em;
  font-size: clamp(1.4rem, 2.9310344828vw, 3.4rem);
  line-height: 1.2;
  font-weight: bold;
}
.support__area-title .inline-block {
  display: inline-block;
}
.support__area-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75em;
  line-height: 1.4;
  word-break: break-all;
}
.support__area-list li {
  padding-left: 1.5em;
  padding-bottom: 0.75em;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  text-indent: -1.5em;
}
.support__area-list li::before {
  content: "";
  display: inline-block;
  width: 1em;
  margin-right: 0.5em;
  aspect-ratio: 20/28;
  background: url(../img/icon-map-pin.png) no-repeat center/contain;
  vertical-align: text-bottom;
}

.voice {
  padding-top: 8rem;
  padding-bottom: 12rem;
  background: url(../img/voice-bg-top.webp) repeat-x center top/auto 4.6rem, url(../img/voice-bg-bottom.webp) repeat-x center bottom/auto 4.6rem, url(../img/voice-bg-board.webp) no-repeat center/cover;
}
.voice__title {
  margin-bottom: 5rem;
}
.voice__title img {
  width: min(73.1034482759vw, 84.8rem);
}
.voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.voice__item {
  position: relative;
}
.voice__item::before {
  content: "";
  width: 3.5rem;
  aspect-ratio: 35/41;
  background: url(../img/board-pin.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  translate: -50% -1.5rem;
}
.voice__item-shadow {
  height: 100%;
  filter: drop-shadow(1rem 1rem 0 rgba(0, 0, 0, .1));
}
.voice__item-board {
  --distance: 4rem;
  --radius: 1rem;
  height: 100%;
  padding: 13.6612021858% 8.1967213115%;
  background: #fff;
  border-radius: var(--radius);
  clip-path: polygon(0 0, calc(100% - var(--distance)) 0, 100% var(--distance), 100% 100%, 0 100%);
}
.voice__item-board::before {
  content: "";
  width: var(--distance);
  aspect-ratio: 1/1;
  background: #e1e1e1;
  border-radius: 0 0 0 var(--radius);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.voice__item-title {
  margin-bottom: 0.5em;
  color: #0b97e9;
  font-weight: bold;
  font-size: clamp(1.4rem, 2.2413793103vw, 2.6rem);
}
.voice__item-name {
  margin-bottom: 1em;
  display: grid;
  grid-template-columns: 2.5em 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  font-size: clamp(1.4rem, 1.3793103448vw, 1.6rem);
  color: #666666;
  font-weight: normal;
}
.voice__item-content {
  font-size: clamp(1.4rem, 1.5517241379vw, 1.8rem);
  font-weight: normal;
  line-height: 2;
}

.faq {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background: url(../img/blue-stripe-bg.png) no-repeat center/cover;
}
.faq__title {
  margin-bottom: 4rem;
}
.faq__title img {
  width: min(36.4655172414vw, 42.3rem);
}

.products {
  padding-top: 5rem;
  padding-bottom: 10rem;
  background: url(../img/products-bg.webp) no-repeat center top/cover;
  overflow: hidden;
}
.products__title {
  margin-bottom: 4rem;
}
.products__title :where(img) {
  width: min(82.4137931034vw, 95.6rem);
}
.products__title-balloon {
  width: min(35.3448275862vw, 41rem);
  margin-bottom: 1.2rem;
}
.products__group + .products__group {
  margin-top: 9rem;
}
.products__group-head, .products__group-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.products__group-head .note, .products__group-bottom .note {
  font-size: clamp(1.4rem, 1.3793103448vw, 1.6rem);
}
.products__group-title {
  margin-bottom: 0.5em;
  font-size: clamp(1.4rem, 3.4482758621vw, 4rem);
}
.products__group-title img {
  height: 1.35em;
}
.products__group .splide .product {
  width: min(31.5517241379vw, 36.6rem);
}

.product {
  background: #fff;
  border: 2px solid #000;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, .1);
  position: relative;
}
.product__main {
  padding: 6.8306010929% 8.1967213115%;
  position: relative;
  z-index: 2;
}
.product__img {
  width: 33.606557377%;
  position: absolute;
  top: 0.7rem;
  right: 3.825136612%;
  z-index: -1;
}
.product__head {
  margin-bottom: 2rem;
}
.product__maker {
  max-width: 11rem;
  max-height: 4rem;
  margin-bottom: 1.2rem;
}
.product__name {
  margin-bottom: 1.2rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.1;
  font-weight: bold;
  font-size: clamp(1.4rem, 3.4482758621vw, 4rem);
}
.product__tags {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.2rem, 1.2068965517vw, 1.4rem);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.1rem;
}
.product__tags li {
  width: 6.36em;
  padding: 0.5em;
  background: #000;
  color: #fff;
}
.product__prices {
  position: relative;
}
.product__price {
  font-weight: bold;
  line-height: 1.1;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  position: relative;
}
.product__price::before {
  width: 0.9em;
  aspect-ratio: 18/29;
  position: absolute;
  right: 100%;
  bottom: 100%;
  translate: -25% 10%;
}
.product__price + .product__price {
  margin-top: 1rem;
}
.product__price dt {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.2rem, 1.2068965517vw, 1.4rem);
}
.product__price dd {
  font-size: clamp(1.4rem, 2.2413793103vw, 2.6rem);
}
.product__price-taxIncluded {
  font-size: clamp(1.4rem, 1.2068965517vw, 1.4rem);
  font-weight: normal;
}
.product__price-taxIncluded .en {
  font-weight: bold;
}
.product__price .price--strikethrough {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.product__price--special::before {
  content: "";
  background: url(../img/price-down-arrow.png) no-repeat center/contain;
}
.product__price--effective {
  margin-top: 1rem;
  display: block;
}
.product__price--effective::before {
  content: "";
  background: url(../img/price-down-arrow-yellow.png) no-repeat center/contain;
}
.product__price--effective dt {
  margin-bottom: 0;
  padding: 0.3em 1.17em;
  background: #ffa200;
  border-radius: 10em;
  color: #fff;
  font-size: clamp(1.4rem, 1.3793103448vw, 1.6rem);
}
.product__price--effective dd {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.4rem, 6.2931034483vw, 7.3rem);
  line-height: 1;
}
.product__price--effective dd .value {
  background: linear-gradient(0deg, #dc0000, #ffa200);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product__price--effective .product__price-taxIncluded {
  color: #e31e00;
  text-align: right;
}
.product__price--effective .product__price-taxIncluded .value {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
}
.product__price--dummy dt::before,
.product__price--dummy dd::before,
.product__price--dummy .product__price-taxIncluded::before {
  content: " ";
  display: inline-block;
  width: 0;
  height: 100%;
  visibility: hidden;
}
.product__price--open + .product__price--special::before {
  content: none;
}
.product__discount {
  padding: 3.9735099338%;
  aspect-ratio: 1/1;
  background: linear-gradient(0deg, #125ba2, #269fdd);
  border-radius: 1rem;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 7.6923076923% 26.9230769231%;
}
.product__discount-position {
  position: relative;
}
.product__discount-balloon {
  margin-bottom: 1rem;
  padding: 0.2em 0.9em;
  background: #fdff3e;
  border-radius: 10em;
  color: #000;
  font-size: clamp(1rem, 1.1206896552vw, 1.3rem);
  font-weight: bold;
  position: relative;
}
.product__discount-balloon::after {
  content: "";
  width: 0.9em;
  height: 0.5em;
  background: inherit;
  position: absolute;
  top: 98%;
  left: 50%;
  translate: -50% 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.product__discount .caption {
  font-size: clamp(1.4rem, 1.4655172414vw, 1.7rem);
}
.product__discount .value {
  margin-top: 0.3rem;
  margin-bottom: -0.1em;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.4rem, 5.5172413793vw, 6.4rem);
  line-height: 1;
  color: #fdff3e;
  display: inline-flex;
  align-items: center;
}
.product__discount .unit {
  margin-left: 0.3rem;
  color: #fff;
}
.product__discount .per {
  display: block;
  font-size: clamp(1.4rem, 3.1034482759vw, 3.6rem);
}
.product__discount .off {
  display: block;
  margin-top: -0.2em;
  font-size: clamp(1.4rem, 1.5517241379vw, 1.8rem);
}
.product__notes {
  margin-top: 1em;
  font-size: 1.2rem;
  font-weight: normal;
}
.product__campaign {
  position: relative;
}
.product__campaign-message {
  width: 6.78em;
  font-size: clamp(1.4rem, 1.2068965517vw, 1.4rem);
  position: absolute;
  top: 0;
  left: 0;
  translate: -0.8rem -1.7rem;
  z-index: 5;
}
.product__campaign-banner {
  width: 100%;
  border-radius: 0 0 0.8rem 0.8rem;
}
.product__cv {
  width: 89.0710382514%;
  margin: 0 auto;
  padding: 1em 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 0.5em;
       column-gap: 0.5em;
  background: linear-gradient(164deg, rgb(38, 208, 0) 50%, #23c100 50%) no-repeat center/cover;
  border-radius: 1rem;
  box-shadow: 0 0.4rem rgb(53, 164, 29);
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  translate: 0 50%;
}
.product__cv-icon {
  width: 1.4em;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.product--soldout::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
}
.product--soldout::after {
  content: "";
  width: 49.1803278689%;
  aspect-ratio: 180/80;
  background: url(../img/soldout.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  top: 40%;
  z-index: 8;
}
.product--soldout .product__cv {
  background: #c7c7c7;
  box-shadow: none;
  pointer-events: none;
}

.case {
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
.case__title {
  margin-bottom: 4rem;
}
.case__title img {
  width: min(57.3275862069vw, 66.5rem);
}
.case__splide {
  padding-bottom: 6.5rem;
  position: relative;
}
.case__splide .splide__pagination {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  bottom: 0;
}
.case__splide .splide__pagination__page {
  width: 1.7rem;
  height: auto;
  margin: 0;
  aspect-ratio: 1/1;
  background: rgba(0, 0, 0, .2);
  opacity: 1;
  transform: none;
}
.case__splide .splide__pagination__page.is-active {
  background: #0b97e9;
}
.case__item {
  padding: 12.3711340206% 10.3092783505% 8.2474226804%;
  background: #fff;
  border: 2px solid #000;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, .1);
}
.case__item-img {
  margin-bottom: 3rem;
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.case__item-img .triangle {
  width: 1.3rem;
  aspect-ratio: 13/22;
  background: #d0280e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.case__item-img-label {
  width: 84.7457627119%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  translate: 0 -50%;
}
.case__item-img--before, .case__item-img--after {
  position: relative;
}
.case__item h3 {
  margin-bottom: 0.8em;
  font-size: clamp(1.4rem, 2.2413793103vw, 2.6rem);
  font-weight: bold;
}
.case__item-body {
  font-size: clamp(1.4rem, 1.5517241379vw, 1.8rem);
  line-height: 1.6;
}
.case__item-date {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  padding: 0.75em 1em;
  background: #fdff3e;
  font-size: clamp(1.4rem, 1.5517241379vw, 1.8rem);
  font-weight: bold;
  line-height: 1.1;
  position: relative;
}
.case__item-date::before, .case__item-date::after {
  content: "";
  width: 1.27em;
  aspect-ratio: 23/25;
  position: absolute;
  pointer-events: none;
}
.case__item-date::before {
  border-top: 2px dotted #000;
  border-left: 2px dotted #000;
  top: 0;
  left: 0;
}
.case__item-date::after {
  border-bottom: 2px dotted #000;
  border-right: 2px dotted #000;
  bottom: 0;
  right: 0;
}
.case__btn {
  display: block;
  width: min(28.4482758621vw, 33rem);
  margin: 4rem auto 0;
  padding: 0.7em 1em;
  background: #0b97e9;
  border: none;
  border-radius: 0.6rem;
  box-shadow: 0 0.4rem #0b80c5;
  font-weight: bold;
  font-size: clamp(1.4rem, 1.8965517241vw, 2.2rem);
  color: #fff;
  text-align: center;
  position: relative;
}

.reduction {
  padding-top: 5rem;
  padding-bottom: 0;
  overflow: hidden;
}
.reduction .inner {
  max-width: 100rem;
  position: relative;
}
.reduction__lion {
  width: min(32.8vw, 32.8rem);
  position: absolute;
  right: 0;
  bottom: 0;
  translate: 50% 0;
}

.message {
  background: url(../img/flow-bg.png) no-repeat center/cover;
}
.message__title {
  margin-bottom: 4rem;
}
.message__title img {
  width: min(41.9827586207vw, 48.7rem);
}
.message__main {
  display: flow-root;
  line-height: 2;
}
.message__main p + p {
  margin-top: 1.5em;
}
.message__img {
  width: 47.4137931034%;
  margin-left: 5.1724137931%;
  float: right;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, .1);
}
.message__representative {
  margin-top: 1.5em;
}
.message__representative .name {
  margin-left: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.contact {
  background: url(../img/blue-stripe-bg.png) no-repeat center/cover;
}
.contact__title {
  margin-bottom: 4rem;
}
.contact__title :where(img) {
  width: min(52.0689655172vw, 60.4rem);
}
.contact__title-before {
  display: block;
  width: min(40.0862068966vw, 46.5rem);
  margin: 0 auto;
}
.contact__form {
  margin-top: 4rem;
  padding: 5.1724137931% 6.8965517241% 6.8965517241%;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 1rem 1rem 0 rgba(0, 0, 0, .1);
}
.contact__form-steps {
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 1.5em;
       column-gap: 1.5em;
}
.contact__form-steps li {
  width: 6em;
  aspect-ratio: 1/1;
  background: var(--active-color, #c7c7c7);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px var(--active-color, #c7c7c7), inset 0 0 0 6px #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact__form-steps li::after {
  content: "";
  width: 0.5em;
  aspect-ratio: 10/16;
  background-image: url(../img/step-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: calc(100% + 0.5em);
  translate: 0 -50%;
}
.contact__form-steps li img {
  height: 0.9em;
}
.contact__form-steps li.current {
  --active-color: #0b97e9;
}
.contact__form-steps li.current::after {
  background-image: url(../img/step-arrow-current.png);
}
.contact__form-steps li:last-child::after {
  content: none;
}
.contact__form-message {
  font-size: 0.9em;
  line-height: 2;
}
.contact h3 {
  margin-bottom: 1em;
  font-size: 1.75em;
}

#confirm .contact,
#complete .contact {
  padding-top: 20rem;
}

.button-disabled {
  pointer-events: none;
}

.form {
  margin-top: 2em;
  padding-top: 2em;
  border-top: 1px solid #e1e1e1;
  /*
  input[type="radio"] {
  	accent-color: currentColor;
  	width: 0.8125em;
  	height: 0.8125em;
  }
  */
}
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form textarea,
.form select {
  display: block;
  width: 100%;
  padding: 0.82em 1.34em;
  background: #f5f5f5;
  border: 1px solid #c7c7c7;
  border-radius: 0.6rem;
}
.form input[type=text]::-moz-placeholder,
.form input[type=email]::-moz-placeholder,
.form input[type=tel]::-moz-placeholder,
.form textarea::-moz-placeholder,
.form select::-moz-placeholder {
  color: rgba(0, 0, 0, .2);
}
.form input[type=text]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=tel]::-moz-placeholder, .form textarea::-moz-placeholder, .form select::-moz-placeholder {
  color: rgba(0, 0, 0, .2);
}
.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=tel]::placeholder,
.form textarea::placeholder,
.form select::placeholder {
  color: rgba(0, 0, 0, .2);
}
.form input[type=text] + input[type=text] {
  margin-top: 1.875em;
}
.form textarea {
  min-height: 17.78em;
}
.form select {
  display: inline-block;
  width: auto;
  min-width: 7.5em;
  min-height: 2.857em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form__item {
  padding-bottom: 1.5em;
  border-bottom: 1px solid #e1e1e1;
  display: grid;
  grid-template-columns: 13.5em 1fr;
  -moz-column-gap: 3em;
       column-gap: 3em;
}
.form__item + .form__item {
  margin-top: 1.5em;
}
.form__item dt {
  padding-top: 0.75em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.form__item dd {
  font-size: 0.9em;
}
.form__item:has(input[type=radio], input[type=hidden]) dt {
  padding-top: 0;
}
.form__radio + .form__radio {
  margin-top: 1rem;
}
.form__radio label {
  display: block;
  padding-left: 2.72em;
  text-indent: -2.72em;
}
.form__radio label::before {
  content: "";
  display: inline-block;
  width: 1.88em;
  margin-right: 0.83em;
  aspect-ratio: 1/1;
  border: 1px solid var(--check-color, #c7c7c7);
  background: radial-gradient(circle, var(--check-color, rgba(0, 0, 0, .04)) calc(36% - 1px), transparent 36%);
  border-radius: 50%;
  vertical-align: middle;
}
.form__radio input[type=radio] {
  display: none;
}
.form__radio input[type=radio]:checked ~ label::before {
  --check-color: #000;
}
.form__address {
  display: grid;
  grid-template-columns: 6.8em 1fr;
  align-items: center;
}
.form__address + .form__address {
  margin-top: 1rem;
}
.form__address .note {
  color: #666666;
  font-size: 0.88em;
}
.form__address--code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.form__address--code input[type] {
  width: 8.88em;
}
.form__address--region {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.form__address--region::after {
  content: "";
  width: 0.7rem;
  aspect-ratio: 1/1;
  background: #000;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: 50%;
  right: 1em;
  translate: 0 -50%;
  z-index: 2;
}
.form__address--region select {
  padding-right: 2.7em;
}
.form__required {
  flex-shrink: 0;
  padding: 0.36em 1.86em;
  background: #e22e13;
  border-radius: 10em;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
}
.form__privacy {
  margin-top: 1.5em;
  padding: 1.6em 2em;
  border: 1px solid #e1e1e1;
}
.form__privacy h3 {
  margin-bottom: 1em;
  text-align: center;
  font-size: inherit;
  font-weight: bold;
}
.form__privacy p {
  font-size: 0.8em;
  line-height: 2;
}
.form__privacy a {
  text-decoration: underline;
  text-underline-offset: 0.5em;
}
.form__agree {
  margin-top: 1.5em;
}
.form__agree label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form__agree label::before {
  content: "";
  display: inline-block;
  width: 1.8em;
  margin-right: 0.8em;
  aspect-ratio: 1/1;
  background: url(../img/input-check-false.png) no-repeat center/contain;
}
.form__agree input {
  display: none;
}
.form__agree input:checked ~ label::before {
  background: url(../img/input-check-true.png) no-repeat center/contain;
}
.form__submit {
  display: block;
  width: min(36.2068965517vw, 42rem);
  margin: 4rem auto 0;
  padding: 0.87em 1em;
  background: #0b97e9;
  border: none;
  border-radius: 0.6rem;
  box-shadow: 0 0.4rem #0b80c5;
  font-weight: bold;
  font-size: 1.2em;
  color: #fff;
  text-align: center;
  position: relative;
}
.form__submit::after {
  content: "";
  width: 1em;
  aspect-ratio: 23/16;
  background: url(../img/btn-arrow.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 1.2em;
  translate: 0 -50%;
}
@media (max-width: 1400px) {
  body {
    /* breakpoint 1400 */
  }
  .splide .splide__arrow {
    --arrow-position: -2.5em;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    /* 768 ~ 1024 */
  }
  .tab {
    display: block;
  }
  .pc {
    display: block;
  }
  .header__left .txt--gray {
    display: none;
  }
  .header__cv-balloonTop {
    padding: 0 0.5em;
    font-size: 1.2rem;
  }
  #privacy.contents .contents__bg {
    padding: 40px;
  }
  #company.contents .contents__bg {
    padding: 40px;
  }
  .mainv .inner {
    padding-top: 13.0208333333vw;
  }
  .cta__cv-balloonTop {
    font-size: clamp(1.4rem, 1.724137931vw, 2rem);
  }
  .cta__cv-tellNumber {
    font-size: clamp(1.4rem, 4.3103448276vw, 5rem);
  }
  .cta__cv2-balloonTop {
    font-size: clamp(1.4rem, 1.724137931vw, 2rem);
  }
  .flow__item .cta__cv-balloonTop {
    width: auto;
    font-size: clamp(1.4rem, 1.3793103448vw, 1.6rem);
  }
  .flow__item .cta__cv-tellNumber {
    font-size: clamp(1.4rem, 3.8793103448vw, 4.5rem);
  }
  .flow__item .cta__cv--col2 {
    font-size: clamp(1.4rem, 2.5862068966vw, 3rem);
  }
  .products__group .splide .product {
    min-width: 29rem;
  }
  .product__price--dummy dt {
    display: none;
  }
  .product__discount {
    translate: 1rem 17.4825174825%;
  }
  .product__cv {
    font-size: 0.9em;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 4.2666666667vw;
  }
  section {
    padding: 10.6666666667vw 0;
  }
  .inner {
    width: 87%;
  }
  .mT10 {
    margin-top: 0.5rem;
  }
  .mT20 {
    margin-top: 1rem;
  }
  .mT30 {
    margin-top: 1.5rem;
  }
  .mT40 {
    margin-top: 2rem;
  }
  .mT50 {
    margin-top: 2.5rem;
  }
  .mT60 {
    margin-top: 3rem;
  }
  .mT70 {
    margin-top: 3.5rem;
  }
  .mT80 {
    margin-top: 4rem;
  }
  .mT90 {
    margin-top: 4.5rem;
  }
  .mT100 {
    margin-top: 5rem;
  }
  .mT110 {
    margin-top: 5.5rem;
  }
  .mT120 {
    margin-top: 6rem;
  }
  .mT130 {
    margin-top: 6.5rem;
  }
  .mT140 {
    margin-top: 7rem;
  }
  .mT150 {
    margin-top: 7.5rem;
  }
  .mT160 {
    margin-top: 8rem;
  }
  .mT170 {
    margin-top: 8.5rem;
  }
  .mT180 {
    margin-top: 9rem;
  }
  .mT190 {
    margin-top: 9.5rem;
  }
  .mT200 {
    margin-top: 10rem;
  }
  .mB10 {
    margin-bottom: 0.5rem;
  }
  .mB20 {
    margin-bottom: 1rem;
  }
  .mB30 {
    margin-bottom: 1.5rem;
  }
  .mB40 {
    margin-bottom: 2rem;
  }
  .mB50 {
    margin-bottom: 2.5rem;
  }
  .mB60 {
    margin-bottom: 3rem;
  }
  .mB70 {
    margin-bottom: 3.5rem;
  }
  .mB80 {
    margin-bottom: 4rem;
  }
  .mB90 {
    margin-bottom: 4.5rem;
  }
  .mB100 {
    margin-bottom: 5rem;
  }
  .mB110 {
    margin-bottom: 5.5rem;
  }
  .mB120 {
    margin-bottom: 6rem;
  }
  .mB130 {
    margin-bottom: 6.5rem;
  }
  .mB140 {
    margin-bottom: 7rem;
  }
  .mB150 {
    margin-bottom: 7.5rem;
  }
  .mB160 {
    margin-bottom: 8rem;
  }
  .mB170 {
    margin-bottom: 8.5rem;
  }
  .mB180 {
    margin-bottom: 9rem;
  }
  .mB190 {
    margin-bottom: 9.5rem;
  }
  .mB200 {
    margin-bottom: 10rem;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .font--small {
    font-size: 1.2rem;
  }
  [data-bg-text] {
    --width: 6px;
  }
  .blue-stripe-bg {
    background: url(../img/blue-stripe-bg-sp.png) no-repeat center/cover;
  }
  .splide .splide__arrow {
    --arrow-position: -1.4em;
    width: 2.81em;
  }
  .accordion__wrap {
    row-gap: 2.6666666667vw;
  }
  .accordion__item {
    --icon-padding-L: 14.6666666667vw;
  }
  .accordion__icon {
    width: 1.875em;
    top: 0.9em;
    left: 0.9em;
  }
  .accordion__icon img {
    width: 0.625em;
  }
  .accordion__title {
    min-height: auto;
    padding: 4.6666666667vw 13.3333333333vw 4vw;
    padding-left: var(--icon-padding-L);
  }
  .accordion__title span {
    font-size: 4.2666666667vw;
  }
  .accordion__toggle {
    width: 1.25em;
    top: 1.25em;
    right: 1.25em;
  }
  .accordion__contents {
    min-height: auto;
    padding: 4.6666666667vw 5.3333333333vw 5.3333333333vw;
    padding-left: var(--icon-padding-L);
  }
  .grid-layer {
    grid-template-rows: auto auto;
  }
  .grid-layer--left, .grid-layer--right {
    width: 86.9%;
    grid-column: auto;
    grid-row: auto;
  }
  .grid-layer--right {
    margin-top: -3rem;
  }
  .grid-layer--center .grid-layer--left {
    margin-top: -3rem;
  }
  .grid-layer--center .grid-layer--right {
    grid-row: 1;
  }
  .header .contents--flex {
    border-radius: 0 0 1.3333333333vw 1.3333333333vw;
  }
  .header__left {
    width: 25.0666666667vw;
    padding: 1.7333333333vw 0;
  }
  .header__logo {
    margin: 0 auto;
  }
  .header__logo img {
    max-width: 21.3333333333vw;
    max-height: 10.6666666667vw;
  }
  .header__right {
    flex-shrink: 0;
    -moz-column-gap: 0.6666666667vw;
         column-gap: 0.6666666667vw;
  }
  .header__cv {
    width: 30vw;
    min-width: auto;
    padding: 0.7em 0.5em;
    row-gap: 0.45em;
    font-size: 2.9333333333vw;
  }
  .header__cv-icon {
    aspect-ratio: 44/32;
  }
  .header__cv--tell {
    min-width: auto;
    padding: 0.7em 0.5em 0.6em;
  }
  .header__cv--tell .header__cv-balloonTop,
  .header__cv--tell .header__cv-tellNumber {
    display: none;
  }
  .header__cv--tell-on {
    --cv-color: #32cd32;
    display: flex;
  }
  .header__board {
    width: 100%;
    padding-top: 2vw;
  }
  .header__board::before, .header__board::after {
    width: 1.0666666667vw;
    aspect-ratio: 8/29;
    background: url(../img/header-board-wire-sp.svg) no-repeat center/contain;
  }
  .header__board::before {
    left: 2.6666666667vw;
  }
  .header__board::after {
    right: 2.6666666667vw;
  }
  .header__board-clip {
    padding: 2.2666666667vw 0;
    border-radius: 1.3333333333vw;
  }
  .header__board-title {
    margin-left: 0.7em;
    margin-right: 1em;
    padding: 0.23em 0.65em;
    font-size: 3.2vw;
  }
  .header__board-loop {
    width: auto;
    font-size: 3.2vw;
  }
  .header__board .font--large1 {
    font-size: 1.4em;
  }
  .fixedNav {
    padding: 2.6666666667vw 2.6666666667vw 3.4666666667vw 29.3333333333vw;
    background: #fff;
    position: sticky;
    left: 0;
    bottom: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .fixedNav__lion {
    width: 33.7333333333vw;
    position: absolute;
    left: 1.3333333333vw;
    bottom: 0;
    z-index: 5;
  }
  .fixedNav__cv.cta__cv--tell {
    --cv-color: #32cd32;
    padding: 1em 0.5em 0.8em;
    box-shadow: 0 var(--btn-shadow-distance) #127d12;
    font-size: 2.9333333333vw;
  }
  .fixedNav__cv.cta__cv--tell .cta__cv-balloonTop {
    font-size: 2.9333333333vw;
    translate: 0 -25%;
  }
  .fixedNav__cv.cta__cv--tell .cta__cv-tellNumber {
    font-size: 7.4666666667vw;
  }
  .fixedNav--show {
    opacity: 1;
    visibility: visible;
  }
  .footer .inner {
    padding: 10.6666666667vw 0 8vw;
    font-size: 3.4666666667vw;
  }
  .footer__logo {
    margin-bottom: 7.3333333333vw;
  }
  .footer__logo img {
    width: 80%;
    min-width: auto;
    max-width: 61.3333333333vw;
    max-height: 26.6666666667vw;
  }
  .footer__slogan {
    font-size: 4.2666666667vw;
  }
  .footer__nav {
    margin-top: 9.3333333333vw;
    padding-top: 8vw;
    font-size: 4vw;
  }
  .footer__copyright {
    font-size: 3.4666666667vw;
  }
  .fixedNav {
    padding: 2.6666666667vw 2.6666666667vw 3.4666666667vw 2.6666666667vw;
  }
  #privacy.contents {
    padding: 40px 0 0;
  }
  #privacy.contents h1 {
    font-size: 20px;
  }
  #privacy.contents .contents__bg {
    margin-top: 20px;
    padding: 30px 16px;
  }
  #company.contents {
    padding: 40px 0 0;
  }
  #company.contents h1 {
    font-size: 20px;
  }
  #company.contents .contents__bg {
    margin-top: 20px;
    padding: 30px 16px;
  }
  #company.contents .contents__bg dl dt {
    padding: 16px;
    font-size: 14px;
  }
  #company.contents .contents__bg dl dd {
    padding: 16px 0;
    font-size: 14px;
  }
  .mainv {
    max-height: none;
    aspect-ratio: initial;
  }
  .mainv .inner {
    padding-bottom: 9.3333333333vw;
  }
  .mainv__bg-product {
    width: 97.6vw;
    aspect-ratio: initial;
    right: 0.9333333333vw;
    bottom: 13.5248773651%;
  }
  .mainv__title {
    margin-top: 41.2vw;
  }
  .mainv__title-flag {
    margin-left: -0.5em;
    padding: 0 1em;
    padding-right: 1.9em;
    background: url(../img/mainv-title-flag-sp.png) no-repeat center/100% 100%;
    font-size: 3.7333333333vw;
    top: -1.2em;
  }
  .mainv__title-main {
    padding: 0 2.4vw;
  }
  .mainv__title--typeB .mainv__title-flag {
    top: -1.2em;
  }
  .mainv__title--typeB .mainv__title-main {
    padding: 0;
  }
  .mainv__title--typeC {
    margin-top: 29.8666666667vw;
  }
  .mainv__appeals {
    margin-top: 0;
    margin-bottom: 6vw;
  }
  .mainv__appeal {
    height: auto;
    aspect-ratio: 1/1;
    flex-wrap: wrap;
  }
  .mainv__appeal-value {
    display: block;
    white-space: nowrap;
  }
  .mainv__appeal-title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .mainv__appeal .line1 {
    font-size: 4.6666666667vw;
  }
  .mainv__appeal .line2 {
    font-size: 3.4666666667vw;
  }
  .mainv__appeal .num {
    font-size: 12.5333333333vw;
    letter-spacing: -0.07em;
  }
  .mainv__appeal .unit {
    margin-left: 0;
    font-size: 5.3333333333vw;
  }
  .mainv__appeal .sp-center {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .mainv__appeal--type1 .unit {
    margin-right: 0;
  }
  .mainv__appeal--type2 .unit {
    margin-right: 0;
  }
  .mainv__appeal--pro .line2 {
    margin-right: auto;
    font-size: 3.2vw;
  }
  .mainv__appeal--pro .appeal-txt {
    font-size: 3.8666666667vw;
  }
  .mainv__appeal--pro .appeal-txt .size--18 {
    font-size: 2.6666666667vw;
  }
  .mainv__appeal--pro .appeal-txt .txt--red2 {
    font-size: 5.6vw;
  }
  .mainv__appeal--discount .mainv__appeal-title, .mainv__appeal--warranty .mainv__appeal-title {
    margin-right: auto;
  }
  .mainv__appeal--discount .line2, .mainv__appeal--warranty .line2 {
    font-size: 3.2vw;
  }
  .mainv__appeal--discount .super, .mainv__appeal--warranty .super {
    font-size: 2.4vw;
  }
  .mainv__appeal--discount .unit {
    display: inline-block;
    font-size: 6.1333333333vw;
  }
  .mainv__appeal--discount .off {
    font-size: 2.5333333333vw;
  }
  .mainv__appeal--inspection .mainv__appeal-title {
    margin-right: auto;
  }
  .mainv__appeal--inspection .line1 {
    font-size: 4.4vw;
  }
  .mainv__appeal--inspection .super {
    font-size: 2.4vw;
  }
  .mainv__appeal--inspection .unit {
    margin-right: 0;
  }
  .mainv__text {
    width: 100%;
  }
  .mainv__text--typeC .mainv__maker {
    margin-top: 10vw;
  }
  .mainv__message {
    --width: 3px;
    margin-top: 0;
    text-align: left;
    font-size: 4.2666666667vw;
  }
  .mainv__maker {
    margin-top: 6vw;
    padding: 3.4666666667vw 6vw;
  }
  .mainv__maker-title {
    font-size: 3.2vw;
  }
  .mainv__maker-list {
    width: 100%;
  }
  .mainv__maker-other {
    font-size: 2.1333333333vw;
    right: 0.5em;
    bottom: 0.5em;
  }
  .popup-banner {
    bottom: calc(22.26667vw + 1.5rem);
  }
  .popup-banner__close {
    width: 8vw;
  }
  .popup-banner__body {
    max-width: 53.3333333333vw;
  }
  .lpLinks {
    padding: 6.6666666667vw 0;
  }
  .lpLinks ul {
    gap: 3.4666666667vw 2.6666666667vw;
  }
  .banner {
    padding: 6.6666666667vw 0;
  }
  .troubles {
    padding-top: 8vw;
    padding-bottom: 16vw;
  }
  .troubles__title img {
    width: 87%;
  }
  .troubles__board {
    margin-top: 1.3333333333vw;
  }
  .troubles__band {
    max-width: 100%;
    translate: 0 25%;
  }
  .repair {
    padding-top: 16vw;
    padding-bottom: 10.6666666667vw;
  }
  .repair__title {
    margin-bottom: 5.3333333333vw;
  }
  .repair__title + p {
    text-align: left;
  }
  .repair__title img {
    width: 54.5333333333vw;
  }
  .repair__list {
    margin-top: 3.6vw;
    grid-template-columns: 100%;
    gap: 4vw;
  }
  .repair__item {
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, .1);
  }
  .repair__item {
    --radius: .5rem;
  }
  .repair__item-title {
    font-size: 4.2666666667vw;
  }
  .repair__item-text .item {
    font-size: 3.2vw;
  }
  .repair__item-text .item dt {
    font-size: 2.6666666667vw;
  }
  .repair__item-text .item--red dd {
    font-size: 2.6666666667vw;
  }
  .repair__item-text .item--red .price {
    font-size: 6.1333333333vw;
  }
  .repair__payment {
    margin-top: 12vw;
  }
  .repair__payment-head {
    display: block;
  }
  .repair__payment-title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 5.3333333333vw;
    text-align: center;
  }
  .repair__payment-title img {
    width: 47.2vw;
  }
  .repair__payment-title-sub {
    width: 13.3333333333vw;
  }
  .repair__payment-support {
    margin-top: 3.2vw;
    padding: 4vw 4.6666666667vw 6.1333333333vw;
    grid-template-columns: 100%;
    row-gap: 2.6666666667vw;
    text-align: center;
  }
  .repair__payment-brand img {
    max-width: 10vw;
    max-height: 6vw;
  }
  .repair__payment-brand [alt=Mastercard] {
    max-height: 4.8vw;
  }
  .cta {
    padding: 8vw 0;
  }
  .cta__txt2 {
    width: auto;
    margin-top: 2.6666666667vw;
  }
  .cta__title--inLogo {
    font-size: 4.6666666667vw;
  }
  .cta__title--inLogo .line1 {
    width: 100%;
  }
  .cta__title--inLogo .logo {
    max-width: 7.34em;
    margin: 0 0.3em;
  }
  .cta__caution {
    max-width: 78.6666666667vw;
    margin: 4vw auto;
    padding: 1em;
    font-size: 2.4vw;
  }
  .cta__caution-icon {
    width: 1.88em;
  }
  .cta__cvWrap--noBeforeCaution {
    margin-top: 4.6666666667vw;
  }
  .cta__lion {
    width: 17.2vw;
    aspect-ratio: 129/135;
    translate: -36.4341085271% -57.7777777778%;
    bottom: auto;
    top: 0;
    z-index: 5;
  }
  .cta__lion--arm {
    display: none;
  }
  .cta__lion--spSmall {
    width: 14.5333333333vw;
  }
  .cta__cvGrid {
    margin-top: 4vw;
    padding: 2vw 2vw 2.8vw;
    border-radius: 1.3333333333vw;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.8vw 2vw;
  }
  .cta__cvGrid--cv2 {
    margin-top: 3.6vw;
    grid-template-columns: 100%;
  }
  .cta__cv {
    --btn-shadow-distance: 0.8vw;
    padding: 0.7em 0.5em 1em;
    border-radius: 0.8vw;
    font-size: 3.4666666667vw;
  }
  .cta__cv-balloonTop {
    font-size: 3.4666666667vw;
  }
  .cta__cv-tellNumber {
    -moz-column-gap: 0.26em;
         column-gap: 0.26em;
    font-size: 9.0666666667vw;
  }
  .cta__cv--col2 {
    -moz-column-gap: 0.26em;
         column-gap: 0.26em;
    font-size: 5.3333333333vw;
  }
  .cta__cv--tell {
    padding: 1.3em 0.5em 1.1em;
  }
  .cta__cv2 {
    --btn-shadow-distance: 0.8vw;
    padding: 0.8em 0.5em;
    border-radius: 0.8vw;
    font-size: 3.4666666667vw;
    flex-direction: row;
    -moz-column-gap: 0.7em;
         column-gap: 0.7em;
  }
  .cta__cv2-balloonTop {
    font-size: 3.2vw;
  }
  .cta__cv2--tell {
    padding: 1.1em 0.5em 0.7em;
    -moz-column-gap: 0.65em;
         column-gap: 0.65em;
    font-size: 5.3333333333vw;
  }
  .cta__cv2--tell .cta__cv2-icon {
    width: 1.425em;
  }
  .cta__cv2--tell .free {
    display: none;
  }
  .cta__cv2--lpLink {
    padding: 0.76em 0.5rem;
    padding-right: 0.57em;
  }
  .cta__cv2--lpLink .cta__cv2-lion {
    height: 8vw;
  }
  .cta__cv2--lpLink .cta__cv2-linkTitle {
    height: 8vw;
  }
  .cta__cv2--lpLink .cta__cv2-arrow {
    position: unset;
    right: unset;
    width: 5.0666666667vw;
    min-width: auto;
  }
  .cta__cv2--lpLink .cta__cv2-arrow::after {
    width: 2.1333333333vw;
  }
  .cta__line {
    font-size: 3.4666666667vw;
  }
  .reason {
    padding-top: 12.9333333333vw;
    padding-bottom: 10.6666666667vw;
    background: url(../img/reason-bg-sp.webp) no-repeat center/cover;
  }
  .reason__title {
    margin-bottom: 5.3333333333vw;
  }
  .reason__title img {
    width: 54.1333333333vw;
  }
  .reason__item {
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, .1);
  }
  .reason__item {
    display: block;
    min-height: auto;
    padding: 12vw 4.6666666667vw 6.6666666667vw;
    border-radius: 1.3333333333vw;
  }
  .reason__item + .reason__item {
    margin-top: 4vw;
  }
  .reason__item-number {
    font-size: 4vw;
  }
  .reason__item-content {
    padding: 0;
    line-height: 1.6;
  }
  .reason__item-img {
    max-width: 32.4vw;
    position: absolute;
    top: 4.5333333333vw;
    right: 4.6666666667vw;
  }
  .reason__item-title {
    margin-bottom: 1.3em;
    font-size: 4.8vw;
    line-height: 1.6;
  }
  .reason__item:nth-child(2) .reason__item-img {
    max-width: 21.7333333333vw;
    right: 9.7333333333vw;
  }
  .reason__item:nth-child(3) .reason__item-img {
    max-width: 31.2vw;
    top: -2.9333333333vw;
  }
  .reason__item:nth-child(3) .reason__item-img img {
    margin: 0;
  }
  .reason__item:nth-child(4) .reason__item-img {
    top: 6.2666666667vw;
  }
  .flow {
    padding-top: 4vw;
    padding-bottom: 10.6666666667vw;
    background: url(../img/flow-bg-sp.png) no-repeat center/cover;
  }
  .flow__title {
    margin-bottom: 8vw;
  }
  .flow__title img {
    width: 53.6vw;
  }
  .flow__item {
    grid-template-columns: 14.6666666667vw 1fr;
    -moz-column-gap: 4vw;
         column-gap: 4vw;
  }
  .flow__item-number {
    margin-top: 1.3333333333vw;
    font-size: 4vw;
  }
  .flow__item-number::before {
    width: 0.2rem;
  }
  .flow__item-number-circle::before {
    box-shadow: inset 0 0 0 2px #0b97e9, inset 0 0 0 3px #fff;
  }
  .flow__item-content {
    line-height: 1.6;
    padding-bottom: 7.4666666667vw;
  }
  .flow__item-title {
    margin-bottom: 0.9em;
    font-size: 6.1333333333vw;
  }
  .flow__item .note {
    margin-top: 1em;
  }
  .flow__item .cta__cvGrid {
    margin-top: 8vw;
  }
  .flow__item .cta__cv {
    font-size: 3.2vw;
  }
  .flow__item .cta__cv-balloonTop {
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 3.2vw;
  }
  .flow__item .cta__cv-tellNumber {
    font-size: 7.4666666667vw;
  }
  .flow__item .cta__cv--col2 {
    font-size: 4.8vw;
  }
  .flow__item .repair__payment-support {
    width: 87vw;
    margin-top: 10vw;
    margin-left: -18.5vw;
  }
  .flow__item .repair__payment-support br {
    display: none;
  }
  .support {
    margin-top: 9.3333333333vw;
  }
  .support__title {
    margin-bottom: 5.3333333333vw;
  }
  .support__title img {
    width: 38.8vw;
  }
  .support__area {
    grid-template-columns: 100%;
    row-gap: 6.6666666667vw;
  }
  .support__area-map-img {
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, .1);
  }
  .support__area-map-time {
    font-size: 3.3333333333vw;
  }
  .support__area-title {
    margin-top: 0;
    font-size: 4.8vw;
  }
  .support__area-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625em;
  }
  .voice {
    padding-top: 14.2666666667vw;
    padding-bottom: 14.2666666667vw;
    background: url(../img/voice-bg-top.webp) repeat-x center top/auto 6.1333333333vw, url(../img/voice-bg-bottom.webp) repeat-x center bottom/auto 6.1333333333vw, url(../img/voice-bg-board.webp) no-repeat center/cover;
    position: relative;
  }
  .voice__title {
    margin-bottom: 5.3333333333vw;
  }
  .voice__title img {
    width: 61.2vw;
  }
  .voice__list {
    grid-template-columns: 100%;
    gap: 5.3333333333vw;
  }
  .voice__item::before {
    width: 5.7333333333vw;
    translate: -50% -1.6vw;
  }
  .voice__item-shadow {
    filter: drop-shadow(0.5rem 0.5rem 0 rgba(0, 0, 0, .1));
  }
  .voice__item-shadow {
    height: auto;
  }
  .voice__item-board {
    --distance: 5.3333333333vw;
    --radius: 1.3333333333vw;
    padding: 8.6666666667vw 5.3333333333vw;
  }
  .voice__item-title {
    margin-bottom: 0.7em;
    font-size: 5.6vw;
  }
  .voice__item-name {
    grid-template-columns: 13.3333333333vw 1fr;
    -moz-column-gap: 2vw;
         column-gap: 2vw;
    font-size: 4vw;
  }
  .voice__item-content {
    font-size: 4.2666666667vw;
    line-height: 1.6;
  }
  .faq {
    padding-top: 4.6666666667vw;
    padding-bottom: 10.6666666667vw;
  }
  .faq__title {
    margin-bottom: 5.3333333333vw;
  }
  .faq__title img {
    width: 52.6666666667vw;
  }
  .products {
    padding-top: 7.7333333333vw;
    padding-bottom: 8vw;
    background: url(../img/products-bg-sp.webp) no-repeat center top/cover;
  }
  .products__title {
    margin-bottom: 5.3333333333vw;
  }
  .products__title :where(img) {
    width: 77.6vw;
  }
  .products__title-balloon {
    width: 54.6666666667vw;
  }
  .products__group + .products__group {
    margin-top: 8vw;
  }
  .products__group-head .note, .products__group-bottom .note {
    font-size: 3.2vw;
  }
  .products__group-bottom {
    margin-top: 12.4vw;
  }
  .products__group-title {
    font-size: 5.3333333333vw;
  }
  .products__group .splide .product {
    width: 73.3333333333vw;
  }
  .product {
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, .1);
  }
  .product {
    border-radius: 1.3333333333vw;
  }
  .product__main {
    padding: 6.6666666667vw 5.0666666667vw;
  }
  .product__img {
    width: 26.9333333333vw;
    top: 1.3333333333vw;
    right: 2.6666666667vw;
  }
  .product__head {
    margin-bottom: 5.3333333333vw;
  }
  .product__maker {
    max-width: 21.3333333333vw;
    max-height: 10.6666666667vw;
  }
  .product__name {
    margin-bottom: 2.6666666667vw;
    font-size: 7.7333333333vw;
  }
  .product__tags {
    font-size: 2.6666666667vw;
  }
  .product__price + .product__price {
    margin-top: 2.6666666667vw;
  }
  .product__price dt {
    font-size: 2.6666666667vw;
  }
  .product__price dd {
    font-size: 5.3333333333vw;
  }
  .product__price-taxIncluded {
    font-size: 2.9333333333vw;
  }
  .product__price--effective {
    margin-top: 2.6666666667vw;
  }
  .product__price--effective dt {
    font-size: 2.9333333333vw;
  }
  .product__price--effective dd {
    font-size: 14.6666666667vw;
  }
  .product__discount {
    padding: 2vw;
    border-radius: 1.3333333333vw;
  }
  .product__discount-balloon {
    font-size: 2.6666666667vw;
  }
  .product__discount .caption {
    font-size: 2.8vw;
  }
  .product__discount .value {
    margin-top: 0;
    font-size: 11.4666666667vw;
  }
  .product__discount .per {
    font-size: 6.8vw;
  }
  .product__discount .off {
    font-size: 3.3333333333vw;
  }
  .product__notes {
    font-size: 2.9333333333vw;
  }
  .product__campaign-message {
    font-size: 3.2vw;
    translate: -7.8787878788% -50%;
  }
  .product__cv {
    border-radius: 1.3333333333vw;
    font-size: 4vw;
  }
  .case {
    padding-top: 9.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
  .case__title {
    margin-bottom: 4vw;
  }
  .case__title img {
    width: 86.2666666667vw;
  }
  .case__splide {
    padding-bottom: 8.9333333333vw;
  }
  .case__splide .splide__pagination {
    gap: 2vw;
  }
  .case__splide .splide__pagination__page {
    width: 2.2666666667vw;
  }
  .case__item {
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, .1);
  }
  .case__item {
    padding: 11.1111111111% 9.2592592593% 7.4074074074%;
    border-radius: 1.3333333333vw;
  }
  .case__item-img {
    margin-bottom: 4.6666666667vw;
    -moz-column-gap: 4.5333333333vw;
         column-gap: 4.5333333333vw;
  }
  .case__item-img .triangle {
    width: 2vw;
  }
  .case__item h3 {
    font-size: 5.6vw;
  }
  .case__item-body {
    font-size: 4.2666666667vw;
  }
  .case__item-date {
    font-size: 4.2666666667vw;
  }
  .case__btn {
    width: 100%;
    margin-top: 8vw;
    padding: 1.1em 1em;
    font-size: 1em;
    border-radius: 0.8vw;
  }
  .reduction {
    padding-top: 6.6666666667vw;
  }
  .reduction__lion {
    width: 28.8vw;
    translate: 43% 0;
  }
  .message {
    background: url(../img/flow-bg-sp.png) no-repeat center/cover;
  }
  .message__title {
    margin-bottom: 5.3333333333vw;
  }
  .message__title img {
    width: 60.6666666667vw;
  }
  .message__main {
    line-height: 1.6;
  }
  .message__img {
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, .1);
  }
  .message__img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 5.3333333333vw;
    float: none;
    border-radius: 1.3333333333vw;
  }
  .message__representative {
    margin-top: 1em;
  }
  .message__representative .name {
    font-size: 1.25em;
  }
  .contact__title {
    margin-bottom: 5.3333333333vw;
  }
  .contact__title :where(img) {
    width: 75.2vw;
  }
  .contact__title-before {
    width: 62vw;
  }
  .contact__title + p {
    text-align: left;
  }
  .contact__form {
    box-shadow: 0.5rem 0.5rem 0 rgba(0, 0, 0, .1);
  }
  .contact__form {
    margin-top: 3.3333333333vw;
    padding: 7.6923076923% 7.6923076923% 13.0769230769%;
    border-radius: 1.3333333333vw;
  }
  .contact__form-steps {
    margin-bottom: 5.3333333333vw;
    -moz-column-gap: 1.25em;
         column-gap: 1.25em;
  }
  .contact__form-steps li {
    width: 4.375em;
    box-shadow: inset 0 0 0 2px var(--active-color, #c7c7c7), inset 0 0 0 3px #fff;
  }
  .contact__form-steps li::after {
    width: 0.375em;
    left: calc(100% + 0.4375em);
  }
  .contact__form-message {
    font-size: 4.2666666667vw;
  }
  .contact__form-message .center {
    text-align: left;
  }
  .contact h3 {
    font-size: 1.4375em;
  }
  #confirm .contact,
  #complete .contact {
    padding-top: 32.8vw;
  }
  .form {
    margin-top: 5.3333333333vw;
    padding-top: 5.3333333333vw;
  }
  .form input[type=text],
  .form input[type=email],
  .form input[type=tel],
  .form textarea,
  .form select {
    padding: 0.82em;
    border-radius: 0.8vw;
  }
  .form select {
    min-width: auto;
  }
  .form__item {
    grid-template-columns: 100%;
    row-gap: 4.8vw;
  }
  .form__item dt {
    padding-top: 0;
  }
  .form__item dd {
    font-size: 4.2666666667vw;
  }
  .form__radio label {
    padding-left: 1.875em;
    text-indent: -1.875em;
  }
  .form__radio label::before {
    width: 1.25em;
    margin-right: 0.625em;
    vertical-align: text-bottom;
  }
  .form__address {
    grid-template-columns: 6em 1fr;
    row-gap: 2vw;
  }
  .form__address .note {
    grid-column: 1/span 2;
    font-size: 0.75em;
  }
  .form__address--code input[type] {
    width: 100%;
  }
  .form__address--region {
    width: 100%;
  }
  .form__address--region select {
    width: 100%;
    padding-right: 1.7em;
  }
  .form__required {
    padding: 0 1em;
    font-size: 3.7333333333vw;
  }
  .form__privacy {
    height: 50.6666666667vw;
    padding: 1.5em 1.25em;
    overflow-y: auto;
    overflow-x: hidden;
  }
  .form__agree {
    margin-top: 1.25em;
  }
  .form__agree label::before {
    width: 1.5em;
    margin-right: 0.625em;
  }
  .form__submit {
    width: 100%;
    margin-top: 8vw;
    padding: 1.1em 1em;
    font-size: 1em;
    border-radius: 0.8vw;
  }
  .form__submit::after {
    width: 1.09em;
    right: 0.88em;
  }
}
/*# sourceMappingURL=maps/style.css.map */
