@charset "UTF-8"; 
/* keyvisual */
.keyvisual {
    width: 100%;
    overflow: hidden;
    height: 100vh;
    z-index: 1;
    filter: blur(0px);
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%);
}
.keyvisual__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    filter: blur(0);
}
.keyvisual__bg::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    background: rgba(0,0,0,0.2);
}
.keyvisual__bg img,
.keyvisual__bg video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* top-introduction */
.top-introduction {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.top-introduction__title {
    position: sticky;
    bottom: calc(50vh - 88px);
    z-index: 2;
    height: 148px;
    margin: 0 auto 48px;
}
.top-introduction__title img {
    width: auto;
    height: 100%;
}
.top-introduction::after {
    content: "";
    position: absolute;
    top: 100vh;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0,3,47,1),rgba(0,3,47,0.6) 50%,rgba(0,3,47,0));
}
.top-introduction__description {
    line-height: 2;
    max-width: var(--content-width-narrow);
    color: var(--color-white-primary);
    font-weight: 500;
}
.top-introduction__description p:not(:last-child) {
    margin-bottom: 32px;
}
@media screen and (max-width:800px) {
    .top-introduction__content {
        width: 100%;
        padding-top: 16px;
    }
    .top-introduction__title {
        height: 90px;
        bottom: calc(50vh - 40px);
    }
    .top-introduction__title img {
        max-width: 100%;
        object-fit: contain;
    }
    .top-introduction__bg {
        height: 100vh;
        height: 100svh;
    }
    
}

/* top-about */
.top-about {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 48px 32px;
}
.top-about__button-sp {
    display: none;
}
.top-about__image {
    overflow: hidden;
    border-radius: 16px;
}
@media screen and (max-width:800px) {
    .top-about {
        grid-template-columns: 1fr;
    }
    .top-about__text-content .spacer {
        display: none;
    }
    .top-about__button-pc {
        display: none;
    }
    .top-about__button-sp {
        display: block;
    }
}

/* top-philosophy */ 

  .philosophy_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:50px 0;
  }
  .philosophy_list li {
    width: 47%;
  }
  .philosophy_list li .subsection__title {
    height: 60px;
    line-height: 60px;
    text-align: center;
    align-items: center;
    padding: 0;
    margin-bottom: 30px;
  }
  .philosophy_list li p {
    text-align: center;
    font-size: 2.4rem;
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
  }
@media screen and (max-width: 1080px) {
  .philosophy_list li .subsection__title {
    border-radius: 100px 100px 0 100px;
    min-height: 60px;
    }
  }
@media screen and (max-width: 880px) {
  h2.ls0 span {
    letter-spacing: 0;
  }
  .philosophy_list {
    flex-direction: column;
    }
  .philosophy_list li {
    width: 100%;
    }
  .philosophy_list li p {
    text-align: left;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}

/* top-recruit */
.top-recruit__images {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px 48px;
}
.top-recruit__image {
    border-radius: 16px;
    overflow: hidden;
}
.top-recruit-movie {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    filter: blur(0px);
}
.top-recruit-movie img {
    transition: transform 0.5s;
}
.top-recruit-movie:hover img {
    transform: scale(1.125);
}
.top-recruit-movie .movie-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.top-recruit-movie__descrition {
    line-height: 2;
}
@media screen and (max-width:800px) {
    .top-recruit__images {
        grid-template-columns: 1fr;
    }
}

/* top-news */
.top-news {
    display: flex;
    justify-content: space-between;
    gap: 0 40px;
}
.top-news__right-content {
    width: 65%;
}
@media screen and (max-width:800px) {
    .top-news {
        display: block;
    }
    .top-news__right-content {
        width: 100%;
    }
}

/* business-menu */
.business-menu {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 48px;
}
.business-menu-item {
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-white-primary);
}
.business-menu-item__content {
    padding: 20px 30px 30px;
}
.business-menu-item__description {
    line-height: 2;
}
.business-menu-item__image {
    overflow: hidden;
    filter: blur(0px);
}
.business-menu-item__image img {
    transition: transform 0.5s;
}
.business-menu-item:hover .business-menu-item__image img {
    transform: scale(1.125);
}
.business-menu-item__title {
    margin: 0 0 12px;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-turquoise-primary);
}
@media screen and (max-width:800px) {
    .business-menu {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .business-menu-item__content {
        padding: 16px;
    }
}

/* product-menu */
.product-menu {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 48px;
}
.product-menu {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 48px;
}
.product-menu-item {
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-white-primary);
}
.product-menu-item__content {
    padding: 20px 30px 30px;
}
.product-menu-item__description {
    line-height: 2;
}
.product-menu-item__image {
    overflow: hidden;
    filter: blur(0px);
}
.product-menu-item__image img {
    transition: transform 0.5s;
}
.product-menu-item:hover .product-menu-item__image img {
    transform: scale(1.125);
}
.product-menu-item__title {
    margin: 0 0 12px;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-turquoise-primary);
}
@media screen and (max-width:800px) {
    .product-menu {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .product-menu-item__content {
        padding: 16px;
    }
}

/* works-menu */
.works-menu-container {
    position: relative;
}
.works-menu-container .swiper-scrollbar {
    position: static;
    width: 100%;
    height: 2px;
    margin-top: 48px;
    background: rgba(255,255,255,0.25);
}
.swiper-scrollbar-drag {
    background: var(--color-white-primary);
}
.works-menu__button {
    position: absolute;
    top: calc(50% - 96px);
    width: 60px;
    height: 60px;
    background: rgba(17,16,95,0.8);
    border-radius: 1000px;
    z-index: 6;
    transition: opacity 0.25s,transform 0.25s,background-color 0.25s;
}
.works-menu__button.swiper-button-disabled {
    opacity: 0;
}
.works-menu__button:hover {
    background-color: var(--color-blue-primary);
}
.works-menu__button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 16px;
    height: 16px;
    background: url("../images/arrow-right-primary.png") no-repeat center / cover;
    /*background: var(--color-white-primary);
    -webkit-mask: url("../images/arrow-right-primary.png") center/contain no-repeat;
    mask: url("../images/arrow-right-primary.png") center/contain no-repeat;*/
}
.works-menu__button--prev {
    left: -20px;
}
.works-menu__button--prev::before {
    background: url("../images/arrow-left-primary.png") no-repeat center / cover;
    /*-webkit-mask-image: url("../images/arrow-left-primary.svg");
    mask-image: url("../images/arrow-left-primary.svg");*/
}
.works-menu__button--next {
    right: -20px;
}
.works-menu-item {
    width: calc((100% - 96px) / 3);
    min-width: 300px;
}
.works-menu-item__image {
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 16px;
    transition: filter 0.25s;
}
.works-menu-item:hover .works-menu-item__image:hover {
    filter: brightness(1.25);
}
.works-menu-item__title {
    margin: 0 0 8px;
    font-size: 2.0rem;
    font-weight: 700;
    color: var(--color-turquoise-primary);
}
@media screen and (max-width:600px) {
    .works-menu-item {
        width: 100%;
        min-width: 0;
    }
}