@charset "UFT-8";

/* ====================
common
====================== */
html{
    font-size: 62.5%;
}

body{
    font-family: 
        'Yu Gothic', 
        'YuGothic', 
        'Hiragino Kaku Gothic ProN',
        'Hiragino Sans', 
        'Meiryo', 
        sans-serif;
    font-style: normal;
    color: #000000;
    font-size: 1.6rem;
    line-height: 2.0;
    
}

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

/* ===========
header
============== */
.header{
    padding: 24px 6.4% 16px; 
    position: relative;
}

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

.header__inner{
    display: flex;
    align-items: center;
} 

.header__logo{
    display: block;
    width: 90px;
    height: 90px;
}

.line__btn{
    display: block;
    align-items: center;
    width: 110px;
    height: auto;
}

.header__btn{
    display: flex;
    align-items: center;
    width: 19px;
    height: 19px;
    margin-left: 16px;
}


/* .navの初期設定 */
.nav{
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    padding: 24px 6.4% 16px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav_active{
    transform: translateX(0);
}

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

.nav__inner{
    display: flex;
    align-items: center;
} 

.nav__list-pc{
    display: none;
}

.nav__logo{
    display: block;
    width: 90px;
    height: 90px;
}

.nav__btn{
    display: flex;
    align-items: center;
    width: 19px;
    height: 19px;
    margin-left: 16px;
}

.nav__list{
    margin-top: 72px;
}

.nav__item{
    font-size: 2.4rem;
    line-height: 1.3;
    color: #2E286A;
    margin-top: 52px;
    list-style: none;
    padding-left: 0;
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
}

.nav.active {
    transform: translateX(0);
}

/* header pc */
@media screen and (min-width:769px) {
    .header{
        max-width: 1440px;
        margin-top: 0 auto;
        padding: 23px 30px 27px;
    }

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

    .header__logo{
        display: block;
        width: 150px;
        height: 150px;
    }

    .line__btn{
        width: 200px;
        height: auto;
        margin-left: 120px;
    }

    .header__btn{
        display: none;
    }

    .nav__list-pc{
        display: block;
        display: flex;
    }
    
    .nav{
        display: none;
    }

    .nav__list{
        display: flex;
        margin: 0;
    }

    .nav__item{
        font-size: 2rem;
        line-height: 1.3;
        margin-left: 100px;
        margin-top: 0;
    }

}
/* pc */

/* ================
main
================== */
.topic{
    margin-top: 160px;
    padding: 0 20% 100px;
    text-align: center;
    color: #43399b;
    font-size: 2rem;
}

.content{
    padding: 0 15%;
    font-size: 1rem;
    margin-bottom: 300px;
}

.title{
    font-weight: 700;
}

/* main pc */
@media screen and (min-width:769px){
    .topic{
        font-size: 3rem;
    }

    .content{
        font-size: 1.5rem;
        margin-bottom: 1000px;
    }
}




/* =============-
footer
=============== */
.footer {
    background: #f7f7f7;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ロゴ＋SNSのまとまり */
.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* スマホでは brand を後ろに回す */
.footer__brand {
    order: 2;
    margin-top: 60px;
}

/* スマホでは nav を先に表示 */
.footer__nav {
    order: 1;
    width: 100%;
    
    font-family: "Gill Sans", "Gill Sans MT", sans-serif;
    font-size: 1.6rem;
}

/* メニューは縦並び */
.footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__menu + .footer__menu {
    margin-top: 24px;
}

.footer__menu li + li {
    margin-top: 20px;
}

.footer__menu a {
    text-decoration: none;
    color: #000;
    font-size: 1.6rem;
    line-height: 1.6;
}

/* ロゴ */
.footer__logoWrap {
    margin: 0;
}

.footer__logo {
    width: 105px;
    height: auto;
    display: block;
}

/* SNS */
.sns {
    margin-top: 15px;
}

.sns__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.sns__item img {
    width: 40px;
    height: auto;
    display: block;
}

/* footer pc */
@media screen and (min-width:769px){
    .footer {
        background: #f7f7f7;
        padding: 20px 24px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    /* スマホでは brand を後ろに回す */
    .footer__brand {
        order: 1;
        margin: 20px 0 0 20px;
    }
    
    /* スマホでは nav を先に表示 */
    .footer__nav {
        order: 2;
        display: flex;
        text-align: left;
        width: auto;
        margin: 0 130px 0 auto;
    }
    
    .footer__menu + .footer__menu {
        margin-top: 0px;
    }
    
    .footer__menu li + li {
        margin-top: 0px;
    }
    
    .footer__menu li{
        margin: 20px 0 0 130px;
    }
    
    .footer__menu a {
        line-height: 3;
    }
}