@charset "UTF-8";

/*-------------------
base.css
-------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	margin: 0; padding: 0; border: 0; outline: 0; font-weight: normal;}
img { width: 100%; margin: 0; padding: 0; border: 0; line-height:0; font-size:0; vertical-align:top;}
html { width:100%; height: 100%;}
ul, li { list-style: none;}
p, th, td, dd { font-style:normal; font-weight:0; word-break: normal;}
dd { word-break: break-all;}
a { margin: 0; padding: 0; border: 0;}
table { border-collapse: collapse; border-spacing: 0;}

a{
	-webkit-transition: color .3s linear;
	transition: color .3s linear;
	text-decoration: none;
	color: #222222;
	}
	a:visited{
		color: #222222;
	}
	a:hover{
		/*opacity: 0.9;*/
	}

body{
	background-color: #ffffff;
	font-family: '游ゴシック Medium', '游ゴシック体', '游ゴシック', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: calc(112.5% + 0.25vw);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	font-weight: 400;
	font-feature-settings: "palt";
	letter-spacing: 0.12rem;
	position: relative;
	}
	body::after {
		/*content: '';*/
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #ffffff;  /* 背景カラー */
		z-index: 9999;  /* 一番手前に */
		pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
		opacity: 0;  /* 初期値 : 透過状態 */
		-webkit-transition: opacity .5s ease;  /* アニメーション時間は 0.5秒 */
		transition: opacity .5s ease;
	}
	body.fadeOut::after {
		/*opacity: 1;*/
	}

.clearfix::after {
	content: "";
	clear: both;
	display: block;
}

.bgGray{ background-color: #f5f5f5; }

/* フォント関連 */
.josefin{ font-family: 'Josefin Sans', sans-serif; }
.langMix{ font-family: 'Josefin Sans', '游ゴシック Medium', '游ゴシック体', '游ゴシック', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; }
.bold,.bold span,strong{ font-weight: 600; }
.italic{ font-style: italic; }
.ls003rem{ letter-spacing: 0.03rem; }
.ls005rem{ letter-spacing: 0.05rem; }
.ls012rem{ letter-spacing: 0.12rem; }
.ls015rem{ letter-spacing: 0.15rem; }
.ls020rem{ letter-spacing: 0.2rem; }

.objectFitImg {
    object-fit: contain;
    font-family: 'object-fit: contain;'
}
.objectFitImg.cover {
    object-fit: cover;
    font-family: 'object-fit: cover;'
	}
	body.js_isIe .objectFitImg.cover {
	    object-fit: contain;
	    font-family: 'object-fit: contain;'
	}




/* ハンバーガーアイコン */
-webkit-@keyframes menuHover {
	0%   {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	50%  {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}
@keyframes menuHover {
	0%   {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	50%  {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	100% {
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
}

/* 上下左右ボタン */
-webkit-@keyframes dotMoveUp {
	0%   { bottom: 15%; opacity: 0; }
	10%   { bottom: 15%; opacity: .8; }
	50%  { opacity: 1; }
	100% { bottom: 80%; opacity: 0; }
}
@keyframes dotMoveUp {
	0%   { bottom: 15%; opacity: 0; }
	10%   { bottom: 15%; opacity: .8; }
	50%  { opacity: 1; }
	100% { bottom: 80%; opacity: 0; }
}

-webkit-@keyframes dotMoveDown {
	0%   { top: 15%; opacity: 0; }
	10%   { top: 15%; opacity: .8; }
	50%  { opacity: 1; }
	100% { top: 80%; opacity: 0; }
}
@keyframes dotMoveDown {
	0%   { top: 15%; opacity: 0; }
	10%   { top: 15%; opacity: .8; }
	50%  { opacity: 1; }
	100% { top: 80%; opacity: 0; }
}

-webkit-@keyframes dotMoveL {
	0%   { right: 15%; opacity: 0; }
	10%   { right: 15%; opacity: .8; }
	50%  { opacity: 1; }
	100% { right: 80%; opacity: 0; }
}
@keyframes dotMoveL {
	0%   { right: 15%; opacity: 0; }
	10%   { right: 15%; opacity: .8; }
	50%  { opacity: 1; }
	100% { right: 80%; opacity: 0; }
}

-webkit-@keyframes dotMoveR {
	0%   { left: 15%; opacity: 0; }
	10%   { left: 15%; opacity: .8; }
	50%  { opacity: 1; }
	100% { left: 80%; opacity: 0; }
}
@keyframes dotMoveR {
	0%   { left: 15%; opacity: 0; }
	10%   { left: 15%; opacity: .8; }
	50%  { opacity: 1; }
	100% { left: 80%; opacity: 0; }
}

#modal-overlay {
	z-index: 6 ;
	/*display: none ;*/
	opacity: 0;
	visibility: hidden;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 100% ;
	background-color: rgba(0,0,0,0.8) ;
	position: fixed;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	}
	#modal-overlay.active {
		opacity: 1;
		visibility: visible;
	}

@media screen and (min-width : 960px){

	/*layout style*/
	.pc{ display: block; }
	.sp{ display: none; }

	.transition{
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		.transition:hover{
			opacity: 0.8;
		}

	main {
		box-sizing: border-box;
		-webkit-transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
		transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
		-webkit-transition-delay: 0.15s;
		transition-delay: 0.15s;
		overflow: hidden;
		}
		main.active {
			/*-webkit-transform: translate(-300px, 0);*/
			/*transform: translate(-300px, 0);*/
		}

	div.inner{
		position: relative;
		width: 90vw;
		margin: 0 auto;
		max-width: 940px;
		}
		#activity div.inner{
			max-width: 1022px;
		}

	.btn {
		width: 50vw;
		max-width: 31.25rem;
		margin: 6.25rem auto 0 auto;
		padding: 0.875rem;
		overflow: hidden;
		cursor: pointer;
	}
	.btn span {
		border: 0.0625rem solid #000000;
		padding: 2rem 0 1.5rem 0;
		display: block;
		text-align: center;
		position: relative;
		font-size: 1.375rem;
		letter-spacing: 0.2rem;
		}
		.btn.arrow span {
			padding: 2rem 3rem;
		}
		.btn span::before {
			content: '';
			display: inline-block;
			vertical-align: top;
			width: 100%;
			height: 100%;
			background-color: #ffff00;
			position: absolute;
			top: 0; right: 0; bottom: 0; left: 0;
			z-index: -1;
			margin: auto;
			-webkit-transform: scale(0,0);
			transform: scale(0,0);
			-webkit-transition-duration: 0.5s;
			transition-duration: 0.5s;
		}

		.btn:hover span::before {
			-webkit-transform: scale(1.5,1.5);
			transform: scale(1.5,1.5);
		}
		.btn.arrow span::after{
			content: "";
			margin: 0 0 0 0.1875rem;
			display: inline-block;
			vertical-align: middle;
			margin: -0.1rem 0 0 0.1875rem;
			width: 0.5rem;
			height: 0.5rem;
			border-top: 1px solid #000000;
			border-left: 1px solid #000000;
			-webkit-transform: rotate(135deg);
			transform: rotate(135deg);
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
			position: absolute;
			top: 0; bottom: 0; right: 7.5%;
			margin: auto;
		}

	#scrollBtn {
		position: fixed;
		right: 2.5rem; bottom: 8rem;
	}
	#scrollBtn .scroll {
		position: absolute;
		width: 0.0625rem;
		height: 3rem;
		cursor: pointer;
		background-color: #000000;
		text-decoration: none;
		}

	#scrollBtn .scroll p {
		text-align: end;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		font-size: 0.6875rem;
		position: absolute;
		top: -4.2rem; right: 0; left: -0.1rem;
		margin: auto;
	}
	#scrollBtn .scroll span {
		position: absolute;
		top: 15%;
		left: -3px;
		display: block;
		width: 7px;
		height: 7px;
		background-image: url(../img/common/circle_black.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
		-webkit-animation: 2s dotMoveDown infinite;
		animation: 2s dotMoveDown infinite;
	}



	/* -------------------------------------------------------------------------------------------
	*
	* ヘッダー
	*
	* ----------------------------------------------------------------------------------------- */

	header{
		background-color: #ffffff;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 5;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		header.hide{
			transform: translateY(-100%);
		}

	header div.inner{
		margin: 0 auto;
		max-width: 90vw;
		text-align: center;
		min-height: 5rem;
	}

	header h1{
		line-height: 0.6;
		position: absolute;
		top: 0; bottom: 0; left: 0;
		margin: auto;
		height: 6vw;
		max-height: 6rem;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		}
		header.chase h1{
			height: 3.5vw;
			max-height: 3rem;
		}
	header h1 a{
		display: inline-block;
		vertical-align: top;
		font-size: 0;
		display: inline-block;
		vertical-align: top;
		width: 15vw;
		max-width: 14rem;
		height: 6vw;
		max-height: 6rem;
		background-image: url(../img/common/logo_magazine_full.svg);
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 100% auto;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		header.chase h1 a{
			width: 11vw;
			max-width: 9rem;
			height: 3.5vw;
			max-height: 3rem;
			background-position: 0 -0.75rem;
		}

/*
	header h1 a img{
		display: inline-block;
		vertical-align: bottom;
		width: 15vw;
		max-width: 14rem;
		height: 6vw;
		max-height: 6rem;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		}
		header.chase h1 a img{
			width: 11vw;
			max-width: 9rem;
			height: 3vw;
			max-height: 3rem;
		}
*/

	header ul{
		font-size: 0;
		display: inline-block;
		vertical-align: top;
		}
		header ul:nth-of-type(2){
			position: absolute;
			top: 0; right: 4rem; bottom: 0;
			margin: auto;
		}
	header ul li,
	header ul li a{
		display: inline-block;
		vertical-align: top;
	}
	header ul li a{
		padding: 3.8125rem 1.2rem;
		font-size: 0.875rem;
		line-height: 1;
		-webkit-transition: all 0.5s;
		transition: all 0.5s;
		}
		header.chase ul li a{
			/*padding: 1.5rem 1.2rem;*/
			padding: 2rem 1.2rem;
		}
		header ul li a.invalid{
			cursor: default;
			color: #aaaaaa;
		}
	header ul li a span{
		display: inline-block;
		height: 0.7rem;
		padding: 0.1rem 0.3rem 0 0.4rem;
		position: relative;
		}
		header ul li a.active span::before{
			content: '';
			width: 100%;
			height: 100%;
			background-color: #ffff00;
			position: absolute;
			top: 0; bottom: 0; left: 0;
			z-index: -1;
			transform: scale(0, 1);
			transform-origin: left top;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
		header ul li a.active:hover span::before{
			transform: scale(1, 1);
		}

	header .mobileMenu{
		cursor: pointer;
		position: absolute;
		right: 0;
		top: -0.1rem; bottom: 0;
		margin: auto;
		z-index: 1;
		height: 4vw;
		max-height: 2.2rem;
		}
		body.js_isIe header .mobileMenu{
			top: 2rem;
		}

	header .menu-trigger {
	}

	header .menu-trigger span{
		display: inline-block;
		vertical-align: middle;
		background-color: #000000;
		border-radius: 50%;
		width: 6px;
		height: 6px;
	}
	header .menu-trigger span.n1{
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	header .menu-trigger span.n2{
		margin: 0 1px;
		}
		body.js_isIe header .menu-trigger span.n2{
			margin: 0 4px;
		}
	header .menu-trigger:hover span.n2{
		-webkit-animation-delay: -0.2s;
		animation-delay: -0.2s;
	}
	header .menu-trigger span.n3{
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	header .menu-trigger:hover span.n3{
		-webkit-animation-delay: -0.4s;
		animation-delay: -0.4s;
	}

	header .menu-trigger:hover span{
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation: menuHover 1.8s infinite ease-in-out;
		animation: menuHover 1.8s infinite ease-in-out;
	}



	/* -------------------------------------------------------------------------------------------
	*
	* ナビ
	*
	* ----------------------------------------------------------------------------------------- */

	nav{
		position: fixed;
		top: 0;
		right: -32rem;
		z-index: 101;
		width: 32rem;
		height: 100vh;
		background-color: #000000;
		color: #ffffff;
		text-align: center;
		-webkit-transition: all 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
		transition: all 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
		}
		nav.active{
			right: 0;
		}
	nav a,
	nav a:visited,
	nav a:hover{
		color: #ffffff;
	}

	nav #navClose{
		width: 2.5rem;
		height: 2.5rem;
		position: absolute;
		top: 2rem; right: 3rem;
		}
		nav #navClose:hover{
			cursor: pointer;
		}

	nav #navClose span {
		position: absolute;
		top: 0; left: 0; right: 0;
		margin: auto;
		width: 100%;
		height: 2px;
		}
		nav #navClose span:nth-of-type(1) {
			-webkit-transform: translateY(1rem) rotate(-45deg);
			transform: translateY(1rem) rotate(-45deg);
			background-color: #ffffff;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
		nav #navClose span:nth-of-type(2) {
			-webkit-transform: translateY(0.75rem) rotate(45deg);
			transform: translateY(0.75rem) rotate(45deg);
			padding: 0.25rem 0;
			background-color: #000000;
		}
		nav #navClose span:nth-of-type(2)::before {
			content: '';
			display: inline-block;
			vertical-align: top;
			background-color: #ffffff;
			width: 100%;
			height: 2px;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}


	nav div.navContainer{
		padding: 2rem 0;
		width: 15rem;
		display: inline-block;
		vertical-align: top;
		position: relative;
		top: 50%;
		-webkit-transform: translate3d(0, -50%, 0);
		transform: translate3d(0, -50%, 0);
	}

	nav div.navContainer div.navHeader,
	nav div.navContainer div.navList,
	nav div.navContainer div.navFooter{
		padding: 2.5rem 0 2rem 0;
	}
	nav div.navContainer div.navHeader,
	nav div.navContainer div.navList{
		border-bottom: 1px solid #ffffff;
	}
	nav div.navContainer div.navHeader p{
		font-size: 1rem;
	}


	nav div.navContainer div.navHeader p a span{
		display: inline-block;
		vertical-align: top;
		line-height: 0.9;
		height: 0.6rem;
		padding: 0 0.3rem 0.1rem 0.4rem;
		position: relative;
		}
		nav div.navContainer div.navHeader p a span::before{
			content: '';
			width: 100%;
			height: 100%;
			background-color: #ffff00;
			position: absolute;
			top: 0; bottom: 0; left: 0;
			z-index: -1;
			transform: scale(0, 1);
			transform-origin: left top;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
	nav div.navContainer div.navHeader p a:hover span{
		color: #000000;
		}
		nav div.navContainer div.navHeader p a:hover span::before{
			transform: scale(1, 1);
		}

	nav div.navContainer div.navList ul{
	}
	nav div.navContainer div.navList ul li{
		font-size: 1rem;
	}
	nav div.navContainer div.navList ul li:nth-of-type(n+2){
		margin: 1.75rem 0 0 0;
	}

	nav div.navContainer div.navList ul li a{
		}
		nav div.navContainer div.navList ul li a.invalid{
			cursor: default;
			color: #aaaaaa;
		}
	nav div.navContainer div.navList ul li a span{
		display: inline-block;
		vertical-align: top;
		line-height: 0.9;
		height: 0.6rem;
		padding: 0 0.3rem 0.1rem 0.4rem;
		position: relative;
		}
		nav div.navContainer div.navList ul li a.active span::before{
			content: '';
			width: 100%;
			height: 100%;
			background-color: #ffff00;
			position: absolute;
			top: 0; bottom: 0; left: 0;
			z-index: -1;
			transform: scale(0, 1);
			transform-origin: left top;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
	nav div.navContainer div.navList ul li a.active:hover span{
		color: #000000;
		}
		nav div.navContainer div.navList ul li a.active:hover span::before{
			transform: scale(1, 1);
		}

	nav div.navContainer div.navFooter{
	}
/*
	nav div.navContainer div.navFooter p{
		font-size: 1rem;
		line-height: 2;
	}
*/
	nav div.navContainer div.navFooter ul{
		/*margin: 2.5rem 0 0 0;*/
		font-size: 0;
		display: inline-block;
		vertical-align: top;
	}
	nav div.navContainer div.navFooter ul li,
	nav div.navContainer div.navFooter ul li a{
		display: inline-block;
		vertical-align: top;
		font-size: 0;
		}
		nav div.navContainer div.navFooter ul li:nth-of-type(n+2){
			/*margin: 0 0 0 2.5rem;*/
			margin: 0 0 0 1.75rem;
		}
		body.js_isIe nav div.navContainer div.navFooter ul li a{
			padding: 0.01rem;
		}

	nav div.navContainer div.navFooter ul li.members a{
		width: 1.25rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_members_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.instagram a{
		width: 1.125rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_instagram_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.twitter a{
		width: 1.3125rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_twitter_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.facebook a{
		width: 1.1875rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_facebook_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.youtube a{
		width: 1.375rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_youtube_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.members a:hover{
		background-image: url(../img/common/icon_members_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.instagram a:hover{
		background-image: url(../img/common/icon_instagram_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.twitter a:hover{
		background-image: url(../img/common/icon_twitter_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.facebook a:hover{
		background-image: url(../img/common/icon_facebook_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.youtube a:hover{
		background-image: url(../img/common/icon_youtube_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}

	nav div.navContainer div.navFooter p{
		font-size: 1rem;
		line-height: 1;
		margin: 1rem 0 0 0;
		}
		nav div.navContainer div.navFooter p:nth-of-type(1){
			margin: 0 0 2rem 0;
		}

	nav div.navContainer div.navFooter p a span{
		display: inline-block;
		vertical-align: top;
		line-height: 0.9;
		height: 0.6rem;
		padding: 0 0.3rem 0.1rem 0.4rem;
		position: relative;
		}
		nav div.navContainer div.navFooter p a span::before{
			content: '';
			width: 100%;
			height: 100%;
			background-color: #ffff00;
			position: absolute;
			top: 0; bottom: 0; left: 0;
			z-index: -1;
			transform: scale(0, 1);
			transform-origin: left top;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
	nav div.navContainer div.navFooter p a:hover span{
		color: #000000;
		}
		nav div.navContainer div.navFooter p a:hover span::before{
			transform: scale(1, 1);
		}







	/* -------------------------------------------------------------------------------------------
	*
	* 見出し
	*
	* ----------------------------------------------------------------------------------------- */


	#headline{
		padding: 1.75rem 0;
		text-align: center;
		background-color: #000000;
		color: #ffffff;
	}

	#headline h2{
		line-height: 1;
	}
	#headline h2 p.main{
		font-size: 1.5625rem;
		margin: 0.2rem 0 0 0;
	}
	#headline h2 p.sub{
		display: none;
		/*margin: 0.75rem 0 0 0;*/
		/*font-size: 1.125rem;*/
	}



	/* -------------------------------------------------------------------------------------------
	*
	* トピックス
	*
	* ----------------------------------------------------------------------------------------- */

	#topics{
	}
	#topics.isTop{
		margin: 3.75rem 0 0 0;
	}
	#topics h2{
		text-align: center;
		line-height: 1;
		margin: 0 0 3.25rem 0;
	}
	#topics h2 p.main{
		font-size: 1.75rem;
		/*letter-spacing: 0.2rem;*/
	}
	#topics h2 p.sub{
		margin: 0.3rem 0 0 0;
		font-size: 0.75rem;
	}

	#topics article{
		display: inline-block;
		vertical-align: top;
		font-size: 0.8125rem;
		line-height: 1.5;
		width: 30%;
		position: relative;
		}
		#topics.category_tag article:nth-of-type(n+2){
			margin-left: 4%;
		}
		#topics.category_tag article:nth-of-type(3n+1){
			margin-left: 0;
		}
		#topics.category_tag article:nth-of-type(n+4){
			margin-top: 4.5rem;
		}
/*
		#topics.category_tag article:nth-of-type(3n-1){
			-webkit-transition-delay: 0.2s;transition-delay: 0.2s;
		}
		#topics.category_tag article:nth-of-type(3n){
			-webkit-transition-delay: 0.4s;transition-delay: 0.4s;
		}
		#topics.category_tag article:nth-of-type(1){
			-webkit-transition-delay: 0.4s;transition-delay: 0.4s;
		}
		#topics.category_tag article:nth-of-type(2){
			-webkit-transition-delay: 0.6s;transition-delay: 0.6s;
		}
		#topics.category_tag article:nth-of-type(3){
			-webkit-transition-delay: 0.8s;transition-delay: 0.8s;
		}
		#topics.category_tag article:nth-of-type(4){
			-webkit-transition-delay: 1.0s;transition-delay: 1.0s;
		}
		#topics.category_tag article:nth-of-type(5){
			-webkit-transition-delay: 1.2s;transition-delay: 1.2s;
		}
		#topics.category_tag article:nth-of-type(6){
			-webkit-transition-delay: 1.4s;transition-delay: 1.4s;
		}
*/
		#topics.category_tag.isTag article.is-hidden{
			display: none;
		}

		#topics.isTop article:nth-of-type(n+2){
			margin-top: 4.5rem;
		}
		#topics.isTop article:nth-of-type(n+3){
			margin-left: 4%;
		}
		#topics.isTop article:nth-of-type(3n-1){
			margin-left: 0;
		}

		#topics.isTop article:nth-of-type(1){
			width: 100%;
			margin: 0;
			padding: 0 0 1rem 0;
		}
/*
		#topics.isTop article:nth-of-type(3n){
			-webkit-transition-delay: 0.2s;transition-delay: 0.2s;
		}
		#topics.isTop article:nth-of-type(3n+1){
			-webkit-transition-delay: 0.4s;transition-delay: 0.4s;
		}
		#topics.isTop article:nth-of-type(1){
			-webkit-transition-delay: 0.2s;transition-delay: 0.2s;
		}
		#topics.isTop article:nth-of-type(2){
			-webkit-transition-delay: 0.4s;transition-delay: 0.4s;
		}
		#topics.isTop article:nth-of-type(3){
			-webkit-transition-delay: 0.6s;transition-delay: 0.6s;
		}
		#topics.isTop article:nth-of-type(4){
			-webkit-transition-delay: 0.8s;transition-delay: 0.8s;
		}
		#topics.isTop article:nth-of-type(5){
			-webkit-transition-delay: 1.0s;transition-delay: 1.0s;
		}
		#topics.isTop article:nth-of-type(6){
			-webkit-transition-delay: 1.2s;transition-delay: 1.2s;
		}
*/

	#topics article p.topicsCategory{
		margin: 0 0 0.6875rem 0;
		padding: 0 0 0.5625rem 0;
		line-height: 1;
		position: relative;
		font-size: 0.6875rem;
		/*letter-spacing: 0.08rem;*/
		}
		#topics.isTop article:nth-of-type(1) p.topicsCategory{
			font-size: 0.8125rem;
			/*letter-spacing: 0.12rem;*/
		}
	#topics article p.topicsCategory::before{
		content: '';
		display: inline-block;
		width: 1.5rem;
		height: 2px;
		background-color: #cccccc;
		position: absolute;
		bottom: 0; left: 0;
	}

	#topics article a.topicsImgOuter{
		display: inline-block;
		vertical-align: top;
		width: 100%;
		}
		#topics.isTop article:nth-of-type(1) a.topicsImgOuter{
			width: 57%;
			height: 25rem;
			overflow: hidden;
		}

	#topics article a.topicsImgOuter div.topicsImg{
		position: relative;
		overflow: hidden;
		}
		#topics article a.topicsImgOuter div.topicsImg::before {
			content: '';
			display: block;
			padding-top: 100%;
		}

	#topics article a.topicsImgOuter div.topicsImg img{
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
		object-position: top;
		}
		body.js_isIe #topics article a.topicsImgOuter div.topicsImg img{
			width: auto;
		}

	#topics article a.topicsImgOuter:hover div.topicsImg img{
		-webkit-transform: scale(1.03,1.03);
		transform: scale(1.03,1.03);
	}

	#topics article div.topicsContainer{
		margin: 0.75rem 0 0 0;
		line-height: 1;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer{
			margin: 0 0 0 4%;
			width: 38%;
			display: inline-block;
			vertical-align: bottom;
		}


	#topics article div.topicsContainer div.topicsInfo{
		margin: 0 0 0.3rem 0;
		position: relative;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer div.topicsInfo{
			margin: 0 0 0.3rem 0;
		}
	#topics article div.topicsContainer div.topicsInfo p.date{
		font-size: 0.9rem;
		color: #aaaaaa;
		font-weight: 300;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer div.topicsInfo p.date{
			font-size: 1rem;
		}
	#topics article div.topicsContainer div.topicsInfo p.newIcon{
		font-size: 0.875rem;
		background-color: #ffff00;
		line-height: 1.1;
		height: 0.6rem;
		padding: 0 0.1rem 0.1rem 0.3rem;
		display: inline-block;
		vertical-align: top;
		position: absolute;
		top: -0.3rem; right: 0; bottom: 0;
		margin: auto;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer div.topicsInfo p.newIcon{
			margin: 0 0 2rem 0;
			position: relative;
		}
		#topics.isTop article:nth-of-type(n+2) div.topicsContainer div.topicsInfo p.newIcon{
			position: absolute;
			top: -0.15rem; right: 0; bottom: 0;
			margin: auto;
		}

	#topics article div.topicsContainer p.topicsTitle{
		font-size: 0.875rem;
		line-height: 1.6;
		}
		#topics.isTop article div.topicsContainer p.topicsTitle{
			font-weight: 700;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer p.topicsTitle{
			font-size: 1.3125rem;
			line-height: 1.3;
			/*letter-spacing: 0.2rem;*/
		}
	#topics article div.topicsContainer p.topicsText{
		margin: 1rem 0 0 0;
		font-size: 0.875rem;
		line-height: 1.6;
		text-align: justify;
		position: relative;
		max-height: 8.25rem;
		overflow: hidden;
	}
	#topics.isTop article:nth-of-type(n+2) div.topicsContainer p.topicsText{
		margin: 0.75rem 0 0 0;
		font-size: 0.75rem;
		color: #757575;
		max-height: 3.6rem;
	}
	#topics article div.topicsContainer p.topicsText::before,
	#topics article div.topicsContainer p.topicsText::after{
		position: absolute;  
		background-color: #ffffff;
	}
	#topics article div.topicsContainer p.topicsText::before {
		content: '...';
		bottom: 0;
		right: -0.1rem;
	}
	#topics article div.topicsContainer p.topicsText::after {
		content: '';
		height: 100%;
		width: 100%;
	}

	#topics article div.topicsContainer ul.topicsTag{
			margin: 0.75rem 0 0 0;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer ul.topicsTag{
			margin: 2rem 0 0 0;
		}
	#topics article div.topicsContainer ul.topicsTag li{
		margin: 0 0.5rem 0.5rem 0;
		display: inline-block;
		vertical-align: top;
	}
	#topics article div.topicsContainer ul.topicsTag li a{
		font-size: 0.75rem;
		background-color: #ededed;
		line-height: 1.1;
		height: 0.625rem;
		padding: 0 0.1rem;
		display: inline-block;
		vertical-align: top;
		font-weight: 300;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		#topics article div.topicsContainer ul.topicsTag li a::before{
			content: '#';
			display: inline;
		}
		#topics article div.topicsContainer ul.topicsTag li a:hover{
			background-color: #ffff00;
			cursor: pointer;
		}

	#topics article div.topicsContainer div.topicsLink{
		position: absolute;
		bottom: 0; right: 0;
		height: 0.0625rem;
		width: 3rem;
		cursor: pointer;
		background-color: #000000;
		text-decoration: none;
	}

	#topics article div.topicsContainer div.topicsLink p {
		text-align: end;
		font-size: 0.75rem;
		height: 0.5rem;
		position: absolute;
		top: -0.15rem; bottom: 0; left: -6.8rem;
		margin: auto;
		padding: 0 0.1rem 0 0.2rem;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		#topics article div.topicsContainer div.topicsLink p::before{
			content: '';
			width: 100%;
			height: 0.6rem;
			background-color: #ffff00;
			position: absolute;
			top: 0; bottom: 0; left: 0;
			z-index: -1;
			transform: scale(0, 1);
			transform-origin: left top;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
	#topics article div.topicsContainer div.topicsLink:hover p{
		color: #000000;
		}
		#topics article div.topicsContainer div.topicsLink:hover p::before{
			transform: scale(1, 1);
		}


	#topics article div.topicsContainer div.topicsLink span {
		position: absolute;
		left: 15%;
		top: -3px;
		display: block;
		width: 7px;
		height: 7px;
		background-image: url(../img/common/circle_black.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
		}
		#topics article div.topicsContainer div.topicsLink:hover span {
			-webkit-animation: 2s dotMoveR infinite;
			animation: 2s dotMoveR infinite;
		}



	/* -------------------------------------------------------------------------------------------
	*
	* SNS
	*
	* ----------------------------------------------------------------------------------------- */

	aside{
		margin: 7.5rem 0 8.5rem 0;
		text-align: center;
	}
	aside ul,
	aside ul li{
		display: inline-block;
		vertical-align: top;
	}
	aside ul li{
		}
		aside ul li:nth-of-type(n+2){
			/*margin: 0 0 0 1.75rem;*/
			margin: 0 0 0 0.5rem;
		}

	aside ul li a{
		display: inline-block;
		vertical-align: top;
		width: 3.375rem;
		height: 3.375rem;
		border-radius: 50%;
		position: relative;
		overflow: hidden;
	}
	aside ul li a img{
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		margin: auto;
	}
	aside ul li.instagram a img{
		width: 1.125rem;
		height: 1.125rem;
	}
	aside ul li.twitter a img{
		width: 1.3125rem;
		height: 1.125rem;
	}
	aside ul li.facebook a img{
		width: 1.1875rem;
		height: 1.125rem;
	}
	aside ul li.members a img{
		width: 1.125rem;
		height: 1.125rem;
	}
	aside ul li.youtube a img{
		width: 1.375rem;
		height: 1.125rem;
	}


	aside ul li a::before {
		content: '';
		display: inline-block;
		vertical-align: top;
		width: 100%;
		height: 100%;
		background-color: #ffff00;
		border-radius: 50%;
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		z-index: -1;
		margin: auto;
		-webkit-transform: scale(0,0);
		transform: scale(0,0);
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
	}

	aside ul li a:hover::before {
		-webkit-transform: scale(1.5,1.5);
		transform: scale(1.5,1.5);
	}




	/* -------------------------------------------------------------------------------------------
	*
	* ページトップボタン
	*
	* ----------------------------------------------------------------------------------------- */

	#pageTopBtn {
		position: fixed;
		right: 2.5rem; bottom: 8rem;
	}
	#pageTopBtn .scroll {
		position: absolute;
		width: 0.0625rem;
		height: 3rem;
		cursor: pointer;
		background-color: #000000;
		text-decoration: none;
		}

	#pageTopBtn .scroll p {
		text-align: end;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		font-size: 0.6875rem;
		position: absolute;
		bottom: -1.2rem; right: 0; left: -0.1rem;
		margin: auto;
	}
	#pageTopBtn .scroll span {
		position: absolute;
		bottom: 15%;
		left: -3px;
		display: block;
		width: 7px;
		height: 7px;
		background-image: url(../img/common/circle_black.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
		-webkit-animation: 2s dotMoveUp infinite;
		animation: 2s dotMoveUp infinite;
	}



	/* -------------------------------------------------------------------------------------------
	*
	* フッター
	*
	* ----------------------------------------------------------------------------------------- */

	footer{
		background-color: #ffffff;
		color: #000000;
		text-align: center;
		padding: 1.5625rem 0 5.25rem 0;
	}

	footer p.logo{
	}
	footer p.logo img{
		width: 7rem;
		height: 1.5625rem;
		margin: 0 auto;
	}
	footer p.text{
		margin: 1.5rem auto 0 auto;
		font-size: 0.75rem;
	}


}@media screen and (max-width : 959px){

	body{
		font-family: 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', '游ゴシック', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	}

	/*layout style*/
	.pc{ display: none; }
	.sp{ display: block; }

	img{width: 100%;}

	main {
		box-sizing: border-box;
		-webkit-transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
		transition: transform 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
		-webkit-transition-delay: 0.15s;
		transition-delay: 0.15s;
		overflow: hidden;
		}
		main.active {
			/*-webkit-transform: translate(-300px, 0);*/
			/*transform: translate(-300px, 0);*/
		}

	div.inner{
		position: relative;
		width: 90vw;
		margin: 0 auto;
	}

	.btn {
		width: 58vw;
		margin: 6.25rem auto 0 auto;
		padding: 0.875rem;
		overflow: hidden;
		cursor: pointer;
	}
	.btn span {
		border: 0.0625rem solid #000000;
		padding: 1.5rem 0 1.2rem 0;
		font-size: 1rem;
		display: block;
		text-align: center;
		position: relative;
		}
		.btn.arrow span {
			padding: 1.25rem 3rem 1.25rem 1rem;
		}
		.btn span::before {
			content: '';
			display: inline-block;
			vertical-align: top;
			width: 100%;
			height: 100%;
			background-color: #ffff00;
			position: absolute;
			top: 0; right: 0; bottom: 0; left: 0;
			z-index: -1;
			margin: auto;
			-webkit-transform: scale(0,0);
			transform: scale(0,0);
			-webkit-transition-duration: 0.5s;
			transition-duration: 0.5s;
		}
		.btn:active span::before,
		.btn:hover span::before{
			-webkit-transform: scale(1.5,1.5);
			transform: scale(1.5,1.5);
		}
		.btn.arrow span::after{
			content: "";
			margin: 0 0 0 0.1875rem;
			display: inline-block;
			vertical-align: middle;
			margin: -0.1rem 0 0 0.1875rem;
			width: 0.5rem;
			height: 0.5rem;
			border-top: 1px solid #000000;
			border-left: 1px solid #000000;
			-webkit-transform: rotate(135deg);
			transform: rotate(135deg);
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
			position: absolute;
			top: 0; bottom: 0; right: 7.5%;
			margin: auto;
		}

	#scrollBtn {
		display: none;
	}
/*
	#scrollBtn {
		position: fixed;
		right: 6vw; bottom: 8rem;
		z-index: 1;
	}
	#scrollBtn .scroll {
		position: absolute;
		width: 0.0625rem;
		height: 3rem;
		cursor: pointer;
		background-color: #000000;
		text-decoration: none;
		}

	#scrollBtn .scroll p {
		text-align: end;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		font-size: 0.6875rem;
		position: absolute;
		top: -4.2rem; right: 0; left: -0.1rem;
		margin: auto;
	}
	#scrollBtn .scroll span {
		position: absolute;
		top: 15%;
		left: -3px;
		display: block;
		width: 0.4rem;
		height: 0.45rem;
		border-radius: 100%;
		background: #000000;
		-webkit-animation: 2s dotMoveDown infinite;
		animation: 2s dotMoveDown infinite;
	}
*/


	/* -------------------------------------------------------------------------------------------
	*
	* ヘッダー
	*
	* ----------------------------------------------------------------------------------------- */

	header{
		background-color: #ffffff;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 5;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		padding: 1rem 0;
		}
/*
		header.hide{
			transform: translateY(-100%);
		}
*/

	header div.inner{
		margin: 0 auto;
		max-width: 90vw;
		text-align: center;
		overflow: hidden;

		/*height: 2.75rem;*/
		/*height: 3.75rem;*/
		/*height: 4.25rem;*/
		height: 3.75rem;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		header.chase div.inner{
			/*height: 2.125rem;*/
			/*height: 3.75rem;*/
		}

	header h1{
		/*height: 1.4rem;*/
		height: auto;
		position: absolute;
		top: 0; bottom: 0; left: 0;
		margin: auto;
		}
		header.chase h1{
			/*height: 2rem;*/
			/*height: 2.75rem;*/
		}
	header h1 a{
		display: inline-block;
		vertical-align: top;
		font-size: 0;
		/*width: 10.5rem;*/
		/*height: 4.2rem;*/
		width: 9.5rem;
		/*height: 2.75rem;*/
		height: 3.75rem;
		background-image: url(../img/common/logo_magazine_full.svg);
		background-repeat: no-repeat;
		background-position: 0 0;
		background-size: 100% auto;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
/*
		header.chase h1 a{
			width: 9.5rem;
			height: 2.75rem;
			background-position: 0 -1rem;
		}
*/

/*
	header h1 a img{
		display: inline-block;
		vertical-align: bottom;
		width: 10.5rem;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		header.chase h1 a img{
			width: 9.5rem;
		}
*/


	header .mobileMenu{
		/*float: right;*/
		/*margin: 0.3rem 0.2rem 0.2rem 0;*/
		position: absolute;
		top: 0; right: 0.5rem; bottom: 0;
		margin: auto;
		height: 2rem;
	}

	header .menu-trigger {
	}

	header .menu-trigger span{
		display: inline-block;
		vertical-align: middle;
		background-color: #000000;
		border-radius: 50%;
		width: 7px;
		height: 7px;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
	}
	header .menu-trigger span.n1{
		-webkit-transform: scale(0.5);
		transform: scale(0.5);
	}
	header .menu-trigger span.n2{
		margin: 0 3px;
	}
	header .menu-trigger span.n3{
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	header .menu-trigger span.active{
		-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
		-webkit-animation: menuHover 1.8s infinite ease-in-out;
		animation: menuHover 1.8s infinite ease-in-out;
		}
		header .menu-trigger span.n2.active{
			-webkit-animation: menuHover 1.8s infinite ease-in-out -0.2s;
			animation: menuHover 1.8s infinite ease-in-out -0.2s;
		}
		header .menu-trigger span.n3.active{
			-webkit-animation: menuHover 1.8s infinite ease-in-out -0.4s;
			animation: menuHover 1.8s infinite ease-in-out -0.4s;
		}



	/* -------------------------------------------------------------------------------------------
	*
	* ナビ
	*
	* ----------------------------------------------------------------------------------------- */

	nav{
		position: fixed;
		top: 0;
		right: -100vw;
		z-index: 101;
		width: 100vw;
		/*height: 100vh;*/
		background-color: #000000;
		color: #ffffff;
		text-align: center;
		-webkit-transition: all 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
		transition: all 0.4s cubic-bezier(0.16, 0.68, 0.43, 0.99);
		}
		nav.active{
			right: 0;
		}
	nav a,
	nav a:visited,
	nav a:hover{
		color: #ffffff;
	}

/*
	nav #navClose{
		width: 1.875rem;
		height: auto;
		position: absolute;
		top: 2rem; right: 3rem;
		}
		nav #navClose:hover{
			cursor: pointer;
		}
*/

	nav #navClose{
		width: 2.5rem;
		height: 2.5rem;
		position: absolute;
		top: 1.5rem; right: 1.5rem;
		}
		nav #navClose:hover{
			cursor: pointer;
		}

	nav #navClose span {
		position: absolute;
		top: 0; left: 0; right: 0;
		margin: auto;
		width: 100%;
		height: 2px;
		}
		nav #navClose span:nth-of-type(1) {
			-webkit-transform: translateY(1rem) rotate(-45deg);
			transform: translateY(1rem) rotate(-45deg);
			background-color: #ffffff;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
		nav #navClose span:nth-of-type(2) {
			-webkit-transform: translateY(0.75rem) rotate(45deg);
			transform: translateY(0.75rem) rotate(45deg);
			padding: 0.25rem 0;
			background-color: #000000;
		}
		nav #navClose span:nth-of-type(2)::before {
			content: '';
			display: inline-block;
			vertical-align: top;
			background-color: #ffffff;
			width: 100%;
			height: 2px;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}

	nav div.navContainer{
		padding: 2rem 0;
		width: 100%;
		height: 100vh;
		display: inline-block;
		vertical-align: top;
		max-height: 90vh;
		overflow: auto;
	}

	nav div.navContainer div.navHeader,
	nav div.navContainer div.navList,
	nav div.navContainer div.navFooter{
		width: 65vw;
		margin: 0 auto;
		padding: 2.5rem 0 2rem 0;
	}
	nav div.navContainer div.navHeader,
	nav div.navContainer div.navList{
		border-bottom: 1px solid #ffffff;
	}
	nav div.navContainer div.navHeader p{
		font-size: 1rem;
	}

	nav div.navContainer div.navList ul{
	}
	nav div.navContainer div.navList ul li{
		font-size: 1rem;
	}
	nav div.navContainer div.navList ul li:nth-of-type(n+2){
		margin: 1.75rem 0 0 0;
	}

	nav div.navContainer div.navList ul li a{
		}
		nav div.navContainer div.navList ul li a.invalid{
			color: #aaaaaa;
		}
	nav div.navContainer div.navList ul li a span{
		display: inline-block;
		vertical-align: top;
		line-height: 0.9;
		height: 0.6rem;
		padding: 0 0.3rem 0.1rem 0.4rem;
		position: relative;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		nav div.navContainer div.navList ul li a.active span::before{
			content: '';
			width: 100%;
			height: 100%;
			background-color: #ffff00;
			position: absolute;
			top: 0; bottom: 0; left: 0;
			z-index: -1;
			transform: scale(0, 1);
			transform-origin: left top;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
	nav div.navContainer div.navList ul li a.active:hover span{
		color: #000000;
		}
		nav div.navContainer div.navList ul li a.active:hover span::before{
			transform: scale(1, 1);
		}

	nav div.navContainer div.navFooter{
	}
/*
	nav div.navContainer div.navFooter p{
		font-size: 1rem;
		line-height: 2;
	}
*/

	nav div.navContainer div.navFooter ul{
		/*margin: 2.5rem 0 0 0;*/
		font-size: 0;
		display: inline-block;
		vertical-align: top;
	}
	nav div.navContainer div.navFooter ul li,
	nav div.navContainer div.navFooter ul li a{
		display: inline-block;
		vertical-align: top;
		font-size: 0;
		}
		nav div.navContainer div.navFooter ul li:nth-of-type(n+2){
			/*margin: 0 0 0 2.5rem;*/
			margin: 0 0 0 1.75rem;
		}

	nav div.navContainer div.navFooter ul li.members a{
		width: 1.25rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_members_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.instagram a{
		width: 1.125rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_instagram_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.twitter a{
		width: 1.3125rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_twitter_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.facebook a{
		width: 1.1875rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_facebook_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.youtube a{
		width: 1.375rem;
		height: 1.125rem;
		background-image: url(../img/common/icon_youtube_white.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.members a:hover{
		background-image: url(../img/common/icon_members_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.instagram a:hover{
		background-image: url(../img/common/icon_instagram_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.twitter a:hover{
		background-image: url(../img/common/icon_twitter_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.facebook a:hover{
		background-image: url(../img/common/icon_facebook_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}
	nav div.navContainer div.navFooter ul li.youtube a:hover{
		background-image: url(../img/common/icon_youtube_yellow.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
	}

	nav div.navContainer div.navFooter p{
		font-size: 1rem;
		line-height: 1;
		margin: 1.5rem 0 0 0;
		}
		nav div.navContainer div.navFooter p:nth-of-type(1){
			margin: 0 0 2rem 0;
		}

	nav div.navContainer div.navFooter p a span{
		display: inline-block;
		vertical-align: top;
		line-height: 0.9;
		padding: 0 0.3rem 0.1rem 0.4rem;
		position: relative;
		}
		nav div.navContainer div.navFooter p a span::before{
			content: '';
			width: 100%;
			height: 100%;
			background-color: #ffff00;
			position: absolute;
			top: 0; bottom: 0; left: 0;
			z-index: -1;
			transform: scale(0, 1);
			transform-origin: left top;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
	nav div.navContainer div.navFooter p a:hover span{
		color: #000000;
		}
		nav div.navContainer div.navFooter p a:hover span::before{
			transform: scale(1, 1);
		}





	/* -------------------------------------------------------------------------------------------
	*
	* MV
	*
	* ----------------------------------------------------------------------------------------- */

	#mainVisual{
	}
	#mainVisual div.inner{
		width: 100vw;
	}


	/* -------------------------------------------------------------------------------------------
	*
	* 見出し
	*
	* ----------------------------------------------------------------------------------------- */


	#headline{
		padding: 1.5rem 0;
		text-align: center;
		background-color: #000000;
		color: #ffffff;
	}

	#headline h2{
		line-height: 1;
	}
	#headline h2 p.main{
		font-size: 1.25rem;
		margin: 0.25rem 0 0 0;
	}
	#headline h2 p.sub{
		display: none;
		/*margin: 0.5rem 0 0 0;*/
		/*font-size: 0.75rem;*/
	}



	/* -------------------------------------------------------------------------------------------
	*
	* トピックス
	*
	* ----------------------------------------------------------------------------------------- */

	#topics{
	}
	#topics.isTop{
		margin: 3.75rem 0 0 0;
	}
	#topics h2{
		text-align: center;
		line-height: 1;
		margin: 0 0 3.25rem 0;
	}
	#topics h2 p.main{
		font-size: 1.75rem;
	}
	#topics h2 p.sub{
		margin: 0.3rem 0 0 0;
		font-size: 0.75rem;
	}

	#topics article{
		display: inline-block;
		vertical-align: top;
		font-size: 0.8125rem;
		line-height: 1.5;
		width: 46%;
		}
		#topics.category_tag article:nth-of-type(odd){
			margin-right: 4%;
		}
		#topics.category_tag article:nth-of-type(n+3){
			margin-top: 4.5rem;
		}
/*
		#topics.category_tag article:nth-of-type(even){
			-webkit-transition-delay: 0.2s;transition-delay: 0.2s;
		}
		#topics.category_tag article:nth-of-type(1){
			-webkit-transition-delay: 0.4s;transition-delay: 0.4s;
		}
		#topics.category_tag article:nth-of-type(2){
			-webkit-transition-delay: 0.6s;transition-delay: 0.6s;
		}
*/
		#topics.category_tag.isTag article.is-hidden{
			display: none;
		}

		#topics.isTop article:nth-of-type(n+2){
			margin-top: 4.5rem;
		}
		#topics.isTop article:nth-of-type(odd){
			margin-right: 0;
			margin-left: 4%;
			/*-webkit-transition-delay: 0.2s;transition-delay: 0.2s;*/
		}
		#topics.isTop article:nth-of-type(1){
			width: 100%;
			margin: 0;
			position: relative;
			-webkit-transition-delay: 0.2s;transition-delay: 0.2s;
		}

	#topics article p.topicsCategory{
		margin: 0 0 0.6875rem 0;
		padding: 0 0 0.5625rem 0;
		line-height: 1;
		position: relative;
		/*letter-spacing: 0.06rem;*/
	}
	#topics article p.topicsCategory::before{
		content: '';
		display: inline-block;
		width: 1.5rem;
		height: 2px;
		background-color: #cccccc;
		position: absolute;
		bottom: 0; left: 0;
	}

	#topics article a.topicsImgOuter{
		display: inline-block;
		vertical-align: top;
		width: 100%;
	}

	#topics article a.topicsImgOuter div.topicsImg{
		overflow: hidden;
		position: relative;
		}
		#topics.isTop article:nth-of-type(1) a.topicsImgOuter div.topicsImg{
			height: 67.5vw;
		}
		#topics article a.topicsImgOuter div.topicsImg::before {
			content: '';
			display: inline-block;
			padding-top: 100%;
		}

	#topics article a.topicsImgOuter div.topicsImg img{
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		margin: auto;
		width: 100%;
		height: 100%;
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
		object-position: top;
		}
		#topics article a.topicsImgOuter:hover div.topicsImg img{
			-webkit-transform: scale(1.03,1.03);
			transform: scale(1.03,1.03);
		}

	#topics article div.topicsContainer{
		margin: 0.75rem 0 0 0;
		line-height: 1;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer{
			margin: 1.5rem 0 0 0;
		}

	#topics article div.topicsContainer div.topicsInfo{
		margin: 0 0 0.5rem 0;
		position: relative;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer div.topicsInfo{
			margin: 0 0 0.3rem 0;
		}
	#topics article div.topicsContainer div.topicsInfo p.date{
		font-size: 0.9rem;
		color: #aaaaaa;
		font-weight: 300;
	}
	#topics article div.topicsContainer div.topicsInfo p.newIcon{
		font-size: 0.875rem;
		background-color: #ffff00;
		line-height: 1.1;
		height: 0.6rem;
		padding: 0 0.1rem 0.1rem 0.3rem;
		display: inline-block;
		vertical-align: top;
		position: absolute;
		top: -0.15rem; right: 0; bottom: 0;
		margin: auto;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer div.topicsInfo p.newIcon{
			font-size: 1.125rem;
			height: 0.8rem;
		}

	#topics article div.topicsContainer p.topicsTitle{
		font-size: 0.875rem;
		line-height: 1.4;
		margin: 0 0 0.5rem 0;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer p.topicsTitle{
			font-size: 1.25rem;
			font-weight: 600;
			line-height: 1.6;
		}
	#topics article div.topicsContainer p.topicsText{
		margin: 1rem 0 0 0;
		font-size: 0.875rem;
		line-height: 1.6;
		text-align: justify;
		position: relative;
		max-height: 6.9rem;
		overflow: hidden;
	}
	#topics article div.topicsContainer p.topicsText::before,
	#topics article div.topicsContainer p.topicsText::after{
		position: absolute;  
		background-color: #ffffff;
	}
	#topics article div.topicsContainer p.topicsText::before {
		content: '...';
		bottom: 0;
		right: 0;
	}
	#topics article div.topicsContainer p.topicsText::after {
		content: '';
		height: 100%;
		width: 100%;
	}

	#topics article div.topicsContainer ul.topicsTag{
		margin: 0.75rem 0 0 0;
		}
		#topics.isTop article:nth-of-type(1) div.topicsContainer ul.topicsTag{
			margin: 2rem 0 0 0;
		}
	#topics article div.topicsContainer ul.topicsTag li{
		margin: 0 0.5rem 0.6rem 0;
	}
	#topics article div.topicsContainer ul.topicsTag li a{
		font-size: 0.6875rem;
		background: linear-gradient(transparent 0%, #ededed 0%);
		line-height: 0.5;
		padding: 0.1rem 0.1rem 0 0.1rem;
		font-weight: 300;
		word-break: break-all;
		}
		#topics article div.topicsContainer ul.topicsTag li a::before{
			content: '#';
			display: inline;
		}
		#topics article div.topicsContainer ul.topicsTag li a:hover{
			background: linear-gradient(transparent 0%, #ffff00 0%);
		}

	#topics article div.topicsContainer div.topicsLink{
		position: absolute;
		bottom: 0.4rem; right: 0;
		height: 0.0625rem;
		width: 3rem;
		cursor: pointer;
		background-color: #000000;
		text-decoration: none;
	}

	#topics article div.topicsContainer div.topicsLink p {
		text-align: end;
		font-size: 0.6875rem;
		height: 0.4rem;
		position: absolute;
		top: -0.15rem; bottom: 0; left: -6.5rem;
		margin: auto;
		padding: 0 0.1rem 0 0.2rem;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		}
		#topics article div.topicsContainer div.topicsLink p::before{
			content: '';
			width: 100%;
			height: 0.6rem;
			background-color: #ffff00;
			position: absolute;
			top: 0; bottom: 0; left: 0;
			z-index: -1;
			transform: scale(0, 1);
			transform-origin: left top;
			-webkit-transition: all 0.3s;
			transition: all 0.3s;
		}
	#topics article div.topicsContainer div.topicsLink:hover p{
		color: #000000;
		}
		#topics article div.topicsContainer div.topicsLink:hover p::before{
			transform: scale(1, 1);
		}


	#topics article div.topicsContainer div.topicsLink span {
		position: absolute;
		left: 15%;
		/*top: -0.2rem;*/
		top: 0; bottom: 0;
		margin: auto;
		display: block;
		width: 7px;
		height: 7px;
		background-image: url(../img/common/circle_black.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
		-webkit-animation: 2s dotMoveR infinite;
		animation: 2s dotMoveR infinite;
	}




	/* -------------------------------------------------------------------------------------------
	*
	* SNS
	*
	* ----------------------------------------------------------------------------------------- */

	aside{
		margin: 4rem 0 5rem 0;
		text-align: center;
	}
	aside ul,
	aside ul li{
		display: inline-block;
		vertical-align: top;
	}
	aside ul li{
		}
		aside ul li:nth-of-type(n+2){
			/*margin: 0 0 0 0.5rem;*/
		}

	aside ul li a{
		display: inline-block;
		vertical-align: top;
		width: 3.375rem;
		height: 3.375rem;
		border-radius: 50%;
		position: relative;
		overflow: hidden;
		z-index: 1;
	}
	aside ul li a img{
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		margin: auto;
	}
	aside ul li.instagram a img{
		width: 1.125rem;
		height: 1.125rem;
	}
	aside ul li.twitter a img{
		width: 1.3125rem;
		height: 1.125rem;
	}
	aside ul li.facebook a img{
		width: 1.1875rem;
		height: 1.125rem;
	}
	aside ul li.members a img{
		width: 1.125rem;
		height: 1.125rem;
	}
	aside ul li.youtube a img{
		width: 1.25rem;
		height: 1rem;
	}


	aside ul li a::before {
		content: '';
		display: inline-block;
		vertical-align: top;
		width: 100%;
		height: 100%;
		background-color: #ffff00;
		border-radius: 50%;
		position: absolute;
		top: 0; right: 0; bottom: 0; left: 0;
		z-index: -1;
		margin: auto;
		-webkit-transform: scale(0,0);
		transform: scale(0,0);
		-webkit-transition-duration: 0.5s;
		transition-duration: 0.5s;
	}

	aside ul li a:hover::before {
		-webkit-transform: scale(1.5,1.5);
		transform: scale(1.5,1.5);
	}




	/* -------------------------------------------------------------------------------------------
	*
	* ページトップボタン
	*
	* ----------------------------------------------------------------------------------------- */

	#pageTopBtn {
		position: absolute;
		right: 6vw; bottom: 18rem;
		z-index: 1;
	}

	#pageTopBtn .scroll {
		position: absolute;
		width: 0.0625rem;
		height: 3rem;
		cursor: pointer;
		background-color: #000000;
		text-decoration: none;
	}

	#pageTopBtn .scroll p {
		text-align: end;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		font-size: 0.6875rem;
		position: absolute;
		bottom: -1.2rem; right: 0; left: -0.1rem;
		margin: auto;
	}
	#pageTopBtn .scroll span {
		position: absolute;
		bottom: 15%;
		left: -3px;
		display: block;
		width: 7px;
		height: 7px;
		background-image: url(../img/common/circle_black.svg);background-repeat: no-repeat;background-position: 0 0;background-size: 100% auto;
		-webkit-animation: 2s dotMoveUp infinite;
		animation: 2s dotMoveUp infinite;
	}



	/* -------------------------------------------------------------------------------------------
	*
	* フッター
	*
	* ----------------------------------------------------------------------------------------- */

	footer{
		background-color: #ffffff;
		color: #000000;
		text-align: center;
		padding: 1.5625rem 0 5.25rem 0;
	}

	footer p.logo{
	}
	footer p.logo img{
		width: 7rem;
		height: 1.5625rem;
		margin: 0 auto;
	}
	footer p.text{
		margin: 1.5rem auto 0 auto;
		font-size: 0.5rem;
		/*letter-spacing: 0.05rem;*/
	}


}


@media screen and (min-width : 960px) and (max-width : 1200px){
	header ul li a{
		padding: 3.8125rem 1.2vw;
	}
}

@media screen and (min-width : 960px) and (max-width : 1100px){
	header ul li a{
		padding: 3.8125rem 1vw;
	}
}