@charset "UTF-8";


main {
    overflow: hidden;
    padding-top: 90px;
}

@media(max-width:768px) {
    main {
        padding-top: 0;
    }
}


.top {
    position: relative;
}

.curtain_back {
    background-image: url("../images/top_back2.png");
    background-size: contain;
    z-index: -999;
    height: 80%;
    max-height: 800px;
    width: 100%;
    position: absolute;
    top: 0;
}

.top .curtain_top {
    background-image: url("../images/redcurtain_re.png");
    background-position: top;
    background-size: auto 100%;
    background-repeat: repeat-x;
    width: 100%;
    height: 185px;
    position: absolute;
    top: -45px;
    left: 0;
    z-index: -1;
}

.top .curtain_left {
    height: 80%;
    max-height: 800px;
    position: absolute;
    left: 0;
    z-index: -2;
}

.top .curtain_right {
    height: 80%;
    max-height: 800px;
    position: absolute;
    right: 0;
    z-index: -2;
}

.melodyman_top_wrap {
    max-width: 1280px;
    max-height: 945px;
    margin: 0 auto;
    position: relative;
}

.top .melodyman_top {
    width: 26%;
    margin: 3% 4% 0 auto;
    max-width: 310px;
}

.top_logo,
.catchcopy {
    position: absolute;
}

.top_logo {
    top: 95px;
    left: 0;
    width: 37%;
}

.catchcopy {
    top: -8px;
    right: 22%;
    width: 12%;
}





.youtube_area {
    position: absolute;
    bottom: 8%;
    left: 20px;
    width: 30%;
    max-width: 350px;

}

iframe.youtube {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}

.youtube_area p {
    background-image: url(../images/youtube_line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 13vw;
    max-height: 166px;
    padding-top: 16%;
    font-size: min(1.6vw, 1.8rem);
    font-weight: 700;
    position: relative;
    z-index: 9;
    margin-bottom: -17px;
}

@media(max-width:768px) {


    .curtain_left,
    .curtain_right {
        display: none;
    }

    .top .melodyman_top {
        width: 65%;
    }

    .melodyman_top_wrap {
        max-width: 375px;
        max-height: 100%;
    }

    .top_logo {
        top: 0;
        width: 56%;
        margin-top: 60%;
    }

    .catchcopy {
        right: 0;
        width: 20%;
        top: 30px;
    }


    .youtube_area {
        width: 100%;
        left: 0;
        padding: 0 20px;
        max-width: 100%;
        margin-top: 20px;
    }

    .youtube_area p {
        height: 100%;
        max-height: 100%;
        font-size: 1.4rem;
        padding: 40px 0 55px;
    }


}

/*calendar*/

.calendar-area {
    width: 100%;
    position: relative;
}

.calendar-wrap {
    padding: 30px 0;
    position: relative;
    z-index: -2;
    height: 75vw;
    max-height: 1140px;
}

.calendar-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 227, 186, 1) 56%, rgba(225, 161, 69, 1) 100%, rgba(255, 248, 238, 1));
    transform: skewY(3deg);
    z-index: -3;
    height: 97%;
}

.calendar-wrap::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    background-image: url("../images/piano2.png");
    background-repeat: no-repeat;
    background-position: bottom -10px right;
    background-size: 370px;
    transform: skewY(3deg);
    z-index: -3;
    height: 97%;
}

.calendar-wrap .m::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    background-image: url("../images/melodyman_syamisen.png");
    background-repeat: no-repeat;
    transform: skewY(3deg);
    z-index: -3;
    height: 97%;
    background-position: bottom left -75px;
    background-size: 600px;
    opacity: 0.5;
}

#calendar {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 80px;
    background-color: rgba(253, 253, 253, 0.8);
    position: absolute;
    top: 205px;
    left: 50%;
    transform: translateX(-50%);
}

.calendar-area .ttl {
    width: 30%;
    max-width: 310px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
}

/* モーダルの擬似要素の指定 */
.modal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 999;
}

/* モーダル内側の指定 */
.modal-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 600px;
    width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background: #9F2B2C;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 800;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
    background: #fff;
    text-align: left;
    line-height: 1.8;
    padding: 20px;
}

#modal-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #9F2B2C;
}

.modal-btn-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 330px;
    margin: 0 auto;
    margin-top: 50px;
}

.modal_X_link {
    max-width: 330px;
    margin: 0 auto;
    text-align: center;
    margin-top: 20px;
    font-weight: 500;
}

.modal-btn-wrap div,
.modal_X_link div {
    background-color: #2F6EB4;
    padding: 5px 20px;
    color: #fdfdfd;
    border-radius: 50px;
    font-size: 1.4rem;
    box-shadow: 2px 2px 4px #757B83;
    position: relative;
}

.modal_X_link div {
    display: flex;
    background-color: #9F2B2C;
    align-items: center;
    justify-content: center;
}

.modal_X_link p {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_X_link img {
    width: 14px;
}

.modal-btn-wrap div:hover {
    transition: all 0.1s linear;
    transform: translateX(2px);
    box-shadow: unset;
}

/*カレンダー設定*/

.fc-direction-ltr .fc-daygrid-event.fc-event-end,
.fc-direction-rtl .fc-daygrid-event.fc-event-start {

    border-radius: 5px;
    margin-top: 0px;
    border: solid 1px rgb(230, 211, 62);
    background-color: rgb(159, 43, 44);
    color: #ffffff;
}

.fc-daygrid-event-dot {
    display: none;
}

.fc-direction-ltr .fc-daygrid-event .fc-event-time {
    display: none;
}

.fc-daygrid-dot-event .fc-event-title {
    padding: 3px 5px;
    font-weight: 400;
}

.fc-daygrid-day-events {
    margin: 3px 6px;
}

.fc-daygrid-block-event .fc-event-time,
.fc-daygrid-block-event .fc-event-title {
    padding: 3px 5px;
}

.fc-timeGridWeek-button,
.fc-timeGridDay-button,
.fc .fc-list-event-time {
    display: none !important;
}


.jp_holiday {
    color: #2F6EB4;
}

.event_day .fc-list-event-dot {
    border-color: #9F2B2C !important;
}

.fc-daygrid-event {
    white-space: normal;
}

.fc-day-sun {
    color: #9F2B2C;
}

.fc-day-sat {
    color: #2F6EB4;
}

.fc-day-past {
    background-color: #f0f3f5;
}

.fc-col-header-cell-cushion,
.fc-daygrid-day-number {
    font-weight: 800;
}






@media(max-width:768px) {
    .fc .fc-toolbar.fc-header-toolbar {
        flex-direction: column;
    }

    .calendar-area .ttl {
        width: 80%;
    }

    #calendar {
        top: 200px;
        height: 100vw;
        margin: 0 auto;
        width: 95%;
    }

    .calendar-wrap {
        height: 115vw;
    }

    .calendar-wrap::after {
        display: none;
    }

    .calendar-wrap .m::after {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        background-image: url("../images/melodyman_syamisen.png");
        background-repeat: no-repeat;
        transform: skewY(3deg);
        z-index: -3;
        height: 97%;
        background-position: bottom left -75px;
        background-size: 80%;
        opacity: 0.5;
    }

    .fc .fc-toolbar-title {
        font-size: 1.8rem;
    }

    .fc .fc-button {
        padding: 1px 10px;
    }

    .modal-btn-wrap {
        flex-direction: column;
    }

    .modal-btn-wrap a,
    .modal_X_link a {
        width: 80%;
        text-align: center;
    }

    .modal-btn-wrap a:first-child {
        margin-bottom: 20px;
    }

    .modal_X_link {
        max-width: 264px;
    }

    .fc-daygrid-day-events {
        margin: 3px 1px;
        font-size: 1.2rem;
    }

    .fc-daygrid-block-event .fc-event-time,
    .fc-daygrid-block-event .fc-event-title {
        padding: 3px 1px;
    }


}


/*news*/

.news {
    position: relative;
}

.news .trumpet {
    position: absolute;
    z-index: -1;
    left: -300px;
    top: 55px;
    transform: rotateZ(-15deg);
    width: 65%;
    max-width: 750px;
}

.news .drum {
    position: absolute;
    z-index: -9;
    right: -235px;
    bottom: -65px;
    width: 50%;
}

.news .back1 {
    position: absolute;
    z-index: -1;
    left: 0;
    top: -80px;
    width: 100%;
    max-width: 1480px;
}


.news_wrap {
    width: 90%;
    max-width: 1280px;
    margin: 80px auto 0;
    position: relative;
    padding-bottom: 100px;
}

.news_area {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.news h2 {
    width: 30%;
    max-width: 310px;
    margin: 0 auto;
}

.news .blog {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 60%;
    margin-right: 5%;
}

.news .article {
    width: 48.5%;
    aspect-ratio: 1 / 2;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 3px 3px 5px #A3A3A3;
    overflow: hidden;
    max-height: 395px;
}

.news .article:nth-child(3),
.news .article:nth-child(4) {
    margin-top: 20px;
}

.news .article_image {
    width: 100%;
    height: 50%;
}

.news .article_image img {
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.news .article_title {
    height: 35%;
    font-size: 1.8rem;
    padding: 20px 0 0 20px
}

.news .article_title p {
    text-align: left;
    font-weight: 800;
    color: #9F2B2C;
}

.news .border {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #A3A3A3;
}

.news .day_time {
    width: 50%;
    min-width: 165px;
    font-size: 1.4rem;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px 0 20px;
    color: #a3a3a3;
}

.news .X {
    background-color: #9F2B2C;
    width: 40%;
    padding: 0 20px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 30px;
    max-height: 810px;
}

.news .X_title_wrap {
    position: relative;
    height: 13%;
    display: flex;
    align-items: center;
}

.news .X p {
    font-weight: 700;
    font-size: 2.4rem;
    width: 100%;
    color: #E6D33E;
}





.news .X img {
    width: 2.4rem;
    margin-left: 5px;
}

.event-all-btn {
    margin: 30px auto 0;
    background-color: #2F6EB4;
    padding: 5px 20px;
    color: #fdfdfd;
    border-radius: 50px;
    font-size: 1.6rem;
    box-shadow: 2px 2px 4px #757B83;
    position: relative;
    width: fit-content;
}

.event-all-btn:hover {
    transition: all 0.1s linear;
    transform: translateX(2px);
    box-shadow: unset;
}

@media(max-width:768px) {

    .news {
        margin-bottom: 145px;
    }

    .news_area {
        flex-direction: column;
    }

    .news h2 {
        width: 80%;
    }

    .news_wrap {
        width: 100%;
        padding: 0 20px;
        max-width: 375px;
        margin-top: 20px;
    }

    .news .blog {
        width: 100%;
        margin-right: 0;
    }

    .news .article {
        aspect-ratio: 1 / 2.5;
        max-height: 290px;
    }

    .news .day_time {
        width: 90%;
        min-width: auto;
        flex-direction: column;
    }

    .news .X {
        width: 100%;
        margin-top: 30px;
    }

    .news .X p {
        padding: 35px 0;
    }

    .twitter-timeline iframe {
        height: calc(100vw) !important;
        max-height: 600px;
    }

    .news .back1 {
        top: 0;
    }

    .news .trumpet {
        width: 95%;
    }

    .news .drum {
        bottom: auto;
        width: 90%;
        right: -170px;
        top: 40%;
    }

    .news .article_title {
        height: fit-content;
        font-size: 1.6rem;
        padding: 10px 0 10px 10px;
        min-height: 68px;
    }

}

/*about melodyman*/

.about_melodyman {
    width: 100%;
    position: relative;
}

.about_melodyman .about_melodyman_wrap {
    display: flex;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto 70px;
}

.about_melodyman::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-image: linear-gradient(90deg, rgba(255, 227, 186, 1) 56%, rgba(225, 161, 69, 1) 100%, rgba(255, 248, 238, 1));
    transform: skewY(-3deg);
    z-index: -3;
    height: 86%;
}

.about_melodyman::after {
    content: '';
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-image: url("../images/piano2.png");
    background-repeat: no-repeat;
    background-size: 450px;
    background-position: right bottom -10px;
    transform: skewY(-3deg);
    z-index: -2;
    height: 86%;
}

.about_melodyman .about_right {
    margin-top: 20px;
}

.about_melodyman .about_melodyman_img {
    width: 45%;
    max-width: 385px;
}

.about_melodyman .about_melodyman_ttl {
    width: 75%;
    max-width: 550px;
    padding-bottom: 10px;
}

.about_melodyman .about_melodyman_des {
    text-align: left;
    margin: 0 auto;
    width: 85%;
    font-weight: 500;
}

.about_melodyman .about_melodyman_btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3vh;
}

.about_melodyman .next_btn {
    position: relative;
    transition: all .5s;
    box-shadow: 3px 3px 2px 1px rgba(36, 36, 36, 0.2);
}

.about_melodyman .next_btn:hover {
    transform: scale(1.1);
}

.about_melodyman .next_btn::before {
    content: "";
    background-image: url("../images/melodyman_face.png");
    background-size: contain;
    width: 55px;
    height: 55px;
    position: absolute;
    bottom: 0;
    left: 7px;
}

@media(max-width:768px) {

    .about_melodyman .about_melodyman_wrap {
        margin-bottom: 170px;
    }

    .about_melodyman .about_melodyman_img {
        position: absolute;
        left: -10px;
        z-index: -1;
        max-width: 234px;
        max-width: 160px;
        width: 50%;
        bottom: -3%;
    }

    .about_melodyman .about_right {
        margin-left: 10%;
        min-width: 280px;
        margin-top: 0;
        margin-bottom: 60px;
    }

    .about_melodyman .about_melodyman_des {
        padding: 5px;
        background: rgba(255, 255, 255, 0.5);
    }



    .about_melodyman .about_melodyman_btn {
        position: absolute;
        bottom: -95px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }

    .about_melodyman::before {
        top: inherit;
        bottom: 0;
        height: 109%;
    }

    .about_melodyman::after {
        top: inherit;
        bottom: 0;
        height: 109%;
        background-size: 150px;
    }

    .about_melodyman .about_melodyman_ttl {
        width: 60%;
        min-width: 245px;
    }

    .about_melodyman .next_btn {
        transition: unset;
    }

    .about_melodyman .next_btn:hover {
        transform: unset;
    }

}

/*sponsor*/

.sponsor {
    margin-bottom: 50px;
}

.sponsor_wrap {
    width: 90%;
    max-width: 1280px;
    margin: 10px auto 0;
    position: relative;
}

.sponsor h2 {
    width: 30%;
    max-width: 310px;
    margin: 0 auto;
}

.sponsor .sponsor_list {
    width: 100%;
    height: 23vh;
    background-color: rgba(255, 235, 206, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.sponsor .sponsor_list img {
    width: 20%;
}

.sponsor .darabukka {
    position: absolute;
    z-index: -1;
    top: 0;
    right: -90px;
    height: 80%;
}

@media(max-width:768px) {
    .sponsor h2 {
        width: 80%;
    }

    .sponsor .sponsor_list img {
        width: 50%;
        max-width: 170px;
    }

    .sponsor .darabukka {
        top: inherit;
        bottom: 0;
        height: 50%;
        right: -50px;
    }


}

/*banner area*/
.banner_area {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 800px;
    margin: 0px auto 50px;
}

.banner_area a {
    width: 40%;
}

.banner_area a:hover {
    transform: scale(1.15);
    transition: 0.5s;
}

@media(max-width:768px) {

    .banner_area {
        position: fixed;
        bottom: 0;
        margin: 0 auto;
        z-index: 999;
        width: 100%;
        justify-content: center;
    }

    .banner_area a {
        width: 50%;
        max-width: 200px;
    }

    .banner_area a:hover {
        transform: unset;
    }

}