@charset "utf-8";

/* CSS Document */

.object {
  transition: 2s;
}

/* WebKit系（Safari / iOSの全ブラウザも含む）で無効 */
@supports (-webkit-touch-callout: none) {
  .object {
    transition: 0s;
  }
}

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

.mainVisual {
  position: relative;
  min-height: 100svh;
  z-index: 9;
}

.mainVisual-object {
  mask-size: 100% 100%;
  overflow: hidden;
  position: absolute;
  animation: anim-objectFadeColor 40s infinite;
  opacity: 0;
  translate: 0 20%;
}
.mainVisual-object.-no01 {
  width: 40vw;
  mask-image: url(../../img/mask03.png);
  aspect-ratio: 1 / 1;
  left: 72vw;
  top: -28vw;
  animation-delay: -30s;
}
.mainVisual-object.-no02 {
  width: 18vw;
  mask-image: url(../../img/mask04.png);
  aspect-ratio: 1 / 1;
  left: 26vw;
  top: -6vw;
  animation-delay: -15s;
}
.mainVisual-object.-no03 {
  width: 33vw;
  mask-image: url(../../img/mask05.png);
  aspect-ratio: 73 / 68;
  left: -7vw;
  top: 14vw;
  transition-delay: 2s;
}

@keyframes anim-objectFadeColor {
  0%   { background-color: #cae8f5; }
  20%  { background-color: #cae8f5; }
  25%  { background-color: #acd3ff; }
  45%  { background-color: #acd3ff; }
  50%  { background-color: #fbd3c2; }
  70%  { background-color: #fbd3c2; }
  75%  { background-color: #fff9c3; }
  95%  { background-color: #fff9c3; }
  100% { background-color: #cae8f5; }
}

body.is-loaded .mainVisual-object{
  opacity: 0.9;
  translate: 0 0;
  transition: 3s;
}
body.is-loaded .mainVisual-object.-no01{
  transition-delay: 300ms;
}
body.is-loaded .mainVisual-object.-no02{
  transition-delay: 100ms;
}
body.is-loaded .mainVisual-object.-no03{
  transition-delay: 700ms;
}



/*
container
*/

.mainVisual-container {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  margin-left: 12em;
  padding-bottom: 2vw;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  font-size: clamp(0.8rem,0.9vw, 4rem);
}
.mainVisual-lead {
  font-size: 240%;
  font-weight: 700;
  font-family: var(--font-family-gothic);
  opacity: 0;
  display: inline-block;
  white-space: nowrap;
  position: relative;
}
body.is-loaded .mainVisual-lead {
  opacity: 1;
}
.mainVisual-lead::after {
  content: "";
  display: block;
  width:  6em;
  height: 6em;
  background: url(../../img/object/sprout.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: -0.8em;
  bottom: 1.5em;
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
}
body.is-loaded .mainVisual-lead::after {
  opacity: 1;
}

.mainVisual-lead-text {
}
.mainVisual-lead-text span {
  display: inline-block;
  opacity: 0;
  translate: 0 0.3em;
}
body.is-loaded .mainVisual-lead-text span {
  opacity: 1;
  translate: 0 0;
  transition: opacity 1s ease, translate 1s ease;
}

.mainVisual-topics {
  max-width: 34em;
  margin-top: 2em;
  margin-left: -1.5em;
  font-size: max(100%,1rem);
  opacity: 0;
  translate: 0 0.5em;
  transition: 0.8s ease 1s;
}
body.is-loaded .mainVisual-topics {
  opacity: 1;
  translate: 0 0;
}
.mainVisual-topics a {
  width: 100%;
  display: block;
  background-color: var(--color-highlight01-sub);
  color: var(--color-dark01);
  text-decoration: none;
  border-radius: 4em;
  padding: 1.5em 3em 2em;
  border: 1px solid var(--color-dark01);
  font-weight: 500;
}
.mainVisual-topics-data {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 0.5em;
}
.mainVisual-topics-time {
  display: inline-block;
  font-size: 85%;
  white-space: nowrap;
  padding-right: 0.8em;
}
.mainVisual-topics-cat {
  font-size: 80%;
}
.mainVisual-topics-title {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.5em;
  text-decoration-thickness: 1px;
  transition: 0.2s;
}
body.is-pc .mainVisual-topics a:hover{
}
body.is-pc .mainVisual-topics a:hover .mainVisual-topics-title {
  text-decoration-color: inherit;
}


/*
character
*/

.mainVisual-character {
  width: clamp(400px,36vw, 9999px);
  margin-left: max(50vw,620px);
  margin-top: -15%;
  position: relative;
  z-index: 9;
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
}
body.is-loaded .mainVisual-character {
  opacity: 1;
}



/*
slider
*/

.mainVisual-visual {
  --mv-visual-width: clamp(800px,55vw, 9999px);
  padding-top: var(--header-height);
  margin-left: 38vw;
  opacity: 0;
  translate: 0 5%;
}
body.is-loaded .mainVisual-visual{
  opacity: 1;
  translate: 0 0;
  transition: 3s ease 300ms;
}
.mainVisual-slider{
  -webkit-mask: url(../../img/mask01.png);
  mask: url(../../img/mask01.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
  position: relative;
  width: var(--mv-visual-width);
  aspect-ratio: 105 / 90;
}
.mainVisual-slider :not(.slick-dots) li{
  position: relative;
  width: var(--mv-visual-width);
  aspect-ratio: 105 / 90;
}
.mainVisual-img{
  width: var(--mv-visual-width);
  height: 100%;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.mainVisual-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainVisual-img.-zoom{
  transform-origin: center center;
}
.slick-animation .mainVisual-img.-zoom{
  animation: amin-mainVisual-zoom 7s linear forwards;
}
.mainVisual-img.-left{
  width: 110%;
  transform-origin: left center;
}
.slick-animation .mainVisual-img.-left{
  animation: amin-mainVisual-left 7s linear forwards;
}
.mainVisual-img.-right{
  width: 110%;
  transform-origin: right center;
}
.slick-animation .mainVisual-img.-right{
  animation: amin-mainVisual-right 7s linear forwards;
}
.mainVisual-img.-up{
  height: 110%;
}
.slick-animation .mainVisual-img.-up{
  animation: amin-mainVisual-up 7s linear forwards;
}
.mainVisual-img.-down{
  height: 110%;
}
.slick-animation .mainVisual-img.-down{
  animation: amin-mainVisual-down 7s linear forwards;
}

@keyframes amin-mainVisual-zoom {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.1;
  }
}
@keyframes amin-mainVisual-left {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -5% 0;
  }
}
@keyframes amin-mainVisual-right {
  0% {
    translate: -5% 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes amin-mainVisual-up {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 -5%;
  }
}
@keyframes amin-mainVisual-down {
  0% {
    translate: 0 -5%;
  }
  100% {
    translate: 0 0;
  }
}

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

  .mainVisual-container {
    margin-left: 5vw;
  }
  .mainVisual-character {
    width: clamp(200px,44vw, 9999px);
    margin-left: max(55vw,450px);
  }
  .mainVisual-visual {
    --mv-visual-width: clamp(400px,75vw, 9999px);
    margin-left: 22vw;
    translate: 0 5%;
  }

}

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

  .mainVisual {
    min-height: 100vw;
  }
  .mainVisual-object.-no01 {
    width: 60vw;
    left: 72vw;
    top: 20vw;
  }
  .mainVisual-object.-no02 {
    width: 38vw;
    left: 26vw;
    top: -24vw;
  }
  .mainVisual-object.-no03 {
    width: 63vw;
    max-width: 400px;
    left: -12vw;
    top: min(100vw,500px);
  }

  /*
  container
  */

  .mainVisual-container {
    margin-left: 5vw;
    padding-bottom: 0;
    height: 100%;
    min-height: initial;
    font-size: 1rem;
    position: static;
  }
  .mainVisual-lead {
    padding-top: 1em;
    font-size: clamp(1rem,6.5vw, 2rem);
  }
  body.is-loaded .mainVisual-lead {
    opacity: 1;
  }
  .mainVisual-lead::after {
    width:  5em;
    height: 5em;
    right: -1em;
    bottom: 1.5em;
  }
  body.is-loaded .mainVisual-lead::after {
    opacity: 1;
  }


  .mainVisual-topics {
    max-width: 34em;
    margin-top: 1em;
    margin-left: -0.5em;
    margin-right: 4vw;
    font-size: max(100%,1rem);
  transition: 0.8s ease 0.2s;
  }
  .mainVisual-topics a {
    border-radius: 4em;
    padding: 1em 2em 1.2em;
  }
  .mainVisual-topics-data {
    padding-bottom: 0.2em;
  }
  .mainVisual-topics-time {
    font-size: 80%;
    font-weight: 500;
    white-space: nowrap;
  }
  .mainVisual-topics-cat {
    font-size: 75%;
  }
  .mainVisual-topics-title {
    height: calc(1em * 1.5);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  /*
  character
  */

  .mainVisual-character {
    width: clamp(200px,46vw, 300px);
    margin-left: 0;
    margin-top: 0;
    position: absolute;
    left: 3vw;
    top: clamp(260px,65vw, 260px);
  }
  body.is-loaded .mainVisual-character {
    opacity: 1;
  }

  /*
  slider
  */
  .mainVisual-hero {
    display: flex;
    justify-content: end;
  }

  .mainVisual-visual {
    width: clamp(320px,102vw, 600px);
    padding-top: var(--header-height);
    margin-left: 0;
    margin-right: -7vw;
    margin-top: 20px;
    opacity: 0;
    translate: 0 5%;
  }

}

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

.homeIntro {
  margin-top: -10vw;
  padding-bottom: 5em;
  position: relative;
  z-index: 5;
}
.homeIntro-object {
  mask-size: 100% 100%;
  overflow: hidden;
  position: absolute;
  animation: anim-objectFadeColor 40s infinite;
  opacity: 0;
  translate: 0 5em;
}
.homeIntro-object.-no01 {
  width: 45vw;
  mask-image: url(../../img/mask06.png);
  aspect-ratio: 1 / 1;
  left: 76vw;
  top: -6vw;
  animation-delay: -60s;
  z-index: 1;
}

.homeIntro.is-show .homeIntro-object{
  opacity: 0.9;
  translate: 0 0;
  transition: 3s;
}
.homeIntro.is-show  .homeIntro-object.-no01{
  transition-delay: 300ms;
}

.homeIntro-container {
  display: flex;
  align-items: center;
  padding-left: 7vw;
  position: relative;
  z-index: 9;
}
.homeIntro-visual {
  width: 48%;
  opacity: 0;
  translate: 0 10%;
  padding-bottom: 50px;
  position: relative;
}
.homeIntro-visual::after {
  content: "";
  display: block;
  width: 44%;
  height: auto;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: -4%;
  bottom: 0;
  background: url(../../img/object/circle_text.png) no-repeat center center / 100% 100%;
  animation: anim-spin 60s linear infinite;
}
@keyframes anim-spin {
  0%   {rotate: 0;}
  0%   {rotate: 360deg;}
}

.homeIntro.is-show .homeIntro-visual{
  opacity: 1;
  translate: 0 0;
  transition: all 3s ease 0.3s;
}
.homeIntro-slider{
  -webkit-mask: url(../../img/mask02.png);
  mask: url(../../img/mask02.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 80 / 68;
}
.homeIntro-slider :not(.slick-dots) li{
  position: relative;
  width: 100%;
  aspect-ratio: 80 / 68;
}
.homeIntro-img{
  width: var(--mv-visual-width);
  height: 100%;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.homeIntro-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.homeIntro-img.-zoom{
  transform-origin: center center;
}
.slick-animation .homeIntro-img.-zoom{
  animation: amin-mainVisual-zoom 7s linear forwards;
}
.homeIntro-img.-left{
  width: 110%;
  transform-origin: left center;
}
.slick-animation .homeIntro-img.-left{
  animation: amin-mainVisual-left 7s linear forwards;
}
.homeIntro-img.-right{
  width: 110%;
  transform-origin: right center;
}
.slick-animation .homeIntro-img.-right{
  animation: amin-mainVisual-right 7s linear forwards;
}
.homeIntro-img.-up{
  height: 110%;
}
.slick-animation .homeIntro-img.-up{
  animation: amin-mainVisual-up 7s linear forwards;
}
.homeIntro-img.-down{
  height: 110%;
}
.slick-animation .homeIntro-img.-down{
  animation: amin-mainVisual-down 7s linear forwards;
}


.homeIntro-inner {
  flex: 1;
  padding-left: 5%;
}
.homeIntro-box {
  overflow: hidden;
}
.homeIntro-text {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1rem,1.9vw, 1.65rem);
  font-family: var(--font-family-gothic);
  line-height: 2.2em;
  background: url(../../img/hasen01.png) repeat 0 0 / auto 2.2em;
  padding-bottom: 2px;
}


.homeIntro-text span {
  display: inline-block;
  opacity: 0;
  translate: 0 0.3em;
}
.homeIntro.is-show span {
  opacity: 1;
  translate: 0 0;
  transition: opacity 1s ease, translate 1s ease;
}


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

  .homeIntro {
    margin-top: -5vw;
  }

}

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

  .homeIntro {
    margin-top: 0;
    padding-top: 3em;
    padding-bottom: 10em;
  }
  .homeIntro-object {
  }
  .homeIntro-object.-no01 {
    width: 45vw;
    left: 76vw;
    top: min(60vw,200px);
  }

  .homeIntro.is-show .homeIntro-object{
    opacity: 0.9;
    translate: 0 0;
    transition: 3s;
  }
  .homeIntro.is-show  .homeIntro-object.-no01{
    transition-delay: 300ms;
  }

  .homeIntro-container {
    display: block;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .homeIntro-visual {
    width: auto;
    max-width: 520px;
    padding: 0 20px 10px;
    margin: 0 auto;
    padding-bottom: 20px;
  }
  .homeIntro-visual::after {
    width: 45%;
  }


  .homeIntro-inner {
    flex: 1;
    padding-left: 0;
    padding-top: 1em;
  }
  .homeIntro-box {
    overflow: hidden;
    text-align: center;
  }
  .homeIntro-text {
    text-align: left;
    font-size: clamp(1rem,4vw, 1.3rem);
  }

}

/***********
homeContents
************/

.homeContents {
  background-color: var(--color-sub03);
  position: relative;
  z-index: 1;
}
.homeContents::after {
  content: "";
  display: block;
  width: 100%;
  height: 50vw;
  position: absolute;
  left: 0;
  top: -25vw;
  background: url(../../img/bg01.png) no-repeat center top / 100% 100%;
}
.homeContents-container {
  position: relative;
  z-index: 2;
}

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

  .homeContents::after {
    height: 50vw;
    top: -50vw;
    background: url(../../img/bg01.png) no-repeat center top / 200% 100%;
  }

}

/***********
homeExplore
************/

.homeExplore {
  position: relative;
  padding-bottom: var(--padding-main);
}
.homeExplore::before {
  content: "";
  display: block;
  width: 25vw;
  aspect-ratio: 95 / 100;
  background: url(../../img/object/tree01.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(50% + 540px);
  top: 6em;
}
.homeExplore::after {
  content: "";
  display: block;
  width: 25vw;
  aspect-ratio: 95 / 100;
  background: url(../../img/object/tree01.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  right: calc(50% + 540px);
  bottom: -14em;
}
.homeExplore-container {
  position: relative;
  z-index: 9;
}

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

.homeNews {
  position: relative;
}
.homeNews::after {
  content: "";
  display: block;
  width: 12em;
  aspect-ratio: 5 / 6;
  background: url(../../img/object/character03.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: calc(50% + 600px);
  top: -4em;
  pointer-events: none;
}



.homeNews-section {
  background-color: var(--color-base);
  border: 1px solid var(--color-main);
  border-radius: var(--rounded-main);
  position: relative;
  z-index: 2;
}
.homeNews-section::after {
  content: "";
  display: block;
  width: 12em;
  aspect-ratio: 5 / 6;
  background: url(../../img/object/character04.png) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: 2.5em;
  bottom: 1em;
  pointer-events: none;
}
.homeNews-section + .homeNews-section {
  margin-top: 5em;
}

.homeNews-heading {
  border-bottom: 1px solid var(--color-main);
  border-radius: var(--rounded-main) var(--rounded-main) 0 0;
  background-color: var(--color-sub03);
  text-align: center;
  position: relative;
  padding: 0.7em 1em 0.7em 2em;;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.homeNews-heading-title {
  font-family: var(--font-family-gothic);
}
.homeNews-heading-link {
}
.homeNews-headline-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0.5em 1em;
  background-color: var(--color-dark01);
  color: var(--color-base);
  font-size: 1rem;
  text-decoration: none;
  border-radius: 3em;
}
body.is-pc .homeNews-headline-btn:hover {
  background-color: var(--color-brand02);
}


.homeNews-container {
  padding: min(6vw,3em) min(7%,3em);
  display: flex;
}

.homeNews-block-navi {
  width: 20em;
  padding-right: 3em;
  padding-bottom: 11em;
  position: relative;
}

.homeNews-cat {
}
.homeNews-cat li {
  padding: 0.4em 1em 0.4em 2.2em;
  margin-bottom: 0.6em;
  background-color: transparent;
  font-weight: 500;
  cursor: pointer;
  border-radius: 3em;
  position: relative;
  transition: 0.2s;
}
.homeNews-cat li::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0.6em;
  top: 50%;
  translate: 0 -50%;
  background-color: #64c3e9;
  border-radius: 50%;
  border: 0.25em solid #afe8ff;
  scale: 0.9;
  opacity: 0;
}

.homeNews-block-inner {
  flex: 1;
  margin-top: -1em;
}

body.is-pc .homeNews-cat li:hover,
.homeNews-cat li.is-active {
  background-color: #e3f3fb;
}
.homeNews-cat li.is-active::after {
  opacity: 1;
}


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


  .homeNews {
    position: relative;
  }
  .homeNews::after {
    display: none;
  }
  .homeNews-section::after {
    display: none;
  }
  .homeNews-section + .homeNews-section {
    margin-top: 5em;
  }

  .homeNews-heading {
    padding: 0.7em 1em 0.7em 1em;
    font-size: 1.2rem;
  }
  .homeNews-heading-title {
    line-height: 1.3;
    text-align: left;
    padding-right: 0.5em;
  }
  .homeNews-heading-link {
  }
  .homeNews-headline-btn {
    padding: 0.5em 1em;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  body.is-pc .homeNews-headline-btn:hover {
    background-color: var(--color-brand02);
  }


  .homeNews-container {
    padding: min(6vw,2em) 0;
    display: block;
  }

  .homeNews-block-navi {
    width: auto;
    padding-right: 0;
    padding-bottom: 0;
    position: relative;
  }

  .homeNews-cat {
    display: flex;
    overflow: auto;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-bottom: min(6vw,2em);
    border-bottom: 1px solid var(--color-sub04);
  }
  .homeNews-cat li {
    padding: 0.4em 1em 0.4em 1em;
    margin-bottom: 0;
    margin-right: 5px;
    white-space: nowrap;
    background-color: #e3f3fb;
  }
  .homeNews-cat li::after {
    display: none;
  }

  .homeNews-block-inner {
    margin-top: 0;
    padding: 0 min(4%,2em);
  }

  body.is-pc .homeNews-cat li:hover,
  .homeNews-cat li.is-active {
    background-color: var(--color-brand02);
    color: var(--color-base);
  }


}


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

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

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

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