
/* 

header.css

 */
header{
	width: 100%;
	height: auto ;
}
.logo_area{
	position: fixed;
	top: 32px;
	left: 25px;
	width: 140px;
	height: auto;
	mix-blend-mode: exclusion;
	z-index: 6;
}
.logo_area a{
	width: 100%;
	height: auto;
}
.logo_area a img{
	width: 100%;
	height: auto;
}
.gloval-nav-wrap{
	width: 100%;
	height: auto;
	position: relative;
}
.openbtn1{
	position: fixed;
	top: 32px;
	right: 25px;
	z-index: 9999;
	cursor: pointer;
	mix-blend-mode: exclusion;
}
.openbtn1 span{
	display: block;
	background-color: #ffffff;
	width: 24px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	transition: all .5s;
}

/* グローバルナビの背景サークル */
.circle-bg{
    position: fixed;
  	z-index:3;
    /*丸の形*/
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #141414;
    background: linear-gradient(151.68deg, #054E84 6.3%, #051D4D 101.07%);
    opacity: 0.4;
  	transform: scale(0);
  	right:25px;
    top:32px;
    transition: all .6s ease;
}
.circle-bg.circleactive{
  	transform: scale(80);
  	opacity: 1;
}
.header-twitter{
	transform: rotate(90deg) translate(-96%,-50%);
	position: fixed;
	right: -28px;
	top: 100vh;
	mix-blend-mode: exclusion;
	z-index: 4;
	padding: 4px 0;
}
.header-twitter a{
	color: #ffffff;
	display: block;
	font-size: 13px;
	letter-spacing: 0.08em;
}
@media screen and (min-width : 500px){
	.circle-bg.circleactive{
	  	transform: scale(110);
	}
}
@media screen and (min-width : 768px){
	.logo_area{
		top: 62px;
		left: 48px;
		width: 144px;
	}
	.openbtn1{
		top: 62px;
		right: 48px;
	}
	.circle-bg{
	  	right:48px;
	    top:62px;
	    transition: all .6s;
	}
	.circle-bg.circleactive{
		transform: scale(120);
	}
	.header-twitter{
		transform: rotate(90deg) translate(-94%,-50%);
		position: fixed;
		right: -14px;
		top: 100vh;
		border-bottom: 1px solid #000000;
	    transition: all .4s;
	}
	.header-twitter:hover{
		border-bottom: 1px solid #ffffff;
	}
	.header-twitter a{
		display: block;
		font-size: 14px;
		letter-spacing: 0.08em;
	}
}
@media screen and (min-width : 768px){
	.circle-bg{
    	transition: all .9s;
	}
	.circle-bg.circleactive{
		transform: scale(200);
	}
}
@media screen and (min-width : 913px){	
	.openbtn1 span:hover{
		background-color: #fab17b;
	}
}



/* gloval-nav.css */
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 4;
  	top: 0;
  	width:100%;
    height: 100vh;
	mix-blend-mode: exclusion;
}
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 5; 
    width: 100%;
    height: 100vh;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list{
    display: block;
}
#g-nav-list > ul{
  	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    z-index: 6;
	width: 100%;
	padding: 144px 24px;
}
/*背景が出現後にナビゲーション表示 */
#g-nav.panelactive #g-nav-list ul {
    opacity:1;
}
/* 背景が出現後にナビゲーション */
#g-nav.panelactive ul li{
	animation-name:gnaviAnime;
	animation-duration:1s;
	animation-delay:.16s;/*0.2 秒遅らせて出現*/
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes gnaviAnime{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#g-nav-list > ul >li{
	width: 100%;
	text-align: left;
	margin: 0 0 32px;
}
#g-nav-list > ul > li > a{
	font-size: 11px;
	color: #ffffff;
	text-decoration: none;
	display: block;
	letter-spacing: 0.14em;
	font-weight: 300;
	padding: 8px 0;
}
#g-nav-list > ul > li > a:before{
	content: attr(data-en);
	font-size: 16px;
	margin-right: 8px;
	font-weight: 600;
}
#g-nav-list .tags-title{
	font-size: 11px;
	color: #ffffff;
	text-decoration: none;
	display: block;
	letter-spacing: 0.14em;
	font-weight: 300;
}
#g-nav-list .tags-title:before{
	content: attr(data-en);
	font-size: 16px;
	margin-right: 8px;
	font-weight: 600;
}
#g-nav-list .category-title{
	font-size: 11px;
	color: #ffffff;
	text-decoration: none;
	display: block;
	letter-spacing: 0.14em;
	font-weight: 300;
}
#g-nav-list .category-title:before{
	content: attr(data-en);
	font-size: 16px;
	margin-right: 8px;
	font-weight: 600;
}
#g-nav-list > ul > li > a > span.bar{
	display: inline-block;
	position: relative;
	float: right;
	width: 64px;
	border-bottom: 1px solid #ffffff;
	height: 10px;
	margin-left: 16px;
	overflow: hidden;
}
#g-nav-list > ul > li > a > span.bar > span.arrow{
	position: absolute;
	right: -2px;
	bottom: 1.8px;
	width: 10px;
	height: 1px;
	background-color: #ffffff;
	transform: rotate(45deg);
}
.tags-list{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: 24px 0 0;
}
.tags-list li{
	display: block;
	width: auto;
	height: 32px;
	margin: 0 10px 10px 0;
	padding: 0 14px;
	border: 1px solid #ffffff;
	border-radius: 16px;
	transition: all .4s;
}
.tags-list li a{
	display: block;
	font-size: 11px;
	line-height: 28px;
	letter-spacing: 0.08em;
	color: #ffffff;
	transition: all .4s;
}
.category-list{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	margin: 24px 0 0;
}
.category-list li{
	display: block;
	width: auto;
	height: 32px;
	margin: 0 10px 10px 0;
	padding: 0 14px;
	border: 1px solid #ffffff;
	border-radius: 16px;
	transition: all .4s;
}
.category-list li a{
	display: block;
	font-size: 11px;
	line-height: 28px;
	letter-spacing: 0.08em;
	color: #ffffff;
	transition: all .4s;
}
@media screen and (min-width : 768px){
	#g-nav-list{
	    display: none;/*はじめは表示なし*/
	    /*ナビの数が増えた場合縦スクロール*/
	    position: block;
	    z-index: 999; 
	    width: 100%;
	    height: 100vh;
	    padding: 0;
	    margin: 0 auto;
	    overflow: scroll;
	    -webkit-overflow-scrolling: touch;
	}
	#g-nav-list::-webkit-scrollbar{
  		display: none;
	}
	#g-nav-list > ul{
		width: 500px;
		margin: 240px auto;
		padding: 0;
	}
	#g-nav-list > ul >li{
		margin: 0 0 56px;
	}
	#g-nav-list > ul > li > a > span.bar{
		width: 80px;
		transition: all .4s;
	}
	.tags-list{
		margin: 40px 0 0;
	}
	.tags-list li{
		height: 40px;
		margin: 0 16px 16px 0;
		padding: 0 16px;
		border-radius: 20px;
	}
	.tags-list li a{
		font-size: 11px;
		line-height: 37px;
	}
	.category-list{
		margin: 40px 0 0;
	}
	.category-list li{
		height: 40px;
		margin: 0 16px 16px 0;
		padding: 0 16px;
		border-radius: 20px;
	}
	.category-list li a{
		font-size: 11px;
		line-height: 37px;
	}
}
@media screen and (min-width : 913px){
	#g-nav-list > ul >li:hover a > span.bar{
		width: 160px;
	}
	.tags-list > li:hover{
		background-color: #ffffff;
	}
	.tags-list > li:hover a{
		color: #141414;
	}
	.category-list > li:hover{
		background-color: #ffffff;
	}
	.category-list > li:hover a{
		color: #141414;
	}
}




















{-----------------------------------------------------------------}


/* 

footer.css

 */

footer{
	background-color: #141414;
	transition: all .6s;
}
footer .footer-main_wrap{
	position: relative;
	padding: 48px 0;
	width: auto;
	margin: 0 25px;
}
.footer-logo-area{
	width: 140px;
	height: auto;
	margin: 0 0 56px;
	mix-blend-mode: exclusion;
}
.footer-logo-area img{
	width: 100%;
	height: auto;
}
.footer-info_wrap{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
}
.footer-info_wrap a{
	border-bottom: 1px solid rgba(255,255,255,0);
	transition: all .4s;
}
.footer-info_wrap > div{
	mix-blend-mode: exclusion;
	width: 100%;
	margin: 0 0 40px;
	padding: 0 24px 0 0;
}
.footer-info_wrap > div > ul{
	color: #ffffff;
	font-size: 12px;
	font-style: italic;
	font-weight: 600;
}
.footer-info_wrap > div > ul > li:first-child{
	margin-top: 8px;
}
.footer-info_wrap > div > ul > li{
	color: #ffffff;
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
	line-height: 2em;
	letter-spacing: 0.08em;
}
.footer-info_wrap > div > ul > li > a{
	color: #ffffff;
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
	line-height: 2em;
	letter-spacing: 0.08em;
	transition: all .4s;
}
.footer-info_wrap > div > ul > li > ul{
	display: flex;
	align-items: flex-start;
}
.footer-info_wrap > div > ul > li > ul > li{
	color: #ffffff;
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
	line-height: 2em;
	letter-spacing: 0.08em;
}
.footer-info_wrap > div > ul > li > ul > li > a{
	color: #ffffff;
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
	line-height: 2em;
	letter-spacing: 0.08em;
	margin: 0 4px;
	transition: all .4s;
}
.footer-info_wrap > div h2{
	color: #ffffff;
	font-size: 12px;
	font-style: italic;
	font-weight: 600;
}
.footer-info_wrap > div > ul.footer-tags-list{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 8px 0 0;
}
.footer-info_wrap > div > ul.footer-tags-list > li{
	margin: 0 7px 0 0;
}
.footer-info_wrap > div > ul.footer-tags-list > li > a{
	color: #ffffff;
	font-size: 12px;
	font-weight: 300;
	font-style: normal;
	line-height: 2em;
	letter-spacing: 0.08em;
	transition: all .4s;
	border-bottom: 1px solid rgba(255,255,255,0);
}
.footer-main_wrap .source-info{
	mix-blend-mode: exclusion;
	width: 100%;
	margin: 40px 0 40px;
	padding: 0 24px 0 0;
}
.footer-main_wrap .source-info > p{
	display: inline;
	color: #dddddd;
	font-size: 8px;
}
.footer-main_wrap .source-info > p > a{
	color: #ffffff;
	font-size: 8px;
	text-decoration: underline;
}
.moveTop_btn{
	mix-blend-mode: exclusion;
	display: inline-block;
	width: 140px;
	margin: 48px 0 0;
}
.moveTop_btn img{
	float: left;
	width: 16px;
	margin-right: 12px;
}
.moveTop_btn p{
	color: #ffffff;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 2.4em;
	letter-spacing: 0.08em;
}
.footer_copyright{
	mix-blend-mode: exclusion;
	position: absolute;
	bottom: 58px;
	right: 0;
}
.footer_copyright p{
	display: inline;
	color: #ffffff;
	font-size: 8px;
}
@media screen and (min-width : 768px){
	footer .footer-main_wrap{
		padding: 80px 48px 48px;
		width: 100%;
		margin: 0;
	}
	.footer-info_wrap > div{
		width: auto;
		min-width: 220px;
		max-width: 50%;
		margin-right: 40px;
		padding: 0;
	}
	.footer_copyright{
		right: 48px;
	}
}
@media screen and (min-width : 913px){
	.footer-info_wrap a:hover{
		border-bottom: 1px solid rgba(255,255,255,1);
	}
	.footer-info_wrap > div > ul.footer-tags-list > li > a:hover{
		border-bottom: 1px solid rgba(255,255,255,1);
	}
}
















