@charset "utf-8";

/* CSS Document */

/***********
homeContents
************/

.homeContents {
  position: relative;
}

.homeContents-bg {
  background: url(../../img/bg01.jpg) no-repeat center top / cover;
  background-color: var(--color-brand04);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 120lvh;
  pointer-events: none;
}

@media screen and (max-width:834px) {

  .homeContents-bg {
    background: url(../../img/bg01_lg.jpg) no-repeat center bottom / max(100%,480px) auto;
    background-color: var(--color-brand04);
  }

}

/***********
mainVisual
************/

.mainVisual {
  width: 100%;
  height: 100svh;
  position: relative;
  color: var(--color-base);
}
.mainVisual-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--header-height) 5vw 0;
  font-size: clamp(14px,1vw, 30px);
}

.mainVisual-heading {
  padding: 1em 0 1em 2em;
  border-left: 0.3em solid var(--color-base);
  opacity: 0;
}
body.is-loaded .mainVisual-heading {
  opacity: 1;
  transition: opacity 1.2s ease 0.1s;
}

.mainVisual-logo {
  width: 27em;
}
.mainVisual-title {
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  padding-top: 1em;
}

.mainVisual-lead {
  padding-top: 1em;
  white-space: nowrap;
}
.mainVisual-lead-item {
}
.mainVisual-lead-text {
  display: inline-block;
  color: var(--color-brand02);
  background-color: var(--color-base);
  font-weight: 600;
  font-size: 180%;
  font-feature-settings: "palt";
  letter-spacing: 0.02em;
  padding: 0 0.2em;
  margin-bottom: 0.2em;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
}
.mainVisual-lead-text span {
  display: inline-block;
  opacity: 0;
  translate: 0 20%;
  transition: 0.5s;
  scale: 1 0.7;
  transform-origin: bottom;
}

body.is-loaded .mainVisual-lead-text {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
body.is-loaded .mainVisual-lead-item:nth-child(2) .mainVisual-lead-text {
  transition-delay: 0.7s;
}
body.is-loaded .mainVisual-lead-text span {
  opacity: 1;
  translate: 0 0;
  scale: 1 1;
}

@media screen and (max-width:834px) {

  .mainVisual-container {
    font-size: clamp(8px,2.6vw, 18px);
    padding: 0 3vw 0;
  }

  .mainVisual-heading {
    padding: 1em 0 1em 1em;
  }
  body.is-loaded .mainVisual-heading {
  }

  .mainVisual-logo {
    width: 14em;
  }
  .mainVisual-title {
    font-weight: 500;
  }

  .mainVisual-lead {
    font-size: 90%;
  }


}


/***********
homeAbout
************/

.homeAbout {
  padding: min(7vw,3em) 5vw min(18vw,12em);
  position: relative;
  z-index: 2;
  color: var(--color-base);
  font-size: clamp(1rem,calc(8px + 0.6vw), 1.4rem);
}
.homeAbout-container {
  display: flex;
  align-items: center;
  gap: 0 7%;
}
.homeAbout-visual {
  width: 50%;
  display: flex;
  align-items: start;
}
.homeAbout-img01 {
  width: 66%;
}
.homeAbout-img01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 75 / 100;
}
.homeAbout-img02 {
  flex: 1;
  padding-top: 60%;
}
.homeAbout-img02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 90 / 100;
}
.homeAbout-img02-inner {
  margin-left: -45%;
}
.homeAbout-inner {
  flex: 1;
}
.homeAbout-heading {
  font-family: var(--font-family-gothic-en);
  font-weight: 100;
  font-size: 500%;
  letter-spacing: -0.04em;
  padding-bottom: 0.2em;
  white-space: nowrap;
}
.homeAbout-heading em {
  font-weight: 500;
  font-style: normal;
}

.homeAbout-box {
  max-width: 32em;
}
.homeAbout-text {
  line-height: 2.5;
  text-align: justify;
}
.homeAbout-link {
  text-align: center;
  padding-top: 3em;
}
.l-btn.homeAbout-btn {
  font-size: 100%;
}

@media screen and (max-width:834px) {

  .homeAbout {
    padding: min(7vw,3em) 5vw min(18vw,12em);
    position: relative;
    z-index: 2;
    color: var(--color-base);
    font-size: 1rem;
  }
  .homeAbout-container {
    display: block;
  }
  .homeAbout-visual {
    width: auto;
  }

  .homeAbout-img01 {
    width: 66%;
  }
  .homeAbout-img01 img {
    aspect-ratio: 16 / 18;
  }
  .homeAbout-img02 {
    padding-top: 60%;
  }
  .homeAbout-img02 img {
    aspect-ratio: 16 / 12;
  }
  .homeAbout-img02-inner {
    margin-left: -55%;
  }
  .homeAbout-inner {
    flex: 1;
    padding-top: 1em;
  }
  .homeAbout-heading {
    font-size: 3rem;
  }

  .homeAbout-box {
    max-width: initial;
  }
  .homeAbout-text {
    line-height: 2;
    text-align: justify;
  }
  .homeAbout-link {
    padding-top: 3em;
  }
  .l-btn.homeAbout-btn {
    font-size: 1rem;
  }

}


/***********
homeNews
************/

.homeNews {
}

.homeNews-heading {
  padding-bottom: 2em;
}
.homeNews-heading-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: -0.4em;
  position: relative;
  z-index: 2;
}
.homeNews-heading-title span{
  display: inline-block;
  min-width: 7em;
  background-color: var(--color-primary01);
  padding: 0.2rem 1rem 0;
}
.homeNews-heading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  font-size: 4.2rem;
  letter-spacing: -0.06em;
  line-height: 1.0;
}
.homeNews-heading-subTitle span{
  display: inline-block;
  background-color: var(--color-primary01);
  padding: 0.2rem 1rem 0.4rem 0.5rem;
}


.homeNews-link {
  padding-top: 3.5em;
  text-align: right;
}

@media screen and (max-width:834px) {


  .homeNews-heading-subTitle {
    font-size: 3rem;
  }

  .homeNews-link {
    padding-top: 3em;
    text-align: center;
  }


}


/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
