/* ##### basic settings ##### */
:root {
    font-size: 16px;
    line-height: 1.7;
    font-feature-settings: "palt";

    /* colors */
    --white: #ffffff;

    /* sizes */
    --headerH: 92px;
    --hambergerPosX: 1.5rem;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font_basic);
    overflow-x: hidden;
    background: var(--bgbasic);
    color: var(--txt_basiccolor);
    padding-top: var(--headerH);
    max-width: 100vw;
}

article {
    max-width: 100vw;
    overflow: hidden;
}

a {
    color: var(--txt_linkcolor);
    text-decoration: underline;
    transition: opacity 0.3s ease-in-out;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
}

ul,
li {
    margin: 0;
    padding: 0;
}

.lightcase img {
    border: 1px solid #cccccc;
}

em {
    font-style: normal;
}

blockquote {
    position: relative;
    padding-left: var(--gap_narrow);
    padding-right: var(--gap_narrow);
    padding-top: var(--gap_minimum);
    padding-bottom: var(--gap_minimum);
    box-sizing: border-box;
    font-style: italic;
    color: #4e4e4e;
    background: var(--graywhite);
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: var(--gap_minimum);
}

blockquote:before {
    display: inline-block;
    position: absolute;
    top: 7px;
    left: 10px;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    color: var(--lightgray);
    font-size: 3.5em;
    line-height: 1;
    font-weight: 900;
}

blockquote:after {
    display: inline-block;
    position: absolute;
    bottom: 5px;
    right: 15px;
    text-align: center;
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    color: var(--lightgray);
    font-size: 3em;
    line-height: 1;
    font-weight: 900;
}

blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7;
}

blockquote cite {
    position: relative;
    z-index: 3;
    display: block;
    text-align: right;
    padding-top: var(--gap_micro);
    font-weight: bold;
}

/* ##### common parts ##### */


/* ## news list ## */
.com_news_list {
    border-top: 1px solid var(--bordergray);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.com_news_item {
    width: 100%;
    list-style: none;
    display: flex;
    padding: 1rem 1rem 1rem 0;
    border-bottom: 1px solid var(--bordergray);
    flex: 1;
}

.com_news_date {
    padding: 0 1rem;
    margin: 0;
    font-weight: bold;
    width: 8em;
}

.com_news_item a {
    flex: 1;
}


@media screen and (max-width: 979px) {
    .com_news_item {
        padding: 1rem 0;
    }

    .com_news_date {
        padding-left: 0;
    }
}


/* ## notes ## */
[class^="com_wrapNote"] {
    margin: var(--gap_minimum) 0;
}

[class^="com_wrapNote"]:last-child {
    margin-bottom: -0;
}

[class*="-nt_withBg"] {
    background-color: var(--graywhite);
    padding: var(--gap_minimum);
}

[class^="com_notetxt"] {
    font-size: var(--font_small);
    color: var(--txt_note);
}

[class^="com_notealert"] {
    font-size: var(--font_normal);
    color: var(--txt_basiccolor);
}

/* ## com_FAQ_list ## */
.com_FAQ_list {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0 0;
}

.com_FAQ_item {
    padding: 1rem 0;
    background: var(--white);
    border-radius: 3rem;
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out;
}

.com_FAQ_item:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}

.com_FAQ_q {
    font-size: var(--font_large);
    font-weight: normal;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    width: 100%;
}

.com_FAQ_q a {
    text-decoration: none;
}

.com_FAQ_q::before {
    content: "Q";
    display: inline-block;
    text-align: center;
    text-indent: 0;
    font-size: var(--font_xlarge);
    font-family: var(--en-sans);
    font-weight: 500;
    position: absolute;
    left: 0;
    margin-top: -0.25rem;
}

.com_FAQ_q::after {
    content: "＋";
    display: inline-block;
    width: 1.7em;
    height: 1.7em;
    line-height: 1.7em;
    text-align: center;
    text-indent: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.com_FAQ_item.is-active .com_FAQ_q::after {
    content: "ー";
}

.com_FAQ_a {
    display: none;
    padding: 0.5rem 3rem 0.5rem 2rem
}


/* ## header ## */
header {
    height: var(--headerH);
    width: 100%;
    background-color: var(--headerbgcolor);
    /* position: fixed; */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font_normal);
    font-family: var(--font_strong);
    font-weight: bold;
    max-width: 100vw;
}

[class^="header_wrap_menus"] {
    display: flex;
    align-items: stretch;
    gap: 4rem;
    height: 100%;
}

[class^="header_wrap_menus"] a {
    text-decoration: none;
}

[class^="header_menu"] {
    position: relative;
    height: 100%;
}

[class^="header_menu_inner"] {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

[class^="header_menu"] span {
    cursor: pointer;
}

[class^="header_menu"] span em,
[class^="header_menu"] a em {
    display: block;
    line-height: 1;
    text-align: center;
    font-weight: normal;
    font-size: var(--font_large);
    font-family: var(--en-sans);
    font-weight: 700;
}

[class^="header_menu"] span small,
[class^="header_menu"] a small {
    font-size: var(--font_xxsmall);
    display: block;
    line-height: 1;
    font-weight: normal;
    font-family: var(--font_basic);
    font-weight: bold;
    text-align: center;
}

[class^="header_sub_menu"] {
    position: absolute;
    left: -1rem;
    top: 95%;
    background-color: var(--white);
    padding: 0 2rem;
    display: none;
}

[class^="header_sub_menu"] a {
    text-decoration: none;
    display: block;
    white-space: nowrap;
    margin: 0 0 1.75rem 0;
}

[class^="header_menu"]:hover [class^="header_sub_menu"] {
    display: block;
}

[class^="header_menu-contact"] {
    background-color: var(--keycolor);
    padding: 0 2rem;
}

[class^="header_menu-contact"] a {
    color: var(--white);
}

#header_speciallink {
    color: var(--white);
    text-decoration: none;
    font-size: var(--font_large);
    font-weight: 500;
    font-family: var(--en-sans);
    padding: 0.5rem 3rem 0.25rem 2rem;
    border: 1px solid var(--white);
    position: absolute;
    right: 1.5rem;
    bottom: -4rem;
    margin: auto;
    background: var(--black);
    transition: opacity 0.3s ease-in-out;
}

#header_speciallink:after {
    content: "";
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    position: absolute;
    right: 1rem;
    top: 60%;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='1'%3E%3Cpath d='M5 2h5v5M10 2L4 8'/%3E%3C/svg%3E") no-repeat center;
    transition: top 0.2s ease-out, right 0.2s ease-out;
}

#header_speciallink:hover {
    opacity: 0.7;
}

#header_speciallink:hover:after {
    top: 50%;
    right: 0.75rem;
}


[class^="globalNav_wrapLogo"] {
    width: clamp(140px, 35%, 220px);
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

[class^="globalNav_logo"] {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

#logo {
    width: auto;
    display: block;
    padding-left: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
}

#header_contact {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 0;
    bottom: 0;
    margin: auto;
    /* text-align: center;
    color: var(--btncolor_txt); */
    text-decoration: none;
    /* background: white; */
    font-size: var(--font_small);
    /* font-weight: bold; */
    line-height: 2.4em;
    height: 2.4em;
    width: auto;
    /* min-width: 0em; */
    font-family: var(--font_basic);
    /* padding: 0 1em; */
    /* border-radius: 2em; */
}


/* pc only */
@media screen and (min-width: 860px) {
    [class^="globalNav_hamberger"] {
        display: none;
    }
}

@media screen and (max-width: 859px) {

    /* # drawer # */
    header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
    }

    [class^="header_wrap_menus"] {
        position: fixed;
        top: var(--headerH);
        width: 100%;
        height: calc(100vh - var(--headerH));
        background: var(--white);
        display: block;
        left: 0;
        max-height: calc(100vh - var(--headerH));
        overflow-y: auto;
        border-top: 1px solid var(--bordergray);
        transform: translateX(100%);
        transition: transform 0.25s ease-out;
        z-index: 9;
    }

    [class^="header_wrap_menus"][class*="is-active"] {
        transform: translateX(0);
    }

    [class^="header_menu"] {
        height: auto;
    }

    [class^="header_menu_inner"] {
        height: auto;
        display: block;
    }

    [class^="header_menu_inner"] span,
    [class^="header_menu_inner"] a {
        height: 5rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: left;
        text-align: center;
        padding-left: 2rem;
        border-bottom: 1px solid var(--bordergray);
        position: relative;
    }

    [class^="header_menu_inner"]>span {
        background: var(--graywhite);
        cursor: default;
    }

    [class^="header_menu_inner"]>a:not(.header_menu-contact) {
        background: var(--graywhite);
    }

    /* [class^="header_menu_inner"] span:after {
        content: "";
        width: 0.8rem;
        height: 0.8rem;
        border-right: 2px solid var(--black);
        border-bottom: 2px solid var(--black);
        transform: rotate(45deg);
        position: absolute;
        right: 2rem;
        top: 0;
        bottom: 0;
        margin: auto;
    } */
    [class^="header_menu_inner"] a:after {
        content: "";
        width: 0.8rem;
        height: 0.8rem;
        border-right: 2px solid var(--black);
        border-bottom: 2px solid var(--black);
        transform: rotate(-45deg);
        position: absolute;
        right: 2rem;
        top: 0;
        bottom: 0;
        margin: auto;
        z-index: 1;
    }

    /* [class^="header_menu_inner"] a:before {
        content: "";
        width: 1.6rem;
        height: 1.6rem;
        background: var(--black);
        border-radius: 50%;
        position: absolute;
        right: 1.6rem;
        top: 0;
        bottom: 0;
        margin: auto;
    } */
    [class^="header_sub_menu"] a {
        padding-left: 4rem;
    }



    [class^="header_menu"] span em,
    [class^="header_menu"] a em {
        font-size: var(--font_xxlarge);
        display: inline-block;
        vertical-align: middle;
    }

    [class^="header_menu"] span em:after,
    [class^="header_menu"] a em:after {
        content: "/";
        display: inline-block;
        vertical-align: middle;
        padding-left: 0.5rem;
        font-weight: normal;
        position: relative;
        top: -0.1rem;
    }

    [class^="header_menu"] span small,
    [class^="header_menu"] a small {
        font-size: var(--font_normal);
        display: inline-block;
        vertical-align: middle;
        padding-left: 0.5rem;
        position: relative;
        top: -0.25rem;
    }

    [class^="header_sub_menu"] {
        display: block;
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        background: transparent;
        padding: 0;
        margin: 0;
    }

    [class^="header_sub_menu"] a {
        margin: 0;
    }



    [class^="globalNav_hamberger"] {
        display: block;
        position: absolute;
        width: var(--headerH);
        height: var(--headerH);
        right: var(--hambergerPosX);
        top: 0;
        bottom: 0;
        margin: auto;
    }

    [class^="globalNav_hamberger"]:after {
        content: "";
        width: 0;
        height: 0;
        display: block;
        background: rgba(255, 255, 255, 0.2);
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transition: all 0.25s ease-out;
        margin: auto;
        border-radius: 50%;
        opacity: 0;
    }

    [class^="globalNav_hamberger"] span {
        display: block;
        width: 56%;
        height: 2%;
        background: var(--black);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        transition: all 0.25s ease-out;
    }

    [class^="globalNav_hamberger"] span:first-child {
        top: 22%;
    }

    [class^="globalNav_hamberger"] span:last-child {
        bottom: 22%;
    }

    [class^="globalNav_hamberger"].is-active span:first-child {
        top: 0;
        transform: rotate(225deg);
    }

    [class^="globalNav_hamberger"].is-active span:last-child {
        bottom: 0;
        transform: rotate(-225deg);
    }

    [class^="globalNav_drawer"] {
        background: var(--keycolor);
        width: 100vw;
        height: 0;
        overflow: hidden;
        font-weight: bold;
        padding-top: var(--headerH);
        text-align: center;
        transition: all 0.1s ease-out;
    }

    [class^="globalNav_drawer"][class*="gd_open"] {
        height: 100vh;
    }

    [class^="globalNav_dinner"] {
        overflow: scroll;
        height: 100%;
        padding-bottom: var(--gap_minimum);
    }

    [class^="global_dmenuset"] {
        padding: var(--gap_micro);
    }

    [class^="global_dmenurow"] {
        display: block;
        font-weight: bold;
        text-decoration: none;
        color: var(--txt_basiccolor);
    }

    [class^="global_dmenurow"] {
        padding: 0.25rem 0;
    }

    [class^="global_dmenurow"] a,
    [class^="global_dmenurow"] span {
        font-weight: bold;
        text-decoration: none;
        color: var(--txt_basiccolor);
    }

    [class*="ham_open"] span:first-child {
        top: 0;
        transform: rotate(35deg);
    }

    [class*="ham_open"] span:last-child {
        bottom: 0;
        transform: rotate(-35deg);
    }
}







/* ## footer ## */

footer {
    padding-top: var(--gap_normal);
    padding-bottom: var(--gap_normal);
    background: var(--palewhite);
    color: var(--txt_basiccolor);
    position: relative;
    z-index: 3;
}

.footer_address {
    font-size: var(--font_small);
}

.footer_tel strong {
    font-size: var(--font_xxlarge);
    font-family: var(--en-sans);
    font-weight: 500;
}

.footer_tel {
    font-size: var(--font_small);
}

.footer_ttl {
    display: block;
    padding-bottom: 0.5em;
}
.footer_ttl a {
    color: var(--txt_basiccolor);
    text-decoration: none;
}

.footer_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer_list li {
    padding-left: 0.25em;
}

.footer_list li:before {
    content: "-";
    display: inline-block;
    padding-right: 0.25em;
}

.footer_list li a {
    color: var(--txt_basiccolor);
    text-decoration: none;
}

/* ## lightcase ## */
.lc_inline {
    background: var(--white);
}

.lc_inline * {
    text-shadow: none;
}

/* ## subpage ## */
/* ttl */
[class^="com_subpage_wrapTtl"] {
    background: center no-repeat var(--ttl_bgcolor);
    margin-bottom: var(--gap_normal);
}

[class^="com_subpage_innerTtl"] {
    overflow: hidden;
    position: relative;
}

[class^="com_subpage_innerTtl_img"] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

[class^="com_subpage_ttl"] {
    max-width: 1640px;
    padding: 0 20px;
    height: 18vw;
    max-height: 320px;
    min-height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: var(--darkgray);
    font-weight: bold;
    font-family: var(--en-sans);
}

[class^="com_subpage_ttl"] h1 {
    font-weight: normal;
    font-size: var(--font_xxxlarge);
    font-weight: bold;
    color: var(--white);
    position: relative;
    text-align: center;
    margin: 0;
}

[class^="com_subpage_ttl"] h1 small {
    font-size: var(--font_large);
    font-weight: normal;
    color: var(--white);
    display: block;
    line-height: 1;
}

[class^="com_subpage_ttl"] h1 .com_subpage_leadcopy {
    font-size: var(--font_normal);
    font-weight: normal;
    color: var(--white);
    display: block;
}

/* ttl major */
[class*="-subttl_major"] {
    background: var(--keycolor_vivid_light);
    margin-bottom: 0;
}

[class*="-subttl_major"] [class^="com_subpage_ttl"] {
    height: 24vw;
    min-height: 240px;
    max-height: 480px;
}

[class*="-subttl_major"] [class^="com_subpage_innerTtl_img"] {
    opacity: 0.1;
}

[class*="-subttl_major"] [class^="com_subpage_ttl"] h1 small {
    color: var(--white);
}

/* simple ttl */
[class^="com_subpage_wrapSimpleTtl"] {
    margin: 0 0 var(--gap_normal) 0;
    border-bottom: 1px solid var(--bordergray);
}

[class^="com_subpage_innerSimpleTtl"] {
    text-align: left;
    padding: var(--gap_narrow) 0;
}

[class^="com_subpage_simpleTtl"] {
    font-size: var(--font_xxxlarge);
    font-weight: bold;
    color: var(--txt_basiccolor);
    margin: 0;
}

[class^="com_subpage_addSimpleTtl"] {
    text-align: left;
}

[class*="-withBGPhoto"] [class^="com_subpage_simpleTtl"] {
    color: var(--white);
}

/* works tag */
[class^="work_tag"] {
    display: inline-block;
    background: var(--bg_light);
    padding: 0.5rem 1rem;
    margin: 0.1em;
    padding: 0.25em 0.5em;
    font-size: var(--font_xsmall);
    color: var(--white);
    border: 1px solid var(--bordergray);
}

.work_tag-public,
.work_tag-industry {
    background: #4A4A4A;
}

[class^="work_weaktag"] {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.1em;
    padding: 0.25em 0.5em;
    font-size: var(--font_xsmall);
    border: 1px solid var(--bordergray);
    background: var(--white);
}

[class*="-withBGPhoto"] {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

[class*="-withBGPhoto"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

[class*="-withBGPhoto"]>* {
    position: relative;
}

/* page path */
[class^="com_subpage_wrapPath"] {
    background: var(--bg_breadcrumb);
    padding-top: var(--gap_micro);
    padding-bottom: var(--gap_micro);
}

[class^="com_subpage_path"] {
    color: var(--txt_breadcrumb);
    font-size: var(--font_small);
    display: inline-block;
    margin-right: 1rem;
    position: relative;
    text-decoration: none;
}

[class^="com_subpage_path"]:after {
    content: "";
    width: 0.4rem;
    height: 0.4rem;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -0.75rem;
    border-color: var(--txt_breadcrumb);
    border-width: 1px;
    border-top-style: solid;
    border-right-style: solid;
    position: absolute;
    transform: rotate(45deg);
}

[class^="com_subpage_path"]:last-child {
    pointer-events: none;
}

[class^="com_subpage_path"]:last-child:after {
    content: none;
}

[class^="com_subpage_path"]:first-child {
    font-size: 0;
}

[class^="com_subpage_path"]:first-child:before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: var(--font_small);
}

[class^="com_subpage_wrapPath"]+[class^="com_sect"] {
    padding-top: var(--gap_wide);
}

/* ## submenu ## */
[class^="com_subpage_boxSubmenu"] {
    background: var(--palewhite);
    border-top: 4px solid var(--keycolor);
}

[class^="com_subpage_wrapSubmenu"] {
    list-style: none;
    padding: 0;
    margin: 0;
}

[class^="com_subpage_submenuTtl"] {
    font-size: var(--font_large);
    font-weight: bold;
    color: var(--txt_basiccolor);
    padding: 1rem 1.5rem;
    margin: 0;
    text-align: left;
    border-bottom: 1px solid var(--bordergray);
}

[class^="com_subpage_unitSubmenu"] {
    margin: 0;
    border-bottom: 1px solid var(--bordergray);
}

[class^="com_subpage_unitSubmenu"] a {
    padding: 1rem 2.5rem 1rem 1.5rem;
    text-decoration: none;
    color: var(--txt_basiccolor);
    display: block;
    position: relative;
}

[class^="com_subpage_unitSubmenu"] a::after {
    content: "";
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-top: 2px solid var(--txt_basiccolor);
    border-right: 2px solid var(--txt_basiccolor);
    transform: rotate(45deg);
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
}


/* ## pager ## */
.com_pager {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

[class^="com_pager_link"],
.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--bordergray);
    border-radius: 0.25em;
    text-decoration: none;
    color: var(--txt_basiccolor);
}

[class^="com_pager_link"]:hover {
    background: var(--graywhite);
}

.com_pager_link-next,
.next.page-numbers {
    margin-left: auto;
    position: relative;
    padding-right: 2rem;
}

.com_pager_link-next:before,
.next.page-numbers:before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -0.25rem;
    border-top: 1px solid var(--txt_basiccolor);
    border-right: 1px solid var(--txt_basiccolor);
    transform: rotate(45deg);
}

.com_pager_link-prev,
.prev.page-numbers {
    margin-right: auto;
    position: relative;
    padding-left: 2rem;
}

.com_pager_link-prev:before,
.prev.page-numbers:before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    position: absolute;
    left: 1rem;
    top: 50%;
    margin-top: -0.25rem;
    border-top: 1px solid var(--txt_basiccolor);
    border-left: 1px solid var(--txt_basiccolor);
    transform: rotate(-45deg);
}

.com_pager_link-pgActive,
.current {
    background: var(--graywhite);
    color: var(--txt_basiccolor);
    pointer-events: none;
}


/* ## maker ## */
[class^="maker_tagDis"] {
    display: inline-block;
    margin-top: var(--gap_micro);
    margin-right: var(--gap_micro);
    background: var(--keycolor);
    padding: 0 0 0 var(--gap_micro);
    border-radius: 0.25em;
    font-weight: bold;
}

[class^="maker_tagDeleter"] {
    position: relative;
    display: inline-block;
    font-size: var(--font_small);
    background: var(--black);
    color: var(--white);
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin: 0 0.25em;
}

[class^="maker_tagDeleter"]:hover {
    opacity: 0.7;
}

#alert,
#maker_error,
.shot_char.err {
    font-weight: bold;
    color: var(--color_alert);
    transition: all 0.25s ease-out;
    margin-bottom: 0.25em;
}

#alert:not(:empty) {
    padding: 0.5em 1em;
    background: #ffeeee;
    border: #ff9999 2px solid;
    border-radius: 0.25em;
}


/* ########## */
/* responsive */
/* ########## */

@media screen and (max-width: 767px) {

    /* ##### basic settings ##### */
    :root {
        font-size: 14px;

        /* sizes */
        --headerH: 80px;
        --headerH_min: 64px;
        --hambergerPosX: 0.5rem;
    }

    /* ##### common parts ##### */
    /* ## header ## */



}