@charset "utf-8";

/*--------------------------------------
全般
----------------------------------------*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary-bg: #009873;
    --color-secondary-bg: rgba(255, 255, 255, 0. 75);
    --color-primary-text: #111;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

/* リンク時にスクロール */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    display: flex;
    flex-direction: column;
    color: var(--color-primary-text);
    background-color: #efefef;
    height: 100%;
}

.l-wrapper {
    max-width: 1100px;
    padding: 0 20px;
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

a {
    color: #0a6b57;
    text-underline-offset: 0.18em;
}

a:hover {
    text-decoration-thickness: 0.18em;
}

li {
    list-style: none;
}

address {
    font-style: normal;
}

summary {
    cursor: pointer;
}

/*---------------------
@media (min-width: 768px)
-----------------------*/



/*--------------------------------------
ヘッダー
----------------------------------------*/
.header {
    margin-bottom: 40px;
    background-color: var(--color-primary-bg);
    padding-top: 20px;
}

.header__inner {
    padding-bottom: 20px;
}

.header__title {
    text-align: center;
    font-size: 1.8rem
}

.header--border-top-gray {
    border-top: 2px solid rgba(255, 255, 255, 0.75);
}

.year-nav {
    margin-top: 20px;
}

.year-nav__list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;

}

.year-nav__item {
    flex: 18%;
}

.year-nav__link {
    display: block;
    padding: 10px 20px;
    max-width: 100%;
    font-size: 1.125rem;
    text-align: center;
    color: var(--color-primary-text);
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 8px;
    text-decoration: none;
}

.year-nav__link:hover,
.year-nav__link:focus {
    background-color: #fff;
}


/*---------------------
@media (min-width: 768px)
-----------------------*/
@media (min-width: 768px) {
    .header__title {
        font-size: 3rem;
    }
}


/*--------------------------------------
年報
----------------------------------------*/
.annual-reports {
    flex: 1;
    margin-bottom: 40px;
}

/* ＆アクセスカウンター */
.vcount__wrap{
    display: flex;
    justify-content: center;
}
.vcount {
    /* position: fixed;
    top: 12px;
    right: 12px; */
    display: inline-grid;
    gap: 6px;
    margin-bottom: 20px;
    padding: 8px 10px;
    border: 1px solid #cfcfcf;
    border-radius: 10px;
    color: #000;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 0.9rem;
    line-height: 1;
    background: #fff;
}

.vcount__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 140px;
}

.vcount__label {
    opacity: .75;
}

.vcount__num {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}
@media (min-width: 768px){
    .vcount__wrap{
        justify-content: flex-end;
    }
}
/* アクセスカウンターここまで */

.annual-reports__inner {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 40px 40px;
    min-height: 800px;
}

.annual-reports__title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.annual-reports__intro {
    margin-inline: auto;
    width: fit-content;
    margin-bottom: 40px;
}

/* .annual-reports__note */
/* .report__contact-link */
/* .report */
.report:not(:last-of-type) {
    border-bottom: 1px solid var(--color-primary-text);
}

.report:first-of-type {
    border-top: 2px solid var(--color-primary-text);
}

.report:last-of-type {
    border-bottom: 2px solid var(--color-primary-text);
}

/* .report__title */
.report__details> :not(.report__summary) {
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity .2s ease, transform .2s ease;
}

.report__details[open]> :not(.report__summary) {
    opacity: 1;
    transform: translateY(0);
}

.report__summary {
    font-size: 1.4rem;
    padding: 20px;
    background: #BFE5DC;
}



.report__list {
    margin-bottom: 20px;
    padding-left: 2.8rem;
    padding-top: 20px;
    padding-bottom: 20px;
    background: #f2fffa;
    border-radius: 0px 0px 8px 8px;

}

.report__item {
    margin-bottom: 5px;
}

/* .report__pdf */
/* .report__item */
/* .report__link */

/*---------------------
@media (min-width: 768px)
-----------------------*/



/*--------------------------------------
フッター
----------------------------------------*/
.footer {
    padding-top: 20px;
    padding-bottom: 10px;
    background-color: var(--color-primary-bg);
}

/* .footer__inner */
.footer__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
}

.address {
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 8px;
}

.address__inner {
    margin-inline: auto;
    width: fit-content;
}

/* .address__name */
/* .address__postal-code */
/* .address__location */
.address__contact {
    display: flex;
    gap: 20px;
}

/* .address__tell-number */
/* .address__fax */
/* .address__link */
.footer__copyright {
    text-align: center;
    font-size: 0.75rem;
}

/*---------------------
トップへ戻るボタン
-----------------------*/
.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}
.back-to-top:before {
    font-family: "Font Awesome 7 Free";
    color: #111;
    border-radius: 50%;
    background-color: #fff;
    font-size: 3rem;
    content: '\f139';
    font-weight: 900;
}

/* 表示状態 */
.back-to-top.is-visible {
    opacity: 0.9;
    pointer-events: auto;
}


/*---------------------
@media (min-width: 768px)
-----------------------*/
@media (min-width: 768px) {
    .footer__body {
        flex-direction: row;
        justify-content: center;
        gap: 60px;
        background-color: #fff;
        border-radius: 8px;
    }


}