@charset "UTF-8";
@media screen and (max-width: 1280px) {
    * {
        line-height: 1.8 !important;
    }

    h3:not([class^="title"]) h3 {
        font-size: 2.2rem !important;
    }
    h4 {
        font-size: 2.1rem !important;
    }
    /*汎用*/
    .inner {
        width: 90% !important;
        max-width: initial !important;
    }
    [class*="cnt"] {
        padding: 5rem 0 !important;
    }
    .col2 {
        display: block !important;
    }
    .col2 :is(.left, .right) {
        width: 100% !important;
    }
    .col2 .left {
        margin: 0 auto 3rem;
    }
    .titleA h3 {
        font-size: 2.2rem;
    }
    .titleB .span p {
        font-size: 3rem;
    }
    .titleC p {
        font-size: 3rem;
    }
    .buttonA {
        width: 100%;
    }

    /*header*/
    .header h1 {
        font-size: 1rem;
        padding: 0 5rem 0 0;
    }
    .pagetop {
        display: none;
    }
    /*main*/
    .bottom .inner .col2 .right .catch {
        font-size: 2.4rem;
    }




    /*footer*/
    .footer .inner .col2 .right {}
    .footer .inner .col2 .right .nav .li {
        font-size: 1rem;
        margin: 0 0 1rem;
        background: #177138;
        color: #fff;
        text-align: center;
        border-radius: 1rem;
    }









}
@media screen and (min-width: 100px) {
    /*aimate.min.css無効化*/
    .animated {
        animation-duration: 0s !important;
        /* 他の必要なスタイルをここに追加 */
    }




    /*header*/
    .header .nav .ul {
        margin: 0 0 4rem;
    }
    .header .nav .ul .li {
        list-style: none;
        margin: 0 0 3rem;
    }
    .header .nav .ul .li a {
        color: inherit;
        text-decoration: none;
    }
    .header .nav .ul .li a:hover {
        color: inherit;
        text-decoration: none;
    }
    .header .nav .ul .li a::before {
        content: "● ";
    }


    /*-----以下ハンバーガーメニュー-----*/
    #wrapper .nav.globalMenuSp {
        /*管理画面用*/
        position: initial;
        transform: initial;
    }
    /*common.cssでnavに高さが与えられている場合はheight:initial;を追加*/
    .nav.globalMenuSp {
        position: fixed;
        z-index: 20;
        top: 0;
        right: 0;
        background: #efe9e7;
        color: #000;
        transform: translateY(-100%);
        transition: all 0.6s;
        width: 100%;
        max-width: 60rem;
        height: 100vh;
        padding: 7.8125vw 6.77vw 0;
        /*15 13*/
    }


    /* このクラスを、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 #000;
        -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: #000;
        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);
    }
}