@charset "utf-8";

html{
    font-size: 100%;
    scroll-padding-top: 120px;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body{
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
}

a{
    text-decoration: none;
    color: #333;
}

p{
    font-size: 1.3rem;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
    font-size: 1.2rem;
}

address{
    font-style: normal;
}

/* hover */
.header-nav-item:hover,.sec-button>a:hover,.pickup-category-1:hover,.pickup-category-2:hover,.pickup-venue:hover,.pickup-title:hover,.pickup-flyer>a:hover,.pickup-form-button:hover,.news-cat:hover,.news-item-title:hover,.sidebar-tel>a:hover,.sidebar-mail>a:hover,.sidebar-sns-item:hover,.supporter-wrapper>a:hover,.link-item>a:hover{
    opacity: 0.5;
}

/* header */
.header{
    position: relative;
    width: 100%;
    height: 360px;
    background-color: #a0d8ef;
}

.header-msg{
    text-align: end;
    padding: 10px 50px 0 0;
    font-weight: 600;
}

.header-nav{
    position: absolute;
    top: 50px;
    left: 20px;
}

.header-nav-list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 80px;
}

.header-nav-item-home{
    position: absolute;
    top: 0px;
    left: 0px;
}

.header-nav-item-home-text{
    margin: 0 auto;
    color: #ff3a1b;
    font-weight: 600;
    font-size: 1.0rem;
}

.header-nav-item-home-img{
    display: block;
    margin: 0 auto;
    width: 40px;
}

.header-nav-item:not(:first-child){
    position: relative;
    background-color: #eec362;
    min-width: 100px;
    padding: 0 5px;
    border: 2px solid #333;
    font-size: 1.0rem;
    font-weight: 600;
    text-align: center;
}

.header-nav-item:not(:first-child)>a{
    display: block;
    width: 100%;
    height: 100%;
}

.header-nav-item-watch,.header-nav-item-event,.header-nav-item-blog,.header-nav-item-contact{
    line-height: 50px;
}

.header-logo-text{
    position: absolute;
    bottom: 50px;
    right: 200px;
    color: #fff;
    font-family: "Aoboshi One", serif;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #333;
    font-size: 3.5rem;
}

.header-logo-text>span{
    display: block;
}

.header-logo-text-2{
    margin-left: 20px;
}

.page-top{
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transition: transform 0.3s ease-in-out; /* スライドイン・アウトのアニメーション */
    transform: translateY(400%); /* 画面上部から隠す */
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #000;
    border-right: 3px solid #000;
    transform: translateY(20%) rotate(-45deg);
}

.page-top.visible{
    transform: translateY(0); /* 画面内に表示 */
}

@media screen and (max-width: 820px) {
    .header-msg{
        text-align: center;
        padding: 10px 0;
    }

    .header-nav-item:not(:first-child){
        width: 110px;
    }

    .header-logo-text{
        bottom: 30px;
        right: 50px;
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .header-msg>p{
        font-size: 1.0rem;
    }

    .header-logo-text{
        bottom: 10px;
        right: 20px;
        font-size: 2.0rem;
    }
}

/* main */
.main{
    display: flex;
    background-color: #f8f4e6;
}

@media screen and (max-width: 1000px) {
    .main{
        display: block;
    }
}

/* base */
.section{
    width: 100%;
}

.wrapper{
    position: relative;
    margin: 20px 5px 40px;
    padding: 20px 4%;
}

.wrapper.page-title{
    margin: 0;
}

.wrapper.page-content{
    margin-top: 0;
    padding-top: 20px;
    min-height: 500px;
}

.board-white-bg{
    background-color: #fff;
    border: 2px solid #333;
}

.sec-title>h2{
    font-size: 1.5rem;
}

.sec-item-title-img{
    position: relative;
    top: 7.5px;
    width: 30px;
}

.sec-title-center{
    text-align: center;
}

.sec-button{
    margin: 10px;
}

.sec-button>a{
    border: 2px solid #333;
    border-radius: 10px;
    padding: 2px 5px;
}

.wrapper.pankuzu{
    margin: 0 0 0 10px;
    padding: 20px;
    text-align: left;
}

.pankuzu a:hover{
    opacity: 0.5;
}

@media screen and (max-width: 480px) {
    .wrapper.pankuzu{
        padding: 10px;
        font-size: 0.8rem;
    }
}

/* grid */
.grid{
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
}

.grid-2 > .grid-item{
    width: 48%;
    margin-bottom: 20px;
}

@media screen and (max-width: 480px) {
    .grid-2 > .grid-item{
        width: 100%;
    }
}


/* main-content */
.main-content{
    width: 65%;
    padding: 10px 4%;
}

@media screen and (max-width: 1000px) {
    .main-content{
        width: 100%;
    }
}

/* pickup */

.swiper {
    min-height: 400px;
}

.pickup-title-text{
    position: absolute;
    top: -20px;
}

.pickup-title-text>h2{
    position: relative;
    z-index: 5;
}

.pickup-title-text::before{
    content: "";
    position: absolute;
    background-color: #f8f4e6;
    top: 0px;
    left: -12px;
    width: 120px;
    height: 20px;
    z-index: 3;
}

.pickup-category{
    margin-left: 90px;
}

.pickup-category-2{
    margin-left: 20px;
}

.pickup-title{
    width: fit-content;
    margin-left: 70px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.pickup-title-name{
    font-size: 1.5rem;
    font-weight: 600;
}

.pickup-performer{
    margin-left: 10px;
}

.pickup-info{
    margin: 10px 0 10px 70px;
}

.pickup-time{
    font-size: 1.0rem;
}

.pickup-venue-name{
    font-size: 1.0rem;
}

.pickup-address-text{
    font-size: 0.8rem;
    margin-left: 50px;
}

.pickup-flyer-form{
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 5%;
}

.pickup-flyer-form-content{
    width: 40%;
    text-align: center;
}

.pickup-flyer>a{
    display: block;
    margin: 10px auto;
    width: 150px;
    height: 200px;
}

.pickup-form-button{
    display: block;
    margin: 10px auto;
    width: 200px;
}

.pickup-form-button>span{
    display: block;
    background-color: #a0d8ef;
    border-radius: 20px;
    padding: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.pickup-form-button>span::after{
    display: block;
    content: "Google フォームが開きます";
    font-size: 0.8rem;
}

@media screen and (max-width: 800px) {
    .pickup-category{
        margin-left: 40px;
    }
    .pickup-title{
        margin-left: 20px;
    }
    .pickup-info{
        margin: 10px 0 10px 20px;
    }
}

@media screen and (max-width: 610px) {
    .pickup-flyer-form{
        display: block;
    }
    .pickup-flyer-form-content{
        margin-top: 20px;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .swiper {
        min-height: 500px;
    }
    .pickup-category{
        margin-left: 10px;
    }
    .pickup-title{
        display: block;
        margin-left: 0;
    }
    .pickup-title-name{
        font-size: 1.2rem;
    }
    .pickup-info{
        width: 100%;
        margin: 10px 0;
    }
    .pickup-time{
        font-size: 0.8rem;
    }
    .pickup-venue-name{
        font-size: 0.8rem;
    }
    .pickup-address-text{
        margin-left: 10px;
    }
}

/* news */
.news-title>h2{
    display: inline-block;
}

.news-list{
    margin-top: 20px;
}

.news-item{
    display: flex;
    border-top: 2px solid #333;
    padding: 5px;
}

.news-item:last-child{
    border-bottom: 2px solid #333;
}

.news-info{
    min-width: 175px;
    margin-right: 20px;
}

.news-info-content{
    padding: 5px 0;
}

.news-cat{
    margin: 5px 2px;
    padding: 0 2px;
    border: 2px solid #333;
    cursor: pointer;
    background-color: #fff;
}

.news-status{
    margin-left: 5px;
}

.news-item-title{
    display: flex;
    align-items: center;
    height: 66px;
}

@media screen and (max-width: 1073px) {
    .news-cat-2{
        display: none;
    }
}
@media screen and (max-width: 1000px) {
    .news-cat-2{
        display: inline;
    }
}

@media screen and (max-width: 800px) {
    .news-info{
        display: block;
        margin: 10px 0;
    }

    .news-cat-status{
        display: inline;
    }
    .news-item{
        display: block;
    }
    .news-info-content:first-child{
        margin-right: 10px;
    }
    .news-anchor{
        display: block;
        width: fit-content;
    }
    .news-item-title{
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .news-info>time,.news-info-content{
        font-size: 0.9rem;
    }
    
    .news-anchor{
        font-size: 1.0rem;
    }
}


/* about */
.about-item{
    margin: 5px;
}

.about-item-title-text{
    margin-left: 5px;
    padding: 1px 5px;
    border: 3px solid #eec362;
    font-weight: 600;
}

.about-item-content{
    padding: 10px 0 20px 10px;
    min-height: 100px;
}


.about-item-content-title::before{
    content: "＊";
}

.about-item-content-list{
    display: flex;
    flex-wrap: wrap;
    padding-left: 10px;
}

.about-item-content-item{
    position: relative;
    padding-left: 25px;
}

.about-item-content-item::before{
    position: absolute;
    top: 10px;
    left: 10px;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #eec362;
    border-radius: 50%;
}

@media screen and (max-width: 480px) {
    .about-title>h2{
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    .about-item-title-text{
        font-size: 0.9rem;
    }
    .about-item-content>p,.about-item-content-item,.about-item-content-title{
        font-size: 0.8rem;
    }
    .about-item-content-item::before{
        position: absolute;
        top: 6px;
        left: 12px;
    }
}


/* sidebar */
.sidebar{
    width: 35%;
    padding: 10px 5px;
}

/* sidebar-schedule */
.sidebar-schedule-content{
    margin-top: 20px;
    text-align: center;
}

/* sidebar-office */
.sidebar-address{
    width: fit-content;
}

.sidebar-map-address-number,.sidebar-map-address-text{
    display: block;
}

.sidebar-mail>p{
    display: inline;
}

.sidebar-address,.sidebar-tel,.sidebar-fax,.sidebar-mail,.sidebar-office-time{
    font-size: 1.0rem;
}

.sidebar-office-map{
    margin: 10px 0 0;
    min-width: 200px;
    min-height: 100px;
}

/* sidebar-sns */
.sidebar-sns-list{
    display: flex;
    justify-content: center;
    gap: 5%;
}

.sidebar-sns-item{
    display: flex;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: #fff;
    border: 2px solid #333;
    align-items: center;
}

.sidebar-sns-item>a{
    text-align: center;
}

.sidebar-sns-icon>img{
    width: 75px;
}


@media screen and (max-width: 1000px) {
    .sidebar{
        display: none;
    }
}

/* footer */
.footer{
    background-color: #f8f4e6;
    padding: 10px 4%;
}

.footer-schedule-office{
    display: flex;
    justify-content: space-between;
}

/* footer-schedule */
.footer-schedule{
    width: 100%;
}

.footer-schedule-content{
    margin-top: 20px;
    text-align: center;
}

.footer-schedule-content>iframe{
    width: 300px; 
    height: 300px; 
}

@media screen and (max-width: 480px) {
    .footer-schedule-content>iframe{
        width: 280px; 
        height: 280px; 
    }
}

/* footer-office */
.footer-office{
    width: 50%;
}

.footer-address{
    width: fit-content;
}

.footer-map-address-number,.footer-map-address-text{
    display: block;
}

.footer-mail>p{
    display: inline;
}

.footer-address,.footer-tel,.footer-fax,.footer-mail,.footer-office-time{
    font-size: 1.0rem;
}

.footer-office-map>iframe{
    margin: 10px 0 0;
    width: 275px;
    min-height: 100px;
}

/* footer sns */
.footer-sns-list{
    display: flex;
    justify-content: center;
    gap: 5%;
}

.footer-sns-item{
    display: flex;
    justify-content: center;
    width: 150px;
    height: 150px;
    background-color: #fff;
    border: 2px solid #333;
    align-items: center;
}

.footer-sns-item>a{
    text-align: center;
}

.footer-sns-icon>img{
    width: 75px;
}

@media screen and (min-width: 1000px) {
    .footer-main{
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .footer-schedule-office{
        display: block;
    }
}

.footer-nav{
    display: flex;
    margin: 20px 0 10px;
}

.footer-nav-item:not(:first-child){
    margin-left: 20px;
}

.copyright{
    margin: 20px 0 5px;
    text-align: center;
}

.copyright>p{
    font-size: 1.0rem;
}

@media screen and (max-width: 600px) {
    .footer-nav{
        display: block;
        margin: 20px 0 10px;
    }
    .footer-nav-item:not(:first-child){
        margin-left: 0px;
    }  
}

@media screen and (max-width: 480px) {
    .copyright>p{
        font-size: 0.8rem;
    }    
}


/* contact */
.contact-contents{
    min-height: 200px;
}

.contact-msg{
    margin: 10px 0 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
}

.wpcf7>.wpcf7-form>table{
    margin: 20px auto 0;
    text-align: left;
}

.contact-body>tr{
    height: 40px;
}

.label,.input,.textarea{
    font-weight: 400;
}

.form-required{
    margin-left: 10px;
    padding: 2px 5px;
    border-radius: 5px;
    background-color: #d3381c;
    color: #fff;
    font-weight: 400
}

.contact-input-2 p{
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

.wpcf7-form-control.wpcf7-text,.wpcf7-form-control.wpcf7-textarea{
    padding: 0 2px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
}

.contact-input.contact-input-2>p>span>input{
    max-width: 250px !important;
}

.input{
    height: 35px;
}

.wpcf7-form>p{
    text-align: center;
}

.wpcf7-form>p>input{
    color: #333;
}

@media screen and (max-width: 480px) {
    .contact-msg{
        font-size: 1.0rem;
        margin: 10px 0 20px;
    }
}/* contact */
.contact-contents{
    min-height: 200px;
}

.contact-msg{
    margin: 10px 0 40px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 400;
}

.wpcf7>.wpcf7-form>table{
    margin: 20px auto 0;
    text-align: left;
}

.contact-body>tr{
    height: 40px;
}

.label,.input,.textarea{
    font-weight: 400;
}

.form-required{
    margin-left: 10px;
    padding: 2px 5px;
    border-radius: 5px;
    background-color: #d3381c;
    color: #fff;
    font-weight: 400
}

.contact-input-2 p{
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

.wpcf7-form-control.wpcf7-text,.wpcf7-form-control.wpcf7-textarea{
    padding: 0 2px;
    width: 100%;
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 5px;
}

.contact-input.contact-input-2>p>span>input{
    max-width: 250px !important;
}

.input{
    height: 35px;
}

.wpcf7-form>p{
    text-align: center;
}

.wpcf7-form>p>input{
    color: #333;
}

@media screen and (max-width: 480px) {
    .contact-msg{
        font-size: 1.0rem;
        margin: 10px 0 20px;
    }
}

/* 404 */
.nf-contents h3{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.nf-contents p{
    text-align: center;
    font-size: 1.2rem;
}

.nf-contents p a{
    font-weight: 600;
    font-size: 1.2rem;
}

/* single */
.article{
    width: 100%;
    margin: 0 auto;
}

.article-info{
    display: flex;
    justify-content: space-between;
}

.article-title{
    margin: 0 auto;
    padding: 10px 0 20px;
    text-align: start;
    font-size: 1.5rem;
    font-weight: 600;
}

.article-content>p{
    font-size: 1.1rem;
}

.wp-block-image{
    margin-top: 10px;
    text-align: left;
}

@media screen and (max-width: 480px) {
    .article-date,.article-category{
        font-size: 0.8rem;
    }
}

/* home */
.nav-links{
    padding: 20px 0 0 20px;
}

.page-numbers{
    padding: 2px 5px;
    border: 2px solid #333;
}

.page-numbers.dots{
    color: #333;
    border: none;
}

/* supporter */
.supporter-wrapper{
    width: 100%;
}
.supporter-box{
    display: flex;
    gap: 1%;
}

/* faq */
.faq-msg{
    margin-bottom: 30px;
}

.faq-content-box{
    position: relative;
    margin: 10px 0;
}

.faq-content-box-q,.faq-content-box-a,.faq-content-box-a>ul>li{
    font-size: 1.0rem;
}

@media screen and (max-width: 800px) {
    .faq-content-box-q,.faq-content-box-a,.faq-content-box-a>ul>li{
        font-size: 0.8rem;
    }
}

.faq-content-box-a>ul>li::before{
    content: "・";
}

.faq-content-box-q::before{
    position: absolute;
    content: "Q";
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.faq-content-box-q{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 10px 40px;
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #333;
    color: #d3381c;
    transition: border-bottom 0.5s ease-out;
}

.faq-open-button{
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.faq-open{
    width: 100%;
    height: 100%;
}

.faq-open i {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.faq-open i::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    width: 70%;
    height: 2px;
    background-color: #333;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.faq-open i::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 50%;
    width: 2px;
    height: 70%;
    background-color: #333;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}

.faq-content-box-a::before{
    position: absolute;
    content: "A";
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.faq-content-box-a{
    position: relative;
    max-height: 0;
    background-color: #fff;
    border-left: 2px solid rgba(255, 255, 255, 0);
    border-right: 2px solid rgba(255, 255, 255, 0);
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-radius: 0 0 10px 10px;
    padding: 0 15px 0 40px;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.faq-content-box.is-active .faq-content-box-q{
    border-bottom: 2px solid rgba(255, 255, 255, 0);
    border-radius: 10px 10px 0 0;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out, border-bottom 0.5s ease-out;
}

.faq-content-box.is-active .faq-content-box-a {
    max-height: 500px; /* 十分な高さを確保 */
    padding: 15px 15px 15px 40px;
    border-left: 2px solid #333;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in , border-left 0.5s ease-in-out, border-right 0.5s ease-in-out, border-bottom 0.5s ease-in-out;
}

.faq-content-box.is-active .faq-open i::before{
    transform: translateY(-50%) rotate(45deg);
}
.faq-content-box.is-active .faq-open i::after {
    transform: translateX(-50%) rotate(45deg);
}

/* privacy-policy */
.privPoli-header{
    margin: 0 0 20px;
    padding: 10px;
    border: 1px solid #24292e;
}

.privPoli-content-item{
    margin: 10px 0 30px;
    text-align: left;
}

.privPoli-item-title{
    margin: 10px 0;
    font-size: 1.3rem;
}

.privPoli-item-content{
    font-size: 0.8rem;
}

.privPoli-item-content ul li{
    font-size: 0.8rem;
}

.privPoli-item-content-go{
    margin-left: 10px;
}

.privPoli-item-content-go-go{
    margin-left: 10px;
}

@media screen and (max-width: 480px) {
    .privPoli-item-title{
        font-size: 1.0rem;
    }
}

/* sitemap */
.sitemap-box{
    margin: 10px 0.5%;
    padding: 10px;
    /* border: 2px solid #24292e; */
    text-align: left;
}

.sitemap-title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 8px gray;
    border-left: 3px solid #a0d8ef;
    margin-bottom: 5px;
    padding: 6px 0 6px 5px;
    font-size: 1.2rem;
    font-weight: 600;
}

.sitemap-title>a{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.sitemap-arrow{
    font-size: 1.0rem;
    margin-right: 5px;
    padding: 1px 5px;
    background-color: #333;
    border-radius: 50%;
    color: #fff;
}

.sitemap-content-item{
    padding: 3px 2px 0;
    font-size: 1.0rem;
    font-weight: 400;
}

.sitemap-content-item>a{
    width: fit-content;
}

.sitemap-title-hover:hover,.sitemap-content-item>a:hover{
    opacity: 0.5;
}

.sitemap-content-item::before{
    content: "> ";
    color: #a0d8ef;
    font-weight: 600;
}