@charset "utf-8";

body {
    transition: 1s;
}

body.active {
    background-color: var(--accent-black);
    color: var(--base-white);
}

/*==========================
fv
==========================*/
.logo__pc {
    display: none;
}

.fv__title {
    font-family: Cormorant;
    font-size: 5.0rem;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: 0.5px;
    text-align: center;
    position: absolute;
    top: 114px;
    right: 0;
    left: 0;
    z-index: 10;
    overflow: hidden;
    display: inline-block;
}

.fv__txt {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 2.3s cubic-bezier(.305,.84,.44,1) forwards;
}

.fv__subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
    text-align: center;
    position: absolute;
    top: 224px;
    right: 0;
    left: 0;
    z-index: 10;
    animation: color-switch-animation 20s infinite;
    overflow: hidden;
    display: inline-block;
}

.fv__subtxt {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: slideUp 2.3s cubic-bezier(.165,.60,.44,1) forwards;
    animation-delay: 1.3s;
}

.slider .slider__img {
    display: none;
}

.slider__sp {
    width: 85.3vw;
    height: 510px;
    margin: 134px auto 0px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.7);
    animation: zoomUp 2s ease-in-out forwards;
}

.slider__sp .slider__imgsp {
    height: 510px;
    object-fit: cover;
    object-position: 34% 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: scale(1.05);
    animation: image-switch-animation 20s infinite;
}

.slider__imgsp:nth-of-type(1) {
    animation-delay: 0s;
}
.slider__imgsp:nth-of-type(2) {
    animation-delay: 4s;
    object-position: 55% 50%;
}
.slider__imgsp:nth-of-type(3) {
    animation-delay: 8s;
    object-position: 45% 50%;
}
.slider__imgsp:nth-of-type(4) {
    animation-delay: 12s;
    object-position: 55% 50%;
}
.slider__imgsp:nth-of-type(5) {
    animation-delay: 16s;
    object-position: 17% 50%;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes color-switch-animation {
    0%{ color: var(--accent-black);}
    24%{ color: var(--accent-black);}
    27%{ color: #9C9189;}
    60%{ color: #9C9189;}
    65%{ color: var(--accent-black);}
    100%{ color: var(--accent-black);}
}

@keyframes image-switch-animation {
    0%{ opacity: 0; transform: scale(1.05)}
    10%{ opacity: 1; transform: scale(1)}
    25%{ opacity: 1; transform: scale(1)}
    30%{ opacity: 0; transform: scale(1.05)}
    100%{ opacity: 0; transform: scale(1.05)}
}

@keyframes zoomUp {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1); 
    }
}

/* .fv pc */

@media screen and (min-width:835px) {

    .logo__pc {
        display: block;
        width: 89px;
        height: 95px;
        margin: 24px 0px 0px 51.8vw;
    }
    
    .fv__title {
        font-size: 7rem;
        line-height: normal;
        letter-spacing: 1.1px;
        text-align: center;
        position: absolute;
        top: 221.6px;
        left: 13.5vw;
    }

    .fv__subtitle {
        font-size: 2.2rem;
        letter-spacing: 1.54px;
        text-align: center;
        position: absolute;
        top: 319px;
        left: 8.5vw;
    }

    .slider {
        width: 80.7vw;
        height: 718px;
        margin: 152px auto 0px;
        position: relative;
        opacity: 0;
        transform: scale(0.7);
        animation: zoomUp 2s ease-in-out forwards;
    }
    
    .slider .slider__img {
        display: block;
        position: absolute;
        object-fit: cover;
        top: 0;
        left: 59px;
        bottom: 0;
        right: 0;
        opacity: 0;
        animation: image-switch-animation 20s infinite;
    }
    
    .slider__sp {
        display: none;
    }

    .slider__img:nth-of-type(1) {
        animation-delay: 0s;
    }
    .slider__img:nth-of-type(2) {
        animation-delay: 4s;
    }
    .slider__img:nth-of-type(3) {
        animation-delay: 8s;
    }
    .slider__img:nth-of-type(4) {
        animation-delay: 12s;
    }
    .slider__img:nth-of-type(5) {
        animation-delay: 16s;
    }

    @keyframes image-switch-animation {
        0%{ opacity: 0;}
        10%{ opacity: 1;}
        25%{ opacity: 1;}
        30%{ opacity: 0;}
        100%{ opacity: 0;}
    }

    @keyframes zoomUp {
    0% {
        opacity: 0;
        transform: scale(0.7);
    }
    100% {
        opacity: 1;
        transform: scale(1); 
    }
}

}


@media screen and (min-width:1280px) {

    .fv__title {
        font-size: 11.0rem;
        line-height: normal;
        letter-spacing: 1.1px;
        text-align: center;
        position: absolute;
        top: 186.6px;
        left: 8.5vw;
    }

}

@media screen and (min-width:2000px) {

    .slider .slider__img {
        width: 100%;
        max-height: 1250px;
        left: 104px;
    }

}


/*==========================
about
==========================*/

.about {
    position: relative;
}

.about__content {
    margin: 77px 13.2vw 0px;
}

.about__title {
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.87;
    letter-spacing: 0.48px;
}

.about__txt {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.37;
    margin-top: 59px;
}

.moreframe--about {
    margin-top: 71px;
}

.more--about {
    font-size: 1.8rem;
    letter-spacing: 0.18px;
}

.more--about.active {
    text-shadow: 0 -1.5em 0 var(--base-white), 0 0 0 var(--base-white);
}

.more--about.active:hover {
    text-shadow: 0 0 0 var(--base-white), 0 1.5em 0 var(--base-white);
}

.arrow--about {
    width: 34px;
    height: 23px;
}

.about__backimg {
    height: 418px;
    object-fit: cover;
    object-position: 24% 50%;
    position: absolute;
    top: 280px;
    z-index: -1;
}

.about__img1frame {
    text-align: right;
    margin-top: 136px;
}

.about__img1 {
    width: 34.4vw;
    height: auto;
    object-fit: cover;
}

.about__img2frame {
    margin: 46px 0px 0px 9.3vw;
}

.about__img2 {
    width: 64vw;
    height: auto;
    object-fit: cover;
}

/* .about pc */
@media screen and (min-width:835px) {

    .titleframe--about {
        margin-top: 0vh;
    }
    
    .about__content {
        margin: 77px 7.6vw 0px 46.8vw;
    }

    .about__title {
        font-size: 4.0rem;
        font-weight: 400;
        line-height: 1.95;
        letter-spacing: 0.4px;
    }

    .about__txt {
        font-size: 2.0rem;
        font-weight: 400;
        line-height: 2.9;
        letter-spacing: 0.2px;
        margin-top: 78px;
    }
    
    .moreframe--about {
        margin-top: 104px;
    }

    .more--about {
        font-size: 2.0rem;
        letter-spacing: 0.2px;
    }

    .about__backimg {
        height: auto;
        object-fit: cover;
        position: absolute;
        top: 160px;
        z-index: -1;
    }

    .about__img1frame {
        text-align: right;
        margin-top: 217px;
    }
    
    .about__img1 {
        width: 27.4vw;
        height: auto;
        object-fit: cover;
    }
    
    .about__img2frame {
        margin: 50px 0px 0px 23vw;
    }
    
    .about__img2 {
        width: 47vw;
        height: auto;
        object-fit: cover;
    }
}

@media screen and (min-width:1280px) {

    .titleframe--about {
        margin-top: 20vh;
    }

    .about__content {
        margin: 77px 13.6vw 0px 51.8vw;
    }

}

@media screen and (min-width:1920px) {

    .titleframe--about {
        margin-top: 43vh;
    }

}


/*==========================
class
==========================*/

.class__img {
    display: none;
}

.class__content {
    margin: 63px 13.2vw 57px;
    position: relative;
}

.class__title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.22px;
}

.class__txt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.78;
    margin-top: 34px;
    letter-spacing: -0.14px;
}

.class__link {
    margin-top: 47px;
    text-align: center;
}

.moreframe--class {
    margin-top: 83px;
}

.backtxt--class {
    position: absolute;
    top: 413px;
    right: -50px;
    z-index: -10;
}

/* .class pc */
@media screen and (min-width:662px) {
    
    .class__link {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4vw;
    }

    .backtxt--class {
        top: 334px;
        right: -50px;
    }

}

@media screen and (min-width:835px) {

    .class {
        display: flex;
        align-items:flex-start;
        justify-content:flex-start;
        padding: 225px 0px 116px 15vw;
        overflow: hidden;
    }

    .class__img {
        display: block;
        width: 33vw;
    }

    .class__frame {
        margin: 31px 9.3vw 0px 5.2vw;
    }
    
    .titleframe--class {
        margin: 0px;
    }

    .class__content {
        margin: 72px 0px 57px 3.47vw;
        position: relative;
    }
    
    .class__title {
        font-size: 3.2rem;
        line-height: 1.625;
        letter-spacing: 1.92px;
    }

    .pcBr2 {
        display: none;
    }

    .class__txt {
        font-size: 1.6rem;
        line-height: 1.87;
        margin-top: 23px;
        letter-spacing: 0.16px;
        width: 33.5vw;
    }
    
    .class__link {
        margin-top: 26px;
        display: block;
    }
    
    .moreframe--class {
        margin-top: 114px;
        margin-right: 2.7vw;
    }

    .backtxtpc--class {
        position: absolute;
        top: 340px;
        right: 54px;
        z-index: -1;
    }
}

@media screen and (min-width:1024px) {

    .backtxtpc--class {
        top: 400px;
        right: -386px;
    }

}

@media screen and (min-width:1097px) {

    .pcBr2 {
        display: block;
    }

}

@media screen and (min-width:1280px) {

    .class__link {
        display: flex;
        gap: 0px;
    }

    .backtxtpc--class {
        top: 340px;
        right: -66px;
    }

}

@media screen and (min-width:1440px) {

    .backtxtpc--class {
        top: 340px;
        right: 34px;
    }

}

@media screen and (min-width:1536px) {

    .backtxtpc--class {
        top: 380px;
        right: 34px;
    }

}

@media screen and (min-width:1920px) {

    .backtxtpc--class {
        top: 544px;
        right: 414px;
    }

}

@media screen and (min-width:2130px) {

    .class__frame {
        margin: 271px 9.3vw 0px 5.2vw;
    }

    .backtxtpc--class {
        top: 544px;
        right: 414px;
    }

    .class__link {
        justify-content: flex-start;
    }

    .moreframe--class {
        margin-right: 8.7vw;
    }

}


/*==========================
topics
==========================*/

.topics {
    background: var(--base-white);
    width: 100%;
    position: relative;
    height: 841px;
    overflow-y: clip;
}

.topics__header {
    padding: 68px 6.9vw 0px;
}

.titleframe--topics {
    margin: 0px;
}

.topics__txt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.78;
    margin: 10px 6.9vw 0px;
}

.topics__content {
    padding: 60px 12.8vw 58px 9.3vw;
    overflow: hidden;
}

.topics__item {
    width: 280px;
    height: 412px;
    background-color: var(--base-beige);
    padding: 16px 20px;
    margin-right: 15px;
}

.topics__top {
    height: 122px;
}


/* slick.css設定変更 */

.slick-dotted.slick-slider {
    z-index: 10;
}

.slick-list {
    overflow: visible;
}

.slick-slide img {
    display: inline-block;
}

.dots-class button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.dots-class {
    display: flex;
    justify-content: space-between;
    margin-top: 44px;
    z-index: 10;
}

.dots-class li {
    width: 100%;
    height: 1px;
    background-color: #CCCAC8;
    cursor: pointer;
    position: relative;
}

.dots-class li::before {
    content: "";
    display: inline-block;
    background-color: var(--accent-black);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    transition: 0.4s;
}

.dots-class li.slick-active::before {
    background-color: var(--accent-black);
    width: 100%;
}

/* slick.css設定変更 finish */


.topics__day {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.14;
    letter-spacing: 0.14px;  
}

.topics__title {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.85;
    margin-top: 5px;
}

.topics__category {
    color: #6D6D6D;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.14; /* 214.286% */
    letter-spacing: 0.14px;
    margin-top: 5px;
}

.moreframe--topics {
    text-align:left;
    margin-top: 57px;
}

.more--topics {
    font-size: 1.4rem;
    letter-spacing: 0.14px;
}

.arrow--topics {
    width: 26px;
    height: 18px;
    margin-left: 6px;
}

.topics__img {
    width: 255px;
    height: 170px;
    object-fit: cover;
    margin-top: 12px;
}

.allframe--topics {
    margin-top: 57px;
}

.backtxt--topics {
    position: absolute;
    top: 690px;
    right: 0px;
}

/* .topics pc */
@media screen and (min-width:835px) {

    .topics {
        height: 941px;
    }

    .topics__header {
        padding-top: 102px;
        padding-left: 14.9vw;
    }

    .topics__txt {
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.87;
        margin: 30px 0px 0px 47px;
    }
    
    .topics__content {
        padding: 85px 8vw 0px 28vw;
    }

    .topics__item {
        width: 322px;
        height: 452px;
        padding: 10px 40px 0px;
        background-color: transparent;
        transition: 0.6s;
        margin-right: 0px;
    }

    .topics__item--pc {
        display: block;
    }

    .topics__item:hover {
        background-color: var(--base-beige);
    }

    .topics__item + .topics__item {
        border-left: 0.3px solid var(--accent-black);
    }

    .topics__top {
        height: 134px;
    }

    .topics__day {
        display: block;
        font-size: 1.6rem;
        line-height: 1.87;
        letter-spacing: 0.16px;  
    }
    
    .topics__item .topics__title {
        display: inline;
        font-size: 1.6rem;
        line-height: 1.85;
        letter-spacing: 0.16px;
        margin-top: 7px;
        position: relative;
        background: linear-gradient(var(--accent-black), var(--accent-black)) 0 100%/0 0.3px no-repeat;
        transition: background 0.7s;
        text-decoration: none;
    }

    .topics__item:hover .topics__title {
        background-size: 100% 0.5px;
    }
    
    .topics__category {
        margin-top: 7px;
    }
    
    .moreframe--topics {
        text-align:left;
        margin-top: 97.3px;
        line-height: 1;
    }
    
    .more--topics {
        font-size: 1.6rem;
        letter-spacing: 0.16px;
        overflow: hidden;
        color: transparent;
        text-shadow: 0 -1.5em 0 var(--accent-black), 0 0 0 var(--accent-black);
        transition: 0.3s;
    }

    .topics__item:hover .more--topics {
        text-shadow: 0 0 0 var(--accent-black), 0 1.5em 0 var(--accent-black);
    }
    
    .topics__img {
        width: 241px;
        height: 161px;
        object-fit: cover;
        margin-top: 18.7px;
    }

    .allframe--topics {
        margin-top: 69px;
    }
    
    .backtxtpc--topics {
        position: absolute;
        top: 714px;
        right: 10px;
    }
    
}

/*==========================
gallery
==========================*/

.gallery {
    background: var(--base-white);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.gallery__header {
    padding: 107px 6.9vw 0px;
    text-align: right;
}

.titleframe--gallery {
    margin: 0px;
    justify-content: flex-end;
}

.gallery__txt {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.78;
    margin-top: 10px;
}

.gallery__content {
    padding-bottom: 47px;
}

.slider__wraper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10.5px;
    overflow: hidden;
}

.slider__gallery {
    margin-top: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10.5px;
    animation: img-scroll 60s infinite linear 0.5s both;
}

@keyframes img-scroll {
    from {
      transform: translateX(0);
    }
      to {
      transform: translateX(100%);
    }
}

.slider__galleryimg {
    width: 280px;
    height: 190px;
    object-fit: cover;
    flex-shrink: 0;
}

.slider__galleryimg:nth-of-type(2) {
    width: 192px;
    height: 131px;
}

.slider__galleryimg:nth-of-type(4) {
    width: 192px;
    height: 131px;
}

.slider__galleryimg:nth-of-type(6) {
    width: 192px;
    height: 131px;
}

.slider__galleryimg:nth-of-type(8) {
    width: 192px;
    height: 131px;
}

.slider__galleryimg:nth-of-type(10) {
    width: 192px;
    height: 131px;
}

.slider__galleryimg:nth-of-type(12) {
    width: 192px;
    height: 131px;
}

.allframe--gallery {
    margin: 71px 0px 0px 14.4vw;
    text-align: left;
}

.backtxt--gallery {
    position: absolute;
    top: 471px;
    left: 0px;
}

/* .gallery pc */
@media screen and (min-width:835px) {
 
    .gallery__header {
        padding: 173px 8.5vw 0px;
        text-align: right;
    }
    
    .gallery__txt {
        font-size: 1.6rem;
        line-height: 1.87;
        margin-top: 26px;
    }

    .gallery__content {
        padding-bottom: 132px;
    }
    
    .slider__gallery {
        margin-top: 112px;
        animation: img-scroll__pc 150s infinite linear 0.5s both;
    }
    
    .slider__galleryimg {
        width: 594px;
        height: 404px;
    }

    .slider__galleryimg:nth-of-type(2) {
        width: 409px;
        height: 278px;
    }
    
    .slider__galleryimg:nth-of-type(4) {
        width: 409px;
        height: 278px;
    }

    .slider__galleryimg:nth-of-type(6) {
        width: 409px;
        height: 278px;
    }
    
    .slider__galleryimg:nth-of-type(8) {
        width: 409px;
        height: 278px;
    }
    
    .slider__galleryimg:nth-of-type(10) {
        width: 409px;
        height: 278px;
    }
    
    .slider__galleryimg:nth-of-type(12) {
        width: 409px;
        height: 278px;
    }

    .allframe--gallery {
        margin: 41px 0px 0px 14.8vw;
    }

    .backtxtpc--gallery {
        position: absolute;
        top: 782px;
        left: 28px;
    }

    @keyframes img-scroll__pc {
        from {
          transform: translateX(0);
        }
          to {
          transform: translateX(39%);
        }
    }
}

/*==========================
studio
==========================*/

.studio {
    position: relative;
}

.titleframe--studio {
    margin-top: 58px;
}

.studio__content{
    margin: 41px 11vw 0px;
}

.studio__name {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.87; /* 187.5% */
    letter-spacing: 0.16px;
}

.studio__address {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.14;
    letter-spacing: 0.14px;
    margin-top: 9px;
}

.maplink {
    margin-top: 59px;
    text-align: right;
    vertical-align: middle;
}

.maptxt {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.14px;
}

.arrow--link {
    width: 31px;
    height: 24px;
    margin-left: 8.5px;
}

.map {
    margin-top: 9px;
    width: 77.8vw;
    height: 53vw;
}

.backtxt--studio {
    position: absolute;
    bottom: -96px;
    right: 0px;
    z-index: -1;
}

/* .studio pc */
@media screen and (min-width:835px) {

    .titleframe--studio {
        margin-top: 93px;
    }

    
    .studio__content{
        margin: 53px 7.7vw 160px 42vw;
    }

    .studio__name {
        font-size: 2.0rem;
        font-weight: 500;
        line-height: 1.5;
        letter-spacing: 0.2px;
    }

    .studio__address {
        font-size: 1.6rem;
        line-height: 1.87;
        letter-spacing: 0.16px;
        margin-top: 11.5px;
    }
    
    .maplink {
        margin-top: 0.5px;
    }
    
    .maptxt {
        display: inline-block;
        font-size: 1.6rem;
        line-height: 1.87;
        letter-spacing: 0.16px;
        overflow: hidden;
        color: transparent;
        text-shadow: 0 -1.87em 0 var(--accent-black), 0 0 0 var(--accent-black);
        transition: 0.3s;
    }

    .maplink:hover .maptxt {
        text-shadow: 0 0 0 var(--accent-black), 0 1.87em 0 var(--accent-black);
    }

    .arrow--link {
        width: 34px;
        height: 24px;
        margin-left: 12px;
    }

    .map {
        margin-top: 14px;
        width: 50vw;
        height: 33.7vw;
    }

    .backtxtpc--studio {
        position: absolute;
        top: 723px;
        right: 38px;
    }
}

@media screen and (min-width:1920px) {

    .backtxtpc--studio {
        top: 893px;
    }

}

