:root {
  --background-color: #333333;
  --base-font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  --en-font-family: "Lato", sans-serif;
  --anime-transition: all .5s;
  --anime-opacity: .6;
  --pc-content-width: 900px;
  --max-page-width: calc(100vw - min(9.6vw, 36px))
}

body,
html {
  background-color: #fff;
  color: #fff;
  font-family: var(--base-font-family);
  overflow-x: hidden
}

html {
  font-size: 62.5%
}

body {
  font-size: 14px;
  font-size: min(3.72vw, 1.6rem);
  line-height: 1.1;
  background-color: var(--background-color)
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle
}

a {
  color: #000;
  text-decoration: none;
  transition: var(--anime-transition)
}

a:hover {
  opacity: var(--anime-opacity)
}

ul {
  list-style: none
}

h1,
h2,
h3,
h4 {
  font-weight: 300
}

h1 {
  font-family: var(--en-font-family);
  font-size: min(4vw, 2rem);
  letter-spacing: .02em
}

h2 {
  font-size: 1.6rem
}

h3 {
  font-size: 1.6rem
}

h3 strong {
  font-weight: 700
}

.container {
  width: var(--pc-content-width);
  max-width: var(--max-page-width);
  margin: 0 auto;
  display: flex;
  position: relative
}

.d-flex {
  display: flex
}

.d-grid {
  display: grid
}

.align-items-center {
  align-items: center
}

.align-items-start {
  align-items: flex-start
}

.align-items-end {
  align-items: flex-end
}

.justify-content-center {
  justify-content: center
}

.justify-content-between {
  justify-content: space-between
}

.justify-content-end {
  justify-content: flex-end
}

.flex-direction-reverse {
  flex-direction: row-reverse
}

.flex-direction-column {
  flex-direction: column
}

.flex-wrap {
  flex-wrap: wrap
}

.text-center {
  text-align: center !important
}

.text-right {
  text-align: right !important
}

[role=tabpanel] {
  display: none
}

[role=tabpanel][aria-hidden=false] {
  display: block
}

.swiper-wrapper {
  transition-timing-function: linear
}

.section-title {
  font-family: var(--en-font-family);
  font-size: min(6.667vw, 3.5rem);
  letter-spacing: .1em;
  line-height: 1;
  writing-mode: vertical-rl;
  margin-right: auto;
  height: max-content
}

.section-title a {
  color: #fff;
  font-size: min(3.466vw, 1.3rem);
  letter-spacing: .1em;
  margin-top: 45px;
  display: inline-block;
  position: relative;
  z-index: 1
}

.section-title a span {
  display: block;
  width: 1px;
  height: 30px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%)
}

.section-title a span::after {
  content: "";
  height: 100%;
  width: 1px;
  background: #fff;
  display: block;
  animation: section-title-bar 1.5s infinite;
  position: absolute;
  top: 0;
  left: 0
}

@keyframes section-title-bar {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%
  }
}

.section-title a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 7px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%)
}

.main-content {
  width: min(75.067vw, calc(100% - 55px))
}

@media screen and (max-width:768px) {
  .for-tab:not(.for-sp) {
    display: none
  }

  .for-pc {
    display: none !important
  }

  .d-flex-sp {
    display: flex
  }
}

@media screen and (min-width:769px) {
  .container {
    max-width: var(--max-page-width)
  }

  .for-sp {
    display: none !important
  }

  .for-tab {
    display: none
  }

  .d-flex-pc {
    display: flex
  }

  body {
    font-size: 20px;
    font-size: 2rem
  }

  h1 {
    font-size: 2rem
  }

  a {
    transition: var(--anime-transition)
  }

  .section-title {
    font-size: 5rem
  }

  .section-title a {
    font-size: 2rem;
    margin-top: 90px
  }

  .section-title a span {
    height: 40px;
    top: -50px
  }

  .main-content {
    width: calc(100% - 140px)
  }
}

header {
  top: 0;
  left: 0;
  width: 100vw;
  position: fixed;
  z-index: 99
}

header h1 a {
  color: #fff
}

header nav ul li a {
  font-family: var(--en-font-family);
  font-size: min(1.8vw, 2rem);
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2
}

header nav ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: all .5s
}

header nav ul li a.active::after {
  width: 100%
}

@media screen and (max-width:768px) {
  header {
    background: 0 0;
    width: 100vw !important;
    z-index: 999;
    top: 0;
    left: 0;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    padding: 15px min(4.8vw, 18px) 0
  }

  .contact-icon {
    margin-left: auto;
    margin-right: 35px;
    position: relative;
    z-index: 99999
  }

  header .nav_toggle {
    width: 24px;
    height: 24px;
    margin: 0 0 0 auto;
    position: relative;
    z-index: 999999;
    display: block
  }

  header .nav_toggle i {
    display: block;
    width: 24px;
    height: 1px;
    border-radius: 1px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    transition: transform .5s, opacity .5s
  }

  header .nav_toggle i:nth-child(1) {
    top: 8px
  }

  header .nav_toggle i:nth-child(2) {
    bottom: 8px;
    margin: auto
  }

  .close:after,
  .close:before {
    left: 15px
  }

  header.show .nav_toggle i:nth-child(1) {
    bottom: 0;
    top: 0;
    margin: auto;
    transform: translate(-50%, 0) rotate(-45deg)
  }

  header.show .nav_toggle i:nth-child(2) {
    bottom: 0;
    top: 0;
    margin: auto;
    transform: translate(-50%, 0) rotate(45deg)
  }

  header nav {
    position: fixed;
    top: 0;
    right: 0;
    padding: 70px 30px 30px;
    opacity: 0;
    visibility: hidden;
    margin: 0;
    width: 100vw;
    height: 100svh;
    background: rgba(0, 0, 0, .9);
    transition: opacity .5s, visibility .5s;
    z-index: 9999
  }

  header.show nav {
    opacity: 1;
    visibility: visible
  }

  header nav ul {
    flex-direction: column;
    gap: 0
  }

  header nav ul li {
    width: 100%;
    margin: 0 0 5svh;
    line-height: 1;
    position: relative
  }

  header nav ul li a {
    font-size: min(8vw, 3rem)
  }

  .nav-sp {
    margin-top: 5svh
  }
}

@media screen and (min-width:769px) {
  header {
    width: 100%;
    padding: 30px 50px 0
  }

  header nav ul {
    gap: min(5vw, 70px)
  }
}

#kv {
  position: relative
}

.kv__img {
  width: 84.8vw;
  position: absolute;
  bottom: -13svh;
  right: -2vw;
  z-index: 1
}

.kv-img-car {
  width: 46.13vw;
  bottom: -4svh;
  left: -14vw;
  position: absolute !important;
  z-index: 2 !important;
  transition-delay: .8s
}

@media screen and (max-width:768px) {
  #interview-page #kv .kv__img {
    width: var(--max-page-width);
    bottom: -65vw;
    right: 50%;
    transform: translate(50%, 0)
  }

  #interview-page #kv .kv__img .kv-logo {
    margin-bottom: 28px
  }
}

@media screen and (min-width:769px) {
  .kv__img {
    width: 51vw;
    bottom: -9.4vw;
    right: 5vw
  }

  .kv-img-car {
    width: min(27.452415812591507vw, 375px);
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    transition-delay: .8s
  }
}

#concept {
  padding-top: min(40vw, 200px);
  padding-bottom: 2.086vw;
  position: relative;
  width: 100vw;
  overflow: hidden
}

#concept .main-content h3 {
  font-size: min(6.667vw, 3rem);
  letter-spacing: .06em;
  margin-bottom: 25px
}

#concept .main-content p {
  letter-spacing: .06em;
  line-height: 1.9
}

#concept .banner {
  width: var(--max-page-width);
  margin: 30px auto 0;
  position: relative;
  z-index: 2;
  gap: 20px
}

#concept .banner a {
  width: min(calc(50% - 10px), 240px)
}

@media screen and (max-width:768px) {
  .infinite-sp {
    margin-top: 20px
  }
}

@media screen and (min-width:769px) {
  #concept {
    padding-top: 210px;
    padding-bottom: 5vw
  }

  #concept .main-content h3 {
    font-size: 3.6rem;
    margin-bottom: 50px
  }

  #concept .main-content p {
    line-height: 2.2
  }

  #concept .banner {
    width: 90%;
    margin: 90px 0 0;
    gap: 80px
  }

  #concept .banner a {
    width: calc(50% - 40px)
  }
}

#garage-life {
  padding: 130px 0;
  overflow: hidden
}

.garage-life__list {
  position: relative;
  margin-top: -60px;
  width: calc(100% + min(4.8vw, 18px));
  aspect-ratio: .913;
  z-index: 1
}

#garage-life .garage-life__list__item {
  opacity: 0;
  transform: translateX(50%);
  transition: all .8s ease-out;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1
}

.garage-life__list__item.first .text-img {
  display: none
}

.garage-life__list__item:not(.first) .first-img {
  display: none
}

.garage-life__list__item.first img {
  cursor: pointer;
  transition: var(--anime-transition)
}

.garage-life__list__item.first img:hover {
  transform: translate(-30px, 0)
}

#garage-life .garage-life__list__item.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2
}

#garage-life .garage-life__list__item__title {
  background-color: #333;
  transform: rotate(-9deg);
  position: relative;
  z-index: 2
}

.garage-life__list__item__title h3 {
  font-family: var(--en-font-family);
  font-size: min(7.333vw, 2.75rem);
  letter-spacing: .06em;
  line-height: .8
}

.garage-life__list__item__title span {
  font-size: min(2.933vw, 1.1rem);
  letter-spacing: .06em;
  line-height: 1;
  margin-left: 20px
}

#garage-life .garage-life__list__item.first .garage-life__list__item__title ul {
  display: none
}

.first .garage-life__list__item__car,
.first .garage-life__list__item__link,
.first .garage-life__list__item__title h3 {
  display: none
}

#garage-life .garage-life__list__item__title ul {
  gap: 10px;
  margin-left: -5px
}

#garage-life .garage-life__list__item__title ul li {
  font-family: var(--en-font-family);
  font-size: min(4vw, 1.8rem);
  padding: .6rem 2.2rem;
  -webkit-transform: skew(-9deg);
  transform: skew(-9deg);
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  background: #555;
  cursor: pointer;
  transition: all .3s ease
}

#garage-life .garage-life__list__item__title.list_all ul li {
  opacity: 0
}

#garage-life .list_all {
  position: absolute;
  top: -30px;
  z-index: 999
}

#garage-life .garage-life__list__item__title ul li::after {
  content: "";
  width: 8px;
  aspect-ratio: .68;
  background: url(../images/next.svg) no-repeat center/contain;
  display: inline-block;
  margin-left: 5px
}

#garage-life .garage-life__list__item__title ul li:hover {
  opacity: .7 !important
}

.garage-life__list__item__scene {
  margin-top: -4.5vw;
  position: relative;
  z-index: 1
}

.garage-life__list__item__car {
  position: absolute;
  bottom: 0;
  z-index: 2
}

.garage-life__list__item__car a:hover {
  opacity: 1
}

.garage-life__list__item__car a img {
  transition: var(--anime-transition)
}

.garage-life__list__item__car a:hover img {
  opacity: 1;
  transform: scale(1.05)
}

.garage-life__list__item__link {
  width: 38.933vw;
  position: absolute;
  right: 0;
  bottom: -5vw;
  z-index: 3
}

@media screen and (max-width:768px) {
  #garage-life .section-title {
    margin-top: -8vw
  }

  #garage-life .list_all li {
    font-size: min(2.8vw, 1.8rem) !important;
    padding: .64rem 1.2rem !important;
    opacity: 0;
    transition: all .8s ease-out
  }

  #garage-life .list_all li::after {
    width: min(1.3vw, 10px) !important
  }

  #garage-life .garage-life__list__item__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px
  }

  .garage-life__list__item:nth-child(2) .garage-life__list__item__car {
    width: 48.16vw;
    left: -10vw;
    bottom: -20vw
  }

  .garage-life__list__item:nth-child(3) .garage-life__list__item__car {
    width: 49.733vw;
    bottom: -19vw;
    left: -10vw
  }

  .garage-life__list__item:nth-child(4) .garage-life__list__item__car {
    width: 46.17vw;
    bottom: -20vw;
    left: -8vw
  }
}

@media screen and (min-width:769px) {
  #garage-life {
    padding: 150px 0 100px;
    overflow-x: hidden
  }

  .garage-life__list {
    margin-top: -60px;
    width: calc(((100vw - 900px)/ 2) + 100%);
    aspect-ratio: 1.0592
  }

  .garage-life__list__item__title h3 {
    font-size: 4.5rem;
    margin-right: 70px
  }

  .garage-life__list__item__title span {
    font-size: 2rem;
    margin-left: 20px
  }

  #garage-life .garage-life__list__item__title ul {
    gap: 20px;
    margin-left: 0
  }

  #garage-life .garage-life__list__item__title ul li {
    font-size: min(1.8vw, 2.3rem);
    padding: min(1.0981vw, 1.5rem) min(2.928vw, 4rem)
  }

  #garage-life .garage-life__list__item__title ul li::after {
    width: min(.9vw, 12px);
    margin-left: 10px
  }

  .garage-life__list .garage-life__list__item:nth-of-type(2) .garage-life__list__item__car {
    width: 497px;
    right: 110px;
    bottom: -96px
  }

  .garage-life__list .garage-life__list__item:nth-of-type(3) .garage-life__list__item__car {
    width: 524px;
    right: 110px;
    bottom: -96px
  }

  .garage-life__list .garage-life__list__item:nth-of-type(4) .garage-life__list__item__car {
    width: 482px;
    right: 120px;
    bottom: -135px
  }

  .garage-life__list__item__scene {
    margin-top: -60px
  }

  .garage-life__list__item__link {
    width: 237px;
    bottom: -68px
  }
}

#movie {
  padding-top: 160px;
  position: relative
}

#movie .movie-wrapper {
  background-color: #000
}

#movie .section-title {
  top: -30px;
  left: 0;
  position: absolute;
  z-index: 4
}

.movie-content {
  position: relative;
  aspect-ratio: 16/9;
  margin-left: auto
}

.movie-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.text-memo {
  margin: 10px 0 0 auto
}

.text-memo small {
  font-size: .6em
}

@media screen and (max-width:768px) {
  #movie {
    padding-top: 5vw;
    background: inherit
  }

  #movie .section-title {
    top: 0
  }

  .movie-content {
    width: var(--max-page-width);
    margin: 0 0 0 auto
  }
}

#gallery {
  padding: min(25vw, 150px) 0 min(5vw, 40px);
  position: relative;
  z-index: 1
}

.gallery__main {
  letter-spacing: .06em;
  line-height: 1.8;
  margin-bottom: 25px
}

.gallery__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 45px
}

.gallery__list__item__img {
  margin-bottom: 10px
}

.gallery__list__item {
  cursor: pointer;
  transition: var(--anime-transition)
}

.gallery__list__item:hover {
  opacity: var(--anime-opacity)
}

.gallery__list__item p {
  font-size: 1.5rem;
  letter-spacing: .06em;
  line-height: 1.3
}

.gallery-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000
}

.gallery-modal.active {
  display: flex
}

.gallery-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .9)
}

.gallery-modal__content {
  width: 80%;
  max-width: 620px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001
}

.gallery-modal__close {
  position: absolute;
  top: -10px;
  right: -70px;
  background: 0 0;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 1002;
  transition: opacity .3s ease
}

.gallery-modal__close:hover {
  opacity: .7
}

.gallery-modal__carousel {
  width: 80%;
  max-width: 620px;
  position: relative
}

.gallery-modal__swiper {
  width: 100%;
  height: 100%
}

.gallery-modal__swiper .swiper-slide img {
  width: 100%;
  max-width: 620px;
  height: auto;
  margin-bottom: 20px
}

.gallery-modal__swiper .swiper-slide p {
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: .06em;
  line-height: 1.4
}

.swiper-navigation-icon {
  display: none
}

.gallery__swiper-button-next,
.gallery__swiper-button-prev,
.swiper-button-next,
.swiper-button-prev {
  width: 8px;
  aspect-ratio: .68;
  transition: var(--anime-transition);
  position: absolute;
  top: 40%
}

.gallery__swiper-button-prev,
.swiper-button-prev {
  left: -3vw !important
}

.gallery__swiper-button-next,
.swiper-button-next {
  right: -3vw !important
}

.gallery__swiper-button-next::after,
.gallery__swiper-button-prev::after,
.swiper-button-next::after,
.swiper-button-prev::after {
  content: "" !important;
  margin: auto;
  width: 100%;
  height: 100%;
  display: block
}

.gallery__swiper-button-prev::after,
.swiper-button-prev::after {
  background: url(../images/prev.svg) no-repeat center/contain
}

.gallery__swiper-button-next::after,
.swiper-button-next::after {
  background: url(../images/next.svg) no-repeat center/contain
}

.gallery__swiper-pagination,
.swiper-pagination {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  left: -4vw !important;
  bottom: 50px !important;
  width: max-content !important
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, .5) !important;
  width: min(1.0666666666666667vw, 6px) !important;
  height: min(1.0666666666666667vw, 6px) !important;
  transition: var(--anime-transition)
}

.swiper-pagination-bullet-active {
  background: #fff !important
}

.swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, .8) !important
}

.gallery__swiper-container {
  position: relative
}

@media screen and (max-width:768px) {
  .gallery__main p {
    margin-top: 30px
  }

  .gallery__list,
  .gallery__main,
  .gallery__swiper-container {
    max-width: 430px
  }

  #interview-page .gallery__swiper-pagination {
    bottom: 4vw !important
  }
}

@media screen and (min-width:769px) {
  #gallery {
    padding: 200px 0 0
  }

  .gallery__main {
    margin-top: -30px;
    margin-bottom: 50px
  }

  .gallery__list__item__img {
    width: 100%;
    aspect-ratio: 1.4193548387096775;
    margin-bottom: 20px;
    overflow: hidden
  }

  .gallery__list__item__img img {
    height: auto;
    transition: transform .6s ease;
    width: 100%
  }

  .gallery__list__item:hover .gallery__list__item__img img {
    transform: scale(1.1)
  }

  .gallery__swiper-button-next,
  .gallery__swiper-button-prev,
  .swiper-button-next {
    color: #fff !important;
    width: 50px;
    height: 50px;
    transform: translateY(-50%)
  }

  .gallery__swiper-button-prev,
  .swiper-button-prev {
    left: -70px !important
  }

  .gallery__swiper-button-next,
  .swiper-button-next {
    right: -70px !important
  }

  .swiper-pagination-bullet {
    width: 8px !important;
    height: 8px !important
  }

  .gallery__swiper-pagination,
  .swiper-pagination {
    gap: 10px;
    left: -30px !important;
    bottom: 42px !important
  }
}

#interview {
  padding: 25vw 0;
  background: #000;
  clip-path: polygon(0 16vw, 100% 0, 100% calc(100% - 16vw), 0 100%)
}

.interview__list__item {
  width: 100%
}

.interview__list__item a {
  color: #fff
}

.interview__list__item a h3 {
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.5
}

.interview__list__item__img {
  width: 100%;
  aspect-ratio: 1.425;
  overflow: hidden
}

.interview__list__item__img img {
  transition: transform .6s ease;
  width: 100%
}

.interview__list__item:hover .interview__list__item__img img {
  transform: scale(1.1)
}

.interview__list__item a p {
  font-size: 1.6rem;
  letter-spacing: .02em;
  line-height: 1.7
}

@media screen and (max-width:768px) {
  .interview__list {
    max-width: 430px
  }

  .interview__list__item:first-child {
    margin-bottom: 40px
  }
}

@media screen and (min-width:769px) {
  #interview {
    padding: 300px 0
  }

  .interview__list__item {
    width: 45%
  }
}

footer {
  padding: 15vw 0 30px;
  position: relative
}

.to_back {
  text-align: center;
  width: var(--max-page-width);
  max-width: 400px;
  position: absolute;
  top: -8vw;
  left: 50%;
  transform: translate(-50%, 0)
}

footer p {
  font-family: var(--en-font-family);
  font-size: min(2.133vw, .8rem);
  text-align: center
}

@media screen and (min-width:769px) {
  footer {
    padding: 150px 0 30px
  }

  .to_back {
    width: 80%;
    max-width: 500px;
    top: -120px
  }

  footer p {
    font-size: 1.4rem
  }
}

#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0
}

#opening video {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#opening.fade-out video {
  animation: fadeOut 1.2s forwards
}

#opening.fade-out {
  animation: fadeOut .5s forwards;
  animation-delay: .8s
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden
  }
}

#content {
  opacity: 0
}

#content.fade-in {
  animation: fadeIn 1.5s forwards;
  animation-delay: .5s
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media screen and (max-width:768px) {
  #opening video {
    object-position: 85%
  }
}

#interview-page #content1 .container {
  display: block
}

#interview-page #kv {
  position: relative;
  z-index: 2
}

#interview-page #content1 {
  background: url(../images/interview1/interview-bg-sp.webp) no-repeat top left/cover;
  padding: 90vw 0 23vw;
  margin-top: -16vw;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16vw), 0 100%);
  position: relative;
  z-index: 1
}

#interview-page #content1 .carousel-wrapper {
  padding: 35px 0
}

#content1 h3 {
  font-size: min(6vw, 2.25rem);
  letter-spacing: .06em;
  line-height: 1.5;
  margin-bottom: 20px
}

#content1 p {
  font-size: min(3.2vw, 1.2rem);
  letter-spacing: .06em;
  line-height: 2.2
}

.index-list {
  margin-top: 35px
}

#interview-page.interview1 .index-list {
  max-width: 460px
}

#interview-page.interview2 .index-list {
  max-width: 660px
}

.index-list li:not(:first-child) {
  margin-top: 20px
}

#interview-page #content2 {
  margin-top: -50px;
  position: relative;
  z-index: 2
}

#interview-page #content3 {
  margin-top: 25px
}

#interview-page .section-title {
  font-family: var(--base-font-family);
  line-height: .5
}

#interview-page .section-title span {
  text-orientation: upright;
  height: 24px;
  display: inline-block
}

#interview-page .section-title span:first-child {
  vertical-align: text-bottom
}

#interview-page .section-title span:last-child {
  vertical-align: text-top
}

#interview-page .interviewee-list {
  gap: 70px
}

#interview-page .interviewee-list__item__company {
  font-size: min(3.2vw, 1.2rem);
  line-height: 1.4;
  letter-spacing: .06em;
  margin-top: 10px
}

#interview-page .interviewee-list__item__name {
  font-size: min(5.333vw, 2rem);
  letter-spacing: .06em
}

#interview-page .interviewee-list__item__name__en {
  font-family: var(--en-font-family);
  font-size: min(2.933vw, 1.1rem);
  letter-spacing: .06em;
  margin-left: 20px
}

.interview-head {
  font-size: min(6vw, 2.25rem);
  letter-spacing: .06em;
  line-height: 1.4285;
  margin-bottom: 40px;
  position: relative
}

.interview-head::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: #fff;
  bottom: -24px;
  left: 0;
  position: absolute
}

#interview-page .interview-text.d-flex-pc {
  align-items: stretch;
  gap: 30px;
  justify-content: space-between
}

#interview-page .interview-text p {
  font-size: min(3.733vw, 1.4rem);
  letter-spacing: .06em;
  line-height: 1.875
}

#interview-page .interview-text p strong {
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  transition: opacity .8s ease;
  text-decoration: none;
  color: #fff;
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size .6s
}

#interview-page .interview-text p strong.active {
  background-size: 100% 1px
}

#interview-page .interview-text+h3 {
  margin-top: 35px
}

#interview-page .interview-text+.interview-text {
  margin-top: 20px
}

#interview-page.interview1 .content2-4,
#interview-page.interview1 .content3-3 {
  margin-top: 20px;
  display: block
}

#interview-page.interview1 .content2-5 {
  margin-top: 40px;
  display: block
}

#content3 {
  position: relative;
  z-index: 2
}

#interview-page.interview1 .interview-text__3-3 a {
  margin-top: 20px;
  display: block
}

#interview-page.interview2 .content2-1,
#interview-page.interview2 .content3-5 {
  margin-top: 40px;
  display: block
}

#interview-page.interview2 .interview-text__3-7 a {
  margin-top: 20px;
  display: block
}

#content4 {
  background: url(../images/interview1/interview-bg-sp.webp) no-repeat top left/cover;
  padding: 54vw 0 24vw;
  margin-top: -53vw;
  clip-path: polygon(0 16vw, 100% 0, 100% calc(100% - 16vw), 0 100%);
  position: relative;
  z-index: 1
}

#content4 .content4-img {
  width: var(--max-page-width);
  margin: 0 auto;
  display: block
}

#interview-page #content4 .container {
  justify-content: flex-end
}

#interview-page #content4 .banner {
  width: 100%;
  margin-top: 25px;
  position: relative;
  z-index: 2
}

#interview-page #content4 .banner a {
  width: calc(50% - 10px)
}

#interview-page #interview {
  margin-top: -16vw
}

@media screen and (max-width:768px) {
  #interview-page .interviewee-list {
    width: 64%;
    margin: 30px auto
  }

  #interview-page .interviewee-list__item:first-child {
    margin-bottom: 30px
  }

  #interview-page.interview1 .content2-2,
  #interview-page.interview1 .content2-3,
  #interview-page.interview1 .content3-1,
  #interview-page.interview1 .content3-2,
  #interview-page.interview1 .interview-text__2-5 .gallery__swiper-container,
  #interview-page.interview2 .content2-1,
  #interview-page.interview2 .content2-2,
  #interview-page.interview2 .content2-4,
  #interview-page.interview2 .content2-5,
  #interview-page.interview2 .content2-7,
  #interview-page.interview2 .content3-1,
  #interview-page.interview2 .content3-2,
  #interview-page.interview2 .content3-3,
  #interview-page.interview2 .content3-4,
  #interview-page.interview2 .content3-5,
  #interview-page.interview2 .content3-6 {
    margin-top: 20px;
    display: block
  }

  #content4 .to-next {
    width: var(--max-page-width);
    margin: 0 auto 45px;
    display: block
  }

  #content4 .container .main-content {
    width: 100%
  }
}

@media screen and (min-width:769px) {
  #interview-page #content1 {
    background: url(../images/interview1/interview-bg.webp) no-repeat top left/cover;
    padding: 19vw 0 220px
  }

  #content1 h3 {
    font-size: 3rem;
    margin-bottom: 50px
  }

  #content1 p {
    font-size: 2rem
  }

  #interview-page .interviewee-list__item__company {
    font-size: 1.5rem;
    margin-top: 10px
  }

  #interview-page .interviewee-list__item__name {
    font-size: 2.5rem
  }

  #interview-page .interviewee-list__item__name__en {
    font-size: 2rem;
    margin-left: 20px
  }

  .index-list {
    margin-top: 72px
  }

  .interview-head {
    font-size: 3.5rem;
    letter-spacing: .06em;
    line-height: 1.4285;
    margin-bottom: 64px;
    position: relative
  }

  .interview-head::before {
    width: 36px;
    height: 2px;
    bottom: -24px
  }

  #interview-page .interview-text p {
    font-size: 1.6rem;
    letter-spacing: .06em;
    line-height: 1.875
  }

  #interview-page .interview-text.d-flex-pc p {
    max-width: 440px
  }

  #interview-page .interview-text+h3 {
    margin-top: 80px
  }

  #interview-page .interview-text+.interview-text {
    margin-top: 40px
  }

  #interview-page #content2,
  #interview-page #content3 {
    margin-top: 170px
  }

  #interview-page .d-flex-pc .interview-text__img {
    width: calc(100% - 470px)
  }

  .interview-text__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }

  #interview-page.interview1 .content2-4,
  #interview-page.interview1 .content3-3 {
    margin-top: 70px;
    display: block
  }

  #interview-page.interview1 .interview-text__2-1,
  #interview-page.interview1 .interview-text__3-1,
  #interview-page.interview2 .interview-text__3-3 {
    width: calc(310px + 50vw)
  }

  #interview-page.interview1 .interview-text__2-2,
  #interview-page.interview1 .interview-text__3-2 {
    flex-direction: row-reverse
  }

  #interview-page.interview1 .interview-text__2-4 p,
  #interview-page.interview1 .interview-text__2-5 p {
    max-width: 100%
  }

  #interview-page.interview2 #content2 {
    margin-bottom: 100px
  }

  #interview-page.interview2 #content3 {
    margin-top: 100px
  }

  #content4 {
    background: url(../images/interview1/interview-bg.webp) no-repeat top left/cover;
    padding: 19vw 0 16vw;
    margin-top: -16vw
  }

  #content4 .content4-img {
    width: 80%;
    max-width: 1090px
  }

  #interview-page #content4 .banner {
    width: 90%;
    margin-top: 90px
  }

  #interview-page #content4 .banner a {
    width: calc(50% - 40px)
  }
}

.scroll-fadein {
  opacity: 0;
  transition-property: opacity;
  transition-duration: .8s;
  position: relative;
  z-index: 1
}

.scroll-fadein.active {
  opacity: 1
}

.delay-1 {
  transition-delay: .5s !important
}

.delay-2 {
  transition-delay: 1s !important
}

.delay-3 {
  transition-delay: 1.5s !important
}

.delay-4 {
  transition-delay: 2s !important
}

.carousel-wrapper {
  width: 110vw;
  transform: rotate(-9deg);
  margin: 0 0 3rem -5vw;
  position: relative;
  z-index: 1
}

.swiper-wrapper {
  transition-timing-function: linear !important
}

.card {
  transform: rotate(9deg)
}