.is-pc {
    display: flex;
}

.is-sp {
    display: none;
}

/* =========================================================
HEADER
========================================================= */

.l-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.l-header__inner {
    max-width: 1280px;

    margin: 0 auto;
    padding: 16px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}

/* =========================================================
LOGO
========================================================= */

.l-header__logo img {
    width: 180px;
    height: auto;

    display: block;
}

/* =========================================================
PC NAV
========================================================= */

.l-header__nav {
    display: flex;
    align-items: center;

    gap: 32px;
}

.l-header__menu {
    display: flex;
    align-items: center;

    gap: 24px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.l-header__menu li a {
    color: #222;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s;
}

.l-header__menu li a:hover {
    opacity: .7;
}

/* =========================================================
CTA
========================================================= */

.l-header__cta {
    display: flex;
    align-items: center;

    gap: 12px;
}

.l-header__cta a img {
    width: 160px;
    height: auto;

    display: block;
}

/* =========================================================
SP HEADER
========================================================= */

.l-header__sp-cta {
    display: none;
    align-items: center;

    gap: 12px;
}

.l-header__sp-tel,
.l-header__sp-line {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 72px;
    height: 40px;

    padding: 0 12px;

    border-radius: 999px;

    color: #fff;
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
}

.l-header__sp-tel {
    background: #222;
}

.l-header__sp-line {
    background: #06c755;
}

/* =========================================================
HAMBURGER
========================================================= */

.l-header__hamburger {
    position: relative;

    width: 40px;
    height: 40px;

    border: none;
    background: transparent;

    cursor: pointer;
}

.l-header__hamburger span {
    position: absolute;
    left: 50%;

    width: 24px;
    height: 2px;

    background: #222;

    transform: translateX(-50%);
    transition: .3s;
}

.l-header__hamburger span:nth-child(1) {
    top: 11px;
}

.l-header__hamburger span:nth-child(2) {
    top: 19px;
}

.l-header__hamburger span:nth-child(3) {
    top: 27px;
}

/* OPEN */

.l-header__hamburger.is-open span:nth-child(1) {
    top: 19px;
    transform: translateX(-50%) rotate(45deg);
}

.l-header__hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.l-header__hamburger.is-open span:nth-child(3) {
    top: 19px;
    transform: translateX(-50%) rotate(-45deg);
}

/* =========================================================
SP MENU
========================================================= */

.l-sp-menu {
    position: fixed;

    top: 73px;
    left: 0;

    width: 100%;
    height: calc(100vh - 73px);

    background: #fff;

    overflow-y: auto;

    padding: 32px 24px;

    opacity: 0;
    visibility: hidden;

    transition: .3s;
}

.l-sp-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.l-sp-menu__list {
    margin: 0 0 32px;
    padding: 0;

    list-style: none;
}

.l-sp-menu__list li {
    border-bottom: 1px solid #eee;
}

.l-sp-menu__list li a {
    display: block;

    padding: 16px 0;

    color: #222;
    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
}

/* =========================================================
SEARCH
========================================================= */

.l-sp-menu__search {
    margin-bottom: 32px;
}

/* =========================================================
TAGS
========================================================= */

.l-sp-menu__tags h2 {
    margin-bottom: 16px;

    font-size: 18px;
    font-weight: 700;
}

.l-sp-menu__tags ul {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.l-sp-menu__tags ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;

    border-radius: 999px;

    background: #f5f5f5;

    color: #222;
    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: .3s;
}

.l-sp-menu__tags ul li a:hover {
    background: #222;
    color: #fff;
}

/* =========================================================
FOOTER
========================================================= */

.l-footer {
    background: #222;

    color: #fff;

    margin-top: 80px;
}

.l-footer__inner {
    max-width: 1280px;

    margin: 0 auto;
    padding: 64px 24px;

    text-align: center;
}

.l-footer__logo {
    margin-bottom: 0px;
    margin-top: 1.5rem;
}

.l-footer__logo img {
    width: 180px;
    height: auto;
}

.l-footer__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 24px;

    margin: 1.5rem 0 0 0;
    padding: 0;

    list-style: none;
}

.l-footer__nav li a {
    color: #fff;

    text-decoration: none;

    font-size: 14px;
}

.l-footer__copy {
    font-size: 12px;

    opacity: .7;
}

/* =========================================================
RESPONSIVE
========================================================= */

@media screen and (max-width: 1024px) {

    .is-pc {
        display: none;
    }

    .l-header__sp-cta {
        display: flex;
    }

    .l-header__inner {
        padding: 12px 16px;
    }

    .l-header__logo img {
        width: 140px;
    }

    .l-footer__inner {
        padding: 48px 16px;
    }

}

@media screen and (min-width: 1025px) {

    .is-sp {
        display: none;
    }

}

@media (max-width: 1024px) {
    .is-pc {
        display: none;
    }

    .is-sp {
        display: flex;
    }
}