@charset "utf-8";

/* CSS Document */


/***********
mainVisual
************/

.mainVisual {
  position: relative;
  width: 100%;
  height: 200svh;
  overflow: hidden;
}



.mainVisual-video {
  width: 100dvw;
  height: 100svh;
  position: fixed;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  z-index: 1;
  object-fit: cover;
  opacity: 0;
  transition: 0.4s !important;
  clip-path: polygon(6% 18vw, 94% 18vw, 94% 100%, 6% 100%);
}
.mainVisual-movie {
  transition-delay: 0s !important;
}
.mainVisual-movie.is-scroll01 .mainVisual-video {
  clip-path: polygon(4% 12vw, 96% 12vw, 96% 100%, 4% 100%);
}
.mainVisual-movie.is-scroll02 .mainVisual-video {
  clip-path: polygon(2% 6vw, 98% 6vw, 98% 100%, 2% 100%);
}
.mainVisual-movie.is-scroll03 .mainVisual-video {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}


.mainVisual-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.mainVisual.is-end .mainVisual-container {
  opacity: 0;
}

.mainVisual-lead {
  width: 58dvw;
  position: absolute;
  left: 8vw;
  top: 170px;
  transition: 0.6s ;
  color: var(--color-brand02);
}


.mainVisual-symbol {
  width: 40dvw;
  position: absolute;
  right: -2%;
  top: 100px;
  transition: 0.6s ;
}
.mainVisual-symbol-svg {
  opacity: 0;
  fill: var(--color-brand01);
}

/*
first
*/

body.is-first .mainVisual-lead-svg {
  opacity: 0;
  scale: 1.2 1.2;
}
body.is-loaded .mainVisual-lead-svg {
  opacity: 1;
  scale: 1 1;
  transition: 1s;
  transition-delay: 0s;
}
body.is-first.is-loaded .mainVisual-lead-svg {
  opacity: 1;
  scale: 1 1;
  transition: 1s;
  transition-delay: 0.2s;
}

body.is-first .mainVisual-symbol-svg {
  opacity: 0;
  scale: 1.2 1.2;
}
body.is-loaded .mainVisual-symbol-svg {
  opacity: 1;
  scale: 1 1;
  transition: 1s;
  transition-delay: 0s;
}
body.is-first.is-loaded .mainVisual-symbol-svg {
  opacity: 1;
  scale: 1 1;
  transition: 1s;
  transition-delay: 1.2s;
}

body.is-first .mainVisual-video {
  opacity: 0;
}
body.is-loaded .mainVisual-video {
  opacity: 1;
  transition: 1s;
  transition-delay: 0s;
}
body.is-first.is-loaded .mainVisual-video {
  opacity: 1;
  transition: 2s;
  transition-delay: 2.2s;
}

body.is-first .l-header {
  translate: 0 -100%;
}
body.is-first.is-loaded .l-header {
  translate: 0 0;
  transition: 1s;
  transition-delay: 2.2s;
}

@media screen and (max-width:1024px) {

  .mainVisual {
    height:200svh;
  }

  .mainVisual-video {
    width: 100dvw;
    height: 100lvh;
    position: fixed;
    left: 50%;
    bottom: auto;
    top: 50lvh;
    translate: -50% -50%;
    z-index: 1;
    object-fit: cover;
    transition: 0.6s ;
    clip-path: polygon(6% 18vw, 94% 18vw, 94% 100%, 6% 100%);
  }
  .mainVisual-video {
    clip-path: polygon(12% 24svmax, 88% 24svmax, 88% 74svmax, 12% 74svmax);
  }
  .mainVisual-movie.is-scroll01 .mainVisual-video {
    clip-path: polygon(8% 16svmax, 92% 16svmax, 92% 84svmax, 8% 84svmax);
  }
  .mainVisual-movie.is-scroll02 .mainVisual-video {
    clip-path: polygon(4% 8svmax, 96% 8svmax, 96% 92svmax, 4% 92svmax);
  }
  .mainVisual-movie.is-scroll03 .mainVisual-video {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .mainVisual-lead {
    width: 92dvw;
    max-width: 500px;
    left: 2vw;
    top: calc(3svmax + 70px);
  }

  .mainVisual-symbol {
    width: 60dvw;
    max-width: 300px;
    position: absolute;
    right: -3%;
    top: calc(100svh - min(52dvw,250px) );
    /* bottom: 5svmax; */
  }

}







/***********
hero
************/

.hero {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-height));
  min-height: 650px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero-wrapper {
  width: 100%;
  height: 100%;
}
.hero-container {
}

.hero-movie {
  width: 78vw;
  height: 100%;
  opacity: 0;
  transition: 1s;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-lead {
  width: 22vw;
  position: absolute;
  right: 0;
  top: 0;
  transition: 0.6s ;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.hero-lead-text {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
  font-family: var(--font-family-serif);
  font-size: clamp(239%,2vw, 500%);
  font-weight: 500;
  letter-spacing: 0.15em;
  padding-top: 0.5em;
  line-height: 1.8;
}
.hero-lead-text span {
  display: inline-block;
  opacity: 0;
  transition: 2s;
  translate: 0 0.2em;
}

.hero-symbol {
  width: 22vw;
  position: absolute;
  right: 2vw;
  bottom: 2vw;
  transition: 0.6s ;
  z-index: 9;
}
.hero-symbol-svg {
  opacity: 0;
  fill: var(--color-brand01);
  scale: 1.1;
}


body.is-loaded .hero-movie {
  opacity: 1;
  transition-delay: 0.3s;
}

body.is-loaded .hero-lead {
  opacity: 1;
}
body.is-loaded .hero-lead-text span {
  opacity: 1;
  translate: 0 0;
}

body.is-loaded .hero-symbol-svg {
  opacity: 1;
  scale: 1 1;
  transition: 1s;
}


@media screen and (max-width:1024px) {

  .hero {
    min-height: 500px;
  }

  .hero-movie {
    width: 70vw;
  }

  .hero-lead {
    width: 30vw;
  }

  .hero-lead-text {
    font-size: clamp(200%,3vw, 500%);
  }

  .hero-symbol {
    width: 30vw;
  }

}

@media screen and (max-width:640px) {


  .hero {
    width: 100%;
    height: auto;
    min-height: initial;
  }

  .hero-wrapper {
  }
  .hero-container {
    position: relative;
  }

  .hero-movie {
    width: 100%;
    height: 110vw;
    opacity: 0;
    transition: 1s;
  }
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-lead {
    width: auto;
    position: static;
    transition: 0.6s ;
    display: block;
  }

  .hero-lead-text {
    -webkit-writing-mode: horizontal-lr;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    font-size: clamp(154%,5.8vw, 200%);
    font-weight: 500;
    letter-spacing: 0.15em;
    padding: 1.5em 0 0.8em 0.4em;
    line-height: 1.6;
  }

  .hero-symbol {
    width: 40vw;
    right: 0;
    bottom: -6vw;
  }

}

/***********
homeBase
************/

.homeBase {
  background-color: var(--color-base);
  position: relative;
  z-index: 9;
}

/***********
homeTopics
************/

.homeTopics {
  border: 1px solid var(--color-brand01);
  border-right: none;
  border-left: none;
  background-color: var(--color-base);
  padding: 3em min(4vw,30px);
  font-size: clamp(116%,1.4vw, 154%);
  position: relative;
}
.homeTopics-container {
  max-width: 1600px;
  width: 74vw;
  margin: 0 auto;
}
.homeTopics-container a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.homeTopics-container a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow_rd.png) no-repeat center center / 100% auto;
  position: absolute;
  right: 2.5em;
  top: 50%;
  translate: 0 -50%;
  scale: 1.5;
  pointer-events: none;
  transition: 0.2s;
}
.homeTopics-container a[target="_blank"]::after {
  rotate: -45deg;
}
body.is-pc .homeTopics-container a:hover::after {
  right: 2em;
}
body.is-pc .homeTopics-container a[target="_blank"]:hover::after {
  right: 2em;
  margin-top: -0.5em;
}

.homeTopics-block {
  display: flex;
  align-items: center;
  position: relative;
}

.homeTopics-new {
  background-color: var(--color-brand01);
  color: var(--color-base);
  border-radius: 100%;
  padding: 0.3em 1.5em 0.25em;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  translate: -20% -30%;
  pointer-events: none;
}
.homeTopics-img {
  width: 30%;
  position: relative;
}
.homeTopics-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.homeTopics-inner {
  flex: 1;
  padding: 0 3em 0 5%;
}
.homeTopics-box {
  display: flex;
  align-items: start;
}
.homeTopics-time {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  color: var(--color-brand01);
  white-space: nowrap;
  padding-right: 1em;
  padding-top: 0.1em;
}
.homeTopics-cat {
  font-size: 85%;
}
.homeTopics-title {
  font-weight: 700;
  padding-left: 2em;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: 0.2s;
}
body.is-pc .homeTopics-container a:hover .homeTopics-title {
  text-decoration-color: var(--color-brand01);
  color: var(--color-brand01);
}

@media screen and (max-width:1280px) {

  .homeTopics-container {
    width: auto;
  }
  .homeTopics-box {
    display: block;
  }
  .homeTopics-title {
    padding-left: 0;
    margin-top: 0.8em;
  }
}

@media screen and (max-width:640px) {

  .homeTopics {
    padding: 2em min(4vw,30px);
    font-size: clamp(116%,1.4vw, 154%);
  }
  .homeTopics-container {
  }
  .homeTopics-container a {
    padding-right: 1.5em;
  }
  .homeTopics-container a::after {
    right: 1em;
    scale: 0.8;
  }
  .homeTopics-container a[target="_blank"]::after {
  }
  body.is-pc .homeTopics-container a:hover::after {
    right: 1em;
  }
  body.is-pc .homeTopics-container a[target="_blank"]:hover::after {
    right: 1em;
  }

  .homeTopics-block {
    display: flex;
    align-items: center;
    position: relative;
  }

  .homeTopics-new {
    font-size: 85%;
  }
  .homeTopics-img {
    width: 30%;
    position: relative;
  }
  .homeTopics-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }
  .homeTopics-inner {
    padding: 0 0 0 1em;
  }
  .homeTopics-box {
    display: block;
  }
  .homeTopics-time {
    padding-right: 0.5em;
    padding-top: 0.1em;
  }
  .homeTopics-cat {
    font-size: 77%;
  }
  .homeTopics-title {
    line-height: 1.4;
    max-height: calc(2em * 1.4);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

/***********
homeChallenge
************/

.homeChallenge {
  border-bottom: 1px solid var(--color-brand01);
  height: 12dvw;
  overflow: hidden;
}
.homeChallenge-ticker {
  display: flex;
}
.homeChallenge-item {
}
.homeChallenge-item img {
  height: 12dvw;
}

@media screen and (max-width:834px) {

  .homeChallenge {
    height: 22vmin;
    background-color: red;
  }
  .homeChallenge-item img {
    height: 22vmin;
  }
}

/***********
homeIntro
************/

.homeIntro {
  position: relative;
  min-height: calc(200lvh + 20vw);
  text-align: center;
  padding-top: 5em;
  padding-bottom: 5em;
  font-size: clamp(124%,1.3vw, 231%);
}
.homeIntro-container {
  position: sticky;
  top: 0;
  min-height: 100lvh;
  padding-top: 5em;
  transition: 0.4s;
}
.homeIntro-symbol {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 66vw;
}
.homeIntro-symbol::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  background: linear-gradient(155deg, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
}
.homeIntro-symbol-svg {
  fill: var(--color-brand01);
  opacity: 0.10;
}
.homeIntro-block {
  position: relative;
  z-index: 9;
  transition: 0.4s;
  font-family: var(--font-family-serif);
}
.homeIntro-heading {
  display: inline-block;
  font-size: 230%;
  font-weight: 500;
  padding-top: 0.2em;
  color: var(--color-brand01);
  border-top: 3px solid var(--color-brand01);
  position: relative;
}
.homeIntro-heading::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 3px;
  background-color: var(--color-brand01);
}
.homeIntro-text {
  font-weight: 500;
  font-family: var(--font-family-serif);
  font-size: max(80%,16px);
  padding-top: 2em;
  letter-spacing: 0.04em;
  line-height: 2.2;
}


.homeIntro-link {
  padding-top: 4em;
}

/*
gallery
*/

.homeIntro-gallery {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.homeIntro-gallery-img {
  position: absolute;
}
.homeIntro-gallery-img img {
  border-radius: 30px;
}
.homeIntro-gallery-img.-no01 {
  width: 18vw;
  right: calc(50% + 20em);
  top: 18em;
  z-index: 9;
}
.homeIntro-gallery-img.-no02 {
  width: 16vw;
  left: calc(50% + 18em);
  top: 6em;
  z-index: 9;
}
.homeIntro-gallery-img.-no03 {
  left: 20vw;
  left: calc(50% + 15em);
  top: 30em;
  z-index: 9;
}
.homeIntro-gallery-img.-no04 {
  width: 40vw;
  right: calc(50% + 16em);
  top: 42em;
  z-index: 9;
}


@media screen and (max-width:640px) {

  .homeIntro {
    padding-top: 0;
    padding-bottom: 5em;
    min-height: initial;
    font-size: clamp(100%,3.8vw, 154%);
    position: relative;
    overflow: hidden;
  }
  .homeIntro-container {
    position: relative;
    left: auto;
    top: auto;
    min-height: 100lvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transition: 0.4s;
    z-index: 99;
  }
  .homeIntro-symbol {
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    width: 120vw;
  }
  .homeIntro-symbol::after {
    display: none;
  }
  .homeIntro-symbol-svg {
    opacity: 0.05;
  }

  .homeIntro-block {
    transition: 0s;
  }

  .homeIntro-heading {
    font-size: 200%;
  }
  .homeIntro-text {
    font-size: 100%;
    padding: 2em 5vw;
    line-height: 2.2;
  }

  .homeIntro-link {
    padding-top: 2em;
  }

  /*
  gallery
  */

  .homeIntro-gallery {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding-top: 4em;
  }
  .homeIntro-gallery-img {
    position: static;
  }
  .homeIntro-gallery-img img {
    border-radius: 8px;
  }
  .homeIntro-gallery-img.-no01 {
    width: 52vw;
    padding-right: 6vw;
    padding-top: 12vw;
  }
  .homeIntro-gallery-img.-no02 {
    width: 48vw;
    padding-right: 8vw;
  }
  .homeIntro-gallery-img.-no03 {
    width: 100vw;
    padding-left: 55vw;
    margin-top: -15vw;
  }
  .homeIntro-gallery-img.-no04 {
    width: 100%;
    padding-left: 8vw;
    padding-right: 8vw;
    padding-top: 8vw;
  }

}

/***********
homeShop
************/

.homeShop {
  font-size: clamp(154%,1.4vw, 300%);
  position: relative;
  padding-bottom: 6em;
}
.homeShop-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.homeShop-heading {
  display: inline-block;
  white-space: nowrap;
  background-color: var(--color-base);
  color: var(--color-brand01);
  translate: 0 -0.8em;
  padding: 0 3em 1.5em;
}
.homeShop-heading-subTitle {
  font-family: var(--font-family-cursive);
  font-size: 440%;
  font-weight: 400;
  line-height: 1;
}
.homeShop-heading-title {
  font-weight: 600;
  font-size: 90%;
  font-family: var(--font-family-serif);
  color: var(--color-brand02);
  letter-spacing: 0.04em;
  padding-top: 0.4em;
}


.homeShop-lead {
  padding-top: 1.5em;
  padding-left: 3em;
}
.homeShop-lead-text {
  font-size: 139%;
  font-weight: 600;
  font-family: var(--font-family-serif);
  margin-top: 3px;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.homeShop-lead-text > span {
  display: inline-block;
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding: 0.1em 0.6em 0.2em;
}

.homeShop-gallery {
  height: 38vw;
  overflow: hidden;
}
.homeShop-ticker {
  display: flex;
}
.homeShop-ticker-item {
  padding: 0 2px;
}
.homeShop-ticker-item img {
  border-radius: 28px;
  width: 26vw;
  height: 38vw;
  object-fit: cover;
}


.homeShop-brand {
  padding-top: 3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.homeShop-brand li {
  padding: 0.8em;
}
.homeShop-brand li img {
  max-height: 4em;
}

.homeShop-link {
  padding-top: 2em;
  text-align: center;
}



.homeShop .swiper-wrapper {
  transition-timing-function: linear;
}
.homeShop .swiper .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width:834px) {

  .homeShop {
    font-size: clamp(116%,4.5vw, 200%);
    padding-bottom: 6em;
  }
  .homeShop-heading {
    padding: 0 1.5em 1em 1em;
    translate: 0 0;
  }
  .homeShop-heading-subTitle {
    font-size: 231%;
  }
  .homeShop-heading-title {
  }


  .homeShop-lead {
    padding-top: 1em;
    padding-left: 1em;
  }
  .homeShop-lead-text {
    font-size: 108%;
  }

  .homeShop-gallery {
    height: 40vmax;
  }
  .homeShop-ticker-item {
    padding: 0 1px;
  }
  .homeShop-ticker-item img {
    border-radius: 12px;
    width: 30vmax;
    height: 40vmax;
  }

  .homeShop-brand {
    padding-top: 1em;
    display: flex;
    justify-content: center;
  }
  .homeShop-brand li {
    padding: 0.4em;
  }
  .homeShop-brand li img {
    max-height: 3em;
  }

  .homeShop-link {
    padding-top: 1em;
    text-align: center;
  }

}

/***********
homeRecruit
************/

.homeRecruit {
  font-size: clamp(124%,1.4vw, 300%);
  position: relative;
  z-index: 9;
  overflow: hidden;
  padding-bottom: 5em;
}

.homeRecruit-movie {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.homeRecruit-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.homeRecruit::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(203, 3, 50, 0.9);
}
.homeRecruit-wrapper {
  position: relative;
  z-index: 10;
}


.homeRecruit-container {
}

.homeRecruit-heading {
  display: inline-block;
  white-space: nowrap;
  background-color: var(--color-base);
  color: var(--color-brand01);
  translate: 0 -0.8em;
  padding: 2em 3em 2em;
}
.homeRecruit-heading-subTitle {
  font-family: var(--font-family-cursive);
  font-size: 440%;
  font-weight: 400;
  line-height: 1;
}
.homeRecruit-heading-title {
  font-weight: 600;
  font-size: 90%;
  font-family: var(--font-family-serif);
  color: var(--color-brand02);
  letter-spacing: 0.04em;
  padding-top: 0.4em;
}





.homeRecruit-section {
  padding: 0 6em;
  margin-top: -3em;
  color: var(--color-base);
  display: flex;
  align-items: center;
}
.homeRecruit-section-inner {
  flex: 1;
  padding-top: 2em;
}
.homeRecruit-section-title {
  font-size: 154%;
  font-weight: 500;
  font-family: var(--font-family-serif);
  padding-bottom: 1em;
}
.homeRecruit-text {
  font-weight: 500;
  font-size: max(66%,15px);
  line-height: 2.5;
  letter-spacing: 0.06em;
}
.homeRecruit-section-visual {
  width: 54%;
  padding-left: 10%;
}
.homeRecruit-section-img {
}
.homeRecruit-section-img img {
  border-radius: 30px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 85 / 100;
}



.homeRecruit-link {
  text-align: right;
  padding-right: 3em;
  position: relative;
  z-index: 90;
}
.homeRecruit-link a {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 124%;
  font-weight: 500;
  font-family: var(--font-family-serif);
  width:  8.5em;
  height: 8.5em;
  padding-top: 0.5em;
  margin-top: -3em;
  color: var(--color-brand01);
  background-color: var(--color-base);
  border-radius: 50%;
  position: relative;
  transition: 0.4s;
}
.homeRecruit-link a::after {
  content: "";
  display: block;
  width: 144%;
  height: 144%;
  background: url(../../img/text_joinus.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: -22%;
  top: -22%;
  animation: anim-homeRecruitBtn 2s ease-in-out alternate infinite;
  pointer-events: none;
}
@keyframes anim-homeRecruitBtn {
  0%   {
    rotate: 10deg;
  }
  100% {
    rotate: -10deg;
  }
}
.homeRecruit-link-text {
}
.homeRecruit-link-text::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  scale: 0.8;
  margin: 0.2em auto 0;
  background: url(../../img/icon/arrow_rd.png) no-repeat 0 0 / 100% auto;
}

body.is-pc .homeRecruit-link a:hover  {
  scale: 1.05;
}
body.is-pc .homeRecruit-link a:hover .homeRecruit-link-text::after {
  animation: anim-arrowFade 0.5s ease-in-out 1;
}


@media screen and (max-width:1024px) {

  .homeRecruit-section {
    padding: 0 min(4vw,30px);;
    margin-top: -2em;
  }
  .homeRecruit-section-inner {
    padding-top: 1em;
  }
  .homeRecruit-section-title {
    font-size: 170%;
  }
  .homeRecruit-section-img img {
    border-radius: 20px;
  }

}


@media screen and (max-width:834px) {

  .homeRecruit {
    font-size: clamp(116%,4.5vw, 154%);
    padding-bottom: 1em;
  }

  .homeRecruit-heading {
    padding: 1em 1.5em 1em 1em;
  }
  .homeRecruit-heading-subTitle {
    font-size: 231%;
  }

  .homeRecruit-section {
    display: block;
  }
  .homeRecruit-section-inner {
    padding-top: 3em;
  }
  .homeRecruit-section-title {
    font-size: 154%;
  }
  .homeRecruit-text {
    font-size: 90%;
    font-weight: 500;
    line-height: 2;
  }
  .homeRecruit-section-visual {
    width: auto;
    padding-left: 0;
    padding-top: 2em;
    max-width: 520px;
    margin: 0 auto;
  }
  .homeRecruit-section-img img {
    border-radius: 12px;
    aspect-ratio: 16 / 10;
  }



  .homeRecruit-link {
    padding-right: 0;
  }
  .homeRecruit-link a {
    font-size: 116%;
    margin-top: -4em;
  }

}


/***********
homeIntv
************/

.homeIntv {
  padding-left: 2em;
  padding-right: 2em;
}
.homeIntv-heading {
  padding-left: 4em;
}
.homeIntv-heading-title {
  font-size: 185%;
  font-weight: 500;
  font-family: var(--font-family-serif);
  color: var(--color-base);
  line-height: 1;
  padding-bottom: 1em;
}
.homeIntv-container {
  border-radius: 10px;
  background-color: var(--color-base);
  padding: 3em 0 ;
  min-height: 10em;
  position: relative;
  overflow: hidden;
}
.homeIntv-container::after {
  content: "Interview";
  font-family: var(--font-family-cursive);
  font-weight: 400;
  font-size: 500%;
  color: var(--color-brand01);
  opacity: 0.05;
  white-space: nowrap;
  line-height: 1;
  position: absolute;
  right: 0.4em;
  top: 0.4em;
  pointer-events: none;
}

@media screen and (max-width:1280px) {

  .homeIntv {
    padding-left: min(4vw,30px);
    padding-right: min(4vw,30px);
  }
  .homeIntv-container {
    padding: 6em 0 2em;
  }
  .homeIntv-container::after {
    font-size: 8vw;
  }
}


@media screen and (max-width:640px) {

  .homeIntv-heading {
    padding-left: 0;
  }
  .homeIntv-heading-title {
    padding-bottom: 1em;
    font-size: 139%;
  }
  .homeIntv-container::after {
    font-size: 14vw;
    right: auto;
    top: 0.2em;
    left: -0.1em;
  }
  .homeIntv-container {
    padding: 4em 0 0.5em;
  }
}


/***********
homeHashtags
************/

.homeHashtags {
  font-size: clamp(124%,1.4vw, 300%);
  font-weight: 600;
  font-family: var(--font-family-serif);
  color: var(--color-brand01);
  padding: 1em 0;
  border-bottom: 1px solid var(--color-brand01);
  pointer-events: none;
  user-select: none;
}
.homeHashtags-ticker {
  display: flex;
}
.homeHashtags-ticker-item {
  padding: 0 1em;
  white-space: nowrap;
}
.homeHashtags-ticker-item::before {
  content: "#";
}


.homeHashtags .swiper-wrapper {
  transition-timing-function: linear;
}
.homeHashtags .swiper .swiper-slide {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width:834px) {

  .homeHashtags {
    font-size: clamp(139%,4vw, 170%);
    padding: 1.5em 0;
  }
  .homeHashtags-ticker-item {
    padding: 0 0.6em;
  }
}


/***********
homeInfo
************/

.homeInfo {
  display: flex;
  max-width: 2400px;
  margin: 0 auto;
}
.homeInfo-block {
  flex: 1;
  padding: 10em 5%;
}
.homeInfo-block:nth-child(1) {
  border-right: 1px solid var(--color-brand01);
}
.homeInfo-heading {
  font-size: clamp(300%,2.4vw, 500%);
  font-weight: 400;
  font-family: var(--font-family-cursive);
  color: var(--color-brand01);
  padding-bottom: 0.6em;
}
.homeInfo-movie {
}

.homeInfo-link {
  padding-top: 4em;
  text-align: center;
}

@media screen and (max-width:834px) {

  .homeInfo {
    display: block;
  }
  .homeInfo-block {
    padding: 4em 4%;
  }
  .homeInfo-block + .homeInfo-block {
    padding-top: 0;
  }
  .homeInfo-block:nth-child(1) {
    border-right: none;
  }
  .homeInfo-heading {
    font-size: clamp(200%,8vw, 300%);
    padding-bottom: 0.4em;
  }
  .homeInfo-link {
    padding-top: 2em;
  }
}


/***********
homeVisual
************/

.homeVisual {
  width: 100%;
  height: clamp(400px,40vw, 1000px);
  position: relative;
  overflow: hidden;
  z-index: 9;
}
.homeVisual-container {
  position: absolute;
  left: 0;
  bottom: 40vh;
  width: 100%;
  height: 120lvh;
}
.homeVisual-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.homeVisual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width:834px) {

  .homeVisual {
    height: clamp(300px,100vw, 600px);
  }
  .homeVisual-img {
    height: 100vmax;
    bottom: -20vmax;
  }

}

/***********
xxxxx
************/

/***********
xxxxx
************/
