@charset "utf-8";
/* ==================
common
===================*/
:root{
    --red:#CE2525;
    --yellow:#F1C550;
    --orange:#FF6600;
    --white:#FFFFFF;
    --black:#000000;
}
/* 普通の黒と白は設定する意味があるのか？ */

html{
    font-size: 62.5%;
}

body{
    font-family: "Noto Serif JP", "Shippori Mincho", serif;
    font-style: normal;
    font-weight: 400;
    color: var(--black,#000000);
    background-color: var(--white,#FFFFFF);
    line-height: normal;
}
/* フォントウエイトとかラインハイトこれでいいんか */

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

p{
    text-align: center;
    font-size: 16px;
}

.maincaption__topic{
    color: var(--red, #CE2525);
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
}
/* フォントウエイトは設定した？ラインハイトノーマルってなに？ TOPページは文字のサイズとか色ちがうよ*/

.container{
    position: relative;
}

.topic{
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: normal;
}

.topic__inquiry{
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto;
}

.btn{
    display: block;
    width: 206.577px;
    height: 44px;
    padding: 11px 9px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    background: var(--yellow, #F1C550);
    box-shadow: 0px 1.042px 1.042px 0px rgba(0, 0, 0, 0.25);
    color: #FFF;
    text-align: center;
    text-shadow: 0px 1.042px 1.042px rgba(0, 0, 0, 0.25);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: normal;
    transition: 0.4s;    
}
/* ボタン押したら色かわるデザインしてないや */
a.btn:hover{
    background: rgba(241, 197, 80, 0.60);
}

a.btn--inquiry:hover{
    background: rgba(206, 37, 37, 0.60);
}

/* common pc */
@media screen and (min-width:769px) {
    .p{
        font-size: 2.4rem;
        font-weight: 400;
    }

    .maincaption__topic{
        font-size: 5.0rem;
    }

    .topic{
        font-size: 5.2rem;
    }

    .topic__inquiry{
        font-size: 5.2rem;
    }

    .btn{
        width: 522px;
        height: 93px;
        flex-shrink: 0;
        font-size: 3.2rem;
        padding: 24px 101px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    }

    .spBr{
        display: none;
    }
}

/* ==================
header
===================*/
.header{
    padding: 2.6%;
    height: 36.67px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__topic-pc{
    display: none;
}

.header__btn-pc{
    display: none;
}

/* nav-sp 初期表示 */
.nav{
    background: url(../images/humburger-SP.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transfoem 0.4s;
}

.nav__header{
    padding: 8px 2.4% 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__topic-pc{
    display: none;
}

.nav__btn-pc{
    display: none;
}

.nav__list{
    margin-top: 154px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
}

.nav__item{
    font-size: 2.0rem;
    font-weight: 700;
    line-height: normal;
    writing-mode: vertical-rl;
    letter-spacing: 1.2rem;
}

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


/* header pc */
@media screen and (min-width:769px){
    .header{
        display: flex;
        height: 118px;
        padding: 22px 2.2% 32px;
        justify-content: space-between;
        align-items: center;
    }

    .header__topic-sp{
        display: none;
    }

    .header__topic-pc{
        display: block;
    }

    .header__btn-sp{
        display: none;
    }

    .header__btn-pc{
        display: block;
    }

    /* nav-pc 初期表示 */

    .nav{
        height: 100vh;
        background: rgba(253, 253, 253, 0.887);
        background-image: url(../images/cloud.png), url(../images/cloud.png);
        background-repeat: no-repeat, no-repeat;
        background-position: -11% 20%, 107% 100%;
    }

    .nav__header{
        height: 124px;
        padding: 30px 57px 30px 32px;
    }

    .nav__topic-sp{
        display: none;
    }

    .nav__topic-pc{
        display: block;
    }

    .nav__btn-sp{
        display: none;
    }

    .nav__btn-pc{
        display: block;
    }

    .nav__list{
        gap: 110px;
        margin-top: 150px;
    }

    .nav__item{
        font-size: 2.4rem;
    }

}


/* ==================
mainvisual
===================*/

.mainvisual{
    position: relative;
}

.mainvisual__sp{
    width: 100%;
}

.mainvisual__pc{
    display: none;
}

.mainvisual__txt{
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 2.6rem;
    font-weight: 600;
    text-align: left;
    position: absolute;
    top: 37%;
    left: 4.2%;
}
/* 画面サイズちがくなったときに大丈夫？ */

/* mainvisual pc */
@media screen and (min-width:769px){
    .mainvisual__txt{
    font-size: 8.0rem;
    font-weight: 600;
    }

    .mainvisual__sp{
        display: none;
    }

    .mainvisual__pc{
        display: block;
        width: 100%;
    }
}


/* ==================
maincaption
===================*/

.section--maincaption{
    display: flex;
    padding: 25px 10%;
    flex-direction: column;
    align-items: center;
    gap: 17px;
    background: url(../images/background1.png) lightgray 50% / cover no-repeat;
}

/* maincaption pc */
@media screen and (min-width:769px){
    .section--maincaption{
        padding: 53px 155px;
        gap: 65px;
    }

    .maincaption__txt{
        font-size: 3.2rem;
        font-weight: 400;
    }

}

/* ==================
inquiry
===================*/

.section--inquiry{
    display: flex;
    padding: 25px 9.4%;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    align-self: stretch;
    background: url(../images/background1.png) lightgray 50% / cover no-repeat;
}

.btn--inquiry{
    background: var(--red, #CE2525);
}

.qrcode{
    display: none;
}

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

    .section--inquiry{
        display: flex;
        padding: 68px 9.4% 94px;
        flex-direction: column;
        align-items: center;
        gap: 53px;
        align-self: stretch;
    }

    .inquiry__txt{
        font-size: 4.0rem;
    }

    .qrcode{
        display: block;
    }
}

/* ==================
footer
===================*/

.footer{
    display: flex;
    padding: 20px 4%;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    }

.footerTitle{
    display: block;
    margin-bottom: 30px;
}

.footer__logo{
    width: 70%;
}

.footerNav__list{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footerNav__item{
    font-size: 1.5rem;
    font-weight: 700;
}

.sns{
    display: flex;
    align-items: center;
    gap: 20px;
}

.sns__icon{
    width: 80%;
}

.copy{
    font-size: 0.9rem;
    font-weight: 700;
}

#pagetopbutton{
    position: fixed;
    width: 53px;
    height: 73px;
    bottom: 15px;
    right: 2.2%;
}



@media screen and (min-width:769px){
    .footer{
        padding: 22px 2.2% 32px;
    }

    .footerTitle{
        margin-bottom: 0;
    }

    .footer__logo{
        width: auto;
    }


    .footerNav__list{
        flex-direction: row;
        gap: 40px;
        margin-top: 20px;
    }

    .footerNav__item{
        font-size: 2.0rem;
    }

    .sns{
        display: inline-flex;
        align-items: center;
        gap: 28px;
    }

    .sns__icon{
        width: 100%;
    }


    .copy{
        font-size: 1.5rem;
        font-weight: 700;
    }


    #pagetopbutton{
        position: fixed;
        width: 93px;
        height: 130px;
        bottom: 50px;
        right: 2%;
    }
}

@media screen and (min-width:1300px){
    .footer__top{
        display: flex;
        height: 96px;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .footer__logo{
        width: 100%;
   }

   .footerNav__list{
        margin-top: 0;
   }

   .sns{
        margin-left: 83%;
   }
}