
/*=========================================
#hamburger
=========================================*/

/* PC  各ページコンテンツ設定
--------------------------------------------------------------------------------------------------------------------------------------------- */
@media (min-width: 768px) {
    
.hamburger {
position: fixed;
    top: 0.7vw;
    right: 0.8vw;
    z-index: 150;
    width: 4vw;
    height: 4vw;
    cursor: pointer;
    background: #fff;
}

.hamburger.is-active span:nth-child(1) {
    top: 40%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 40%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.hamburger span {
position: absolute;
    left: 50%;
    transform: translate(-50%, -260%);
    width: 72%;
    height: 3px;
    background-color: #e56619;
    transition: transform .3s;
}

.hamburger.is-active span {
    background-color: #e56619;
}

.hamburger span:nth-child(1) {
    top: 30%;
}

.hamburger span:nth-child(2) {
    top: 50%;
}

.hamburger span:nth-child(3) {
    top: 70%;
}
.hamburger p{
    position: absolute;
    bottom: 0;
    left: 0.7vw;
    font-weight: bold;
    color: #e56619 !important;
    font-size: 0.9vw;
}

/*=========================================
#drawer
=========================================*/
.drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 0 0 / 0.9);
    transition: opacity .3s, visibility .3s;
}

.drawer.is-active {
    visibility: visible;
    opacity: 1;
}

.drawer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.drawer__list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0;
}
li.drawer__item{
    margin-bottom: 3em;
    padding: 0 1em 0.3em;
    border-bottom: 1px solid #fff;
}
.drawer__link {
    color: #ffffff;
    font-size: 25px;
}
/* 子要素リンク */
li.drawer__item > ul {
    list-style-type: none;
}
li.drawer__item > ul > li > a{
    color: #ffffff !important;
}
}

/** SP
----------------------------------------------- */
@media (max-width: 767px) {
.hamburger {
    position: fixed;
    top: 1.7vw;
    right: 1.8vw;
    z-index: 150;
    width: 16vw;
    height: 15vw;
    cursor: pointer;
    background: #fff;
}

.hamburger.is-active span:nth-child(1) {
    top: 40%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 40%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.hamburger span {
position: absolute;
    left: 50%;
    transform: translate(-50%, -260%);
    width: 72%;
    height: 3px;
    background-color: #e56619;
    transition: transform .3s;
}

.hamburger.is-active span {
    background-color: #e56619;
}

.hamburger span:nth-child(1) {
    top: 30%;
}

.hamburger span:nth-child(2) {
    top: 50%;
}

.hamburger span:nth-child(3) {
    top: 70%;
}
.hamburger p{
    position: absolute;
    bottom: 0;
    left: 3.5vw;
    font-weight: bold;
    color: #e56619 !important;
    font-size: 2.9vw;
}

/*=========================================
#drawer
=========================================*/
.drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
    height: 100vh;
    background-color: rgb(0 0 0 / 0.9);
    transition: opacity .3s, visibility .3s;
}

.drawer.is-active {
    visibility: visible;
    opacity: 1;
}

.drawer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.drawer__list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0;
}
li.drawer__item:first-of-type{
    margin: 5em 0 3em;
    padding: 0;
    border-bottom: none;
}
li.drawer__item{
    margin-bottom: 3em;
    padding: 0 1em 0.3em;
    border-bottom: 1px solid #fff;
}
.drawer__link {
    color: #ffffff;
    font-size: 5vw;
}
/* 子要素リンク */
li.drawer__item > ul {
    list-style-type: none;
    padding-left: 1em;
}
li.drawer__item > ul > li > a{
    color: #ffffff !important;
    font-size: 4vw;
}

/* 申し込み */
ul.drawer__list li.hum_menu{
    position: relative;
}
ul.drawer__list li.hum_menu::before{
    position: absolute;
    content: "";
    background: url(../img/yellow_icon.png) no-repeat center top / auto 100%;
    width: 2vw;
    height: 2vw;
    top: 3.2vw;
    right: 2vw;
}
ul.drawer__list li.hum_menu a{
    background-color: #e56619;
    padding: 3vw 8vw;
    border-radius: 10px;
}
}