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

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

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

    .sticky_btn p.contact a {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24rem;
        font-size: 2.4rem;
        background: var(--theme_m_color);
        color: #fff;
        border-radius: 4rem;
        letter-spacing: .04em;
        border: .2rem solid var(--theme_m_color);
        font-family: var(--ff-mon);
        font-weight: 700;
    }

    .sticky_btn p.contact a:hover {
        color: var(--theme_m_color);
        background: #fff;
        opacity: 1;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.home header {
    position: absolute;
    top: 0;
    left: 0;
}

header {
    z-index: 200;
    padding: 0rem 30rem 2rem 4rem;
    min-height: 13.5rem;
    display: flex;
    align-items: center;
    width: 100%;
}

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

header > * {
    width: 100%;
}

.h_inner {
    justify-content: space-between;
    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%;
}

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

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

header ul li.menu-item-has-children::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 4rem;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
}

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

header ul.nav_menu > li > a {
    font-size: 1.8rem;
}

header ul.nav_menu > li > a:hover {
    color: var(--theme_m_color);
    opacity: 1;
}

header ul.child {
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    position: absolute;
    top: 6rem;
    left: 50%;
    margin-bottom: -5px;
    min-width: 22.4rem;
    transform: translateX(-50%);
    z-index: 120;
}

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

header ul.child > li > a {
    font-size: 1.6rem;
    color: var(--theme_m_color);
    background: #fff;
    text-align: center;
    padding: 1.5rem 1rem;
    display: block;
    line-height: 1.5;
    cursor: pointer;
    border-radius: 1rem;
}

header ul.child > li:hover > a {
    color: #fff !important;
    background: var(--theme_m_color);
    opacity: 1 !important;
}

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

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

    .h_inner {
        padding: 3rem 2rem;
    }

    .logged-in header .hamburger {
        top: calc(46px - -25px);
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    pushy内
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #pushy ul {
        padding: 50px 15px;
    }

    #pushy ul.sp_nav_menu > li {
        padding-bottom: 5px;
        margin: 0 0 15px;
        border-bottom: 1px solid #707070;
    }

    #pushy ul li a {
        display: block;
    }

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

    #pushy.hambuger_inner02 .bg {
        background: var(--theme_m_color);
        height: 100%;
    }

    #pushy .h_nav_wrap {
        padding: 0 0 0 0;
        margin-top: 1rem;
        margin-bottom: 8rem;
    }

    #pushy ul.sp_nav_menu {
        margin-bottom: 4rem;
        padding: 0;
        width: 55.4rem;
        margin-left: auto;
    }

    #pushy ul.sp_nav_menu > li {
        margin: 0;
        border: none;
    }

    #pushy ul.sp_nav_menu > li > a {
        position: relative;
        padding-right: 40px;
        padding: 3rem 0rem 1rem;
        border-bottom: 1px solid #fff;
        font-weight: bold;
        font-size: 3.8rem;
        color: #fff;
    }
	
	#pushy ul.sp_nav_menu li.menu-item-has-children > a:hover {
		opacity: 1;
	}

    #pushy ul.sp_nav_menu li.menu-item-has-children > a::after {
        content: "";
        display: inline-block;
        margin-left: 4rem;
        background: url("../images/common/icon_plus.png") no-repeat 50% / contain;
        width: 3.6rem;
        height: 3.7rem;
        transition: none;
    }

    #pushy ul.sp_nav_menu li.menu-item-has-children > a.active::after {
        background-image: url("../images/common/icon_minus.png");
    }

    #pushy ul.child {
        display: none;
    }

    #pushy ul.sp_nav_menu ul.child {
        padding: 3rem 0 0 4rem;
        margin-bottom: -2.5rem;
    }

    #pushy ul.sp_nav_menu ul.child > li {
        margin-bottom: 2.5rem;
    }

    #pushy ul.sp_nav_menu ul.child > li > a {
        position: relative;
        font-size: 3.4rem;
        color: #fff;
    }

    #pushy .info_area {
        width: 52.6rem;
        margin: 0 auto;
		padding-bottom: 8rem;
    }

    #pushy .info_area p.main_lead {
        font-size: 3.4rem;
        color: #fff;
        letter-spacing: .04em;
        font-weight: bold;
        text-align: center;
        margin-bottom: 2rem;
    }

    #pushy .info_area p.btn.tel {
        margin-bottom: 2rem;
    }

    #pushy .info_area p.btn.tel a {
        color: var(--theme_m_color);
        display: flex;
        height: 15.6rem;
        border-radius: 1.4rem;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    #pushy .info_area p.btn.tel a .num {
        font-family: var(--ff-mon);
        font-size: 5rem;
        font-weight: 600;
        line-height: 1;
        padding-left: 2rem;
    }

    #pushy .info_area p.btn.tel a::before {
        display: inline-block;
        content: "";
        background: url("../images/common/tel_blue.svg") no-repeat 50% / contain;
        width: 3.8rem;
        height: 4.5rem;
        left: 6rem;
        position: absolute;
        top: 3.4rem;
    }

    #pushy .info_area p.btn.tel a .open {
        font-size: 2.4rem;
        font-weight: bold;
    }

    #pushy .info_area p.btn.contact a {
        font-size: 5rem;
        color: var(--theme_m_color);
        font-weight: 600;
        position: relative;
        height: 15.6rem;
        border-radius: 1.4rem;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0rem 4rem;
		font-family: var(--ff-mon);
    }

    #pushy .info_area p.btn.contact a::before {
        position: absolute;
        content: "";
        background: url(../images/common/mail_blue.svg) no-repeat 50% / contain;
        width: 4.4rem;
        height: 3.2rem;
        top: 50%;
        transform: translateY(-50%);
        left: 6rem;
    }

    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    ハンバーガー (スマホ)
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    .hamburger {
        top: 20px;
        position: fixed;
        right: 8rem;
        width: 6rem;
        height: 4rem;
        margin-left: auto;
    }

    .hamburger .c_h {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 0;
        height: .4rem;
        background: var(--main_color);
        width: 100%;
        display: block;
        border-radius: 4rem;
    }

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

    .ham1 {
        top: 0;
    }

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

    .ham2 {
        top: 50%;
        display: none !important;
    }

    .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: 1.5rem !important;*/
        right: 1.5rem;
        width: 10.4rem;
        height: 10.4rem;
        background: var(--theme_m_color);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        border-radius: 100%;
        padding-bottom: .5rem;
    }

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

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

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

    #pushy .hamburger.ham02 .c_h {
        background: var(--theme_m_color);
    }
}
