@charset "utf-8";

/*==========================
common
==========================*/

:root {
    --orange01: #FFC700;
    --orange02: #FF7B00;
    --black: #352F26;
    --white: #FFFEFD;
    --red: #FF544F;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Noto Sans JP", "Noto Serif JP", sans-serif;
    font-style: normal;
    color: var(--black, #352F26);
    line-height: 1.5;
    background-image: url(../images/bg_cloth.jpg);
    background-repeat: repeat;
}

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


.maintopic, .topic {
    color: var(--white);
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.50);
    font-family: "Noto Serif JP";
    font-size: 2.4rem;
    font-weight: 700;  
    text-align: center;
    display: flex;
    justify-content: center;

}

.subTopic, .subTopic-white {
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2rem;
    font-weight: 700;
}

.subTopic::after {
    display: block;
    content:'';
    width: 200px;
    height: 24.246px;
    background-image: url(../images/kazari_orange.png);
    background-position: center;
    background-size: contain;
    margin: 10px auto 0;
}

.subTopic-white::after {
    display: block;
    content:'';
    width: 200px;
    height: 24.246px;
    background-image: url(../images/kazari_white.png);
    background-position: center;
    background-size: contain;
    margin: 10px auto 0;
}

/* ボタン */
.btn__tel {
    text-align: center;
    width: 271px;
    padding: 30px;
    border-radius: 8px;
    border: 4px solid var(--orange02);
    background: var(--white);
    color: var(--orange02);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 700;
}

.btn__form {
    text-align: center;
    width: 271px;
    padding: 30px;
    border-radius: 8px;
    background: var(--orange02);
    color: var(--white);
    font-family: "Noto Sans JP";
    font-size: 1.8rem;
    font-weight: 700;
}

.btn__tel:hover {
    background-color: white;
    color: var(--orange01);
    border: 4px solid var(--orange01);
    transition: 0.4s;
}

.btn__form:hover {
    background-color: var(--orange01);
    transition: 0.4s;
}

/* br */
.pcBr {
    display: none;
}

.spBr {
    display: block;
}

/* scroll top */
.topBtn, .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: var(--orange01);
    font-family: "Noto Sans JP";
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

    position: fixed;
    bottom: 5.3%;
    right: 5.3%;
    z-index: 100;
    cursor: pointer;
    transition: 0.5s;
    
    opacity: 0;
    visibility: hidden;
}

.active{
    opacity: 1;
    visibility: visible;
}

/* common pc */
@media screen and (min-width:769px) {
    .maintopic, .topic {
        font-size: 4.6rem;    
    }

    .subTopic, .subTopic-white {
        font-size: 3.2rem;
    }
    
    .subTopic::after, 
    .subTopic-white::after {
        width: 308px;
        height: 37.339px;
    }

    /* ボタン */
    .btn__tel {
        width: 390px;
        padding: 30px 60px;
        font-size: 2.4rem;
    }

    .btn__form {
        width: 390px;
        padding: 30px 60px;
        font-size: 2.4rem;
    }

    /* br */
    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
    }
}
/* pc 769px */


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

.header {
    display: flex;
    display: flex;
    padding: 30px 4.7%;
    justify-content: space-between;
    align-items: center;
}

.header__topic {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.header__topic p {
    color: var(--white);
    text-shadow: 0px 1px 1px #737373;
    font-family: "Noto Serif JP";
    font-size: 1rem;
    font-weight: 700;
}

.header__logo {
    width: 62.5%;
}

.header__btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.header__btn p{
    color: var(--white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0px 1px 1px #737373;
}

.mainVisual {
    background-image: url(../images/bg_main2.jpg);
    width: 100%;
    height: 240px;
    background-size: cover;
    background-repeat: no-repeat;
}

.maintopic {
    margin-top: 10px;
}

/* header pc */
@media screen and (min-width:769px) {
    
    .header__topic {
        gap: 5px;
    }
    
    .header__topic p {
        font-size: 2.4rem;
    }
    
    .header__logo {
        width: 500px;
        height: 70.124px;
    }
    
    .header__btn {
        gap: 10px;
    }
    
    .header__btn p{
        font-size: 2rem;
    }
    
    .mainVisual {
        height: 360px;
    }
    

}
/* pc 769px */


/*==========================
nav設定
==========================*/

/* .nav初期表示 */

.nav {
    width: 100%;
    height: 100vh;
    margin-left: auto;
    background-image: url(../images/bg_menu.jpg);
    opacity: 0.95;
    background-size: cover;
    background-repeat: no-repeat;

    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s;
}

.nav__header {
    padding-right: 4.7%;
    height: 108px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav__btn {
    display: block;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.nav__list {
    padding: 0 9.3% 60px;
}

.nav__item {
    color: var(--white);
    font-family: "Noto Serif JP";
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 10px;
}

.nav__item a {
    display: block;
}


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

.nav__item::after {
    display: inline-block;
    content: '';
    width: 100%;
    height: 1px;
    margin-bottom: 5px;
    background-color: var(--white);
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

/* nav設定 pc */
@media screen and (min-width:769px) {
    .nav {
        width: 46.4%;
    }

    .nav__header {
        padding-right: 11%;
        height: 160px;
    }

    .nav__btn {
        width: 40px;
        height: 40px;
    }

    .nav__list {
        padding: 0 10.1% 77px;
    }

    .nav__item {
        font-size: 2rem;
    }

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

    /* .nav.active表示 */
    .nav.active {
        transform: translateX(0);
    }
}
/* pc 769px */

/*==========================
slick
==========================*/
.slider__top {
    margin: 1px 0;
}
.slider__bottom {
    margin-top: 0px;
    margin-bottom: 1px;
}

.slider__item {
    margin-left: 1px;
}

/*==========================
breadcrumb
==========================*/

.breadcrumb {
    margin: 0; 
    padding: 15px 4.7% 0;
    list-style: none;
}

.breadcrumb li {
    display: inline;
    list-style: none;
    font-weight: 400;
    font-size: 1.2rem;
}
  
.breadcrumb li:after {
    content: '▶︎';
    padding: 0  10px;
    color: var(--orange01);
}
  
.breadcrumb li:last-child:after {
    content: '';
}
  
.breadcrumb li a {
    text-decoration: none;
}
  
.breadcrumb li a:hover {
    text-decoration: underline;
}

/* breadcrumb pc */
@media screen and (min-width:769px) {
    .breadcrumb li {
        font-size: 1.8rem;
    }
}
/* pc 769px */

/*==========================
trialLesson
==========================*/
.trialLesson__group {
    padding: 75px 6.25% 90px;
    text-align: center;
}

.trialLesson__topic {
    display: inline-block;
    padding: 0px 15px 5px;
    font-size: 1.8rem;
    font-weight: 500;
    border-bottom: 4px solid var(--orange01);
}

.trialLesson__txt {
    margin: 30px auto 0;
    max-width: 550px;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: start;
}

.trialLesson__fee,
.trialLesson__need,
.trialLesson__flow {
    margin-top: 60px;
}

/* 料金 */
.trialLesson__sp, 
.trialLesson__pc{
    margin-top: 30px;
}

.trialLesson__pc {
    display: none;
}
.trialLesson__sp {
    display: block;
}

.trialLesson__fee p{
    font-size: 1rem;
    font-weight: 400;
    text-align: start;
    padding: 0 3.12%;
}

/* 必要なもの */
.need__list {
    margin-top: 30px;
}

.need__item {
    width: 280px;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0 auto;
    text-align: start;
}

/* 流れ */
.trialLesson__list {
    margin: 0 auto;
    max-width: 550px;
}

.trialLesson__item {
    margin-top: 30px;
}

.trialLesson__item dt {
    color: var(--orange02);
    font-size: 1.6rem;
    font-weight: 500;
    text-align: start;
}

.trialLesson__item dd {
    margin-top: 5px;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: start;
}

/* trialLesson pc */
@media screen and (min-width:769px) {
    .trialLesson__group {
        padding: 105px 15.6% 120px;
    }
    
    .trialLesson__topic {
        font-size: 2.8rem;
    }
    
    .trialLesson__txt {
        margin: 60px auto 0;
        max-width: 880px;
        font-size: 1.8rem;
    }
    
    .trialLesson__fee,
    .trialLesson__need,
    .trialLesson__flow {
        margin-top: 90px;
    }
    
    /* 料金 */
    .trialLesson__sp {
        display: none;
    }
    .trialLesson__pc {
        display: block;
        width: 100%;
        max-width: 1080px;
        margin: 30px auto 0;
    }
    .trialLesson__fee p{
        font-size: 1.4rem;
        max-width: 1280px;
        padding: 0 7.81%;
        margin: 0 auto;
    }
    
    /* 必要なもの */
    .need__item {
        width: 360px;
        font-size: 1.8rem;
    }
    
    /* 流れ */  
    .trialLesson__list {
        margin: 0 auto;
        max-width: 880px;
    }

    .trialLesson__item dt {
        font-size: 2rem;
    }
    
    .trialLesson__item dd {
        font-size: 1.8rem;
    }  
}
/* pc 769px */


/*==========================
footer
==========================*/
.footer__group {
    display: flex;
    padding: 90px 0px 30px 0px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    background-image: url(../images/bg_gradation&sun.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.footerNav__list {
    display: flex;
    padding: 0px 18.7%;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 5px 15px;
    flex-wrap: wrap;
}


.footerNav__item {
    color: var(--white);
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 400;
}

.footer__logo {
    display: block;
    width: 160px;
    height: 147.925px;
}

.footer__tel {
    color: var(--white);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 500;
}

.copy {
    color: var(--white);
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 0.9rem;
    font-weight: 400;
}


/* footer pc */
@media screen and (min-width:769px) {
    .footer__group {
        padding: 120px 0px 60px 0px;
        gap: 30px;
    }
    
    .footerNav__list {
        gap: 15px 30px;
        padding: 0px 15.6%;
    }  
    
    .footerNav__item {
        font-size: 1.8rem;
    }
    
    .footer__logo {
        width: 200px;
        height: 184.906px;
    }
    
    .footer__tel {
        font-size: 1.8rem;
    }
    
    .copy {
        font-size: 1.2rem;
    }
}
/* pc 769px */