body {
    background-color: #aaa99c;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 auto;
    margin-top: 200px;
    margin-bottom: 100px;

}

@media screen and (max-width: 768px) {
    .wrapper {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin: 0 auto;
    }
}

.main {
    display: block;
    background-color: #e6e6e6;
    border: 1.2px outset #bebebe;
    width: 700px;
    height: 660px;
    margin-left: 10px;
    padding: 10px 3px 50px 3px;
    overflow-y: scroll;
    overflow-x: hidden;
}

.main i {
    position: relative;
    font-weight: 900;
    color: #ffffff;
    margin-left: 8px;
    font-size: 1.2em;
    top: 1.4px;
    align-items: center;
}

@media screen and (max-width:768px) {
    .main {
        font-size: .9em;
        width: 95%;
        inset: 0;
        margin: 10px auto;
        padding: 0 auto;
        overflow: visible;
        height: auto;
    }
}

/************スクロールバー************/
.main::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

.main::-webkit-scrollbar-track {
    background: #e6e6e6;
}

.main::-webkit-scrollbar-thumb {
    background: #9c9c9c;
}

.main::-webkit-scrollbar-thumb {
    background: #9c9c9c;
    border: 2px outset #9c9c9c;
}

hr {
    border-top: 1px solid #979797;
    border-bottom: 1px solid #fff;
    width: 70%;
    margin: 10px auto;
}

.main hr {
    border-top: 1px solid #979797;
    border-bottom: 1px solid #fff;
    width: 70%;
    margin: 20px auto;
}

.center {
    text-align: center;
}

/************テキストスタイルまとめ************/
h1 {
    font-family: "DotGothic16", sans-serif;
    background-image: linear-gradient(90deg, #2a6413 21%, #b6da34);
    margin: 3px 3px 10px 3px;
    padding-left: 1.2em;
    /*アイコン分のスペース*/
    color: #ffffff;
    font-size: 2em;
    font-weight: 900;

}

h2 {
    position: relative;
    font-family: "DotGothic16", sans-serif;
    font-size: 1.25em;
    font-weight: 900;
    padding: 0.25em 0;
    margin: 20px 0 3px 20px;
}

h2:after {
    content: "";
    display: block;
    height: 3px;
    margin-top: 5px;
    width: 180px;
    background-image: linear-gradient(90deg, #2a6413 21%, #b6da34);
}

.main p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1em;
    letter-spacing: -0.04em;
    margin: 3px 30px;
}

a {
    color: #2a6413;
}

a:not(header li a):hover {
    color: #e9ca1e;
}

.marker {
    background: linear-gradient(transparent 60%, #e9cf3b 0%);
}

@media screen and (max-width:768px) {
    .main p {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 1.1em;
        letter-spacing: -0.04em;
        margin: 3px 15px;
    }

}

.link-flex {
    display: flex;
    flex-wrap: wrap;
    width: 80vw;
    font-size: .8em;
    letter-spacing: -0.04em;
    margin: 10px 30px;
}

.link-flex a {
    border: solid 1px #2a6413;
    border-radius: 50px;
    padding: 2px 10px;
    margin: 0 5px;
}

.link-flex a:hover {
    background-color: #e9ca1e;
    color: #fff;
    border: solid 1px #e9ca1e;
    border-radius: 50px;
    padding: 2px 10px;
    margin: 0 5px;
}

/************メニュー************/
.menu {
    background-image: linear-gradient(90deg, #2a6413 21%, #b6da34);
    margin: 3px;
    padding-left: 1.2em;
    /*アイコン分のスペース*/
    color: #ffffff;
    font-size: .8em;
    font-weight: 900;
    line-height: 1.3;
}

.menu i {
    position: relative;
    font-weight: 900;
    color: #ffffff;
    margin-left: 8px;
    font-size: 1.2em;
    top: 1.4px;
    align-items: center;
}

/************箇条書き************/
.square li {
    list-style: none;
    position: relative;
    padding: 0 0 0 25px;
    margin: 0 20px;
}

ul.square li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #41641c;

}


/************header************/
header {
    position: relative;
    width: 100%;
    margin: auto;
    background-color: #7a7a7a;
}

header ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

header li a {
    display: block;
    padding: 5px 16px;
    text-decoration: none;
    color: #000000;
    transition: all .3s;
    background-color: #eeeeee;
    border: 4px outset #e0e0e0;
}

header li {
    text-align: center;
}

header li:last-child {
    border-bottom: none;
}

header li a:hover:not(.active) {
    position: relative;
    background-color: #d4d4d4;
    border: 4px inset #afafaf;
    top: 1.2px;
}

@media screen and (max-width:768px) {
    header li a {
        display: block;
        padding: 5px 16px;
        font-size: 1.5em;
        text-decoration: none;
        color: #000000;
        transition: all .3s;
        background-color: #eeeeee;
        border: 8px outset #e0e0e0;
    }
}

.sidebar {
    display: block;
    background-color: #e6e6e6;
    width: 200px;
    height: 660px;
    font-family: "DotGothic16", sans-serif;
    border: 1.2px outset #bebebe;
}

.sidebar .icon {
    position: relative;
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.sidebar p {
    font-size: 0.6em;
    margin: 0 10px;
}

@media screen and (max-width:768px) {
    .sidebar {
        width: 95%;
        height: auto;
        margin-top: 10px;
        padding-bottom: 20px;
    }


    .sidebar .icon {
        position: relative;
        width: 80%;
        margin: 3% 0;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/************フキダシ************/
.top {
    position: absolute;
}

.fukidashi {
    position: relative;
    display: block;
    left: 110px;
    bottom: 100px;
    margin-top: 9px;
    width: fit-content;
    font-family: "DotGothic16", sans-serif;
    padding: 7px 20px;
    color: #000000;
    letter-spacing: -.1em;
    border-radius: 1px;
    background-color: #d4d4d4;
    white-space: nowrap;
    font-size: 0.9em;
    z-index: 2;

}

.fukidashi::after {
    content: "";
    position: absolute;
    top: 80%;
    left: 3em;
    width: 12px;
    height: 12px;
    transform: translateX(-50%);
    box-sizing: border-box;
    background-color: #d4d4d4;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 0;
}

@media screen and (max-width:768px) {
    .fukidashi {
        inline-size: 94.7vw;
        text-wrap: wrap;
        top: -120px;
        left: 0;
        font-size: .9em;
    }

    .fukidashi::after {
        width: 20px;
        height: 20px;
    }
}

/************紹介************/
.sidebar .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    font-family: "DotGothic16", sans-serif;
    width: 100%;
    font-size: .6em;
    margin: 5px 0;
}

.sidebar .list dt::after {
    content: ":";
    padding: 0 5px;
}

.sidebar .list dt,
.sidebar .list dd {
    box-sizing: border-box;
}

.sidebar .list dt {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    margin-left: -15%;
}

.sidebar .list dd {
    display: flex;
    align-items: center;
    width: 50%;
    margin-left: 0;
}

/************紹介************/
.main-list {
    padding: 0 20px;
}

.main .list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 600px;
    font-size: 1em;
    margin: 5px 0 30px 0;
}

.main .list dt::after {
    content: ":";
    position: relative;
    top: -1px;
    padding: 0 3px 0 5px;
}

.main .list dt,
.main .list dd {
    box-sizing: border-box;
    margin: 2px 0;
}

.main .list dt {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 160px;
    top: 1px;
}

.main .list dd {
    display: flex;
    width: 440px;
    margin-left: 0;
    padding: 1px;
}

@media screen and (max-width:768px) {
    .main .list {
        width: 80vw;
    }

    .main .list dt {
        width: 20vw;
    }

    .main .list dd {
        width: 60vw;
    }

}

/************ニュース************/
.news-list {
    list-style: none outside;
    margin: 20px 80px;
    padding: 10px;
    background: #e6e6e6;
    box-shadow: inset 3px 3px 3px #9e9e9e, inset -3px -3px 3px #9e9e9e;
    height: 80px;
    overflow-y: scroll;
    border: double 3.5px #707070;
}

.news-list .item a {
    display: flex;
    flex-wrap: wrap;
    flex-wrap: nowrap;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #CCC;
    padding: 5px 5px;
}

.news-list .item:first-child a {
    border-top: 1px solid #CCC;
}

.news-list .item .date {
    font-family: "DotGothic16", sans-serif;
    margin: 0;
    min-width: 50px;
    font-size: 1em;
    letter-spacing: 0.05em;
    color: #999;
    padding: 0 20px 0 0;
}

.news-list .item .title {
    font-family: "DotGothic16", sans-serif;
    font-size: .8em;
    width: 100%;
}

.news-list .item a:hover .title {
    color: #b6da34;
}

@media screen and (max-width:768px) {
    .news-list {
        list-style: none outside;
        margin: 30px 20px;
        padding: 10px;
        height: 150px;
    }

    .news-list .item p {
        max-width: 150px;
        font-size: .9em;
        padding: 2px;
        margin: 0 10px 9px;
    }

    .news-list .item a {
        padding: 0 20px;
    }

    .news-list .item .date {
        font-size: 1em;
        letter-spacing: 0.03em;
        color: #999;
        padding: 0 10px 0 0;
        margin-top: 10px;
    }


}

/************ニューススクロールバー************/
.news-list::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.news-list::-webkit-scrollbar-track {
    background: #9c9c9c;
}

.news-list::-webkit-scrollbar-thumb {
    background: #dfdfdf;
}

.news-list::-webkit-scrollbar-thumb {
    background: #9c9c9c;
    border: 2px outset #9c9c9c;
}


@media screen and (max-width: 767px) {
    .news-list .item a {
        flex-wrap: wrap;
    }

    .news-list .item .date {
        min-width: 100px;
    }

    .news-list .item .title {
        margin-top: 10px;
    }
}



.banner img {
    display: flex;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.banner img:hover {
    opacity: 0.5;
    transition: 0.3s;
}

@media screen and (max-width:768px) {
    .banner img {
        width: 150px;
    }
}

.clap {
    width: 370px;
    display: flex;
    margin: 0 auto;
    max-width: 80vw;
}

.clap img {
    width: 30px;
    height: auto;
    padding: 0;
    margin-right: 60px;
}

.balloon1-left {
    position: relative;
    margin: 2px 0 2px;
    padding: 7px 20px;
    min-width: 40px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffffff;
}

.balloon1-left:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #ffffff;
}

.balloon1-left p {
    margin: 0;
    padding: 0;
    font-family: "DotGothic16", sans-serif;
    flex-wrap: wrap;
    max-width: 380px;
    font-size: .7em;
}