@charset "utf-8";
section.first-section {
    min-height: 60vh;
}

.heading-img {
    margin-bottom: 32px;
    position: relative;
    padding-top: 50px;
}

.heading-img img {
    position: absolute;
    height: 40px;
    width: 100%;
    object-fit: cover;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.title-h3 {
    margin-bottom: 32px;
    font-size: 16px;
    font-family: tsukuAR;
    line-height: 1.5;
    font-weight: bold;
}

.blog-list {
    padding: 0;
    margin: 0;
}

.inner-row {
    counter-reset: section;
}

.blog-card a {
    padding: 10px;
    display: block;
    background: #fff;
    color: #007a3e;
    transition: .3s ease-in-out;
}

.blog-card a:hover {
    background-color: #ffc915;
    color: #007a3e;
}

.header-card .counter-list {
    position: relative;
}

.header-card:before {
    counter-increment: section;
    content: '0' counter(section);
    position: relative;
    display: block;
    padding: 2px;
    text-align: center;
    font-weight: bold;
    background-image: url('../img/post/accent-green.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 36px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-card a:hover .header-card:before {
    background-image: url('../img/post/accent-green.svg');
}

.header-card h4 {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
}

.content-card {
    min-height: 160px;
    background: #007a3e;
    margin-top: 12px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.comming-soon {
    color: #fff;
    font-family: HanSan_Bold;
    font-size: 20px;
}

.heading-with-accent {
    margin-top: -12px;
    border: 2px solid #007a3e;
    border-top: 0;
    padding: 10px;
    background-color: #fff;
    box-shadow: 1px 2px 6px rgb(0 0 0 / 50%);
}

.wrapp-heading-text {
    text-align: center;
    display: block;
    margin: auto;
    border: 1px solid #007a3e;
    border-radius: 8px;
    font-size: 24px;
    color: #007a3e;
    position: relative;
    background-color: #fff;
    font-family: tsukuAR;
    line-height: 1.5;
    font-weight: bold;
}

.wrapp-heading-text .left {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #007a3e;
    left: -2px;
    top: -2px;
    border: 2px solid #fff;
}

.wrapp-heading-text .left-bottom {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #007a3e;
    left: -2px;
    bottom: -2px;
    border: 2px solid #fff;
}

.wrapp-heading-text .right {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #007a3e;
    right: -2px;
    top: -2px;
    border: 2px solid #fff;
}

.wrapp-heading-text .right-bottom {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #007a3e;
    right: -2px;
    bottom: -2px;
    border: 2px solid #fff;
}

.blog-date {
    width: 100%;
    margin: 15px 0 10px 0;
    text-align: right;
}

.blog-category {
    width: 100%;
    margin-bottom: 10px;
    text-align: right;
}

.blog-contents {
    width: 100%;
    padding: 12px;
    background-color: #fff;
    border: solid 1px #ddd;
    border-radius: 5px;
}

.blog-contents ul {
    list-style-type: initial;
}

.blog-contents figure {
    margin: initial;
}

.blog-contents figure table {
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
    border: solid 1px #778ca3;
}

.blog-contents figure table tr {
    border-top: dashed 1px #778ca3;
}

.blog-contents figure table th {
    padding: 10px;
    background: #e9faf9;
}

.blog-contents figure table td {
    padding: 10px;
}

.wrapp-btn {
    text-align: center;
    margin-top: 50px;
}

.wrapp-btn a {
    display: inline-block;
    font-weight: bold;
    width: 90%;
    max-width: 500px;
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .inner-blog {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .heading-img,
    .title-h3 {
        margin-bottom: 16px;
    }
}

/* for news-list */
.news-list {
    width: 100%;
    padding: 40px;
    background-color: #fff;
}

.news-list li:not(:last-child) {
    margin-bottom: 15px;
}

.news-list li a {
    display: flex;
    font-family: HanSan_Bold;
    font-weight: bold;
    font-size: 14px;
    color: #007a3e;
}

.news-list li a:hover {
    color: #000;
}

.news-list .date {
    margin-right: 15px;
}

.news-list .category {
    margin-right: 15px;
}

/* for navigation */
[role="navigation"]>div:first-child,
[role="navigation"]>div:last-child>div:first-child {
    display: none;
}

[role="navigation"]>div:last-child>div:last-child>span {
    display: flex;
    justify-content: center;
    align-items: center;
}

[role="navigation"]>div:last-child>div:last-child>span>* {
    width: 30px;
    height: 30px;
    margin: 0 3.5px;
    border: solid 1px #aaa;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

[role="navigation"]>div:last-child>div:last-child>span>a {
    font-family: HanSan_Bold;
    font-weight: bold;
    font-size: 14px;
    color: #007a3e;
}

[role="navigation"] svg {
    width: 20px;
    vertical-align: bottom;
}