/*header_wrapperで使っているcss*/
#header_wrapper{
    border-bottom: solid 1px #d0d0d0;
    background-color: white;
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
 }
 
 #header_wrapper .header_logo{
     height: 65px;
     position: absolute;
     left: 10px;
 }
 
 #header_wrapper .header_sns{
     position: absolute;
     right: 20px;
     width: 150px;
     padding-top: 15px;
     display: flex;
     justify-content: space-around;
 }
 
 #header_wrapper .header_navlist{
     font-family: "Rubik", sans-serif;
     color: #00000075;
     font-size: 17px;
     width: auto;
     list-style: none; 
     display: flex;
     justify-content: space-around;
 }
 
 .header_navlist_item1,.header_navlist_item2,.header_navlist_item3,.header_navlist_item4,.header_navlist_item5,.header_navlist_item6{
     position: relative;
     margin-left: 30px;
 }
 
 .header_navlist_item1::after,.header_navlist_item2::after,.header_navlist_item3::after,.header_navlist_item4::after,.header_navlist_item5::after,.header_navlist_item6::after{
     position: absolute;
     left: 0;
     content: '';
     width: 100%;
     height: 2px;
     background: #ea6c1e;
     bottom: -3px;               
     transform: scale(0, 1);     
     transform-origin: left top; 
     transition: 0.3s; 
 }
     
 .header_navlist_item1:hover::after,.header_navlist_item2:hover::after,.header_navlist_item3:hover::after,.header_navlist_item4:hover::after,.header_navlist_item5:hover::after,.header_navlist_item6:hover::after{
     transform: scale(1, 1);     
 }

 .header_hamburger{
    display: none
}

#header_hamburger_navigation{
    display: none;
}
 
/*Contact_emptyで使っているcss*/
#Contact_empty{
    width: 100%;
    height: 130px
}

 /*Contactで使っているcss*/
#Contact .Contact_title{
    width: 100%;
    display: flex;   
    justify-content: center;
}

#Contact .Contact_title h1{
    height: auto;
    font-family:"Arial",sans-serif ;
    font-size: 50px;
    font-weight: bolder;
    border-bottom: solid 4px #ea6c1e;
    display: inline-block;
}

#Contact .Contact_list{
    background-color: #f5f5f5;
    height: auto;
    padding-top: 50px;
    text-align: center;
}

#Contact .Contact_list iframe{
    max-width: 80%;
}

#Contact .Contact_list p{
    display: none;
}

/*fotterで使っているcss*/
#footer{
    width: 100%;
    font-size: xx-small;
    text-align: center;
    padding-top: 20px;
}

@media screen and (max-width:768px){
    #Contact .Contact_list iframe{
        display: none;
    }
    
    #Contact .Contact_list p{
        display: flex;
        flex-direction: column;
        font-family:"Arial",sans-serif ;
        font-size: 15px;
    }

    #Contact .Contact_list a{
        color: blue;
}
}

@media screen and (max-width: 1024px) {
    #header_wrapper .header_navlist, #header_wrapper .header_sns{
        display: none;
    }

    #header_wrapper .header_hamburger{
        border: solid 1px gray;
        border-radius: 8px;
        filter:drop-shadow(1px 1px 1px #5e5e5e);
        position: absolute;
        top: 10px;
        right: 20px;
        height: 50px;
        width: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
    }

    #header_wrapper .header_hamburger span{
        padding: 5px;
        border-bottom: solid 3px gray;
        width: 60%;
        height: 2px;
    }

    #header_hamburger_navigation{
        z-index: 4;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background: rgba(0, 0, 0, .8);
        transition: all .2s ease-in-out;
        opacity: 0;
        transform: translateY(-100%);
    }

    #header_hamburger_navigation ul{
        color: white;
        font-family: "Rubik", sans-serif;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #header_hamburger_navigation li{
        margin: 20px;
    }

    #header_hamburger_navigation .header_hamburger_navigaton_sns{
        border: solid 3px white;
    }

    #header_hamburger_navigation.toggle{
        transform: translateY( 0 );
        opacity: 1;
    }
}

@media screen and (max-width:470px){
    #Contact .Contact_title h1{
        font-size: 40px;
    }

    #Contact .Contact_list p{
        font-size: 10px;
    }
    
}