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

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

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

    .sticky_btn p.contact a {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 20rem;
        background: var(--theme_m_color);
        color: #fff;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
header {
    position: relative;
    z-index: 200;
    padding: 2rem 25rem 2rem 5.4rem;
    min-height: 10rem;
    display: flex;
    align-items: center;
}

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

header > * {
    width: 100%;
}

.h_inner {
    justify-content: space-between;
    align-items: center;
}

.h_inner .logo_wrap {
    align-items: center;
    gap: 6rem;
}

.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.kanteikyoku {
    width: 20rem;
}

.h_btn_wrap {
    gap: 1.5rem;
    margin-left: auto;
}

.h_btn_wrap p.btn {
}

.h_btn_wrap .btn a {
    letter-spacing: .08em;
    color: #fff;
    position: relative;
    min-width: 18rem;
    height: 6rem;
    border-radius: 3rem;
    display: grid;
    align-items: center;
    padding: 1rem 4rem 1rem 3rem;
}

.h_btn_wrap .btn a::after {
    position: absolute;
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background-color: #fff;
    mask: url(../images/common/arrow_white.svg) no-repeat 50% / contain;
    -webkit-mask: url(../images/common/arrow_white.svg) no-repeat 50% / contain;
}

.cmn_color_black {
}

.cmn_color_black a {
    background: #000;
}

.cmn_color_pink {
}

.cmn_color_pink a {
    background: #E75490;
    border: 2px solid #E75490;
}

.cmn_color_white a {
	background: #fff;
	color: #000 !important;
}

.cmn_color_white a::after {
	background-image: url("../images/common/arrow.svg");
}

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

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

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

header ul li:not(:last-child) {
    margin-right: 15px;
}

header ul.child {
    /*はじめは非表示*/
    visibility: hidden;
    opacity: 0;
    /*アニメーション設定*/
    transition: all .3s;
    position: absolute;
    top: 40px;
    left: 50%;
    margin-bottom: -5px;
    min-width: 200px;
    transform: translateX(-50%);
    z-index: 8;
}

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

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

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

@media screen and (min-width: 769px) {
    header .h_btn_wrap p.btn a:hover {
        background: #fff;
    }

    header .h_btn_wrap .cmn_color_black a:hover {
        color: #000;
    }

    header .h_btn_wrap .cmn_color_black a:hover::after {
        background-color: #000;
    }

    header .h_btn_wrap .cmn_color_pink a:hover {
        color: #E75490;
    }

    header .h_btn_wrap .cmn_color_pink a:hover::after {
        background-color: #E75490;
    }
	
	p.menu-item-has-children a::after {
		content: none !important;
	}
	
	p.menu-item-has-children a:hover {
		background: #000 !important;
		color: #fff !important;
	}
    .rol {
        position: relative;
        display: inline-block;
    }

    .rol .child_menu {
        position: absolute;
        top: 65%;
        left: 0;
        z-index: 100;
        padding: 1rem 0;
        margin: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden; 
        transform: translateY(15px);
        transition: all 0.4s ease;
        display: grid;
        gap: 1rem;
    }

	.rol:hover .child_menu {
		opacity: 1;                
		visibility: visible;       
	}

    .rol .child_menu::before {
    }

    .rol .child_menu li {
        margin: 0;
    }

    .rol .child_menu li a {
        letter-spacing: .08em;
        position: relative;
        min-width: 18rem;
        height: 6rem;
        border-radius: 3rem;
        display: grid;
        align-items: center;
        padding: 1rem 1rem 1rem 1rem;
        border: 2px solid;
        background: #fff;
        justify-content: center;
    }
	
    .rol .child_menu li a:hover {
		color: #fff;
		background: #000;
		border-color: #000;
    }
}

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

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

header > * {
}

.h_inner {
    padding: 2rem 10.5rem 2rem 3rem;
}

.h_inner .logo {
}

.h_inner .logo a {
}

.h_inner .logo a img {
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    pushy内
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.logged-in #pushy.hambuger_inner02 {
	top: 32px;
}

#pushy.hambuger_inner02 .bg {
    background: #000;
    height: 100%;
}

#pushy .h_nav_wrap {
}

#pushy .h_nav_wrap .grid_layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 0 4rem;
    width: 100%;
    margin-left: auto;
}

#pushy .h_nav_wrap a {
    color: #fff;
    display: block;
}

#pushy .h_nav_wrap ul.h_nav_menu {
}

#pushy .h_nav_wrap ul.h_nav_menu li {
}

#pushy .h_nav_wrap ul.h_nav_menu > li > a {
    font-size: 2rem;
    color: #00B4EA;
    padding: 2rem 3rem 2.4rem .5rem;
    border-top: 1px solid #00B4EA;
    display: block;
}

#pushy .h_nav_wrap ul.h_nav_menu > li:last-of-type > a {
    border-bottom: 1px solid #00B4EA;
}

#pushy .h_nav_wrap ul.h_nav_menu > li > a:hover {
    color: #fff;
}

#pushy .h_nav_wrap ul.h_nav_menu > li:not(.has-child) > a {
    position: relative;
}

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

#pushy .h_nav_wrap ul.h_nav_menu > li > ul.child {
    padding-left: 2rem;
}

#pushy .h_nav_wrap ul.h_nav_menu > li > ul.child > li {
}

#pushy .h_nav_wrap ul.h_nav_menu > li > ul.child > li > a {
    font-size: 1.6rem;
    padding-left: 1em;
    position: relative;
}

#pushy .h_nav_wrap ul.h_nav_menu > li > ul.child > li > a::after {
    position: absolute;
    content: "";
    width: .8em;
    height: 1px;
    background: #fff;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

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

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

.hamburger .c_h {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0;
    height: .2rem;
    background: var(--main_color);
    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: 41px;
}

.hamburger.ham03 {
    top: 0;
    right: 2rem;
    width: 8rem;
    height: 8rem;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.hamburger.ham03 .ham_bg::after {
    content: "MENU";
    font-size: 1.2rem;
    display: grid;
    justify-content: center;
    margin-top: 2rem;
	font-family: "Lato", sans-serif;
}

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

#pushy .hamburger.ham03 .ham_bg::after {
    color: #fff;
    content: "CLOSE"
}

#pushy .hamburger.ham03 .c_h.ham1 {
    transform: translate(-50% , -50%) rotate(-33deg);
}

#pushy .hamburger.ham03 .c_h.ham3 {
    transform: translate(-50% , -50%) rotate(33deg);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ヘッダー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width: 769px) {
    /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
    pushy内
    ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
    #pushy.hambuger_inner02 {
        background: rgba(0,0,0,.5);
    }

    #pushy.hambuger_inner02 .bg {
        max-width: 110rem;
        margin-left: auto;
    }

    #pushy .h_nav_wrap {
        margin-top: 14rem;
        margin-right: 1rem;
        padding: 0 10rem;
    }

}

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

    .h_inner {
        padding: 2rem 10.5rem 2rem 2rem;
    }

    .h_inner .logo_wrap {
        gap: 7rem;
    }

    .h_inner .logo {
        width: 33.3rem;
    }

    .h_inner p.kanteikyoku {
        width: 17.5rem;
    }

    .hamburger.ham03 {
        width: 12rem;
        height: 12rem;
        right: 1.1rem;
    }

    .hamburger.ham03 .ham_bg {
        width: 6rem;
        height: 1.5rem;
        top: -1rem;
    }

    .hamburger.ham03 .ham_bg::after {
        font-size: 2rem;
        margin-top: 2.5rem;
    }

    .hamburger.ham03 .c_h {
        height: 2px;
    }
	
	#pushy {
		background: #000;
	}
	
	#pushy .h_inner {
		min-height: 14rem;
	}
	
	#pushy .h_nav_wrap {
		padding: 4rem 10rem 0;
	}

    #pushy .h_nav_wrap .grid_layout {
        grid-template-columns: 1fr;
        gap: 0 4rem;
		padding-bottom: 10rem;
    }

    #pushy .h_nav_wrap a {
    }

    #pushy .h_nav_wrap ul.h_nav_menu {
    }

    #pushy .h_nav_wrap ul.h_nav_menu li {
    }

    #pushy .h_nav_wrap ul.h_nav_menu > li > a {
        font-size: 3.2rem;
        padding: 3rem 3rem 3rem .5rem;
    }
	
	#pushy .h_nav_wrap ul.h_nav_menu:not(:last-of-type) > li:last-of-type a {
		border-bottom: none;		
	}

    #pushy .h_nav_wrap ul.h_nav_menu > li:last-of-type > a {
    }

    #pushy .h_nav_wrap ul.h_nav_menu > li > a:hover {
    }

    #pushy .h_nav_wrap ul.h_nav_menu > li:not(.has-child) > a {
    }

    #pushy .h_nav_wrap ul.h_nav_menu > li:not(.has-child) > a::after {
        width: 3rem;
        height: 3rem;
        right: 2rem;
    }
}


