@charset "utf-8";

/* 事例 [ /casestudy/ ]
====================================================================== */

/* ===============================================
    pagetitle
=============================================== */

.l-pagetitle {
    padding: 20px 0 80px;
}
.l-pagetitle__title {
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .l-pagetitle {
        padding: 20px 0 50px;
    }
    .l-pagetitle__title {
        font-size: 3.6rem;
    }
}

/* ===============================================
    troubleshooting-contents
=============================================== */

.troubleshooting-contents {
    padding: 90px 0 30px;
    background-color: #fff;
}
.troubleshooting-contents__title {
    position: relative;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--corp-color);
    text-align: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 50px;
}
.troubleshooting-contents__title::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--corp-color);
}
@media screen and (max-width: 767px) {
    .troubleshooting-contents {
        padding: 50px 0 40px;
    }
    .troubleshooting-contents__title {
        font-size: 2.4rem;
    }
}

/* troubleshooting-download */

.troubleshooting-download {
    padding-bottom: 40px;
}
.troubleshooting-download__section {
    padding-bottom: 50px;
}
.troubleshooting-download__section-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--txt-base-color);
    margin-bottom: 20px;
}
.troubleshooting-download__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.troubleshooting-download__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 15px 0 20px;
    border-bottom: 1px solid var(--border-color);
}
.troubleshooting-download__item-name {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--txt-base-color);
    flex: 1;
}
.troubleshooting-download__btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 8px 20px;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    text-decoration: none;
    color: var(--txt-base-color);
    transition: all 0.3s ease-out;
    flex-shrink: 0;
    min-width: 175px;
    justify-content: center;
}
.troubleshooting-download__btn-text {
    font-size: 1.6rem;
    font-weight: 500;
}
.troubleshooting-download__btn-icon {
    width: 18px;
    height: 16px;
    background-image: url("../img/troubleshooting/icon_download.svg");
    background-size: contain;
    background-repeat: no-repeat;
}
.troubleshooting-download__btn-arrow {
    position: relative;
    width: 18px;
    height: 16px;
}
.troubleshooting-download__btn-arrow::before,
.troubleshooting-download__btn-arrow::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.5px);
    right: 0;
    width: 0.575em;
    height: 1px;
    border-radius: 9999px;
    background-color: var(--txt-base-color);
    transform-origin: calc(100% - 0.5px) 50%;
}
.troubleshooting-download__btn-arrow::before {
    transform: rotate(53deg);
}
.troubleshooting-download__btn-arrow::after {
    transform: rotate(-53deg);
}
.troubleshooting-movie__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 5%;
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
}
.troubleshooting-movie__item a {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.troubleshooting-movie__image {
    width: 100%;
    border: 1px solid var(--border-color);
}
.troubleshooting-movie__image img {
    width: 100%;
    height: auto;
    display: block;
}
.troubleshooting-movie__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--txt-base-color);
}
@media screen and (max-width: 767px) {
    .troubleshooting-download {
        padding-bottom: 10px;
    }
    .troubleshooting-download__section-title {
        font-size: 2rem;
        margin-bottom: 5px;
    }
    .troubleshooting-download__item {
        gap: 20px;
        padding: 18px 0;
    }
    .troubleshooting-download__btn {
        width: 175px;
        gap: 15px;
        padding: 8px 15px;
    }
    .troubleshooting-movie__list {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 25px 0 0;
    }
    .troubleshooting-movie__item a {
        gap: 18px;
    }
    .troubleshooting-movie__title {
        font-size: 2rem;
    }
}
@media (hover: hover) {
    .troubleshooting-download__btn:hover {
        background-color: var(--corp-color);
        border-color: var(--corp-color);
        color: #fff;
    }
    .troubleshooting-download__btn:hover .troubleshooting-download__btn-icon {
        background-image: url("../img/troubleshooting/icon_download_white.svg");
    }
    .troubleshooting-download__btn:hover .troubleshooting-download__btn-arrow::before,
    .troubleshooting-download__btn:hover .troubleshooting-download__btn-arrow::after {
        background-color: #fff;
    }
}

/* --- */
