@charset "UTF=8";
html{
    font-size: 62.5%;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-image: url(../img/back4.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}

/*========= ぼかしのためのCSS ===============*/

.mainblur{
	filter: blur(8px);
}


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
    left: 0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(255,255,255,0.3);/*背景を少し透過させる*/
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;/*はじめは非表示*/
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {

    display: block;
}
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #686868;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #686868;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}



/* アイコン */
#header{
    margin: 50px;
}
#icon img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: solid 2px #ffffff;
    margin: auto;
    display: block;
}
#icon p{
    font-size: 20px;
    text-align: center;
}
#icon a{
    color: rgb(56, 56, 56);
}



h1{
    font-size: large;
}

#a,#b,#c,#d,#e{
    width: 80%;
    background-color: rgba(255, 255, 255, 0.5);
    background-position: center;
    border-radius: 5px;
    margin: auto;
    padding: 20px 20px 20px 30px;
    font-size: 13px;
    

}


/* 求 */
#a li{
    font-size: 20px;
    list-style-position: inside;
}

/* 相互協力について 長期相互・名義交換について 所持名義 相互協力決定作品*/
#b li,#c li,#d li,#e li{
    list-style-position: inside;
    text-align: start;
    text-indent: 20px;
}
#b ul,#c ul,#d ul{
    list-style: disc;
}

#b li p,#c li p,#d li p,#e li p{
    text-indent: 30px;
}


.table-wrap {
    overflow-x: scroll;
}

.table{
    width: 100%;
    text-align: center;
    border-collapse: collapse;
    font-size: 10px;
    overflow-x: scroll;
    min-width: 90%;
    table-layout: fixed;
}


.table th{
    background: #e2e2e2;
    border: solid 1px #778ca3;
    line-height: 20px;
}
.table td {
    border: solid 1px #778ca3;
    line-height: 15px;
}

.table th:first-child,td:first-child{
    width: 20%;
    position: sticky;
    left: 0;
    background: #e2e2e2;
}



#footer{
    width: 100%;
    height: 80px;
    background: rgba(114, 111, 111, 0.377);
    color: #fff;
    text-align: center;
    line-height: 80px;

}


@media screen and (max-width: 1200px)  {
    .table{
        min-width: 500px;
    }
    
}
@media screen and (max-width: 750px)  {
    .table{
        min-width: 400px;
        font-size: 10px;
    }

    .table th:first-child,td:first-child{
        width: 20%;
    }
    
    #a,#b,#c,#d,#e{
        padding: 10px;
    }
    #b li,#c li,#d li,#e li{
        text-indent: 15px;
    }
    #b li p,#c li p,#d li p,#e li p{
        text-indent: 15px;
    }

}