@charset "utf-8";

@media screen and (max-width: 1024px) {
    .inner {
        padding: 0 24px;
        width: 100%;
    }
    .border_slash{
        margin: 64px auto 0;
    }

    /* ---------------------------------------------------------------------------------------------------*/
    header{
        width: 100%;
        height: 75px;
        border-bottom: none;
    }
    header h1{
        width: auto;
    }
    header nav ul {
        display: block;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        padding: 50px 5% 0;
        background: #8bd140;
        box-sizing: border-box;
        z-index: 9999;
    }
    header nav ul.toggle {
        transition: all .4s;
        opacity: 1;
        visibility: visible;
    }
    header nav li {
        margin: auto;
        height: auto;
    }
    header nav li a {
        padding: 28px 0 24px 10px;
        font-size: 16px;
        border-bottom: 1px solid #333;
        line-height: normal;
    }
    header nav li a:hover,
    header nav li a.hover{
        background: rgba(255, 255, 255, 0.2);
    }
    header nav li a::after{
        content: none;
    }
    .gnav_burger {
        width: 75px;
        height: 75px;
        cursor: pointer;
        display: block;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 9999;
        transition: all 0.3s ease-out;
        background: #FFF;
    }
    .gnav_burger:hover,
    .gnav_burger.hover{
        background: #8bd140;
    }
    .burger_inner {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        width: 30px;
        height: 26px;
    }
    .burger_inner span{
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #333;
    }
    .burger_inner span:nth-of-type(1) {
        top: 0;
    }
    .burger_inner span:nth-of-type(2) {
        top: 12px;
    }
    .burger_inner span:nth-of-type(3) {
        bottom: 0;
    }
    .burger_inner.active span:nth-of-type(1) {
        -webkit-transform: translateY(12px) rotate(-45deg);
        transform: translateY(12px) rotate(-45deg);
    }
    .burger_inner.active span:nth-of-type(2) {
        opacity: 0;
    }
    .burger_inner.active span:nth-of-type(3) {
        -webkit-transform: translateY(-12px) rotate(45deg);
        transform: translateY(-12px) rotate(45deg);
    }

    /* ---------------------------------------------------------------------------------------------------*/
    #sec_title h1{
        font-size: 3.1vw;
        line-height: normal;
    }
    #sec_title h1 span{
        font-size: 1.75vw;
    }
}

@media screen and (max-width: 768px) {
    /* ---------------------------------------------------------------------------------------------------*/
    .pc_hide {
        display: block;
    }
    .sp_hide {
        display: none;
    }
    .border_slash {
        margin: 40px auto 0;
    }

    /* ---------------------------------------------------------------------------------------------------*/
    header h1 a {
        font-size: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1em;
    }
    header h1 img{
        margin: 0 0 4px;
        height: 28px;
    }

    /* ---------------------------------------------------------------------------------------------------*/
    footer ul{
        width: 100%;
    }
    footer ul li{
        margin: 0;
        display: block;
    }
    footer ul li a{
        display: block;
        text-align: center;
        line-height: 48px;
    }
    footer ul li a:hover,
    footer ul li a.hover{
        color: #FFF;
        background: rgba(255,255,255,.1);
    }
    footer ul li::after{
        content: none;
    }

    /* ---------------------------------------------------------------------------------------------------*/
    #sec_title {
        width: 100%;
        height: 148px;
        overflow: hidden;
    }
    #sec_title .title_image::before {
        content: '';
        background: inherit;
        filter: blur(4px);
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        z-index: 1;
    }
    #sec_title h1{
        width: 90%;
        font-size: 26px;
        color: #FFF;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 2;
        background: transparent;
    }
    #sec_title h1 span{
        font-size: 16px;
    }
    #sec_title .title_image{
        width: 100%;
        height: 100%;
    }
}