@charset "UTF-8";

/* トップコンテンツ */
.top-image-pc {
    position: relative;
}

.top-image-title-pc {
    position: absolute;
    top: 100px;
    left: 40px;
}

.top-image-title-pc p {
    border: none;
    font-size: 2.8vw;
    font-weight: bold;
    margin: 0;
}

.top-image-title-pc span {
    font-size: 2vw;
}

.top-image-sp {
    display: none;
}

.top-description {
    font-size: 1.5rem;
}

.top-description a {
    color: #000;
    font-weight: bold;
}

.top-description a:hover {
    transition: 0.6s;
    opacity: 0.3;
}

/* カテゴリ */
.category-wrapper {
    margin: 30px 0 70px 0;
}

.title {
    width: 100%;
    border-bottom: 2px solid #000;
}

.title span {
    font-size: 2rem;
    font-weight: bold;
    padding: 0 0 5px 10px;
}


.category-container {
    display: flex;
    margin: 10px 0;
}

/* メディア掲載 タグ */
.category-tag-media p {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 3px 10px 3px 10px;
    background-color: #8CC36A;
    color: #fff;
    text-align: center;
}

.category-tag-press-release p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-left: 20px;
    padding: 3px 10px 3px 10px;
    background-color: #D6833C;
    color: #fff;
    text-align: center;
}

/* 掲載実績 */
/* .publish-wrapper {
    display: grid;
    row-gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
} */

.publish-container {
    width: 80%;
    margin: 0 auto;
}

.publish-container a {
    display: block;
    color: #000;
    text-decoration: none;
}

.publish-container a:hover {
    transition: 0.7s;
    opacity: 0.4;
}

.publish-image p img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.publish-date {
    padding: 10px 0;
}

.item-list {
    display: grid;
    row-gap: 40px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;
    padding: 0;
    list-style: none;
}

.media-tag {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 3px 10px 3px 10px;
    background-color: #8CC36A;
    color: #fff;
}

.press-releass-tag {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 3px 10px 3px 10px;
    background-color: #D6833C;
    color: #fff;
}

.publish-text {
    font-size: 1.4rem;
}

/* ページネーション */

.page-nation-wrapper {
    width: 100%;
    text-align: center;
}

.page-nation {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin-left: 5px;
    display: inline-block;
    margin-top: 20px;
}

.active-num {
    display: inline;
}

.page-nation.active-num {
    padding: 12px 16px;
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

.page-nation:hover:not(.active-num) {
    background-color: #ddd;
    border: 1px solid #ddd;
}

@media screen and (max-width:767px) {

    /* トップコンテンツ */
    .top-image-pc {
        display: none;
    }

    .top-image-sp {
        display: block;
        position: relative;
    }

    .top-image-title-sp {
        position: absolute;
        top: 110px;
        left: 20px;
    }

    .top-image-title-sp p {
        font-size: 5vw;
    }

    .top-image-title-sp span {
        font-size: 3vw;
    }

    /* カテゴリ */

    /* 掲載実績 */
    .publish-wrapper {
        display: block;
    }

    .publish-container {
        width: 100%;
        margin-bottom: 80px;
        border: 1px solid #b7b1b1;
    }

    .publish-tag {
        margin: 10px;
        padding: 10px 0;
    }

    .media-tag {
        font-size: 1.8rem;
        padding: 10px 20px;
    }

    .press-releass-tag {
        font-size: 1.8rem;
        margin: 15px 0;
        padding: 10px 20px;
    }

    .publish-date {
        font-size: 1.7rem;
        padding: 0 0 10px 10px;
    }

    .publish-text {
        font-size: 1.8rem;
    }

    .item-list {
        padding: 0;
        display: block;
    }

    .item-list li {
        width: 80%;
        margin: 0 auto;
        list-style: none;
    }

    .publish-container {
        margin: 0 auto 20px auto;
    }

    .publish-image p img {
        width: 100%;
    }

    .publish-description {
        padding-bottom: 30px;
    }
}