@charset "UTF-8";
/*-----------------------------------------------
variables
-----------------------------------------------*/
:root {
  --font-family-base: "Inter", sans-serif;
  --font-size-base: 1.6rem;
  --line-height-base: 1.5625;
  --color-text: #110E08;
  --color-nav: #fff;
}

/*-----------------------------------------------
reset
-----------------------------------------------*/
/*! destyle.css v4.0.1 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*-----------------------------------------------
base
-----------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media (width >= 640px) {
  html {
    font-size: clamp(7.5px, 1.171875vw, 10px);
    /* 10px / 640px * 100 */
  }
}
@media (width > 800px) {
  html {
    font-size: clamp(6.5px, 0.8125vw, 10px);
  }
}
@media (width >= 1440px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
}

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

a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  a:hover, a:focus {
    opacity: 0.8;
  }
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}
@media (width <= 800px) {
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

.section__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.833;
  letter-spacing: 0.05em;
  display: grid;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section__title .main {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
.section__title .sub {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
.section__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url(../img/common/title_border.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width <= 800px) {
  .section__title {
    font-size: 2rem;
    line-height: 1.5;
  }
  .section__title .main {
    font-size: 2rem;
  }
  .section__title .sub {
    font-size: 1.6rem;
  }
  .section__inner {
    padding-inline: 1.6rem;
  }
}

.pc-only {
  display: block;
}
@media (width <= 800px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (width <= 800px) {
  .sp-only {
    display: block;
  }
}

/*-----------------------------------------------
Search Form Component
-----------------------------------------------*/
.search {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 4rem);
  max-width: 115.2rem;
  z-index: 10;
}
.search--racechip {
  position: static;
  transform: none;
  width: 100%;
  max-width: 115.2rem;
  margin-inline: auto;
  left: 0;
  bottom: 0;
}
@media (width <= 800px) {
  .search {
    bottom: 2rem;
    width: calc(100% - 3.2rem);
  }
}
.search__form {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .search__form {
    flex-direction: column;
    gap: 1.2rem;
  }
}
.search__selects {
  display: flex;
  gap: 2.4rem;
  flex: 1;
}
@media (max-width: 1024px) {
  .search__selects {
    width: 100%;
    gap: 1.2rem;
  }
}
@media (max-width: 640px) {
  .search__selects {
    flex-direction: column;
  }
}
.search__select-wrap {
  -width: 23.9rem;
  position: relative;
  flex: 1;
}
@media (max-width: 1024px) {
  .search__select-wrap {
    width: 100%;
  }
}
.search__select-wrap::before, .search__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.5rem;
  width: 0.2rem;
  height: 1rem;
  border-radius: 9999px;
  background-color: #ea5b0d;
  pointer-events: none;
  transform-origin: 50% calc(100% - 0.1rem);
}
.search__select-wrap::before {
  transform: translateY(-50%) rotate(45deg);
}
.search__select-wrap::after {
  transform: translateY(-50%) rotate(-45deg);
}
.search__select {
  width: 100%;
  padding: 1.6rem 4.4rem 1.6rem 2rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text);
  background: #fff;
  border: none;
  border-radius: 1.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.45);
}
@media (width <= 800px) {
  .search__select {
    padding: 1.4rem 4rem 1.4rem 1.6rem;
    font-size: 1.4rem;
  }
}
.search__select:hover {
  box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.1);
}
.search__select:focus {
  outline: 0.1rem solid #ff6b35;
  outline-offset: 0.1rem;
}
.search__buttons {
  display: flex;
  gap: 2.4rem;
}
@media (max-width: 1024px) {
  .search__buttons {
    width: 100%;
    gap: 1.2rem;
  }
}
@media (max-width: 640px) {
  .search__buttons {
    flex-direction: column;
  }
}
.search__btn {
  padding: 1.6rem 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  border-radius: 0.8rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .search__btn {
    width: 100%;
  }
}
@media (width <= 800px) {
  .search__btn {
    padding: 1.4rem 2.4rem;
    font-size: 1.4rem;
  }
}
.search__btn--search {
  background: linear-gradient(180deg, #089e74 31.73%, #11332a 100%);
  border-radius: 15px;
  color: #fff;
  min-width: 10rem;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.search__btn--search:hover {
  background: linear-gradient(135deg, #3d9a7f 0%, #257060 100%);
  box-shadow: 0 0.4rem 1.2rem rgba(76, 175, 147, 0.4);
}
.search__btn--search:active {
  transform: translateY(1px);
}
.search__btn--contact {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  background: linear-gradient(183.74deg, #ea5b0d 50.76%, #843307 96.94%);
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.6rem;
  color: #ffffff;
  min-width: 23.9rem;
}
@media (width <= 800px) {
  .search__btn--contact {
    min-width: auto;
  }
}
.search__btn--contact:hover {
  background: linear-gradient(135deg, #ff6b35 0%, #e64a19 100%);
  box-shadow: 0 0.4rem 1.2rem rgba(255, 123, 74, 0.4);
}
.search__btn--contact:active {
  transform: translateY(1px);
}
.search__btn--racechip {
  background: linear-gradient(183.74deg, #cf6b34 50.76%, #7a3a16 96.94%);
}

/*-----------------------------------------------
accordion
-----------------------------------------------*/
.accordion-006 {
  max-width: 63.6rem;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-inline: auto;
  margin-bottom: 1.1rem;
  background-color: #e3773c;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
}
.accordion-006--xs {
  font-size: 1.2rem;
}

.accordion-006 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 3em 1em 2em;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}
@media (width <= 800px) {
  .accordion-006 summary {
    padding: 1em 2.5em 1em 1em;
  }
}

.accordion-006 summary::-webkit-details-marker {
  display: none;
}

.accordion-006 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  transition: transform 0.3s;
  flex-shrink: 0;
  position: absolute;
  right: 2em;
}
@media (width <= 800px) {
  .accordion-006 summary::after {
    right: 1em;
    width: 8px;
    height: 8px;
  }
}

.accordion-006[open] summary::after {
  transform: rotate(225deg);
}

.accordion-006 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #ffffff;
  transition: transform 0.5s, opacity 0.5s;
}
@media (width <= 800px) {
  .accordion-006 p {
    padding: 0.3em 1em 1.5em;
  }
}

.accordion-006[open] p {
  transform: none;
  opacity: 1;
}

/*-----------------------------------------------
header
-----------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: var(--font-size-base);
  background: linear-gradient(90deg, #ea5b0d 0%, #0d0c08 100%);
  z-index: 100;
}
.header__logo {
  position: relative;
  z-index: 100;
  width: 10.4rem;
  height: 4.1rem;
  transition: 0.3s;
}
.header__inner {
  width: 74.6527777778%;
  height: 6rem;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 800px) {
  .header__inner {
    align-items: center;
  }
}

.nav__list {
  text-align: center;
  justify-content: flex-end;
  display: flex;
  align-items: center;
  gap: 10rem;
}
.nav.is-active {
  transition: opacity 0.4s ease;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: all;
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #ea5b0d 0%, #0d0c08 100%);
  text-align: center;
}
.nav__item {
  transition: 0.3s;
  letter-spacing: 0.15em;
  font-weight: 700;
  text-align: center;
  color: var(--color-nav);
}
.nav__item:first-child {
  padding-left: 0;
}
@media (width <= 800px) {
  .nav {
    max-width: 100%;
    height: 0;
    opacity: 0;
    pointer-events: none;
  }
  .nav__list {
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    width: 100%;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 2rem;
  }
}

.burger {
  --opacity: 1;
  --rotate: 0;
  --translate: 0.6rem;
  position: fixed;
  top: 2rem;
  right: 4.7rem;
  place-items: center;
  width: 6rem;
  aspect-ratio: 1;
  display: grid;
  right: 2rem;
}
.burger.is-active {
  --opacity: 0;
  --rotate: 135deg;
  --translate: 0;
  position: fixed;
  z-index: 102;
}
.burger span {
  width: 50%;
  height: 3px;
  border-radius: 0.4rem;
  background-color: var(--color-nav);
  grid-area: 1/1/-1/-1;
  transition: opacity 0.4s ease, rotate 0.4s ease, translate 0.4s ease;
}
.burger span:nth-child(1) {
  opacity: var(--opacity);
}
.burger span:nth-child(2) {
  translate: 0 calc(var(--translate) * -1);
  rotate: var(--rotate);
}
.burger span:nth-child(3) {
  translate: 0 var(--translate);
  rotate: calc(var(--rotate) * -1);
}
.burger__text {
  font-size: 1.2rem;
  font-weight: 600;
  position: absolute;
  bottom: 0.4rem;
}
@media (width <= 800px) {
  .burger {
    top: 0;
  }
}
@media (width > 800px) {
  .burger {
    display: none;
  }
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
  /* is-activeクラスが付いたら表示 */
  /* PC: ホバーでも表示 */
  /* タブレット・スマホ: タップで開閉 */
}
.drop-menu button {
  color: var(--color-nav);
  background: none;
  border: none;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.drop-menu button::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 0;
  background: url(../img/common/nav_effect.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (hover: hover) {
  .drop-menu button:hover:after, .drop-menu button:focus:after {
    height: 3px;
  }
}
.drop-menu__list {
  text-align: left;
  color: #843307;
  position: absolute;
  transform: translateX(-50%);
  top: 160%;
  left: 50%;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  /* 下層メニューを非表示 */
  width: 18.7rem;
  z-index: 101;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  list-style: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 1.5rem 1.5rem;
}
.drop-menu__list::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0 0 1.5rem 1.5rem;
  padding: 2px;
  background: linear-gradient(to bottom, #843307, #ea5b0d);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.drop-menu__item {
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, #843307, #ea5b0d) 1;
     border-image: linear-gradient(to right, #843307, #ea5b0d) 1;
}
.drop-menu__item a {
  display: block;
  padding: 1rem 2rem;
  color: #843307;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.drop-menu__item:last-child {
  border-bottom: none;
}
.drop-menu.is-active .drop-menu__list {
  opacity: 1;
  visibility: visible;
}
.drop-menu.is-active button::after {
  transform: rotate(180deg);
}
@media (width > 800px) {
  .drop-menu:hover .drop-menu__list {
    opacity: 1;
    visibility: visible;
  }
}
@media (width <= 800px) {
  .drop-menu__list {
    position: static;
    color: var(--color-nav);
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    transform: translateX(0);
  }
  .drop-menu__list::before {
    background: none;
    -webkit-mask: none;
    -webkit-mask-composite: none;
    mask-composite: none;
  }
  .drop-menu__item {
    text-align: center;
    border-bottom: none;
  }
  .drop-menu__item a {
    color: var(--color-nav);
    font-size: 1.4rem;
    padding: 0.8rem 2rem;
  }
  .drop-menu button {
    margin-bottom: 0;
  }
  .drop-menu button::after {
    position: relative;
    top: 0;
    right: 0;
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.8rem;
    border-left: 0.5rem solid transparent;
    border-right: 0.5rem solid transparent;
    border-top: 0.5rem solid currentColor;
    transition: transform 0.3s ease;
    vertical-align: middle;
  }
  .drop-menu.is-active .drop-menu__list {
    max-height: 20rem;
    margin-top: 1rem;
    opacity: 1;
    visibility: visible;
  }
}

/*footer
-----------------------------------------------*/
.caution {
  text-align: center;
  background: #110e08;
  padding: 1.8rem 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 2;
}
.caution__text {
  max-width: 95rem;
  margin-inline: auto;
}
@media (width <= 800px) {
  .caution {
    padding: 1.8rem 1.6rem;
    text-align: left;
  }
}

.footer {
  background: linear-gradient(180deg, #472008 0%, #000000 100%);
  position: relative;
  z-index: 1;
}
.footer__inner {
  width: 100%;
  max-width: 121rem;
  margin-left: auto;
  padding: 2.7rem 6.3rem 3rem 0;
  gap: 5.5rem;
  color: var(--color-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  width: 20.6rem;
  height: 10.8rem;
}
.footer__nav {
  max-width: 75.5rem;
  width: 100%;
}
.footer-list {
  display: flex;
  justify-content: space-between;
}
.footer-list__item {
  width: 25%;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2.08;
}
.footer-list__child {
  display: flex;
  flex-direction: column;
}
.footer-list__child .footer-list__link:before {
  content: "-";
  margin-right: 0.5rem;
}
.footer__wrap {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  max-width: 14rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.footer-sns__list {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer__contact::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: url(../img/common/info.svg) no-repeat center center/contain;
}
.footer__app {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.footer__app::before {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: url(../img/common/mark.svg) no-repeat center center/contain;
}
.footer__copyright {
  font-size: 10px;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  line-height: 2;
  padding-bottom: 3rem;
}
@media (width <= 800px) {
  .footer__inner {
    padding: 3rem 1.6rem;
    flex-direction: column;
  }
  .footer-list {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-list__item {
    font-size: 1.6rem;
    width: 100%;
  }
}
@media (width >= 640px) {
  .footer__inner {
    padding: 3rem 1.6rem;
  }
}
@media (width > 800px) {
  .footer__inner {
    padding: 2.7rem 6.3rem 3rem 0;
  }
}
@media (width >= 1536px) {
  .footer .footer__inner {
    margin: 0 auto;
  }
}

/*-----------------------------------------------
top
-----------------------------------------------*/
.fv--top .swiper {
  position: relative;
  width: 100%;
  height: 100%;
}
.fv--top .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv--top .swiper-pagination {
  bottom: 2rem;
}
.fv--top .swiper-pagination :global(.swiper-pagination-bullet) {
  width: 1.2rem;
  height: 1.2rem;
  background: #fff;
  opacity: 0.5;
}
.fv--top .swiper-pagination :global(.swiper-pagination-bullet):global(.swiper-pagination-bullet-active) {
  opacity: 1;
  background: #ea5b0d;
}

.top-intro {
  text-align: center;
  padding: 3rem 0 4.3rem;
  background: #1f1714;
}
.top-intro__text {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (width <= 800px) {
  .top-intro__text {
    font-size: 1.8rem;
  }
}

.top-intro-section {
  background: linear-gradient(90deg, #ea5b0d 0%, #040503 100%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16.8rem;
  position: relative;
}
.top-intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/top/dot.png) no-repeat;
  background-position: right bottom;
  z-index: 0;
}
.top-intro-section__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.top-intro-section__item {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.top-intro-section__icon {
  width: 8.1rem;
  height: 8rem;
}
.top-intro-section__head {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.1em;
}
.top-intro-section__head-note {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0;
  color: #fff;
  vertical-align: super;
}
.top-intro-section__text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0;
}
.top-intro-section__img {
  max-width: 35.1rem;
  position: relative;
  z-index: 1;
}
@media (width <= 800px) {
  .top-intro-section {
    padding-top: 4rem;
    flex-direction: column;
    gap: 2rem;
  }
  .top-intro-section__head {
    font-size: 1.8rem;
  }
  .top-intro-section__head-note {
    font-size: 1.2rem;
  }
  .top-intro-section__text {
    font-size: 1.2rem;
  }
  .top-intro-section__list {
    gap: 3rem;
  }
  .top-intro-section__item {
    flex-direction: column;
    align-items: center;
  }
}

.top-product {
  padding-top: 5.1rem;
}
.top-product__inner {
  max-width: 114.4rem;
  margin-inline: auto;
}
.top-product__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 5.3rem;
}
.top-product__title {
  margin-bottom: 6rem;
}
.top-product__img--w478 {
  max-width: 47.8rem;
  margin-inline: auto;
}
@media (width <= 800px) {
  .top-product__title {
    margin-bottom: 3rem;
  }
  .top-product__list {
    margin-bottom: 3rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*-----------------------------------------------
fv
-----------------------------------------------*/
.fv {
  position: relative;
}
.fv--profile {
  margin-bottom: 9.3rem;
}
.fv--products_racechip {
  margin-bottom: 5.8rem;
}
.fv--support {
  overflow-x: hidden;
}
.fv__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  text-align: center;
}
.fv__text {
  max-width: 51.6rem;
  margin-inline: auto;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.fv__text::before, .fv__text::after {
  content: "";
  display: block;
  width: 11.7rem;
  height: 1px;
  background: #fff;
}
.fv__user {
  color: #fff;
  position: absolute;
  z-index: 1;
  top: 46%;
  right: -10%;
  transform: translate(-50%, -50%);
  width: 87.1rem;
  height: 23.4rem;
  background: linear-gradient(180deg, #ea5a0d 32.91%, #843307 81.45%);
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  transform: skewX(-15deg);
}
.fv__user-inner {
  max-width: 48rem;
  padding-top: 1.6rem;
  padding-bottom: 2.4rem;
  padding-left: 10rem;
  transform: skewX(15deg);
}
.fv__user-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
  padding: 1rem 0;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.fv__user-title span {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3888888889;
  letter-spacing: 0.1em;
}
.fv__user-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3888888889;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}
.fv__user-btn {
  display: block;
  max-width: 36.1rem;
  border-radius: 2.2rem;
}
.fv__user-btn img {
  border-radius: 2.2rem;
}
@media (width <= 800px) {
  .fv__title {
    font-size: 2rem;
  }
  .fv__text {
    font-size: 1.6rem;
    gap: 1rem;
  }
  .fv__text::before, .fv__text::after {
    width: 5rem;
  }
  .fv__user {
    width: 50rem;
    height: 20rem;
    top: 43%;
    right: -200px;
  }
  .fv__user-inner {
    padding-left: 2.2rem;
    padding-top: 1rem;
    padding-bottom: 1.6rem;
  }
  .fv__user-title {
    font-size: 2rem;
  }
  .fv__user-title span {
    font-size: 1.2rem;
  }
  .fv__user-text {
    font-size: 1.2rem;
  }
  .fv__user-btn {
    max-width: 22rem;
  }
}

.fv__text-wrap {
  margin-bottom: 1.4rem;
}

.fv__img-wrap {
  position: relative;
  width: 100%;
  height: 70.8rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .fv__img-wrap {
    height: 66.7rem;
  }
}

.fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__content {
  background: url(../img/support/bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  padding: 5.7rem 1.6rem 4.4rem;
}
.fv__content-inner {
  max-width: 92.5rem;
  margin-inline: auto;
}

.fv-list {
  max-width: 92.5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (width <= 800px) {
  .fv-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.fv-list__item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (width <= 800px) {
  .fv-list__item {
    font-size: 1.2rem;
  }
}

/*-----------------------------------------------
page
-----------------------------------------------*/
/*-----------------------------------------------
future
-----------------------------------------------*/
.future-intro {
  text-align: center;
  color: #fff;
  background-image: url(../img/future/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 7rem 0 12.2rem;
}
.future-intro__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.future-intro__title::before {
  content: "";
  display: inline-block;
  width: 6.3rem;
  height: 6.6rem;
  background-image: url(../img/future/icon_rocket.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.future-intro__text {
  max-width: 67.7rem;
  margin-inline: auto;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.9444444444;
}
@media (width <= 800px) {
  .future-intro__title {
    font-size: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
}

.future-product {
  padding: 7rem 0 10rem;
}
.future-product__inner {
  max-width: 94.6rem;
  margin-inline: auto;
}
.future-product__inner2 {
  max-width: 117.9rem;
  margin-inline: auto;
}
.future-product__title {
  max-width: 94.6rem;
  margin-inline: auto;
  margin-bottom: 6.7rem;
}
.future-product__title .wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.future-product__title .wrap::before {
  content: "";
  display: inline-block;
  width: 5.4rem;
  height: 6.1rem;
  background-image: url(../img/future/engine_icon@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.future-product__title .wrap--2::before {
  width: 4.7rem;
  height: 8.2rem;
  background-image: url(../img/future/icon_plug.png);
}
.future-product__title .wrap--3::before {
  width: 9.2rem;
  height: 9.5rem;
  background-image: url(../img/future/icon_mode.png);
}
.future-product__title .main {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
}
.future-product__title .sub {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-bottom: 2.6rem;
}
.future-product__title .sub--3 {
  padding-bottom: 0;
}
.future-product__list {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 7.7rem;
}
.future-product__list--3 {
  max-width: 92.7rem;
  margin-inline: auto;
  margin-bottom: 13rem;
}
.future-product__item {
  max-width: 25.6rem;
}
.future-product__item2 {
  max-width: 27.3rem;
}
.future-product__text {
  text-align: center;
  max-width: 67.7rem;
  margin-inline: auto;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.9444444444;
}
.future-product__img {
  margin-inline: auto;
  margin-bottom: 2.6rem;
}
.future-product__img--w1136 {
  max-width: 113.6rem;
  margin-bottom: 9.4rem;
}
.future-product__img--w1063 {
  margin-top: 5.6rem;
  max-width: 106.3rem;
}
@media (width <= 800px) {
  .future-product__title .wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .future-product__title .main {
    font-size: 2rem;
  }
  .future-product__title .sub {
    font-size: 1.6rem;
  }
  .future-product__list {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
}

/*-----------------------------------------------
profile
-----------------------------------------------*/
.page-profile__inner {
  max-width: 94.6rem;
  margin-inline: auto;
}
.page-profile__title {
  max-width: 94.6rem;
  margin-inline: auto;
  text-align: center;
  display: block;
  margin-bottom: 60px;
}

.profile-intro {
  text-align: center;
  margin-bottom: 7rem;
}
.profile-intro__text {
  font-weight: 500;
  line-height: 2.5;
}

.profile-quality {
  color: #fff;
  background-image: url(../img/profile/profile_01.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 14rem 15.9rem 14.2rem 0;
  margin-bottom: 13.8rem;
}
.profile-quality__inner {
  max-width: 48.1rem;
  margin-left: auto;
}
.profile-quality__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
}
.profile-quality__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.05em;
}
@media (width <= 800px) {
  .profile-quality {
    padding: 7rem 0;
  }
  .profile-quality__title {
    text-align: center;
    font-size: 2rem;
  }
}

.profile-japan {
  text-align: center;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  margin-bottom: 13.8rem;
}
.profile-japan__inner {
  max-width: 94.6rem;
  margin-inline: auto;
}
.profile-japan__img {
  max-width: 67.3rem;
  margin-inline: auto;
}
@media (width <= 800px) {
  .profile-japan {
    font-size: 2rem;
  }
}

/*-----------------------------------------------
db_list
-----------------------------------------------*/
.db__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 6.5rem;
}
.db__container {
  padding: 10rem 0;
  max-width: 105.5rem;
  margin: 0 auto;
}
.db__results {
  margin-top: 30px;
  overflow-x: auto;
}
.db__no-results {
  color: #999;
  text-align: center;
  padding: 40px 0;
  font-size: 16px;
}
.db__table {
  font-size: 2rem;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background-color: #fff;
  color: #333;
}
.db__table thead tr {
  height: 50px;
  color: #fff;
}
.db__table thead th {
  font-weight: 700;
  background-color: #ea5b0d;
  padding: 15px 20px;
  text-align: center;
}
.db__table thead th:nth-child(2n) {
  background: #f7884b;
}
.db__table tbody tr {
  font-weight: 500;
}
.db__table tbody tr:nth-child(even) {
  background-color: #ffdecc;
}
.db__table tbody td {
  padding: 15px 20px;
  text-align: center;
}
.db__link {
  text-decoration: none;
  color: #d96a3c;
  transition: opacity 0.3s;
}
.db__link:hover {
  opacity: 0.7;
}
@media (width <= 800px) {
  .db__title {
    margin-bottom: 4rem;
  }
  .db__container {
    padding: 8rem 1.6rem;
  }
  .db__table {
    font-size: 1.6rem;
  }
  .db__table thead tr {
    height: 4rem;
  }
  .db__table thead th {
    padding: 1rem 1.6rem;
  }
}

/*-----------------------------------------------
racechip
-----------------------------------------------*/
.products_racechip .mobile-img {
  position: absolute;
  top: 10rem;
  right: 17.4rem;
  width: 22.6rem;
  height: 46.1rem;
}
@media (width <= 800px) {
  .products_racechip .mobile-img {
    top: 8rem;
    right: 1.6rem;
    width: 12.8rem;
    height: 26.4rem;
  }
}

.racechip__inner {
  max-width: 120.4rem;
  margin-inline: auto;
  margin-bottom: 10rem;
}
.racechip__title {
  text-align: center;
  margin-bottom: 5.8rem;
}
.racechip__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.racechip__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.racechip__item--s {
  justify-content: flex-end;
}
.racechip__item--s .racechip__img {
  max-width: 19.2rem;
}
.racechip__item--s .racechip__img img {
  aspect-ratio: 192/450;
}
.racechip__img {
  max-width: 23.2rem;
  margin-inline: auto;
}
.racechip__content {
  position: relative;
}
.racechip__name {
  z-index: 1;
  position: absolute;
  transform: translateY(-75%);
  top: 0;
  left: 47px;
}
.racechip__name--s {
  width: 9.3rem;
  height: 5.5rem;
}
.racechip__textbox {
  max-width: 27rem;
  display: flex;
  align-items: center;
  margin-left: 2rem;
  height: 8.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.05em;
  padding-left: 3.4rem;
  color: #fff;
  background: linear-gradient(180deg, #ea5b0d -17.46%, #110e08 100%);
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
  transform: skewX(-15deg);
}
.racechip__textbox p {
  transform: skewX(15deg);
}
.racechip__subtextbox {
  max-width: 22rem;
  color: #fff;
  display: flex;
  align-items: center;
  padding-left: 0.8rem;
  background: #ea5b0d;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.25);
  transform: skewX(-15deg);
}
.racechip__subtextbox-inner {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transform: skewX(15deg);
}
.racechip__subtextbox .num {
  font-size: 4rem;
  line-height: 0.8;
  letter-spacing: 0;
  font-weight: 700;
}
.racechip__subtextbox .num .unit {
  font-size: 2.5rem;
  line-height: 1.28;
  letter-spacing: 0;
  font-weight: 700;
}
.racechip__subtextbox .text {
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 900;
}
.racechip__desc {
  margin-top: 3rem;
  font-size: 1.6rem;
  line-height: 2.1875;
}
.racechip__desc li::before {
  content: "◆";
  color: #ea5b0d;
}
.racechip__detail {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.7rem 5rem;
}
.racechip__detail-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.racechip__detail-img {
  min-width: 10rem;
  min-height: 10rem;
  max-width: 10rem;
  max-height: 10rem;
}
.racechip__detail-title {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 0;
  margin-bottom: 2rem;
}
.racechip__detail-text {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0;
}
.racechip__cta {
  position: relative;
  background: #d94c00;
  padding: 5.5rem 0 7rem;
}
.racechip__cta-title {
  max-width: 99.8rem;
  margin-inline: auto;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8333333333;
  margin-bottom: 7rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.racechip__cta-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 9px;
  background: url(../img/racechip/title_border.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width <= 800px) {
  .racechip__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6rem 3rem;
  }
  .racechip__item {
    align-items: center;
    gap: 2rem;
  }
  .racechip__textbox {
    padding-left: 1rem;
  }
  .racechip__detail {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem 3rem;
  }
  .racechip__detail-img {
    min-width: 8rem;
    min-height: 8rem;
    max-width: 8rem;
    max-height: 8rem;
  }
  .racechip__detail-title {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 1rem;
  }
  .racechip__detail-text {
    font-size: 1.2rem;
  }
  .racechip__cta {
    padding: 3rem 0 4rem;
  }
  .racechip__cta-title {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}

/*-----------------------------------------------
support
-----------------------------------------------*/
.support-intro {
  margin: 6.5rem 0 5.2rem;
}
.support-intro__inner {
  padding: 0 1.6rem;
}
.support-intro__content {
  max-width: 74.6rem;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 5rem;
}
.support-intro__text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
.support-intro__img {
  max-width: 62.4rem;
  margin-inline: auto;
}
@media (width <= 800px) {
  .support-intro__text {
    font-size: 1.2rem;
  }
}

.support-qa {
  margin-bottom: 8rem;
}
.support-qa__title {
  text-align: center;
  display: block;
  margin-bottom: 5rem;
}
/*# sourceMappingURL=style.css.map */