/*   
Theme Name: party
*/
@charset "UTF-8";

/* Repeatable Patterns
----------------------------------------------------*/

*{
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "azo-sans-web", 'Zen Kaku Gothic New', sans-serif;
    position: relative;
    z-index: 0;
    color: #48423D;
    background: #FAF9F0;
    font-weight: 500;
    letter-spacing: 0.05rem;
    line-height: 1;
}

/* print setting */
@media print {
    html {
        font-size: 38%;
    }

    body {
        -webkit-print-color-adjust: exact;
    }
}

html.is-scroll-prevent {
    height: 100%;
    overflow: hidden;
}

.all_container{
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.5s ease-out;
}

a:hover{
    color: #232418;
}

a img, a svg {
    transition: 0.5s ease-out;
}

::-moz-selection {
    background: #48423D;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #48423D;
    color: #fff;
    text-shadow: none;
}

h1, h2, h3, h4, h5, h6{
    margin: 0;
    font-weight: 700;
}

p{
    margin: 0;
}

ul{
    margin: 0;
}

img {
    width: 100%;
    height: auto;
    max-width: none !important;
}

svg{
    fill: currentcolor;
}

figure{
    margin: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

input,
textarea,
button {
    font-family: "azo-sans-web", 'Zen Kaku Gothic New', sans-serif;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: none;
    border-radius: 0;
    transition: 0.3s ease-out;
    cursor: pointer;
    color: #48423D;
    border: none;
}

.wrapper {
    width: 100%;
    max-width: 728px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.display_none{
    display: none;
}


/*text*/
.heading_en{
    text-transform: uppercase;
    text-align: center;
    font-size: 2rem;
    letter-spacing: .4rem;
    margin-bottom: 4.4rem;
}

.text_01{
    font-size: 1.6rem;
    line-height: 1.85;
    text-align: justify;
}

.text_01 + .text_01,
.text_01 + .text_02{
    margin-top: 2rem;
}

.text_02{
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: justify;
}

.text_02 + .text_02{
    margin-top: 1.2rem;
}



/*link*/

.link_box{
    width: 22rem;
    height: 5.2rem;
    color: #48423D;
    border-radius: 100vmax;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: .1rem;
    border: 1px solid;
    border-radius: 100vmax;
    position: relative;
    margin: auto;
}

.link_box:hover{
    color: #fff;
    background: #48423D;
    border-color: #48423D;
}

.link_arrow{
    justify-content: flex-end;
    align-items: center;
    margin-top: 2rem;
}

.link_arrow svg{
    width: 3rem;
    margin-right: .8rem;
}

.link_arrow svg #circle{
    fill: #7b8f6e;
}

.link_arrow:hover svg #circle{
    fill: #D5BC40;
}

.link_arrow svg #border{
    fill: #48423d;
}

.link_arrow span{
    font-size: 1.5rem;
}

/*fadein*/
.fadein {
    opacity: 0;
    transition: 1.2s ease-out;
    transform : translate(0, 1.5rem);
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

@media print {
    .fadein {
        opacity: 1;
    }
}

/* Header
----------------------------------------------------*/

.main_header{
    padding-top: 2rem;
    padding-bottom: 4.4rem;
    position: relative;
    z-index: 1;
}

.header_logo{
    width: 25rem;
    margin-left: -1rem;
}


/*ドロワーメニュー*/

.drawer-hamburger {
    position: fixed;
    top: 0;
    right: 2.4rem;
    width: 3.2rem;
    height: 3.6rem;
    margin-top: 2rem;
    z-index: 999;
    padding: 0;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    transition: all .3s cubic-bezier(.19, 1, .22, 1);
}

.drawer-hamburger-icon {
    position: relative;
    display: block;
    width: 100% !important;
    height: 1px;
    margin-top: 0 !important;
    background-color: transparent;
}

.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
    position: absolute;
    content: " ";
    height: 2px;
    width: 100% !important;
    background-color: #48423D;
    left: 0;
    right: 0;
    margin: auto;
}

.drawer-hamburger-text{
    font-size: 1.1rem;
    letter-spacing: 0.1rem;
    padding-top: 1.2rem;
    display: inline-block;
}

.drawer-hamburger-icon:before {
    top: -.4rem;
}

.drawer-hamburger-icon:after {
    top: .4rem;
}

.is-opened .drawer-hamburger-icon:before {
    transform: rotate(45deg);
    top: 1rem;
    background: #fff;
}

.is-opened .drawer-hamburger-icon:after {
    transform: rotate(-45deg);
    top: 1rem;
    background: #fff;
}

.is-opened .drawer-hamburger-text{
    color: transparent;
}

.drawer-nav {
    color: #fff;
    background-color: #7B8F6E;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    overflow-y: scroll;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    max-height: 100%;
    transition: right .3s ease-in-out;
    -webkit-overflow-scrolling: touch;
}

.drawer-nav::after{
    content: "";
    background-image: url(img/ill_bg.svg);
    background-size: cover;
    background-position: center;
    opacity: .1;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}

.is-opened .drawer-nav {
    right: 0;
    transition: right .3s ease-in-out;
}

.drawer_inner {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 5rem;
    padding-bottom: 5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.drawer_nav a{
    color: #fff;
}

.drawer_item + .drawer_item{
    margin-top: 4rem;
}

.drawer_item{
    text-transform: uppercase;
    text-align: center;
    font-size: 2.6rem;
    letter-spacing: .5rem;
}

/* Footer
----------------------------------------------------*/

footer{
    padding-bottom: 4rem;
}

.copyright{
    padding-top: 8rem;
    font-size: 1.3rem;
    text-align: right;
}


/* トップページ
----------------------------------------------------*/

/*イントロダクション*/
.top_intro_container{
    padding-top: 6rem;
    padding-bottom: 8rem;
}

.main_illust{
    width: 68%;
    margin: 0 auto 3rem;
}

.top_logo_text{
    color: #7B8F6E;
    text-align: center;
    line-height: 1.5;
    padding-bottom: 7rem;
    font-weight: 500;
}

.top_logo_date{
    font-size: 1.6rem;
    letter-spacing: 0.4rem;
}

.top_logo_name{
    font-size: 2.4rem;
    letter-spacing: 0.4rem;
    padding-top: 1.8rem;
    padding-bottom: 1.2rem;
}

.top_logo_title{
    font-size: 1.4rem;
    letter-spacing: 0.3rem;
}

.top_intro_text{
    font-weight: 700;
    letter-spacing: 0.07rem;
}

.top_intro_text .text_01{
    text-align: center;
}

.top_intro_text .text_01 + .text_01{
    margin-top: 2.8rem;
}

.top_intro_us {
    padding-top: 5.4rem;
    text-align: center;
}

.top_intro_us img{
    width: 18rem;
}

.top_intro_us figcaption{
    font-size: 1.5rem;
    font-weight: 700;
    padding-top: 2rem;
}

/*お知らせ*/

.top_info_container{
    background: #fff;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.info_list_item{
    padding-bottom: 1.6rem;
    line-height: 1.6;
}

.info_list_item + .info_list_item{
    border-top: 1px solid rgba(72,66,61,0.1);
    padding-top: 1.6rem;
}

.info_list_item:last-child{
    border-bottom: 1px solid rgba(72,66,61,0.1);
}

.info_list_date{
    color: rgba(72,66,61,0.4);
    font-size: 1.2rem;
    padding-bottom: .6rem;
}

.info_list_title{
    font-size: 1.6rem;
}


/*メイン*/
.top_main_container{
    background: #FFF2B4;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.main_inner + .main_inner{
    margin-top: 10rem;
}

.main_date{
    text-align: center;
}

.main_date_big{
    font-size: 3rem;
    letter-spacing: 0.2rem;
}

.main_time{
    font-size: 2.2rem;
    line-height: 1.4;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.main_end{
    font-size: 1.5rem;
}

.main_coconotsu{
    display: block;
    margin: auto;
    width: 18rem;
}

.main_place_text{
    text-align: center;
    padding-top: 3.2rem;
    padding-bottom: 4rem;
}

.main_map iframe{
    width: 100%;
    height: 22rem;
    filter: sepia(36%);
}

.main_access_big{
    font-size: 1.9rem;
    line-height: 1.85;
    text-align: center;
    padding-bottom: 2.8rem;
}

.main_fee_big{
    font-size: 2.4rem;
    text-align: center;
    padding-bottom: 3.2rem;
}

.main_fee_text{
    text-align: center;
}

/*サブ*/
.top_sub_container{
    padding-top: 10rem;
    padding-bottom: 10rem;
}
.sub_inner + .sub_inner{
    margin-top: 10rem;
}

.sub_dress_big{
    font-size: 2.4rem;
    text-align: center;
}

.sub_dress_text{
    padding-top: 4rem;
}

.sub_anno{
    display: block;
    margin: auto;
    width: 18rem;
}

.sub_dress_text{
    padding-top: 4rem;
}


/*フォーム*/
.top_form_container{
    background: #7B8F6E;
    color: #FCFCF9;
    padding-top: 10rem;
    padding-bottom: 4rem;
}

.top_form_heading{
    font-size: 3.2rem;
}

.top_form_text{
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.85;
    font-weight: 700;
}

.top_form_body{
    padding-top: 6rem;
    padding-bottom: 4rem;
}

.form_list{
    list-style-type: none !important;
    margin-left: 0 !important;
    margin-bottom: 4.8rem;
}

.form_item + .form_item{
    padding-top: 3.2rem;
}

.form_title{
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: 700;
    padding-bottom: 1.2rem;
}

.form_title span{
    color: #48423D;
    font-size: 1.3rem;
    padding-left: 1.6rem;
}

.form_box input,
.form_box textarea{
    font-size: 1.6rem;
    line-height: 1.85;
    width: 100%;
    background: #fff;
    padding: .6rem 1.2rem;
    letter-spacing: 0.07rem;
} 

.form_box + .form_box{
    margin-top: 1.6rem;
}

.wpcf7-list-item {
    margin: 0 2rem 1rem 0 !important;
}

.wpcf7-list-item-label {
    cursor: pointer;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
}

.form_item p{
    font-size: 1.6rem;
}


/* デフォルトのボタン */
.wpcf7-radio label{
    position: relative;
}

.wpcf7-radio input[type="radio"],
.wpcf7-checkbox input[type="checkbox"]{
    opacity: 0; /* デフォルトのボタンを非表示 */
    position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
    background: #fff;
    border-radius: 100%; /* ラジオボタンっぽく丸くする */
    content: "";
    width: 20px;
    height: 20px;
    margin-bottom: auto;
    margin-right: .5em;
    margin-top: auto;
    transition: background-color .5s; /* 色をじんわり変化させる */
}
/* チェック後のボタン */
input[type="radio"]:checked + .wpcf7-list-item-label::before,
input[type="checkbox"]:checked + .wpcf7-list-item-label::before{
    background-color: #48423D; /* チェック後の中心の色 */
    box-shadow: inset 0 0 0 5px #fff; /* 中心の色のスタイル */
}

.form_item_main .form_box > p{
    text-align: center;
}

.form_item_main .wpcf7-list-item-label{
    font-size: 1.8rem;
    font-weight: 700;
}

.page-id-22 .form_item_main p{
    background: #D5BC40;
    font-size: 1.8rem;
}

.wpcf7-submit{
    width: 26rem;
    height: 6.4rem;
    background: #48423D;
    color: #fff;
    border-radius: 100vmax;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .1rem;
    border-radius: 100vmax;
    margin: 0 auto;
}

.wpcf7-submit:hover{
    background: #232418;
}

.wpcf7-previous{
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: -1rem auto 0;
    display: block;
}

.wpcf7-not-valid-tip{
    font-size: 1.5rem !important;
    padding-top: .8rem;
}

.wpcf7-acceptance{
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 0 auto 4.8rem;
    display: block;
}

.wpcf7-response-output{
    margin: 2.4em 0 0 !important;
    padding: 1.2rem 1rem !important;
    color: #48423D;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: center;
}

.recaptcha_text{
    margin-bottom: 3.2rem;
    color: #aaa;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: justify;
}

.recaptcha_text a{
    color: #aaa;
}

.grecaptcha-badge { visibility: hidden; }

.thanks_link_all a{
    text-decoration: none !important;
}



/* 下層ページ
----------------------------------------------------*/

.page_heading{
    font-size: 2.4rem;
    padding-bottom: 4rem;
}

/*INFO一覧*/

.category_heading{
    font-size: 2.2rem;
    padding-bottom: 6rem;
    letter-spacing: .4rem;
}
.no_article_text{
    font-size: 1.8rem;
    text-align: center;
}

/*ページャー（WP-PageNavi）*/

.wp-pagenavi{
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wp-pagenavi a, .wp-pagenavi span{
    font-size: 1.5rem;
    margin: 0 0.5rem;
    width: 3.6rem;
    height: 3.6rem;
    text-align: center;
    line-height: 3.6rem;
    color: #48423D;
    border-radius: 50%;
}

.wp-pagenavi a{
    background: #fff;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current{
    background: #7b8f6e;
    color: #fff;
}

.wp-pagenavi span.extend{
    padding-left: 0;
    padding-right: 0;
}


/*個別記事*/

.post_container{
    padding-bottom: 6rem;
}

.post_header{
    padding-bottom: 4rem;
}

.post_date{
    color: rgba(72,66,61,0.4);
    font-size: 1.3rem;
    padding-bottom: 1.2rem;
}

.post_title{
    font-size: 2.4rem;
    line-height: 1.4;
}

.post_body{
    font-size: 1.5rem;
    line-height: 1.8;
}

.post_body > * + *{
    margin-top: 2.8rem;
}

.post_body h2{
    font-size: 2.2rem;
    line-height: 1.5;
    margin-top: 6rem;
}

.post_body a{
    text-decoration: underline;
    word-break: break-all;
}

.post_body figure.is-type-video .wp-block-embed__wrapper{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.post_body figure.is-type-video iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.post_body ul{
    list-style-type: disc;
    margin-left: 2rem;
}

.post_link_all{
    margin-top: 2.8rem;
}

/*404*/
.error_intro_title{
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    padding-bottom: 4rem;
}


/*----------------------------------------------------

PCのみ

----------------------------------------------------*/

@media print,
    screen and (min-width: 900px) {
        html {
            font-size: 74%;
        }
}