@charset "utf-8";

/*--------------------------------------
  # font
--------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap');

/*
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
// <weight>: Use a value from 100 to 900
// <uniquifier>: Use a unique and descriptive class name

.outfit-<uniquifier> {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

/*--------------------------------------
  # header
--------------------------------------*/

@media print,
screen and (min-width: 950px) {

  body:not(.scroll) #header {
    transform: translateY(-100px);
  }
}

/*--------------------------------------
  # eyecatch
--------------------------------------*/

.eyecatch {
  position: relative;
  aspect-ratio: 1 / 1.43;
}

.eyecatch .eyecatch-txt {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: -4px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  filter: drop-shadow(4px 4px 0px #262626);
}

.eyecatch .eyecatch-txt h2 {
  display: contents;
}

.eyecatch .eyecatch-txt h2 .eyecatch-txt-item {
  display: flex;
  align-items: center;
  height: 1.8em;
  margin-bottom: 5px;
  padding: 0 15px 0 19px;
  color: #FFF;
  font-size: min(7.4vw, 6.3rem);
  font-weight: bold;
  background: var(--accent-color);
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.eyecatch .eyecatch-txt h2 .eyecatch-txt-item:nth-child(1) {
  transition: 0.8s 0.1s transform;
}

.eyecatch .eyecatch-txt h2 .eyecatch-txt-item:nth-child(2) {
  transition: 0.8s 0.3s transform;
}

.eyecatch:not(.show) .eyecatch-txt h2 .eyecatch-txt-item {
  transform: translateX(-105%);
}

.eyecatch .eyecatch-txt h2 .eyecatch-txt-item .small {
  font-size: 85.29%;
}

.eyecatch .eyecatch-img {
  position: absolute;
  z-index: 2;
  top: 22vw;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 1s 0.3s transform, 1s 0.3s opacity;
}

.eyecatch:not(.show) .eyecatch-img {
  transform: translateY(100px);
  opacity: 0;
}

.eyecatch .eyecatch-img img {
  display: block;
  max-width: none;
  width: 180%;
  margin-left: -33vw;
}

.eyecatch .eyecatch-nav {
  position: absolute;
  z-index: 3;
  top: 45px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  min-width: 260px;
}

.eyecatch .eyecatch-nav .eyecatch-nav-logo {
  margin-bottom: 70px;
}

.eyecatch .eyecatch-nav .eyecatch-nav-logo a {
  display: block;
  width: 242px;
  height: 0;
  padding-top: 70px;
  background: url(../img/site-title.svg) no-repeat center;
  background-size: contain;
  overflow: hidden;
  text-decoration: none;
}

.eyecatch .eyecatch-nav .eyecatch-nav-logo a:hover {}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 15px;
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px;
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item a.nav-item-name {
  display: block;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item a.nav-item-name:hover {
  color: var(--main-color);
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child {}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.open a.nav-item-name {
  color: var(--main-color);
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child a.nav-item-name:after {
  content: "\+";
  margin-left: 0.8em;
  font-size: 13px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0.6;
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child.open a.nav-item-name:after {
  content: "\f068";
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child a.nav-item-name:hover {}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child .child-nav {
  margin-top: 10px;
  padding: 10px 0;
  background: #f0f5fa;
  border-radius: 15px;
  transition: 0.2s;
  overflow: hidden;
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child:not(.open) .child-nav {
  height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  opacity: 0;
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child .child-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child .child-nav ul li {}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child .child-nav ul li a {
  display: block;
  padding: 3px 20px;
  font-size: 1.4rem;
}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.has-child .child-nav ul li a:hover {}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.hide-d {}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.hide-d a.nav-item-name {}

.eyecatch .eyecatch-nav ul.eyecatch-nav-wrapper .nav-item.hide-d a.nav-item-name:hover {}

@media print,
screen and (min-width: 950px) {
  .eyecatch {
    /* height: 100vh; */
    /* height: 115svh; */
    aspect-ratio: 1 / 0.64;
  }

  .eyecatch .eyecatch-txt {
    top: 20px;
    left: -8px;
    filter: drop-shadow(8px 8px 0px #262626);
  }

  .eyecatch .eyecatch-txt h2 {}

  .eyecatch .eyecatch-txt h2 .eyecatch-txt-item {
    margin-bottom: 10px;
    padding: 0 40px 0 48px;
    font-size: min(4.5vw, 6.3rem);
  }

  .eyecatch .eyecatch-txt h2 .eyecatch-txt-item .small {}

  .eyecatch .eyecatch-img {
    top: 150px;
  }

  .eyecatch .eyecatch-img img {
    width: 78%;
    margin-left: 0;
  }
}

/*--------------------------------------
  # node
--------------------------------------*/

.node {
  padding: 60px 0;
}

.node .node-wrapper {
  padding: 0 20px;
}

.node .node-wrapper>*:last-child {
  margin-bottom: 0;
}

.node h3 {
  margin-bottom: 40px;
  font-size: min(7.2vw, 4.2rem);
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  transition: 0.8s 0.2s;
}

.node:not(.scrollin) h3 {
  transform: translateY(150px);
  opacity: 0;
}

.node h3:after {
  content: '';
  display: block;
  width: 42px;
  margin: 10px auto 0;
  border-bottom: 8px dotted var(--main-color);
  filter: contrast(0.2) brightness(1.6);
  transition: 0.8s 0.7s;
}

.node:not(.scrollin) h3:after {
  width: 0;
}

.node .btn-block {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.node .btn-block a.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14em;
  height: 45px;
  color: #FFF;
  font-size: 1.7rem;
  font-weight: 600;
  background: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 100vw;
  text-decoration: none;
  line-height: 1.2;
  filter: drop-shadow(3px 3px 0px black);
}

.node .btn-block a.btn:after {
  content: "\f061";
  position: absolute;
  top: 50%;
  right: 0.7em;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

@media print,
screen and (min-width: 950px) {
  .node {
    padding: 120px 0;
  }

  .node .node-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .node .node-wrapper>*:last-child {}

  .node h3 {
    margin-bottom: 55px;
  }

  .node h3:after {
    width: 54px;
    margin-top: 16px;
    border-bottom: 10px dotted var(--main-color);
  }

  .node .btn-block {
    margin-top: 60px;
  }

  .node .btn-block a.btn {
    height: 48px;
    font-size: 2.0rem;
    filter: drop-shadow(4.5px 4.5px 0px #0d0d0d);
    transition: 0.2s;
  }

  .node .btn-block a.btn:after {}

  .node .btn-block a.btn:hover {
    transform: translateY(4px);
    filter: drop-shadow(0px 0px 0px rgba(13, 13, 13, 0));
  }

}

/*--------------------------------------
  # about
--------------------------------------*/

.node-about {
  background: linear-gradient(0deg, var(--bg-color), transparent);
  overflow: hidden;
}

.about-section {}

.about-section .about-section-inner {
  margin-bottom: 60px;
  transition: 0.8s 0.4s;
}

.about-section:not(.scrollin) .about-section-inner {
  transform: translateY(150px);
  opacity: 0;
}

.about-section .about-section-inner h3 {
  text-align: left;
  line-height: 1.4;
  font-size: min(7.2vw, 3.5rem);
  transform: none;
  opacity: 1;
}

.about-section .about-section-inner h3:after {
  display: none;
}

.about-section .about-section-inner p {}

.about-section .btn-block {}

.about-section .btn-block a.btn {}

.about-section .btn-block a.btn:hover {}

.about-section .about-section-img {
  transition: 0.8s 0.6s;
}

.about-section:not(.scrollin) .about-section-img {
  transform: translateX(150px);
  opacity: 0;
}

.about-section .about-section-img img {
  display: block;
  width: 100%;
}

@media print,
screen and (max-width: 949px) {
  .about-section .about-section-inner h3 .small-m {
    display: inline-block;
    margin-bottom: 0.2em;
    font-size: 75%;
  }
}


@media print,
screen and (min-width: 950px) {
  .node-about {}

  .about-section {
    display: flex;
  }

  .about-section .about-section-inner {
    width: 65%;
    margin: 55px 0 0;
    padding: 45px 20px 0 0;
  }

  .about-section .about-section-inner h3 {
    margin-bottom: 35px;
    font-size: min(3.0vw, 3.5rem);
  }

  .about-section .about-section-inner h3:after {}

  .about-section .about-section-inner h3 .small-m {}

  .about-section .about-section-inner p {
    font-size: 1.8rem;
  }

  .about-section .btn-block {
    margin-top: 35px;
    justify-content: left;
  }

  .about-section .btn-block a.btn {
    justify-content: left;
    margin-left: -3px;
    padding-left: 30px;
  }

  .about-section .btn-block a.btn:hover {}

  .about-section .about-section-img {
    flex: 1;
    margin: 0 0 0 -100px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 120px 100%, 120px 60px, 0 60px);
  }

  .about-section:not(.scrollin) .about-section-img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 0 60px, 0 60px);
  }

  .about-section .about-section-img img {
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 120px 100%, 120px 60px, 0 60px); */
  }
}

/*--------------------------------------
  # features
--------------------------------------*/

.node-features {}

.node.node-features .node-wrapper {
  position: relative;
  z-index: 1;
}

.features-section {
  padding-bottom: 60px;
}

.features-section h3 {}

.features-section ul.features-section-list {
  counter-reset: count 0;
  margin-top: 50px;
}

.features-section ul.features-section-list li {
  counter-increment: count 1;
  position: relative;
  margin-top: 40px;
  padding: 40px 0 15px;
  font-size: min(5.2vw, 2.2rem);
  font-weight: 700;
  border: 4px solid #CCC;
  line-height: 1.5;
  text-align: center;
}

.features-section ul.features-section-list li.smaller {
  line-height: 1.2;
}

.features-section ul.features-section-list li:nth-child(1) {
  transition: 0.8s 0.4s;
}

.features-section ul.features-section-list li:nth-child(2) {
  transition: 0.8s 0.5s;
}

.features-section ul.features-section-list li:nth-child(3) {
  transition: 0.8s 0.6s;
}

.features-section ul.features-section-list li:nth-child(4) {
  transition: 0.8s 0.7s;
}

.features-section ul.features-section-list li:nth-child(5) {
  transition: 0.8s 0.8s;
}

.features-section ul.features-section-list li:nth-child(6) {
  transition: 0.8s 0.9s;
}

.features-section ul.features-section-list:not(.scrollin) li {
  transform: translateY(150px);
  opacity: 0;
}

.features-section ul.features-section-list li:before {
  content: counter(count);
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.764em;
  height: 1.764em;
  color: #FFF;
  font-size: min(7.5vw, 3.4rem);
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  background: var(--main-color);
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

.features-section .btn-block {}

.features-section .btn-block a.btn {}

.features-section .btn-block a.btn:hover {}

@media print,
screen and (min-width: 950px) {
  .node-features {}

  .node.node-features .node-wrapper {}

  .features-section {}

  .features-section h3 {}

  .features-section ul.features-section-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .features-section ul.features-section-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 31.5%;
    padding: 50px 0 25px;
  }

  .features-section ul.features-section-list li.smaller {}

  .features-section ul.features-section-list li:before {}

  .features-section .btn-block {}

  .features-section .btn-block a.btn {}

  .features-section .btn-block a.btn:hover {}
}

/*--------------------------------------
  # decoration
--------------------------------------*/

.decoration {
  position: relative;
  z-index: 1;
  margin-bottom: -0.6em;
  height: 1.2em;
  font-size: min(20.8vw, 10.0rem);
  line-height: 1.2;
  overflow: hidden;
}

.decoration .decoration-inner {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--main-color);
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  white-space: nowrap;
  overflow: hidden;
  filter: contrast(0.2) brightness(1.6);
  user-select: none;
}

@media print,
screen and (min-width: 950px) {
  .decoration {}

  .decoration .decoration-inner {}
}

/*--------------------------------------
  # service
--------------------------------------*/

.node-service {
  background: var(--bg-color);
  overflow: hidden;
}

.service-section {
  padding-top: 60px;
}

.service-section h3 {
  transition: 0.8s 0.4s;
}

.service-section .swiper-service {
  position: relative;
  overflow: visible;
  transition: 0.8s 0.4s;
}

.service-section .swiper-service:not(.scrollin) {
  transform: translateY(150px);
  opacity: 0;
}

.service-section .swiper-wrapper {}

.service-section .swiper-service .swiper-slide.service-slide {
  width: min(90%, 380px);
  margin: 0 12px;
}

.service-section .swiper-service .swiper-slide.service-slide a.service-slide-inner {
  display: block;
  padding: 10px 20px 30px;
  background: #FFF;
  text-decoration: none;
  user-select: none;
}

.service-section .swiper-service .swiper-slide.service-slide .service-slide-num {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  font-family: "Outfit", sans-serif;
  font-size: min(8vw, 4.0rem);
  font-weight: 200;
  line-height: 1.2;
  transform: translate(-15%, -30%);
}

.service-section .swiper-service .swiper-slide.service-slide .service-slide-num:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 58%;
  height: 65%;
  border-right: 1px solid;
  transform: rotate(30deg);
}

.service-section .swiper-service .swiper-slide.service-slide .service-slide-num .num {
  width: 0.5em;
  margin-right: 0.4em;
  text-align: right;
}

.service-section .swiper-service .swiper-slide.service-slide .service-slide-num .total {
  position: relative;
  font-size: 70%;
  transform: translate(0, 20%);
}

.service-section .swiper-service .swiper-slide.service-slide .service-slide-img {}

.service-section .swiper-service .swiper-slide.service-slide .service-slide-img img {
  display: block;
  width: 100%;
}

.service-section .swiper-service .swiper-slide.service-slide .service-slide-title {
  font-size: 1.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.service-section .swiper-button-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.service-section .swiper-button-wrapper .swiper-button-prev,
.service-section .swiper-button-wrapper .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0;
  color: #FFF;
  background: #999;
  border-radius: 100%;
  filter: drop-shadow(3px 3px 0px black);
}

.service-section .swiper-button-wrapper .swiper-button-prev:after,
.service-section .swiper-button-wrapper .swiper-button-next:after {
  font-size: 18px;
}

.service-section .swiper-button-wrapper .btn-block {
  flex: 1;
  margin: 0 10px;
}

.service-section .swiper-button-wrapper .btn-block a.btn {
  width: 100%;
}

.service-section .swiper-button-wrapper .btn-block a.btn:hover {}

@media print,
screen and (min-width: 950px) {
  .node-service {}

  .service-section {}

  .service-section h3 {}

  .service-section .swiper-service {}

  .service-section .swiper-wrapper {}

  .service-section .swiper-service .swiper-slide.service-slide {
    margin: 0 20px;
  }

  .service-section .swiper-service .swiper-slide.service-slide a.service-slide-inner {
    padding-bottom: 40px;
    transition: 0.2s;
  }

  .service-section .swiper-service .swiper-slide.service-slide a.service-slide-inner:hover {
    filter: brightness(1.1);
    transform: scale(1.08);
  }

  .service-section .swiper-service .swiper-slide.service-slide .service-slide-num {
    transform: translate(-18%, -45%);
  }

  .service-section .swiper-service .swiper-slide.service-slide .service-slide-num:before {}

  .service-section .swiper-service .swiper-slide.service-slide .service-slide-num .num {}

  .service-section .swiper-service .swiper-slide.service-slide .service-slide-num .total {}

  .service-section .swiper-service .swiper-slide.service-slide .service-slide-img {}

  .service-section .swiper-service .swiper-slide.service-slide .service-slide-img img {}

  .service-section .swiper-service .swiper-slide.service-slide .service-slide-title {
    font-size: 2.0rem;
  }

  .service-section .swiper-button-wrapper {
    justify-content: center;
    margin-top: 55px;
  }

  .service-section .swiper-button-wrapper .swiper-button-prev,
  .service-section .swiper-button-wrapper .swiper-button-next {
    width: 48px;
    height: 48px;
    filter: drop-shadow(4.5px 4.5px 0px #0d0d0d);
    transition: 0.2s;
  }

  .service-section .swiper-button-wrapper .swiper-button-prev:after,
  .service-section .swiper-button-wrapper .swiper-button-next:after {}

  .service-section .swiper-button-wrapper .swiper-button-prev:hover,
  .service-section .swiper-button-wrapper .swiper-button-next:hover {
    transform: translateY(4px);
    filter: drop-shadow(0px 0px 0px rgba(13, 13, 13, 0));
  }

  .service-section .swiper-button-wrapper .btn-block {
    flex: none;
    margin: 0 25px;
  }

  .service-section .swiper-button-wrapper .btn-block a.btn {
    width: 14em;
  }

  .service-section .swiper-button-wrapper .btn-block a.btn:hover {}
}

/*--------------------------------------
  # news
--------------------------------------*/

.node-news {
  background: #FFF;
}

.news-section {}

.news-section h3 {}

.news-section .news-section-list {
  transition: 0.8s 0.4s;
}

.news-section .news-section-list:not(.scrollin) {
  transform: translateY(150px);
  opacity: 0;
}

.news-section .news-section-list .news-section-list-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #999;
}

.news-section .news-section-list .news-section-list-item a {
  text-decoration: none;
}

.news-section .news-section-list .news-section-list-item a:hover {}

.news-section .news-section-list .news-section-list-item a .news-section-list-item-date {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5em;
  color: #999;
  font-size: 88%;
  line-height: 1.2;
}

.news-section .news-section-list .news-section-list-item a .news-section-list-item-date .category {
  display: block;
  margin-left: 10px;
  padding: 3px 8px;
  color: #FFF;
  font-size: 88%;
  border-radius: 3px;
}

.news-section .news-section-list .news-section-list-item a .news-section-list-item-title {}

.news-section .btn-block {}

.news-section .btn-block a.btn {}

.news-section .btn-block a.btn:hover {}

@media print,
screen and (min-width: 950px) {
  .node-news {}

  .news-section {}

  .news-section h3 {}

  .news-section .news-section-list {
    max-width: 1000px;
    margin: 0 auto;
  }

  .news-section .news-section-list .news-section-list-item {}

  .news-section .news-section-list .news-section-list-item a {
    transition: 0.2s;
  }

  .news-section .news-section-list .news-section-list-item a:hover {
    opacity: 0.6;
  }

  .news-section .news-section-list .news-section-list-item a .news-section-list-item-date {}

  .news-section .news-section-list .news-section-list-item a .news-section-list-item-date .category {}

  .news-section .news-section-list .news-section-list-item a .news-section-list-item-title {}

  .news-section .btn-block {}

  .news-section .btn-block a.btn {}

  .news-section .btn-block a.btn:hover {}
}