.s-root {
    margin: auto;
    width: 95%;
    max-width: 1100px;
}

.single-top {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 1;
    border-radius: 0 0 0 50px;
}
.single-top img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 5 / 1;
    border-radius: 0 0 0 50px;
}

.archive-title a {
    font-size: 18px;
    cursor: none;
    pointer-events: none;
}
.single_title h2 {
    text-align: left;
    margin-top: 20px;
    line-height: 1.5;
    color: #40A629;
}
.single_title span {
    font-size: 12px;
    color: #40A629;
}
.single_title h2::first-letter {
    color: #40A629;
}

.single_title_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.punkslist ul {
    display: flex;
}
.punkslist li {
    padding: 0 5px;
    opacity: 0.8;
    font-size: 14px;
}
.punkslist li a {
    cursor: none;
    pointer-events: none;
}
.punkslist li:last-child {
    opacity: 1;
}

.article_content {
    display: flex;
    align-items: center;
    background-color: #FAFFF0;
    border-radius: 10px;
    padding: 40px;
}
.article_content.post {
    display: block;
}
.article-text {
    width: 80%;
}
.article-img {
    width: 20%;
}
.article-img img {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: auto;
    height: 100%;
    object-fit: contain;
}
.article_content h3,
.article_content p {
    display: inline-block;
    vertical-align: top;
    margin: 0;
}
.article_content.post h3 {
    width: 100%;
    display: block;
    font-weight: bold;
}
.article_content h3 {
    color: #40A629;
    width: 15%; /* 要素の幅を調整 */
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: normal;
}
.article_content h3 strong {
    font-weight: normal;
}
.article_content h3:before {
    content: url('../img/dotto.png'); /* 画像のパスを指定 */
    display: inline-block;
    height: auto; /* 高さを自動調整 */
    margin-right: 10px; /* 画像とテキストの間の余白を調整 */
}
.article_content p {
    text-align: justify;
    width: 75%; /* 要素の幅を調整 */
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #80c41c;
}
.article_content.post p {
    width: 100%;
    border: none;
    padding-bottom: 0;
}
.article_content.post ul,
.article_content.post ol {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 14px;
}
.article_content p strong {
    color: #40A629;
}
.exception-content {
    width: 90%;
    text-align: justify;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.article_content p:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.s-date {
    font-size: 18px;
}
.article_content {
    margin-top: 40px;
    margin-bottom: 80px;
}

.back_button a {
    position: relative;
    display: block;
    margin: auto;
    width: 30%;
    line-height: 50px;
    height: 50px;
    border-radius: 50px;
    background-color: #40A629;
    color: #fff !important;
    font-size: 18px;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.back_button i {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    color: #40A629;
    padding: 3px;
    font-size: 14px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.single_item {
    width: 23%;
    margin-right: 2.6%;
}
.single_item:nth-child(4n) {
    margin-right: 0;
}
.single_item h4 {
    text-align: left;
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 10px;
    border-radius: 0;
}
.single_item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 20px;
}

/* @media screen and (max-width: 767px) { */
@media screen and (max-width: 820px) {
    .s-root {
       width: 100%;
        padding: 0 5%;
    }
    .single_title_flex {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .single_title_flex h2 {
        margin-bottom: 20px;
    }
    .article_content {
        flex-direction: column;
        flex-flow: column-reverse;
    }
    .article-text {
        width: 100%;
    }
    .article-img {
        width: 100%;
        margin-bottom: 20px;
    }
    .article_content h3 {
        width: 100%; /* 要素の幅を調整 */
    }
    .article_content p {
        width: 100%; /* 要素の幅を調整 */
    }
    .back_button a {
        width: 100%;
    }
    .single_item {
        width: 47%;
        margin-right: 6%;
    }
    .single_item:nth-child(2n) {
        margin-right: 0%;
    }
    .single_item:nth-child(4) {
        margin-right: 0%;
    }
}