@charset "utf-8";



.en   {
    font-family: 'Poppins';
    font-weight: 600;
    letter-spacing: 0.032em;
}

.weight   {
    text-shadow: 0 0 1px #333;
    color: #333;
}




/* ワークス */
.work-detail   {
    padding-top: 40px;
}

.work-main   {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 100px;
    position: relative;
}

/* 左カラム */
.main-left   {
    width: 72%;
    height: 88vh;
    position: relative;
}

.main-left .mock-site   {
    height: 88vh;
    border: solid 8px #333;
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    z-index: 0;
}

.main-left .slider-wrap   {
    width: 100%;
    height: 88vh;
}

.main-left .slider-wrap .slider   {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none in !important;
    padding: 0;
    margin: 0;
}

.slider .slick-slide {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    height: 88vh !important;
    box-sizing: border-box;
}

.main-left .slider-wrap .slider img   {
    height: 88vh;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
    border: solid 2px #333;
    display: block;
}

.main-left .slider-wrap .arrow   {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border: solid 2px #333;
    border-radius: 12px;
    position: absolute;
    top: 50%;
    cursor: pointer;
}

.main-left .slider-wrap .arrow.arrow-prev   {
    right: 0;
}

.main-left .slider-wrap .arrow.arrow-prev span   {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 6px;
    background-color: #333;
    position: absolute;
}

.main-left .slider-wrap .arrow.arrow-prev span:nth-child(1)   {
    top: 30px;
    left: 12px;
}

.main-left .slider-wrap .arrow.arrow-prev span:nth-child(2)   {
    width: 10px;
    transform: rotate(45deg);
    top: 27px;
    left: 33px;
}

.main-left .slider-wrap .arrow.arrow-next   {
    left: 0;
}

.main-left .slider-wrap .arrow.arrow-next span   {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 6px;
    background-color: #333;
    position: absolute;
}

.main-left .slider-wrap .arrow.arrow-next span:nth-child(1)   {
    top: 30px;
    right: 12px;
}

.main-left .slider-wrap .arrow.arrow-next span:nth-child(2)   {
    width: 10px;
    transform: rotate(-45deg);
    top: 27px;
    right: 33px;
}


.main-left .mock-site iframe   {
    width: 100%;
    height: 100%;
    border: none;
}

.main-left .mock-site .scroll   {
    width: 130px;
    padding: 14px 10px;
    background-color: #fff;
    border: solid 2px #333;
    border-radius: 10px;
    position: absolute;
    left: 44%;
    top: 794px;
}

.main-left .mock-site .scroll .text   {
    font-size: 16px;
    color: #585858;
    text-align: end;
    position: relative;
}

.main-left .mock-site .scroll .text::after   {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 6px;
    background-color: #585858;
    transform: rotate(90deg);
    position: absolute;
    top: 7px;
    left: -6px;
    animation: arrowMove 1.4s ease-in-out infinite;
}

.main-left .mock-site .scroll .text::before   {
    content: "";
    width: 10px;
    height: 2px;
    border-radius: 6px;
    background-color: #585858;
    transform: rotate(45deg);
    position: absolute;
    top: 17px;
    left: 0px;
    animation: arrowHeadMove 1.4s ease-in-out infinite;
}

@keyframes arrowMove   {
    0%, 100%   {
        transform: translateY(0) rotate(90deg);
    }
    50%   {
        transform: translateY(4px) rotate(90deg);
    }
}

@keyframes arrowHeadMove   {
    0%, 100%   {
        transform: translateY(0) rotate(45deg);
    }
    50%   {
        transform: translateY(4px) rotate(45deg);
    }
}




/* 右カラム */
.side-info {
    width: 26%;
    height: 88vh;
    top: 100px;
    align-self: flex-start;
    background-color: #eaeaea;
    border-radius: 20px;
    padding: 24px;
    top: 100px;
    will-change: transform;
    transition: transform 0.3s ease-out;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
}

.side-info .back-button {
    width: 100%;
    display: flex;
    justify-content: end;
    margin-bottom: 24px;
}

.side-info .back-button a   {
    background-color: #fff;
    width: 40px;
    height: 40px;
    display: block;
    border: solid 2px #333;
    border-radius: 8px;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    cursor: pointer;
}

.side-info .back-button a:hover   {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.side-info .back-button a:active   {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transform: translateY(1px) scale(0.97);
}

.side-info .back-button a span   {
    content: "";
    background-color: #333;
    width: 30px;
    height: 2px;
    border-radius: 8px;
    position: absolute;
    display: inline-block;
    top: 17px;
    left: 3px;
}

.side-info .back-button a span:nth-child(1)   {
    transform: rotate(45deg);
}

.side-info .back-button a span:nth-child(2)   {
    transform: rotate(-45deg);
}



.side-info .date {
    font-size: 12px;
    line-height: 1.2em;
    margin-bottom: 4px;
}

.side-info h1   {
    font-size: 32px;
}
.side-info ul   {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-info ul strong   {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.side-info ul .info-p   {
    display: inline-block;
    padding: 4px 6px;
    background-color: #fff;
    border: solid 1px #333;
    border-radius: 6px;
    margin-right: 2px;
    margin-bottom: 8px;
}

.side-info ul .info-p p   {
    width: 100%;
    font-size: 12px;
    text-align: center;
    align-items: center;
}

/* リンクボタン */
.side-info .btn   {
    width: 100%;
    max-width: 360px;
    padding: 12px 0;
    display: block;
    background-color: #004FFF;
    margin: 120px auto;
    border-radius: 12px;
}

.side-info .btn .btn-text   {
    font-size: 20px;
    text-align: center;
    align-items: center;
    color: #fff;
}




/* 概要 */
.main-description   {
    width: 100%;
    max-width: 72%;
}

/* タイトル */
.main-description h2   {
    display: block;
    font-size: 56px;
    line-height: 2em;
    margin-bottom: 40px;
    position: relative;
}

.main-description h2::before   {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #333;
    border-radius: 6px;
    position: absolute;
    top: 110px;
    left: 0;
}

.main-description .overview-top   {
    width: 100%;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}


/* 左 */
.main-description .overview-top .left   {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main-description .overview-top .left .left-title   {
    font-size: 16px;
    margin-bottom: 16px;
}

.main-description .overview-top .left .left-text   {
    font-size: 14px;
    color: #585858;
}

.main-description .overview-top .left .left-bottom .left-text   {
    line-height: 1.8em;
}


/* 右 */
.main-description .overview-top .right   {
    width: 70%;
}

.main-description .overview-top .right h3   {
    font-size: 20px;
    margin-bottom: 24px;
}

.main-description .overview-top .right .description   {
    font-size: 16px;
    line-height: 1.8em;
    color: #585858;
}


/* 写真 */
.main-description .img-first   {
    width: 100%;
    height: 80vh;
    margin-bottom: 80px;
}

.main-description .img-first img   {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: solid 1px #333;
    border-radius: 30px;
}



.main-description .overview-bottom   {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-bottom: 80px;
}

.main-description .overview-bottom .text   {
    display: flex;
    justify-content: space-between;
    min-height: 120px;
}

.main-description .overview-bottom .text .title   {
    width: 30%;
    font-size: 20px;
    text-align: center;
}

.main-description .overview-bottom .text .description   {
    width: 70%;
    line-height: 2em;
    font-size: 16px;
    text-align: justify;
}


/* 写真 */
.main-description .img-second   {
    width: 100%;
    height: 80vh;
}

.main-description .img-second img   {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: solid 1px #333;
    border-radius: 30px;
}



/* ナビゲーション */
.pager   {
    width: 100%;
    margin-top: 280px;
    margin-bottom: 280px;
    padding: 0 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* つくったもの */
.pager .left   {
    display: block;
    padding: 24px;
    text-align: center;
    align-items: center;
}

.pager .left .top   {
    font-size: 32px;
    line-height: 1.8em;
}

.pager .left .bottom   {
    font-size: 48px;
}


/* つぎへ */
.pager a   {
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 12px;
    background-color: #fff;
}

.pager a:hover   {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pager a:active   {
    transform: translateY(2px) scale(0.97);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pager .right   {
    padding: 24px 40px;
    display: block;
}

.pager .right .top   {
    text-align: left;
    font-size: 20px;
    margin-bottom: 4px;
}

.pager .right .middle   {
    font-size: 28px;
    margin-bottom: 12px;
}

.pager .right .bottom   {
    width: 300px;
    height: 200px;
    margin: 0 auto;
}

.pager .right .bottom img   {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    border: solid 2px #333;
}



/* スマホviewsiteボタン */
.sp-viewsite-button {
    display: none;
}



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

    /* ワークス */
    .work-main {
        margin-bottom: 100px;
    }

    /* 左カラム */
    .main-left {
        width: 100%;
        height: 60svh;
    }

    /* Web用 */
    .main-left .mock-site {
        height: 60svh;
        border-radius: 20px;
        border: solid 4px #333;
    }

    .work-main .side-info   {
        display: none;
    }

    .main-left .mock-site .scroll {
        width: 100px;
        padding: 8px 10px;
        left: 40%;
    }

    .main-left .mock-site .scroll .text {
        font-size: 12px;
    }

    .main-left .mock-site .scroll .text::after {
        width: 20px;
        height: 2px;
        top: 5px;
    }

    .main-left .mock-site .scroll .text::before {
        width: 6px;
        top: 12px;
        left: -1px;
    }
    
    @keyframes arrowMove   {
    0%, 100%   {
        transform: translateY(0) rotate(90deg);
    }
    50%   {
        transform: translateY(2px) rotate(90deg);
    }
}

@keyframes arrowHeadMove   {
    0%, 100%   {
        transform: translateY(0) rotate(45deg);
    }
    50%   {
        transform: translateY(2px) rotate(45deg);
    }
}

/* 概要 */
.main-description {
    max-width: 100%;
}

/* タイトル */
.main-description h2 {
    font-size: 32px;
    margin-bottom: 74px;
}

.main-description h2::before {
    top: 66px;
}




    .sp-viewsite-button {
        display: block;
        width: 100%;
        padding: 0 20px;
        margin: 100px auto 160px;
        text-align: center;
    }

    .sp-viewsite-button .btn {
        display: block;
        width: 100%;
        max-width: 360px;
        padding: 14px 0;
        background-color: #004FFF;
        border-radius: 12px;
        margin: 0 auto;
    }

    .sp-viewsite-button .btn-text {
        font-size: 20px;
        color: #fff;
    }
    }