@charset "UTF-8";
@media screen and (max-width: 1024px) {





    /*aimate.min.css無効化*/
    .animated {
        animation-duration: 0s !important;
        /* 他の必要なスタイルをここに追加 */
    }






    /*汎用*/
    [class*="_cnt"] {
        padding: 5rem 0 !important;
    }
    .col2 {
        display: block !important;
    }
    .col2 .left {
        width: 100% !important;
        margin: 0 0 3rem;
    }
    .col2 .right {
        width: 100% !important;
    }
    .buttonA {
        width: 100%;
    }


    /*header*/
    .header .col2 .right .nav {
        display: block;
    }
    .header .col2 .right .nav>.ul {
        width: 100%;
        display: block;
        background: rgba(255, 255, 255, 1);
        padding: 1rem 1rem 0;
    }
    .header .col2 .right .nav>.ul>.li {
        min-height: 5rem;
        display: grid;
        align-items: center;
        border-bottom: 0.1rem dashed #ccc;
    }
    .header .col2 .right .nav>.ul>.li:first-of-type {
        display: block;
    }
    .header .col2 .right .nav>.ul>.li:last-of-type {
        min-width: initial;
        height: initial;
        background: initial;
        border-radius: initial;
        display: grid;
        align-items: center;
        text-align: center;
        color: initial;
    }
    .header .col2 .right .nav>.ul>.li:has(.ul):hover .ul {
        display: grid;
    }
    .header .col2 .right .nav>.ul>.li:has(.ul) .ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        position: initial;
        gap: 1rem;
        margin: 0 auto 1rem;
    }
    .header .col2 .right .nav>.ul>.li:has(ul):hover .ul {
        display: grid;
    }
    .header .col2 .right .nav>.ul>.li>.ul>.li {
        min-height: 5rem;
        background: #cbb59b;
        box-shadow: initial;
        height: initial;
    }
    .header .col2 .right .nav>.ul>.li>.ul>.li a {
        color: #fff;
    }
    .header .col2 .right .nav .insta {
        width: 100%;
        border-radius: 0 0 1rem 1rem;
    }
    /*-----以下ハンバーガーメニュー-----*/
    #wrapper .nav.globalMenuSp {
        /*管理画面用*/
        position: initial;
        transform: initial;
    }
    /*common.cssでnavに高さが与えられている場合はheight:initial;を追加*/
    .nav.globalMenuSp {
        position: fixed;
        z-index: 20;
        top: 0;
        left: 0;
        /*background:rgba(0,0,0,0.8);*/
        color: #000;
        text-align: center;
        transform: translateY(-100%);
        transition: all 0.6s;
        width: 100%;
    }


    /* このクラスを、jQueryで付与・削除する */
    .nav.globalMenuSp.active {
        transform: translateY(0%);
    }


    .navToggle {
        display: block;
        position: fixed;
        /* bodyに対しての絶対位置指定 */
        right: 13px;
        top: 12px;
        width: 42px;
        height: 51px;
        cursor: pointer;
        z-index: 30;
        /*background: #666;*/
        text-align: center;
    }

    .navToggle span {
        display: block;
        position: absolute;
        /* .navToggleに対して */
        width: 30px;
        border-bottom: solid 3px #cbb59b;
        -webkit-transition: .35s ease-in-out;
        -moz-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
        left: 6px;
    }

    .navToggle span:nth-child(1) {
        top: 9px;
    }

    .navToggle span:nth-child(2) {
        top: 18px;
    }

    .navToggle span:nth-child(3) {
        top: 27px;
    }

    .navToggle span:nth-child(4) {
        border: none;
        color: #cbb59b;
        font-size: 1.2rem;
        font-weight: bold;
        top: 3.5rem;
    }


    /* 最初のspanをマイナス45度に */
    .navToggle.active span:nth-child(1) {
        top: 18px;
        left: 6px;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    /* 2番目と3番目のspanを45度に */
    .navToggle.active span:nth-child(2),
    .navToggle.active span:nth-child(3) {
        top: 18px;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }






    /*main*/
    .main>.titleA {
        padding: 9.5rem 0 5rem 15.625vw;
        margin: 0;
    }
    .bottom {
        padding: 5rem 0;
    }
    .bottom .inner .col2 .right .dl {
        display: block;
        padding: 2rem;
    }
    .bottom .inner .col2 .right .dt {
        width: 100%;
        text-align: center;
    }
    .bottom .inner .col2 .right .dd {
        width: 100%;
        text-align: center;
    }
    .bottom .inner .col2 .right .tel a {
        font-size: 2rem;
        justify-content: center;
    }





    /*footer*/
    .footer {
        padding: 5rem 0 1rem;
    }
    .footer .inner>p {
        font-size: 1.2rem;
    }





}