@charset "utf-8";
.header_area{
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 500;
    -webkit-backface-visibility:hidden;
    backface-visibility: hidden;
    background-color: #fff;
    scrollbar-gutter: stable;
    opacity: 1;
    transition: opacity .4s cubic-bezier(.25, .46, .45, .94), visibility .4s cubic-bezier(.25, .46, .45, .94);
    visibility: visible;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    letter-spacing: .04em;
}

.header_area.is-hide{
    opacity: 0;
    visibility: hidden;
}

.header_area a{
    transition: opacity .4s cubic-bezier(.25, .46, .45, .94);
}

.header_area a:hover{
    opacity: 70%;
}

.header_announce{
    display: grid;
    grid-template-columns: min-content 1fr min-content;
    grid-template-rows: auto auto;
    justify-content: space-between;
    align-content: center;
    background-color: #807878;
    color: #fff;
    padding: 10px 12px;
}

.img_announce{
    align-self: center;
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../../../theme/hirakatamall/assets/images/icon_announce.svg") no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin: 0 12px 0 0;
}

.header_announce h3{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    font-size: clamp(0.813rem, -0.938rem + 4.67vw, 1.25rem);
    font-weight: 600;
    letter-spacing: .1em;
    line-height: 1.8;
}

.text_announce{
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    font-size: clamp(0.75rem, 0.313rem + 2vw, 1.25rem);
}

.text_announce a{
    border-bottom: 1px solid #fff;
    display: inline-block;
}

.btn_announce_close{
    align-self: center;
    grid-column: 3 / 4;
    grid-row: 1 / 3;
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.btn_announce_close::before, .btn_announce_close::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 24px;
  background: #fff;
}
 
.btn_announce_close::before{
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.btn_announce_close::after{
  transform: translate(-50%,-50%) rotate(-45deg);
}

.header_gnavi{
    display: grid;
    grid-template-columns: max-content auto min-content;
    align-content: center;
    justify-content: space-between;
    padding: 20px 12px;
    background-color: #fff;
    box-shadow: 0 3px 4px rgb(0 0 0 / 6%);
}

.border-on{
    border-top: 5px solid #807878;
}

.header_logo{
    display: grid;
    align-content: center;
}

.header_logo img{
    width: min(45.507vw, 466px);
}

.header_pc_gnavi{
    display: none;
}

.header_navi_icons{
    justify-self: end;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
    align-items: center;
    gap: 0 16px;
}

.header_navi_icons img{
    width: clamp(1.5rem, 4vw, 1.875rem);
}

.btn_gnavi_toggle{
    justify-self: end;
    align-self: center;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: repeat(3, 1fr);
    justify-content: space-between;
    gap: 8px 0;
    width: 32px;
    height: 22px;
    cursor: pointer;
}

.btn_gnavi_toggle span{
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #807878;
}

.drawer_menu_container{
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgb(128 120 120 / 40%);
    backdrop-filter: brightness(40%);
    -webkit-backdrop-filter: brightness(40%);
    overscroll-behavior-y: contain;
    overflow-y: auto;
    display: none;
    z-index: 1000;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    letter-spacing: .04em;
}

.drawer_menu_container .font_en{
    font-family: "skolar-sans-latin-compressed", sans-serif;
}

.drawer_menu_container a{
    transition: opacity .4s cubic-bezier(.25, .46, .45, .94);
}

.drawer_menu_container a:hover{
    opacity: 70%;
}

.drawer_menu_inner{
    width: 100%;
    margin: 0 auto;
    padding: min(3.802vw, 73px) calc(12px + 8px) min(2.604vw, 50px);
    display: grid;
    grid-template-columns: auto 28px;
    grid-template-rows: max-content auto min-content min-content;
    align-content: start;
    color: #fff;
}

.navi_ttl{
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    color: #fff;
    border-bottom: 1px solid #fff;
    margin: 0 min(5.859vw, 60px) 0 0;
}

.navi_ttl::before{
    content: "MENU";
    font-family: "skolar-sans-latin-compressed", sans-serif;
    font-size: clamp(2rem, 0.939rem + 2.83vw, 2.75rem);
    letter-spacing: .1em;
    font-weight: 500;
}

.btn_navi_close{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
    align-self: end;
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
    transform: translate(0, 15px);
}

.btn_navi_close::before, .btn_navi_close::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  border-radius: 2px;
  background: #fff;
}
 
.btn_navi_close::before{
  transform: translate(-50%,-50%) rotate(45deg);
}
 
.btn_navi_close::after{
  transform: translate(-50%,-50%) rotate(-45deg);
}

.navi_lists, .navi_other_lists, .navi_copy{
    grid-column: 1 / 3;
}

.navi_lists{
    grid-row: 2 / 3;
    display: grid;
    justify-content: space-between;
    align-items: center;
    gap: 30px 0;
    padding: 40px 0 0 20px;
}

.navi_lists a{
    display: grid;
    grid-template-columns: clamp(2.813rem, 0.313rem + 10vw, 5rem) auto;
    column-gap: clamp(1.25rem, -5rem + 16.67vw, 2.813rem);
    align-items: center;
}

.icon_navi_list{
    display: grid;
    place-content: center;
}

.navi_lists .icon{
    width: 100%;
    height: 67px;
    margin: 0 auto;
    align-self: center;
}
    
.navi_lists li:nth-of-type(2) .icon{
    width: min(8.4vw, 63px);
}
    
.navi_lists li:nth-of-type(5) .icon{
    width: min(7.2vw, 54px);
}
    
.navi_lists li:nth-of-type(7) .icon{
    width: min(9.6vw, 72px);
}

.navi_lists span{
    display: block;
    color: #fff;
    font-weight: 600;
}

.text_navi_list .font_en{
    font-size: clamp(1.5rem, -1rem + 6.67vw, 2.125rem);
    line-height: 1.2;
    letter-spacing: .06em;
}

.text_navi_list .font_ja{
    font-size: clamp(0.875rem, 0.732rem + 0.57vw, 1rem);
    letter-spacing: .1em;
}

.navi_other_lists{
    grid-row: 3 / 4;
    border-top: 1px solid #fff;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    gap: 30px 0;
    margin: clamp(2.813rem, -8.97rem + 12.16vw, 5.625rem) 0 0;
    padding: 30px 0;
}

.lists_text, .lists_sns{
    display: grid;
}

.lists_text{
    justify-content: center;
    gap: 50px 0;
    border-bottom: 1px solid #fff;
    padding: 0 0 30px;
}

.lists_text a{
    font-size: clamp(1rem, 0.857rem + 0.57vw, 1.125rem);
    letter-spacing: .1em;
    display: grid;
    grid-template-columns: 1fr min-content;
    column-gap: 30px;
    align-items: center;
}

.lists_text a::after{
    content: "";
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="15,16"><path stroke="%23fff" fill="none" d="M.754.437l12.765,7.563L.754,15.563" /></svg>');
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    width: 15px;
    height: 16px;
}

.lists_sns{
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 0 68px;
}

.lists_sns img{
    width: clamp(2.5rem, -2rem + 12vw, 3.625rem);
}

.navi_copy{
    grid-row: 4 / 5;
    text-align: center;
    font-size: clamp(0.813rem, 0.741rem + 0.11vw, 0.875rem);
    letter-spacing: .1em;
    font-weight: 500;
    margin: clamp(1.5rem, -5.307rem + 7.03vw, 3.125rem) 0 0;
}

@media (600px <= width) {
    .header_announce{
        padding: 10px 30px;
    }

    .header_gnavi{
        justify-content: normal;
        padding: 20px 30px;
    }

    .header_navi_icons{
        gap: 0 30px;
        margin: 0 min(7.421vw, 76px) 0 0;
    }

    .lists_text, .lists_sns{
        grid-template-columns: repeat(2, auto);
    }
    
    .lists_text{
        justify-content: space-between;
        gap: 0 min(6.51vw, 125px);
    }

    .img_announce{
        width: 24px;
        height: 24px;
        margin: 0 16px 0 0;
    }

    .drawer_menu_inner{
        padding: min(3.802vw, 73px) calc(30px + 20px) min(2.604vw, 50px);
    }

    .btn_gnavi_toggle{
        gap: 10px 0;
        width: clamp(2.188rem, -2.083rem + 6.67vw, 2.5rem);
        height: 25px;
    }

    .navi_lists{
        gap: 40px 0;
    }
}

@media (1024px < width) {
    .header_announce{
        grid-template-columns: repeat(4, auto);
        grid-template-rows: auto;
        justify-content: center;
        padding: 10px 0;
    }
    
    .img_announce{
        grid-column: 1 / 2;
        margin: 0;
    }
    
    .header_announce h3{
        grid-column: 2 / 3;
        font-size: .938rem;
        margin: 0 50px 0 20px;
    }

    .text_announce{
        grid-column: 3 / 4;
        font-size: 1rem;
    }
    
    .btn_announce_close{
        grid-column: 4 / 5;
        width: 24px;
        height: 24px;
        margin: 0 0 0 50px;
    }

    .img_announce, .header_announce h3, .text_announce, .btn_announce_close{
        grid-row: 1 / 2;
    }

    .header_gnavi{
        grid-template-columns: repeat(4, auto);
        justify-content: space-between;
        height: 75px;
        padding: 10px clamp(1.875rem, -29.544rem + 32.43vw, 9.375rem);
    }

    .header_logo img{
        width: clamp(14rem, 1.862rem + 18.95vw, 19.625rem);
    }

    .header_pc_gnavi{
        display: grid;
        grid-template-columns: repeat(4, auto);
        justify-content: space-between;
        gap: 0 min(2.604vw, 50px);
        margin: 0 20px;
    }
    
    .header_pc_gnavi a{
        display: grid;
        grid-template-columns: 40px auto;
        column-gap: min(0.781vw, 15px);
        align-items: center;
        font-size: clamp(0.813rem, -64.5rem + 100vw, 0.875rem);
        /*font-size: .875rem;*//*noto*/
        font-weight: 600;
        letter-spacing: .05em;
        line-height: 1;
    }

    .header_pc_gnavi div{
        display: grid;
    }

    .header_pc_gnavi svg{
        width: 40px;
        height: 30px;
        justify-self: end;
    }

    .header_navi_icons{
        justify-self: auto;
        gap: 0 20px;
        margin: 0 20px 0 0;
    }

    .btn_gnavi_toggle{
        justify-self: auto;
    }

    .drawer_menu_container{
        width: 90%;
        max-width: 1510px;
    }

    .drawer_menu_inner{
        align-content: space-between;
        padding: min(3.802vw, 73px) min(6.77vw, 130px) min(2.604vw, 50px);
    }

    .navi_ttl{
        width: clamp(18.75rem, -2.155rem + 32.63vw, 28.438rem);
        height: clamp(1.25rem, -0.099rem + 2.11vw, 1.875rem);
        background: url("../../../theme/hirakatamall/assets/images/ft_logo.svg") no-repeat;
        background-size: contain;
        vertical-align: middle;
        border-bottom: none;
        margin: 0;
    }

    .navi_ttl::before{
        display: none;
        content: "";
    }

    .btn_navi_close{
        align-self: auto;
        transform: scale(1.5) translate(0, 0);
    }

    .navi_lists{
        grid-template-columns: repeat(3, max-content);
        grid-template-rows: repeat(3, 1fr);
        justify-content: space-between;
        align-items: center;
        gap: min(4.687vw, 90px) 30px;/*min(8.854vw, 170px)*/
        padding: min(5.208vw, 100px) min(3.125vw, 60px) 0 0;
    }

    .navi_lists a{
        grid-template-columns: clamp(5rem, -2.321rem + 11.43vw, 6.25rem) auto;
        column-gap: clamp(0.875rem, -1.283rem + 3.37vw, 1.875rem);
    }

    .navi_lists li:first-of-type .icon{
        width: min(4.166vw, 80px);
    }
    
    .navi_lists li:nth-of-type(2) .icon{
        width: min(3.281vw, 63px);
    }
    
    .navi_lists li:nth-of-type(3) .icon{
        width: min(5.104vw, 98px);
    }
    
    .navi_lists li:nth-of-type(4) .icon{
        width: min(4.062vw, 78px);
    }
    
    .navi_lists li:nth-of-type(5) .icon{
        width: min(2.812vw, 54px);
    }
    
    .navi_lists li:nth-of-type(6) .icon{
        width: min(4.166vw, 80px);
    }
    
    .navi_lists li:nth-of-type(7) .icon{
        width: min(3.229vw, 62px);
    }
    
    .navi_lists li:nth-of-type(8) .icon{
        width: min(3.854vw, 74px);
    }
    
    .navi_lists li:nth-of-type(9) .icon{
        width: min(4.166vw, 80px);
    }

    .text_navi_list .font_en{
        font-size: clamp(1.125rem, 0.451rem + 1.05vw, 1.438rem);
    }

    .navi_other_lists{
        border-bottom: 1px solid #fff;
        grid-template-columns: repeat(2, auto);
        gap: 0 min(12.5vw, 240px);
        padding: clamp(1.5rem, -2.689rem + 4.32vw, 2.5rem) 0;
    }
    
    .lists_text, .lists_sns{
        justify-content: space-between;
        gap: 0 min(2.395vw, 46px);
    }

    .lists_text{
        gap: 0 min(6.51vw, 125px);
        border-bottom: none;
        padding: 0;
    }

    .lists_text a{
        font-size: clamp(0.938rem, 0.866rem + 0.11vw, 1rem);
    }
    
    .lists_sns img{
        width: 40px;
    }
    
}