@charset "utf=8";
/*============================
common
============================*/
html{
    font-size: 62.5%;
}
body{
    font-family: 
        Ar.irem,
     color: .#2ackground-color: #fff;
     line-height: 1.5;
}

img{
    max-width: 100%;
    height: auto;
}

.section__topic{
    font-family: Arial;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

/*============================
header
============================*/

.header{
    padding: 24px 6.4% 16px;
}
.header__topic,
.nav__topic{
    color: #000;
    font-weight: 700;
    font-size: 2.4rem;
}

/* .nav初期表示 */
.nav{
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    padding: 24px 6.4%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100%;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list{
    margin-top: 66px;
}

.nav__items{
    font-weight: 700;
    color: #2F2F2F;
    font-size: 1.8rem;
    line-height: 1; 
    margin-top: 52px;
}

.nav__item img{
    display: inline-block;
    vertical-align: -3px;
    margin-right: 24px;
}

.nav.active{
    transform: translateX(0);
}

.header__btn{
    display: block;
    width: 18px;
    height: 11px;
    cursor: pointer;
    position: absolute;
    top: 37px;
    right: 6.4%;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        max-width 1280px;
        margin: 0 auto;
        padding: 48px 60px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
        
    .header__topic {
        font-size: 3.2rem;
        line-height: 1;
    }

    .nav{
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__list{
        margin-top: 0;
        display: flex;
    }

    .nav__item{
        margin-top: 0;
        color: #FF7000;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 1.3;
        margin-left: 32px;
    }

    .nav__header{
        display: none;
    }

    .nav__item img{
        display: none;
        margin-right: 0;
    }

    .nav__item:first-of-type{
        display: none;
    }

    .header__btn{
        display: none;
    }

}


/*============================
main
============================*/
/* article header */

.mainImg .mainImg__pc{
    display: none;
}

.mainTopics{
    padding: 48px 6.4%;
}

.mainTopics__name{
    color: #FF7000;
    text-align: center;
    font-family: Arial;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.mainTopics__txt{
    color: #2F2F2F;
    font-size: 1.4rem;
    margin-top: 24px;
}

/* article header pc */
@media screen and (min-width: 769px) {
    .mainImg .mainImg__pc{
        display: block;
    }    

    .mainImg .mainImg__sp{
        display: none;
    }   

    .mainTopics{
        padding: 64px 0;
        max-width: 1280px;
        margin: 0 auto;
    }

    .mainTopics__name{
        font-size: 3.2rem;
    }
    
    .spBr{
        display: none;
    }

    .mainTopics__txt{
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-top: 32px;
    }

}/* pc 769px */

/* lineUp */
.section--lineUp{
    padding: 48px 4.2%;
    background-color: #fff8e0;
}

.lineUp__item{
    margin-top: 20px;
}

.lineUp__item:first-of-type{
    margin-top: 32px;
}

.lineUp__content{
    background-color: #fff;
    padding: 16px;
    border-radius: 0 0 8px 8px;
}

.lineUp__name{
    font-size: 1.8rem;
    font-weight: 700;
}

.lineUp__category{
    background-color: #FFF8E0;
    display: inline-block;
    padding: 4px 16px;
    color: #FF7000;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 16px;
}

.lineUp__txt{
    font-size: 1.4rem;
    margin-top: 16px;
}

/* .lineUp pc */
@media screen and (min-width:769px) {
    .section--lineUp{
        padding: 64px 0 96px;
    }

    .lineUp{
        max-width: 1280px;
        margin: 0 auto;
        padding: 60px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }    

    .lineUp__item{
        margin-top: 48px;
        max-width: 373px;
    }

    .lineUp__item:first-of-type{
        margin-top: 48px;
    }
}
/* pc749px */

.detail{
    color: #FF7000;
    font-size: 1.4rem;
    margin-top: 16px;
}

.detail__location{
    border-bottom: 1px solid #FF7000;
}

.detail__txt{
    margin-top: 16px;
}

.btn{
    display: block;
    padding: 16px 0px 18px;
    border-radius: 4px;
    background: #FF7000;
    color: #FFF;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 16px;
    transition: 0.4s;
    position: relative;
}

.btn::after{
    display: block;
    content: '';
    width: 7px;
    height: 12px;
    background-image: url(../images/btn-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

.btn:hover{
    opacity: 0.5;
}

/* access */
.section--access{
    padding: 48px 0;
}

.address{
    font-size: 1.4rem;
    text-align: center;
    margin-top: 24px;
}

.address img{
    margin-right: 8px;
    vertical-align: bottom;
    width: 20px;
}

.map{
    width: 100%;
    margin-top: 24px;
    height: 400px;
}

.directions{
    padding: 24px 6.4% 0;
}

.directions__item:last-of-type{
    margin-top: 24px;
}

.directions__topic{
    color: #FF7000;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.directions__txt{
    font-size: 1.4rem;
    margin-top: 8px;
}
/* access pc */
@media screen and (min-width: 769px) {
    .section--access{
        padding: 64px 60px 90px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .address{
    font-size: 1.6rem;
    line-height: 1.3;
    margin-top: 32px;
    }

    .map{
        margin-top: 32px;
    }

    .directions{
        padding: 32px 0 0;
        display: flex;
        justify-content: space-between;
    }

    .directions__item{
        width: 48%;
    }    

    .directions__item:last-of-type{
        margin-top: 0;
    }

    .directions__topic{
    font-size: 1.8rem;
    line-height: 1;
    }

    .directions__txt{
    font-size: 1.6rem;
    line-height: 1.3;
    margin-top: 16px;
    }
}/* pc769px */

/* news */
.section--news{
    padding: 48px 4.2%;
    background: #FF7000;
}

.section__topic--news{
    color: #FFF;
}

.news__list{
    background-color: #FFF;
    padding: 24px 4.2%;
}

.news__topic{
    color: #FF7000;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 24px;
}

.news__topic:first-of-type{
    margin-top: 0;
}

.news__topic time{
    background-color: #FFF8E0;
    padding: 4px 16px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
}

.news__topic span{
    display: block;
    margin-top: 12px;
}

.news__txt{
    font-size: 1.4rem;
    margin-top: 8px;
}

/* news pc*/
@media screen and (min-width:769px) {
    .section--news{
        padding: 64px 0 96px;
    }

    .news__list{
        padding: 48px 96px;
        max-width: 1160px;
        margin: 32px auto 0;
    }

    .news__topic{
    font-size: 1.8rem;
    line-height: 1.5;
    display: flex;
    margin-top: 32px;
    align-items: center;
    }

    .news__topic time{
    font-size: 1.6rem;
    }
    .news__topic span{
        margin-top: 0;
        margin-left: 20px;
    }
    
}/* pc 769px */

/*============================
footer
============================*/
.footer{
    padding: 32px 4.2%;
}

.footer__topic{
    color: #000;
    font-family: Arial;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.menu__list{
    margin-top: 32px;
}

.menu__item{
    color: #FF7000;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-top: 16px;
    }

.sns{
    margin-top: 32px;
    display: flex;
}

.sns__item{
    width: 24px;
    right: 24px;
    margin-right: 24px;
}

.copy{
    margin-top: 64px; 
}

.copy small{
font-size: 1.2rem;
line-height: 1.5;
}

/* footer pc */
@media screen and (min-width:769px) {
    .footer{
        padding: 64px 60px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .footer__group{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__topic{
    font-size: 2.4rem;
    line-height: 1;
    }
    
    .menu__list{
        display: flex;
        margin-top: 0;
    }

    .menu__item{
        margin-top: 0;
        margin-left: 32px;
    }

    .sns{
        justify-content: flex-end;
    }

    .sns__item{
        margin: 0 0 0 24px;
    }

    .copy{
        margin-top: 32px;
    }
}/* pc 769px */