@charset "UTF-8";
/*
Theme Name: 大間々子育連
Author: 大間々子育連
Description: 群馬県みどり市大間々地域子ども会育成会連絡協議会ホームページ用のテーマです。
Version: 2.0
Tags: エディタースタイル,アイキャッチ画像

(C) 2022 大間々子育連
*/

/*-----------------------------------------------
Reset CSS
-----------------------------------------------*/
@layer reset, base, module;

@layer reset {

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    * {
        margin: 0;
        padding: 0;
        background-color: inherit;
    }

    *:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
        all: unset;
        display: revert;
    }

    body {
        background: var(--dev-color-background-secondary);
    }

    ol,
    ul,
    menu {
        list-style: none;
    }

    a {
        text-decoration: none;
    }
	
	strong {
		font-weight: bold;
		color: red;
	}
}

:root {
    --dev-color-primary: #357b1d;
    --dev-color-primary-dark: darken(var(--dev-color-primary), 5%);
    --dev-color-primary-light: lighten(var(--dev-color-primary), 10%);
    --dev-color-important: #e91e1e;
    --dev-color-click-font: #fff;
    --dev-color-click-background: rgba(233, 30, 30, 0.8);
    --dev-color-hover-font: #fff;
    --dev-color-hover-background: #0277c5;
    --dev-color-link-font: #0277c5;
    --dev-color-link-font-click: #e91e1e;
    --dev-color-background-primary: #fffcd8;
    --dev-color-background-secondary: hsl(90, 100%, 99%);
    --dev-color-tag-1: #357b1d;
    --dev-color-tag-2: #e91e1e;
    --dev-color-tag-3: #0277c5;
    --dev-color-tag-4: #ffa500;
    --dev-color-shadow: #00000030;
    --dev-color-font-primary: #101010;
    --dev-primary-font-family: "Helvetica Neue", Arial,
        "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --dev-layout-width: clamp(304px, 90vw, 1280px);
    --dev-h1-font: 700 1.5rem/2rem var(--dev-primary-font-family);
    --dev-h2-font: 700 1.2rem/1.75rem var(--dev-primary-font-family);
    --dev-list-border: 1px solid var(--dev-color-primary);
    --dev-shadow-primary: 0 1px 0px 0 rgb(60 64 67 / 30%),
        1px 2px 1px 1px rgb(60 64 67 / 15%);
    --dev-shadow-down: 0px 5px 5px 0px var(--dev-color-shadow);
    --dev-font-size: 16px;
    --dev-primary-margin: 16px;
    --dev-primary-padding: 16px;
    --dev-gap: 16px;
}

@layer base {

    /*-----------------------------------------------
  Base Style
  -----------------------------------------------*/
    .globalLayout {
        display: grid;
        grid-template-rows: auto 1fr auto;
        min-height: 100vh;
    }

    .mainContent {
        display: grid;
        gap: 40px;
        margin-bottom: 40px;
    }

    .mainContent>section:first-child {
        margin-top: 48px;
    }

    .contentLayout {
        width: clamp(304px, 90vw, 1280px);
        margin: auto;
    }

    .contentLayout h2 {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 16px;
    }

    .wp-mainContents {
        background: #fffcd8;
    }

    .wpBaseLayout {
        display: flex;
        flex-direction: column;
        gap: var(--dev-gap);
        width: clamp(304px, 90vw, 1280px);
        margin: max(4vw, 48px) auto;
    }

    .wpBaseLayout aside {
        width: 100%;
    }

    .wpBaseLayout aside h2 {
        width: 100%;
        background-color: #fcfffa;

        margin-bottom: 8px;
    }

    .wpBaseLayout main {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: var(--dev-gap);
    }

    .wpBaseLayout main>section {
        display: flex;
        gap: 32px;
        flex-direction: column;
        align-content: space-between;
        box-shadow: 0px 5px 5px 0px #00000030;
        padding: 16px;
        background-color: #fcfffa;
        box-sizing: border-box;
    }

    .wpBaseLayout .blog-list {
        display: flex;
        flex-direction: column;
        gap: 48px;

        list-style: none;
        margin-left: 0;
    }

    .wpBaseLayout .blog-list li {
        border-bottom: 1px solid #00000030;

        padding-bottom: 24px;
    }

    .wpBaseLayout .blog-list li article {
        position: relative;
    }

    .wpBaseLayout .blog-list li article::before {
        position: absolute;
        content: attr(data-category);
        top: 0;
        color: #fff;
        font-weight: bold;
        font-size: 1.3rem;
        border: 1px solid #79d859;
        background: #47a427;
        padding: 4.8px 16px;
        box-sizing: border-box;
        z-index: 1;
    }

    .wpBaseLayout .blog-list img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .wpBaseLayout .blog-list .blogList-contents {
        display: flex;
        flex-direction: column;
        gap: 4px;

        margin-bottom: 16px;
    }

    .wpBaseLayout .blog-list .blogList-contents time,
    .wpBaseLayout .blog-list .blogList-contents .desc {
        font-size: 0.8em;
    }

    .wpBaseLayout .wpPageInfo {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .wpBaseLayout-header {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .wpBaseLayout-title {
        padding: var(--dev-primary-padding) 0;
        color: #101010;
        border-bottom: dashed 2px var(--dev-color-primary);
        font: var(--dev-h1-font);
    }

    .wpBaseLayout-title:first-letter {
        font-size: 150%;
        color: #357b1d;
    }

    .wpBaseLayout-title-category {
        padding: var(--dev-primary-padding) 0;
        color: #101010;
        border-bottom: dashed 2px var(--dev-color-primary);
        font: var(--dev-h1-font);
    }

    .wpBaseLayout-title-category>span {
        font-size: 150%;
    }

    .wpBaseLayout-title-category>span span {
        color: #357b1d;
    }

    .wpBaseLayout-title-search {
        padding: var(--dev-primary-padding) 0;
        color: #101010;
        border-bottom: dashed 2px var(--dev-color-primary);
        font: var(--dev-h1-font);
    }

    .wpBaseLayout-title-search span {
        font-size: 150%;
        color: #357b1d;
    }

    .wpBaseLayout-info {
        display: flex;
        gap: 8px;
        flex-direction: column;
        margin-left: 16px;
    }

    .wpBaseLayout section {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .wpBaseLayout .pankuzu-section {
        gap: calc(0.5 * var(--dev-gap));
    }

    .wpBaseLayout .pankuzu-section .pankuzu {
        width: 100%;
        margin: 0 auto;
    }

    .wpBaseLayout .pankuzu-section .pankuzu li {
        display: inline-block;
    }

    .wpBaseLayout .pankuzu-section .pankuzu li a {
        color: var(--dev-color-link-font);
        cursor: pointer;
    }

    .wpBaseLayout .pankuzu-section .pankuzu li a:hover {
        opacity: 0.7;
    }

    .wpBaseLayout .pankuzu-section .pankuzu li a:active {
        color: var(--dev-color-link-font-click);
        opacity: 0.7;
    }

    .wpBaseLayout .pankuzu-section .pankuzu li:not(:last-child)::after {
        content: ">";
        padding-left: calc(0.5 * var(--dev-gap));
        margin-right: calc(0.5 * var(--dev-gap));
    }

    .wpBaseLayout .download-section ul {
        display: flex;
        flex-direction: column;
        gap: var(--dev-gap);
    }


    .wpBaseLayout .download-section ul li a:after {
        content: " ";
        display: inline-block;
        width: 24px;
        height: 24px;
        background-repeat: no-repeat;
        background-size: contain;
    }

    .wpBaseLayout .download-section ul li a[href$=".pdf"]:after {
        background-image: url(./assets/icon/icon_pdf.webp);
    }

    .wpBaseLayout .download-section ul li a[href$=".doc"]:after {
        background-image: url(./assets/icon/icon_word.webp);
    }

    .wpBaseLayout .download-section ul li a[href$=".doc"]:after {
        background-image: url(./assets/icon/icon_word.webp);
    }

    .wpBaseLayout .download-section ul li a[href$=".docx"]:after {
        background-image: url(./assets/icon/icon_word.webp);
    }

    .wpBaseLayout .download-section ul li a[href$=".xls"]:after {
        background-image: url(./assets/icon/icon_excel.webp);
    }

    .wpBaseLayout .download-section ul li a[href$=".xlsx"]:after {
        background-image: url(./assets/icon/icon_excel.webp);
    }

    .wpBaseLayout .download-section ul li a[href$=".csv"]:after {
        background-image: url(./assets/icon/icon_csv.webp);
    }

    .wpBaseLayout h2 {
        display: inline-block;
        width: fit-content;
        position: relative;
        width: 100%;
        padding: 0.5rem;
        padding-left: 1rem;
        color: #357b1d;
        background: rgba(53, 123, 29, 0.03);
        border: 1px solid #357b1d;
        border-left: 16px solid #357b1d;
        font: var(--dev-h2-font);
        box-sizing: border-box;
    }

    .wpBaseLayout .wp-block-group__inner-container h2 {
        margin-bottom: 16px;
    }

    .wpBaseLayout ol {
        list-style: decimal;
        margin-left: 2rem;
    }

    .wpBaseLayout main ul {
        list-style: disc;
        margin-left: 2rem;
    }

    .wpBaseLayout aside ul {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .wpBaseLayout aside ul li> :last-child {
        margin-bottom: 16px;
    }

    .wpBaseLayout main .info-list {
        display: grid;
        gap: 8px;
        /* row-gap: 32px; */

    }

    .wpBaseLayout main .info-list dt {
        display: flex;
        align-items: center;
        flex-direction: row;
        gap: 16px;
    }

    .wpBaseLayout main .info-list dd {
        padding-bottom: 16px;
        margin-bottom: 20px;
        border-bottom: 1px solid #00000030;
    }

    .wpBaseLayout main .info-list dd .categoryList>li {
        display: flex;
        width: max-content;
    }

    .wpBaseLayout main .category_link,
    .wpBaseLayout main .category_text {
        width: max-content;
        color: #fff;
        padding: 3.2px 16px;
        -webkit-tap-highlight-color: transparent;
    }

    .wpBaseLayout main .wpBaseLayout-header .category_link,
    .wpBaseLayout main .wpBaseLayout-header .category_text {
        position: relative;
        margin-left: 1rem;
    }

    .wpBaseLayout main .wpBaseLayout-header .category_link::before,
    .wpBaseLayout main .wpBaseLayout-header .category_text::before {
        position: absolute;
        top: 0.5rem;
        left: -1.5rem;
        content: "\f07b";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #000;
    }

    .wpBaseLayout main .category_link.news,
    .wpBaseLayout main .category_text.news {
        background: #47a427;
        border: 2px solid #2c6618;
    }

    .wpBaseLayout main .category_link.news:active {
        background: #2c6618;
    }

    .wpBaseLayout main .category_link.important_news,
    .wpBaseLayout main .category_text.important_news {
        background: #ff2323;
        border: 2px solid #bc0000;
    }

    .wpBaseLayout main .category_link.important_news:active {
        background: #bc0000;
    }

    .wpBaseLayout main .category_link.meeting,
    .wpBaseLayout main .category_text.meeting {
        background: #ffb733;
        border: 2px solid #cc8400;
    }

    .wpBaseLayout main .category_link.meeting:active {
        background: #cc8400;
    }

    .wpBaseLayout main .category_link.blogs,
    .wpBaseLayout main .category_text.blogs {
        background: #0395f7;
        border: 2px solid #015993;
    }

    @media screen and (min-width: 37.5em) {
        .wpBaseLayout .blog-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }

        .wpBaseLayout .blog-list li {
            border-bottom: none;

            padding-bottom: 0;
        }
    }

    @media screen and (min-width: 80em) {

        .wpBaseLayout .blog-list {
            grid-template-columns: repeat(3, 1fr);
        }

        .wpBaseLayout-info {
            flex-direction: row;
            gap: 32px;
            align-items: center;
        }

        .wpBaseLayout main .info-list {
            grid-template-columns: max-content 1fr;
            column-gap: 0;
        }

        .wpBaseLayout main .info-list dt {
            padding-bottom: 16px;
            margin-bottom: 20px;
            border-bottom: 1px solid #00000030;
        }

        .wpBaseLayout main .info-list dd {
            display: flex;
            align-items: center;

            padding-left: 16px;
        }
    }

    .wpBaseLayout a {
        color: var(--dev-color-link-font);
        cursor: pointer;
    }

    .wpBaseLayout a:hover {
        opacity: 0.7;
    }

    .wpBaseLayout a:active {
        color: var(--dev-color-link-font-click);
        opacity: 0.7;
    }

    .wpBaseLayout .newsList {
        list-style: none;
        margin: 0 auto;
    }

    .wpBaseLayout .blogList {
        margin: 0 auto;
    }

    .wpBaseLayout .tagList {
        list-style: none;
    }

    .wpBaseLayout .pagination .screen-reader-text {
        border: 0;
        clip: rect(1px, 1px, 1px, 1px);
        clip-path: inset(50%);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute !important;
        width: 1px;
        word-wrap: normal !important;
    }

    .wpBaseLayout .pagination .screen-reader-text:focus {
        background-color: #eee;
        clip: auto !important;
        clip-path: none;
        color: #444;
        display: block;
        font-size: 1em;
        height: auto;
        left: 5px;
        line-height: normal;
        padding: 15px 23px 14px;
        text-decoration: none;
        top: 5px;
        width: auto;
        z-index: 100000;
    }

    .wpBaseLayout .pagination .nav-links {
        margin: auto;
    }

    .wpBaseLayout .pagination .nav-links>ul.page-numbers {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 0 auto;
        box-sizing: border-box;
        list-style: none;
    }

    .wpBaseLayout .pagination .nav-links>ul.page-numbers li .page-numbers {
        display: block;
        box-sizing: border-box;
    }

    .wpBaseLayout .pagination .nav-links>ul.page-numbers li .page-numbers.current, .wpBaseLayout .pagination .nav-links>ul.page-numbers li .page-numbers:not(:is(.dots, .current)):active {
        color: #fff;
        background: #ef0000;
    }

    .wpBaseLayout .pagination .nav-links>ul.page-numbers li a.page-numbers,
    .wpBaseLayout .pagination .nav-links>ul.page-numbers li span.current {
        border: 1px solid #000;
        padding: 11.2px;
    }

    .wpBaseLayout .pagination .nav-links>ul.page-numbers li span.current {
        border-color: #ef0000;
    }

    .wpBaseLayout .pagination .nav-links>ul.page-numbers li a.page-numbers {
        cursor: pointer;
    }

    .wpBaseLayout .pagination .nav-links>ul.page-numbers li:first-child, .wpBaseLayout .pagination .nav-links>ul.page-numbers li:last-child {
        white-space: nowrap;
    }



    @media screen and (min-width: 80em) {
        .wpBaseLayout {
            flex-direction: row-reverse;
        }

        .wpBaseLayout-title {
            font-size: 2.5rem;
            font-weight: bold;
            border-bottom: dashed 2px #357b1d;
            line-height: 3.5rem;
        }

        .wpBaseLayout aside {
            width: 300px;
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li .page-numbers:not(:is(.dots, .current)):hover {
            color: #fff;
            background: #0277c5;
            border-color: #2c6618;
            transition: 0.2s;
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li .page-numbers:not(:is(.dots, .current)):active {
            background: #ef0000;
            transition: 0.2s;
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next)) {
            position: relative;
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next))::before {
            position: absolute;
            top: -56px;
            left: -48px;
            padding: 8px;
            color: #fff;
            border-radius: 10px;
            background: #0277c5;
            opacity: 0;
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next)):has(.prev):before {
            content: "前のページに移動";
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next)):has(.next)::before {
            content: "次のページに移動";
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next))::after {
            content: "";
            position: absolute;
            bottom: -9px;
            top: -16px;
            left: 8px;
            width: 0;
            height: 0;
            border-width: 10px 10px 0 10px;
            border-style: solid;
            border-color: #0277c5 transparent transparent transparent;
            opacity: 0;
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next)):hover::before, .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next)):hover::after {
            opacity: 1;
            transition: 0.2s;
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next)):active::before {
            background: #ef0000;
        }

        .wpBaseLayout .pagination .nav-links>ul.page-numbers li:has(:is(.prev, .next)):active::after {
            border-color: #ef0000 transparent transparent transparent;
        }
    }
}

@keyframes topHeroAnime {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        opacity: 0;
        filter: grayscale(70%);
    }

    10% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        filter: grayscale(20%);
    }

    40% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        filter: grayscale(20%);
    }

    50% {
        opacity: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        filter: grayscale(70%);
    }
}

/*============
header Area
=============*/
.header {
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: center;
    top: -100%;
    background: #fff;
    background: linear-gradient(90deg, var(--dev-color-background-secondary), var(--dev-color-background-secondary) 5%, rgba(239, 239, 239, 0.87) 25%, rgba(239, 239, 239, 0.87) 75%, var(--dev-color-background-secondary) 95%), url(./assets/images/bg_header.webp);
    z-index: 9999;
    transition: 0.8s;
}

.header-title {
    display: inline-block;
    margin-left: 8px;
    margin-top: 8px;
    margin-bottom: 8px;
    width: 80%;
}

.header.js_scroll {
    position: sticky;
    top: 0;
    background: linear-gradient(90deg, #fff, #fff 5%, rgba(239, 239, 239, 0.9) 25%, rgba(239, 239, 239, 0.9) 75%, #fff 95%), url(./assets/images/bg_header.webp);
    box-shadow: var(--dev-shadow-down);
}

@media screen and (min-width: 80em) {
    .header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin: auto;
    }

    .header-title {
        width: 30%;
        box-sizing: border-box;
    }

    .header-title img {
        margin: 0 32px;
    }

    .header.js_scroll {
        background-color: #fffc;
        box-shadow: none;
    }
}

/*============
Navigation
=============*/
.globalNavWrap {
    display: flex;
    flex-direction: column;
    grid-column: 1/3;
    width: 100%;
    height: 0;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    z-index: -1;
    transition: 0.5s;
}

.globalNavWrap>*:not(:first-child) {
    padding-top: 16px;
}

.js_active .globalNavWrap {
    overflow-y: scroll;
    box-sizing: border-box;
}

.js_active .globalNavWrap>*:not(:first-child) {
    border-top: 1px solid #47a427;
}

@media screen and (min-width: 80em) {
    .globalNavWrap {
        display: grid;
        grid-template-columns: repeat(2, max-content);
        justify-items: end;
        align-items: center;
        width: 50%;
        row-gap: 40px;
        height: auto;
        overflow: visible;
        margin: 32px 0;
        margin-right: 32px;
    }

    .globalNavWrap>*:not(:first-child) {
        padding-top: 0;
    }
}

#searchForm {
    display: flex;
    justify-content: space-between;
    width: 80%;
    height: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
}

#searchForm input {
    width: 75%;
    background: #fdfdfd;
    border: 1px solid #111;
    font-size: 16px;
    padding-left: 16px;
    box-sizing: border-box;
}

#searchForm button {
    padding: 8px 16px;
    border: 1px solid #000;
    font-size: 17.6px;
    background: #fff;
    box-sizing: border-box;
    white-space: nowrap;
    cursor: pointer;
}

#searchForm button:active {
    color: #fff;
    background: #ef0000;
}

@media screen and (min-width: 80em) {
    #searchForm {
        justify-content: flex-end;
        gap: 16px;
        width: 100%;
        margin-top: 0;
        margin-bottom: 0;
    }

    #searchForm button {
        padding: 0 16px;
        margin-right: 16px;
    }

    #searchForm button:hover {
        color: #fff;
        background: #0277c5;
        transition: 0.2s;
    }

    #searchForm button:active {
        color: #fff;
        background: #ef0000;
    }

    .js_scroll #searchForm {
        display: none;
    }
}

.fontSizeNav {
    width: 80%;
    height: fit-content;
    box-sizing: border-box;
}

.fontSizeNav-title {
    color: #357b1d;
    font-size: 20.8px;
    font-weight: bold;
    margin-bottom: 8px;
}

.fontSizeNav-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    justify-items: center;
    justify-content: center;
    row-gap: 16px;
    margin-bottom: 32px;
    box-sizing: border-box;
}

.fontSizeNav-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content;
}

.fontSizeNav-list li>* {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: bold;
    width: 96px;
    white-space: nowrap;
    padding: 19.2px;
    color: #357b1d;
    background-color: #fff;
    border: 3px solid currentColor;
    border-radius: 5px;
    -webkit-tap-highlight-color: transparent;
}

.fontSizeNav-list li>*:not(:has(i)) {
    padding: 2.5em 16px;
}

.fontSizeNav-list li>* i {
    font-size: 2em;
}

.fontSizeNav-list li>*:active {
    color: #ef0000;
    background: inherit;
    background-color: #eee;
}

.fontSizeNav-list li:first-child p {
    font-size: 16px;
}

.fontSizeNav-list li:nth-child(2) p {
    font-size: 18px;
}

.fontSizeNav-list li:last-child p {
    font-size: 20px;
}

.fontSizeNav-list li p {
    position: relative;
    justify-content: center;
    width: 80px;
    height: 64px;
    padding: 16px;
    box-sizing: border-box;
    transition: background-color 0.3s;
}

.fontSizeNav-list li p::after {
    content: "";
    position: absolute;
    bottom: -24px;
    color: #ef0000;
    font-size: 14px;
}

.fontSizeNav-list li.js_active p {
    background-color: #ef0000;
    color: #fffcd8;
    border-color: #000;
}

.fontSizeNav-list li.js_active p::after {
    content: "現在の設定";
}

@media screen and (min-width: 37.5em) {
    .fontSizeNav-list {
        gap: 16px;
    }

    .fontSizeNav-list li {
        width: 100%;
        gap: 16px;
    }

    .fontSizeNav-list li p {
        width: 100%;
        height: 112px;
    }

    .fontSizeNav-list li:first-child p, .fontSizeNav-list li:nth-child(2) p, .fontSizeNav-list li:last-child p {
        font-size: 16px;
    }
}

@media screen and (min-width: 80em) {
    .fontSizeNav {
        display: flex;
        align-items: center;
        width: auto;
        height: auto;
        overflow: visible;
        opacity: 1;
    }

    .js_scroll .fontSizeNav {
        display: none;
    }

    .fontSizeNav-title {
        font-size: 12.8px;
        margin-bottom: 0;
        margin-right: 16px;
    }

    .fontSizeNav-list {
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }

    .fontSizeNav-list li {
        border: 1px solid #357b1d;
        padding: 8px;
        cursor: pointer;
    }

    .fontSizeNav-list li p {
        aspect-ratio: 1/1;
        height: auto;
        padding: 0;
        border: none;
        font-size: 12.8px;
    }

    .fontSizeNav-list li p::after {
        font-size: 8px;
        bottom: -32px;
    }

    .fontSizeNav-list li:hover {
        background: #0277c5;
    }

    .fontSizeNav-list li:hover p {
        color: #fffcd8;
        background: #0277c5;
    }

    .fontSizeNav-list li.js_active {
        background: #ef0000;
    }

    .fontSizeNav-list li.js_active p {
        background: #ef0000;
    }
}

.globalNav {
    width: 80%;
    height: fit-content;
    box-sizing: border-box;
}

.globalNav>ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(144px, 1fr));
    justify-items: center;
    justify-content: center;
    row-gap: 16px;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.globalNav>ul li {
    height: fit-content;
}

.globalNav>ul li>* {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: 16px;
    font-weight: bold;
    width: 96px;
    white-space: nowrap;
    padding: 19.2px;
    color: #357b1d;
    background-color: #fff;
    border: 3px solid currentColor;
    border-radius: 5px;
    -webkit-tap-highlight-color: transparent;
}

.globalNav>ul li>*:not(:has(i)) {
    padding: 2.5em 16px;
}

.globalNav>ul li>* i {
    font-size: 2em;
}

.globalNav>ul li>*:active {
    color: #ef0000;
    background: inherit;
    background-color: #eee;
}

.globalNav>ul li ul {
    display: none;
}

.globalNav>ul li ul li a {
    font-size: 0.8em;
}

@media screen and (min-width: 80em) {
    .globalNav {
        grid-column: 1/3;
        width: auto;
        height: auto;
        opacity: 1;
        overflow: visible;
    }

    .globalNav>ul {
        display: flex;
        justify-content: flex-start;
        gap: 32px;
        gap: 2vw;
        margin-bottom: 0;
    }

    .globalNav>ul li a {
        flex-direction: row;
        width: auto;
        padding: 0;
        border: none;
        gap: 8px;
        font-size: min(1vw, var(--dev-font-size));
        background: linear-gradient(currentColor 0 0) bottom 0 left 0/var(--d, 0) 3px no-repeat;
        cursor: pointer;
        transition: 0.3s;
    }

    .globalNav>ul li a:hover {
        --d: 100%;
        color: #0277c5;
    }

    .globalNav>ul li a:active {
        opacity: 0.7;
        color: #ef0000;
        background: linear-gradient(currentColor 0 0) bottom 0 left 0/var(--d, 0) 3px no-repeat, #ccc9;
    }
}

/*============
Footer Area
=============*/
.footer {
    color: #fff;
    background: #357b1d;
}

.footer-list {
    overflow: hidden;
}

.footer-list>li {
    display: flex;
    flex-direction: column;
}

.footer-list>li>a {
    padding: 1rem;
    box-sizing: border-box;
    border-bottom: 1px solid #0002;
}

.footer-list>li:has(ul)>a {
    position: relative;
}

.footer-list>li:has(ul)>a::before, .footer-list>li:has(ul)>a::after {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    right: 32px;
    width: 1rem;
    height: 1px;
    background: #fff;
    transition: 0.5s;
}

.footer-list>li:has(ul)>a::after {
    rotate: 90deg;
}

.footer-list>li:has(ul)>a.js_active::before {
    rotate: 180deg;
    background: var(--dev-color-important);
    height: 3px;
}

.footer-list>li:has(ul)>a.js_active::after {
    rotate: 360deg;
    background: var(--dev-color-important);
    height: 3px;
}

.footer-list>li>ul {
    height: 0;
    background: #2c6618;
    overflow: hidden;
    transition: 0.5s;
}

.footer-list>li>ul li a {
    display: block;
    padding: 1rem;
    padding-left: 2rem;
    border-bottom: 1px solid #0002;
    box-sizing: border-box;
}

.footer-list>li>ul li ul li a {
    padding-left: 3rem;
}

.footer-list>li>ul li:last-child:has(ul)>a {
    border: none;
}

.footer-list>li>ul.js_active {
    height: auto;
    opacity: 1;
}

@media screen and (min-width: 80em) {
    .footer-list {
        display: flex;
        width: 1040px;
        margin: 48px auto;
        overflow: visible;
    }

    .footer-list>li {
        flex: 1;
    }

    .footer-list>li>a {
        padding: 0.5rem;
        border: none;
    }

    .footer-list>li>a::before, .footer-list>li>a::after {
        display: none !important;
    }

    .footer-list>li ul {
        height: auto;
        overflow: visible;
        margin-left: 16px;
        background: #357b1d;
    }

    .footer-list>li ul li a {
        display: inline-block;
        background: linear-gradient(currentColor 0 0) bottom 0 left 0/var(--d, 0) 3px no-repeat;
        font-size: 0.95em;
        border: none;
        padding: 0.5rem !important;
        box-sizing: border-box;
        transition: 0.2s;
    }

    .footer-list>li ul li a:hover {
        --d: 100%;
        font-size: 1.2em;
        cursor: pointer;
    }
}

.footer .copyright {
    text-align: center;
    padding: 16px;
    background: #47a427;
}

/*============
Button Utility
=============*/
.spGlobalNavBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: fit-content;
    max-width: 30px;
    padding: 20.8px 8px;
    margin-right: 20.8px;
}

.spGlobalNavBtn-bars {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.spGlobalNavBtn-bars span {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    display: block;
    width: 100%;
    height: 1px;
    border: 1px solid #357b1d;
    border-radius: 3px;
    background: #357b1d;
    transition: 0.5s;
}

.spGlobalNavBtn-bars span:first-child {
    top: 20%;
}

.spGlobalNavBtn-bars span:last-child {
    top: 80%;
}

.spGlobalNavBtn p {
    font-size: 9.6px;
    white-space: nowrap;
    color: #357b1d;
}

.js_active .spGlobalNavBtn .spGlobalNavBtn-bars {
    gap: 0;
}

.js_active .spGlobalNavBtn .spGlobalNavBtn-bars span {
    height: 3px;
}

.js_active .spGlobalNavBtn .spGlobalNavBtn-bars span:first-child,
.js_active .spGlobalNavBtn .spGlobalNavBtn-bars span:last-child {
    top: 50%;
    background: #ef0000;
    border-color: #ef0000;
}

.js_active .spGlobalNavBtn .spGlobalNavBtn-bars span:first-child {
    rotate: 225deg;
}

.js_active .spGlobalNavBtn .spGlobalNavBtn-bars span:nth-child(2) {
    background: #0000;
    border-color: #0000;
}

.js_active .spGlobalNavBtn .spGlobalNavBtn-bars span:last-child {
    rotate: -225deg;
}

.js_active .spGlobalNavBtn p {
    color: #ef0000;
}

@media screen and (min-width: 80em) {
    .spGlobalNavBtn {
        display: none;
    }
}

.moreBtn {
    display: block;
    width: fit-content;
    color: #fff;
    border-radius: 0;
    background-image: linear-gradient(90deg, #357b1d 0%, #47a427 100%);
    padding: 3.2px 16px;
    margin-left: auto;
    margin-bottom: 19.2px;
    box-shadow: 0 5px 3px #00000030;
    transform: skew(-15deg);
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    color: #fff;
}

.moreBtn:active {
    color: #fff;
    background: #ef0000;
    border-color: #ef0000;
    box-shadow: 0 1px 1px #00000030;
    translate: 0 2px;
}

@media screen and (min-width: 80em) {
    .moreBtn:hover {
        color: #fff;
        background-image: linear-gradient(90deg, #ef0000 0%, #ff2323 100%);
        border-color: #ef0000;
        box-shadow: 0 1px 1px #00000030;
        translate: 0 2px;
        transition: 0.2s;
    }

    .moreBtn:active {
        opacity: 0.8;
    }
}

.importantNewsList {
    display: flex;
    flex-direction: column;
    gap: 12.8px;
    width: 100%;
    list-style: inside;
}

.importantNewsList li {
    margin-right: 2rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.importantNewsList li a {
    position: relative;
    font-size: 1rem;
    color: #ef0000;
    cursor: pointer;
}

.importantNewsList li a:hover {
    color: #fff;
    background: var(--dev-color-hover-background);
    font-size: 1.1em;
    transition: 0.2s;
}

.importantNewsList li a:active {
    background: var(--dev-color-click-background);
}

.newsList {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 auto;
    margin-bottom: 32px;
}

.newsList>li {
    background-color: #fffcd8;
    border: 1px solid #357b1d;
    border-radius: 16px;
    box-shadow: 0px 5px 5px 0px #00000030;
}

.newsList>li article {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}

.newsList>li article .link {
    display: block;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    color: var(--dev-color-font-primary);
}

.newsList>li article .link img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.newsList>li article .link:active {
    color: #ef0000;
}

.newsList>li article .title {
    display: flex;
    flex-direction: column-reverse;
    gap: 12.8px;
    font-size: 1.1rem;
    margin-bottom: 8px;
    cursor: pointer;
}

.newsList>li article .title h3 {
    font-weight: bold;
}

.newsList>li article time {
    font-size: 0.8em;
}

.newsList>li article .desc {
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    border-top: 1px solid #47a427;
    padding-top: 8px;
    cursor: pointer;
}

@media screen and (min-width: 37.5em) {
    .newsList {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 80em) {

    .newsList>li .link:hover {
        color: #ef0000;
        transition: 0.2s;
    }

    .newsList>li .link:active {
        opacity: 0.7;
        background: #ccc8;
    }

    .newsList>li .link:hover {
        color: #0277c5;
        transition: 0.2s;
    }

    .newsList>li .link:active {
        color: #ef0000;
    }
}

.blogList {
    display: grid;
    margin: auto;
}

.blogList>li {
    background-color: #fffcd8;
    border: 1px solid #357b1d;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0px 5px 5px 0px #00000030;
    margin: 0 var(--dev-primary-margin);
    margin-bottom: 24px;
    overflow: hidden;
}

.blogList>li article {
    position: relative;
}

.blogList>li article::before {
    position: absolute;
    content: attr(data-category);
    top: 0;
    color: #fff;
    font-weight: bold;
    font-size: 1.3rem;
    border: 1px solid #79d859;
    background: #47a427;
    padding: 4.8px 16px;
    box-sizing: border-box;
    z-index: 1;
}

.blogList>li article .link {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

.blogList>li article .link:active {
    color: #ef0000;
}

.blogList>li article .link:active img {
    opacity: 0.9;
    filter: grayscale(40%);
}

.blogList>li article .link img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0px 5px 5px 0px #00000030;
    overflow: hidden;
    cursor: pointer;
}

.blogList>li article .link .blogList-contents {
    color: var(--dev-color-font-primary);
    font-size: 1.1rem;
    cursor: pointer;
}

.blogList>li article .link .blogList-contents time {
    font-size: 0.7em;
}

.blogList>li article .link .blogList-contents h3 {
    width: 90%;
    font-weight: bold;
    margin: auto;
    width: 90%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blogList>li article .link .blogList-contents .desc {
    display: none;
    font-size: 0.7em;
}

.blogList>li article .link:active {
    background: #ccc8;
}

.blogList>li article .link:active .blogList-contents time,
.blogList>li article .link:active .blogList-contents h3,
.blogList>li article .link:active .blogList-contents .desc {
    color: #ef0000;
}

@media screen and (min-width: 37.5em) {
    .blogList {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: var(--dev-gap);
    }

    .blogList>li article .link>* {
        flex: 1 1 100%;
    }

    .blogList>li article .link .blogList-contents {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .blogList>li article .link .blogList-contents h3 {
        margin: 0 auto;
    }

    .blogList>li article .link .blogList-contents .desc {
        width: 90%;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
        margin: 0 auto;
    }
}

@media screen and (min-width: 80em) {
    .blogList {
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    }

    .blogList>li article .link:hover {
        transition: color 0.2s;
    }

    .blogList>li article .link:hover img {
        box-shadow: none;
        translate: 0 2px;
        transition: 0.2s;
    }

    .blogList>li article .link:hover .blogList-contents time,
    .blogList>li article .link:hover .blogList-contents h3,
    .blogList>li article .link:hover .blogList-contents .desc {
        color: var(--dev-color-hover-background);
    }

    .blogList>li article .link:active {
        background: #ccc8;
    }

    .blogList>li article .link:active .blogList-contents time,
    .blogList>li article .link:active .blogList-contents h3,
    .blogList>li article .link:active .blogList-contents .desc {
        color: #ef0000;
    }
}

.tagList {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    margin-left: 1rem;
}

.tagList:has(li)::before {
    position: absolute;
    top: 0.5rem;
    left: -1.5rem;
    content: "\f02b";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.tagList>li {
    border-radius: 16px;
    padding: 3.2px 16px;
    box-shadow: 0 5px 3px #00000030;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

.tagList>li a {
    color: #fff;
}

.tagList>li a:active {
    color: #fff;
}

.tagList>li.notify {
    background: #47a427;
    border: 2px solid #2c6618;
}

.tagList>li.notify :active {
    background: #2c6618;
}

.tagList>li.meeting {
    background: #ff2323;
    border: 2px solid #bc0000;
}

.tagList>li.meeting:active {
    background: #bc0000;
}

.tagList>li.download {
    background: #ffb733;
    border: 2px solid #cc8400;
}

.tagList>li.download:active {
    background: #cc8400;
}

.tagList>li.event {
    background: #0395f7;
    border: 2px solid #015993;
}

.tagList>li.event:active {
    background: #015993;
}

.tagList>li:active {
    font-weight: bold;
    box-shadow: 0 1px 1px #00000030;
    translate: 0 2px;
}

@media screen and (min-width: 80em) {
    .tagList>li:hover {
        font-weight: bold;
        box-shadow: 0 1px 1px #00000030;
        translate: 0 2px;
        transition: 0.2s;
    }

    .tagList>li:active {
        opacity: 0.7;
    }
}

.error-link-list {
    display: flex;
    flex-direction: column;
    gap: var(--dev-gap);
}

.topImportantNews {
    width: calc(clamp(304px, 90vw, 1280px) - 2rem);
    background: #fffde8;
    border: dashed 2px #ffb03f;
    border-radius: 9px;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    box-shadow: 0px 0px 0px 10px #fffde8, 0px 3px 8px 10px rgba(0, 0, 0, 0.24);
    box-sizing: border-box;
}

.topImportantNews .contentLayout {
    box-sizing: border-box;
}

.topImportantNews h2 {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    color: #ef0000;
    margin-bottom: 16px;
}

.topNews h2 {
    position: relative;
    font-size: 1.3rem;
    padding: 10px 0;
    text-align: center;
    margin: 1.5em 0;
}

.topNews h2::first-letter {
    color: #357b1d;
    font-size: 1.5em;
}

.topNews h2::before, .topNews h2::after {
    content: "";
    position: absolute;
    top: -0.65rem;
    left: 50%;
    width: 150px;
    height: 5rem;
    border-radius: 50%;
    border: 5px solid #79d859;
    border-left-color: transparent;
    border-right-color: transparent;
    transform: translateX(-50%);
}

.topNews h2:before {
    border-bottom: transparent;
}

.topNews h2::after {
    border-top: transparent;
}

.topNews .newsAllBtn {
    width: fit-content;
    margin-left: auto;
}

.topBlog {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff8a5;
    padding-bottom: 80px;
}

.topBlog h2 {
    width: clamp(304px, 90vw, 1280px);
    position: relative;
    font-size: 1.3rem;
    padding: 10px 0;
    text-align: center;
    margin: 1.5em 0;
    margin-left: auto;
    margin-right: auto;
}

.topBlog h2::first-letter {
    color: #357b1d;
    font-size: 1.5em;
}

.topBlog h2::before, .topBlog h2::after {
    content: "";
    position: absolute;
    top: -0.65rem;
    left: 50%;
    width: 150px;
    height: 5rem;
    border-radius: 50%;
    border: 5px solid #79d859;
    border-left-color: transparent;
    border-right-color: transparent;
    transform: translateX(-50%);
}

.topBlog h2:before {
    border-bottom: transparent;
}

.topBlog h2::after {
    border-top: transparent;
}

.topBlog .topBlog-list {
    width: var(--dev-layout-width);
    margin: 0 auto;
}

.topBlog .topBlogList {
    display: flex;
    gap: 16px;
    margin: auto;
}

@media screen and (max-width: 37.5em) {
    .topBlog .topBlogList {
        margin-bottom: 16px;
        overflow-x: scroll;
    }

    .topBlog .topBlogList::-webkit-scrollbar {
        height: 12px;
    }

    .topBlog .topBlogList::-webkit-scrollbar-thumb, .topBlog .topBlogList::-webkit-scrollbar-track {
        border-radius: 92px;
    }

    .topBlog .topBlogList::-webkit-scrollbar-thumb {
        background: #79d859;
    }

    .topBlog .topBlogList::-webkit-scrollbar-track {
        background: #fff;
    }

    .topBlog .topBlogList>li {
        flex: 0 0 auto;
    }

    .topBlog .topBlogList>li>article>.link {
        width: 10rem;
    }
}

.topBlog .newsAllBtn {
    width: clamp(304px, 90vw, 1280px);
    margin: auto;
}

@media screen and (min-width: 37.5em) {
    .topBlog .topBlogList {
        display: grid;
    }

    .topBlog .topBlogList>li>article>.link {
        width: 100%;
    }
}

/*# sourceMappingURL=style.css.map */