/*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;
}

/*Suponsorship_emptyで使っているcss*/
#suponsorship_empty{
    width: 100%;
    height: 200px;
}

/*suponsorship_headerで使っているcss*/
#suponsorship_header{
   width: 100%;        
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}
    
#suponsorship_header h1{
    position: absolute;
    bottom: 0px;
    font-size: 50px;
    font-weight: bolder;
    font-family: "Arial",sans-serif;        
    border-bottom: solid 4px #ea6c1e;
    display: inline-block;    
}

/*suponsorshipで使っているcs*/
#suponsorship{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#suponsorship h1{
    font-size: 50px;
    font-family: "Arial",sans-serif;
    font-weight: bolder;
    border-bottom: solid 4px #ea6c1e;
    display: inline-block;
    margin-bottom: 30px;
}

#suponsorship h2{
    font-size: 40px;
    font-family: "Arial",sans-serif;
    font-weight: bold;
    border-bottom: solid 4px rgb(0, 66, 164);
    display: inline-block;
    margin-bottom: 50px;
}

#suponsorship h3{
    font-size: 40px;
    font-family: "Arial",sans-serif;
    font-weight: bold;
    margin-bottom: 80px;
}

#suponsorship p{
    font-size: 24px;
    font-family: "Arial",sans-serif;
    margin-bottom: 100px;
}


#suponsorship .suponsorship_introduction{
    margin-bottom: 150px;
}

#suponsorship .suponsorship_value{
    margin-bottom: 150px;
}
#suponsorship .suponsorship_value_table{
    display: flex;
    align-items: center;
    justify-content: center;
}

#suponsorship .suponsorship_desire{
    margin-bottom: 150px;
}

#suponsorship .suponsorship_desire .last{
    margin-bottom: 150px;
}

#suponsorship .contact a{
    color: blue;
}

/*fotterで使っているcss*/
#footer {
    height: 30px;
    width: 100%;
    text-align: center;
    padding-top: 10px;
}

#footer p{
    font-size: xx-small;
}

@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;
    }

    #suponsorship_header h1{
        font-size: 45px;
    }

    #suponsorship h1{
        font-size: 45px;
    }
    
    #suponsorship h2{
        font-size: 35px;
    }
    
    #suponsorship h3{
        font-size: 20px;
    }
    
    #suponsorship p{
        font-size: 20px;
    }   
}

@media screen and (max-width:780px) {
    #suponsorship_header h1{
        font-size: 30px;
    }

    #suponsorship h1{
        font-size: 30px;
    }
    
    #suponsorship h2{
        font-size: 30px;
    }
    
    #suponsorship h3{
        font-size: 18px;
    }
    
    #suponsorship p{
        font-size: 15px;
    }   
    
}

@media screen and (max-width:600px) {
    #suponsorship_header h1{
        font-size: 25px;
    }

    #suponsorship h1{
        font-size: 25px;
    }
    
    #suponsorship h2{
        font-size: 25px;
    }
    
    #suponsorship h3{
        font-size: 18px;
    }
    
    #suponsorship p{
        font-size: 13px;
    }   
    
}