@charset "UTF-8"; /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
PC右上固定
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 769px) {
    .logged-in .sticky_btn {
        top: calc(var(--logged-in) + 2rem);
    }

    .sticky_btn {
        position: fixed;
        top: 2rem;
        right: 3rem;
        z-index: 1000;
        height: 8rem;
    }

    .sticky_btn p.contact {
        height: 100%;
    }

    .sticky_btn p.contact a {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26rem;
        letter-spacing: .08em;
        font-weight: 500;
        font-size: 2.6rem;
        color: #fff;
        border-radius: 4rem;
        position: relative;
        font-family: "Oswald", sans-serif;
        overflow: hidden;
    }

    .sticky_btn p.contact a::before {
        display: inline-block;
        margin-right: 1.5rem;
        content: "";
        background: url("../images/common/fixed_mail.svg") no-repeat 50% / contain;
        width: 2.5rem;
        height: 1.8rem;
    }

    .sticky_btn p.contact a span::before, .sticky_btn p.contact a span::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
        transition: .3s ease-in;
    }

    .sticky_btn p.contact a span::before {
        background: linear-gradient(to right, #00be82, #00c8f0);
    }

    .sticky_btn p.contact a:hover {
        border:2px solid var(--theme_m_color);
        background: #fff;
        color: var(--theme_m_color);
    }
    
    .sticky_btn p.contact a:hover::before {
        background-image: url("../images/common/pushy_mail_green.svg");
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.h_inner {
    align-items: center;
}

.h_inner .logo {
    line-height: 1;
    margin: 0;
    width: var(--main_logo);
    font-size: 2em;
}

.h_inner .logo a {
    display: inline-block;
    line-height: 1;
    width: 100%;
}

.h_inner .logo a img {
    width: 100%;
}

.h_inner p.lead {
    font-size: 2rem;
    letter-spacing: .06em;
    font-weight: bold;
    color: var(--theme_m_color);
    line-height: 1.35;
    margin-left: 3.5rem;
}

header ul.nav_menu {
    display: flex;
    align-items: center;
    margin-left: auto;
}

header ul > li.nav_menu {
    padding: 5px 15px;
}

header ul li.menu-item-has-children {
    position: relative;
    z-index: 0;
}

header ul li.menu-item-has-children::after {
    position: absolute;
    content: "";
    pointer-events: auto;
    width: 100%;
    height: 10rem;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

header ul li:not(:last-child) {
    margin-right: 4rem;
}

header ul.nav_menu > li.menu-item-has-children > ul.child {
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
}

header ul.child {
    /*アニメーション設定*/
    transition: all .3s;
    position: absolute;
    top: 50px;
    left: 50%;
    margin-bottom: -5px;
    min-width: 36rem;
    transform: translateX(-50%);
    z-index: 8;
    border-radius: 4rem;
    overflow: hidden;
    background: #fff;
    padding: 4.5rem 4.5rem 5.5rem;
    display: grid;
    gap: 4rem;
}

header ul.child > li {
    width: 100%;
    cursor: pointer;
    margin: 0;
}

header ul.child > li a {
    font-size: 1.8rem;
    display: block;
    line-height: 1.5;
    cursor: pointer;
    padding-left: 1.5rem;
    position: relative;
}

header ul.child > li a::after {
    position: absolute;
    content: "";
    background: url("../images/common/arrow_green.svg")no-repeat 50% / contain;
    width: 1.9rem;
    height: .8rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

header ul.child > li p:not(:last-of-type) a {
    margin-bottom: 1.2rem;
}

header ul.nav_menu > li.menu-item-has-children > ul.child > li h4.sub_ttl {
    font-size: 2rem;
    color: var(--theme_m_color);
    background: #fff;
    display: block;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 3rem;
}

header ul.nav_menu > li.menu-item-has-children > ul.child > li a:hover {
    color: var(--theme_m_color) !important;
    opacity: 1 !important;
}

/***********************************
// スマホ
***********************************/
@media (max-width: 768px) {
    header {
        padding: 0;
        min-height: 10rem;
    }

    header.contact_header {
        padding: 0;
        min-height: 10rem;
    }

    header > * {
    }

    .h_inner {
        padding: 4rem 3.5rem;
    }

    .h_inner p.lead {
        margin-left: 2rem;
        font-size: 2.6rem;
        line-height: 1.25;
    }

    .h_inner .logo {
        width: 33rem;
    }

    .h_inner .logo a {
    }

    .h_inner .logo a img {
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    pushy内
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #pushy .h_inner p.lead {
        color: #fff;
    }

    #pushy ul {
    }

    #pushy ul.sp_nav_menu > li {
    }

    #pushy ul li a {
        display: block;
    }

    #pushy.hambuger_inner02 {
        background: var(--theme_m_color);
    }

    #pushy.hambuger_inner02 .bg {
        background: var(--theme_m_color);
        height: auto;
        padding-bottom: 20rem;
    }

    #pushy .h_nav_wrap {
        padding: 0.5rem 7.5rem;
    }

    #pushy ul.sp_nav_menu {
        margin-bottom: 8rem;
    }

    #pushy ul.sp_nav_menu > li {
    }

    #pushy ul.sp_nav_menu > li > h3 > a,#pushy ul.sp_nav_menu > li > a, #pushy ul.sp_nav_menu > li.menu-item-has-children > h3 {
        position: relative;
        color: #fff;
        font-size: 4.1rem;
        letter-spacing: .1em;
        border-bottom: 1px solid #fff;
        padding: 4.5rem 2rem;
    }

    #pushy ul.sp_nav_menu > li.menu-item-has-children > h3 {
    }

    #pushy ul li.menu-item-has-children {
    }

    #pushy ul li:not(last-child) {
    }

    #pushy ul.child {
        display: none;
        padding: 5rem 2rem 3rem;
        border-bottom: 1px solid #fff;
    }

    #pushy ul.child > li:not(last-child) {
        margin-bottom: 6rem;
    }

    #pushy ul.child > li > a {
    }

    #pushy ul.child > li:hover > a {
    }

    #pushy ul.sp_nav_menu > li > h3 > a:after,#pushy ul.sp_nav_menu > li > a::after {
        content: "";
        position: absolute;
        background: url("../images/common/arrow_green.svg") no-repeat 50% /2.5rem auto #fff;
        width: 6.4rem;
        height: 6.4rem;
        top: 50%;
        right: 3rem;
        transform: translateY(-50%);
        border: 1px solid #fff;
        border-radius: 2em;
    }

    #pushy ul.sp_nav_menu > li.menu-item-has-children > h3::after {
        position: absolute;
        content: "＋";
        top: 50%;
        right: 3rem;
        font-weight: bold;
        font-size: 3rem;
        border-radius: 2em;
        border: 1px solid #fff;
        width: 6.4rem;
        height: 6.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
        background: #fff;
        color: var(--theme_m_color);
        padding-left: 0.5rem;
    }

    #pushy ul.sp_nav_menu > li.menu-item-has-children > h3.active::after {
        content: "－";
    }

    #pushy ul.sp_nav_menu > li.menu-item-has-children > ul.child > li h4.sub_ttl {
        color: #fff;
        font-size: 3.4rem;
        letter-spacing: .1em;
        margin-bottom: 3.5rem;
    }

    #pushy ul.child > li p a {
        font-size: 3rem;
        color: #fff;
        font-weight: 500;
        letter-spacing: .1em;
        position: relative;
        padding-left: 4rem;
    }

    #pushy ul.child > li p:not(:last-of-type) a {
        margin-bottom: 2.5rem;
    }

    #pushy ul.child > li p a::before {
        content: "-";
        color: #fff;
    }

    #pushy ul.child > li a::after {
        position: absolute;
        content: "";
        background: url("../images/common/arrow_white.svg")no-repeat 50% / contain;
        width: 2.5rem;
        height: 1.2rem;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
    }

    #pushy p.contact {
    }

    #pushy p.contact a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48rem;
        height: 12rem;
        letter-spacing: .08em;
        font-weight: 500;
        font-size: 4rem;
        color: var(--theme_m_color);
        background: #fff;
        border-radius: 6rem;
        position: relative;
        font-family: "Oswald", sans-serif;
        margin: 0 auto;
        padding: 1rem 5rem 1rem 3rem;
    }

    #pushy p.contact a::before {
        display: inline-block;
        margin-right: 2rem;
        content: "";
        background: url("../images/common/pushy_mail_green.svg") no-repeat 50% / contain;
        width: 3.8rem;
        height: 2.6rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    ハンバーガー (スマホ)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .logged-in header .hamburger {
        top: calc(46px - -15px);
    }

    .hamburger {
        top: 20px;
        position: fixed;
        right: 2rem;
        width: 6rem;
        height: 4rem;
        margin-left: auto;
        z-index: 9999;
    }

    .hamburger .c_h {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 0;
        height: .3rem;
        background: #fff;
        width: 100%;
        display: block;
    }

    .hamburger.active .c_h {
        top: 50%;
        left: 50%;
    }

    .ham1 {
        top: 0;
    }

    .hamburger.active .ham1 {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .ham2 {
        top: 50%;
    }

    .hamburger.active .ham2 {
        opacity: 0;
    }

    .ham3 {
        top: 100%;
    }

    .hamburger.active .ham3 {
        transform: translate(-50% , -50%) rotate(45deg);
    }

    .hambuger_inner02 {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        z-index: 9999;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
        opacity: 0;
        overflow-y: auto;
        height: 100%;
        width: 100%;
        background: #fff;
    }

    .hambuger_inner02.active {
        visibility: visible;
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .hambuger_inner02 .bg ul.items {
        padding-top: 100px;
        width: 100%;
        padding-right: 20px;
    }

    .hambuger_inner02 .bg ul.items li a {
        color: var(--main_color);
        text-decoration: none;
        padding: 15px;
        display: block;
    }

    .hambuger_inner02 .bg ul.items li:not(:last-child) a {
        border-bottom: 1px solid #999999;
    }

    .active02 {
        display: block !important;
    }

    /* 背景色ありver */
    .logged-in header .hamburger.ham02 {
        top: 46px;
    }

    .hamburger.ham02 {
        top: 0;
        right: 0;
        width: 12rem;
        height: 12rem;
        background: #222222;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    .hamburger.ham02 .ham_bg {
        position: relative;
        width: 5rem;
        height: 4rem;
    }

    .hamburger.ham02 .c_h {
        background: #fff;
    }

    /* 二本線ver */
    .logged-in header .hamburger.ham03 {
        top: 46px;
    }

    .hamburger.ham03 {
        top: 2rem;
        right: 3rem;
        width: 10rem;
        height: 10rem;
        border-radius: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    header .hamburger.ham03 {
        background: linear-gradient(to right, #00c8f0, #00be82);
    }

    .hamburger.ham03 .ham_bg {
        position: relative;
        width: 4rem;
        height: 1.8rem;
    }

    .hamburger.ham03 .c_h {
    }

    .hamburger.ham03 .c_h.ham1 {
    }

    .hamburger.ham03 .c_h.ham3 {
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 769px) {
    header {
        position: relative;
        z-index: 200;
        padding: 2rem 34rem 2rem 5.4rem;
        min-height: 12rem;
        display: flex;
        align-items: center;
    }

    header.contact_header {
        padding: 2rem 5.4rem 2rem 5.4rem;
        min-height: 10rem;
        display: flex;
        align-items: center;
    }

    header > * {
        width: 100%;
    }

    header ul.nav_menu {
    }

    header ul.nav_menu > li {
    }

    header ul.nav_menu > li > h3 > a,header ul.nav_menu > li > a, header ul.nav_menu > li.menu-item-has-children > h3 {
        font-size: 2rem;
        font-weight: 400;
        cursor: pointer;
    }

    header ul li.menu-item-has-children {
    }

    header ul li:not(last-child) {
    }

    header ul.child {
    }

    header ul.child > li {
    }

    header ul.child > li > a {
    }

    header ul.child > li:hover > a {
    }
}
