.main {
    background: #fff;
    margin: 56px auto;
    padding: 75px 0;
    width: calc(100% - 30px);
    max-width: 1140px;
}
.main-inner {
    margin: 0 auto;
    width: calc(100% - 30px);
    max-width: 945px;
}
@media screen and (max-width: 768px) {
    .main {
        padding: 24px 0;
    }
    .main-inner {
        width: calc(100% - 34px);
    }
}

.block:not(:last-child) {
    margin: 0 0 56px;
}
.block-head {
    margin: 0 0 32px;
}
.block-head.underline {
    border-bottom: 2px solid var(--main-accent-color);
    margin: 0 0 15px;
    padding: 0 0 15px;
}
.block-head h2 {
    color: var(--main-accent-color);
    font-family: var(--ft-tsuku-b);
    font-size: 30px;
    font-weight: bold;
}
.block-btn {
    margin: 32px 0 0;
}
.block-btn a {
    background: var(--main-accent-color);
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--ft-tsuku-b);
    font-size: 18px;
    font-weight: bold;
    height: 52px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 389px;
}
@media screen and (max-width: 768px) {
    .block:not(:last-child) {
        margin: 0 0 35px;
    }
    .block-head {
        margin: 0 0 24px;
    }
    .block-head h2 {
        font-size: 26px;
    }
    .block-btn {
        margin: 24px 0 0;
    }
    .block-btn a {
        font-size: 14px;
        height: 42px;
        max-width: 311px;
    }
}

/* about */
.about-body p {
    line-height: 1.8em;
}
@media screen and (max-width: 768px) {
}

/* news */
.news-items{
    list-style: none;
}
.news-item:not(:last-child) {
    margin: 0 0 20px;
}
.news-item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.news-item__date {
    font-size: 13px;
    font-weight: bold;
    margin-right: 20px;
    width: 95px;
}
.news-item__cat {
    background: var(--sub-color);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-right: 20px;
    padding: 3px;
    text-align: center;
    width: 127px;
}
.news-item__ttl {
    line-height: 1.4em;
    width: calc(100% - 262px);
}
@media screen and (max-width: 768px) {
    .news-item__date {
        font-size: 10px;
        margin-right: 15px;
        width: max-content;
    }
    .news-item__cat {
        font-size: 10px;
        margin-right: 0;
        padding: 0 20px;
        width: max-content;
    }
    .news-item__ttl {
        font-size: 13px;
        margin: 8px 0 0;
        width: 100%;
    }
}

/* card */
.contents-card:not(:last-child) {
    margin: 0 0 24px;
}
.contents-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.contents-card__image {
    line-height: 0;
    width: 265px;
}
.contents-card__text {
    width: calc(100% - 290px);
}
.contents-card__date {
    font-weight: bold;
}
.contents-card__info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 6px 0;
}
.contents-card__tag {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 20px;
    width: max-content;
}
.contents-card__tag::before {
    background: var(--sub-color);
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 18px;
    margin-right: 5px;
    width: 18px;
}
.contents-card__cat {
    background: var(--sub-color);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 3px 35px;
    width: max-content;
}
@media screen and (max-width: 968px) {
    .contents-card__image {
        width: 200px;
    }
    .contents-card__text {
        width: calc(100% - 225px);
    }
}
@media screen and (max-width: 768px) {
    .contents-card:not(:last-child) {
        margin: 0 0 16px;
    }
    .contents-card a {
        align-items: flex-start;
    }
    .contents-card__image,
    .contents-card__text {
        width: 49%;
    }
    .contents-card__date {
        font-size: 10px;
    }
    .contents-card__info {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        margin: 3px 0;
    }
    .contents-card__tag {
        font-size: 12px;
        margin-right: 0;
        margin-bottom: 4px;
        width: 100%;
    }
    .contents-card__tag::before {
        height: 10px;
        margin-right: 3px;
        width: 10px;
    }
    .contents-card__cat {
        font-size: 10px;
        padding: 3px 20px;
    }
    .contents-card__ttl {
        font-size: 13px;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }
}

/* archive */
.archive-items.pt1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 31px;
}
.archive-items.pt2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 125px;
    row-gap: 45px;
}
.archive-items.pt2 .archive-item {
    background: #fff;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.25));
    height: 100%;
    padding: 0 0 69px;
}
.archive-item__image {
    line-height: 0;
    margin: 0 0 5px;
}
.archive-items.pt2 .archive-item__text {
    padding: 16px;
}
.arvhive-item__price {
    border-top: 1px solid #ccc;
    color: var(--main-accent-color);
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 0;
    padding: 15px 0 0;
}
.arvhive-item__price .tax {
    color: var(--main-accent-color);
    font-size: 13px;
    font-weight: 600;
}
@media screen and (max-width: 968px) {
    .archive-items.pt1 {
        gap: 24px;
    }
    .archive-items.pt2 {
        gap: 45px;
    }
}
@media screen and (max-width: 768px) {
    .archive-items.pt1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px;
        row-gap: 16px;
    }
    .archive-items.pt2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px;
        row-gap: 20px;
    }
    .archive-items.pt2 .archive-item {
        padding: 0 0 43px;
    }
    .archive-items.pt2 .archive-item__text {
        padding: 10px;
    }
    .archive-item__ttl {
        font-size: 13px;
    }
    .archive-items.pt2 .archive-item__ttl {
        font-size: 9px;
    }
    .arvhive-item__price {
        font-size: 11px;
        margin: 10px 0 0;
        padding: 10px 0 0;
    }
    .arvhive-item__price .tax {
        font-size: 9px;
    }
}

/* links */
.download-body ul li:not(:last-child) {
    margin: 0 0 5px;
}
.download-body ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.download-body ul li::before {
    content: "・";
    color: var(--link-color);
}
.download-body ul li a {
    color: var(--link-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin-top: 32px;
}
.pagination .page-numbers {
    background: #fff;
    border: 1px solid #ddd;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    height: 42px;
    width: 41px;
}
.pagination .page-numbers.current {
    background: var(--main-accent-color);
    color: #fff;
}
.pagination .page-numbers.disabled {
    color: #ddd;
}
@media screen and (max-width: 768px) {
    .pagination {
        margin-top: 16px;
    }
    .pagination .page-numbers {
        height: 41px;
        width: 28px;
    }
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

.policy-body {
    line-height: 1.8em;
}
.policy-body h2 {
    font-size: 24px;
    font-weight: bold;
    margin: 35px 0 10px;
}
.policy-body ul li {}
.policy-body ol li {
    list-style: circle;
}
.policy-body ul li,
.policy-body ol li {
    list-style-position: inside;
}