@charset "utf-8";

/* ==========
detail
========== */
/* detail__header */
.detail {
    max-width: 1280px;
    margin: calc(88px + 80px) auto 0;
    padding: 0 20px;
}

.detail__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.detail__title span {
    display: block;
}

.detail__title .en {
    font-size: 1.6rem;
    display: flex;
    gap: 12px;
    align-items: center;
}

.detail__title__kind {
    font-size: 1.2rem;
    font-weight: 400;
    background-color: var(--gray-tag);
    border-radius: 2px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 8px;
}

.detail__title .clientName {
    font-size: 3.2rem;
    font-weight: 500;
    margin-top: 10px;
}

.detail__list {
    padding-bottom: 4px;
    line-height: 1.2;
}

.detail__item {
    font-size: 1.4rem;
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.detail__item .title {
    font-weight: 400;
    width: 52px;
    flex-shrink: 0;
}

.detail__item .desc {
    font-weight: 300;
}

.url {
    display: flex;
    gap: 6px;
    text-decoration: underline;
}

.url img {
    width: 12px;
    margin-left: 6px;
    aspect-ratio: 1/1;
}

.url--none {
    text-decoration: none;
}

.detail__thumbnail {
    text-align: center;
    margin-top: 80px;
}

.detail__thumbnail img {
    width: auto;
    max-height: 560px;
}

/* detail__info */
.detail__info {
    margin-top: 80px;
    padding: 0 80px;
}

.info__item {
    margin-top: 60px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.info__title {
    width: 160px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
}

.info__title .en {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-main);
}

.info__desc {
    width: stretch;
    font-size: 1.4rem;
    line-height: 1.8;
}

.info__colorBox {
    margin-top: 20px;
    width: 100%;
    display: flex;
}

.info__colorBox dt {
    height: 60px;
    border: 1px solid var(--gray-line);
    border-right: none;
}

.info__colorBox dd {
    font-size: 1.2rem;
}

.info__colorBox .colorBox--last {
    border-right: 1px solid var(--gray-line);
}

.info__desc--pdf iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 767px) {

    /* detail__header */
    .detail {
        margin: calc(60px + 80px) auto 0;
    }

    .detail__header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: start;
    }

    .detail__title .clientName {
        font-size: 2.8rem;
    }

    .detail__list {
        margin-top: 16px;
    }

    .detail__thumbnail {
        margin-top: 40px;
    }

    .detail__thumbnail img {
        width: 100%;
        height: auto;
    }

    /* detail__info */
    .detail__info {
        margin-top: 48px;
        padding: 0;
    }

    .info__item {
        margin-top: 40px;
        flex-direction: column;
        gap: 12px;
        justify-content: flex-start;
    }

    .info__title {
        width: fit-content;
        line-height: 1;
    }

    .info__title .en {
        line-height: 1;
    }
}

/* ==========
designComp
========== */
.design__img {
    background-color: var(--gray-bg);
    padding: 120px 0;
    margin-top: 80px;
}

.design__img__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.designComp {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
}

@media screen and (max-width: 767px) {
    .designComp {
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 20px;
    }

    .designComp--PC {
        width: 100%;
    }

    .designComp--SP {
        width: 60%;
        margin: 0 auto;
    }
}

/* ==========
others
========== */
.otherWorks {
    max-width: 1280px;
    margin: 100px auto 0;
    padding: 0 20px;
}

.otherWorks__inner {
    padding: 80px 6.4% 0;
    margin-top: 80px;
    border-top: 1px solid var(--black-main);
}

.section__title--others {
    font-size: 4.0rem;
}

.section__title--others .ja {
    font-size: 1.6rem;
}

.works__list--others {
    margin-top: 40px;
    justify-content: center;
    gap: 0;
}

.works__item--others {
    width: 30%;
}

.works__item--others .detail__title {
    font-size: 1.4rem;
}

.slick-slide {
    padding: 0 10px;
}

/* arrow */
.slide-arrow {
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.prev-arrow {
    border-top: 16px solid transparent;
    border-right: 16px solid var(--gray-line);
    border-bottom: 16px solid transparent;
    left: -7%;
}

.next-arrow {
    border-top: 16px solid transparent;
    border-left: 16px solid var(--gray-line);
    border-bottom: 16px solid transparent;
    right: -7%;
}

.prev-arrow:hover {
    border-right: 16px solid var(--gray-main);
}

.next-arrow:hover {
    border-left: 16px solid var(--gray-main);
}

/* dots */
.slide-dots {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.slide-dots li {
    width: 8px;
    height: 8px;
    aspect-ratio: 1/1;
    background-color: var(--gray-line);
    border-radius: 50%;
    transition: all .3s ease-in-out;
}

.slide-dots li button {
    /* position: relative; */
    text-indent: -9999vw;
}

.slide-dots li.slick-active {
    background-color: var(--gray-main);
    transform: scale(1.4);
}

@media screen and (max-width: 767px) {
    .section__title--others {
        flex-direction: row;
        align-items: center;
        font-size: 3.6rem;
    }

    .section__title--others .ja {
        font-size: 1.4rem;
    }

    .slick-slide {
        padding: 0 16px;
    }

    /* arrow */
    .prev-arrow {
        border-top: 12px solid transparent;
        border-right: 12px solid var(--gray-line);
        border-bottom: 12px solid transparent;
        left: -7%;
    }

    .next-arrow {
        border-top: 12px solid transparent;
        border-left: 12px solid var(--gray-line);
        border-bottom: 12px solid transparent;
        right: -7%;
    }
}