@charset "utf-8";

#page {
    padding-bottom: clamp(0px, 18.2vw, 200px);
}

.page_title {
    color: var(--color-main);
    padding: clamp(0px, 20vw, 220px) 0 clamp(0px, 8.2vw, 90px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page_title span {
    font-size: clamp(0px, 9.1vw, 100px);
    font-family: var(--font-en);
    letter-spacing: -0.05em;
    line-height: 1;
    font-style: oblique;
    padding-right: 0.2em;
}

.page_title small {
    font-size: clamp(0px, 1.8vw, 20px);
    font-weight: var(--font-w-bl);
    line-height: 1;
    margin-top: 1em;
}

@media screen and (max-width: 768px) {
    #page {
        padding-bottom: 20vw;
    }

    .page_title {
        padding: 36vw 0 7vw;
    }

    .page_title span {
        font-size: 10vw;
    }

    .page_title small {
        font-size: 3vw;
        margin-top: 0.8em;
    }
}


/* ===============================================
   Thanks
=============================================== */
.message_block {
    width: clamp(0px, 86vw, 965px);
    margin: 0 auto;
    padding-top: clamp(0px, 4.1vw, 45px);
}

.message_head {
    display: flex;
    justify-content: space-between;
}

.message_head .img_area {
    width: 38%;
}

.message_head .text_area {
    width: 51%;
    padding-top: clamp(0px, 8.2vw, 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.message_head .text_area .text {
    font-size: clamp(0px, 2.8vw, 31px);
    line-height: 1.6em;
    font-weight: var(--font-w-bl);
    white-space: nowrap;
}

.message_head .text_area .name {
    font-size: clamp(0px, 1.8vw, 20px);
    font-weight: var(--font-w-b);
    text-align: right;
    margin-top: clamp(0px, 7.3vw, 80px);
}

.message_head .text_area .name small {
    margin-right: 1em;
}

.thanks_cont {
    margin-top: clamp(0px, 5.5vw, 60px);
}

.thanks_cont p {
    font-size: clamp(0px, 1.55vw, 17px);
    font-weight: var(--font-w-m);
    line-height: 2.3em;
    letter-spacing: 0.03em;
}

.cont_logo {
    padding: clamp(0px, 20vw, 220px) 0;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .message_block {
        width: 100%;
        padding-top: 0;
    }

    .message_head {
        width: 84%;
        margin: 0 auto;
        flex-direction: column-reverse;
        align-items: center;
    }

    .message_head .img_area {
        width: 50vw;
    }

    .message_head .text_area {
        width: 100%;
        padding-top: 5vw;
    }

    .message_head .text_area .text {
        font-size: 5.5vw;
        line-height: 1.5em;
        text-align: center;
    }

    .message_head .text_area .name {
        font-size: 4vw;
        margin-top: 4vw;
    }

    .thanks_cont {
        margin-top:5vw;
    }

    .thanks_cont p {
        width: 84%;
        margin: 0 auto;
        font-size: 3.5vw;
        line-height: 1.7em;
        letter-spacing: 0;
    }

    .cont_logo {
        padding: 8vw 0 19vw;
    }
    
    .cont_logo img {
        width: 21vw;
    }
}


/* ===============================================
   Topics
=============================================== */
#topics {
    padding-bottom: clamp(0px, 15.4vw, 200px);
}

/*#topics_menu {
    width: 100%;
    padding-bottom: clamp(0px, 9.1vw, 100px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0px, 0.8vw, 10px);
}

#topics_menu .menu_list {
    width: clamp(0px, 92.3vw, 1200px);
    display: flex;
    justify-content: center;
    gap: 1px;
}

#topics_menu .menu_list a {
    width: clamp(0px, 18.5vw, 240px);
    height: clamp(0px, 5.4vw, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main);
    font-size: clamp(0px, 2.1vw, 23px);
    font-family: "Alatsi", "Noto Sans JP", sans-serif;
    text-align: center;
    line-height: 1.2em;
    font-style: oblique;
    padding-right: 0.2em;
    color: #fff;
    white-space: nowrap;
}

#topics_menu .menu_list.category1 a:not(:first-of-type) {
    width: calc(clamp(0px, 36.9vw, 480px) + 1px);
    font-size: clamp(0px, 1.5vw, 20px);
    font-weight: 900;
}

#topics_menu .menu_list.category2 a:not(:first-of-type) {
    font-size: clamp(0px, 1.5vw, 20px);
    font-weight: 900;
}

#topics_menu .menu_list a:hover,
#topics_menu .menu_list a.current {
    background-color: var(--color-brown);
}

#topics_menu .menu_list a.current {
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    #topics {
        padding-bottom: 20vw;
    }
    
    #topics_menu {
        padding-bottom: 10vw;
        gap: 3vw;
    }
    
    #topics_menu .menu_list {
        width: 100%;
    }

    #topics_menu .menu_list a {
        width: calc((100% - 4px) / 5);
        height: 14.5vw;
        font-size: 3.5vw;
    }
    
    #topics_menu .menu_list.category1 a:not(:first-of-type) {
        width: calc(40% - 1px);
        font-size: 2.5vw;
    }

    #topics_menu .menu_list.category2 a:not(:first-of-type) {
        font-size: 2.5vw;
    }
}*/
#topics_menu {
    width: 100%;
    padding-bottom: clamp(0px, 3.8vw, 50px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0px, 0.8vw, 10px);
}

#topics_menu .menu_list {
    width: clamp(0px, 92.3vw, 1200px);
    display: flex;
    justify-content: center;
    gap: 1px;
}

#topics_menu .menu_list label {
    width: clamp(0px, 18.5vw, 240px);
    height: clamp(0px, 5.4vw, 70px);
    display: flex;
}

#topics_menu .menu_list input {
    display: none;
}

#topics_menu .menu_list span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main);
    font-size: clamp(0px, 2.1vw, 23px);
    font-family: "Alatsi", "Noto Sans JP", sans-serif;
    text-align: center;
    line-height: 1.2em;
    font-style: oblique;
    padding-right: 0.2em;
    color: #fff;
    white-space: nowrap;
    cursor: pointer;
}

#topics_menu .menu_list.category1 label:not(:first-of-type) {
    width: calc(clamp(0px, 36.9vw, 480px) + 1px);
}

#topics_menu .menu_list.category1 label:not(:first-of-type) span {
    font-size: clamp(0px, 1.5vw, 20px);
    font-weight: 900;
}

#topics_menu .menu_list.category2 label:not(:first-of-type) span {
    font-size: clamp(0px, 1.5vw, 20px);
    font-weight: 900;
}

#topics_menu .menu_list label:hover span {
    background-color: var(--color-brown);
}

#topics_menu .menu_list input:checked + span {
    background-color: var(--color-brown);
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    #topics {
        padding-bottom: 20vw;
    }

    #topics_menu {
        padding-bottom: 10vw;
        gap: 3vw;
    }

    #topics_menu .menu_list {
        width: 100%;
    }

    #topics_menu .menu_list label {
        width: calc((100% - 4px) / 5);
        height: 14.5vw;
    }

    #topics_menu .menu_list span {
        font-size: 3.5vw;
    }

    #topics_menu .menu_list.category1 label:not(:first-of-type) {
        width: calc(40% - 1px);
    }

    #topics_menu .menu_list.category1 label:not(:first-of-type) span,
    #topics_menu .menu_list.category2 label:not(:first-of-type) span {
        font-size: 2.5vw;
    }
}

/* 絞り込みボタン */
.filter_button {
    width: clamp(0px, 18.5vw, 240px);
    height: clamp(0px, 5.4vw, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-main);
    color: #fff;
    font-size: clamp(0px, 2.1vw, 23px);
    font-family: var(--font-main);
    font-weight: var(--font-w-bl);
    font-style: oblique;
    padding-right: 1.7em;
    border: none;
    border-radius: clamp(0px, 0.8vw, 10px);
    cursor: pointer;
    position: relative;
    margin: 0 auto clamp(0px, 9.1vw, 100px);
}

.filter_button::before {
    content: "";
    width: 1.2em;
    height: 1.2em;
    background: url("../img/icon_search.svg") no-repeat center / contain;
    display: inline-block;
    pointer-events: none;
    margin-right: 0.5em;
}

.filter_button:hover {
    background-color: var(--color-brown);
}

.filter_button:active {
    transform: translateY(1px);
}

.filter_button:focus-visible {
    outline: 2px solid var(--color-brown);
    outline-offset: 2px;
}

@media screen and (max-width: 768px) {
    .filter_button {
        width: 30vw;
        height: 10vw;
        font-size: 3vw;
        border-radius: 1vw;
        margin: 0 auto 10vw;
    }
}

/* 記事リスト */
.article_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: clamp(0px, 9.2vw, 120px) 4.25%;
    margin-bottom: clamp(0px, 13.6vw, 150px);
}

.article_list li {
    width: 30.5%;
}

.article_list li .article_img {
    width: 100%;
    height: clamp(0px, 21.2vw, 275px);
    overflow: hidden;
    position: relative;
}

.article_list li a .article_img::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #231815;
    mix-blend-mode: multiply;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s;
}

.article_list li a:hover .article_img::before {
    opacity: 0.7;
}

.article_list li .article_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.article_list li .cat_area {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(0px, 0.8vw, 10px);
    margin-bottom: clamp(0px, 0.6vw, 8px);
}

.article_list li .cat_area .article_icon {
    height: clamp(0px, 2.7vw, 35px);
    font-size: clamp(0px, 1.2vw, 16px);
    font-weight: var(--font-w-bl);
    line-height: 1;
    color: #fff;
    background-color: var(--color-main);
    padding:  0 0.6em;
    display: flex;
    align-items: center;
}

.article_list li .cat_area .category {
    width: auto;
    height: clamp(0px, 3.1vw, 40px);
    font-size: clamp(0px, 1.2vw, 16px);
    font-weight: var(--font-w-bl);
    padding: 0 1.3em;
    background-color: #fff;
    border: 2px solid;
    border-radius: 40px;
    display: flex;
    align-items: center;
}

.article_list li .cat_area .category.cat_museum {
    color: var(--color-main);
    border-color: var(--color-main);
}

.article_list li .cat_area .category.cat_shrine {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.article_list li .article_text {
    font-size: clamp(0px, 1.55vw, 17px);
    font-weight: var(--font-w-b);
    line-height: 1.4em;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .article_list {
        width: 90%;
        margin: 0 auto 20vw;
        gap: 9vw 0;
    }

    .article_list li {
        width: calc(100% / 2);
    }

    .article_list li .article_img {
        height: 37vw;
    }
    
    .article_list li .cat_area {
        width: 39vw;
        gap: 1.6vw;
        margin: 0 auto 1.5vw;
    }

    .article_list li .cat_area .article_icon {
        height: 4.8vw;
        font-size: 2.6vw;
        white-space: nowrap;
        padding: 0 0.5em;
    }
    
    .article_list li .cat_area .category {
        height: 5vw;
        font-size: 2.4vw;
        padding: 0 0.5em;
        white-space: nowrap;
        border: clamp(1px, 0.2vw, 2px) solid;
    }

    .article_list li .article_text {
        font-size: 3.5vw;
        letter-spacing: 0;
        margin: 0  3vw;
    }
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination .page-numbers {
    width: clamp(0px, 5.5vw, 60px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0px, 1.8vw, 20px);
    font-family: var(--font-en);
    line-height: 1;
    font-style: oblique;
    padding-right: 0.1em;
    position: relative;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: var(--color-main);
    color: #fff;
}

.pagination .page-numbers.dots {
    width: clamp(0px, 2.7vw, 30px);
    pointer-events: none;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
    border: 1px solid var(--color-main);
    padding: 0;
}

.pagination .page-numbers.next::before,
.pagination .page-numbers.prev::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    z-index: 2;
    background: url(../img/arrow_red2.svg) no-repeat center center / contain;
    transition: background 0.4s;
}

.pagination .page-numbers.prev::before {
    transform: scaleX(-1);
}

.pagination .page-numbers.next:hover::before,
.pagination .page-numbers.prev:hover::before {
    background-image: url(../img/arrow_white.svg);
    background-color: var(--color-main);
}

@media screen and (max-width: 768px) {
    .pagination .page-numbers {
        width: 12vw;
        font-size: 4vw;
    }
    
    .pagination .page-numbers.dots {
        width: 6vw;
    }
}


/* ===============================================
   single
=============================================== */
#single {
    width: 100%;
    padding: clamp(0px, 18.2vw, 200px) 0;
}

#single .inner {
    width: 965px;
    max-width: 88%;
}

#single .cat_area {
    display: flex;
    align-items: center;
    gap: clamp(0px, 2.3vw, 30px);
    margin-bottom: clamp(0px, 1.8vw, 20px);
}

#single .category_icon {
    height: clamp(0px, 4.2vw, 55px);
    font-size: clamp(0px, 2vw, 26px);
    font-weight: var(--font-w-bl);
    line-height: 1;
    font-style: oblique;
    background-color: var(--color-main);
    color: #fff;
    display: inline-block;
    padding: 0 0.8em;
    display: flex;
    align-items: center;
}

#single .cat_area .category {
    width: auto;
    height: clamp(0px, 4.2vw, 55px);
    font-size: clamp(0px, 2vw, 26px);
    font-weight: var(--font-w-bl);
    padding: 0 1.3em;
    background-color: #fff;
    border: 2px solid;
    border-radius: 55px;
    display: flex;
    align-items: center;
}

#single .cat_area .category.cat_museum {
    color: var(--color-main);
    border-color: var(--color-main);
}

#single .cat_area .category.cat_shrine {
    color: var(--color-blue);
    border-color: var(--color-blue);
}

#single .article_title {
    font-size: clamp(0px, 2.8vw, 31px);
    font-weight: var(--font-w-bl);
    line-height: 1.6em;
    margin-bottom: 0.8em;
}

#single .name_area {
    font-size: clamp(0px, 2vw, 22px);
    font-weight: var(--font-w-b);
    text-align: right;
    line-height: 1;
    margin-bottom: 1.3em;
}

#single .article_sec + .article_sec {
    margin-top: clamp(0px, 8.2vw, 90px);
}

#single .article_sec .img_area {
    width: 100%;
    margin-bottom: clamp(0px, 2.7vw, 30px);
    display: flex;
    justify-content: center;
}

#single .article_sec .title_area {
    font-size: clamp(0px, 2vw, 22px);
    font-weight: var(--font-w-b);
    line-height: 1.6em;
    margin-bottom: 0.8em;
}

#single .article_sec .text_area {
    font-size: clamp(0px, 1.55vw, 17px);
    font-weight: var(--font-w-m);
    line-height: 2.3em;
    letter-spacing: 0.03em;
}

#single .button_single {
    margin: clamp(0px, 12.7vw, 140px) auto 0;
}

.button_single {
    width: clamp(0px, 21.8vw, 240px);
    aspect-ratio: 240 / 70;
    border: 1px solid var(--color-main);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: clamp(0px, 1.6vw, 18px);
    font-family: var(--font-en);
    letter-spacing: -0.05em;
    line-height: 1;
    font-style: oblique;
    color: var(--color-main);
    background-color: #fff;
    padding-right: 0.1em;
}

.button_single:hover {
    color: #fff;
    background-color: var(--color-main);
}

@media screen and (max-width: 768px) {
    #single {
        padding: 36vw 0 20vw;
    }

    #single .inner {
        max-width: 90%;
    }
    
    #single .cat_area {
        margin-bottom: 4vw;
        gap: 4.5vw;
    }

    #single .category_icon {
        height: 8vw;
        font-size: 3.9vw;
        margin-left: 3vw;
        white-space: nowrap;
    }
    
    #single .cat_area .category {
        height: 8vw;
        font-size: 3.9vw;
        white-space: nowrap;
        border: clamp(1px, 0.2vw, 2px) solid;
    }

    #single .article_title {
        font-size: 5vw;
        padding: 0 3vw;
        margin-bottom: 1em;
    }
    
    #single .name_area {
        font-size: 4vw;
        padding: 0 3vw;
    }

    #single .article_sec + .article_sec {
        margin-top: 9vw;
    }

    #single .article_sec .img_area {
        width: 100%;
        margin-bottom: 5vw;
    }

    #single .article_sec .title_area {
        font-size: 4vw;
        line-height: 1.5em;
        padding: 0 3vw;
    }

    #single .article_sec .text_area {
        font-size: 3.5vw;
        line-height: 1.7em;
        letter-spacing: 0;
        padding: 0 3vw;
    }

    #single .button_single {
        margin: 13vw auto 0;
    }

    .button_single {
        width: 50vw;
        aspect-ratio: 500 / 145;
        font-size: 4vw;
    }
}
