.hmb_header {
    display: block;
    position: fixed;
    top: 140px;
    right: 40px;
    width: 80px;
    height: 80px;
    z-index: 100;
}

.hmb_header_btn {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 40px;
    border: 1px solid #0E69B9;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 8px 20px 0 rgba(92, 194, 220, 0.25);
    backdrop-filter: blur(6px);
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}
.hmb_header_btn_line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #0E69B9;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    transition: 0.3s ease-in-out;
}
.hmb_header_btn_line.line_top {
    top: 30px;
    transition: 0.3s ease-in-out;
}
.hmb_header_btn_line.line_middle {
    top: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease-in-out;
}
.hmb_header_btn_line.line_bottom {
    bottom: 30px;
    transition: 0.3s ease-in-out;
}

.hmb_header_btn.is-open .hmb_header_btn_line.line_top {
    top: 39px;
    transform: translate(-50%, -50%) rotate(45deg);
}
.hmb_header_btn.is-open .hmb_header_btn_line.line_middle {
    opacity: 0;
}
.hmb_header_btn.is-open .hmb_header_btn_line.line_bottom {
    bottom: 37px;
    transform: translate(-50%, -50%) rotate(135deg);
}


.hmb_header_menu {
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding-top: 60px;
    box-sizing: border-box;
    font-family: 'Noto Sans JP', sans-serif;
    z-index: 99;
}
.hmb_header_menu_inner {
    padding: 60px 16px 80px;
    max-width: 1213px;
    width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
}
.hmb_header_menu_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hmb_header_menu_list_item {
    width: 100%;
}
.hmb_header_menu_list_item.col_2 {
    width: calc((100% - 36px) / 2);
}
.hmb_header_menu_list_item.col_4 {
    width: calc((100% - 108px) / 4);
}

.hmb_header_menu_list_item_label_btn {
    display: block;
    width: max-content;
    text-decoration: none;
    padding: 10px 20px;
    padding-right: calc(40 / 16 * 1rem);
    border-radius: 10px;
    background: #0E69B9;
    position: relative;
    transition: 0.3s ease;
}
.hmb_header_menu_list_item_label_btn::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    width: 24px;
    height: 24px;
    mask-image: url(../img/btn_arrow.svg);
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: #FFF;
    transition: 0.3s ease;
}
.hmb_header_menu_list_item_label_btn:hover {
    background: #16D0FF;
}
.hmb_header_menu_list_item_label_btn:hover::after {
    right: 1px;
}

.hmb_header_menu_list_item_label_btn_text {
    color: #FFF;
    font-size: calc(16 / 16 * 1rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: calc(0.16 / 16 * 1em);
}

.hmb_header_menu_list_item_link {
    display: block;
    width: 100%;
    text-decoration: none;
    position: relative;
    padding-bottom: 8px;
    border-bottom: 1px solid #5CC2DC;
}
.hmb_header_menu_list_item_link_text {
    color: #0E69B9;
    font-size: calc(16 / 16 * 1rem);
    font-weight: 700;
    line-height: 1.2;
    height: 60px;
    letter-spacing: calc(0.16 / 16 * 1em);   
    padding-right: calc(40 / 16 * 1rem);
    display: flex;
    align-items: center;
    width: fit-content;
    position: relative;
    transition: 0.3s ease;
}
.hmb_header_menu_list_item_link_text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    mask-image: url(../img/btn_arrow.svg);
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: #0E69B9;
    transition: 0.3s ease;
}
.hmb_header_menu_list_item_link_text:hover {
    color: #16D0FF;
}
.hmb_header_menu_list_item_link_text:hover::after {
    right: -5px;
    background-color: #16D0FF;
}
p.hmb_header_menu_list_item_link .hmb_header_menu_list_item_link_text::after {
    content: none;
}
.hmb_header_menu_list_item_link[target="_blank"] .hmb_header_menu_list_item_link_text::after {
    content: none;
}

.hmb_header_menu_list_item_link_text.long_text {
    padding-right: calc(32 / 16 * 1rem);
}

.hmb_header_menu_list_item_link_text .ico-blank {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    transition: 0.3s ease;
}
.hmb_header_menu_list_item_link .hmb_header_menu_list_item_link_text .ico-blank svg path {
    transition: 0.3s ease;
}
.hmb_header_menu_list_item_link:hover .hmb_header_menu_list_item_link_text .ico-blank {
    right: -5px;
}
.hmb_header_menu_list_item_link:hover .hmb_header_menu_list_item_link_text .ico-blank svg path {
    fill: #16D0FF;
}

.hmb_header_menu_list_sub {
    display: flex;
    align-items: stretch;
    gap: 24px 36px;
    list-style: none;
    padding: 0;
    margin: calc(16 / 16 * 1rem) 0 0 0;
}
.hmb_header_menu_list_sub_item {
    width: calc((100% - 108px) / 4);
}

.hmb_header_menu_list_sub_item:has(.hmb_header_menu_list_sub_item_box) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.hmb_header_menu_list_sub_item_box {
    height: 88px;
}

.hmb_header_menu_list_sub_item_text {
    color: #333;
    font-size: calc(16 / 16 * 1rem);
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: calc(0.64 / 16 * 1em);
    margin-block: 0 calc(8 / 16 * 1rem);
}

.hmb_header_menu_list_sub_item_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hmb_header_menu_list_sub_item_list_item_link {
    display: block;
    width: max-content;
    text-decoration: none;
    position: relative;
    padding-block: calc(4 / 16 * 1rem);
    padding-right: calc(34 / 16 * 1rem);
    transition: 0.3s ease;
}
.hmb_header_menu_list_sub_item_list_item_link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    mask-image: url(../img/btn_arrow.svg);
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: #333741;
    transition: 0.3s ease;
}
.hmb_header_menu_list_sub_item_list_item_link:hover {
    color: #394563;
}
.hmb_header_menu_list_sub_item_list_item_link:hover::after {
    right: -5px;
    background-color: #394563;
}

.hmb_header_menu_list_sub_item_list_item_link_text {
    display: block;
    color: #333741;
    text-align: center;
    font-size: calc(14 / 16 * 1rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: calc(0.14 / 16 * 1em);
}

.hmb_header_menu_list_sub_item_list_sub {
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: none;
    padding: 0;
    padding-left: calc(16 / 16 * 1rem);
    border-left: 1px solid #DDD;
    margin: calc(4 / 16 * 1rem) 0 0 0;
}
.hmb_header_menu_list_sub_item_list_sub_item_link {
    display: block;
    width: max-content;
    text-decoration: none;
    position: relative;
    padding-block: calc(4 / 16 * 1rem);
    padding-right: calc(34 / 16 * 1rem);
}
.hmb_header_menu_list_sub_item_list_sub_item_link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    mask-image: url(../img/btn_arrow.svg);
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: #333741;
}
.hmb_header_menu_list_sub_item_list_sub_item_link_text {
    display: block;
    color: #333741;
    text-align: center;
    font-size: calc(14 / 16 * 1rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: calc(0.14 / 16 * 1em);
}

.col_2 .hmb_header_menu_list_sub {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.col_2 .hmb_header_menu_list_sub_item {
    width: 100%;
}

.col_2 .hmb_header_menu_list_sub.col_2 {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 8px 24px;
}
.col_2 .hmb_header_menu_list_sub.col_2 .hmb_header_menu_list_sub_item {
    width: calc((100% - 24px) / 2);
}

.hmb_header_menu_list_sub_item_link {
    display: block;
    width: max-content;
    text-decoration: none;
    position: relative;
    padding-block: calc(4 / 16 * 1rem);
    padding-right: calc(34 / 16 * 1rem);
    transition: 0.3s ease;
}
.hmb_header_menu_list_sub_item_link::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    mask-image: url(../img/btn_arrow.svg);
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
    background-color: #333741;
    transition: 0.3s ease;
}
.hmb_header_menu_list_sub_item_link:hover {
    color: #394563;
}
.hmb_header_menu_list_sub_item_link:hover::after {
    right: -5px;
    background-color: #394563;
}
.hmb_header_menu_list_sub_item_link_text {
    display: block;
    color: #333741;
    text-align: center;
    font-size: calc(14 / 16 * 1rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: calc(0.14 / 16 * 1em);
}

@media screen and (max-width: 1166px) {
    .hmb_header_menu_list_sub {
        flex-wrap: wrap;
    }
    .hmb_header_menu_list_sub_item {
        width: calc((100% - 36px) / 2);
    }
    .hmb_header_menu_list_item.col_2 {
        width: 100%;
    }
    .hmb_header_menu_list_item.col_4 {
        width: calc((100% - 36px) / 2);
    }
}

@media screen and (max-width: 768px) {
    .hmb_header {
        top: 100px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    .hmb_header_btn {
        padding: 5px;
    }
    .hmb_header_btn .hmb_header_btn_line.line_top {
        top: 33px;
    }
    .hmb_header_btn .hmb_header_btn_line.line_bottom {
        bottom: 33px;
    }
    .hmb_header_btn.is-open .hmb_header_btn_line.line_top {
        top: 27px;
    }
    .hmb_header_btn.is-open .hmb_header_btn_line.line_bottom {
        bottom: 25px;
    }

    .hmb_header_menu {
        padding-top: 0;
    }
    .hmb_header_menu_list_item.col_4 {
        width: 100%;
    }
    .hmb_header_menu_list_sub_item {
        width: 100%;
    }
    .hmb_header_menu_list_sub_item_box {
        height: auto;
    }
    .hmb_header_menu_list_sub_item_link_text {
        text-align: start;
    }
    .col_2 .hmb_header_menu_list_sub.col_2 .hmb_header_menu_list_sub_item {
        width: 100%;
    }
}

#suntoryCommonWrapper .hmb_header_menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, pointer-events 0.3s ease-in-out;
    height: 100%;
}

#suntoryCommonWrapper:has(.hmb_header_btn.is-open) .hmb_header_menu{
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    overflow-y: auto;
    height: 100%;
}

body:has(.hmb_header_btn.is-open) {
    overflow: hidden !important;
}

.suntory_contents_fv {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    order: 2;
    position: relative;
}
.suntory_contents_fv_title {
    width: fit-content;
    box-sizing: border-box;
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translate(-50%, 0);
}
.el_suntory_contents_fv_title {
    color: #FFF;
    text-align: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: calc(48 / 16 * 1rem);
    font-weight: 700;
    line-height: 120%;
}
.el_suntory_contents_fv_subtitle {
    color: #0E69B9;
    text-align: center;
    font-size: calc(14 / 16 * 1rem);
    font-weight: 800;
    line-height: 150%;
    letter-spacing: calc(1.4 / 16 * 1em);
    margin-top: 13px;
}
.suntory_contents_fv_bg {
    width: 100%;
    height: auto;
    box-sizing: border-box;
}
.suntory_contents_fv_bg img {
    width: 100%;
    height: auto;
    display: block;
}

.br_sp {
    display: none;
}

@media screen and (max-width: 767px) {
    .suntory_contents_fv {
        order: 1;
    }
    .suntory_contents_fv_title {
        top: 80px;
    }
    .el_suntory_contents_fv_title {
        font-size: calc(36 / 16 * 1rem);
    }
    .br_sp {
        display: block;
    }
}

.hmb_header_menu_list_item_link a,
.hmb_header_menu_list_sub_item_link a,
.hmb_header_menu_list_sub_item_list_item_link a,
.hmb_header_menu_list_sub_item_list_sub_item_link a {
    transition: 0.3s ease-in-out;
}
.hmb_header_menu_list_item_link a:hover,
.hmb_header_menu_list_sub_item_link a:hover,
.hmb_header_menu_list_sub_item_list_item_link a:hover,
.hmb_header_menu_list_sub_item_list_sub_item_link a:hover {
    opacity: 0.5;
}