@charset "utf-8";

/* CSS Document */

/***********
mainVisual
************/

.mainVisual {
  --mv-height: 100svh;
  --mv-minHeight: 600px;
  position: relative;
  z-index: 9;
  height: var(--mv-height);
  min-height: var(--mv-minHeight);
  overflow: hidden;
}
.mainVisual-visual {
  height: 100%;
  display: flex;
  position: relative;
}
.mainVisual-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../../img/pattern01.png) repeat 0 0 / 8px auto;
  background-color: #fffb;
  opacity: 0;
}
body.is-loaded .mainVisual-visual::after {
  opacity: 1;
  transition: opacity 0.8s ease 1s;
}
.mainVisual-img {
  flex: 1;
  overflow: hidden;
}
.mainVisual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.2;
  opacity: 0;
  transition: 2s ease;
}
body.is-loaded .mainVisual-img img {
  opacity: 1;
  scale: 1;
}
body.is-loaded .mainVisual-img:nth-child(2) img {
  transition-delay: 0.2s;
}
.mainVisual-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.mainVisual-block {
  padding-top: 5em;
}
.mainVisual-credit {
  width: clamp(300px,30vw, 700px);
  margin-inline: auto;
}
.mainVisual-title {
  width: clamp(260px,24vw, 600px);
  margin-inline: auto;
  padding-top: 3vw;
}

@media screen and (max-width:834px) {

  .mainVisual {
    --mv-height: 80svh;
    --mv-minHeight: 500px;
  }
  .mainVisual-visual::after {
    background-size: 5px auto;
  }

  .mainVisual-img img[src*="img/mv_nu.jpg"] {
    object-position: 80% center;
  }

  .mainVisual-block {
    padding-top: 3em;
  }
  .mainVisual-credit {
    width: clamp(200px,80vw, 350px);
    margin-inline: auto;
  }
  .mainVisual-title {
    width: clamp(180px,70vw, 300px);
    margin-inline: auto;
    padding-top: 1em;
  }

}


/***********
homeNews
************/

.homeNews {
  padding-top: var(--padding-large);
  padding-bottom: var(--padding-main);
  overflow: hidden;
}
.homeNews-container {
  display: flex;
  gap: 0 6%;
  position: relative;
}
.homeNews-container::after {
  content: attr(data-text)"";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 100;
  font-size: 4.8em;
  color: var(--color-brand02);
  letter-spacing: 0.05em;
  position: absolute;
  left: 0;
  top: 0;
  translate: -2.2em -60%;
  opacity: 0.2;
  pointer-events: none;
  white-space: nowrap;
}
@media screen and (max-width:1560px) {
  .homeNews-container::after {
    translate: -3vw -60%;
  }
}
@media screen and (max-width:1280px) {
  .homeNews-container::after {
    translate: 0 -60%;
  }
}
.homeNews-section {
  flex: 1;
}
.homeNews-heading {
  font-size: 1.25em;
  font-weight: 500;
  color: var(--color-brand02);
  padding-bottom: 0.8em;
}

@media screen and (max-width:834px) {

  .homeNews {
  }
  .homeNews-container {
    display: block;
  }
  .homeNews-container::after {
    font-size: clamp(2em,12vw, 3.5em);
    translate: -2vw -55%;
  }
  .homeNews-section {
    flex: 1;
  }
  .homeNews-section + .homeNews-section {
    margin-top: var(--padding-small);
  }
  .homeNews-heading {
    font-size: 1.4em;
  }


}

/***********
homeAbout
************/

.homeAbout {
  background-color: var(--color-sub04);
  padding-block: var(--padding-main);
}
.homeAbout-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 0 5%;
}
.homeAbout-visual {
  width: 50%;
}
.homeAbout-img {
  position: sticky;
  top: 7em;

}
.homeAbout-inner {
  flex: 1;
  padding-top: 2em;
}
.homeAbout-heading {
  font-size: 2rem;
  padding-bottom: 0.6em;
  color: var(--color-brand02);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.homeAbout-text {
  line-height: 2;
}
.homeAbout-credit {
  max-width: 25em;
  padding-top: 3em;
}


.homeAbout-banner {
}
.homeAbout-banner a {
  display: inline-flex;
  width: 100%;
  max-width: 27em;
  align-items: center;
  gap: 0 1.5em;
  background-color: var(--color-secondary01);
  border-radius: 8px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  color: var(--color-brand02);
  text-decoration: none;
}
body.is-pc .homeAbout-banner a:hover {
  background-color: var(--color-secondary02);
}
.homeAbout-banner-img {
  width: 100px;
}
.homeAbout-banner-inner {
  flex: 1;
  position: relative;
}
.l-arrow.homeAbout-banner-arrow {
  position: absolute;
  right: 1.5em;
  top: 50%;
}
.homeAbout-banner-title {
  font-size: 1.1em;
  font-weight: 500;
}
.homeAbout-banner-text {
  font-size: 0.75em;
}


.homeAbout-link {
  display: inline-flex;
  gap: 1em;
  width: 100%;
  max-width: 28em;
}

.homeAbout-link li {
}
.homeAbout-link li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.05em;
  font-weight: 500;
  width: 8em;
  aspect-ratio: 1 / 1;
  background-color: var(--color-base);
  border-radius: 50%;
  text-decoration: none;
  color: var(--color-brand02);
  box-shadow: 0.3em 0.3em 0 #0062B522;
  transition: 0.3s;
}
.homeAbout-link-text {
}
.l-arrow.homeAbout-link-arrow {
  margin: 1.2em auto 0;
  font-size: 90%;
}
body.is-pc .homeAbout-link li a:hover {
  background-color: var(--color-brand02);
  color: var(--color-base);
}
body.is-pc .homeAbout-link li a:hover .l-arrow.homeAbout-link-arrow::before,
body.is-pc .homeAbout-link li a:hover .l-arrow.homeAbout-link-arrow::after {
  background-color: var(--color-base);
}

@media screen and (max-width:834px) {


  .homeAbout {
  }
  .homeAbout-container {
    display: block;
  }
  .homeAbout-visual {
    width: auto;
  }
  .homeAbout-img {
    position: relative;
    top: 0;
    width: clamp(200px,90vw, 400px);
    margin: 0 auto;

  }
  .homeAbout-inner {
  }
  .homeAbout-heading {
    font-size: 1.6rem;
  }
  .homeAbout-text {
    line-height: 1.8;
  }
  .homeAbout-credit {
    max-width: 20em;
    padding-top: 2em;
    margin-inline: auto;
  }


  .homeAbout-banner {
    text-align: center;
  }
  .homeAbout-banner a {
    text-align: left;
    width: 100%;
    max-width: 25em;
  }

  .homeAbout-banner-img {
    width: 90px;
  }


  .homeAbout-link {
    gap: 0 0.6em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    margin-inline: calc(var(--padding-side) * -1);
    max-width: initial;
  }

  .homeAbout-link li a {
    font-size: 1em;
    width: 8em;
  }

}

/***********
homeLink
************/

.homeLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em 2.5em;
  text-align: center;
}
.homeLink li {
  width: 17em;
}
.homeLink li a{
  display: block;
  color: var(--color-brand02);
  text-decoration: none;
}
.homeLink-img {
  width: 90%;
  margin: 0 auto;
}
.homeLink-img img {
  transition: 0.3s;
}
body.is-pc .homeLink li a:hover .homeLink-img img {
  scale: 1.05;
}
.homeLink-text {
  font-size: 1.15em;
  font-weight: 500;
  padding-top: 0.8em;
}

@media screen and (max-width:834px) {

  .homeLink {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em 0.5em;
    text-align: center;
  }
  .homeLink li {
    width: 11em;
  }
  .homeLink li a{
  }
  .homeLink-img {
  }
  .homeLink-text {
    font-size: 1.05em;
  }
}

@media screen and (max-width:520px) {

  .homeLink {
    display: block;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
    padding-bottom: 2em;
  }
  .homeLink li {
    width: 100%;
  }
  .homeLink li + li {
    padding-top: 1em;
  }
  .homeLink li a{
    display: flex;
    gap: 0 1.5em;
    justify-content: center;
    align-items: center;
  }
  .homeLink-img {
    width: 7.8em;
  }
  .homeLink-text {
    flex: 1;
    text-align: left;
    font-size: 1.2em;
    padding-top: 0;
  }
}

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
