.page_section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .page_section {
        padding: 70px 0 80px 0;
    }
}
.page_title_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 40px 0 40px 0;
}
.page_title_jp {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .page_title_jp {
        font-size: 14px;
    }
}
.page_title_en {
    color: var(--color-red);
    font-family: var(--font-din);
    font-size: 56px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .page_title_en {
        font-size: 30px;
    }
}



/*アーカイブ*/
.category_list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 40px auto 0;
}
.category_item{
    list-style: none;
    margin: 5px 0;
}
@media (max-width: 768px) {
    .category_list {
        margin: 30px auto 0;
        flex-wrap: wrap;
    }
}
.category_item a {
    color: var(--color-red);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: .6s;
    padding: 0 20px;
    border-right: 1px solid var(--color-red);
}
.category_item.is-active a{
    color: var(--color-black);
}
.category_item a:hover {
    opacity: .7;
    transition: .6s;
}
.category_item:last-child a {
    border-right: none;
}
.archive_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 100px;
    gap: 30px;
}
@media (max-width: 768px) {
    .archive_list {
        display: flex;
        flex-wrap: wrap;
        margin-top: 50px;
        gap: 40px 20px;
    }
}
.archive_list_content {
    display: block;
    width: calc(33.3333% - 20px);
}
@media (max-width: 768px) {
    .archive_list_content {
        display: block;
        width: calc(50% - 10px);
    }
}
.archive_list_item_imgContainer {
    width: 100%;
    height: auto;
}
.archive_list_item_img {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.archive_list_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.archive_list_content:hover .archive_list_item_img img {
    transform: scale(1.06);
}

.archive_list_item_info_date {
    color: var(--color-black);
    font-size: 15px;
    margin: 10px 0 4px 0;
}
.archive_list_item_title {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
}
@media (max-width: 768px) {
    .archive_list_item_info_date {
        font-size: 13px;
    }
    .archive_list_item_title {
        font-size: 15px;
    }
}
.pagenation{
    margin: 40px auto;
}


/*single*/
.article {
    margin: 88px 0 60px 0;
}
@media (max-width: 768px) {
    .article {
        margin: 40px 0 30px 0;
    }
}
.post_thumbnail img {
    width: 100%;
    height: auto;
}
.post_header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 24px;
}
@media (max-width: 768px) {
    .post_header {
        margin-top: 16px;
    }
}
.post_date {
    font-size: 16px;
    line-height: 1.5;
}
.post_title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .post_date {
        font-size: 14px;
    }
    .post_title {
        font-size: 20px;
    }
}
.post_body {
    margin-top: 50px;
    line-height: 2;
}
@media (max-width: 768px) {
    .post_body {
        margin-top: 30px;
    }
}
.post_body p{
    margin: 20px 0;
}
.post_back_btn{
    display: flex;
    justify-content: center;
    margin: 70px 0 40px;
}
.post_back_btn a{
    font-size: 18px;
}
@media (max-width: 768px) {
    .post_back_btn{
        display: flex;
        justify-content: center;
        margin: 50px 0 20px;
    }
    .post_back_btn a{
        font-size: 16px;
    }
}


/*下層ページ*/
.page_intro_txt{
    text-align: center;
    margin-bottom: 80px;
}
@media (max-width: 768px) {
    .page_intro_txt{
        text-align: left;
        margin-bottom: 40px;
    }
}


table.form_table{
    width: 100%;
    margin: 30px 0;
}
table.form_table th{
    width: 30%;
    text-align: left;
    padding: 18px 0 12px;
    vertical-align: top;
}
table.form_table td{
    width: 70%;
    padding: 12px 0;
}
@media (max-width: 768px) {
    table.form_table{
        margin: 20px 0 10px 0;
    }
    table.form_table th{
        display: block;
        width: 100%;
        padding: 18px 0 5px 0;
    }
    table.form_table td{
        display: block;
        width: 100%;
        padding: 0 0 12px 0;
    }
}
table.form_table td input,
table.form_table td select,
table.form_table td textarea{
    width: 100%;
    background: #ECECEC;
    border: transparent;
    font-size: 16px;
    padding: 10px;
}
table.form_table td input[type=radio]{
    width: auto;
}

.p-privacy {
    background: #f8f8f8;
    padding: 20px;
    margin-top: 40px;
    margin-bottom: 30px;
    max-height: 300px;
    overflow-y: scroll;
}
@media (max-width: 768px) {
    .p-privacy {
        max-height: 250px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
}
.p-privacy h4{
    margin-bottom: 10px;
}
.p-privacy ul{
    padding: 0;
}
.p-privacy ul li {
    font-size: 14px;
    line-height: 2;
    padding-left: 2rem;
    text-indent: -1.5rem;
    list-style: none;
}
.p-privacy ul li ul{
    padding: 0 0 0 10px;
}
.p-privacy ul li ul li {
    font-size: 14px;
    line-height: 2;
    padding-left: 10px;
    list-style-type: none;
    position: relative;
    text-indent: 0;
}
.p-privacy ul li ul li:before {
    position: absolute;
    left: 0;
    top: 13px;
    content: "";
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #000000;
}
.policy_check{
    display: flex;
    justify-content: center;
}
.submit {
    background-color: var(--color-red);
    border: transparent;
    color: #ffffff;
    width: 100%;
    margin: 30px 0 0 0;
    min-width: 400px;
    max-width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    transform: translateX(24px);
}
@media (max-width: 768px) {
    .submit {
        min-width: 100%;
    }
}
.wpcf7-list-item:first-child {
    display: inline-block;
    margin: 0 0 0 0 !important;
}
.pagenation{
    width: 100%;
    display: flex;
    justify-content: center;
}
.pagenation .wp-pagenavi span.current {
    border-color: var(--color-red) !important;
    background: var(--color-red) !important;
}
.pagenation .wp-pagenavi a:hover {
    border-color: var(--color-red) !important;
    background: var(--color-red) !important;
}
