@charset "utf-8";

/* =============================
Article header
================================*/
.mainImg .mainImg__pc {
    display: none;
}

.mainTopics {
    display: flex;
    padding: 0px 0px 19px 22px;
    gap: 17px;
}

.mainTopics__title {
    font-weight: inherit;
    margin: 0;
    writing-mode: vertical-rl;
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 700; 
    letter-spacing: 9px;
}



/* article header PC*/

@media screen and (min-width: 769px) {
    .mainImg .mainImg__pc {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .mainImg .mainImg__sp {
        display: none;
    }

    .mainImg {
        width: 80%;
        height: 500px;
    }

    .mainTopics {
        display: flex;
        justify-content: space-between;
        align-items: center; 
        padding: 0;  
    }

    .mainTopics__title {
        font-size: 4.2rem;
        width: 20%;
        display: flex;
        align-items: center;
        
    }
}   

/* pc 769px    */


/* about */

.section__topic {
    margin-top: 40px;
}

.about_image {
    padding: 60px 23.2% 0; 
} 

.about_txt {
    font-size: 1.6rem;
    line-height: 30px;
    padding: 40px 10% 60px;
}

.pc_br {
 display: none;
}

    

 /* about pc */

@media screen and (min-width: 769px) {

    .about_topics .section__topic {      
        text-align: left;
        font-size: 3.2rem;
        margin-top: 0;
    }

    .about_topics {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    

    .section--about {
        display: flex;
        justify-content: center;
        text-align: center;
        gap: 7vw;
        margin-top: 100px;
    }

    .about_txt {
        text-align: left;
        font-size: 1.8rem;
        padding: 0px;
        margin-top: 20px;
    }

    .sp_br {
        display: none;
    }

    .about_image {
        padding: 0px;

    }

    .pc_br {
        display: block;
       }

}

 /* pc 769px */




/* lineup */


.lineup__list {
    padding: 0 10%;
}

.lineup__img{
    padding: 40px 11%;
}

.lineup__title {
    text-align: center;
    font-family: "Shippori Mincho";
    font-size: 2.4rem;
    font-weight: 700;
    border-bottom: 1px solid #000;
    padding-bottom: 10px;
}

.lineup__text {
    margin-top: 40px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}

.btn_lineup {
    margin-top: 40px;
    display: flex;
    justify-content: space-around;
}

@media screen and (min-width: 769px) {
    .section__topic {
        text-align: center;
        font-size: 3.2rem;
        margin-top: 60px;
    }

    .lineup__list {
        display: flex;
        justify-content: space-evenly;
    }

    .lineup__div {
        width: 321px;
        margin: auto 0;

    }

    .lineup__img {
        height: 350px;
    }


}

/* pc 769px */


/* calender */

.calenderImg_sp {
    display: block;
}

.calenderImg_pc {
    display: none;
}

.section--calender {
    text-align: center;
    max-width: 375px;
    margin: auto;
}
.calender_img {
    margin-top: 60px;
    background-color:#ACA6C1;
    display: flex;
    justify-content: center;
}


@media screen and (min-width: 769px) {

    .calenderImg_sp {
        display: none;
    }

    .calenderImg_pc {
        display: block;
    }

}