/* navmenu */
.menu-ctr {
    background: rgba(0, 0, 0, .6);
    box-sizing: border-box;
    left: 0;
    margin: -88px auto 0;
    max-width: 1100px;
    position: sticky;
    top: 0;
    transition: box-shadow .2s ease;
    width: 100%;
    z-index: 10;
}

.menu-ctr.is-sticky {
    border-bottom: 1px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.menu-list {
    align-items: flex-start;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    margin: auto;
    padding: 9px 60px 5px;
    width: 1100px;
}

.menu-item {
    display: flex;
    justify-content: center;
}

.menu-box {
    display: grid;
    gap: 10px;
    text-decoration: none;
}

.menu-box img {
    display: block;
    margin: auto;
    width: 40px;
}

.menu-txt {
    color: #dfedea;
    font-size: 15px;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.3;
    text-align: center;
}

.menu-txt-sub {
    display: block;
    font-size: 13px;
}

.menu-item.download .menu-box,
.menu-item.news .menu-box {
    gap: 2px;
}

.menu-item.faq {
    letter-spacing: -.075em;
}

.menu-box:hover {
    opacity: .6;
}

/* 固定ボタン */
.fixed-cta {
    bottom: 40px;
    display: grid;
    gap: 10px 0;
    opacity: 0;
    position: fixed;
    right: 10px;
    transition: .3s;
    visibility: hidden;
    z-index: 100;
}

.fixed-cta.is-show {
    opacity: 1;
    visibility: visible;
}

.fixed-cta-btn {
    align-content: center;
    background: #e00909;
    box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, 0.25);
    border-radius: 150px;
    color: #fff;
    display: grid;
    justify-content: center;
    height: 72px;
    text-align: center;
    text-decoration: none;
    width: 244px;
}

.fixed-cta-btn:hover {
    filter: brightness(1.025);
}

.fixed-cta-subtxt {
    color: #e00909;
    display: block;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .075em;
    line-height: 1.2;
    text-align: center;
}

.fixed-cta-subtxt::before,
.fixed-cta-subtxt::after {
    border-left: 1px solid #e00909;
    content: "";
    height: 30px;
    position: absolute;
    top: 7.5px;
}

.fixed-cta-subtxt::before {
    left: 1em;
    transform: translateY(-50%) rotate(-40deg);
}

.fixed-cta-subtxt::after {
    transform: translateY(-50%) rotate(40deg);
    right: 1em;
}

.fixed-cta-txt {
    border-radius: 8px;
    color: #fff;
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .25em;
    line-height: 1;
}

.anchor {
    scroll-margin-top: 96px;
}

/* iPad */
.iPad .menu-list {
    padding: 7px 20px 3px;
}

.iPad .menu-box img {
    width: 50px;
}

.iPad .menu-txt {
    font-size: 18px;
}

.iPad .menu-txt-sub {
    font-size: 16px;
}

.iPad .anchor {
    scroll-margin-top: 108px;
}