/*menu*/
.menu{
    height: 20px;
    position: fixed;
    right: 20px;
    top: 20px;
    width: 30px;
    z-index: 1000;
	mix-blend-mode: difference;
	display: block;
}
.menu__line{
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition:transform .3s;
    width: 100%;
}
.menu__line--center{
    top: 9px;
}
.menu__line--bottom{
    bottom: 0;
}
.menu__line--top.active{
    top: 8px;
    transform: rotate(45deg);
}
.menu__line--center.active{
    transform:scaleX(0);
}
.menu__line--bottom.active{
    bottom: 10px;
    transform: rotate(135deg);
}
/*gnav*/
.gnav{
    background: rgba(0,0,0,0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 900;
}
.gnav__wrap{
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
	margin: 110px 0 0 0;
	padding: 0 0 120px 0;
}

/*==================================================
アコーディオンのためのcss
===================================*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 90%;
    max-width: 900px;
    margin:0 auto;
	overflow-y: scroll;

}
.accordion-area li{
  /*  margin: 10px 0; */
}
.accordion-box {
  border-bottom: 1px solid #ccc;
}
/*アコーディオンタイトル＋と×*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.6rem;
    font-weight: normal;
    padding: 6% 6% 6% 50px;
    transition: all .5s ease;
	color: #fff;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 13px;
    height: 2px;
    background-color: #fff;
}
.title::before{
    top:48%;
    left: 13px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 13px;
    transform: rotate(90deg);

}
/*アコーディオンタイトル > */
.arrow-title{
    position: relative;
    display: inline-block;
    padding: 6% 6% 6% 50px;
    color: #fff;
    vertical-align: middle;
    text-decoration: none;
    font-size:1.6rem;
	font-weight: 500;
}
.arrow-title a{
    color: #fff;
}
/*アイコンの > */
.arrow-title::before,
.arrow-title::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}

.arrow-title::before{
    left: 15px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*　closeというクラスがついたら形状変化　*/

.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
  margin:0 3% 6% 60px;
    padding: 3%;
	font-size:1.6rem;
}
.box a {
	color: #fff;
}
/*アコーディオン内 SNSアイコン*/
.accordion-sns {
  margin: 120px 0 0px 0px;
  font-size: 1.2rem;
}
ul.accordion-sns-icon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
ul.accordion-sns-icon li {
  width: 22px;
	margin: 0 20px;
}

@media print, screen and (min-width : 768px) {
.menu{
	display: none;
}	
}
