@charset "UTF-8";
.container{
    font-family: var(--font-family-main-01);
    font-size: 14px;
    font-style: normal;
    width: var(--common-width);
    margin: 0 auto;
    max-width: var(--max-width-main);
}

img{
    width: 100%;
}


:root{
    --brandList-orange: #FF7200;
    --brandLIst-gray: #F5F5F5;
    --syabuyo:#04512A;
    --gusto:#D0000B;
}


/* ==================
main 
====================*/
.main__topic{
    color: var(--brandList-orange);
    font-size: 24px;
    font-weight: bold;
    margin-top: 40px;
}

.main__txt{
    margin-top: 10px;
}

/* logo size */
.logo__syabuyo{
    width: 69px;
}
.logo__aiya{
    width: 70px;
}
.logo__yumean{
    width: 67px;
}
.logo__gusto{
    width: 80px;
}
.logo__ohana{
    width: 83px;
}
.logo__tohsai{
    width: 95px;
}
.logo__skyLark{
    width: 68px;
}


.brand--logo img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.brand--logo{
    position: relative;
    display: block;
    width: 100px;
    height: 100px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25) ;
    border-radius: 50%;
}

.brand{
    text-align: center;
    width: 100px;
}

.brandList--flex{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin:20px 0 40px 0;
}

.other__txtSize{
    font-size: 12px;
}


/* ==================
corse 共通
====================*/
.brand__image{
    max-width: 700px;
    margin: 0 auto;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.brand__image img{
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
}

.brand__name{
    display: inline-block;
}

.brand__category{
    font-weight: bold;
    padding: 3px 9.5px;
    text-align: center;
    display: block;
    background-color: var(--main-color-01);
    color: var(--main-color-02);
}

.brand__name h2{
    font-size: 24px;
    margin-top: 15px;
    line-height: 1S;
}

.brand__detail{
    max-width: 700px;
    margin: 0 auto;
}

.course__topic{
    margin-top: 30px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.topic__text{
    margin-top: 20px;
}

/*========================
 corse acordion 
 =========================*/
.course__image{
    max-width: 355px;
    height: 244.5px;
    margin: 0 auto;
    overflow: hidden;
}

.course__image img{
    height: 100%;
    object-fit: cover;
}
.course__image:has(.resize) {
    height: 320px;
}
.course__image .note {
    display:block;
    margin: 7px 0 0 15px;
}
img.resize {
    object-fit: contain;
}

.course__item{
    background-color: var(--brandLIst-gray);
    margin-top: 30px;
    padding-bottom: 20px;
}

.course__detail h3{
    font-size: 16px;
    font-weight: bold;
    padding-top: 20px;
}

.course__text{
    margin-top: 15px;
}

.course__price{
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
}

.course__detail{
    margin: 0 auto;
    max-width: 700px;
    padding: 0 5.97%
}

.course__acordion{
    display: none;
}

/* button共通 */
.button{
    display: block;
    font-family: var(--font-family-main-01);
    font-size: 17px;
    line-height: 2.8;
    text-align: center;
    height: 50px;
    border-radius: 50px;
    width: 84%;
    max-width: 315px;
    margin: 0 auto;
}

/* 予約ボタン */
.btn--reserve{
    margin-top: 15px;
    font-weight: bold;
    color: var(--main-color-02);
    background-color: var(--brandList-orange);
}

/* acordionボタン */
.btn--menu{
    margin: 30px auto 65px;
    color: var(--main-color-01);
    background-color: var(--brandLIst-gray);
    transition: all .5s ease;
    position: relative;
}

.btn--menu:focus{
    outline: solid 2px var(--main-color-01);
}

.menu__close{
    display: none;
}

.menu__close.active{
    display: inline-block;
}

.btn--menu::after{
    display: inline-block;
    position: absolute;
    content:'';
    background-image: url(../images/menu--arrow.svg);
    width: 24px;
    height: 24px;
    top: 50%;
    right: 12%;
    transform: translateY(-50%);
}

.btn--menu.onClick::after{
    display: inline-block;
    position: absolute;
    content:'';
    background-image: url(../images/menu--arrow.svg);
    rotate: 180deg;
    width: 24px;
    height: 24px;
    top: 0;
    right: 12%;
}

.btn--menu.btn--link::after{
    display: none;
}

.menu__open.none{
    display: none;
}


/* ================
brand color 
===================*/
.color--syabuyo{
    background-color: var(--syabuyo);
}

.color--gusto{
    background-color: var(--gusto);
}


/* =================
pc size
==================== */
@media screen and (min-width: 1060px){
    .main__topic{
        font-size: 32px;
        margin-top: 76px;
    }

    .main__txt{
        margin-top: 25px;
        font-size: 18px;
    }

    .brandList--flex{
        margin: 30px 0 70px 0;
        gap: 30px;
    }

    /* brand section */
    .brand__list{
        padding: 70px 0;
        border-bottom: solid 2px var(--brandLIst-gray);
    }

    .brand__list:first-of-type{
        padding: 0 0 70px 0;
    }

    .brand__list:last-of-type{
        border-bottom: none;
    }

    .brand__image{
        max-width: 335px;
        width: 31.72%;
        min-width: 300px;
        min-height: 277px;
        overflow: hidden;
    }

    .brand p{
        margin-bottom: 5px;
    }

    .brand__image img{
        height: 100%;
        object-fit: cover;
        object-position: 0 0;
    }

    .pc--flex{
        display: flex;
        gap: 3.69%;
    }

    .brand__detail{
        width: 64.49%;
    }

    .section__logo{
      width: 154px;
      height: 154px;
    }

    .section__logo p{
       transform: scale(1.54);
       transform-origin: 0% 0%;
    }

    .brand__name{
        margin-top: 10px;
    }

    .brand__category{
        padding: 10px 20px;
        line-height: 1;
    }

    .brand__name h2{
        font-size: 32px;
    }


    .topic__text{
        font-size: 18px;
        margin-top: 28px;
    }

    /* acordion btn */
    .btn--menu{
       width: 300px;
       height: 55px;
       margin:30px auto 0px;
   }
   /* acordion menu */
   .course__topic{
       margin-top: 0;
       gap: 4.99%;
       flex-wrap: wrap;
   }
   
   
   .course__image{
       min-width: 350px;
       width: 35.7%;
       max-width: 377px;
       margin:  0;
   }
   
   .course__item{
       display: flex;
       flex-wrap: nowrap;
       padding: 30px 3.79%;
       column-gap: 30px;
   }
   
   .course__detail{
       max-width: 569px;
       margin: 0;
       padding: 0;
   }
   
   
   .course__detail h3{
       font-size: 20px;
       padding-top: 0;
   }
   
   .course__text{
       font-size: 18px;
       line-height: 1.7;
       margin-top: 20px;
   }
   
   .course__price{
       font-size: 20px;
       margin-top: 20px;
   }
   
   /* 予約ボタン */
   .btn--reserve{
       font-size: 14px;
       width: initial;
       height: 40px;
       display: inline-block;
       padding: 0 26px;
       margin: 20px 0 0 0;
   }
   
   /* other */
   .other__detail{
       width: 100%;
       max-width: none;
       margin: 0 3.79%;
   }
   
   .other--flex{
       display: flex;
       gap: 50px;
       justify-content: right;
   }
    
}


/* 20240920　追加 */

#yumean .course__image {
    height: initial;
    max-width: 611px;
    overflow: initial;
    min-width: initial;
    width: initial;
}

#yumean .course__image img {
    object-fit: contain;
}

@media screen and (min-width:1056px) {
    #yumean .course__image {
        height: initial;
        max-width: 611px;
        overflow: initial;
        min-width: initial;
        width: initial;
    }
    
    #yumean .course__image img {
        object-fit: contain;
        width: 490px;
        height: 244.5px;
    }
}
/* 20241223　追加 */

#gusto img {
    object-fit: contain;
}

#gusto .course__image {
    height: initial;
    max-width: 611px;
    overflow: initial;
    min-width: initial;
    width: initial;
}

@media screen and (min-width:1056px) {

    #gusto .course__image img {
        width: 490px;
        height: 244.5px;
    }
}