@charset "utf-8";

/* CSS Document */

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

.mainVisual {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.mainVisual-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  scale: 1.2;
  opacity: 0;
}
.mainVisual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

body.is-loaded .mainVisual-img {
  scale: 1;
  opacity: 1;
  transition:
   scale 1.8s cubic-bezier(0.22, 1, 0.36, 1),
   opacity 1.2s ease;
   ;
}

.mainVisual-container {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 9;
  font-size: clamp(15px,0.95vw, 24px);
  text-align: right;
  padding-right: 7em;
  padding-left: 1em;
  padding-bottom: 4em;
  user-select: none;
  opacity: 0;
}
body.is-loaded .mainVisual-container {
  opacity: 1;
}
.mainVisual-copy {
  font-family: var(--font-family-gothic-en);
  font-size: 640%;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  justify-content: end;
  gap: 0 0.15em;
  margin-bottom: 0.2em;
}
.mainVisual-copy-word {
}
.mainVisual-subLead {
  letter-spacing: 0.12em;
  font-weight: 700;
  line-height: 1.3;
}
.mainVisual-lead {
  font-weight: 900;
  font-size: 260%;
  margin-right: -0.15em;
  line-height: 1.3;
}


.mainVisual-stepText > span {
  display: inline-block;
  opacity: 0;
}
body.is-loaded .mainVisual-stepText > span {
  opacity: 1;
  transition: 2.5s;
}

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

  .mainVisual-container {
    font-size: clamp(10px,1.3vw, 15px);
    padding-inline: var(--padding-side);
  }

}

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

  .mainVisual-img {
    position: relative;
  }
  .mainVisual-img::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, transparent 60%, #fff 85%);
  }
  .mainVisual-container {
    font-size: clamp(10px,3.8vw, 18px);
    padding-right: var(--padding-side);
    padding-bottom: 4em;
  }
  .mainVisual-copy {
    font-size: 310%;
  }
  .mainVisual-subLead {
    letter-spacing: 0.12em;
    font-weight: 700;
    line-height: 1.3;
  }
  .mainVisual-lead {
    font-weight: 900;
    font-size: 195%;
    margin-right: -0.15em;
    line-height: 1.3;
  }

}

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

.homeIntro {
  max-width: 3000px;
  margin: 0 auto;
  padding-bottom: var(--padding-main);
}
.homeIntro-container {
  display: flex;
  flex-direction: row-reverse;
}
.homeIntro-inner {
  flex: 1;
  display: flex;
  justify-content: end;
  align-items: end;
}
.homeIntro-inner-box {
  width: 100%;
  max-width: 35em;
  padding-left: var(--padding-side);
  padding-right: 2em;
  padding-top: var(--padding-main);
}
.homeIntro-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.9;
  padding-top: 1em;
}

.homeIntro-visual {
  width: 55%;
  position: relative;
  z-index: 2;
}
.homeIntro-img {
  height: 100%;
}
.homeIntro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*
slider
*/

.homeIntro-ticker {
  overflow: hidden;
  margin-top: 6em;
}

.homeIntro-slider {
  position: relative;
  overflow: hidden;
  width: 300vw;
  margin-left: -200vw;
}
.homeIntro-slider-track {
  position: relative;
}

.homeIntro-slider-word {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  line-height: 1;
  font-size: clamp(5rem,9vw, 10rem);
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 0 0.1em;
}
.homeIntro-slider-word span {
  display: inline-block;
}

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

  .homeIntro {
  }
  .homeIntro-container {
    display: block;
  }
  .homeIntro-inner {
    display: block;
    padding-inline: 1.5em;
  }
  .homeIntro-inner-box {
    max-width: initial;
    padding-inline: 0;
    padding-top: var(--padding-main);
  }
  .homeIntro-text {
    font-size: 1rem;
    line-height: var(--lineheight-main);
  }

  .homeIntro-visual {
    width: 100%;
  }
  .homeIntro-img {
    height: 100%;
  }
  .homeIntro-img img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    aspect-ratio: 16 / 14;
  }

  /*
  slider
  */

  .homeIntro-ticker {
    margin-top: 2em;
  }

}

/***********
homePhilosophy
************/

.homePhilosophy {
  max-width: 3000px;
  margin: 0 auto;
  padding-bottom: var(--padding-large);
}
.homePhilosophy-container {
  display: flex;
  gap: 0 5%;
}
.homePhilosophy-inner {
  flex: 1;
}
.homePhilosophy-inner-box {
  width: 100%;
  padding-right: var(--padding-side);
  padding-top: var(--padding-main);
}
.homePhilosophy-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.9;
  padding-top: 1em;
}
.homePhilosophy-link {
  padding-top: 3em;
}

.homePhilosophy-visual {
  width: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
}
.homePhilosophy-img.-no01 {
  width: 70%;
  margin-top: 7%;
  padding-right: 3%;
}
.homePhilosophy-img.-no02 {
  width: 30%;
}
.homePhilosophy-img.-no03 {
  width: 95%;
  padding-left: 46%;
  margin-top: -25%;
}

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


  .homePhilosophy {
  }
  .homePhilosophy-container {
    display: block;
  }
  .homePhilosophy-inner {
    flex: 1;
    padding-inline: 1.5em;
  }
  .homePhilosophy-inner-box {
    width: 100%;
    padding-inline: 0;
    padding-top: var(--padding-main);
  }
  .homePhilosophy-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: var(--lineheight-main);
  }
  .homePhilosophy-link {
    padding-top: 2em;
    text-align: center;
  }

  .homePhilosophy-visual {
    width: 100%;
  }

}

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

.homeVisual {
  width: 100%;
  aspect-ratio: 16 / 7;
  position: relative;
}
.homeVisual-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.homeVisual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

  .homeVisual {
    aspect-ratio: 16 / 14;
  }

}
/***********
homeService
************/

.homeService {
  text-align: center;
  position: relative;
  z-index: 2;
  background: url(../../img/bg_drawing01.png) repeat center top / 100% auto;
  background-color: var(--color-brand01);
  padding-bottom: min(20vw,20em);
}


.homeService-visual {
  padding-top: var(--padding-large);
  height: 80vh;
}

.homeService-visual01 {
  display: flex;
  justify-content: center;
}
.homeService-visual02 {
  display: flex;
  justify-content: center;
  padding-top: 1em;
}
.homeService-img {
}
.homeService-img.-no01 {
  width: 18em;
  translate: -30em 0 ;
}
.homeService-img.-no02 {
  width: 24em;
  translate: 33em 0 ;
  margin-top: -3em;
}
.homeService-img.-no03 {
  width: 25em;
  translate: -33em 0 ;
}
.homeService-img.-no04 {
  width: 18em;
  translate: 30em 0 ;
  margin-top: -4em ;
}

/*
container
*/

.homeService-container {
  color: var(--color-base);
  position: relative;
  z-index: 9;
  padding-top: var(--padding-large);
}
.homeService-title {
  font-family: var(--font-family-gothic-en);
  font-size: clamp(4rem,7vw, 8rem);
  letter-spacing: -0.02em;
  line-height: 1;
}
.homeService-title-lead {
  display: block;
  white-space: nowrap;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
.homeService-title-lead + .homeService-title-lead {
  margin-top: -0.15em;
}

.homeService-title-lead > span {
  display: inline-block;
  opacity: 0;
  translate: 0 100%;
}
.homeService-title.is-show .homeService-title-lead > span {
  opacity: 1;
  transition: 1s ease;
  translate: 0 0;
}
.homeService-text {
  font-size: 1.1rem;
  line-height: 2;
  padding-top: 1.5em;
}

/*
list
*/

.homeService-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 6px;
  text-align: left;
  padding-top: 2em;
  counter-reset : homeService_num;
}
.homeService-list li {
}
.homeService-list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1em 2em 1em 3em;
  min-height: 6em;
  height: 100%;
  color: var(--color-main);
  text-decoration: none;
  background-color: var(--color-base);
  border-radius: 5px;
  line-height: 1.35;
  position: relative;
}
.homeService-list li a::before{
  display: inline-block;
  counter-increment:homeService_num;
  content: counter(homeService_num, decimal-leading-zero) ;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
  color: var(--color-brand01);
  font-size: 0.9rem;
}

.homeService-list li a::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  color: var(--color-brand01);
  position: absolute;
  right: 0.8em;
  top: 50%;
  translate: 0 -50%;
  scale: 0.9;
}
.homeService-list-subTitle {
  font-size: 0.8rem;
  padding-bottom: 0.2em;
}
.homeService-list-title {
  font-size: 1.2rem;
  font-weight: 600;
}
body.is-pc .homeService-list:has(a:hover) a {
  opacity: 0.5;
  filter: blur(2px);
}
body.is-pc .homeService-list li a:hover {
  opacity: 1;
  filter: blur(0);
}

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

  .homeService-img.-no01 {
    width: 15em;
    translate: -20em 0 ;
  }
  .homeService-img.-no02 {
    width: 18em;
    translate: 23em 0 ;
  }
  .homeService-img.-no03 {
    width: 20em;
    translate: -23em 0 ;
  }
  .homeService-img.-no04 {
    width: 15em;
    translate: 20em 0 ;
  }

  /*
  container
  */

  .homeService-container {
    max-width: 640px;
    margin: 0 auto;
  }
  /*
  list
  */

  .homeService-list {
    grid-template-columns: repeat(2, 1fr);
  }

}

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

  .homeService {
    padding-bottom: min(15vw,10em);
    display: flex;
    flex-direction: column;
  }


  .homeService-visual {
    padding-top: var(--padding-large);
    height: auto;
    max-width: 520px;
    margin: 0 auto;
  }

  .homeService-visual01 {
    display: flex;
    justify-content: center;
  }
  .homeService-visual02 {
    display: flex;
    justify-content: center;
    padding-top: 1em;
  }
  .homeService-img {
  }
  .homeService-img.-no01 {
    width: 50%;
    padding-right: 5%;
    translate: 0 0 ;
  }
  .homeService-img.-no02 {
    width: 50%;
    translate: 0 0 ;
    margin-top: -3em;
  }
  .homeService-img.-no03 {
    width: 50%;
    translate: 0 0 ;
    margin-top: 0;
  }
  .homeService-img.-no04 {
    width: 50%;
    padding-left: 5%;
    translate: 0 0 ;
    margin-top: -5em;
  }

  /*
  container
  */

  .homeService-container {
    color: var(--color-base);
    position: relative;
    z-index: 9;
  }
  .homeService-title {
    font-size: clamp(2rem,15vw, 4rem);
  }

  .homeService-text {
    font-size: 1rem;
    line-height: var(--lineheight-main);
  }

}

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

    .homeService-list {
      grid-template-columns: repeat(1, 1fr);
      gap: 5px 0;
      padding-inline: 3vw;
      padding-top: 2em;
    }
    .homeService-list li a {
      padding: 1em 2em 1em 3em;
      min-height: 5.5em;
    }
    .homeService-list-subTitle {
      font-size: 0.9rem;
      padding-bottom: 0.2em;
    }
    .homeService-list-title {
      font-size: 1.3rem;
    }

}
/***********
homeProduct
************/

.homeProduct {
  text-align: center;
}

.homeProduct-wheel01 {
  position: absolute;
  right: 100%;
  top: 4em;
  translate: 50% 0 ;
}
.homeProduct-wheel02 {
  position: absolute;
  left: 100%;
  bottom: 4em;
  translate: -100% 0 ;
}

.homeProduct-visual {
  margin-bottom: -5%;
  mix-blend-mode: multiply;
}

.homeProduct-subTitle-lead {
  display: block;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-size: clamp(3rem,7vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
  position: relative;
  z-index: 9;
}
.homeProduct-subTitle-lead > span {
  display: inline-block;
  opacity: 0;
  translate: 0 100%;
}
.homeProduct-subTitle.is-show .homeProduct-subTitle-lead > span {
  opacity: 1;
  transition: 1s ease;
  translate: 0 0;
}

.homeProduct-title {
  font-size: 1.1rem;
  font-weight: 500;
  padding-top: 1em;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.homeProduct-link {
  padding-top: 3em;
  text-align: center;
}


/*
slider
*/

.homeProduct-ticker {
  overflow: hidden;
  position: relative;
  z-index: 9;
}

.homeProduct-slider {
  position: relative;
  overflow: hidden;
  width: 300vw;
  margin-left: -200vw;
  margin-bottom: 1px;
}
.homeProduct-slider-track {
  position: relative;
}

.homeProduct-slider-item {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: clamp(600px,80vw, 1026px);
}

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

  .homeProduct {
  }

  .homeProduct-wheel01 {
    top: -4em;
    translate: 70% 0 ;
  }
  .homeProduct-wheel02 {
    bottom: 0em;
    translate: -70% 0 ;
  }

  .homeProduct-visual {
    margin-bottom: -2%;
    margin-left: -15%;
    margin-right: -15%;
  }

  .homeProduct-subTitle-lead {
    font-size: clamp(1.5rem,9.5vw, 4rem);
  }
  .homeProduct-subTitle-lead > span {
    display: inline-block;
    opacity: 0;
    translate: 0 100%;
  }

  .homeProduct-title {
    font-size: 1rem;
    line-height: var(--lineheight-main);
  }
  .homeProduct-link {
    padding-top: 2em;
  }


}



/***********
homeNews
************/

.homeNews {
  padding-bottom: 4em;
}

.homeNews-container {
  position: relative;
}

.homeNews-heading {
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-size: clamp(3rem,7vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  padding-bottom: 0.4em;
}
.homeNews-heading-title {
  display: inline-block;
  font-size: 100%;
  position: relative;
}

.homeNews-heading-wheel {
  position: absolute;
  left: -0.3em;
  top: 0.5em;
}
.homeNews-heading-wheel .l-wheel {
  translate: -50% -50%;
}


.homeNews-link {
  position: absolute;
  right: 0;
  top: 0;
}

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

  .homeNews {
    padding-bottom: 2em;
  }


  .homeNews-heading {
    font-size: clamp(1.5rem,9.5vw, 4rem);
    margin-left: 1rem;
  }
  .homeNews-heading-title {
    display: inline-block;
    font-size: 100%;
    position: relative;
  }

  .homeNews-heading-wheel {
    position: absolute;
    left: -0.3em;
    top: 0.5em;
  }
  .homeNews-heading-wheel .l-wheel {
    translate: -50% -50%;
  }

  .homeNews-link {
    position: static;
    padding-top: 2em;
    text-align: center;
  }
}



/***********
external
************/

.external {
  display: flex;
  overflow: hidden;
}
.external-section {
  width: 50%;
  height: 30vw;
  min-height: 25em;
  transition: width 0.3s ease;
}
body.is-pc .external-section:has(a:hover) {
  width: 55%;
}
.external-section a {
  display: block;
  height: 100%;
  position: relative;
  color: var(--color-base);
  text-decoration: none;
  position: relative;
}
.external-section a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
.external-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.external-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}
.external-heading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  text-align: center;
  padding-inline: 1em;
}
.external-heading-title {
  display: inline-block;
  text-align: left;
  white-space: nowrap;
  font-family: var(--font-family-gothic-en);
  font-size: clamp(3rem,7vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  padding-top: 0.8em;
}
.external-heading-title::before {
  content: attr(data-text)"";
  display: block;
  font-size: 40%;
  margin-bottom: -0.1em;
}
.external-heading-text {
  line-height: 1.7;
  padding-top: 0.5em;
}


.external-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 5%;
  bottom: 5%;
  font-size: 0.9rem;
  z-index: 9;
  width: 10em;
  aspect-ratio: 1 / 1;
}
.external-badge::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  background-color: var(--color-base);
  transition: 0.4s;
}

.external-badge-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  line-height: 1.3;
}
.external-badge-text::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900; /* fas */
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f08e";
  display: block;
  padding-top: 0.6em;
}
body.is-pc a:hover .external-badge::after {
  scale: 1.2;
}

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

  .external {
    display: block;
  }
  .external-section,
  body.is-pc .external-section:has(a:hover) {
    width: auto;
    height: 50vw;
    min-height: 21em;
    margin-bottom: 0.5px;
  }
  .external-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .external-heading {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
    text-align: center;
    padding-inline: 1em;
  }
  .external-heading-title {
    font-size: clamp(1.5rem,12vw, 3rem);
  }
  .external-heading-title::before {
    content: attr(data-text)"";
    display: block;
    font-size: 40%;
    margin-bottom: -0.1em;
  }
  .external-heading-text {
    line-height: 1.7;
  }
  .external-badge {
    position: absolute;
    right: 50%;
    bottom: 5%;
    translate: 50% 0 ;
    font-size: clamp(0.7rem,3.2vw, 0.9rem);
    width: 9em;
  }

}

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

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

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