@charset "utf-8";
canvas {
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.p-fv__cont{
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: #fff;
}
.p-fv__cont::before{
    content:'';
    width: 188px;
    height: 68px;
    background: url(../img/top/fv_hoso.png) no-repeat center / contain;
    position: absolute;
    bottom: 60px;
    right: 88px;
    z-index: 2;
}
.p-fv__cont::after{
    content:'';
    width: 100%;
    height: 100%;
    background: url(../img/top/fv_clip_text.png) no-repeat top left / cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.swiper-slide > figure{
    height: 100vh;
}
.swiper-slide > figure img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.fv_scrollDown{
    position: absolute;
    right: .2rem;
    bottom: .2rem;
    z-index: 2;
}
.scrollDown_wrap{
    display: flex;
    align-items: flex-end;
    gap: .1rem;
}
.scrollDown_bar{
    width: 2px;
    height: 30px;
    overflow: hidden;
    border-radius: .1rem;
    background-color: #fff;
}
.scrollDown_barItem{
    display: block;
    width: 100%;
    height: 100%;
    background-color: #3e3a39;
    animation: scrollDown_barAnimation 3s infinite;
}
@keyframes scrollDown_barAnimation {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    to {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}
.top-mv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}
.top-mv video{
    width: 100%;
    height: 100vh;
}
.p-about__cont{
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}
.p-about__cont-inner{
    width: min(100% - 2.2rem, 6.5rem);
    margin: auto;
    display: grid;
    gap: .6rem;
    place-content: center;
}
.p-about__cont-pic{
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}
.p-about__cont-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-group__cont-blc{
    display: flex;
    gap: .2rem;
    margin-top: .5rem;
}
.p-group__cont-blc div:first-child{
    display: flex;
    flex-direction: column;
    gap: .2rem;
    width: 50%;
}
.p-group__cont-blc div:last-child{
    width: 50%;
}
.p-group__cont .wrap{
    display: flex;
    justify-content: space-between;
    gap: .6rem;
    position: relative;
}
.p-group__cont .container{
    flex: 0 0 2rem;
}
.p-group__cont .container figure{
    padding-bottom: .2rem;
}
.p-group__cont .container figure:last-child{
    padding-bottom: 100vh;
}
.p-group__cont .texts-container{
    width: 100%;
    height: 100vh;
    position: sticky;
    position: -webkit-sticky;
    top:0;
}
.p-group__cont .texts-container > div{
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: .8s !important;
    opacity: 0;
    background: #fff;
    padding-top: 1rem;
}
.p-group__cont .texts-container > div:first-child,
.p-group__cont .texts-container > div.active{
    visibility: visible;
    opacity: 1;
}
.p-movie__cont-thum{
    position: relative;
    overflow: hidden;
    margin: 0 calc(50% - 50vw);
    background: #d9dada;
}
.p-movie__cont-thum figure{
    width: min(100%, 1300px);
    margin: auto;
}
.p-movie__cont-thum figure iframe{
	max-width: calc(100% - 30px);
    margin: 0 15px;
}
.p-movie__cont-thum--deco{
    color: rgba(255,255,255,.5);
    white-space: nowrap;
    animation: loop-text 20s linear infinite;
    position: absolute;
    top: 42%;
    left: 0;
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-service__cont{
    padding: 1rem 0;
}
.p-service__cont-blc{
    display: flex;
    position: relative;
    z-index: 1;
}
.p-service__cont-blc-txtArea{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.p-service__cont .texts-container{
    width: 50%;
    height: 100vh;
    position: sticky;
    position: -webkit-sticky;
    top:0;
}
.p-service__cont .texts-container > div{
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: .8s !important;
    opacity: 0;
    padding: 1.1rem;
    width: 100%;
    height: 100%;
    background: #fff;
}
.p-service__cont .texts-container > div:first-child,
.p-service__cont .texts-container > div.active{
    visibility: visible;
    opacity: 1;
}
.p-service__cont .container{
    width: 50%;
}
.p-service__cont .container > div{
    height: 90vh;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .2rem;
    position: relative;
}
.p-service__cont .container > div:last-child{
    height: 100vh;
}
.p-service__cont-bg{
    display: block;
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: auto;
}
.p-service__cont-blc-bg{
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	filter: brightness(70%);
}
.p-service__cont-blc-bg img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-service__cont-blc-num{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
.p-service__cont-blc-num span{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3e3a39;
    color: #fff;
    width: 50px;
    height: 50px;
    position: relative;
}
.p-service__cont-blc-num span:first-child::after{
    content: '';
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.p-service__cont-btn{
    padding-top: .2rem;
    border-top: 1px solid #fff;
    justify-content: flex-end;
}
.p-mvv__cont{
    position: relative;
    padding: 1rem 0;
}
.p-mvv__cont-desc{
    display: flex;
    justify-content: space-between;
    gap: .4rem;
}
.p-mvv__cont-desc > div:first-child{
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.p-mvv__cont-desc > div:last-child{
    flex: 0 0 4.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.p-mvv__cont-bg{
    display: block;
    z-index: -1;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 7rem;
    height: auto;
}
.p-member__cont{
    background: #fcfaf7;
    padding-bottom: 1rem;
}
.p-member__cont-blc{
    position: relative;
    z-index: 1;
    display: flex;
}
.p-member__cont-blc-txtArea{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.p-member__cont .texts-container{
    width: 50%;
    height: 100vh;
    position: sticky;
    position: -webkit-sticky;
    top:0;
}
.p-member__cont .texts-container > div{
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    transition: .8s !important;
    opacity: 0;
    padding: 1.1rem;
    width: 100%;
    height: 100%;
    background: #fcfaf7;
}
.p-member__cont .texts-container > div:first-child,
.p-member__cont .texts-container > div.active{
    visibility: visible;
    opacity: 1;
}
.p-member__cont .container{
    width: 50%;
}
.p-member__cont .container > div{
    height: 90vh;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .2rem;
    position: relative;
}
.p-member__cont .container > div:last-child{
    height: 100vh;
}
.p-member__cont .container > div > p{
	font-size: 28px;
}
.p-member__cont-bg{
    display: block;
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: auto;
}
.p-member__cont-blc-bg{
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.p-member__cont-blc-bg img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    object-position: top center;
    -o-object-position: top center;
}
.p-member__cont-blc-num{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.p-member__cont-blc-num span{
    display: flex;
    justify-content: center;
    align-items: center;
    background: #3e3a39;
    color: #fff;
    width: 50px;
    height: 50px;
    position: relative;
}
.p-member__cont-blc-num span:first-child::after{
    content: '';
    width: 20px;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.p-member__cont-btn{
    padding-top: .2rem;
    border-top: 1px solid #fff;
    justify-content: flex-end;
}
.p-member__cont-subttl--deco{
    display: block;
    margin-bottom: .2rem;
}
.p-csr__cont{
    position: relative;
    padding: 1rem 0;
    background: #fcfaf7;
}
.p-csr__cont-desc{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .2rem;
}
.p-csr__cont-desc > div:first-child{
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.p-csr__cont-desc > div:last-child{
    width: min(100%, 6.4rem);
}
.p-recruit__cont{
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}
.p-recruit__cont-inner{
    display: grid;
    gap: .6rem;
    place-content: center;
}
.p-recruit__cont-pic{
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    filter: brightness(50%);
}
.p-recruit__cont-pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.p-recruit__cont-txt{
    margin: 0 0 1rem 2rem;
}
.p-recruit__cont-btn{
    justify-content: flex-end;
}
.p-news__cont{
    display: flex;
    gap: .5rem;
    padding: 1rem 0;
}
.p-news__cont > div:first-child{
    display: flex;
    flex-direction: column;
    gap: .4rem;
    flex-wrap: wrap;
    flex: 0 0 2.5rem;
}
.p-news__cont > div:last-child{
    flex: 1;
    overflow-x: scroll;
    padding-bottom: .6rem;
}
.p-news__cont > div:last-child::-webkit-scrollbar{
    background-color: #d9dada;
    border-radius: 5px;
    height: 9px;
}
.p-news__cont > div:last-child::-webkit-scrollbar-thumb{
    background: #86ba00;
    border-radius: 5px;
    height: 9px;
}
.p-news__cont-tab{
    display: grid;
    gap: .15rem;
}
.p-news__cont-tab-item{
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #818282;
}
.p-news__cont-tab-item::before{
    content: '';
    width: 9px;
    height: 9px;
    background: #3e3a39;
    border-radius: 50%;
    display: block;
}
.p-article__conts-list{
    grid-template-columns: repeat(6, minmax(3rem,1fr));
}
.p-news__cont-panel-item{
    display: none;
}
.p-news__cont-panel-item.is-active{
    display: block;
    animation: panel-show .9s ease-in-out forwards;
}
.p-news__cont-tab-item.is-active{
    color: #3e3a39;
}
@keyframes panel-show {
    from {
    opacity: 0;
    }
    to {
    opacity: 1;
    }
}
@media only screen and (max-width: 1024px) {
	.p-fv__cont::before{
		transform: rotate(90deg);
		transform-origin: top right;
		bottom: 2vh;
		right: 12vw;
		max-width: 28vw;
	}
    .p-fv__cont::after{
        background: url(../img/top/fv_clip_text-sp.png) no-repeat top left / cover;
    }
    .p-about__cont{
        padding: 2rem 0;
    }
    .p-about__cont-inner{
        width: min(100% - 1rem, 13rem);
    }
    .p-group__cont{
        padding-bottom: 1rem;
    }
    .p-group__cont-blc{
        flex-direction: column-reverse;
    }
    .p-group__cont-blc div:first-child{
        width: 100%;
    }
    .p-group__cont-blc div:last-child{
        width: 100%;
    }
    .p-group__cont .wrap{
        flex-direction: column;
    }
    .p-group__cont .container{
        display: flex;
        flex: 1;
        gap: .2rem;
    }
    .p-group__cont .texts-container{
        position: relative;
        height: auto;
        top: auto;
    }
    .p-group__cont .container figure{
        padding-bottom: 0;
        width: calc(100% / 3);
        aspect-ratio: 1;
        position: relative;
    }
    .p-group__cont .container figure img{
        position: absolute;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .p-group__cont .container figure:last-child{
        padding-bottom: 0;
    }
    .p-group__cont .texts-container > div{
        position: relative;
        visibility: visible;
        opacity: 1;
        padding-top: 0;
        top: auto;
        bottom: auto;
    }
    .p-group__cont-panel-item{
        display: none;
    }
    .p-group__cont-panel-item.is-active{
        padding-top: 1rem;
        display: block;
        animation: panel-show .9s ease-in-out forwards;
    }
    .p-service__cont-blc{
        flex-direction: column;
    }
    .p-service__cont .texts-container{
        width: 100%;
        height: 5rem;
        overflow: hidden;
    }
    .p-service__cont .texts-container > div{
        padding: .5rem;
    }
    .p-service__cont .container{
        width: 100%;
        z-index: 2;
    }
    .p-service__cont .container > div{
        padding: .5rem;
        height: 60vh;
    }
    .p-service__cont .container > div:last-child{
        height: 60vh;
    }
    .p-service__cont-blc-txtArea{
        position: relative;
        z-index: 1;
    }
    .p-service__cont-blc-num{
        display: none;
    }
    .p-mvv__cont-desc{
        flex-direction: column;
    }
    .p-mvv__cont-desc > div:last-child{
        flex: 1;
    }
    .p-mvv__cont-desc > div:last-child figure{
        aspect-ratio: 1;
        width: min(100%, 10rem);
    }
    .p-mvv__cont-desc > div:last-child figure img{
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
    .p-member__cont{
        position: relative;
    }
    .p-member__cont-blc{
        flex-direction: column;
    }
    .p-member__cont .texts-container{
        width: 100%;
        height: 5rem;
    }
    .p-member__cont .texts-container > div{
        padding: .5rem;
    }
    .p-member__cont .container{
        width: 100%;
        z-index: 2;
    }
    .p-member__cont .container > div{
        padding: .5rem;
        height: 60vh;
    }
    .p-member__cont .container > div:last-child{
        height: 60vh;
    }
    .p-member__cont-blc-num{
        display: none;
    }
    .p-member__cont-bg{
        display: none;
    }
    .p-member__cont-bg--sp{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
    }
    .p-csr__cont-desc{
        flex-direction: column;
        gap: 1rem;
    }
    .p-csr__cont-desc > div:last-child{
        width: 100%;
        overflow: hidden;
        margin-right: -1rem;
    }
    .p-csr__cont-desc > div:last-child figure{
        width: calc(100% + .25rem);
    }
    .p-recruit__cont-txt{
        margin: auto;
    }
    .p-recruit__cont canvas{
        width: 100%;
        height: 100%;
    }
    .p-recruit__cont-pic{
        width: 250%;
        height: 100%;
        left: -40%;
    }
    .p-news__cont{
        flex-direction: column;
    }
    .p-news__cont > div:first-child{
        position: relative;
        flex: auto;
    }
    .p-news__cont-tab{
        display: flex;
        flex-wrap: wrap;
        gap: .2rem;
    }
    .p-news__cont-btn{
        position: absolute;
        top: 0;
        right: 0;
    }
    .p-article__conts-list-item-thum{
        aspect-ratio: 1;
    }
    .p-article__conts-list{
        grid-template-columns: repeat(6, minmax(6rem,1fr));
        gap: .1rem;
    }
}