@charset "utf-8";

.humberger {
display: block;
height: 60px;
margin-left: auto;
position: relative;
z-index: 10000;
width: 60px;
border: none;
background-color: transparent;
margin: 10px 0 0 0;
}
.humberger.-active .humberger__line {
background-color: transparent;
}
.humberger.-active .humberger__line::before {
top: 0;
transform: rotate(45deg);
}
.humberger.-active .humberger__line::after {
top: 0;
transform: rotate(-45deg);
}
.humberger.-active .humberger__text::before {
content: 'MENU';
}
.humberger__line {
display: block;
height: 2px;
position: absolute;
top: 23px;
left: 50%;
transform: translateX(-50%);
width: 24px;
background-color: #1E2228;
transition: 0.4s;
}
.humberger__line:before,
.humberger__line:after {
content: "";
display: block;
height: 100%;
position: absolute;
width: 100%;
background-color: #1E2228;
transition: inherit;
}
.humberger__line:before {
top: -6px;
}
.humberger__line:after {
top: 6px;
}
.humberger__text {
position: absolute; left: -14px;
top: 11px;
transform: translateX(-50%);
width: 100%;
}
.humberger__text::before {
content: "MENU";
text-align: right;
color: #1E2228;
font-size: 1.3rem;
font-family: 'Barlow', sans-serif;
font-weight: 500;
letter-spacing: 0.02em;
}
.header__nav-area {
position: absolute;
top: 0;
left: -100%;
z-index: 9;
height: 100vh;
width: 330px;
width: 100vw;
overflow: scroll;
visibility: hidden;
padding-top: 60px;
background-color: #fff;
transition: 0.4s;
}
.header__nav-area.-active {
left: 0;
visibility: visible;
}
.global-navigation {
padding-top: 20px;
padding-right: 25px;
padding-bottom: 40px;
padding-left: 25px;
}
.global-navigation__list > li {
padding-bottom: 16px;
border-bottom: 1px dotted #aaa;
} .global-navigation__list > li + li {
margin-top: 16px;
}
.global-navigation__link {
color: #1E2228;
font-size: 1.5rem;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 400;
line-height: 1;
letter-spacing: 0.08em;
display: flex;
align-items: center;
justify-content: space-between;
transition: color 0.4s;
}
.global-navigation__link.-accordion {
position: relative;
background: none;
border: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100%;
padding: 0;
}
.global-navigation__link.-accordion p{
font-size: 1.5rem;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 400;
line-height: 1;
letter-spacing: 0.08em;
}
.global-navigation__link.-accordion::after {
content: '';
display: block;
height: 13px;
position: absolute;
top: 50%;
right: 6px;
width: 1px;
background-color: #F59CA6;
transform: translateY(-50%);
transition: transform 0.4s;
}
.global-navigation__link.-accordion::before {
content: '';
display: block;
height: 1px;
position: absolute;
top: 50%;
right: 0;
width: 13px;
background-color: #F59CA6;
transform: translateY(-50%);
}
.global-navigation__link.-active::after {
transform: translateY(-50%) rotate(-90deg);
}
.accordion {
height: 0;
overflow: hidden;
visibility: hidden;
transition: 0.4s;
}
.accordion.-active {
height: auto;
padding-top: 2px;
visibility: visible;
}
.accordion__list li {
margin-top: 15px;
font-size: 0.75rem;
font-size: 1.4rem;
}
.accordion__list li:nth-of-type(1) {
margin-bottom: -5px;
}
.accordion__list li + li {
margin-top: 15px;
}
.accordion__list li + li a,
.accordion__list li{
width: 100%;
display: block;
}
.accordion__link {
color: #1E2228;
font-size: 1.4rem;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Zen Maru Gothic', sans-serif;
font-weight: 400;
line-height: 1;
letter-spacing: 0.08em;
}