.site-footer {
    padding: 30px 20px 30px 20px;
    background-color: #706e6f;
    color: #ffffff;
    width: 100%;
}

.site-footer a {
    color: #ffffff;
}

.site-info {
    text-align: center;
    padding: 20px 0;
}

.footer_logo {
    width: 200px !important;
}

.footer_img_tabi {
    width: 230px;
}

.site-info i {}

.my-small {
    font-size: 23px !important;
    margin: 0 15px;
}

.header_custom {
    width: 100%;
    margin: auto;
    background-color: #4D4D4D;
    padding: 16px 0;
    position: relative;
    z-index: 999;
}

.header_flex {
    display: flex;
    justify-content: center;
    width: 95%;
    gap: 20px;
    margin: 0 auto;
}

.header_block1 {
    width: 20%;
    margin: auto 0;
}

.header_block1 img {
    width: 100% !important;
    max-width: 250px !important;
}

.header_block2 {
    width: 70%;
    margin: auto;
}

.header_block3 {
    width: 10%;
    margin: auto;
}

.header_block3_a {
    border: solid 2px #fff;
    border-radius: 5px;
    color: #fff;
    padding: 8px 20px;
    text-align: center;
    display: block !important;
}

.header_block3_a:hover {
    color: #000;
    background-color: #fff;
    text-decoration: none;
}

.header_block2_flex {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: auto;
}

.menu_a {
    color: #fff !important;
}

.menu_a:hover {
    text-decoration: none;
}

.gnavi__lists {
    display: flex;
    margin: auto;
}

.gnavi__list {
    width: 20%;
    height: 30px;
    position: relative;
    transition: all .3s;
    list-style: none;
}

.gnavi__list:hover {
    background-color: #fff;
    color: #000;
}

.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 400;
    transition: all .3s;
}

.gnavi__list:hover a {
    color: #000;
}

.dropdown__lists {
    display: none;
    /*デフォルトでは非表示の状態にしておく*/
    width: 100% !important;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 1000;
    padding-inline-start: 0 !important;
}

.gnavi__list:hover .dropdown__lists {
    display: block;
    /*Gナビメニューにホバーしたら表示*/
}

.dropdown__list {
    background-color: #fff;
    color: #000;
    width: 100% !important;
    height: 30px;
    transition: all .3s;
    position: relative;
    list-style: none;
}

.dropdown__list:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}

.dropdown__list:hover {
    background-color: #fff;
    color: #000;
}

.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-decoration: none;
    position: relative;
}

.dropdown__lists {
    visibility: hidden;
    /*デフォルトでは非表示の状態にしておく*/
    opacity: 0;
    /*不透明度0*/
    transition: all .3s;
    /*表示の変化を0.3秒に指定*/
    width: 100% !important;
    position: absolute;
    top: 30px;
    left: 0;
}

.gnavi__list:hover .dropdown__lists {
    visibility: visible;
    /*Gナビメニューにホバーしたら表示*/
    opacity: 1;
    /*不透明度1*/
}