/* css reset（必要最小限） */
@charset "utf-8";

html, body, div, span, h1, h2, h3, h4, h5, h6, p, img, a, ul, li, form, label, table, tr, th, td, header, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    list-style: none;
    text-decoration: none;
    vertical-align: baseline;
}

/* ---header--- */
header {
    height: 60px;
    background-color: #fff;
    position: fixed;
    z-index: 1;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#logo {
    width: 3.6rem;
}

.faqheader {
    position: relative;
}

/* スマホ用メニューを非表示 */
.sp-menu {
    display: none;
}

/* メニュー */
.menu a {
    line-height: 60px;
    color: lightcoral;
    font-weight: bold;
    font-size: 1.5em;
}

.menu-left a {
    float: left;
    padding-right: 50px;
}

.menu-right a {
    float: right;
    padding-right: 18px;
}

/* ホバー効果 */
a:hover,
.btn:hover {
    opacity: 0.6;
    cursor: pointer;
}