header{
    position: relative;
    z-index: 10;
}
body{
    font-family: 'Noto Sans JP', sans-serif;
}
.header_container{
    background-color: #2B2B2B;
    position: fixed;
    top: -0.001px;
    width: 100%;
}
.header_wrapper{
    max-width: 1246px;
    margin: 0 auto;
    padding-top: 5px;
    padding-bottom: 5px;
}
.header_flex01 a img{
    text-decoration: none;
}
.header_flex01 img{
    width: 160px;
    vertical-align: middle;
}
.header_flex_content{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.header_flex02 ul{
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}
.header_flex02 ul li{
    padding-left: 0;
}
.header_flex02 ul li a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
}
/*----------------*/
/*
---ボタン部分---
*/
/*----------------*/
.header_button_flex_area{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    background-color: #f2c300;
    border: 1px solid #ffffff;
    box-sizing: border-box;
    min-width: 300px;
    padding: 5px;
    border-radius: 5px;
    min-height: 60px;
    max-height: 60px;
}
.header_button_flex_area02 .header_button_flex_area{
    background-color: #03C7D5;
}
.header_button_flex01{
    width: 15%;
}
.header_button_flex02{
    width: 70%;
    min-width: 190px;
    max-width: 190px;
}
.header_button_flex03{
    width: 15%;
}
.header_button_border{
    width:0.5px;
    height: 60px;
    background-color: #ffffff;
}
.header_button_flex01{
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_button_flex01 i{
    font-size: 20px;
}
.header_button_flex02 p{
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.header_button_flex02 p span{
    font-size: 12px;
}
.header_button_flex03 i{
    font-size: 20px;
}

/*----------------*/
/*
---レスポンシブ---
*/
/*----------------*/
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 33px;
    cursor: pointer;
}
.hamburger span {
    height: 4px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: #2B2B2B;
    z-index: 999;
    transition: all 0.5s ease;
    padding-top: 80px;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
}
.mobile-menu ul li {
    margin: 20px 0;
}
.mobile-menu ul li a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
}
.mobile-menu.open {
    left: 0;
}
.close-btn {
    position: absolute;
    top: 16px;
    right: 30px;
    font-size: 36px;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}
.close-btn:hover {
    color: #d4af37;
    transform: scale(1.1);
}
.close-btn i {
    font-size: 40px;
}
.header_flex03 a{
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    width: 200px;
}
@media screen and (max-width: 1246px) {
    .header_wrapper{
        width: 98vw;
    }
    .header_flex02 {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}
@media(min-width:769px){
    .header_flex03{
        display: none;
    }
}
@media(max-width:768px){
    .hamburger {
        flex-direction: column;
        justify-content: space-between;
        width: 44px;
        height: 44px;
        cursor: pointer;
        position: fixed;
        bottom: 5px;
        right: 5px;
        z-index: 10;
        background-color: #00666d;
        border-radius: 10px;
        padding: 10px;
        box-sizing: border-box;
        aspect-ratio: 1/1;
    }
    .hamburger span {
        height: 2.5px;
        background: #fffefe;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    .header_flex01 img{
        width: 100px;
    }
    .header_button_flex_area{
        min-width: 160px;
        min-height: 32.77px;
        max-height: 32.77px;
        border-radius: 0;
    }
    .header_button_border{
        height: 32.77px;
    }
    .header_button_flex02{
        max-width: 140px;
        min-width: 140px;
    }
    .header_button_flex02 p{
        font-size: 12px;
    }
    .header_button_flex02 p span{
        font-size: 8px;
    }
    .header_button_flex03{
        display: none;
    }
}
