@charset "utf-8";
/*==========================
common
==========================*/
/* * {
  outline: 1px solid #CC00FF;
}   */
html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Arial,
        sans-serif;
    font-style: normal;
    color: #2F2F2F;
    background-color: #fff;
    line-height: 1.5;
}

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

.section__topic {
    font-family: 'Arial';
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 1.3;
    text-align: center;
    color: #5E2222;
}

/*==========================
header
==========================*/

.header {
    padding: 5vw 10vw 4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
    .header__topic {
        width: 30vw;
    }

/* .nav初期表示 */
.nav {
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}
.nav__topic {
    width: 30vw;
}
.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5vw 10vw 4vw;
}

.nav__list {
    margin-top: 66px;
    padding: 0 6.4%;
}

.nav__item {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
    color: #5E2222;
    margin-top: 52px;
}

.nav__item img {
    display: inline-block;
    vertical-align: -3px;
    margin-right: 24px;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}
.header__btn {
    display: block;
    width: 18px;
    height: 11px;
    cursor: pointer;
    /* position: absolute;
    top: 22px;
    right: 6.4%; */
}
/* .header pc */
@media screen and (min-width:769px) {
    .header {
        max-width: 1600px;
        margin: 0 auto;
        padding: 48px 60px 24px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .header__topic {
        width: 300px;
    }

    .nav {
        background: transparent;
        width: 300px;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }
    .nav__list {
        margin-top: 0;
        display: flex;
        gap: 30px;
    }
    .nav__item {
        margin-top: 0;
        font-weight: 400;
        font-size: 1.6rem;
        color: #5E2222;
        
        line-height: 1.3;
    }

    .nav__item a{
        width: 70px;
    }
    .nav__header {
        display: none;
    }

    .nav__item img {
        display: none;
        margin-right: 0;
    }

    .nav__item:first-of-type {
        display: none;
    }

    .header__btn {
        display: none;
    }

}/* pc 769px */

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

.mainTopics {
    padding: 48px 6.4%;
}

.mainTopics__name {
    font-family: 'Arial';
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.3;
    text-align: center;
    color: #5E2222;
}

.mainTopics__txt {
    font-size: 1.4rem;
    margin-top: 24px;
}

/* article header pc */
@media screen and (min-width:769px) {

    .mainImg .mainImg__pc {
        display: block;
        margin: 0 auto
    }

    .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 {
        font-size: 1.6rem;
        line-height: 2.4;
        text-align: center;
        margin-top: 32px;
    }
}/* pc 769px */

/* .lineUp */
.section--lineUp {
    padding: 48px 4.2%;
    background-color: #FAF6FF;
}

.lineUp__item {
    margin-top: 20px;
}

.lineUp__item:first-of-type {
    margin-top: 32px;
}

.lineUp__img {
    width: 100%;
    background-color: #fff;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.lineUp__img img {
    width: 100%;
    height: 100%;
}

.lineUp__content {
    background-color: #FFF;
    padding: 16px;
}

.lineUp__name {
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}

.lineUp__category {
    background-color: #FAF6FF;
    display: inline-block;
    padding: 4px 16px;
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 1;
    align-items: center;
    color: #5E2222;
    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: 0 60px;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .lineUp__item {
        margin-top: 48px;
        width: calc(100% - 40px / 3);

    }

    .lineUp__item:first-of-type {
        margin-top: 48px;
    }
    
}/* pc 769px */

.detail {
    color: #5E2222;
    font-size: 1.4rem;
    margin-top: 16px;
}

.detail__location {
    border-bottom: 1px solid #5E2222;
}

.detail__txt {
    margin-top: 16px;
}

.btn {
    display: block;
    padding: 16px 0px 18px;
    border-radius: 4px;
    color: #fff;
    background: #5E2222;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    margin-top: 16px;
    font-size: 1.8rem;
    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;
}

/* .AboutUs */
.section--AboutUs {
    padding: 48px 4.2%;
    background-color: #fff;
}

.AboutUs__what {
    margin-top: 20px;
    margin-bottom: 40px;
    color: #2F2F2F;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 21px;
    line-height: 1.8;

}

.AboutUs__company {
    background-color: #FFF;
    margin-top: 32px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.3rem;
    color: grey
}

.AboutUs__location {
    background-color: #FFF;
    margin-top: 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 1.2rem;
    color: grey
}

.AboutUs__name {
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}

/* .AboutUs PC*/
@media screen and (min-width:769px) {
.section--AboutUs {
    padding: 48px 4.2%;
    background-color: #fff;
}

.AboutUs__what {
        font-size: 1.8rem;
        line-height: 2;
        text-align: center;
        margin-top: 32px;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 32px;
}

}
.AboutUs__company {
    background-color: #FFF;
    margin-top: 32px;
    font-size: 2.0rem;
    color: gray;
    font-weight: 500;
    text-align: center;
}

.AboutUs__location {
    background-color: #FFF;
    margin-top: 36px;
    font-size: 1.8rem;
    color: grey;
    font-weight: 500;
    text-align: center;
}

.AboutUs__name {
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
}

/* pc 769px */


/* news SP*/
.section--news {
    padding: 48px 4.2%;
    background-color: #FAF6FF;
}

.section__topic--news {
    color: #FFF;
}

.news__list {
    background-color: #FFF;
    padding: 24px 4.2%;
    margin-top: 32px;
}

.news__topic {
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
    color: #2F2F2F;
    margin-top: 24px;
}

.news__topic:first-of-type {
    margin-top: 0;
}

.news__topic time {
    background-color: #8e4aa2;
    padding: 4px 16px;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
    color: #fff;
}

.news__topic span {
    display: block;
    margin-top: 12px;
    font-size: 1.2rem;
}

.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;
        margin-top: 32px;
        display: flex;
        line-height: 1.5;
        align-items: center;
    }
    

    .news__topic time {
        font-size: 1.8rem;
    }
    
    .news__topic span {
        font-size: 1.8rem;
        margin-top: 0;
        margin-left: 20px;
    }

    .news__txt {
        font-size: 1.6rem;
    }


}/* pc 769px */

/*==========================
footer SP
==========================*/
.footer {
    padding: 32px 4.2%;
}

.footer__topic {
width: 30vw;
}

.menu__list {
    margin-top: 32px;
}

.menu__item {
    font-size: 1.6rem;
    color: #5E2222;
    line-height: 1.3;
    margin-top: 16px;
}

.sns {
    margin-top: 32px;
    display: flex;
}

.sns__item {
    width: 24px;
    height: 24px;
    margin-right: 24px;
}

.copy {
    margin-top: 64px;
}

.copy small {
    font-size: 1.2rem;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer {
        padding: 64px 60px;
        max-width: 1600px;
        margin: 0 auto;
    }

    .footer__group {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer__topic {
        font-size: 3.2rem;
        line-height: 1;
        color: #8e4aa2;
    }

    .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 */

.AboutUs__company-link {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.AboutUs__company-link:hover {
  opacity: 0.7;
}