@charset 'utf-8';


.header_wrap { position: fixed; top: 0; right: 0; left: 0; display: flex; align-items: center; justify-content: space-between; padding: 16px 5vw; background: #FFF; border-bottom: 1px solid #707F89; z-index: 100; }
.header_margin { display: block; width: 100%; height: 81px; }
/* logo */
.header_top_link { display: flex; }
.header_logo { width: 160px; }
/* nav */
.header_right { display: flex;  align-items: center;  gap: 24px; }
#nav { position: fixed; top: 81px; bottom: 0; right: 0; left: 0; background: rgba(0, 0, 0, 0); transition: all 0.3s; pointer-events: none; z-index: -1; }
#nav.is-open { background: rgba(0, 0, 0, 0.27); pointer-events: auto; }
#nav::before { content: ''; position: absolute; display: block; top: -81px; right: 0; left: 0; height: 80px; background: #FFF; border-bottom: 1px solid #707F89; z-index: 1; }
#nav .header_menu_list { background: #FFF; transform: translateY(-100%); transition: transform 0.3s ease-out; }
#nav.is-open .header_menu_list { transform: translateY(0%); }
#nav .header_menu_list li { border-bottom: 1px solid #707F89; }
#nav .header_menu_list li a { display: inline-block; width: 100%; padding: 16px; }
/* LINE */
.header_line_icon { display: block; width: 48px; }
.header_line_text { display: none; }
/* menuBtn */
#menuBtn { position: relative; display: flex; flex-direction: column; justify-content: space-between; width: 40px; height: 32px; padding: 0; background: none; border: none; cursor: pointer; z-index: 1; }
#menuBtn .bar { height: 3px; width: 100%; background: #111; border-radius: 2px; transition: all .3s; }
#menuBtn[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(15px) rotate(45deg); }
#menuBtn[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
#menuBtn[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-14px) rotate(-45deg); }
#menuBtn::before { content: ''; position: absolute; top: 0px; bottom: 0px; right: 0px; left: 0px; z-index: 1; }

@media screen and (min-width:470px) {
    .header_wrap { padding: 14px 5vw; }
    /* LINE */
    .header_line_link { display: flex; align-items: center; gap: 8px; padding: 4px 6px; border: 2px solid #1EC755; background: #FFF; }
    .header_line_icon { width: 40px; }
    .header_line_text { display: block; color: #000; font-size: 18px; }
}

@media screen and (min-width:1160px) {
    .header_wrap { padding: 20px 5vw; }
    .header_margin { height: 95px; }
    /* logo */
    .header_logo { width: 180px; }
    /* nav */
    .header_right { gap: 12px; }
    #nav { position: static; display: block !important; background: transparent; pointer-events: auto; z-index: 2; }
    #nav .header_menu_list { display: flex; transform: none; }
    #nav .header_menu_list li { border-bottom: none; }
    #nav .header_menu_list li a { width: auto; padding: 12px; }
    /* menuBtn */
    #menuBtn { display: none; } 
}