@charset "UTF-8";
html {
  font-size: 16px;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fcfaf7;
  line-height: 1.428;
  color: #1a1311;
  font-family: Roboto, "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.09em;
  overflow-x: clip;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

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

@media screen and (max-width: 1023px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-sp {
    display: none !important;
  }
}
.sticky {
  position: sticky;
}

.spacer {
  flex-grow: 1 !important;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}
table:not([class]) {
  margin: 1em 0;
}
table td > *:first-child {
  margin-top: 0;
}
table td > *:last-child {
  margin-bottom: 0;
}

.js-fade-in {
  opacity: 0;
  transition: 1s ease-out;
}
.js-fade-in.is-animated {
  opacity: 1;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s ease-out;
}
.js-fade-up.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-left {
  opacity: 0;
  transform: translateX(100px);
  transition: 1s ease-out;
}
.js-fade-left.is-animated {
  opacity: 1;
  transform: translateX(0);
}

.js-fade-right {
  opacity: 0;
  transform: translateX(-100px);
  transition: 1s ease-out;
}
.js-fade-right.is-animated {
  opacity: 1;
  transform: translateX(0);
}

#to-pagetop {
  position: fixed;
  right: 180px;
  bottom: 30px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  transition: 0.2s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
#to-pagetop.is-active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 1023px) {
  #to-pagetop {
    right: 15px;
    bottom: 15px;
  }
}
#to-pagetop::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7) url("../img/page_top.svg") no-repeat center/contain;
}
@media screen and (max-width: 1023px) {
  #to-pagetop::before {
    width: 40px;
    height: 40px;
  }
}

#lets-scroll {
  position: fixed;
  left: 50%;
  bottom: 30vh;
  transform: translateX(-50%);
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  display: flex;
  gap: 5px;
  align-items: flex-end;
  transition: 0.2s;
  opacity: 0;
  pointer-events: none;
}
#lets-scroll.is-active {
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  #lets-scroll {
    bottom: 50px;
  }
}
#lets-scroll::before {
  content: "";
  display: block;
  margin-bottom: 2px;
  width: 46.64px;
  height: 16.79px;
  background: url("../img/scroll_text.svg") no-repeat center/contain;
}
#lets-scroll::after {
  content: "";
  display: block;
  width: 18px;
  height: 31px;
  background: url("../img/scroll_arrow.svg") no-repeat center/contain;
  animation: arrowDownAnimation 2s linear infinite;
}

@keyframes arrowDownAnimation {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.overlay {
  display: block;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.overlay.is-active {
  pointer-events: auto;
  opacity: 0.95;
  z-index: 500;
}
.is-menu-direct ~ .overlay.is-active {
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

.youtube,
.gmap {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe,
.gmap iframe {
  width: 100%;
  height: 100%;
}

.scroll-prevent {
  overflow: hidden;
}

.has-theme-color-color {
  color: #f3f50f;
}

.has-theme-color-background-color {
  background: #f3f50f;
}

.has-theme-black-color {
  color: #000;
}

.has-theme-black-background-color {
  background: #000;
}

.has-theme-grey-color {
  color: #ebebeb;
}

.has-theme-grey-background-color {
  background: #ebebeb;
}

.wp-block-embed-youtube .wp-block-embed__wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
}

input {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  vertical-align: middle;
}
input[type=text], input[type=number], input[type=password], input[type=tel], input[type=email] {
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  background: #fff;
  line-height: 1.428;
  color: inherit;
  font-size: inherit;
}
input[type=text].min, input[type=number].min, input[type=password].min, input[type=tel].min, input[type=email].min {
  width: 2em;
}
input[type=text].very-short, input[type=text].code-min, input[type=number].very-short, input[type=number].code-min, input[type=password].very-short, input[type=password].code-min, input[type=tel].very-short, input[type=tel].code-min, input[type=email].very-short, input[type=email].code-min {
  width: 4em;
}
input[type=text].code, input[type=text].month, input[type=number].code, input[type=number].month, input[type=password].code, input[type=password].month, input[type=tel].code, input[type=tel].month, input[type=email].code, input[type=email].month {
  width: 6em;
}
input[type=text].date, input[type=number].date, input[type=password].date, input[type=tel].date, input[type=email].date {
  width: 100px;
}
input[type=text].short, input[type=number].short, input[type=password].short, input[type=tel].short, input[type=email].short {
  width: 160px;
}
input[type=text].full, input[type=number].full, input[type=password].full, input[type=tel].full, input[type=email].full {
  width: 100%;
}
input[type=radio], input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}
input[type=radio] + span, input[type=checkbox] + span {
  padding-left: 26px;
  position: relative;
}
input[type=radio] + span:empty, input[type=checkbox] + span:empty {
  padding-left: 20px;
}
input[type=radio] + span::before, input[type=checkbox] + span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #ccc;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
input[type=radio] + span {
  color: #999;
}
input[type=radio] + span::before {
  border: 1px solid #000;
  border-radius: 50%;
}
input[type=radio]:checked + span {
  color: #000;
}
input[type=radio]:checked + span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}
input[type=checkbox]:checked + span::before {
  border-color: #000;
  background: #000;
}
input[type=checkbox]:checked + span::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url("../img/check.svg") no-repeat center/contain;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.select-styled {
  display: inline-block;
  position: relative;
}
.select-styled::before {
  content: "\e313";
  font-family: "Material Symbols Outlined";
  font-size: 1.125rem;
  line-height: 1;
  color: #000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-overflow: "";
  background: none #fff;
  vertical-align: middle;
  line-height: 1.428;
  font-size: inherit;
  color: inherit;
  padding: 4px 30px 4px 10px;
  border: 1px solid #ccc !important;
  border-radius: 3px;
}

textarea {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  padding: 10px 20px;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  min-height: calc(7.14em + 22px);
  background-color: #fff;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.428;
}

.has-caption {
  position: relative;
}
.has-caption .caption:not(:empty) {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 14px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.has-shadow {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1254901961);
}

.has-border {
  border: 1px solid rgba(0, 0, 0, 0.1254901961);
}

.l-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  mix-blend-mode: difference;
}
.l-header__content {
  width: 100%;
  margin: 0 auto;
  padding: 30px 20px 0;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .l-header__content {
    padding: 15px 15px 0;
  }
}
.l-header__spacer {
  flex-grow: 1;
}
.l-header__logo {
  position: fixed;
  top: 30px;
  z-index: 1001;
  padding: 0 0 0 20px;
  margin: 0;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    top: 15px;
    padding: 0 0 0 15px;
  }
}
.l-header__logo img {
  width: 200px;
}
@media screen and (max-width: 1023px) {
  .l-header__logo img {
    width: 180px;
  }
}
.l-header__nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 120px;
}
.l-header__toggleBtn {
  flex: 0 0 auto;
  display: none;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  z-index: 2;
  width: 24px;
  height: 16px;
  transform-origin: center;
  transition: transform 0.2s;
}
@media screen and (max-width: 1023px) {
  .l-header__toggleBtn {
    display: inline-block;
  }
}
.l-header.is-active .l-header__toggleBtn {
  transform: scale(1, -1);
}
.l-header__toggleBtnArrow {
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 16px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
  transform-origin: right bottom;
}
.l-header__toggleMenu {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1023px) {
  .l-header__toggleMenu {
    width: 140px;
  }
}
.l-header.is-active .l-header__toggleMenu {
  pointer-events: auto;
  opacity: 1;
}
.l-header__toggleMenuScroll {
  overflow: auto;
  margin-right: auto;
  margin-left: auto;
  max-height: 100vh;
  width: 100%;
  padding: 0;
}
.l-header__globalMenu {
  padding: 30px 0 20px;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s, transform 0.5s;
}
@media screen and (max-width: 1023px) {
  .l-header__globalMenu {
    padding: 45px 0 20px;
  }
}
.l-header.is-active .l-header__globalMenu {
  opacity: 1;
  transform: translateY(0);
}
.l-header__globalMenuList {
  margin: 0;
  padding: 0 0 0 20px;
  list-style: none;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .l-header__globalMenuList {
    padding: 0;
    border-left: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: 14px;
  }
}
.l-header__globalMenuList li {
  text-transform: uppercase;
}
.l-header__globalMenuList li:not(:first-child) {
  margin-top: 14px;
}
.l-header__globalMenuList li:not(.contact) a {
  color: #fff;
  position: relative;
}
.l-header__globalMenuList li:not(.contact) a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left;
  transform: scaleX(0);
  transition: 0.2s;
}
.l-header__globalMenuList li:not(.contact) a:hover::after {
  transform: scaleX(1);
}
.l-header__globalMenuList li.contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  padding: 4px 0 0;
  border-radius: 100px;
  background: #000;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .l-header__globalMenuList li.contact a {
    min-width: 140px;
  }
}
.l-header__globalMenuList li.contact a:hover {
  background: #f3f50f;
  color: #000;
}

.l-main {
  margin: 0 180px 0 160px;
}
@media screen and (max-width: 1023px) {
  .l-main {
    margin: 0;
  }
}
.l-main:has(.l-main__content) {
  margin: 0;
}
.l-main:has(.l-main__plain) {
  margin-top: 160px;
}
@media screen and (max-width: 1023px) {
  .l-main:has(.l-main__plain) {
    margin: 300px 0 30px;
    padding: 0 15px;
  }
  body.header-blank .l-main:has(.l-main__plain) {
    margin-top: 160px;
  }
}
.l-main__content {
  max-width: 1200px;
  margin: 0 auto;
}
.l-main__content.has-password {
  min-height: 80svh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .l-main__content.has-password {
    min-height: auto;
    display: block;
    margin-top: 350px;
    padding: 0 20px;
  }
}
.l-main__content.has-password input[type=password] {
  width: auto;
}
.l-main__content.has-password input[type=submit] {
  padding: 10px 20px;
}
@media screen and (max-width: 1023px) {
  .l-main__content.has-password input[type=submit] {
    margin-top: 10px;
  }
}
.l-main__plain p {
  margin: 2.5em 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .l-main__plain p {
    font-size: 14px;
  }
}
.l-main__plain p:first-child {
  margin-top: 0;
}
.l-main__plain p:last-child {
  margin-bottom: 0;
}
.l-main__heading {
  margin: 160px auto 80px;
  font-weight: 800;
  font-size: min(2.083vw, 40px);
}
@media screen and (max-width: 1023px) {
  .l-main__heading {
    margin: 80px auto 40px;
    font-size: min(6.153vw, 24px);
  }
}
.l-main__heading:first-child {
  margin-top: 0;
}

.l-footer {
  width: calc(100% - 320px);
  margin: 80px auto 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 1023px) {
  .l-footer {
    width: 100%;
    margin: 40px 0 15px;
    padding: 0 15px;
  }
}
.l-footer__copyright {
  font-weight: 400;
  font-size: 12px;
}

.c-btn {
  min-width: 400px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  margin: 60px 0;
  padding: 16px 40px;
  border: 2px solid #c5181d;
  border-radius: 100px;
  background: #c5181d;
  color: #fff;
  font-weight: 600;
  font-size: min(1.25vw, 24px);
  text-transform: uppercase;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .c-btn {
    min-width: auto;
    width: 100%;
    font-size: min(4vw, 18px);
  }
}
.c-btn:hover {
  background: #fff;
  color: #c5181d;
}
.c-btn.centering {
  margin: 60px auto;
}
@media screen and (max-width: 1023px) {
  .c-btn.centering {
    margin: 30px auto;
  }
}
.c-btn__back {
  position: relative;
}
.c-btn__back::before {
  content: "";
  display: block;
  width: 16.51px;
  height: 9.59px;
  background: url("../img/back_arrow.svg") no-repeat center/contain;
  position: absolute;
  left: 130px;
  top: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 1023px) {
  .c-btn__back::before {
    left: 100px;
  }
}
.c-btn__back:hover::before {
  background-image: url("../img/back_arrow_colored.svg");
}

.c-form dl {
  margin: 20px 0;
  padding: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}
@media screen and (max-width: 1023px) {
  .c-form dl {
    flex-direction: column;
  }
}
.c-form dl:first-child {
  margin-top: 0;
}
.c-form dl:last-child {
  margin-bottom: 0;
}
.c-form dl dt {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 1023px) {
  .c-form dl dt {
    flex-direction: row;
    align-items: center;
    gap: 5px;
  }
}
.c-form dl dt.required::after {
  content: "必須";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4px;
  border-radius: 3px;
  background: #c5181d;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
}
.c-form dl dt p {
  line-height: 1.5;
}
.c-form dl dt p:first-child {
  margin-top: 0;
}
.c-form dl dt p:last-child {
  margin-bottom: 0;
}
.c-form dl dd {
  margin: 0;
  padding: 0;
  width: min(41.666vw, 800px);
}
@media screen and (max-width: 1023px) {
  .c-form dl dd {
    width: 100%;
  }
}
.c-form dl dd p {
  line-height: 2;
}
.c-form dl dd p:first-child {
  margin-top: 0;
}
.c-form dl dd p:last-child {
  margin-bottom: 0;
}
.c-form__actions {
  margin: 40px 0 0;
}
.c-form__actions p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .c-form__actions p {
    text-align: center;
  }
}
.c-form__actions p a {
  text-decoration: underline;
}
.c-form__actions p span {
  font-weight: 500;
}
.c-form__submit {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}
.c-form__submit p {
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .c-form__submit p {
    width: 100%;
  }
}
.c-form__submit .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}
.c-form__submit input[type=submit] {
  min-width: 400px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 16px 40px;
  border: 2px solid #c5181d;
  border-radius: 100px;
  background: #c5181d;
  color: #fff;
  font-weight: 600;
  font-size: min(1.25vw, 24px);
  text-transform: uppercase;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .c-form__submit input[type=submit] {
    min-width: auto;
    width: 100%;
    font-size: min(4vw, 18px);
  }
}
.c-form__submit input[type=submit]:disabled {
  background-color: #999;
  border-color: #999;
}
.c-form__submit input[type=submit]:not([disabled]):hover {
  background: #fff;
  color: #c5181d;
}
.c-form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.c-form .wpcf7-not-valid-tip {
  color: #c5181d;
}
.c-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #c5181d;
}

.p-homeFirst__content {
  position: fixed;
  top: 0;
  width: calc(100% - 340px);
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
@media screen and (max-width: 1023px) {
  .p-homeFirst__content {
    width: 100%;
    margin: 0;
    padding: 0 15px;
  }
}
.p-homeFirst__container {
  width: min(62.604vw, 1202px);
  aspect-ratio: 1202/185;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-homeFirst__container {
    width: 90.843vw;
    transform: translateY(calc(100% + 50px));
  }
}
@media screen and (max-width: 1023px) and (max-height: 667px) {
  .p-homeFirst__container {
    transform: translateY(calc(100% + 100px));
  }
}
.p-homeFirst__symbol {
  width: min(10.967vw, 210.57px);
  position: absolute;
  left: 50%;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeFirst__symbol {
    width: 16.125vw;
  }
}
.p-homeFirst__type {
  width: min(50.26vw, 965px);
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeFirst__type {
    width: 72.687vw;
  }
}
.p-homeFirst__car {
  width: min(22.847vw, 438.68px);
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
@media screen and (max-width: 1023px) {
  .p-homeFirst__car {
    width: min(46.153vw, 180px);
    top: -40px;
  }
}
.p-homeFirst__carBody {
  width: min(22.847vw, 438.68px);
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-100%);
}
@media screen and (max-width: 1023px) {
  .p-homeFirst__carBody {
    width: min(46.153vw, 180px);
  }
}
.p-homeFirst__carTire {
  width: min(4.114vw, 79px);
  position: absolute;
  right: min(3.171vw, 60.9px);
  top: 0;
  transform: translateY(-100%);
}
@media screen and (max-width: 1023px) {
  .p-homeFirst__carTire {
    width: min(8.074vw, 31.49px);
    right: min(6.41vw, 25px);
  }
}
@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.p-homeFirst__carTire img {
  animation: rotateAnimation 20s linear infinite;
}

.p-homeAbout {
  padding: 200svh 0 80px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-homeAbout {
    width: 100%;
    margin: 0;
    padding: 200svh 15px 40px;
  }
}
.p-homeAbout__main {
  width: 50svw;
  margin-left: calc(50svw - 160px);
}
@media screen and (max-width: 1023px) {
  .p-homeAbout__main {
    width: 100svw;
    margin-left: 0;
    padding: 0 15px;
  }
}
.p-homeAbout__heading {
  margin: 0;
  font-weight: 800;
  font-size: min(2.083vw, 40px);
}
@media screen and (max-width: 1023px) {
  .p-homeAbout__heading {
    font-size: 24px;
  }
}
.p-homeAbout__body {
  margin: 80px 0;
  font-weight: 500;
  font-size: min(1.045vw, 22px);
  line-height: 2.45;
}
@media screen and (max-width: 1023px) {
  .p-homeAbout__body {
    margin: 30px 0;
    font-size: min(4.102vw, 16px);
    line-height: 2.25;
  }
}
.p-homeAbout__body p {
  margin: 2.5em 0;
}
.p-homeAbout__bodyCatch {
  margin: 0 !important;
  font-weight: 800;
  font-size: min(1.354vw, 26px);
  line-height: 1.69;
}
@media screen and (max-width: 1023px) {
  .p-homeAbout__bodyCatch {
    font-size: min(4.615vw, 18px);
    line-height: 2;
  }
}

.p-homeProblem {
  width: 100svw;
  margin: 80px -160px;
  aspect-ratio: 192/75;
  background: url("../img/problem_bg.webp") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-homeProblem {
    margin: 0;
    padding: 0 15px;
    aspect-ratio: 390/445;
    background-image: url("../img/problem_bg_sp.webp");
  }
}
.p-homeProblem__main {
  width: -moz-fit-content;
  width: fit-content;
  padding: min(33.645vw, 70px);
  border: 1px solid #fff;
  -webkit-backdrop-filter: blur(12px) brightness(80%);
          backdrop-filter: blur(12px) brightness(80%);
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-homeProblem__main {
    padding: 20px;
  }
}
.p-homeProblem__heading {
  margin: 0 0 min(2.083vw, 40px);
  font-weight: 900;
  font-size: min(2.083vw, 40px);
}
@media screen and (max-width: 1023px) {
  .p-homeProblem__heading {
    margin: 0 0 20px;
    font-size: min(5.597vw, 22px);
    letter-spacing: 0;
  }
}
.p-homeProblem__body {
  font-weight: 500;
  font-size: min(0.833vw, 16px);
  line-height: 2.5;
}
@media screen and (max-width: 1023px) {
  .p-homeProblem__body {
    font-size: min(3vw, 14px);
  }
}

.p-homeWork {
  margin: 120px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-homeWork {
    margin: 60px 0;
    padding: 0 15px;
    flex-direction: column;
  }
}
.p-homeWork__heading {
  margin: 0;
  font-weight: 800;
  font-size: min(2.083vw, 40px);
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeWork__heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.p-homeWork__body {
  width: min(56.25vw, 1080px);
  border-top: 3px solid #1a1311;
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeWork__body {
    width: auto;
  }
}
.p-homeWork__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 30px 40px;
  border-bottom: 3px solid #1a1311;
  font-weight: 900;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .p-homeWork__item {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
    font-size: 20px;
  }
}
.p-homeWork__item h3 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}
@media screen and (max-width: 1023px) {
  .p-homeWork__item h3 {
    align-self: flex-start;
  }
}

.p-homeCompany {
  margin: 120px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-homeCompany {
    margin: 60px 0;
    padding: 0 15px;
    flex-direction: column;
  }
}
.p-homeCompany__heading {
  margin: 0;
  font-weight: 800;
  font-size: min(2.083vw, 40px);
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeCompany__heading {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.p-homeCompany__body {
  width: min(56.25vw, 1080px);
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeCompany__body {
    width: auto;
  }
}
.p-homeCompany__body.is-animated table::before {
  transform: scaleX(1);
}
.p-homeCompany__body.is-animated table tr::after {
  transform: scaleX(1);
}
.p-homeCompany__body table {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeCompany__body table {
    border-top: 1px solid #1a1311;
  }
}
.p-homeCompany__body table::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #1a1311;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: 0%;
  transform: scaleX(0);
  transition: 0.5s 0.5s ease-out;
}
@media screen and (max-width: 1023px) {
  .p-homeCompany__body table::before {
    content: none;
  }
}
.p-homeCompany__body table tr {
  position: relative;
}
.p-homeCompany__body table tr::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #1a1311;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: 0%;
  transform: scaleX(0);
  transition: 0.5s 0.5s ease-out;
}
@media screen and (max-width: 1023px) {
  .p-homeCompany__body table tr::after {
    content: none;
  }
}
.p-homeCompany__body table td {
  padding: 20px 30px;
  font-weight: 400;
  font-size: min(0.9375vw, 18px);
}
@media screen and (max-width: 1023px) {
  .p-homeCompany__body table td {
    padding: 10px;
    border-bottom: 1px solid #1a1311;
    vertical-align: top;
    font-size: 14px;
  }
}
.p-homeCompany__body table td:first-child {
  font-weight: 800;
}
@media screen and (max-width: 1023px) {
  .p-homeCompany__body table td:first-child {
    white-space: nowrap;
  }
}

.p-homeCars {
  margin: 0 -160px;
}
@media screen and (max-width: 1023px) {
  .p-homeCars {
    margin: 0;
    width: 100%;
    position: relative;
  }
}
.p-homeCars__container {
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-homeCars__type {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    aspect-ratio: 360/176;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
}
.p-homeCars__cars {
  width: min(89.27vw, 1714px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-homeContact {
  margin: 120px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1023px) {
  .p-homeContact {
    margin: 60px 0;
    padding: 0 15px;
    flex-direction: column;
  }
}
.p-homeContact__heading {
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeContact__heading {
    margin-bottom: 30px;
  }
}
.p-homeContact__heading h2 {
  margin: 0;
  font-weight: 800;
  font-size: min(2.083vw, 40px);
}
@media screen and (max-width: 1023px) {
  .p-homeContact__heading h2 {
    font-size: 24px;
  }
}
.p-homeContact__heading p {
  font-weight: 400;
  font-size: 14px;
}
.p-homeContact__body {
  width: min(56.25vw, 1080px);
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .p-homeContact__body {
    width: auto;
  }
}

.p-totalMedal {
  width: min(10.416vw, 200px);
  position: fixed;
  z-index: 10;
  top: 132px;
  left: min(4.166vw, 80px);
}
@media screen and (max-width: 1800px) {
  .p-totalMedal {
    width: 13vw;
    left: 2.5vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-totalMedal {
    width: 120px;
    top: 50px;
    left: 20px;
  }
}

.p-totalHeading {
  margin: 80px 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading {
    margin-top: 350px;
    padding: 0 20px;
  }
}
.p-totalHeading__shoulder {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  font-weight: 800;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__shoulder {
    font-size: 16px;
    letter-spacing: 0;
    text-align: center;
  }
}
.p-totalHeading__shoulder strong {
  font-weight: 800;
  color: #c5181d;
}
.p-totalHeading__shoulder .baloon {
  display: table;
  padding: 15px 40px;
  position: relative;
  background-color: #fff;
  border: 5px solid #c5181d;
  border-radius: 5px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__shoulder .baloon {
    padding: 10px 20px;
    width: 100%;
  }
}
.p-totalHeading__shoulder .baloon::before, .p-totalHeading__shoulder .baloon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  border-top: 20px solid #c5181d;
  border-right: 16px solid transparent;
  border-left: 16px solid transparent;
}
.p-totalHeading__shoulder .baloon::after {
  bottom: -13px;
  border-top: 20px solid #fff;
}
.p-totalHeading__shoulder .baloon strong {
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__shoulder .baloon strong {
    font-size: 20px;
  }
}
.p-totalHeading__heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc((100% - 40px) / 3);
  height: 160px;
  margin: 0;
  text-align: center;
  line-height: 1.2;
  font-weight: 800;
  font-size: 40px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__heading {
    width: 100%;
    height: auto;
    font-size: min(8.142vw, 32px);
    position: static;
    transform: translate(0, 0);
  }
}
.p-totalHeading__heading .hatsu {
  margin-bottom: 15px;
  display: flex;
  gap: 20px;
  color: #c5181d;
  font-size: 24px;
}
.p-totalHeading__heading .hatsu::before, .p-totalHeading__heading .hatsu::after {
  content: "";
  display: block;
  width: 2px;
  height: auto;
  background: #c5181d;
}
.p-totalHeading__heading .hatsu::before {
  transform: rotate(-35deg);
}
.p-totalHeading__heading .hatsu::after {
  transform: rotate(35deg);
}
.p-totalHeading__heading span:nth-of-type(1) {
  color: #c5181d;
}
.p-totalHeading__heading span:nth-of-type(2) {
  color: #dbaf00;
}
.p-totalHeading__heading span:nth-of-type(3) {
  color: #e67300;
}
.p-totalHeading__heading span:nth-of-type(4) {
  color: #527559;
}
.p-totalHeading__heading span:nth-of-type(5) {
  color: #724d84;
}
.p-totalHeading__heading span:nth-of-type(6) {
  color: #810029;
}
.p-totalHeading__heading span:nth-of-type(7) {
  color: #487da5;
}
.p-totalHeading__heading span:nth-of-type(8) {
  color: #424a72;
}
.p-totalHeading__nav {
  position: relative;
}
.p-totalHeading__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__nav ul {
    margin-top: 20px;
    gap: 10px;
  }
}
.p-totalHeading__nav ul li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__nav ul li {
    width: 100%;
  }
}
.p-totalHeading__nav ul li:nth-child(1) a {
  background: #c5181d;
}
.p-totalHeading__nav ul li:nth-child(2) a {
  background: #dbaf00;
}
.p-totalHeading__nav ul li:nth-child(3) a {
  background: #e67300;
}
.p-totalHeading__nav ul li:nth-child(4) a {
  background: #527559;
}
.p-totalHeading__nav ul li:nth-child(6) a {
  background: #724d84;
}
.p-totalHeading__nav ul li:nth-child(7) a {
  background: #810029;
}
.p-totalHeading__nav ul li:nth-child(8) a {
  background: #487da5;
}
.p-totalHeading__nav ul li:nth-child(9) a {
  background: #424a72;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__navItemNum img {
    width: 32px;
  }
}
.p-totalHeading__navItem {
  height: 160px;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__navItem {
    flex-direction: row;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px 0 30px;
  }
}
.p-totalHeading__navItemTitle {
  font-weight: 800;
  font-size: 28px;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__navItemTitle {
    font-size: min(5.089vw, 20px);
  }
}
.p-totalHeading__navItemTitle span {
  font-size: 20px;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__navItemTitle span {
    font-size: min(4.071vw, 16px);
  }
}
.p-totalHeading__navItemArrow::before {
  content: "";
  display: block;
  width: 66.21px;
  height: 17.36px;
  background: url("../img/total/arrow_view.svg") no-repeat center/contain;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__navItemArrow::before {
    width: 18px;
    height: 11px;
    background-image: url("../img/total/arrow_view_sp.svg");
  }
}
.p-totalHeading__by {
  margin: 30px 0;
  text-align: center;
}
.p-totalHeading__by img {
  width: 74.25px;
}
.p-totalHeading__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__items {
    flex-direction: column;
  }
}
.p-totalHeading__item {
  width: calc((100% - 48px) / 5);
  height: 120px;
  border: 4px solid #1d1d1d;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__item {
    width: 100%;
    height: 65px;
    flex-direction: row;
  }
}
.p-totalHeading__itemTitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-totalHeading__itemTitle {
    font-size: min(5.089vw, 20px);
  }
}

.p-totalSec {
  margin: 160px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-totalSec::before {
    content: "";
    display: block;
    width: calc(100% + min(20.833vw, 400px));
    max-width: 98vw;
    height: calc(100% + 40px);
    border: 8px solid #c5181d;
    border-radius: 20px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -2;
    transform: translate(-50%, 30px);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1800px) {
  .p-totalSec::before {
    width: calc(100% + 10vw);
  }
}
@media screen and (min-width: 1024px) {
  .p-totalSec::after {
    content: "";
    display: block;
    width: 640px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: -1;
    transform: translate(-50%, 30px);
  }
  .p-totalSec:nth-child(2)::before {
    border-color: #c5181d;
  }
  .p-totalSec:nth-child(3)::before {
    border-color: #dbaf00;
  }
  .p-totalSec:nth-child(4)::before {
    border-color: #e67300;
  }
  .p-totalSec:nth-child(5)::before {
    border-color: #527559;
  }
  .p-totalSec:nth-child(6)::before {
    border-color: #724d84;
  }
  .p-totalSec:nth-child(7)::before {
    border-color: #810029;
  }
  .p-totalSec:nth-child(8)::before {
    border-color: #487da5;
  }
  .p-totalSec:nth-child(9)::before {
    border-color: #424a72;
  }
  .p-totalSec:nth-child(10)::before {
    border-color: #487da5;
  }
}
@media screen and (max-width: 1023px) {
  .p-totalSec {
    margin: 40px 20px;
    padding: 20px;
    border-width: 5px;
    border-style: solid;
    border-radius: 20px;
  }
  .p-totalSec:nth-child(2) {
    border-color: #c5181d;
  }
  .p-totalSec:nth-child(3) {
    border-color: #dbaf00;
  }
  .p-totalSec:nth-child(4) {
    border-color: #e67300;
  }
  .p-totalSec:nth-child(5) {
    border-color: #527559;
  }
  .p-totalSec:nth-child(6) {
    border-color: #724d84;
  }
  .p-totalSec:nth-child(7) {
    border-color: #810029;
  }
  .p-totalSec:nth-child(8) {
    border-color: #487da5;
  }
  .p-totalSec:nth-child(9) {
    border-color: #424a72;
  }
  .p-totalSec:nth-child(10) {
    border-color: #487da5;
  }
}
.p-totalSec:nth-child(2) h2 {
  color: #c5181d;
}
.p-totalSec:nth-child(3) h2 {
  color: #dbaf00;
}
.p-totalSec:nth-child(4) h2 {
  color: #e67300;
}
.p-totalSec:nth-child(5) h2 {
  color: #527559;
}
.p-totalSec:nth-child(6) h2 {
  color: #724d84;
}
.p-totalSec:nth-child(7) h2 {
  color: #810029;
}
.p-totalSec:nth-child(8) h2 {
  color: #487da5;
}
.p-totalSec:nth-child(9) h2 {
  color: #424a72;
}
.p-totalSec:nth-child(10) h2 {
  color: #434351;
}
.p-totalSec__heading {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 40px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec__heading {
    flex-direction: column;
    gap: 5px;
    font-size: min(7.124vw, 28px);
  }
  .p-totalSec__heading .num img {
    width: 50px;
  }
}
.p-totalSec__heading .title > span {
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec__heading .title > span {
    font-size: min(5.089vw, 20px);
  }
}
.p-totalSec__headingSub {
  margin: 0 0 40px;
  font-weight: 800;
  font-size: 40px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec__headingSub {
    margin: 0 0 30px;
    font-size: min(5.089vw, 20px);
  }
}

.p-totalSec1__items {
  width: 100%;
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__items {
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec1__item {
  width: calc((100% - 180px) / 3);
  padding: 40px 0;
  border-top: 3px solid #1a1311;
  border-bottom: 3px solid #1a1311;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__item {
    width: 100%;
    gap: 20px;
  }
  .p-totalSec1__item:not(:last-child) {
    border-bottom: 0;
  }
}
.p-totalSec1__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  background: url("../img/total/plus.svg") no-repeat center/contain;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translate(100%, -50%);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__item:not(:last-child)::after {
    width: 40px;
    height: 40px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
}
.p-totalSec1__itemText {
  text-align: center;
  font-weight: 800;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__itemText {
    font-size: min(6.106vw, 24px);
  }
}
.p-totalSec1__itemText h4 {
  margin: 0;
  font-weight: inherit;
  font-size: 26px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__itemText h4 {
    font-size: min(4.58vw, 18px);
  }
}
.p-totalSec1__itemText strong {
  font-family: Jost, "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0;
  color: #c5181d;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__itemText strong {
    font-size: min(9.16vw, 36px);
  }
}
.p-totalSec1__result {
  margin: 47px 0 0;
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 800;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__result {
    margin: 5px 0 0;
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec1__result .equal {
  font-size: 50px;
  color: #c5181d;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__result .equal {
    font-size: min(12.722vw, 50px);
    transform: rotate(90deg);
  }
}
.p-totalSec1__result .label {
  padding: 5px 26px;
  border-radius: 5px;
  background: #c5181d;
  color: #fff;
  font-size: 32px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__result .label {
    font-size: min(7.124vw, 28px);
  }
}
.p-totalSec1__result .result {
  font-size: 56px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__result .result {
    font-size: min(10.178vw, 40px);
  }
}
.p-totalSec1__result .result strong {
  font-family: Jost, "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 80px;
  letter-spacing: 0;
  color: #c5181d;
}
@media screen and (max-width: 1023px) {
  .p-totalSec1__result .result strong {
    font-size: min(18.132vw, 72px);
  }
}

.p-totalSec2__items {
  width: 100%;
  display: flex;
  gap: 180px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__items {
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec2__item {
  width: calc((100% - 180px) / 2);
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__item {
    width: 100%;
    gap: 20px;
  }
}
.p-totalSec2__item:nth-child(1) {
  padding: 60px 0;
  border-top: 3px solid #1a1311;
  border-bottom: 3px solid #1a1311;
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__item:nth-child(1) {
    padding: 40px 0;
  }
}
.p-totalSec2__item:nth-child(1) h4 {
  margin: 0;
  font-weight: 800;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__item:nth-child(1) h4 {
    font-size: min(4.58vw, 18px);
  }
}
.p-totalSec2__item:nth-child(1) ul {
  margin: 20px 0 0;
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__item:nth-child(1) ul {
    font-size: min(4.071vw, 16px);
  }
}
.p-totalSec2__item:nth-child(1) ul span {
  font-size: 18px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__item:nth-child(1) ul span {
    font-size: min(3.562vw, 14px);
  }
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__item:nth-child(2) {
    padding: 80px 0 0;
  }
}
.p-totalSec2__item:nth-child(2) .text {
  letter-spacing: 0;
  font-weight: 800;
  font-size: 26px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__item:nth-child(2) .text {
    font-size: min(4.071vw, 16px);
  }
}
.p-totalSec2__item:nth-child(2) .text strong {
  color: #c5181d;
}
.p-totalSec2__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 126px;
  height: 182px;
  background: url("../img/total/sec2_arrow_right.svg") no-repeat center/contain;
  position: absolute;
  right: -27px;
  top: 50%;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 1023px) {
  .p-totalSec2__item:not(:last-child)::after {
    width: 120px;
    height: 83.14px;
    background-image: url("../img/total/sec2_arrow_down.svg");
    right: auto;
    left: 50%;
    top: auto;
    bottom: -3px;
    transform: translate(-50%, 100%);
  }
}

.p-totalSec3__items {
  width: 100%;
  display: flex;
  gap: 90px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-totalSec3__items {
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec3__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-totalSec3__item {
    width: 100%;
    gap: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-totalSec3__item:nth-child(1) {
    margin-bottom: 20px;
    text-align: center;
  }
  .p-totalSec3__item:nth-child(1) img {
    width: 80%;
  }
}
.p-totalSec3__item:nth-child(2) {
  padding-bottom: 40px;
  border-bottom: 3px solid #1a1311;
}
@media screen and (max-width: 1023px) {
  .p-totalSec3__item:nth-child(2) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.p-totalSec3__item:nth-child(2) h4 {
  width: 100%;
  margin: 0;
  padding: 8px 26px;
  border-radius: 5px;
  background: #e67300;
  color: #fff;
  font-weight: 800;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec3__item:nth-child(2) h4 {
    text-align: center;
    font-size: min(4.58vw, 18px);
  }
}
.p-totalSec3__item:nth-child(2) ul {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec3__item:nth-child(2) ul {
    font-size: min(4.071vw, 16px);
  }
}
.p-totalSec3__item:nth-child(2) ul span {
  font-size: 18px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec3__item:nth-child(2) ul span {
    font-size: min(3.562vw, 14px);
  }
}

.p-totalSec4__items {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 160px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__items {
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec4__item {
  padding: 60px 0;
  border-top: 3px solid #1a1311;
  border-bottom: 3px solid #1a1311;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  position: relative;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__item {
    width: 100%;
    padding: 40px 0;
    gap: 20px;
    font-size: min(5.089vw, 20px);
  }
  .p-totalSec4__item:not(:last-child) {
    border-bottom: 0;
  }
}
.p-totalSec4__item h4 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}
.p-totalSec4__item .fig {
  flex-grow: 1;
  display: flex;
  height: 100%;
  align-items: center;
}
.p-totalSec4__item .result {
  padding: 10px 40px;
  border-radius: 5px;
  background: #527559;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__item .result {
    font-size: min(6.106vw, 24px);
  }
}
.p-totalSec4__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background: url("../img/total/sec4_and.svg") no-repeat center/contain;
  position: absolute;
  right: -40px;
  bottom: 0;
  transform: translate(100%, -50px);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__item:not(:last-child)::after {
    width: 50px;
    height: 50px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
}
.p-totalSec4__arrow {
  margin: 0 0 50px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__arrow {
    margin: 0 0 20px;
  }
  .p-totalSec4__arrow img {
    width: 120px;
  }
}
.p-totalSec4__result {
  display: flex;
  gap: 82px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__result {
    flex-direction: column;
    gap: 20px;
  }
}
.p-totalSec4__result .fig {
  width: 560px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__result .fig {
    width: auto;
  }
}
.p-totalSec4__result .fig .caption {
  display: block;
  margin-top: 10px;
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__result .fig .caption {
    font-size: 12px;
  }
}
.p-totalSec4__result .warranty {
  font-weight: 800;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__result .warranty {
    text-align: center;
    font-size: min(6.106vw, 24px);
    order: -1;
  }
}
.p-totalSec4__result .warranty h4 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}
.p-totalSec4__result .warranty ul {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__result .warranty ul {
    margin: 20px 0 0;
    gap: 10px;
  }
}
.p-totalSec4__result .warranty ul li {
  padding: 10px 30px;
  background: #527559;
  border-radius: 5px;
  color: #fff;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__result .warranty ul li {
    text-align: center;
  }
}
.p-totalSec4__result .warranty ul li::before {
  content: "";
  display: block;
  width: 42px;
  height: 25px;
  background: #527559;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 1023px) {
  .p-totalSec4__result .warranty ul li::before {
    content: none;
  }
}

.p-totalSec5__items {
  width: 100%;
  display: flex;
  gap: 200px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__items {
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec5__item {
  width: calc((100% - 200px) / 2);
  padding: 30px 0;
  border-top: 3px solid #1a1311;
  border-bottom: 3px solid #1a1311;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  font-family: Jost, "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__item {
    width: 100%;
    padding: 30px 0;
    font-size: min(4.58vw, 18px);
    border-bottom: 0;
  }
  .p-totalSec5__item:nth-child(2) {
    padding-top: 100px;
  }
}
.p-totalSec5__item h4 {
  margin: 0;
  font-weight: 800;
  font-size: inherit;
}
.p-totalSec5__item h4 strong {
  color: #724d84;
}
.p-totalSec5__item .fig {
  display: flex;
  align-items: center;
}
.p-totalSec5__item .costs {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__item .costs {
    align-self: center;
  }
}
.p-totalSec5__item .cost {
  align-self: flex-start;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__item .cost:not(.line) {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.p-totalSec5__item .cost .price {
  text-align: center;
}
.p-totalSec5__item .cost .label {
  min-width: 120px;
  padding: 5px 20px;
  border-radius: 5px;
  border: 2px solid #724d84;
  background: #724d84;
  color: #fff;
}
.p-totalSec5__item .cost .label.bordered {
  background: #fff;
  color: #724d84;
}
.p-totalSec5__item .cost .num {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__item .cost .num {
    font-size: min(7.633vw, 30px);
  }
}
.p-totalSec5__item .total {
  width: 100%;
}
.p-totalSec5__item .total h4 {
  display: block;
  margin: 0 0 10px;
  padding: 5px 20px;
  border-radius: 5px;
  border: 2px solid #724d84;
  background: #724d84;
  color: #fff;
  font-weight: inherit;
  font-size: inherit;
}
.p-totalSec5__item .total h4.bordered {
  background: #fff;
  color: #724d84;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__item .total h4 {
    padding: 5px 10px;
  }
}
.p-totalSec5__item .total ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__item .total ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .p-totalSec5__item .total ul .label:not(.line) {
    display: block;
  }
}
.p-totalSec5__item .total ul .num {
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__item .total ul .num {
    font-size: min(7.633vw, 30px);
  }
}
.p-totalSec5__item .total ul strong {
  font-weight: inherit;
  color: #724d84;
}
.p-totalSec5__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 126px;
  height: 182px;
  background: url("../img/total/sec5_arrow_right.svg") no-repeat center/contain;
  position: absolute;
  right: -37px;
  top: 50%;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__item:not(:last-child)::after {
    width: 120px;
    height: 84px;
    background-image: url("../img/total/sec5_arrow_down.svg");
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 100%);
  }
}
.p-totalSec5__note {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(calc(100% + 8px));
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec5__note {
    font-size: 11px;
    letter-spacing: 0;
  }
}

.p-totalSec6__items {
  width: 100%;
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__items {
    flex-direction: column;
    gap: 10px;
  }
}
.p-totalSec6__items.stores {
  justify-content: center;
}
.p-totalSec6__item {
  width: calc((100% - 70px) / 3);
  min-height: 226px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  font-weight: 800;
  font-size: 26px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__item {
    width: 100%;
    padding: 30px 0;
    font-size: min(5.089vw, 20px);
    min-height: auto;
  }
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__item:not(.bordered) {
    border-top: 3px solid #1a1311;
    padding: 30px 20px;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
  .p-totalSec6__item:not(.bordered) .fig {
    min-width: 137px;
    text-align: center;
  }
  .p-totalSec6__item:not(.bordered) .fig img {
    max-height: 72px;
  }
  .p-totalSec6__item:not(.bordered) .fig3 img {
    max-height: 90px;
  }
  .p-totalSec6__item:not(.bordered) .text {
    order: -1;
    text-align: left;
  }
}
.p-totalSec6__item.bordered {
  gap: 10px;
  border: 3px solid #810029;
  border-radius: 20px;
}
.p-totalSec6__item strong {
  font-family: Jost, sans-serif;
  font-weight: 500;
  font-size: 48px;
  color: #810029;
}
.p-totalSec6__item span:has(strong) {
  line-height: 1;
}
.p-totalSec6__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  background: url("../img/total/plus.svg") no-repeat center/contain;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(100%, -50%);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__item:not(:last-child)::after {
    width: 40px;
    height: 40px;
    right: auto;
    left: 50%;
    top: auto;
    bottom: -10px;
    transform: translate(-50%, 50%);
  }
}
.p-totalSec6__and {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__and img {
    width: 64px;
  }
}
.p-totalSec6__and::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #810029;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.p-totalSec6__arrow {
  margin: 20px 0 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__arrow {
    margin: 0;
  }
  .p-totalSec6__arrow img {
    width: 120px;
  }
}
.p-totalSec6__result {
  display: flex;
 /* gap: 80px; */
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__result {
    flex-direction: column;
    /* gap: 30px; */
  }
}
.p-totalSec6__result .description {
  font-weight: 800;
  font-size: 28px;
  color: #810029;
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__result .description {
    font-size: min(5.089vw, 20px);
  }
}
.p-totalSec6__result .description .summary {
  margin: 0 0 20px;
}
.p-totalSec6__result .description .summary .num {
  font-family: Jost, sans-serif;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__result .description .summary .num {
    font-size: min(7.633vw, 30px);
  }
}
.p-totalSec6__result .description .point {
  min-height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #810029;
  text-align: center;
  color: #fff;
  font-size: 40px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__result .description .point {
    min-height: 80px;
    font-size: min(6.106vw, 24px);
  }
}
@media screen and (max-width: 1023px) {
  .p-totalSec6__result .map {
    order: -1;
    padding: 0 30px;
  }
}

.p-totalSec7__items {
  width: 100%;
  display: flex;
  gap: 90px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec7__items {
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec7__item {
  width: calc((100% - 180px) / 3);
  padding: 30px 0;
  border-top: 3px solid #1a1311;
  border-bottom: 3px solid #1a1311;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  font-weight: 800;
  font-size: 24px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec7__item {
    width: 100%;
    gap: 20px;
    font-size: min(4.58vw, 18px);
  }
  .p-totalSec7__item:not(:last-child) {
    border-bottom: 0;
  }
}
.p-totalSec7__item h4 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}
@media screen and (max-width: 1023px) {
  .p-totalSec7__item h4 {
    line-height: 1.8;
    letter-spacing: 0;
  }
}
.p-totalSec7__item h4 strong {
  color: #487da5;
  font-size: 26px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec7__item h4 strong {
    font-size: min(6.106vw, 24px);
  }
}
.p-totalSec7__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  background: url("../img/total/sec7_arrow_right.svg") no-repeat center/contain;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translate(100%, -50%);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-totalSec7__item:not(:last-child)::after {
    width: 50px;
    height: 50px;
    background-image: url("../img/total/sec7_arrow_down_circle.svg");
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
}
.p-totalSec7__and {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.p-totalSec7__and::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #810029;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.p-totalSec7__arrow {
  margin: 20px 0 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec7__arrow {
    margin: 0 0 20px;
  }
  .p-totalSec7__arrow img {
    width: 120px;
  }
}
.p-totalSec7__result {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  font-weight: 800;
}
.p-totalSec7__result > div:nth-child(1) {
  font-size: 50px;
  color: #487da5;
}
@media screen and (max-width: 1023px) {
  .p-totalSec7__result > div:nth-child(1) {
    font-size: min(6.106vw, 24px);
  }
}
.p-totalSec7__result > div:nth-child(2) {
  width: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #487da5;
  color: #fff;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec7__result > div:nth-child(2) {
    min-height: 120px;
    font-size: min(5.089vw, 20px);
  }
}

.p-totalSec8__items {
  width: 100%;
  display: flex;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__items {
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec8__item {
  width: 33.3333333333%;
  padding: 30px 0;
  border-top: 3px solid #1a1311;
  border-bottom: 3px solid #1a1311;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__item {
    width: 100%;
    gap: 20px;
    font-size: min(5.089vw, 20px);
  }
  .p-totalSec8__item:not(:first-child) {
    border-top: 1px dashed #1a1311;
  }
  .p-totalSec8__item:not(:last-child) {
    border-bottom: 0;
  }
}
.p-totalSec8__item:nth-child(-n+2) .fig {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #424a72;
}
.p-totalSec8__item h4 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
  color: #424a72;
}
.p-totalSec8__item:not(:last-child) {
  border-right: 1px dashed #1a1311;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__item:not(:last-child) {
    border-right: 0;
  }
}
.p-totalSec8__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  background: url("../img/total/sec8_arrow_right.svg") no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__item:not(:last-child)::after {
    width: 50px;
    height: 50px;
    background-image: url("../img/total/sec8_arrow_down_circle.svg");
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
}
.p-totalSec8__and {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}
.p-totalSec8__and::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #810029;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.p-totalSec8__arrow {
  margin: 0 0 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__arrow {
    margin: 0 0 20px;
  }
  .p-totalSec8__arrow img {
    width: 120px;
  }
}
.p-totalSec8__result {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 3px solid #1a1311;
  border-bottom: 3px solid #1a1311;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__result {
    flex-direction: column;
    gap: 0;
  }
}
.p-totalSec8__resultItem {
  width: 33.3333333333%;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  font-weight: 800;
  font-size: 30px;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__resultItem {
    width: 100%;
    gap: 20px;
    font-size: min(5.089vw, 20px);
  }
  .p-totalSec8__resultItem:not(:first-child) {
    border-top: 1px dashed #1a1311;
  }
  .p-totalSec8__resultItem:not(:last-child) {
    border-bottom: 0;
  }
}
.p-totalSec8__resultItem:nth-child(4) {
  width: 100%;
}
.p-totalSec8__resultItem > div:nth-child(1) {
  color: #424a72;
}
.p-totalSec8__resultItem > div:nth-child(1) strong {
  color: #c5181d;
}
.p-totalSec8__resultItem:nth-child(-n+2) {
  border-right: 1px dashed #1a1311;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__resultItem:nth-child(-n+2) {
    border-right: 0;
  }
}
.p-totalSec8__resultItem:nth-child(-n+2)::after {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  background: url("../img/total/sec8_arrow_right.svg") no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-totalSec8__resultItem:nth-child(-n+2)::after {
    width: 50px;
    height: 50px;
    background-image: url("../img/total/sec8_arrow_down_circle.svg");
    right: auto;
    left: 50%;
    top: auto;
    bottom: 0;
    transform: translate(-50%, 50%);
  }
}
.p-totalSec8__result2 {
  margin: 40px 0 0;
}

.p-totalSec9__result {
  padding-top: 20px;
}/*# sourceMappingURL=style.css.map */