header {
    padding-left: 50px;
}
header .header_logo{
    max-width: 460px;
}
header .header_sns{
    max-width: 250px;
    border: solid 1px #333333;
}
header .header_info{
    gap: 45px;
    margin-bottom: 20px;
}
header .header_tel{
    max-width: 240px;
}
header .header_navs ul{
    gap: 60px;
}
header .header_navs a{
    font-weight: 700;
}
header .header_navs .child a{
    font-weight: normal;
}
header .header_contact{
    position: relative;
    z-index: 10;
    color: #fff;
    background: #ad0009;
    width: 140px;
    height: 140px;
    margin-left: 60px;
}
header .header_contact img{
    max-width: 24px;
    display: inline-block;
    margin-bottom: 8px;
}
header .header_navs .parent {
    position: relative;
    display: inline-block;
}
header .header_navs .parent > a::after{
    content: "";
    position: relative;
    top: -3px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-left: 2px solid #333333;
    border-bottom: 2px solid #333333;
    transform: rotate(-45deg);
    margin-left: 10px;
}
header .header_navs .child {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform : translateX(-50%);
    transform : translateX(-50%);
    min-width: 200px;
    background: var(--color-white);
    box-shadow: 0 0 10px 0px rgba(0,0,0,0.2);
    padding: 10px 15px;
    z-index: 10;
}
header .header_navs .child li{
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: solid 1px #333333;
}
header .header_navs .parent:hover .child {
    display: block;
}


@media only screen and (max-width: 1280px) {
    header {
        padding-left: 30px;
    }
    header .header_logo {
        max-width: 380px;
    }
    header .header_navs ul {
        gap: 40px;
    }
    header .header_contact {
        width: 120px;
        height: 120px;
        margin-left: 45px;
    }
    header .header_info {
        gap: 30px;
        margin-bottom: 15px;
    }
}
@media only screen and (max-width: 1280px) {
    header .header_logo {
        max-width: 280px;
    }
    header .header_info {
        margin-bottom: 10px;
    }
    header .header_sns {
        max-width: 220px;
    }
    header .header_navs ul {
        gap: 25px;
    }
    header .header_navs a{
        font-size: 15px;
    }
    header .header_contact {
        margin-left: 30px;
    }
    header .header_tel {
        max-width: 200px;
    }
    header .header_navs .parent > a::after{
        right: 3px;
    }
}
@media only screen and (max-width: 1000px) {
    header .header_info,
    header .header_navs ul{
        display: none;
    }
    header .header_contact img,
    header .header_contact p{
        display: none;
    }
    header .header_contact {
        width: 80px;
        height: 80px;
        background: var(--main-color);
    }
}

@media only screen and (max-width: 479px) {
    header {
        padding-left: 20px;
    }
    header .header_contact {
        width: 60px;
        height: 60px;
    }
}

/* -----------------------------------------------

	 hamburger

----------------------------------------------- */

/*　ハンバーガーボタン　*/
.hamburger {
    display : none;
    position: absolute;
    z-index : 11;
    top   : 37px;
    -webkit-transform : translateY(-50%);
    transform : translateY(-50%);
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
.hamburger span {
    display : block;
    position: absolute;
    width   : 28px;
    height  : 2px ;
    left    : 50%;
    -webkit-transform : translateX(-50%);
    transform : translateX(-50%);
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span{
    background: #333;
}
.hamburger.active span:nth-child(1) {
    top : 50%;
    left: 20%;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 50%;
    left: 20%;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}

nav.globalMenuSp {
    position: fixed;
    z-index : 10;
    top  : 0;
    left : 0;
    color: #333;
    background: #fff;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100vh;
}

nav.globalMenuSp > ul {
    margin: 0 auto;
    padding: 10px 40px 30px;
    width: 100%;
    max-width: 600px;
    text-align: left;
    height: calc(90vh - 60px);
    overflow-y: scroll;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #333;
}
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
nav.globalMenuSp ul li.spnav-btn{
    margin-top: 30px;
    background: var(--sub-color);
}
nav.globalMenuSp ul li.spnav-btn a{
    color: #fff;
    text-align: center;
    padding: 20px;
    line-height: 1;
}

nav.globalMenuSp ul li a {
    font-weight: 700;
    display: block;
    padding: 20px 0 5px;
    text-decoration :none;
}

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


.globalMenuSp .has-submenu.open .submenu {
    display: block;
}
.globalMenuSp .has-submenu.open .submenu li a{
    padding: 15px 10px 5px;
    display: flex;
    align-items: center;
}
.globalMenuSp .has-submenu.open .submenu li a::before{
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background: #333;
    margin-right: 10px;
}
.globalMenuSp .has-submenu.open .submenu > li:first-child a{
    padding-top: 5px;
}

/* アイコン用の装飾（オプション） */
.globalMenuSp .toggle-submenu::after {
    content: '＋';
    float: right;
    transition: transform 0.3s ease;
}

.globalMenuSp .has-submenu.open .toggle-submenu::after {
    content: '－';
}



@media only screen and (max-width: 1000px) {
    .hamburger {
        right: 18px;
        display: block;
    }
    .hamburger::before{
        content: "";
        display: inline-block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 80px;
        height: 80px;
        border-radius: 50vh;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}
@media only screen and (max-width: 479px) {
    .hamburger {
        right: 8px;
        top: 30px;
    }
    .hamburger::before{
        width: 60px;
        height: 60px;
    }
}



footer{
    padding: 120px 0 125px;
    background: #333333;
}
footer *{
    color: var(--color-white);
}

footer .innerset{
    gap: 220px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

footer .footer_logo{
    max-width: 460px;
    margin-bottom: 30px;
}
footer .footer_contact{
    margin-bottom: 50px;
}
footer .footer_sns{
    background: var(--color-white);
    max-width: 250px;
}
footer .footer_navs{
    gap: 100px;
}
footer .footer_nav > li:not(:last-child){
    margin-bottom: 15px;
}
footer .footer_nav .parent > a{
    margin-bottom: 10px;
    display: inline-block;
}
footer .footer_nav .child a{
    color:  var(--bg-gray);
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
footer .footer_nav .child a::before{
    content: "";
    display: inline-block;
    margin-right: 6px;
    width: 6px;
    height: 1px;
    background:  var(--bg-gray);
}
footer .copyright{
    margin-top: 100px;
    display: block;
    text-align: center;
}


@media only screen and (max-width: 1440px) {
    footer {
        padding: 90px 0;
    }
    footer .innerset {
        gap: 100px;
    }
    footer .footer_navs {
        gap: 60px;
    }
}

@media only screen and (max-width: 768px) {
    footer .innerset{
        flex-direction: column;
    }
    footer .footer_nav > li a{
        display: inline-block;
        width: 100%;
    }
}
@media only screen and (max-width: 479px) {
    footer{
        padding: 60px 0;
    }
    footer .footer_contact span{
        display: none;
    }
    footer .innerset {
        gap: 60px;
    }
    footer .footer_navs{
        gap: 20px;
        flex-direction: column;
    }
    footer .footer_nav > li > a{
        padding-bottom: 10px;
        border-bottom: solid 1px var(--bg-gray);
    }
    footer .footer_nav > li.parent{
        padding-bottom: 5px;
        border-bottom: solid 1px var(--bg-gray);
    }
    footer .copyright {
        margin-top: 60px;
    }
}