@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth; /* スクロールをスムーズにする */
}

body {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.hero {
  position: relative;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1;
  height: clamp(6em, 6vw, 9em);
  padding: 1em 2em;
  background-color: #03060d;
}

.header__container {
  display: flex;
  align-items: center;
}

.header__logo-image {
  width: clamp(40px, 4vw, 70px);
}

.header__menu-btn {
  position: absolute;
  top: 1.5em;
  right: 2em;
  z-index: 2;
  display: block;
  cursor: pointer;
}
@media (width >= 768px) {
  .header__menu-btn {
    display: none;
  }
}
.header__menu-btn span {
  width: 30px;
  height: 2px;
  background-color: white;
  display: block;
  margin: 0.6em;
}

/* メニューボタンクリック後３本線がXになる */
.header__nav.active {
  transform: translateX(-100%);
}

.header__menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mainvisual {
  position: relative;
  top: 0;
  left: 0;
}

.mainvisual-image {
  width: 100%;
  max-height: 850px;
  object-fit: cover;
  vertical-align: baseline;
  margin-top: clamp(6em, 6vw, 9em);
}

.vertical {
  position: absolute;
  top: 25%;
  right: 3%;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 1.6;
  font-size: clamp(1.7rem, 4vw, 6rem);
  color: white;
  text-shadow: 0.5em 0.2em rgba(134, 134, 134, 0.3);
}

.indent {
  text-indent: 2em;
}

.vertical p {
  margin: 0;
}

.item {
  position: relative;
  bottom: 3em;
  left: 50%;
  transform: translateX(-50%);
}

.scroll__text {
  position: absolute;
  bottom: -0.8em;
  left: 50%;
  transform: rotate(-90deg);
  font-size: 1.2em;
  margin-left: 0.1em;
  color: #999;
}
@media (width >= 768px) {
  .scroll__text {
    bottom: 0em;
    font-size: 1.6em;
    margin-left: 0.3em;
  }
}

.mouse {
  width: 2em;
  height: 3.5em;
  border-radius: 20px;
  border: 2px solid #999;
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
}
@media (width >= 768px) {
  .mouse {
    width: 3em;
    height: 5em;
    bottom: -1.2em;
  }
}

.mouse:before, .mouse:after {
  content: "";
  position: absolute;
  display: block;
}

.indicator:before {
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  top: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(153, 153, 153, 0.55);
}
@media (width >= 768px) {
  .indicator:before {
    width: 1em;
    height: 1em;
    top: 0.8em;
  }
}

.indicator:after {
  top: 1.8em;
  left: calc(50% - 5px);
  border: 5px solid transparent;
  border-top-color: #999;
  -webkit-animation: indicator-arrow 1.2s ease-in-out infinite;
  animation: indicator-arrow 1.2s ease-in-out infinite;
}
@media (width >= 768px) {
  .indicator:after {
    top: 3em;
  }
}

@-webkit-keyframes indicator-arrow {
  20%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  80% {
    transform: translateY(-3px);
  }
}
@keyframes indicator-arrow {
  20%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  80% {
    transform: translateY(-3px);
  }
}
.header__nav {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: rgba(36, 36, 36, 0.8);
  transition: all 0.5s;
}
@media (width >= 768px) {
  .header__nav {
    background-color: transparent;
    position: static;
    width: auto;
    height: auto;
    z-index: auto;
  }
}

@media (width >= 768px) {
  .header__nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 3em;
  }
}

.header__nav-item {
  margin: 1em;
  color: white;
}

.header__nav-link {
  font-size: 2rem;
  color: #fff;
  transition: all 0.3s;
}
@media (width >= 768px) {
  .header__nav-link {
    font-size: 1.4rem;
  }
}

.header__nav-link:hover {
  color: #6ba0dd;
}

.lineup__wrapper {
  margin-top: 15em;
}

.section__heading {
  position: relative;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2%;
  font-size: clamp(3rem, 3vw, 5rem);
  color: #999;
}

.lineup__contents {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 1em 0;
  text-align: center;
  background-color: rgba(24, 24, 24, 0.9);
}

.tab__input {
  display: none;
}

.tab {
  width: 80px;
  height: 70px;
  color: #fff;
  line-height: 70px;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 300;
  padding: 1em;
  margin: 0.3em;
  border: 1px solid gray;
  cursor: pointer;
}

input[type=radio]:checked + label.tab {
  color: #3386ce;
  font-weight: bold;
}

.slide__section {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 215px;
  margin: 0 auto;
  padding: 1em 2%;
  text-align: center;
  border-top: 2px solid rgba(224, 224, 224, 0.7);
  border-bottom: 2px solid rgba(224, 224, 224, 0.7);
  -webkit-transition: -webkit-transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
}

.slide__wrapper {
  padding-bottom: 1em;
  display: none;
}

.slide__list {
  display: flex;
  gap: 1em;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.slide-item {
  scroll-snap-align: start;
  flex: none;
  margin-bottom: 1em;
}

#tab-sports:checked ~ .slide__section .slide__wrapper--sports {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#tab-compact:checked ~ .slide__section .slide__wrapper--compact {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

#tab-suv:checked ~ .slide__section .slide__wrapper--suv {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.slide-image {
  width: 200px;
  vertical-align: middle;
}

.slide-name {
  font-size: 1.4rem;
  color: #f1f1f1;
}

.slide-text {
  font-size: 1rem;
  color: #f1f1f1;
}

.model-image__wrapper {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 800px;
  margin: 2em auto;
}

.model-image {
  width: 100%;
  vertical-align: bottom;
}

.model-link {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: clamp(1.3rem, 3vw, 2rem);
  letter-spacing: 0.6px;
  color: #fff;
  display: inline-block;
  border: 2px solid #fff;
  padding: 0.5em 2em;
}
@media (width >= 1024px) {
  .model-link {
    padding: 0.5em 4em;
  }
}

.technology__wrapper {
  margin-top: 15em;
}

.technology__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
  width: 100%;
  max-width: 700px;
  margin: 4em auto 0;
}
@media (width >= 1200px) {
  .technology__content {
    max-width: 1200px;
  }
}

.card-border {
  position: relative;
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  border-left: 4px solid #59887c;
  border-bottom: 4px solid #59887c;
}

.technology-text__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

.technology-text__heading {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.technology__heading {
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50.8%);
  width: 100%;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  letter-spacing: 0.6px;
  color: #f4f4f4;
  text-align: center;
  border-radius: 25px;
  padding: 1em 0;
  background-color: #59887c;
}

.technology__image {
  width: 100%;
  max-width: 250px;
  margin: 6em auto 3em;
  display: block;
  border-radius: 25%;
}

.technology__text {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  letter-spacing: 0.6px;
  line-height: 1.6;
  padding: 0.5em;
}

.support__wrapper {
  margin-top: 15em;
  background-color: rgba(24, 24, 24, 0.9);
}

.support__contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.support__image--right {
  width: 35%;
  padding: 2em 0;
  vertical-align: bottom;
}

.support__list {
  width: 100%;
}
@media (width >= 1200px) {
  .support__list {
    display: flex;
    gap: 1em;
    text-align: center;
  }
}

.support__item {
  width: 80%;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  background-color: #fff;
  border-top: 2px solid gray;
}
.support__item:last-child {
  border-bottom: 2px solid gray;
}

.support__link {
  display: flex;
  align-items: center;
  color: gray;
  padding: 1em;
}

.support-icon {
  width: 30px;
  vertical-align: bottom;
  margin-right: 0.8em;
}

.news__wrapper {
  margin-top: 15em;
}

.news__content {
  padding: 0 2em;
}

.news__box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  text-indent: 1.6rem;
}
@media (width >= 1200px) {
  .news__box {
    max-width: 1200px;
  }
}

.news__flex {
  display: flex;
  gap: 2em;
  align-items: center;
  margin: 1.5em 0;
  padding: 0.5em 0;
  border-bottom: 2px solid lightgray;
}

.access__wrapper {
  margin-top: 15em;
}

.access__flex {
  width: 100%;
  padding: 0 2em;
}
@media (width >= 768px) {
  .access__flex {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
  }
}

address {
  font-style: normal;
}

.address-area {
  width: 100%;
  max-width: 400px;
  margin: 1em auto;
}

.address-tittle {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: bold;
}

.address-text {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 1em;
  padding-left: 1em;
}

.color-blue {
  color: blue;
}

.color-red {
  color: red;
}

.contact__wrapper {
  margin-top: 15em;
}

.form__inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2em;
}
@media (width >= 1024px) {
  .form__inner {
    max-width: 1200px;
  }
}

.form__label {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  letter-spacing: 1.2px;
}

.form-required {
  font-size: 1.2rem;
  color: red;
  margin-left: 0.3em;
}

.form__input {
  width: 100%;
  height: 35px;
  margin: 0.5em 0 3em;
  border: 1px solid gray;
  border-radius: 5px;
}
.form__input::placeholder {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  padding-left: 1em;
  opacity: 0.6;
}

.form__textarea {
  width: 100%;
  margin: 0.5em 0 3em;
  border: 1px solid gray;
  border-radius: 5px;
}

.form-submit {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  letter-spacing: 5px;
  padding: 0.5em 2em;
  border: 1px solid gray;
  background-color: gray;
  color: #fff;
  border-radius: 5px;
}

.toTop__item {
  position: relative;
  top: 0;
  left: 0;
  transform: rotate(180deg);
  margin-top: 15em;
}

.toTop-mouse {
  width: 2em;
  height: 3.5em;
  border-radius: 20px;
  border: 2px solid #999;
  position: absolute;
  top: 2em;
  left: 1%;
}
@media (width >= 768px) {
  .toTop-mouse {
    width: 3em;
    height: 5em;
    bottom: -1.2em;
  }
}

.toTop-mouse:before,
.toTop-mouse:after {
  content: "";
  position: absolute;
  display: block;
}

.toTop-indicator:before {
  width: 0.8em;
  height: 0.8em;
  border-radius: 50%;
  top: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(153, 153, 153, 0.55);
}
@media (width >= 768px) {
  .toTop-indicator:before {
    width: 1em;
    height: 1em;
    top: 0.8em;
  }
}

.toTop-indicator:after {
  top: 1.8em;
  left: calc(50% - 5px);
  border: 5px solid transparent;
  border-top-color: #999;
  -webkit-animation: toTop-indicator-arrow 1.2s ease-in-out infinite;
  animation: toTop-indicator-arrow 1.2s ease-in-out infinite;
}
@media (width >= 768px) {
  .toTop-indicator:after {
    top: 3em;
  }
}

@-webkit-keyframes toTop-indicator-arrow {
  20% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  80% {
    transform: translateY(-3px);
  }
}
@keyframes toTop-indicator-arrow {
  20% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
  80% {
    transform: translateY(-3px);
  }
}
footer {
  margin-top: 5em;
  background-color: rgba(24, 24, 24, 0.9);
}

.footer-logo__container {
  padding: 3em 0 2em;
  text-align: center;
}

.footer-logo__image {
  width: 70px;
  vertical-align: bottom;
}

.footer-nav__content {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
  padding: 1em 0;
}
@media (width >= 768px) {
  .footer-nav__content {
    max-width: 1200px;
  }
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.footer-nav__item {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.footer-nav__link {
  color: #fff;
}

.sns__container {
  display: flex;
  gap: 6em;
  justify-content: center;
  margin: 3em 0 0;
}
.sns__container .sns__logo {
  width: 30px;
  display: block;
}

.copyright__text {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  color: #fff;
  text-align: center;
  padding: 2em 0 1em;
}/*# sourceMappingURL=style.css.map */