@charset "UTF-8";

/*-------------------------------------------------------------------------
							/ページレイアウト/
-------------------------------------------------------------------------*/
.lower_section {
    width: 100%;
    height: auto;
}
.lower_section__inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 100px;
}
.page_title {
    width: 100%;
}
.page_title__text {
    color: var(--main-color);
    text-align: center;
    font-size: 36px;
}
@media screen and (max-width: 1279px) {
    .lower_section__inner {
        max-width: none;
        padding: 64px 20px 0 20px;
    }
    .page_title__text {
        font-size: 28px;
    }
}

/*-------------------------------------------------------------------------
							/ページネーション/
-------------------------------------------------------------------------*/
.pagination {
    margin-top: 40px;
}
.pagination ul {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.pagination li {
    width: 32px;
    height: 40px;
    text-align: center;
    font-weight: 500;
}
.pagination li .current {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--main-color);
    color: #fff;
    border-radius: 4px;
}
.pagination a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-color);
    border-radius: 4px;
    transition: 0.3s;
}
.pagination a:hover {
    background-color: var(--sub-color);
}
.pagination li .dots {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination a.next,
.pagination a.prev {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: unset;
}
.pagination a.next:hover,
.pagination a.prev:hover {
    opacity: 0.5;
    background-color: unset;
}
/* .pagination a.next .pagenation_arrow {
    width: 6px;
    height: auto;
} */
@media screen and (max-width: 1279px) {
    .pagination {
        margin-top: 24px;
    }
}

/*-------------------------------------------------------------------------
							/新着情報一覧/
-------------------------------------------------------------------------*/
.news_list {
    width: 100%;
    margin-top: 32px;
}
.news_list__link {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 32px 0;
}
.news_list__date {
    line-height: 2;
}
.news_list__title {
    line-height: 2;
    color: #2b2b2b;
    font-weight: 500;
    flex: 1;
}
.news_list__line {
    width: 100%;
    height: 1px;
    background-color: #efefef;
    mix-blend-mode: multiply;
}
@media screen and (max-width: 1279px) {
    .news_list {
        margin-top: 40px;
    }
    .news_list__container {
        margin: 16px 0;
    }
    .news_list__link {
        display: block;
        padding: 0;
    }
    .news_list__date {
        line-height: 1;
        margin-bottom: 4px;
    }
    .news_list__title {
        line-height: 1.5;
    }
}

.news_list__container--no_post {
    width: 100%;
    border-radius: 4px;
    padding-top: 40px;
    display: block;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    line-height: 1.5;
    margin: -4px 0;
    text-align: center;
}

.news_list__container--no_post {
    background-color: var(--sub-color);
    border-radius: 0 0 4px 4px;
    display: block;
    padding: 40px 40px 40px 40px;
}

/*-------------------------------------------------------------------------
							/新着情報詳細/
-------------------------------------------------------------------------*/
.article {
    margin-top: 64px;
}
.article__inner {
    width: 1000px;
    margin: 0 auto;
}
.article__info {
    margin-bottom: 64px;
}
.article__date {
    margin-bottom: 20px;
}
.article__title {
    font-size: 32px;
    font-weight: 500;
    color: #2b2b2b;
    line-height: 1.5;
    margin: -8px 0;
}
.article__content h1 {
    font-size: 24px;
    font-weight: 500;
    background-color: var(--main-color);
    line-height: 1.5;
    color: #fff;
    border-radius: 4px;
    padding: 14px 20px;
    margin-top: 64px;
    margin-bottom: 24px;
}
.article__content h2 {
    font-size: 24px;
    color: #2b2b2b;
    font-weight: 500;
    border-bottom: 1px solid var(--main-color);
    line-height: 1.5;
    padding-bottom: 18px;
    margin-top: 40px;
    margin-bottom: 24px;
}
.article__content h3 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 500;
    padding-left: 22px;
    position: relative;
    margin-top: 35px;
    margin-bottom: 19px;
    color: var(--main-color);
}
.article__content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: var(--main-color);
}
.article__content p {
    color: #2b2b2b;
    line-height: 2;
    margin: 16px 0;
}
.backlist {
    margin-top: 64px;
}
.backlist__link {
    width: 280px;
    padding: 24px 24px;
    background-color: var(--main-color);
    border-radius: 4px;
    text-align: center;
    color: #fff;
    position: relative;
    font-weight: 500;
    margin: 0 auto;
    transition: 0.3s;
}
.backlist__link svg {
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    width: 8px;
    height: auto;
}
.backlist-link__arrow {
    fill: none;
    stroke: #fff;
    stroke-width: 1.5px;
    transition: 0.3s;
}
.backlist__link:hover {
    opacity: 0.5;
}
.article__content a {
    font-size: 16px;
    background-color: var(--accent-color);
    padding: 24px 0;
    border-radius: 100vw;
    color: var(--main-color);
    font-weight: 500;
    text-align: center;
    position: relative;
    transition: 0.3s;
    margin: 28px 0;
}
.article__content a:hover {
    opacity: 0.5;
}

@media screen and (max-width: 1279px) {
    .article {
        margin-top: 40px;
    }
    .article__inner {
        width: 100%;
    }
    .article__info {
        margin-bottom: 32px;
    }
    .article__date {
        margin-bottom: 16px;
    }
    .article__title {
        font-size: 24px;
        margin: -6px 0;
    }
    .article__content h1 {
        font-size: 20px;
        padding: 11px 16px;
        margin-bottom: 22px;
        margin-top: 48px;
    }
    .article__content h2 {
        font-size: 20px;
        padding-bottom: 14px;
        margin-bottom: 22px;
    }
    .article__content h3 {
        font-size: 18px;
        margin-top: 27.5px;
        margin-bottom: 19.5px;
    }
    .article__content h3::before {
        top: 5.5px;
    }
    .article__content p {
        line-height: 1.75;
        margin: 20px 0;
    }
    .backlist {
        margin-top: 24px;
    }
}

/*-------------------------------------------------------------------------
							/個人情報保護方針/
-------------------------------------------------------------------------*/
.privacy_policy {
    margin-top: 64px;
}
.privacy_policy__top_text {
    margin-bottom: 56px;
}
.privacy_policy__container:not(:last-of-type) {
    margin-bottom: 56px;
}
.privacy_policy__title {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
    border-bottom: 1px solid var(--main-color);
    line-height: 1.4;
    margin: -4px 0 24px;
    padding-bottom: 12px;
}
.privacy_policy__text {
    color: #2b2b2b;
    line-height: 2;
    margin: -8px 0;
}
.privacy_policy__list {
    margin-top: 16px;
    list-style: disc;
    padding-left: 2em;
}
.privacy_policy-list__item {
    line-height: 2;
    color: #2b2b2b;
}
.privacy_policy-list__item span {
    font-weight: 500;
    color: var(--main-color);
}
@media screen and (max-width: 1279px) {
    .privacy_policy {
        margin-top: 40px;
    }
    .privacy_policy__top_text {
        margin-bottom: 40px;
    }
    .privacy_policy__container:not(:last-of-type) {
        margin-bottom: 40px;
    }
}
