@import "./base.css";



/* mv */
.mv {
    width: 100%;
}
.mv__inner {
    width: calc(100% - 100px);
    margin: 0 auto;
}
.mv__movie {
    position: relative;
}
.mv__movie__cc {
    width: 90%;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.mv__movie__cc h2 {
    width: 100%;
    color: #FFF;
    font-size: 100px;
    text-align: center;
    line-height: 1;
}
.mv__movie__cc p {
    color: #FFF;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
    margin-top: 20px;
}
/* movie slide */
.swiper {
    width: 100%;
    position: relative;
}
.swiper::after {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.swiper::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image:
        radial-gradient(#232323 30%, transparent 30%);
    background-size: 3px 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.swiper .swiper-slide {
    width: 100%;
    height: calc(100vh - 130px) !important;
    overflow: hidden;
}
.swiper .swiper-slide video {
    width: 100% !important;
    height: 100%;
}
/* txt slide */
.swiper__text {
    margin-top: 20px;
    z-index: 11;
}
.swiper__text .swiper-slide {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0 30px;
}
.swiper__text .swiper-slide p {
    font-size: 12px;
    letter-spacing: 0.05em;
}
.swiper__text .swiper-slide a {
    color: #737373;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em;
    padding: 0 20px 0 0;
    position: relative;
    cursor: pointer;
}
.swiper__text .swiper-slide a::before {
    content: '';
    width: 12px;
    height: 5px;
    background: url('../images/arrow-item.svg') center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
}
.swiper__text .swiper-slide a::after {
    content: '';
    display: block;
    position: absolute;
    inset: -3px;
    border-bottom: 1px solid #737373;
    transition: transform .5s ease;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
}
.swiper__text .swiper-slide a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
/* pagenation */
.swiper-pagination {
    max-width: 400px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0px !important;
    z-index: 10 !important;
}
.swiper-pagination-bullet {
    display: flex !important;
    align-items: center !important;
    width: 100px !important;
    height: 30px !important;
    background: transparent !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    transition: all .5s ease !important;
}
.swiper-pagination-bullet:hover {
    opacity: .3 !important;
    transition: all .5s ease !important;
}
/* indicator */
.indicator__wrap {
    display: flex;
    gap: 0 10px;
}
.indicator__wrap .indicator__container {
    width: 100px;
    background: #d3d3d3;
}
.indicator__wrap .indicator {
    width: 0%;
    height: 1px;
}
.indicator__wrap .indicator.active {
    background: #000;
}
.indicator__wrap .indicator.completed {
    background: #232323;
}
.swiper-pagination-number {
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    /* mv */
    .mv__inner {
        width: calc(100% - 60px);
    }
    .mv__movie__cc h2 {
        font-size: 40px;
        letter-spacing: 0.05em;
    }
    .mv__movie__cc p {
        font-size: 15px;
        line-height: 1.4;
        margin-top: 20px;
    }
    /* movie slide */
    .swiper::before {
        background-size: 3px 3px;
    }
    .swiper .swiper-slide {
        height: auto !important;
        aspect-ratio: 1/1.6 !important;
    }
    /* txt slide */
    .swiper__text {
        margin-top: 60px;
    }
    .swiper__text .swiper-slide {
        gap: 0 20px;
    }
    .swiper__text .swiper-slide p {
        font-size: 12px;
    }
    .swiper__text .swiper-slide a {
        font-size: 10px;
        padding: 0 20px 3px 0;
    }
    .swiper__text .swiper-slide a::before {
        width: 12px;
        height: 5px;
    }
    .swiper__text .swiper-slide a::after {
        border-bottom: 1px solid #737373;
    }
    /* pagenation */
    .swiper-pagination {
        max-width: 400px;
    }
    .swiper-pagination-bullet {
        width: calc(100% / 3) !important;
        height: 30px !important;
    }
    .swiper-pagination-bullet:hover {
        opacity: 1 !important;
    }
    /* indicator */
    .indicator__wrap {
        margin-top: -40px;
        gap: 0 10px;
    }
    .indicator__wrap .indicator__container {
        width: calc(100% / 3);
    }
    .indicator__wrap .indicator {
        height: 1px;
    }
    .swiper-pagination-number {
        font-size: 12px;
    }
}
@media screen and (max-width: 390px) {
    /* mv */
    .mv__inner {
        width: calc(100% - 6rem);
    }
    .mv__movie__cc h2 {
        font-size: 4rem;
    }
    .mv__movie__cc p {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    /* movie slide */
    .swiper::before {
        background-size: .3rem .3rem;
    }
    /* txt slide */
    .swiper__text {
        margin-top: 6rem;
    }
    .swiper__text .swiper-slide {
        gap: 0 2rem;
    }
    .swiper__text .swiper-slide p {
        font-size: 1.2rem;
    }
    .swiper__text .swiper-slide a {
        font-size: 1rem;
        padding: 0 2rem .3rem 0;
    }
    .swiper__text .swiper-slide a::before {
        width: 1.2rem;
        height: .5rem;
    }
    .swiper__text .swiper-slide a::after {
        border-bottom: .1rem solid #737373;
    }
    /* pagenation */
    .swiper-pagination {
        max-width: 40rem;
    }
    .swiper-pagination-bullet {
        height: 3rem !important;
    }
    /* indicator */
    .indicator__wrap {
        margin-top: -4rem;
        gap: 0 1rem;
    }
    .indicator__wrap .indicator {
        height: .1rem;
    }
    .swiper-pagination-number {
        font-size: 1.2rem;
    }
}



/* works */
.works {
    padding: 150px 0;
}
.works__ttl {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
}
.works__ttl span {
    display: inline-block;
    transform: translateY(-1px);
}
.works__exp {
    font-size: 22px;
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: center;
    margin-top: 30px;
}
.works__container {
    width: 90%;
    max-width: 1300px;
    margin: 100px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 70px 0;
}
.works__cnt {
    display: block;
    width: 30%;
    cursor: pointer;
}
.works__cnt__img {
    width: 100%;
    aspect-ratio: 16 / 9;
    transition: all .5s ease;
}
.works__cnt:hover .works__cnt__img {
    scale: 1.05;
    transition: all .5s ease;
}
.works__cnt__img img {
    width: 100%;
    height: 100%;
    vertical-align: middle;
}
.works__cnt__exp {
    margin-top: 15px;
}
.works__cnt__category {
    display: flex;
    gap: 0 5px;
}
.works__cnt__category span {
    display: inline-block;
    color: #FFF;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.05em;
    background: #000;
    padding: 3px 7px;
}
.works__cnt__ttl {
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-top: 7px;
}
.works__btn__wrap {
    display: flex;
    justify-content: end;
    align-items: end;
}
.works__btn {
    color: #737373;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 0 25px 5px 0;
    position: relative;
}
.works__btn::before {
    content: '';
    width: 14px;
    height: 6px;
    background: url('../images/arrow-item.svg') center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
}
.works__btn::after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    border-bottom: 1px solid #737373;
    transition: transform .5s ease;
    transform: scaleX(0);
    transform-origin: right;
    z-index: -1;
}
.works__btn:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
@media screen and (max-width: 768px) {
    .works {
        padding: 150px 0 100px;
    }
    .works__ttl {
        font-size: 12px;
    }
    .works__ttl span {
        transform: translateY(-1px);
    }
    .works__exp {
        font-size: 16px;
        line-height: 2;
        margin-top: 20px;
    }
    .works__container {
        width: calc(100% - 60px);
        margin: 50px auto 0;
        gap: 40px 0;
    }
    .works__cnt {
        width: 100%;
    }
    .works__cnt__img {
        width: 100%;
        aspect-ratio: 16 / 9;
        transition: all .5s ease;
    }
    .works__cnt:hover .works__cnt__img {
        scale: 1.05;
        transition: all .5s ease;
    }
    .works__cnt__img img {
        width: 100%;
        height: 100%;
        vertical-align: middle;
    }
    .works__cnt__exp {
        margin-top: 10px;
    }
    .works__cnt__category {
        gap: 0 5px;
    }
    .works__cnt__category span {
        font-size: 10px;
        padding: 3px 5px;
    }
    .works__cnt__ttl {
        font-size: 12px;
        margin-top: 5px;
    }
    .works__btn {
        font-size: 13px;
        padding: 0 20px 5px 0;
    }
    .works__btn::before {
        width: 14px;
        height: 6px;
    }
    .works__btn::after {
        border-bottom: 1px solid #737373;
    }
}
@media screen and (max-width: 390px) {
    .works {
        padding: 15rem 0 10rem;
    }
    .works__ttl {
        font-size: 1.2rem;
    }
    .works__ttl span {
        transform: translateY(-.1rem);
    }
    .works__exp {
        font-size: 1.6rem;
        margin-top: 2rem;
    }
    .works__container {
        width: calc(100% - 6rem);
        margin: 5rem auto 0;
        gap: 4rem 0;
    }
    .works__cnt__exp {
        margin-top: 1rem;
    }
    .works__cnt__category {
        gap: 0 .5rem;
    }
    .works__cnt__category span {
        font-size: 1rem;
        padding: .3rem .5rem;
    }
    .works__cnt__ttl {
        font-size: 1.2rem;
        margin-top: .5rem;
    }
    .works__btn {
        font-size: 1.3rem;
        padding: 0 2rem .5rem 0;
    }
    .works__btn::before {
        width: 1.4rem;
        height: .6rem;
    }
    .works__btn::after {
        border-bottom: .1rem solid #737373;
    }
}



/* about */
.about {
    padding: 100px 0;
}
.about__exp {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.about__exp__index h2 {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
}
.about__exp__index h2 span {
    display: inline-block;
    transform: translateY(-1px);
}
.about__exp__index p {
    font-size: 50px;
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin-top: 30px;
}
.about__exp__txt {
    max-width: 480px;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2;
    margin-top: 160px;
}
.about__exp__txt__feature {
    border-top: 1px solid #cdcdcd;
    margin-top: 50px;
}
.about__exp__txt__feature li {
    border-bottom: 1px solid #cdcdcd;
    padding: 20px 0;
}
.about__exp__txt__feature__number {
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
    padding-left: 12px;
    position: relative;
}
.about__exp__txt__feature__number::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: #232323;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.about__exp__txt__feature li span {
    display: block;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin-top: 5px;
}
@media screen and (max-width: 768px) {
    .about {
        width: calc(100% - 60px);
        padding: 50px 0;
        margin: 0 auto;
    }
    .about__exp {
        width: 100%;
        max-width: 500px;
        flex-direction: column;
    }
    .about__exp__index h2 {
        font-size: 12px;
    }
    .about__exp__index h2 span {
        transform: translateY(-1px);
    }
    .about__exp__index p {
        font-size: 30px;
        margin-top: 20px;
    }
    .about__exp__txt {
        max-width: 260px;
        font-size: 13px;
        margin: 50px 0 0 auto;
    }
    .about__exp__txt__feature {
        border-top: 1px solid #cdcdcd;
        margin-top: 20px;
    }
    .about__exp__txt__feature li {
        border-bottom: 1px solid #cdcdcd;
        padding: 15px 0;
    }
    .about__exp__txt__feature__number {
        font-size: 11px;
        padding-left: 12px;
    }
    .about__exp__txt__feature__number::before {
        width: 3px;
        height: 3px;
        top: 50%;
    }
    .about__exp__txt__feature li span {
        font-size: 13px;
        line-height: 1.6;
        margin-top: 5px;
    }
}
@media screen and (max-width: 390px) {
    .about {
        width: calc(100% - 6rem);
        padding: 5rem 0;
    }
    .about__exp {
        max-width: 50rem;
    }
    .about__exp__index h2 {
        font-size: 1.2rem;
    }
    .about__exp__index h2 span {
        transform: translateY(-.1rem);
    }
    .about__exp__index p {
        font-size: 3rem;
        margin-top: 2rem;
    }
    .about__exp__txt {
        max-width: 26rem;
        font-size: 1.3rem;
        margin: 5rem 0 0 auto;
    }
    .about__exp__txt__feature {
        border-top: .1rem solid #cdcdcd;
        margin-top: 2rem;
    }
    .about__exp__txt__feature li {
        border-bottom: .1rem solid #cdcdcd;
        padding: 1.5rem 0;
    }
    .about__exp__txt__feature__number {
        font-size: 1.1rem;
        padding-left: 1.2rem;
    }
    .about__exp__txt__feature__number::before {
        width: .3rem;
        height: .3rem;
    }
    .about__exp__txt__feature li span {
        font-size: 1.3rem;
        margin-top: .5rem;
    }
}



/* service */
.service {
    width: 100%;
    padding: 100px 0 150px;
}
.service__ttl {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: center;
}
.service__ttl span {
    display: inline-block;
    transform: translateY(-1px);
}
.swiper__service {
    width: 100vw;
    margin-top: 50px;
    overflow: hidden;
}
.swiper__service .swiper-slide {
    aspect-ratio: 1/1.414 !important;
}
.swiper__service .swiper-slide::before {
    content: '';
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.swiper__service .swiper-slide img {
    width: 100%;
    height: 100%;
}
.swiper__service__exp {
    width: 100%;
    height: 100%;
    padding: 30px 30px 50px;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.swiper__service__exp__number {
    color: #FFF;
    font-size: 74px;
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 0.8;
    text-align: end;
}
.swiper__service__exp__txt__wrap {
    display: flex;
    flex-direction: column;
}
.swiper__service__exp__ttl {
    color: #FFF;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
    position: relative;
    flex-grow: 1;
}
.swiper__service__exp__txt {
    color: #FFF;
    font-size: 14px;
    letter-spacing: 0.1em;
    margin-top: 20px;
    flex-grow: 1;
}
@media screen and (max-width: 768px) {
    .service {
        padding: 100px 0;
    }
    .service__ttl {
        font-size: 12px;
    }
    .service__ttl span {
        transform: translateY(-1px);
    }
    .swiper__service {
        margin-top: 30px;
    }
    .swiper__service .swiper-slide {
        aspect-ratio: 1/1.8 !important;
    }
    .swiper__service .swiper-slide::before {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        border: 1px solid #FFF;
    }
    .swiper__service__exp {
        padding: 20px 20px 30px;
    }
    .swiper__service__exp__number {
        font-size: 40px;
    }
    .swiper__service__exp__ttl {
        font-size: 22px;
    }
    .swiper__service__exp__txt {
        font-size: 12px;
        margin-top: 20px;
    }
}
@media screen and (max-width: 390px) {
    .service {
        padding: 10rem 0;
    }
    .service__ttl {
        font-size: 1.2rem;
    }
    .service__ttl span {
        transform: translateY(-.1rem);
    }
    .swiper__service {
        margin-top: 3rem;
    }
    .swiper__service .swiper-slide::before {
        width: calc(100% - 1rem);
        height: calc(100% - 1rem);
        border: .1rem solid #FFF;
    }
    .swiper__service__exp {
        padding: 2rem 2rem 3rem;
    }
    .swiper__service__exp__number {
        font-size: 4rem;
    }
    .swiper__service__exp__ttl {
        font-size: 2.2rem;
    }
    .swiper__service__exp__txt {
        font-size: 1.2rem;
        margin-top: 2rem;
    }
}