/*===========================================================================*/
/*  mv  */
/*===========================================================================*/
.p-mv__txts {
    display: flex;
    flex-direction: column-reverse;
    justify-content: end;
    align-items: stretch;
    padding-top: 136px;
}

.p-mv__head {
    font-size: 113px;
    line-height: .97;
    letter-spacing: -.02em;
    text-transform: uppercase;
    margin-top: -81px;
}

.p-mv__txtJa {
    text-align: right;
}

.p-mv__txtJa .--txt {
    font-feature-settings: 'palt' on;
    font-size: 18px;
    line-height: 1.73;
    letter-spacing: .06em;
}

.p-mv__txt {
    text-align: right;
    margin-top: 5px;
}

.p-mv__txt .--wrapper {
    display: inline-block;
    font-weight: 300;
    font-size: 10px;
    line-height: 1.6;
    /* width: 290px; */
}

.p-mv__txt .--ttl {
    display: block;
    text-align: left;
}

.p-mv__txt .--txt {
    display: block;
    text-align: right;
    margin-top: 5px;
    color: #adadad;
}

.p-mv__video {
    position: sticky;
    top: 0;
}

.p-mv__video--content {
    width: 91.2%;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    /* aspect-ratio: 3/2; */
    height: 100vh;
}

.p-mv__video--content video {
    min-width: 100%;
    min-height: 100%;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.p-mv__video--scroll {
    position: absolute;
    width: 135px;
    height: 135px;
    font-size: 11px;
    font-weight: 300;
    line-height: 1.46;
    letter-spacing: .015em;
    top: -68px;
    right: 6.62%;
    z-index: 5;
}
.p-mv__video--scroll--inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f1ee;
    border-radius: 100vh;
    position: relative;
    transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
}
.p-mv__video--scroll--inner.scroll-active {
    opacity: 0;
}
.p-mv__video--scroll--inner::before {
    content: '';
    height: 117px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 117px;
    border-radius: 100vh;
    border: #1e1e1e solid 1px;
    transform: translate(-50%, -50%);
}

.p-mv__slides {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.p-mv__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    opacity: 0;
}
.p-mv__slide.js-active {
    opacity: 1;
}
.p-mv__slide::before {
    background-color: #f2f1ee;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    transition: transform .6s 0s cubic-bezier(0.5, 0, 0.2, 1);
    z-index: 3;
}
.p-mv__slide.js-active::before {
    transform: translate(0, -101%);
}

.p-mv__slide--img {
    width: 105%;
    height: 105%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.p-mv__slide.js-active .p-mv__slide--img {
    animation: mvImg 5s linear 0s infinite normal forwards running;
}

.p-mv__slide--img img {
    height: 100%;
    object-fit: cover;
}

@keyframes mvImg {
    0%{
        width: 105%;
        height: 105%;
    }
    100%{
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 1360px) {
    .p-mv__txts {
        padding-left: 3.8%;
        padding-right: 3.8%;
    }
}

@media screen and (max-width: 1260px) {
    .p-mv__head {
        font-size: 8.968vw;
    }
}

@media screen and (max-width: 900px) {
    .p-mv__txts {
        flex-direction: column;
        align-items: start;
        height: auto;
        min-height: unset;
        padding-top: 104px;
    }
    
    .p-mv__head {
        font-size: 47px;
        margin-top: 0;
    }
    
    .p-mv__head .--wrapper {
        overflow: hidden;
    }

    .p-mv__txts {
        padding-left: 6.4%;
        padding-right: 6.4%;
    }

    .p-mv__txts--small {
        margin-top: 19px;
    }

    .p-mv__txtJa {
        text-align: left;
    }

    .p-mv__txtJa .--txt {
        font-size: 14px;
    }
    
    .p-mv__txt {
        text-align: left;
        margin-top: 8px;
    }
    
    .p-mv__txt .--wrapper {
        display: block;
        align-items: flex-start;
        font-weight: 300;
        font-size: 10px;
        line-height: 1.4;
    }
    
    .p-mv__txt .--txt {
        margin-left: 0;
        max-width: unset;
        display: block;
        margin-top: 8px;
        text-align: left;
    }

    .p-mv__video--wrapper {
        margin-top: 20px;
        height: 180vh;
    }
    
    .p-mv__video {
        margin-top: 28px;
    }
    
    .p-mv__video--content {
        width: 91.2%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 10px;
        aspect-ratio: 2/3;
    }

    .p-mv__video--scroll {
        width: 69px;
        height: 69px;
        font-size: 10px;
        top: -34px;
        right: 6.93%;
    }

    .p-mv__video--scroll--inner span {
        scale: .8;
    }
    
    .p-mv__video--scroll--inner::before {
        height: 61px;
        width: 61px;
    }
}

/*===========================================================================*/
/*  sv  */
/*===========================================================================*/
.p-sv {
    margin-top: 50px;
    padding: 0 .81%;
    position: relative;
    z-index: 5;
}

.p-sv__list {
    display: flex;
    justify-content: space-between;
}

.p-sv__list--content {
    width: 11.5%;
    height: 530px;
    transition: width .6s 0s cubic-bezier(.44,.14,.09,1.02);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.p-sv__list--content.js-active {
    width: 50.9%;
}
.p-sv__list--content::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 72.69%, rgba(0, 0, 0, 0.30) 95.37%);
    content: '';
    height: 335px;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
}

.p-sv__list--link {
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.p-sv__list--content.js-active .p-sv__list--link {
    pointer-events: all;
}

.p-sv__list--img {
    width: 100%;
    height: 100%;
}
.p-sv__list--img img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
}

.p-sv__list--txts {
    position: absolute;
    left: 25px;
    bottom: 20px;
    color: #fff;
    transition: opacity .6s 0s cubic-bezier(.44,.14,.09,1.02);
    opacity: 0;
    z-index: 3;
}
.p-sv__list--content.js-active .p-sv__list--txts {
    opacity: 1;
}

.p-sv__list--name {
    font-feature-settings: 'palt' on;
    font-size: 10px;
    line-height: 2.2;
    letter-spacing: .08em;
}

.p-sv__list--ttl {
    font-feature-settings: 'palt' on;
    font-size: 15px;
    line-height: 1.48;
    letter-spacing: .08em;
}

.p-sv__list--arrow {
    position: absolute;
    width: 37px;
    height: 37px;
    border: #fff solid 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .6s 0s cubic-bezier(.44,.14,.09,1.02);
    opacity: 0;
    z-index: 3;
    right: 25px;
    bottom: 20px;
    border-radius: 100vh;
}
.p-sv__list--content.js-active .p-sv__list--arrow {
    opacity: 1;
}

.p-sv__list--arrow svg {
    width: 9px;
}

@media screen and (min-width: 901px) {
    .p-sv__list--link:hover .p-sv__list--img img {
        transform: scale(1.1);
    }

    .p-sv__list--link:hover .p-sv__list--arrow {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 900px) {
    .p-sv {
        margin-top: 25px;
        padding: 0 2.56%;
    }
    
    .p-sv__list {
        flex-wrap: wrap;
        gap: 5px;
    }

    #sv-content01 {
        display: none;
    }
    
    .p-sv__list--content {
        width: 100%;
        height: 70px;
        transition: height .6s 0s cubic-bezier(.44,.14,.09,1.02);
    }
    .p-sv__list--content.js-active {
        width: 100%;
        height: 248px;
    }
    .p-sv__list--content::before {
        height: 201px;
    }
    
    .p-sv__list--txts {
        left: 12px;
        bottom: 10px;
    }
    
    .p-sv__list--ttl {
        font-size: 11px;
    }
    
    .p-sv__list--arrow {
        width: 23px;
        height: 23px;
        right: 12px;
        bottom: 10px;
    }
    
    .p-sv__list--arrow svg {
        width: 6px;
    }
}

/*===========================================================================*/
/*  about  */
/*===========================================================================*/
.p-about__contents {
    padding-top: 180px;
    padding-bottom: 110px;
    overflow: hidden;
}

.p-about__content--headEn {
    margin: 0 auto 50px;
    max-width: 760px;
}

.p-about__contents--inner {
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    max-width: 760px;
}

.p-about__content--head {
    font-family: "TazuganeGothicStdN-Bold";
    font-size: 56px;
    line-height: 1.7;
    letter-spacing: .15em;
    position: relative;
    z-index: 4;
    /* padding-left: 3.43%; */
    /* width: 51.48%; */
    display: none;
}

.p-about__content--headPc {
    display: flex;
    flex-direction: row-reverse;
    justify-content: left;
    font-size: 45px;
    font-family: "TazuganeGothicStdN-Bold";
    line-height: 1.15;
    /* letter-spacing: 10.575px; */
}

.p-about__content--headPc .--wrapper {
    margin: 0 24px;
    display: flex;
    flex-direction: column;
}

.p-about__content--headPc .--dot {
    transform: translate(27px, -20px);
}

.p-about__contents--inner>div {
    width: 50%;
}

.p-about__content--left {
    text-align: left;
    padding-left: 20px;
}

.p-about__content--right {
    max-width: 350px;
}

/* .p-about__content--txts {
    position: relative;
} */

.p-about__content--txt {
    font-size: 16px;
    line-height: 2.4;
    z-index: 3;
    position: relative;
    font-feature-settings: 'palt' on;
    text-align: justify;
    letter-spacing: .05em;
}

.p-about__txts {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 356px;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    width: 100vw;
    overflow: hidden;
    padding: 20px 0;
}

.p-about__txts--inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    font-size: 230px;
    font-weight: 200;
    line-height: 1;
    opacity: .08;
}

.p-about__txts--inner>* {
    padding-right: 68px;
    white-space: nowrap;
    animation: txtSlide 65s linear 0s infinite normal forwards running;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden;
}

.p-about__content--txt02 {
    font-size: 10px;
    line-height: 2.04;
    margin: 25px 0 0 auto;
    position: relative;
    z-index: 4;
    color: #adadad;
    font-weight: 300;
}

.p-about__btn {
    margin: 35px 0 0 auto;
}

@media screen and (max-width: 1030px) {
    .p-about__content--head {
        letter-spacing: 0em;
    }
}

@media screen and (max-width: 900px) {
    .p-about {
        margin-top: 0;
    }

    .p-about__contents {
        padding-top: 80px;
        padding-bottom: 70px;
        overflow: hidden;
    }

    .p-about__contents--inner {
        max-width: unset;
        margin: 42px auto 0;
        display: block;
    }

    .p-about__content--headEn {
        margin-bottom: 0;
        padding: 0 2.94%;
    }
    
    .p-about__content--head {
        font-size: 30px;
        padding-left: 10.29%;
        white-space: nowrap;
        letter-spacing: .15em;
        width: 100%;
        text-align: left;
        display: inline-flex;
    }

    .p-about__content--headPc {
        display: none;
    }

    .p-about__contents--inner>div {
        width: 100%;
        padding-top: 0;
    }

    .p-about__content--left {
        padding-left: 0;
    }
    
    .p-about__content--right {
        max-width: unset;
    }
    
    .p-about__content--txts {
        margin-top: 35px;
        position: relative;
    }
    
    .p-about__content--txt {
        width: 100%;
        padding-left: 22.06%;
        padding-right: 2.94%;
        font-size: 13px;
        line-height: 1.92;
        position: relative;
        z-index: 3;
    }
    
    .p-about__content--txt::before {
        top: 50%;
        height: 294px;
        width: 294px;
    }
    .p-about__content--txt::after {
        top: 50%;
        height: 294px;
        width: 294px;
    }

    .p-about__txts {
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
    
    .p-about__txts--inner {
        font-size: 140px;
    }
    
    .p-about__txts--inner>* {
        padding-right: 32px;
        animation: txtSlide 60s linear 0s infinite normal forwards running;
    }

    .p-about__content--txt02 {
        font-size: 10px;
        line-height: 1.71;
        margin: 14px 0 0 0;
        padding-left: 24.4%;
        padding-right: 2.94%;
    }
    
    .p-about__btn {
        width: auto;
        margin: 30px 0 0 auto;
        text-align: left;
        position: relative;
        right: -21px;
        padding-left: 16%;
    }
}

/*===========================================================================*/
/*  office  */
/*===========================================================================*/
.p-office.--top {
    position: relative;
}

/* .p-office.--top::before {
    background-color: #1e1e1e;
    content: '';
    height: 50%;
    left: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
} */

.p-office__inner {
    animation: unset;
}

.p-office__inner figure {
    overflow: hidden;
    position: relative;
}

.p-office__inner figure img {
    position: absolute;
    width: 116%;
    height: 100%;
    right: 0;
    top: 0;
}

@media screen and (max-width: 900px) {
    .p-office__inner {
        animation: officeSlide 32s linear infinite normal;
    }
    
    .p-office__inner figure img {
        position: relative;
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
        transform: translateX(0) !important;
    }
}

/*===========================================================================*/
/*  service  */
/*===========================================================================*/
/* .p-service {
    background-color: #1e1e1e;
}

.p-service__head {
    color: #fff;
} */

.p-service__content--headEn {
    margin: 0 auto;
}

.p-service__upper--inner {
    height: 100%;
    position: relative;
    z-index: 2;
}

.p-service__contents {
    padding-bottom: 200px;
    padding-top: 200px;
}

.p-service__contents--inner {
    margin: 63px auto 0;
}

.p-service__contents--upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1040px;
    margin: 0 auto;
}

.p-service__content--txts {
    width: 440px;
    max-width: 440px;
    padding-top: 43px;
}

.p-service__content--head {
    font-size: 40px;
    line-height: 1.52;
    font-feature-settings: 'palt' on;
    letter-spacing: .06em;
}

.p-service__content--head span.fade-wrapper {
    display: inline !important;
}

.p-service__content--head .--wrapper {
    display: flex;
    flex-direction: column;
    margin-left: 34px;
}

.p-service__content--head .fade-bottom03.js-active {
    transform: translate3d(0, 4px, 0);
}

.p-service__content--txt {
    margin-top: 30px;
    font-size: 15px;
    line-height: 2.1; 
    color: #adadad;
    font-feature-settings: 'palt' on;
    letter-spacing: .05em;
    text-align: justify;
}

.p-service__btn {
    position: relative;
    margin-top: 50px;
}

.p-service__main--list {
    width: 510px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.p-service__main--list.--sp {
    display: none;
}

.p-service__main--list li {
    width: 246px;
    height: 246px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 10px;
}
.p-service__main--list li:nth-of-type(1) {
    margin: 0 20px;
}
.p-service__main--list li:nth-of-type(2) {
    margin-top: -15px;
}
.p-service__main--list li:nth-of-type(3) {
    margin-top: -15px;
    margin-left: 16px;
}

.p-service__main--listCircle {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: conic-gradient(#363636 0deg, #1e1e1e 0deg);
    clip-path: circle();
    display: grid;
    place-items: center;
}
.p-service__main--listCircle::before {
    content: '';
    width: calc(100% - 28px);
    height: calc(100% - 28px);
    background-color: #1e1e1e;
    clip-path: circle();
}

.p-service__main--list p {
    font-size: 19px;
    line-height: 1.13;
    letter-spacing: .06em;
    font-weight: 300;
    position: relative;
    z-index: 2;
}

.p-service__main--list h3 {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    color: #636363;
}

.p-service__main--listBtn {
    position: absolute;
    width: 100%;
    height: 0;
    opacity: 0;
    top: 0;
    left: 0;
    pointer-events: none;
}

.p-service__main--circle {
    width: calc(100% - 480px);
    max-width: 530px;
}

.p-service__contents--lower {
    margin-top: 140px;
}

.p-service__contents--list02 {
    display: flex;
    justify-content: space-between;
}

.p-service__contents--list02 li {
    width: 31.8%;
    border-radius: 19px;
    background-color: #171717;
}

.p-service__contents--list02Btn {
    padding: 35px;
    position: relative;
    font-size: 11px;
    font-weight: 300;
    line-height: 1;
    color: #636363;
    display: block;
    width: 100%;
}

.p-service__contents--list02Btn .--plus {
    position: absolute;
    width: 29px;
    height: 29px;
    border-radius: 100vh;
    background-color: #414141;
    right: 26px;
    top: 26px;
}
.p-service__contents--list02Btn .--plus::before {
    background-color: #fff;
    content: '';
    height: 1px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 8px;
    transform: translate(-50%, -50%);
}
.p-service__contents--list02Btn .--plus::after {
    background-color: #fff;
    content: '';
    height: 8px;
    left: 50%;
    position: absolute;
    top: 50%;
    width: 1px;
    transform: translate(-50%, -50%);
}

.p-service__contents--list02Content {
    padding: 19px 30px 30px;
}

.p-service__contents--list02Content h3 {
    font-feature-settings: 'palt' on;
    font-size: 20px;
    line-height: 1.48;
    letter-spacing: .08em;
    min-height: 60px;
}
.p-service__contents--list02 li:nth-of-type(2) h3 {
    padding-top: 15px;
}

.p-service__contents--list02Content p {
    margin-top: 20px;
    font-feature-settings: 'palt' on;
    font-size: 12px;
    line-height: 1.95;
    letter-spacing: .05em;
    color: #adadad;
}

@keyframes circle {
    to {
        stroke-dashoffset:0;
    }
}

@media screen and (max-width: 1160px) {
    .p-service__content--txts {
        padding-left: 0;
    }

    .p-service__content--head {
        font-size: 44px;
    }
}

@media screen and (max-width: 900px) {
    .p-service {
        margin-top: 0;
    }

    .p-service__contents {
        padding: 80px 0 280px;
    }

    .p-service__content--headEn {
        padding: 0 8.97%;
    }

    .p-service__contents--inner  {
        margin-top: 40px;
    }

    .p-service__contents--upper {
        display: block;
    }
    
    .p-service__content--head {
        font-size: 30px;
        padding: 0 8.97%;
        white-space: nowrap;
    }

    .p-service__content--head .--wrapper {
        margin-left: 17px;
    }

    .p-service__content--txts {
        width: 100%;
        padding-top: 0;
        max-width: unset;
    }
    
    .p-service__content--txt {
        margin-top: 30px;
        font-size: 14px;
        line-height: 1.92;
        padding: 0 8.97%;
    }
    
    .p-service__btn {
        margin-top: 35px;
        margin-left: 8.97%;
    }
    
    .p-service__main--list {
        width: 100%;
        max-width: 350px;
        margin: 25px auto 0;
        min-width: 341px;
    }
    .p-service__main--list.--sp {
        display: flex;
    }
    .p-service__main--list.--pc {
        display: none;
    }
    
    .p-service__main--list li {
        width: 164px;
        height: 164px;
        padding-top: 10px;
    }
    .p-service__main--list li:nth-of-type(1) {
        margin: 0 20px;
    }
    .p-service__main--list li:nth-of-type(2) {
        margin-top: -10px;
    }
    .p-service__main--list li:nth-of-type(3) {
        margin-top: -10px;
        margin-left: 11px;
    }
    
    .p-service__main--listCircle::before {
        width: calc(100% - 16px);
        height: calc(100% - 16px);
    }
    
    .p-service__main--list p {
        font-size: 13px;
    }
    
    .p-service__main--list h3 {
        margin-top: 8px;
        font-size: 11px;
    }

    .p-service__main--circle {
        width: 100%;
        max-width: 360px;
        margin: 20px auto 0;
    }

    .p-service__contents--lower {
        margin-top: 70px;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .p-service__contents--lower::-webkit-scrollbar{
        display: none;
    }
    
    .p-service__contents--list02 {
        display: flex;
        justify-content: space-between;
        padding: 0 8.97vw;
        width: calc(951px + 17.94vw);
    }
    
    .p-service__contents--list02 li {
        width: 307px;
    }
    
    .p-service__contents--list02Btn {
        padding: 35px 30px;
        font-size: 10px;
    }
    
    .p-service__contents--list02Content {
        padding: 0 30px 30px;
    }
    
    .p-service__contents--list02Content h3 {
        font-size: 18px;
        min-height: 54px;
    }
    .p-service__contents--list02 li:nth-of-type(2) h3 {
        padding-top: 15px;
    }
}

/*===========================================================================*/
/*  creation  */
/*===========================================================================*/
.p-creation {
    overflow: hidden;
}

.p-creation__img {
    width: 200vw;
}

/*===========================================================================*/
/*  work  */
/*===========================================================================*/
.p-work {
    background-color: #1e1e1e;
}

.p-work .c-ttl__inner {
    z-index: 2;
}

.p-work__bg {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.p-work__bg img {
    width: 115%;
}

.p-work__content--headEn {
    margin-left: 7.35%;
    color: #fff !important;
}

.p-work__contents {
    margin-top: -23vh;
}

/* .p-work__contents--wrapper {
    margin-top: 40px;
} */

.p-work__bg--wrapper {
    position: absolute;
    width: 100%;
    height: calc(100% - 23vh);
    top: 0;
    left: 0;
}

.p-work__bg--inner {
    position: sticky;
    top: 0;
    height: 100vh;
}

.p-work__content {
    overflow: hidden;
    margin-top: 40px;
}

.p-work__list {
    display: flex;
    width: 216.029vw;
    padding-left: 7.35vw;
    padding-right: 7.35vw;
    box-sizing: border-box;
}

.p-work__list li {
    width: 27.5vw;
    margin-right: 1.47vw;
    transition: transform .6s;
}
.p-work__list li:last-of-type {
    margin-right: 0;
    transition: transform .6s;
}

.p-work__list--link {
    display: block;
    width: 100%;
}

.p-work__list--imgWrapper {
    aspect-ratio: 374/497;
    /* border-radius: 6px; */
    overflow: hidden;
    width: 100%;
    position: relative;
}

.p-work__list--imgWrapper figure {
    height: 100%;
    width: 132%;
    position: absolute;
    top: 0;
    right: 0;
}

.p-work__list--imgWrapper figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.p-work__list--client {
    font-size: 12px;
    line-height: 1.4;
    letter-spacing: -.02em;
    margin-top: 20px;
    font-family: "TazuganeGothicStdN-Light";
    color: #fff !important;
}

.p-work__list--cat {
    font-size: 16px;
    line-height: 1.13;
    letter-spacing: -.02em;
    margin-top: 8px;
    color: #fff !important;
}

.p-work__list--tags {
    position: relative;
    width: calc(100% + 9px);
    left: -9px;
    padding-top: 8px;
    font-size: 11px;
    line-height: 1;
}

.p-work__list--tag {
    padding-left: 12px;
    margin: 7px 0 0 9px;
    position: relative;
    color: #636363;
}
.p-work__list--tag::before {
    content: '＃';
    left: 0;
    position: absolute;
    top: 0;
}

.p-work__btn {
    margin-top: 80px;
    text-align: right;
    padding-right: 8.62%;
    color: #fff !important;
}

.p-work__btn .c-btn::after {
    opacity: 1 !important;
}
.p-work__btn .c-btn.c-btn::before {
    opacity: 0 !important;
}

.scroll-wrap {
    height: 250vh;
}

.scroll-inner {
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.scroll-fixed {
    width: 100%;
}

@media screen and (max-width: 900px) {
    .p-work {
        padding-bottom: 80px;
        margin-top: -22vh;
    }

    .p-work__bg--wrapper {
        height: calc(100% - 24vh);
    }

    .p-work__bg img {
        width: 936px;
    }

    .p-work__upper {
        margin-bottom: 0 !important;
    }
    
    .p-work__content--headEn {
        margin-left: 0;
        padding-left: 6.41%;
    }
    
    .p-work__content--head {
        font-size: 55px;
    }

    .p-work__contents {
        overflow: hidden;
        margin-top: -24vh;
    }

    .p-work__contents--wrapper {
        margin-top: 0;
    }

    .p-work__content {
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        padding-left: 6.41%;
        margin-top: 20px;
    }
    .p-work__content::-webkit-scrollbar {
        display: none;
    }
    
    .p-work__list {
        margin-top: 0;
        display: flex;
        width: calc(431.352vw + 72px);
        padding: 0;
        transform: translate(0, 0) !important;
    }
    
    .p-work__list li {
        width: calc(71.892vw + 12px);
        padding-right: 12px;
        margin-right: 0;
    }

    .p-work__list--imgWrapper {
        aspect-ratio: 206/290;
    }
    
    .p-work__list--imgWrapper figure {
        width: 100%;
        position: relative;
        top: unset;
        right: 0;
        transform: translate(0, 0) !important;
    }
    
    .p-work__list--imgWrapper figure img {
        height: 100%;
    }
    
    .p-work__list--client {
        font-size: 10px;
        margin-top: 14px;
    }
    
    .p-work__list--cat {
        font-size: 13px;
        margin-top: 7px;
        line-height: 1.55;
    }

    .p-work__list--tags {
        width: calc(100% + 3px);
        left: -3px;
        padding-top: 3px;
        font-size: 10px;
    }
    
    .p-work__list--tag {
        padding-left: 11px;
        margin: 7px 0 0 3px;
    }
    
    .p-work__btn {
        margin-top: 35px;
        text-align: left;
        padding-right: 0;
        position: relative;
        right: unset;
        padding-left: calc(6.41vw + 0px);
    }

    .scroll-wrap {
        height: auto;
    }

    .scroll-inner {
        height: auto;
        position: relative;
        display: block;
    }
    
    .scroll-fixed {
        position: relative;
        padding-left: 0;
        top: unset;
        transform: unset;
    }
    
    .scroll-block {
        display: none;
    }
}

/*===========================================================================*/
/*  media  */
/*===========================================================================*/
.p-media {
    padding-top: 180px;
    padding-bottom: 130px;
}

.p-media__inner {
    position: relative;
    padding-top: 45px;
    border-top: 1px solid #1e1e1e;
}

html.--bg-black .p-media__inner {
    border-top: 1px solid #f2f1ee;
}

.p-media__head {
    font-size: 60px;
    line-height: .99;
    letter-spacing: -.02em;
    margin-top: 20px;
}
.p-media__head.sp-only {
    display: none;
}

.p-media__list {
    padding-top: 60px;
    display: flex;
    overflow: hidden;
    flex-wrap: wrap;
    position: relative;
    column-gap: 3.4%;
    row-gap: 56px;
}

.p-media__list li {
    width: calc(100%/3 - 6.8%/3);
    position: relative;
}

.p-media__list li a {
    display: block;
}

.p-media__list--link .fade-media-img-wrapper {
    border-radius: 0;
}

.p-media__list--imgWrapper {
    overflow: hidden;
    border-radius: 0;
}

.p-media__list--img {
    aspect-ratio: 360/189;
    overflow: hidden;
    border-radius: 4px;
}

.p-media__list--img img {
    object-fit: cover;
    height: 100%;
}

.p-media__list--date {
    margin-top: 13px;
    font-size: 10px;
    line-height: .99;
    letter-spacing: -.02em;
    color: #636363;
}

.p-media__list--head {
    margin-top: 12px;
    font-size: 16px;
    font-family: "TazuganeGothicStdN-Bold";
    line-height: 1.48;
    letter-spacing: -.02em;
    min-height: 48px;
}

.p-media__list--head .js-fade {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.p-media__list--info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 11px;
    border-top: #ccc solid 1px;
    margin-top: 13px;
}

.p-media__list--tags {
    position: relative;
    width: calc(100% + 9px);
    left: -9px;
    font-size: 12px;
    line-height: 1;
    letter-spacing: -.02em;
    color: #636363;
    padding-top: 5px;
}

.p-media__list--tag {
    padding-left: 13px;
    position: relative;
    margin: 7px 0 0 9px;
}

.p-media__list--tag::before {
    content: '＃';
    left: 0;
    position: absolute;
    top: 0;
}

.p-media__btn {
    position: absolute;
    right: -25px;
    top: 78px;
}

@media screen and (min-width: 901px) {
    .p-media__list--link .p-media__list--img {
        transition: scale .4s cubic-bezier(.44,.14,.09,1.02);
    }
    .p-media__list--link:hover .p-media__list--img {
        scale: 1.1;
        transition-delay: 0 !important;
    }
}

@media screen and (max-width: 900px) {
    .p-media {
        padding-top: 80px;
        padding-left: 6.41%;
        padding-right: 6.41%;
        padding-bottom: 60px;
    }
    
    .p-media__inner {
        padding-top: 26px;
        border-top: none;
        border-top: 1px solid #1e1e1e;
    }
    html.--bg-black .p-media__inner {
        border-top: 1px solid #f2f1ee;
    }
    
    .p-media__head {
        font-size: 36px;
        margin-top: 12px;
    }
    .p-media__head.sp-only {
        display: flex;
    }
    .p-media__head.pc-only {
        display: none;
    }

    .p-media__swiper {
        position: relative;
        width: 100vw;
        left: -6.41vw;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .p-media__swiper::-webkit-scrollbar{
        display: none;
    }

    .p-media__list {
        padding: 35px 6.41vw 0;
        column-gap: 5.13vw;
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    .p-media__list li {
        width: 71.54vw;
        min-width: 71.54vw;
    }
    .p-media__list li:last-of-type {
        width: 77.95vw;
        min-width: 77.95vw;
        padding-right: 6.41vw;
    }

    .p-media__list--img {
        border-radius: 2px;
    }
    
    .p-media__list--date {
        margin-top: 8px;
        font-size: 10px;
    }
    
    .p-media__list--head {
        font-size: 14px;
        min-height: 42px;
    }

    .p-media__list--head .js-fade {
        -webkit-line-clamp: 2;
    }
    
    .p-media__list--tags {
        width: calc(100% + 3px);
        left: -3px;
        font-size: 10px;
        padding-top: 2px;
    }
    
    .p-media__list--tag {
        padding-left: 11px;
        margin: 6px 0 0 3px;
    }
    
    .p-media__btn {
        margin-top: 35px;
        position: relative;
        right: unset;
        top: unset;
        text-align: left;
        /* padding-left: 22px; */
    }
}

/*===========================================================================*/
/*  loading  */
/*===========================================================================*/
.p-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #1e1e1e;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 1.7s 0s cubic-bezier(.41,.02,0,.94);
}

.p-loading.js-loaded {
    transform: translate(0, -105%);
    pointer-events: none;
}

.p-loading__video {
    width: 160px;
    transition: scale 3s;
    scale: .73;
}
/* .p-loading__video.js-loaded {
    scale: .73;
} */

@media screen and (max-width: 900px) {
    .p-loading__video {
        width: 100px;
        transition: scale 3s;
    }
}

/*===========================================================================*/
/*  topics  */
/*===========================================================================*/
.p-topics {
    padding-top: 20px;
    padding-bottom: 100px;
}

.p-topics__inner {
    position: relative;
    max-width: 960px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.p-topics__head {
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.02em;
}

.p-topics__list {
    width: calc(100% - 172px);
    max-width: 660px;
    padding-top: 3px;
}

.p-topics__list li {
    border-bottom: #ccc solid 1px;
}

.p-topics__list--link {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}
.p-topics__list li:nth-of-type(1) .p-topics__list--link {
    padding-top: 0;
}

.p-topics__list--date {
    width: 116px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    color: #636363;
    padding-top: 4px;
}

.p-topics__list--txt {
    width: calc(100% - 116px);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.p-topics__btn {
    position: absolute;
    left: 0;
    bottom: 0;
}

@media screen and (max-width: 900px) {
    .p-topics {
        padding-top: 50px;
        padding-bottom: 60px;
    }
    
    .p-topics__inner {
        display: block;
    }
    
    .p-topics__head {
        font-size: 30px;
        text-align: center;
    }
    
    .p-topics__list {
        width: 100%;
        max-width: unset;
        padding-top: 45px;
    }
    
    .p-topics__list--link {
        display: block;
        padding: 26px 0;
    }
    
    .p-topics__list--date {
        display: block;
        width: 100%;
        font-size: 10px;
        padding-top: 0;
    }
    
    .p-topics__list--txt {
        width: 100%;
        display: block;
        font-size: 14px;
        margin-top: 10px;
    }
    
    .p-topics__btn {
        position: relative;
        left: unset;
        bottom: unset;
        padding-left: 22px;
        text-align: center;
        margin-top: 45px;
    }
}