@charset "utf-8";
/*--------------------------------------
  # eyecatch
--------------------------------------*/
.eyecatch {
  position: relative;
}
.eyecatch .eyecatch-txt {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.eyecatch .eyecatch-txt .eyecatch-txt-inner {
  padding: 50px 20px;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 0 10px rgba(0,0,0,0.55);
  line-height: 1.4;
}
.eyecatch .eyecatch-txt .eyecatch-txt-inner .jp {
  margin-bottom: 0.75em;
  font-size: min(5.8vw, 2.6rem);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: eyecatchtxt 2s 0.2s forwards;
}
.eyecatch .eyecatch-txt .eyecatch-txt-inner .en {
  font-family: "Jost", sans-serif;
  font-size: min(4vw, 1.5rem);
  letter-spacing: 0.15em;
  opacity: 0;
  animation: eyecatchtxt 2s 0.6s forwards;
}
.eyecatch .eyecatch-bg {
  position: relative;
  z-index: 1;
}
.eyecatch .swiper.eyecatch-swiper .swiper-slide img {
  display: block;
  width: 100%;
  min-height: 380px;
  max-height: 600px;
  background: #333;
  object-fit: cover;
  transition: 6s linear transform;
}
.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation01 img {
  transform: scale(1);
}
.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation01.animation img {
  transform: scale(1.13);
}
.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02 img {
  transform: scale(1.2) translateX(30px);
}
.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02.animation img {
  transform: scale(1.2) translateX(-30px);
}
.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03 img {
  transform: scale(1.2) translateX(-30px);
}
.eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03.animation img {
  transform: scale(1.2) translateX(30px);
}
@keyframes eyecatchtxt {
  0% {
    clip-path: inset(0 100% 0 0);
    transform: translateY(100px);
    opacity:0;
  }
  50% {
    opacity:1;
  }
  100% {
    clip-path: inset(0);
    opacity:1;
    transform: translateY(0);
  }
}
@media (min-width: 950px) {
  .eyecatch .eyecatch-txt {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 min(6%, 80px);
  }
  .eyecatch .eyecatch-txt .eyecatch-txt-inner {
    padding: 95px 45px;
    line-height: 1.5;
  }
  .eyecatch .eyecatch-txt .eyecatch-txt-inner .jp {
    margin-bottom: 0.5em;
    font-size: min(3.3vw, 4.6rem);
    letter-spacing: 0.08em;
  }
  .eyecatch .eyecatch-txt .eyecatch-txt-inner .en {
    font-size: min(1.3vw, 1.8rem);
    letter-spacing: 0.2em;
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    max-height: 93vh;
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02 img {
    transform: scale(1.1) translateX(30px);
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide.animation02.animation img {
    transform: scale(1.1) translateX(-30px);
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03 img {
    transform: scale(1.1) translateX(-30px);
  }
  .eyecatch .swiper.eyecatch-swiper .swiper-slide.animation03.animation img {
    transform: scale(1.1) translateX(30px);
  }
}

/*--------------------------------------
  # node
--------------------------------------*/
.node {
  padding: 60px 0;
  transition: 0.8s;
}
.node:not(.scrollin) {
  transform: translateY(80px);
  opacity: 0;
}
.node .node-wrapper {
  padding: 0 20px;
}
.node .node-wrapper>*:last-child {
  margin-bottom: 0;
}
.node .node-ttl {
  margin-bottom: 30px;
  line-height: 1.2;
}
.node .node-ttl .en {
  display: flex;
  align-items: center;
  margin-bottom: 0.4em;
  color: #999;
  font-size: 1.2rem;
  letter-spacing: 1.5px;
  clip-path: inset(0);
  transition: all 2s ease 0.6s;
}
.node .node-ttl .en:after {
  content: '';
  flex: 1;
  min-width: 40px;
  height: 1px;
  margin-left: 1em;
  background: #d1d1d1;
}
.node .node-ttl .jp {
  font-size: min(6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
  clip-path: inset(0);
  transition: all 2s ease 0.2s;
}
.node .node-ttl:not(.scrollin) .en,
.node .node-ttl:not(.scrollin) .jp {
  clip-path: inset(0 100% 0 0);
}
.node .node-inner {
  transition: 0.8s;
}
.node:not(.scrollin) .node-inner {
  transform: translateY(80px);
  opacity: 0;
}
.node .node-btn {
  display: flex;
  justify-content: center;
  transition: 0.6s 0.15s transform, 0.6s 0.15s opacity;
}
.node .node-btn:not(.scrollin) {
  transform: translateX(-100px);
  opacity: 0;
}
.node .node-btn a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  max-width: 60%;
  min-height: 44px;
  background: #fff;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 2px;
  text-decoration: none;
  border: 1px solid #333;
  transition: 0.2s;
}
.node .node-btn a > span {
  position: relative;
  display: block;
  z-index: 1;
}
@media (min-width: 950px) {
  .node {
    padding: 100px 0;
  }
  .node .node-wrapper {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 min(6%, 80px);
  }
  .node .node-ttl {
  }
  .node .node-ttl .en {
    margin-bottom: 1em;
  }
  .node .node-ttl .en:after {
    min-width: 40px;
    max-width: 150px;
  }
  .node .node-ttl .jp {
    font-size: min(2vw, 2.6rem);
  }
  .node .node-inner {
  }
  .node .node-btn {
    justify-content: flex-start;
  }
  .node .node-btn a {
    flex: none;
    min-width: 205px;
  }
  .node .node-btn a:hover {
    color: #fff;
    letter-spacing: 4px;
  }
  .node .node-btn a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #333;
    transition: 0.3s;
  }
  .node .node-btn a:hover:before {
    height: 100%;
  }
}

/*--------------------------------------
  # news
--------------------------------------*/
div.article-list {
  height: 300px;
  margin-bottom: 30px;
  overflow: auto;
}
div.article-list .article-list-item:not(:last-child) {
  margin-bottom: 30px;
}
div.article-list .article-list-item .date {
  color: #010101;
  font-family: "Jost", sans-serif;
  font-size: 1.2rem;
	white-space: nowrap;
}
@media (min-width: 950px) {
  div.news-wrapper {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: 300px auto;
    justify-content: center;
    align-items: start;
  }
  div.news-wrapper .node-ttl {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
  }
  div.article-list {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
		min-width: 500px;
    height: 180px;
    margin-bottom: 0;
  }
  div.article-list .article-list-item {
    display: flex;
    gap: 30px;
    padding-right: 20px;
  }
  div.article-list .article-list-item:not(:last-child) {
    margin-bottom: 40px;
  }
  div.article-list .article-list-item .date {
    margin: 0.5em 0 0;
  }
  div.news-wrapper .node-btn {
    margin-top: auto;
  }
}

/*--------------------------------------
  # concept
--------------------------------------*/
#concept.node {
  position: relative;
  padding-top: 0;
}
div.concept-img {
  position: relative;
  width: 100%;
  height: 0;
  margin-bottom: 60px;
  padding-top: 75%;
  overflow: hidden;
}
div.concept-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
@media (max-width: 949px) {
  div.concept-img img {
    width: 115%;
    height: 115%;
  }
}
@media (min-width: 950px) {
  #concept.node {
    margin-bottom: 80px;
  }
  div.concept-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    margin-bottom: 0;
    padding-top: 0;
  }
  div.concept-wrapper {
    padding: 100px 0 0 calc(50% + 80px);
  }
}

/*--------------------------------------
  # works
--------------------------------------*/
#works.node {
  position: relative;
}
#works.node:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: url(../img/bg/wall.jpg) repeat center;
  z-index: -1;
}
#works.node .node-ttl {
  text-align: center;
}
#works.node .node-ttl .en {
  justify-content: center;
}
#works.node .node-ttl .en:after {
  display: none;
}
#works.node .node-ttl:not(.scrollin) .en,
#works.node .node-ttl:not(.scrollin) .jp {
  clip-path: inset(0);
}
div.swiper-works {
  margin: 40px 0;
}
div.swiper-works .swiper-wrapper {
  transition-timing-function: linear;
}
div.swiper-works .swiper-slide {
  width: 286px;
  background: #333;
}
div.swiper-works .swiper-slide .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}
div.swiper-works .swiper-slide .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
@media (max-width: 949px) {
  #works.node:before {
    background-size: 700px auto;
  }
}
@media (min-width: 950px) {
  div.swiper-works .swiper-slide a:hover img {
    opacity: 0.6;
    transform: scale(1.1);
  }
  #works.node .node-btn {
    justify-content: center;
  }
}

/*--------------------------------------
  # recruit
--------------------------------------*/
#recruit.node {
  padding-top: 0;
}
div.recruit-wrapper {
  position: relative;
  overflow: hidden;
}
div.recruit-wrapper:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,  rgba(51,51,51,1) 0%,rgba(51,51,51,0.2) 100%);
  mix-blend-mode: hard-light;
  z-index: 2;
}
div.recruit-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
div.recruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}
div.recruit-wrapper a {
  position: relative;
  display: block;
  padding: 40px 20px 75%;
  color: #fff;
  text-decoration: none;
  z-index: 3;
}
#recruit.node .node-ttl .en {
  color: #fff;
}
#recruit.node .node-btn {
  display: flex;
  justify-content: center;
  transition: 0.6s 0.15s transform, 0.6s 0.15s opacity;
}
#recruit.node .node-btn > span {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  max-width: calc(60% + 40px);
  min-height: 44px;
  background: #fff;
  color: #333;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 2px;
  text-decoration: none;
  border: 1px solid #fff;
  transition: 0.2s;
}
@media (max-width: 949px) {
  #recruit.node .node-ttl .en:after {
    display: none;
  }
}
@media (min-width: 950px) {
  div.recruit-wrapper:before {
    background: linear-gradient(to right,  rgba(51,51,51,1) 0%,rgba(51,51,51,0.2) 100%);
  }
  div.recruit-wrapper:hover div.recruit-img img {
    transform: scale(1.1);
    opacity: 0.7;
  }
  div.recruit-wrapper a {
    padding: 60px 40% 60px 80px;
  }
  #recruit.node .node-btn {
    justify-content: flex-start;
  }
  #recruit.node .node-btn > span {
    flex: none;
    min-width: 205px;
  }
  #recruit.node div.recruit-wrapper a:hover .node-btn > span {
    color: #fff;
    letter-spacing: 4px;
  }
  #recruit.node .node-btn > span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #333;
    transition: 0.3s;
  }
  #recruit.node div.recruit-wrapper a:hover .node-btn > span:before {
    height: 100%;
  }
  #recruit.node .node-btn > span > span {
    position: relative;
    display: block;
    z-index: 1;
  }
}