@charset "UTF-8";

.btn-wh {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--c-gry);
    border: solid 1px #D9D9D9;
    border-radius: 10px;
}

.btn-wh:hover {
    background: #eee;
}

.btn-wh.pdf::before {
    content: url(../img/common/ico-pdf.svg);
}

/* ------------------------------- 
各種報告書
------------------------------- */
/* カテゴリー一覧 */
.nav-btn_cate {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.nav-btn_cate .flex {
    gap: 20px 12px;
}

.nav-btn_cate .flex li {
    width: calc(50% - 6px);
}

.nav-btn_cate .btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 9px 20px;
    font-weight: 600;
    text-decoration: none;
    color: var(--c-green);
    background: #fff;
    border: solid 1px var(--c-green);
    border-radius: 5px;
}

.nav-btn_cate .btn.active,
.nav-btn_cate .btn:hover{
    color: #fff;
    background: var(--c-green);
}

@media (min-width: 768px) {
    .nav-btn_cate .flex li {
        width: calc(33.333% - 8px);
    }
}

@media (min-width: 1024px) {
    .nav-btn_cate .flex li {
        width: calc(20% - 11.2px);
    }
}


/* レポート一覧 */
.wrap-report {
    border-radius: 30px;
}

.wrap-report-inner {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 1px 0 95px;
}

/* 見出し */
.title-h3 {
    display: block;
    font-size: clamp(20px, 5vw, 26px);
    font-weight: 600;
    letter-spacing: .1em;
    position: relative;
    padding-left: 26px;
    margin: 95px 0 28px;
}

.title-h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 18px;
    height: 18px;
    background: var(--c-green);
    border-radius: 50%;
}

/* アコーディオン */
.accordion-title {
    font-size: clamp(16px, 3.8vw, 18px);
    font-weight: 600;
    letter-spacing: .1em;
    position: relative;
    padding-left: 25px;
}

.accordion-title::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--c-green);
    border-bottom: 2px solid var(--c-green);
    transform: translateY(-65%) rotate(45deg);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.is-open .accordion-title::before {
    transform: translateY(-35%) rotate(-135deg);
}

.accordion-detail {
    margin: 0;
    height: 0;
    overflow: hidden;
}

.accordion-detail .inner {
    margin: 20px 0;
}

.btn-block {
    gap: 23px;
}

.btn-block>a {
    width: 100%;
}

@media (min-width: 768px) {
    .btn-block>a {
        width: calc(50% - 11.5px);
    }
}