@charset "utf-8";

/* ========================================

	超特急

	--------------------
	fanclub-pc-service.css
	-------------------

========================================== */

/* base
================================= */
html,body { height: 100%; background: #fff; color: #000; }
img{ max-width: 100%; }
#svg{ display: none; }

.pc{display:block !important;}
.sp{display:none !important;}

/* container
---------------------------- */
#wrap {
	width: auto;
	min-height: 100%;
	background: #fff;
	color: #000;
	font-family: 'Varela Round', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
	-webkit-font-smoothing: antialiased;
	padding: 0;
	position: relative;
	opacity: 0;
}
.loaded #wrap { opacity:1; -webkit-transition: all .8s ease; transition: all .8s ease; }
#container { padding-top: 80px; }


/* btn
---------------------------- */
a {
	background: transparent;
	color: #ff5fa2;
	text-decoration: underline;
	outline: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
a:hover { -webkit-transition: all .3s ease; transition: all .3s ease; }
.btn a{
	display: inline-block;
	min-width: 270px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	border-radius: 40px;
	border: none;
	padding: 10px 0;
	margin: 40px auto 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	position: relative;
}
.btn input{ -webkit-appearance: none; background: none; border: none; }

.btn .main,
.btn .btnMain,
.btn .sub{
	display: inline-block;
	letter-spacing: 0.1em;
	text-align: center;
	text-decoration: none;
	border-radius: 50px;
	padding: 10px 40px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
}
.btn .main,
.btn .btnMain { background: #ff5fa2; color: #fff; }
.btn .sub { background: #fff; color: #ff3c8d; }

.btn .main input,
.btn .btnMain input{ color: #fff; }
.btn .sub input{ color: #ff3c8d; cursor:pointer;}

.btn .main::before,
.btn .btnMain::before,
.btn .sub::before{
	content: "";
	border-radius: 20px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-animation: btnOut 1s ease 0s forwards;
	animation: btnOut 1s ease 0s forwards;
}
.btn .main::before,
.btn .btnMain::before{ background: #ff1073;}
.btn .sub::before{ background: #f0f0f0;}

/*
.btn .main:hover{
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
*/

.btn .main:hover::before,
.btn .btnMain:hover::before,
.btn .sub:hover::before{
	-webkit-animation: btn .5s ease-out 0s 1 forwards;
	animation: btn .5s ease-out 0s 1 forwards;
}

.btn .main.inputBtn,
.btn .btnMain.inputBtn{ padding:0; }
.btn .main.inputBtn input,
.btn .btnMain.inputBtn input{ padding: 10px 40px; cursor:pointer;}

.txtArea .btn { margin: 0 0 10px; }
.more{ text-align: right; }
.more a{ font-family:'Varela Round',sans-serif; color: #000; text-decoration: none; -webkit-transition: all .3s ease; transition: all .3s ease;}

@-webkit-keyframes btn { 80% { -webkit-transform: scale(1.3); } 100% { opacity: 0; } }
@keyframes btn { 80% { transform: scale(1.3); } 100% { opacity: 0; transform: scale(1.3);} }
@-webkit-keyframes btnOut { 100% { opacity: 0; -webkit-transform: scale(0);}}
@keyframes btnOut { 100% { opacity: 0;transform: scale(0);} }


/* header
================================= */
#header {
	width: 100%;
	background: #fff;
	padding: 15px 0;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 999;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

/* h1 */
#header h1.logo{ width: 225px; margin: 0 auto; }
#header h1.logo a{ display: block; position: relative;}
#header h1.logo a:hover{ opacity: 0.7; }

/* loginArea */
#header .loginArea{ font-size: 13px; position: absolute; top: 22px; right: 60px; right: 4vw; }
#header .loginArea li{ display: inline-block;}
#header .loginArea .mypage a,
#header .loginArea .join a{
	display: block;
	background: #ff5fa2;
	color: #fff;
	letter-spacing: 0.1em;
	text-align: center;
	text-decoration: none;
	line-height: 14px;
	border-radius: 20px;
	padding: 10px 20px 8px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	position: relative;
	overflow: hidden;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-font-smoothing: antialiased;
}

#header .loginArea .login{ vertical-align: -1px; margin-right: 10px; }
#header .loginArea .login a{
	display: block;
	min-width: inherit;
	font-weight: bold;
	color: #ff5fa2;
	border-radius: 50px;
	text-decoration: none;
	font-size: 13px;
	position: relative;
	overflow: hidden;
	padding: 10px 10px 8px 19px;
	margin: 0 auto;
}
#header .loginArea .login a:hover{ color: #ff1d7b; }

#header .loginArea .mypage a::before,
#header .loginArea .join a::before,
#header .loginArea .login a::before{
	content: "";
	background: #ff3c8d;
	border-radius: 100%;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
#header .loginArea .login a::before{ background: #f6f6f6; }

#header .loginArea .mypage a:hover::before,
#header .loginArea .join a:hover::before,
#header .loginArea .login a:hover::before{ -webkit-transform: scale( 1,3 ); transform: scale( 1,3 ); }



/* navBtn */
#navBtn {
	width: 25px;
	height: 18px;
	position: fixed;
	top: 28px;
	left: 60px;
	left: 4vw;
	z-index: 1000;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#navBtn span {
	display: inline-block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #000;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#navBtn span:nth-of-type(1) { top: 0; }
#navBtn span:nth-of-type(2) { top: 8px; }
#navBtn span:nth-of-type(3) { top: 16px; }
#navBtn::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	width: 40px;
	height: 40px;
	margin: -20px 0 0 -22px;
	border-radius: 50%;
	border: 2px solid transparent;
	transition: all .75s;
}
#navBtn:hover span:nth-of-type(1) { top: -2px; transition: all .2s;}
#navBtn:hover span:nth-of-type(3) { top: 18px; transition: all .2s;}
.menuOpen #menu{ height: 100%; -webkit-transition: all .6s ease; transition: all .6s ease; }
.menuOpen #navBtn{ transform: rotate(225deg); -webkit-transform: rotate(225deg); -webkit-transition: all .3s ease; transition: all .3s ease; }
.menuOpen #navBtn span:nth-of-type(1) { top: 7px; transform: rotate(90deg); -webkit-transform: rotate(90deg); }
.menuOpen #navBtn span:nth-of-type(2) { width:0; }
.menuOpen #navBtn span:nth-of-type(3) { top: 7px; }

.menuOpen #navBtn:hover span{ -webkit-transition: all .3s ease; transition: all .3s ease; }
.menuOpen #navBtn:hover span:nth-of-type(1){ transform: rotate(90deg) scaleX(1.2); -webkit-transform: rotate(90deg) scaleX(1.2); }
.menuOpen #navBtn:hover span:nth-of-type(3){ transform: scaleX(1.2); -webkit-transform: scaleX(1.2); }

/* headerNavWrap */
#headerNavWrap{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 1000;
	overflow: hidden;
	-webkit-transition: all 1.4s ease;
	transition: all 1.4s ease;
}
#navCover,
#headerNavWrap .navCover{
	display: none;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	position: absolute;
	top: 0;
	left: 0;
	opacity:0;
	cursor: pointer;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 1000;
}
#headerNavWrap .navCover{ display: block; opacity:1; background: none; z-index:10; }

#headerNavWrap #headerNav{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 26%;
	background: #fff;
	height: 100%;
	padding: 0 0 0 50px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	 z-index:100;
}
#headerNavWrap #headerNav .globalNav li{ margin-bottom: 20px; position: relative; }
#headerNavWrap #headerNav .globalNav li.logo{ width: 70px; margin-bottom: 30px; margin-top: -15px;position: relative; left: -11px; }

#headerNavWrap #headerNav .globalNav a{
	display: block;
	color: #000;
	font-size: 17px;
	text-decoration: none;
	font-family: 'Varela Round', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#headerNavWrap #headerNav .globalNav a:hover{ color:#ff5fa2; -webkit-transition: color .3s ease; transition: color .3s ease; }
#headerNavWrap #headerNav .globalNav li.logo a:hover{ opacity: 0.5; -webkit-transition: opacity .3s ease; transition: opacity .3s ease; }
.menuOpen #headerNavWrap{ left: 0; -webkit-transition: all .75s ease; transition: all .75s ease; }


/* footer
================================= */

#footer { width: 100%; background: #151515; text-align: center; padding: 40px 0 10px; }
#footer a{ color: #aaa; font-size: 11px; text-decoration: none; -webkit-transition: all .3s ease; transition: all .3s ease; }
#footer a:hover{ opacity: 0.8; -webkit-transition: all .3s ease; transition: all .3s ease; }

#footer h2.logo{ width: 122px; margin: 0 auto 10px;}
#footer .loginList{ margin-bottom: 30px; }
#footer .loginList li{ display: inline-block; position: relative; }
#footer .loginList li:first-child::after{
	content: '';
	display: inline-block;
	width: 1.5px;
	height: 16px;
	background: #aaa;
	transform: rotate(18deg);
	-webkit-transform: rotate(18deg);
	margin: 0 7px 0 11px;
	vertical-align: -2px;
}
#footer .loginList li a{ font-family: 'Varela Round', sans-serif; font-size: 19px; }
#footer .supportNav { margin-bottom: 30px; }
#footer .supportNav li{ display: inline-block; position: relative; }
#footer .supportNav li:not(:last-child)::after{
	content: '';
	display: inline-block;
	width: 1px;
	height: 13px;
	vertical-align: -3px;
	background: #aaa;
	transform: rotate(18deg);
	-webkit-transform: rotate(18deg);
	margin: 0 10px 0 14px;
}

#footer .bnrList { margin-bottom: 30px; }
#footer .bnrList li{ display: inline-block; width: 200px;}
#footer .bnrList li:not(:last-child){ margin-right: 5px; }
#footer .bnrList li a{ display: block; }
#footer .officialLogo{ width: 100px; font-family: 'Varela Round', sans-serif; font-size: 10px;margin: 0 auto;}
#footer .copyright small { display: block; color: #999; font-size: 10px; padding: 10px 0 20px; }
#footer .copyright br { display: none; }


/* top
================================= */
/* common */
#top section{ width: 100%; position: relative; margin-bottom: 100px;}
#top section .inner{ width: 80%; margin: 0 auto; position: relative; }

/* loading
----------------------------------- */
#loading{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	background: #fff;
}
#loading .bar{
	display: block;
	width: 100%;
	height: 1px;
	background: #f5f5f5;
	position: absolute;
	top: 50vh;
}
#loading .bar span{
	display: block;
	width: 0;
	height: 1px;
	background: #ff5fa2;
	position: absolute;
	top: 0;
}

/* keyVisual
----------------------------------- */
#firstView{ margin-bottom: 50px; }

.bnrList.noSlick{ text-align: center; }
.bnrList.noSlick li{ display: inline-block; width: 58%; margin-top: 10px; }
.bnrList.noSlick li:hover a{ opacity: 0.5; }

/* slick */
#firstView li a { display: block; padding: 0 3%; }
.slick-track { padding: 20px 0; }
.slick-slide img {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.slick-prev,
.slick-next {
	display: block;
	width: 10%;
	height: 100%;
	background: transparent;
	color: transparent;
	font-size: 0;
	line-height: 0;
	padding: 0;
	position: absolute;
	top: 0;
	z-index: 99;
	cursor: pointer;
	border: none;
	outline: none;
}
.slick-prev { left: 0; }
.slick-next { right: 0; }
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus { color: transparent; outline: none; background: transparent; }
.slick-prev::after, .slick-next::after {
	content: '';
	display: block;
	width: 40px;
	height: 40px;
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	position: absolute;
	top: 48%;
	margin-top: -20px;
	opacity:0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.slick-prev::after { left: 120%; -webkit-transform: rotate(-135deg); transform: rotate(-135deg); }
.slick-next::after { right: 120%; -webkit-transform: rotate(45deg); transform: rotate(45deg); }
.slick-slider:hover .slick-prev::after { opacity:1; left: 130%; -webkit-transition: all .3s ease; transition: all .3s ease; }
.slick-slider:hover .slick-next::after { opacity:1; right: 130%; -webkit-transition: all .3s ease; transition: all .3s ease; }

.slick-slider .slick-prev:hover::after,
.slick-slider .slick-next:hover::after{ opacity:0.5; -webkit-transition: color .3s ease; transition: color .3s ease;}

.slick-dotted.slick-slider{ margin-bottom: 30px;}
.slick-dots{
	display: block;
	width: 100%;
	list-style: none;
	text-align: center;
	padding: 0;
	margin: 0;
	position: absolute;
	bottom: -25px;
}
.slick-dots li{
	display: inline-block;
	width: 20px;
	height: 20px;
	position: relative;
	padding: 0;
	margin: 0 ;
	cursor: pointer;
}
.slick-dots li button{
	display: block;
	width: 20px;
	height: 20px;
	font-size: 0;
	line-height: 0;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus{ outline: none;}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before{ opacity: 1; }
.slick-dots li button:before{
	content: '';
	width: 8px;
	height: 8px;
	line-height: 20px;
	text-align: center;
	background: #eee;
	border-radius: 8px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	position: absolute;
	top: 6px;
	left: 6px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.slick-dots li.slick-active button:before {background: #ff5fa2;}
.slick-dots li:hover button:before {
	background: #ff5fa2;
	transform: scale(1.4);
	-webkit-transform: scale(1.4);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

/* ==== 有効期限 ==== */

#top .statusArea{
	width: 600px;
	background: #f0f0f0;
	box-sizing: border-box;
	padding: 30px;
	margin: 0 auto 80px;
}

#top .statusArea .name{
	font-size: 20px;
	margin-bottom: 15px;
}
#top .statusArea .name i{
	font-style: normal;
}
#top .statusArea .name span{
	font-size: 12px;
}
#top .list--status{
	background: #fff;
 border: 1px solid;
}

#top .list--status dt{
	background: #000;
	width: 8em;
	color: #fff;
	padding: 15px 0;
	box-sizing: border-box;
	text-align: center;
	float: left;
}

#top .list--status dd{
	padding: 15px 10px 15px 9em;
}

#top .list--status dd span{
	background: #888;
	color: #fff;
	font-size: 12px;
	padding: 3px 8px 2px;
	margin-left: 8px;
	border-radius: 2px;
}
#top .txtSub{
	text-indent: -1em;
	font-size: 11px;
	line-height: 1.6;
	padding: 10px 0 0 1em;
}


/* ==== 継続 ==== */
#top #possiblePayment{
	width: 54%;
	margin: 0 auto 120px;
}
#top #possiblePayment .tit{
	font-size: 26px;
	padding-left: 0;
	margin-bottom: 10px;
}
#top #possiblePayment .paymentArea{
	background: #fbffea;
	text-align: center;
	padding: 30px;
	border: 1px solid #ff5fa2;
	font-size: 16px;
	line-height: 180%;
}
/* ==== NEWS / LIVE REPORT / STAFF DIARY ==== */
h2.sectionTit{
	font-family: 'Varela Round', sans-serif;
	line-height: 25px;
	font-size: 25px;
	position: absolute;
	top: 0;
}
#top section .infoList,
.detail .infoList,
.detail .contentsList,
.detail .categoryList{ padding-left: 30%; }

#top .infoList{ margin-bottom: 30px; }
.infoList li{ margin-bottom: 20px; position: relative;}
.infoList li a{ display: block; text-decoration: none; color: #000; position:relative;}
.date{ display: inline-block; font-family: 'Varela Round', sans-serif; color: #aaa; margin-right: 6%; }
.new { display: inline-block; color: #ff5fa2; letter-spacing: 0.1em; margin: 0 0 0 5px; }
#top .new , .infoList .new { position: absolute; left: -7em; }

.tit{ display: inline-block; line-height: 170%; word-break: break-all;}
a .tit{ -webkit-transition: all .3s ease; transition: all .3s ease; }
a .tit:hover,
.more a:hover{ color: #ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease; }

#top .tit,
.detail .infoList .tit{ display: block; padding-left: 10em;}
.detail .infoList .tit{ margin-bottom: 12px; }
#top .date,
.detail .infoList .date { margin-right: 6%; position: absolute; left: 0;}

/* LATEST
----------------------------------- */
#top #latest h2.sectionTit{ margin-bottom: 30px; position:relative; }
#top #latest .new{ position: static; }
#top #latest .date{ left: 2em; }
#top #latest .inner{ width: 82%; padding-left: 2%; }

#latest .contentsList .grid-sizer,
#latest .contentsList li{ width: 33%; width: calc(100% / 3); box-sizing: border-box;padding-right: 3%;}
#latest .contentsList li{ margin-bottom: 40px;}
#top #latest .contentsList .gird-sizer{ margin: 0;}
#latest .contentsList li a{ color: #000; font-weight: normal; text-decoration: none; -webkit-transition: color .3s ease; transition: color .3s ease; }
#latest .contentsList li a:hover p{ color:#ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease; }
#latest .contentsList li a:hover svg{ fill:#ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease; }
#latest .contentsList li .ph{ line-height:0; margin-bottom: 15px; position: relative; overflow:hidden;}
#latest .contentsList li .ph .blur{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	filter: blur(15px);
	background: no-repeat center;
	background-size: cover;
	transform: scale(1.5);
	transition: all .3s ease;
}

#latest .contentsList li .ph img{
	width: 100%;
	max-width: inherit;
	position: relative;
	background: no-repeat center;
	background-size: contain;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#latest .contentsList li .tit{ display: block; text-indent: -1.8em; padding-left: 2em; margin-bottom: 5px; }
#latest .contentsList li .tit.movTit i{
	display: none;
}
#latest .contentsList li .tit.movTit i.icon{
	display: inline-block;
}
#latest .contentsList li .tit.movTit i.icon svg{
	display: none;
}
#latest .contentsList li .tit.movTit i.icon svg:nth-child(1){
	display: inline-block;
}
#latest .contentsList li .tit.movTit i.icon .sp,
#latest .contentsList li .tit.movTit i.icon .pc{
	display: none!important;
}
.contentsList li a .thumb,
#latest .contentsList li a .ph,
.categoryList a .thumb{ background: #eee; }
.contentsList li a img,
.categoryList li a img{ opacity: 0; transform: scale(1.2); -webkit-transform: scale(1.2);}

.loaded .contentsList li a .thumb,
.loaded #latest .contentsList li a .ph,
.loaded .categoryList a .thumb{ background: #ff5fa2; -webkit-transition: all 0s ease-out 1; transition: all 0s ease-out 1s; }
.loaded .contentsList li a img,
.loaded .categoryList li a img{
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all .7s ease-out ;
	transition: all .7s ease-out ;
}
.loaded .contentsList li a:hover .ph *{ opacity: 0.3;}
.contentsList li a i{
	display: inline-block;
	width: 16px;
	height: 16px;
	font-style: normal;
	text-indent: -0.2em;
	vertical-align: -4px;
	margin-right: 7px;
}
.contentsList li a i svg{ width: 16px; height: 16px; -webkit-transition: all .3s ease; transition: all .3s ease;}
.ph{ position: relative; }
.dummy{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

/* 下層共通
================================= */

.detail #container{ width: 80%; padding: 200px 0 100px; margin: 0 auto!important; }
.pageTit {
	text-align: center;
	font-family: 'Varela Round', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
	font-size: 42px;
	margin: 90px auto;
	position: relative;
}
.detail h2.sectionTit{ font-size: 30px; }
.detailBox{ padding-left:30%; }

/* contentsList */
.detail .contentsList li{
	width: 29%;
	width: calc( 100%/3 - 4%);
	float: left;
	margin-right: 6%;
	margin-bottom: 15px;
	margin-bottom: 2.5vw;
}
.detail .contentsList li:nth-child(3n){ margin-right: 0; }
.detail .contentsList li:nth-child(3n+1){ clear:left; }
.thumb{ margin-bottom: 15px; position: relative; overflow: hidden;}
.thumb img{
	display: block;
	width: 100%;
	max-width: inherit;
	background: no-repeat center;
	background-size: cover;
	-webkit-background-size: cover;
}
.detail .contentsList a{ text-decoration: none; color: #000;}
.detail .tit { display: block; line-height: 150%; margin: 0 0 5px; }
.detail li a{ color: #000; }
.detail .contentsList li a .summary{ line-height: 160%;margin-top: 5px; }
.detail .contentsList li a p.date{ color: #aaa; font-size: 13px;}
.detail .contentsList li a p{
	color: #000;
	word-break: break-all;
	text-align: justify;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.detail .contentsList li a:hover p{ color: #ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease;}
.detail .contentsList li a:hover p::before{ background: #ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease;}

.detail .categoryList li a:hover p{ color: #ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease;}
.detail .categoryList li a:hover p::before{ background: #ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease;}

/* categoryList */
.detail .categoryList li{ width: 48.5%; float: left; margin-right: 3%; margin-bottom: 50px; }
.detail .categoryList a{ text-decoration: none; color: #000; }
.detail .categoryList li:nth-child(even){ margin-right: 0; }

/* categoryList */
.detail .latestList{ }
.detail .latestList li{ margin-bottom: 20px; }
.detail .latestList li a{ font-size: 11px; color: #000; text-decoration: none; }
.detail .latestList li a .date{ font-size: 10px;}
.detail .latestList li a:hover p{ color:#ff5fa2; }

.detail .titArea{ margin-bottom: 40px; }
.detail .titArea .tit{ font-size: 20px; line-height: 150%; margin-bottom: 0; }
.detail .titArea .date{ font-size: 13px; line-height: 180%; }
.detail .txtArea{ font-size: 14px; line-height: 20px; line-height: 180%;}


.sideCol .listTit { display: none; font-size: 20px; margin: 0 0 30px; }
.sideCol .bnrList a { display: block; line-height: 0; margin: 0 0 30px; }
.sideCol .bnrList img { width: 100%; }

.pageBack{ margin-top: 100px;}
.pageBack a {
	display: inline-block;
	font-family: 'Varela Round', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
	font-size: 14px;
	color: #000;
	text-align: center;
	text-decoration:none;
	margin: 40px auto 0;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	position: relative;
	top: -1px;
}
.pageBack a::before{
	content: "\f104";
	font-family: 'FontAwesome';
	z-index: 10;
	font-size: 16px;
	vertical-align: 0;
	line-height: 0;
	margin-right: 4px;
	position: relative;
	left: 0;
	-webkit-transition: left .3s ease;
	transition: left .3s ease;
}
.pageBack a:hover { color: #ff5fa2; }
.pageBack a:hover::before{ left: -3px; }


/* loading */
#next a {
	display:block;
	width: 80px;
	height: 80px;
	text-indent:-9999px;
	border-radius: 10px;
	margin:0 0 0 61%;
	position: relative;
}
#next a:before {
	content: "";
	position: absolute;
	top: 28px;
	left: 0;
	right: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow:
	0px 20px 0 0 rgba(255,136,204,1),
	14px 14px 0 0 rgba(255,136,204,0.85),
	20px 0px 0 0 rgba(255,136,204,0.6),
	14px -14px 0 0 rgba(255,136,204,0.45),
	0px -20px 0 0 rgba(255,136,204,0.3),
	-14px -14px 0 0 rgba(255,136,204,0.15);
	-webkit-animation: load-icon-anim 1s steps(8) 0s infinite normal;
}
@-webkit-keyframes load-icon-anim {
	0% {-webkit-transform: rotate(0deg);}
	100% {-webkit-transform: rotate(360deg);}
}
#next a:after {
	width: 100%;
	content: "Loading";
	text-align: center;
	color: #fff;
	font-size: 10px;
	position: absolute;
	bottom: 5px;
}
#next .loading img { opacity: 0; }

/* news, diary, notice
----------------------------------- */
.mainCol { position: relative;}
.sideCol{ display: none; width: 20%; float: right; }

#news .sideCol,
#noticeDetail .sideCol,
#reportDetail .sideCol{ display:block; }
.detail .infoList li{ margin-bottom: 50px; -webkit-transition: all .3s ease; transition: all .3s ease;}
.detail .infoList li a:hover p{ color: #ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease;}
.detail .infoList li a:hover p::before{ background: #ff5fa2; -webkit-transition: all .3s ease; transition: all .3s ease;}
.block--youtube{
	position: relative;
	padding-top: 56.25%;
}
.block--youtube iframe,
.block--youtube embed{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
}

/* live report
----------------------------------- */
.detail li .summary {
	font-size: 11px;
	line-height: 180%;
	word-break: break-all;
	margin-top: 0;
	position: relative;
}
.detail .infoList .summary{ padding-left: 11.8em; -webkit-transition: all .3s ease; transition: all .3s ease;}

/*
.detail li .summary::before {
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: #000;
	position: absolute;
	top: -20px;
	left: 0;
}

#reportDetail.detail #container{ width: 70%; }
#reportDetail.detail #container .mainCol{ width: 70%; }
*/


/* movie
----------------------------------- */
#movie .playerDL	{ background: #fff; font-size: 10px; line-height: 14px; padding: 10px; margin: 10px 0; }
#movie .playerDL img{ float: left; margin: 0 10px 0 0; }

#movie.detail .contentsList li{ width: 48%; float: left; margin-right: 4%; margin-bottom: 50px; }
#movie.detail .contentsList li:nth-child(3n){ margin-right: 4%; }
#movie.detail .contentsList li:nth-child(3n+1){ clear: none; }
#movie.detail .contentsList li:nth-child(even){ margin-right: 0; }
#movie.detail .contentsList li:nth-child(odd){ clear:left; }

.page--movie.new-movie.page-movie-detail .section--detail .block--player {
    margin: 0 auto 5vw;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        margin: 0;
        background: rgba(0, 0, 0, 0.2);
        width: 90px;
        height: 90px;
        border-radius: 999px;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--movie .vjs-big-play-centered .vjs-big-play-button::before {
        content: "";
        background: #ffffff;
        height: 40px;
        width: 35px;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
        display: block;
        position: absolute;
        top: 50%;
        left: 55%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
}
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li {
        display: none;
}
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li:nth-child(1),
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li:nth-child(2),
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li:nth-child(3),
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li:nth-child(4),
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li:nth-child(5),
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li:nth-child(6) {
        display: block;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a {
        padding: 0 0 20px 0;
        margin: 0 0 20px 0;
        border-bottom: 1px solid #d3d3d3;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab > div {
	padding: 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab {
    width: 100%;
    margin: 0 auto 30px;
    position: relative;
    font-size: 17px;
    border-bottom: 1px solid #000;
    padding: 0 0 15px 0;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab > div .item__ico {
    display: block;
}
.page--movie.new-movie .section--detail .area--more-info .block--tab > div .item__ico img {
    margin: 0 auto 10px;
}
.page--movie.new-movie .section--detail .area--more-info .block--tab > div.current .item__ico span {
    display: inline-block;
    font-size: 12px;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .block--post {
    width: 100%;
    margin: 0 auto 40px;
    position: relative;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .block--post input[type=text] {
    box-sizing: border-box;
    outline: none;
        border-bottom: 1px solid #d4d4d4;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .attentionList{
    padding: 30px;
    background: rgba(0, 0, 0, 0.05);
    margin: 0 auto 30px;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .attentionList li{
    font-weight: normal;
    font-size: 12px;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .block--post input[type=submit]{
    outline: none;
    cursor: pointer;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .list--comment {
    border-top: none;
}

.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments div[id^=contents_comment_wrapper] {
    overflow-y: scroll;
    max-height: 400px;
    border: 1px solid #ededed;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .list--comment li:nth-last-child(2){
    border-bottom: none;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .list--comment li .list__txt {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.page--movie.new-movie.page-movie-detail .section--detail .area--more-info .block--tab__main .block--comments .list--comment li .list__txt .txt{
    font-size: 13px;
    margin: 0 0 5px 0;
}
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies {
    padding: 0;
}

.page--movie.new-movie.page-movie-detail #wrap .section--detail .more_movies_title {
    display: none;
}

.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main > div.current {
    background: none;
    border-color: #ffffff59;
}

.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a {
    text-decoration: none;
    color: #fff;
        width: 100%;
}

.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li {
    border-color: #ffffff59;
}

.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab #tab--movie.current::after, .page--movie.new-movie #wrap .section--detail .area--more-info .block--tab #tab--comment.current::after {
    display: none;
}

.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .category {
    margin-bottom: 0px;
}
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .titArea {
	margin-bottom: 0;
	width: 70%;
}
.page--movie.new-movie.page-movie-detail #wrap .section--detail .area--more-info .block--tab__main .block--more_movies .list--contents li a .titArea .tit{
        color: #000;
}
.page--movie.new-movie.movie-category-list #wrap #next .loading{
        width: 80px;
        height: 80px;
        text-indent: -9999px;
        border-radius: 10px;
        margin: 0 0 0 61%;
        position: relative;
}
.page--movie.new-movie.movie-category-list #wrap #next .loading:before {
	content: "";
	position: absolute;
	top: 28px;
	left: 0;
	right: 0;
	margin: auto;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	box-shadow:
	0px 20px 0 0 rgba(255,136,204,1),
	14px 14px 0 0 rgba(255,136,204,0.85),
	20px 0px 0 0 rgba(255,136,204,0.6),
	14px -14px 0 0 rgba(255,136,204,0.45),
	0px -20px 0 0 rgba(255,136,204,0.3),
	-14px -14px 0 0 rgba(255,136,204,0.15);
	-webkit-animation: load-icon-anim 1s steps(8) 0s infinite normal;
}
.page--movie.new-movie.movie-category-list #wrap #next .loading:after {
        width: 100%;
        content: "Loading";
        text-align: center;
        color: #fff;
        font-size: 10px;
        position: absolute;
        bottom: 5px;
}
.page--movie.new-movie.movie-category-list #wrap #next a{
        height: 0;
}
.page--movie.new-movie.movie-category-list #wrap #next a:before,
.page--movie.new-movie.movie-category-list #wrap #next a:after {
    display: none;
}

.page--movie.new-movie .section--detail .area--more-info .block--tab__main .block--comments .list--comment li .reportIcon,
.page--movie.new-movie .section--detail .area--more-info .block--tab__main .block--comments .list--comment li .btn.btn--report{
    display: none;
}

/* photo
----------------------------------- */
/*
#photo.detail .categoryList li{
	width: 100%;
	float: none;
	margin-right: 0;
	margin-bottom: 50px;
}
photo.detail .categoryList li:nth-child(3n+1){ clear: none; }
#photo .categoryList li { width: 23%; float: left; margin: 0 3% 15px 0; }
*/
#photo .categoryList li a { display: block; line-height: 0; position: relative; }
#photo .categoryList li a:hover p{ color: #ff5fa2; transition: .3s ease; }
#photo .detail .contentsList li{
	width: 29%;
	width: calc( 100%/3 - 3%);
	float: left;
	margin-right: 4%;
	margin-bottom: 15px;
	margin-bottom: 1.2vw;
}
#photo .categoryList li .blur{
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	filter: blur(15px);
	background-size: cover;
	transform: scale(1.2);
	transition: .3s ease;
}

#photo .categoryList li img{
	width: 100%;
	background: no-repeat center;
	background-size: contain;
}
/* #photo.detail .contentsList li .tit{ display :none; } */
#photo.detail .contentsList li:nth-of-type(3n){ margin-right: 2%; }
#photo.detail .contentsList li:nth-of-type(3n){ margin-right: 0; }
#photo.detail .contentsList li:nth-of-type(3n+1){ clear: left; }
#photo.detail .contentsList li:nth-of-type(4n+1){ clear: none; }

#photo.detail .contentsList img {
	width: 100%;
	background: no-repeat center;
	background-size: cover;
}

#photo.detail .categoryList .tit{ margin-bottom: 10px; }

/* colorbox */
/*
#photo #colorbox,
#photo #cboxOverlay,
#photo #cboxWrapper,
#photo #cboxContent { overflow: visible }
#photo #cboxContent,
#photo #cboxMiddleRight,
#photo #cboxMiddleLeft,
#photo #cboxTopCenter,
#photo #cboxTopRight,
#photo #cboxTopLeft,
#photo #cboxBottomLeft,
#photo #cboxBottomCenter,
#photo #cboxBottomRight { background: none }
#photo #cboxCurrent { display: none !important; }
#photo #cboxOverlay { background: rgba(0,0,0,0.85); }
#photo #cboxPrevious,
#photo #cboxNext,
#photo #cboxClose {
	width: 45px;
	height: 45px;
	left: auto;
	bottom: auto;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#photo #cboxPrevious {
	background: none;
	text-indent: -9999px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	left: -70px;
	top: 50%;
	outline: none;
	margin-top: -25px;
}
#photo #cboxNext {
	background: none;
	text-indent: -9999px;
	transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	margin-top: -25px;
	top: 50%;
	right: -70px;
	outline: none;
}
#photo #cboxNext::after,
#photo #cboxPrevious::after,
#photo #cboxNext::before,
#photo #cboxPrevious::before,
#photo #cboxClose::before,
#photo #cboxClose::after{
	content: '';
	display: block;
	width: 40px;
	height: 1px;
	background: #fff;
	position: absolute;
	top: 40px;
	left: 0;
}
#cboxLoadingGraphic,
#cboxLoadingOverlay{ background: none !important; }

#photo #cboxClose::before{ top: 22px; transform: rotate(45deg); -webkit-transform: rotate(45deg); outline: none;}
#photo #cboxClose::after{ top: 22px; transform: rotate(-45deg); -webkit-transform: rotate(-45deg); outline: none;}

#photo #cboxPrevious::after,
#photo #cboxNext::before{ transform: rotate(90deg); -webkit-transform: rotate(90deg); top: 20px; left: -20px; }
#photo #cboxClose {
	width: 45px;
	height: 45px;
	background: none;
	position: fixed;
	right: 20px;
	top: 20px;
}
#photo #cboxPrevious:hover,
#photo #cboxNext:hover,
#photo #cboxClose:hover{ opacity: 0.5;	-webkit-transition: all .3s ease; transition: all .3s ease; }
#photo #cboxPrevious:hover	{ background: none; }
#photo #cboxNext:hover		{ background: none; }
#photo #cboxClose:hover		{ background: none; }
#photo #cboxTitle { color: #fff; text-align: center;}
*/
#photo #swipebox-slider .slide-loading {
 background-image: none !important
}

#photo #swipebox-slider .slide img {
 max-height: 80%
}

#photo #swipebox-overlay {
 background: rgba(21, 20, 16, 0.8)
}

#photo #swipebox-prev.disabled, #photo #swipebox-next.disabled {
 opacity: 0.2
}

#photo #swipebox-action #swipebox-close {
 top: 60px;
 right: 70px;
 background: none
}
#photo .modal-open .drawer__btn {
  pointer-events: none
}

#photo #swipebox-action #swipebox-close {
	top: 30px;
	right: 2%
}
#photo #swipebox-action #swipebox-close::before,
#photo #swipebox-action #swipebox-close::after {
 content: "";
 width: 40px;
 height: 2px;
 background: #fff;
 position: absolute;
 top: 20px;
 transition: all 0.6s ease-out 0s;
 -webkit-transition: all 0.6s ease-out 0s
}

#photo #swipebox-action #swipebox-close::before {
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg)
}

#photo #swipebox-action #swipebox-close::after {
 -webkit-transform: rotate(-45deg);
 transform: rotate(-45deg)
}

#photo #swipebox-action #swipebox-prev, #photo #swipebox-action #swipebox-next {
 background: none;
 color: #fff;
 position: fixed;
 top: 50%;
 transform: translateY(-50%)
}

#photo #swipebox-action #swipebox-prev {
 left: 3%
}

#photo #swipebox-action #swipebox-prev::after {
 content: "";
 display: inline-block;
 width: 1.75em;
 height: 1.75em;
 border: 1px solid;
 border-top: none;
 border-right: none;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
 vertical-align: middle;
 pointer-events: none;
 margin-top: -0.25em;
 margin-right: 0.25em;
 margin-left: 1em;
 margin-top: 1em
}

#photo #swipebox-action #swipebox-next {
 right: 3%
}

#photo #swipebox-action #swipebox-next::after {
 content: "";
 display: inline-block;
 width: 1.75em;
 height: 1.75em;
 border: 1px solid;
 border-top: none;
 border-right: none;
 -webkit-transform: rotate(-135deg);
 transform: rotate(-135deg);
 vertical-align: middle;
 pointer-events: none;
 margin-top: -0.25em;
 margin-right: 0.25em;
 margin-top: 1em
}

#photo #swipebox-caption {
 width: 100%;
 max-width: 800px;
 padding: 0 8%;
 text-align: center;
 position: absolute;
 bottom: 5%;
 left: 50%;
 color: #fff;
 -webkit-transform: translateX(-50%);
 transform: translateX(-50%)
}


/* wallpaper
----------------------------------- */
#wallpaper .howto { background: #fff; border: 1px solid #000; padding: 15px; margin: 0 0 50px 30%; }
#wallpaper .howto .tit{ font-weight: bold; }
#wallpaper .contentsList a.dl {
	display: inline-block;
	background: #ffffff;
	color: #000;
	line-height: 24px;
	border: 1px solid;
	border-radius: 15px;
	font-size: 10px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	padding: 2px 15px 0;
	margin: 0 2% 0 0;
}
#wallpaper .contentsList a.dl:hover { background: #fff; color: #ff5fa2; }


/* report│diary
----------------------------------- */
#report .mainCol,
#diary .mainCol{ width: 100%; float: none; }


/* support
----------------------------------- */
#support{
	width: 70%;
	margin: 0 auto;
}
#support .sectionTit{
	text-align: center;
	font-size: 25px;
	position: relative;
	margin-bottom: 80px;
}
#support .supportList{ padding-left: 0; }
#support dl{ line-height:180%; margin-bottom: 20px; }
#support dt{ font-weight: bold; margin-bottom:5px; }
#support dd{ margin-bottom: 20px; }


/* entry
----------------------------------- */
#entry.detail #container{ width: 100%; padding: 78px 0 150px; }
#entry #entrySVG{ display: none; }
#entry section{ position: relative;}
#entry section .inner{
	width: 70%;
	background: #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin: 0 auto;
}
#entry h3{
	text-align: center;
	font-size: 36px;
	letter-spacing: 0.1em;
	margin-bottom: 70px;
	position: relative;
}
#entry h3::after{
	display: block;
	content: '';
	width: 1.4em;
	height: 2px;
	background: #000;
	margin-left: -0.7em;
	position: absolute;
	bottom: -22px;
	left: 50%;
}
#entry .subTxt{ display: block; font-size: 14px; }

/* heroImg */
#entry #heroImg{ margin-bottom: 80px;}
#entry #heroImg .inner{ width: 100%; padding: 0; }
#entry #heroImg .pc{ background: #ffe0ee; padding: 70px 0; }
#entry #heroImg h1.logo{ width: 700px; margin: 0 auto; }
#entry #heroImg .box h2{ font-size: 26px; margin-bottom: 0; }
#entry #heroImg .btn a{ padding: 15px 10px; margin-top: 20px; }

/* benefit */
#entry #benefit { margin-bottom: 80px; }
#entry #benefit .inner{ background: none; padding: 0; }
#entry #benefit li{
	float: left;
	width: 48%;
	background: #fff;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #e5e5e5;
	padding: 30px;
	margin: 0 4% 50px 0;
	margin: 0 4% 2vw 0;
}
#entry #benefit li:nth-child(odd){ margin-right: 0; }
#entry #benefit li:nth-child(even){ clear:left; }
#entry #benefit .mailMagazine + li{ border: none; background: none; padding: 0;}
#entry #benefit li ul li{ float: none; width: 100%; margin: 0 0 50px; margin: 0 0 2vw; }
#entry #benefit li.card{ width: 100%; float: none; }
#entry #benefit li .tit{
	font-size: 18px;
	line-height: 140%;
	text-indent: -1.8em;
	padding-left: 1.8em;
	margin-bottom: 20px;
}
#entry #benefit li .tit svg{
	display: inline-block;
	width: 26px;
	height: 26px;
	fill: #000;
	vertical-align: -6px;
	margin-right: 10px;
}
#entry #benefit .contents .tit svg{ display: inline-block; width: 40px; height: 30px; vertical-align: -8px; }
#entry #benefit li.contents{ height: 387px;}

#entry .tit .subTxt{ display: inline-block; font-size: 14px; vertical-align: 3px; text-indent: 0;}
#entry #benefit li .ph{ text-align: center; }
#entry #benefit li .ph + .txt{ margin-top: 20px; }
#entry #benefit li .txt{
	font-size: 14px;
	line-height: 170%;
	margin-top: 30px;
	text-align: justify;
	word-break: break-all;
}
#entry .inview{
	opacity: 0;
	position: relative;
	top: 50px;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
#entry .inview.view{ opacity: 1; top: 0; -webkit-transition: all .5s ease; transition: all .5s ease; }


/* 入会方法 */

#entry.loppi #entryStep{ padding-top: 60px;}

#entry #entryStep .price	{ text-align: center; margin-bottom: 60px;}
#entry #entryStep .price li { display: inline-block; font-size: 24px; padding: 0 10px; margin: 0 0 15px; }
#entry #entryStep .price .subTxt{ display: block; font-size: 14px;}
#entry #entryStep .subTit{
	font-size: 24px;
	border-bottom: 1px solid #000;
	text-align: center;
	padding-bottom: 10px;
	margin-bottom: 40px;
}

#entry #entryStep .howto	{ text-align: center; }
#entry #entryStep .howto li{ width: 31%; float: left; margin-right: 3%; }
#entry #entryStep .howto li:last-child{ margin-right: 0; }
#entry #entryStep .howto li a{ display: block; border: 1px solid #ccc; text-decoration: none; }
#entry #entryStep .howto li a:hover{ box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); }
#entry #entryStep .howto li .ph{ position: relative; }
#entry #entryStep .howto li .ph::after{
	content: "\f105";
	font-family: 'FontAwesome';
	z-index: 10;
	color: #000;
	font-size: 24px;
	vertical-align: 0;
	line-height: 0;
	margin-top: -2px;
	position: absolute;
	right: 15px;
	top: 50%;
}

#entry #entryStep .howto li .ph img{
	display: block;
	background: no-repeat center;
	background-size: 90%;
	-webkit-background-size: 90%;
	margin: 0 auto;
}
#entry #entryStep .howto li:nth-child(1) .ph img{ background-image: url(/static/bullettrain/fanclub-pc/feature/entry/btn_emtg.png); }
#entry #entryStep .howto li:nth-child(2) .ph img{ background-image: url(/static/bullettrain/fanclub-pc/feature/entry/btn_loppi.png); }
#entry #entryStep .howto li:nth-child(3) .ph img{ background-image: url(/static/bullettrain/fanclub-pc/feature/entry/btn_lawsonticket.png); }

/* Loppi/ローチケ/FC */
#entry #entryStep .step { margin: 5px 0 20px; }
#entry #entryStep .step li {
	width: 30%;
	float: left;
	font-size: 12px;
	text-align: left;
	line-height: 1.5em;
	padding: 0;
	margin: 0px 5% 0 0;
	word-break: break-all;
	text-align: justify;
}
#entry #entryStep .step li:last-child{ margin-right: 0;}
#entry #entryStep .btn{ text-align: center; margin-bottom: 30px; }
#entry .alertBox {
	background: #f5f5f5;
	border-radius: 0;
	line-height: 180%;
	box-sizing: border-box;
	padding: 20px 30px;
	margin: 50px 0 15px;
}

/* bingo
================================= */
#bingo #wrap { background: #fff; }
#bingo #contentsAreaSection	{ margin:0; }
#bingo #contentsAreaOuter	{ width: auto; }
#bingo .bcontainer-outer	{ padding: 0 !important; }
#bingo .pageTit .sub		{ line-height: 56px; }
#bingo .bTxt	{ width: 750px; margin: 0 auto; }
#bingo #footer { line-height: 1em; }
#bingo #mainArea { padding-top: 65px; }
#bingo .pageTit { padding-top: 55px; }

/* support */
#bingo .dealList,
#bingo .dealList tbody,
#bingo .dealList tr,
#bingo .dealList th,
#bingo .dealList td { display: block; width: 100%; }

#bingo .tosList dt,
#bingo .dealList th {
	background: #ffdbf0;
	color: #333;
	font-size: 13px;
	line-height: 20px;
	border: none;
	padding: 5px 14px;
	margin: 0 0 15px;
}
#bingo .dealList td,
#bingo .tosList dd {
	font-size: 13px;
	line-height: 20px;
	text-align: left;
	padding: 0;
	margin: 0 0 40px;
}
/* faq */
#bingo .qaList { width : 750px; margin: 0 auto; }
#bingo .qaList .searchBox { height: 60px; margin: 0 0 60px; position: relative; }
#bingo .qaList .searchBox div { background: none; border:none; padding: 0; }
#bingo .qaList .searchBox .bSubTtl h3 {
	color: #333 !important;
	background: none;
	font-size: 12px;
	padding: 0 ;
	margin: 0 0 10px;
}
#bingo .qaList .searchBox select {
	width: 270px;
	font-size: 14px;
	border-color: #ff5fa2;
	border-radius: 20px;
	padding: 5px;
}
#bingo .qaList .searchBox input[type="text"] {
	width: 270px !important;
	font-size: 14px;
	border: none;
	border: 1px solid #ff5fa2;
	border-radius: 20px;
	padding: 5px;
	margin: 0 30px 0 0;
}
#bingo .qaList button {
	display: inline-block;
	width:130px;
	color: #fff;
	background: #ff5fa2;
	border:none;
	border-radius: 20px;
	padding: 7px 0
}
#bingo .qaList .searchBox #unit-q001,
#bingo .qaList .searchBox #unit-q003 { width: 270px; position: absolute; left: 0; top: 0; }
#bingo .qaList .searchBox #unit-q003 { left: 300px; }
#bingo .qaList .searchBox #unit-q002 { width: 270px; float: left; padding-top: 30px; margin: 0 30px 0 0; }
#bingo .qaList .searchBox #unit-q004 { width: 450px; float: left; padding-top: 30px; }
#bingo .qa { clear: both; }
#bingo .qa dt a {
	display: block;
	color: #ff5fa2;
	font-size: 14px;
	border-top: 1px solid #ff5fa2;
	padding: 15px 40px 15px 0;
	position: relative;
}
#bingo .qa dt a::after {
	content: '　';
	display: block;
	width: 30px;
	height: 30px;
	background: url(/static/original/fanclub-pc/images/cmn/ico_arrow_down.png);
	-moz-background-size: 30px;
	-webkit-background-size: 30px;;
	background-size: 30px;
	position: absolute;
	right: 0;
	top: 11px;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#bingo .qa dt a.open::after { transform: rotate(-180deg); }
#bingo .qa dt:first-child a { border: none; }
#bingo .qa dd { font-size: 13px; padding: 0 0 20px; }
/*
#bingo .btn a,
#bingo .btn input {
	display: inline-block;
	min-width: 270px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	border-radius: 40px;
	border: none;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	padding: 10px 0;
	margin: 40px auto 0;
}
#bingo .btn .main {
	color: #fff; margin-top: 15px;
	background: #ff5fa2;
	color: #fff;
	text-decoration: none;
	border: 1px solid #ff5fa2;
}
#bingo .btn .main:hover	{ background: #fff; color: #ff5fa2; }
#bingo .btn .sub		{ background: #fff; color: #ff5fa2; border: 1px solid }
#bingo .btn .sub:hover	{ background: #eee; }
*/

#faq{ width: 70%; margin: 0 auto; }
#faq h2.sectionTit{
	text-align: center;
	position: relative;
	margin-bottom: 60px;
}
#qaList { width: 100%; padding-left: 0; }
#qaList .search input[type="text"]{
	width: 74%;
	float: none;
	border-radius: 4px;
	-webkit-appearance: none;
	border: none;
	box-sizing: border-box;
	padding: 10px;
	border: 1px solid #aaa;
}
#qaList .search input[type="submit"].pc {
	display: inline-block !important;
	width: 22%;
	background-color: #ff5fa2;
	color: #fff;
	font-size: 15px;
	border: none;
	padding: 0 20px;
	position: relative;
	top: 1px;
	border-radius: 20px;
	line-height: 41px;
	margin-left: 2%;
}
#qaList .newsList:not(:last-of-type){
	margin-bottom: 60px;
}
#qaList .newsList li:first-of-type{
	border-top: 1px solid #e5e5e5;
}
#qaList .newsList li{
	border-bottom: 1px solid #e5e5e5;
	margin-bottom: 0;
}
#qaList .newsList li a{
	display: block;
	color: #000;
	font-size: 14px;
	text-indent: -2.4em;
	line-height: 1.6;
	text-decoration: none !important;
	padding: 17px 15px 17px 2.4em;
	position: relative;
}
#qaList .newsList li a:hover { color: #ff5fa2;}
#qaList h3.title { font-size: 22px; font-weight: normal; line-height: 160%; margin: 0 0 30px; }
#qaList dd { line-height: 170%; text-indent: 0; padding-left: 0; }
#qaList .newsList { border:none;}
#qaList .newsList a span { position: relative !important; padding-right: .5em;}
#qaList dl {
	border: 1px solid #ccc;
	padding: 40px;
	margin:0 auto 80px;
}
#qaList .lead {
	width:750px;
	font-weight: bold;
	text-align: center;
	line-height: 160%;
	margin: 0px auto 15px;
}
#qaList dt {
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 30px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 25px;
	text-indent: 0;
	padding-left: 0;
	position: relative;
}
#qaList .titCat{
	display: inline-block;
	font-size: 20px;
	color: #000;
	line-height: 1;
	padding: 0;
	margin-bottom: 20px;
}
#qaList p.btn a.sub { margin: 5px auto 0; }
#qaList .questionBlock { padding-top: 50px;}
#qaList .questionBlock .lead{ width: 100%; line-height: 2; font-weight: normal; }
#qaList .questionBlock .btnTxt{ text-align: center; }
#qaList .questionBlock .btnTxt a{ text-decoration: none;}
#qaList .questionBlock .btnTxt a:hover{ opacity: 0.5;}
#qaList .questionBlock .btnTxt a i{ font-size: 18px; vertical-align: -2px; }
#qaList .search{
	width: 57%;
	margin: 0 auto 60px;
}
#qaList .search .btn{ width: auto; text-align: left; margin: 0 0 0 310px; }
#qaList .search .btn .main{ padding:0; }
#qaList .search .btn input{
	cursor: pointer;
	padding: 10px 40px;
}
#qaList .addBox{
	width: 100%;
 text-align: center;
	box-sizing: border-box;
	padding: 30px;
	margin: 40px 0 80px;
}
#qaList .addBox .txt {
	line-height: 2;
	margin-bottom: 0;
	font-size: 14px;
}
#qaList .addBox .btn .main{
	margin-top: 10px;
}
#qaList dt .tit{
	display: block;
	line-height: 140%;
	text-align: left;
	padding-top: 9px;
	padding-left: 53px;
}
#qaList dt .tit span.ico,
#qaList dd .tit span.ico{
	background: #333;
	color: #fff;
	width: 40px;
	display: inline-block;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	text-indent: 0;
	text-align: center;
	font-size: 20px;
}
#qaList dd{
	line-height: 1.8;
	font-size: 14px;
	position: relative;
	padding-top: 5px;
	padding-left: 50px;
}
#qaList dt .tit span.ico{
	position: absolute;
	left: 0;
	top: 0;
}
#qaList dd .tit span.ico{
	background: #ff5fa2;
	font-weight: normal;
	position: absolute;
	left: -50px;
	top: 0;
}
#qaList dd .tit{
	position: relative;
}
#qaList .list--tag {
	margin-bottom: 30px;
}
#qaList .list--tag li {
	border: 1px solid;
	border-radius: 30px;
	text-align: right;
	cursor: pointer;
	transition: 0.3s;
	display: inline-block;
	margin: 6px 0;
}
#qaList .list--tag li:hover {
	background: #000;
}

#qaList .list--tag li:hover a {
	color: #fff;
}

#qaList .list--tag li a {
	display: block;
	padding: 6px 14px;
	text-decoration: none;
}

#qaList h3.title {
	display: block;
	padding-top: 100px;
	margin-top: -100px;
}


/* entry */
#bingo .section.regist .menuList li { border: none; padding: 0; }
#bingo .section.regist .menuList .txt {
	width: 100%;
	line-height: 1.5em;
	background: #ffdbf0;
	color: #333;
	font-size: 14px;
	text-align: center;
	border: none;
	padding: 5px;
	margin: 0 0 15px;
}
#bingo .section.regist .menuList .btn { float: none; }
#bingo .sectionTit { font-size: 16px; margin: 0 0 20px; }
#bingo .extMdlFormGnrtr { width: 750px; margin: 0 auto; }
.extMdlFormGnrtr td { background: #fff; }

/* アンケート */
#bingo .extMdlFormGnrtr { background: #fff; padding: 0 30px 30px; }
#bingo .extMdlFormGnrtr table,
#bingo .extMdlFormGnrtr tbody,
#bingo .extMdlFormGnrtr tr,
#bingo .extMdlFormGnrtr th,
#bingo .extMdlFormGnrtr td {
	display: block;
	width: 100%;
	background: none;
	font-size: 16px;
	border: none;
}
#bingo .extMdlFormGnrtr th { padding: 30px 0 0; margin: 0 0 20px; }
#bingo .extMdlFormGnrtr td { border-bottom: 1px solid #e5e5e5;; padding: 0 0 40px; }
#bingo th.thImp { line-height: 1.5; border-left-color: #ff5fa2 !important; }
#bingo .extMdlFormGnrtr .errBox { background: transparent; padding-top: 30px; }
#bingo .extMdlFormGnrtr .btn .sub { margin-top: 15px; }
#bingo textarea,
#bingo input[type="text"],
#bingo input[type="password"],
#bingo input[type="tel"]{ border: 1px solid #ccc; border-radius: 2px; box-sizing: border-box; padding: 10px; cursor: auto;}

#bingo .extMdlFormGnrtrBtn input.extBtnNext,
#bingo .extMdlFormGnrtrBtn input.extBtnSend{ display: block; }
#bingo .btn{ text-align: center; }

#contentsAreaSection a{ color: #ff5fa2 !important;}
#contentsAreaSection a:hover{ color: #ff5fa2 !important; opacity: 0.5 !important; }



/* topバナー */
#header .headerBnrArea { display:none; }
.headerStatic #header .headerBnrArea {
	display:block;
	text-align:center;
	letter-spacing: -0.4em;
	font-size:0;
	margin:0 auto;
}
.headerStatic #header .headerBnrArea p.bnrBox {
	display:inline-block;
	text-align: center;
	vertical-align:top;
	letter-spacing: normal;
	margin:0 10px 30px;
}
.headerStatic #header .headerBnrArea p.bnrBox a { display:block; }
.headerStatic #header .headerBnrArea p.bnrBox a:hover img { filter:alpha(opacity=100); -moz-opacity: 1.0; opacity: 1.0; }




/* アンケートフォーム
================================= */
#question .thumb{ margin: 30px auto; position: relative; }
#question .dummy{ width: 100%; height: 100%; position: absolute; top: 0; left: 0; }

#question .formList{ margin: 60px 0 0; }
#question .formList dt { float: none; text-align: left; font-size: 18px; margin-bottom: 10px; }
#question .formList dd { margin-bottom: 40px; }
#question .formList dd div{ display: inline-block; margin-bottom: 10px; }
#question .formList dd .textarea,
#question .formList dd.textarea div{ width: 100%; }
#question .formList dd .rule { display: block; }
#question .txtInput{ width: 100%; }

.icoMust { display: inline-block; position: relative; }
.questionCnfirm .icoMust {display:none;}
.icoMust::before {
	content: '必須';
	display: block;
	background: #ef2323;
	color: #fff;
	font-size: 11px;
	letter-spacing: 0.3em;
	text-align: center;
	line-height: 100%;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	padding: 3px 2px 3px 6px;
	margin-left: 4px;
	position: relative;
	top: -2px;
}
#question .titArea{ padding-top:0; margin-bottom: 60px;}
#question h2.sectionTit{ font-size: 20px; margin: 0 0 30px; font-family: -apple-system, sans-serif; }
#question .formList{ border-radius: 0; background: none; margin: 30px auto; }
#question .formArea .formTit { color: #000; font-size: 12px; font-weight: bold; margin: 0 0 3px; }
#question .formList{ margin-bottom: 30px; border: none; }
#question .formList textarea{ min-height: 100px; line-height: 140%;}
#question .formList input{ -webkit-appearance: none; }
#question .formList textarea,
#question .formList input{
	width: 100%;
	border-radius: 2px;
	background: #fff;
	font-size:14px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 10px 5px;
}
#question .formList dt{
color: #000;
  font-size: 16px;
  margin: 0 0 23px;
 }
#question .formList dd{
	border-bottom: 1px solid #ccc;
	padding-bottom: 30px;
	margin-bottom: 35px;
}
#question .formList.confirm{ background: #f5f5f5; color: #000; padding: 10px; margin: 15px auto 30px; }
#question .formList.confirm input{ -webkit-appearance: none; color: #000; background:none; font-size: 14px; padding: 0; }
#question .formList.confirm dt{ font-weight: normal; font-size: 11px; color: #9c9c9c; line-height: 120%; margin-bottom: 0; }

#question .confirm .txtArea{ background: #222; padding: 10px 10px 0;}
#question .confirm .txtArea:last-of-type{ padding: 10px;}
#question .confirm .txtArea .txt{ margin: 0;}
#question .confirm .txtArea + .btn{ margin-top: 30px; }


/* pulldownBox */
.pulldownBox{ border:none; position: relative; margin: 0 0 35px; }
.pulldownBox select {
	-moz-appearance: button;
	width: 100%;
	height: 45px;
	background: none;
	color: #000;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	border-radius: 0;
	box-sizing: border-box;
	line-height: 24px;
	padding: 0 10px;
	position: relative;
	border: none;
}
/*
.pulldownBox:before {
	content: "\f107";
	font-family: 'FontAwesome';
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 10;
	color: #000;
	line-height: 0;
	font-size: 20px;
}
*/
#question .formList .pulldownBox{ padding: 4px 0; margin-bottom: 0; border: 1px solid #ccc;}
#question .formList .pulldownBox select{
	width: 100%;
	height: 30px;
	font-family: -apple-system, sans-serif;
	padding-right: 40px;
	cursor: pointer;
}

#question .formList .choiceArea.year .pulldownBox{ display:inline-block;width: 90px; margin-right: 5px; margin-bottom: 0;}
#question .formList .choiceArea.year .pulldownBox:not(:first-child){ margin-left: 8px; }
#question .formList .choiceArea.year .pulldownBox::before{right: 8px;}
#question .formList .radioBtn label{
	font-size: 14px;
	display: block;
	float: left;
	line-height: 1.5em;
	margin: 2px 25px 10px 5px;
}
#question .formList .radioBtn input[type="radio"] { float: left; -webkit-appearance: radio; width: auto; }
#question .formList .radioBtn input[type="radio"] {
	content: "";
	width: 18px;
	height: 18px;
	-webkit-appearance: button;
	appearance: button;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #fff;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	vertical-align: middle;
	clear: both;
	padding: 0;
	position: relative;
}
#question .formList .radioBtn input[type="radio"]:checked:after {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	background: #000 ;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	padding: 0;
	position: absolute;
	top: 2px;
	left: 2px;
}
#question .formList input[type="checkbox"] {
	display: inline-block;
	position: relative;
	margin-right: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: button;
	appearance: button;
	width: 18px;
	height: 18px;
	vertical-align: middle;
	background: rgba(255,255,255,0.3);
	border-radius: 3px;
	-webkit-border-radius: 3px;
	padding: 0;
}
#question .formList input[type="checkbox"]:checked:after {
	position: absolute;
	content: "";
	top: -3px;
	left: 3px;
	width: 8px;
	height: 14px;
	border-right: 4px solid #000;
	border-bottom: 4px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
#question .formList .check {margin: 0 0 20px;}
#question .formList .check label {display: block;margin: 0 0 10px;}
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { background-color: #000 !important; background-image: none; color: #fff !important; }
#question .center{ text-align: center; }

#question .errorList{
	background: #ffeaea;
	font-weight: bold;
	color: #ec0000;
	padding: 20px;
	margin: 30px auto;
}

#question .guidance{ margin-bottom: 30px; }
#question .questionCnfirm,
#question .questionCnfirm tbody,
#question .questionCnfirm tr,
#question .questionCnfirm th,
#question .questionCnfirm td {display: block; width: 100%;}
#question .btnTxt { margin: 0 0 80px; }
#question .questionCnfirm { margin: 0 0 50px; }
#question .questionCnfirm th {
	font-size: 16px;
	text-align: left;
	margin-bottom: 20px;
}
#question .questionCnfirm td{
	font-size: 16px;
	border-bottom: 1px solid #eee;
	font-weight: bold;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
#question .inner{ width: 70%; margin: 0 auto;}
#question.detail .titArea .tit{
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
#question .questionBox .txt{
  font-weight: bold;
  line-height: 200%;
  margin-bottom: 50px;
  font-size: 16px
}
#question .center{ text-align: center;}
#question .questionLogo{
	width: 25%;
	margin: 0 auto 30px;
}
#question .complete{
	font-weight: bold;
	line-height: 170%;
	font-size: 20px;
}
#question .notice.txt{
	line-height: 200%;
	margin-bottom: 30px;
}

/* AOP BLOG
----------------------------------- */

.aop_blog{

}
.aop_blog.aop_blog_list .pagingBox{
        padding: 60px 0 60px 30%;
}
.aop_blog.aop_blog_list  .pagingBox ul{
        display: flex;
        align-items: center;
        justify-content: center;
}
.aop_blog.aop_blog_list .txtArea{

}
.aop_blog.aop_blog_list .txtArea .tit{
        margin-bottom: 0;
}
.aop_blog.aop_blog_list .txtArea .date{
        font-size: 11px;
}
.aop_blog.detail .contentsList{
        display: flex;
        flex-wrap: wrap;
}
.aop_blog.detail .contentsList li {
        float: none;
}
.aop_blog.detail .contentsList li a .thumb {
        background: #ffffff;
}
.aop_blog.detail .contentsList li a .thumb img{
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
}
.aop_blog.detail .contentsList li a .thumb img.not_loggedin{
        filter: blur(30px);
        transform: scale(1.2);
}
.aop_blog.detail .contentsList li a:hover .thumb img{
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
}
.aop_blog.detail .txtArea > *{
	margin-bottom: 10px;
}
.aop_blog.detail .txtArea > *:last-child{
	margin-bottom: 0;
}
.aop_blog.detail .detailBox .icon--like {
        display: inline-block;
        background: #eeeeee;
        line-height: 1em;
        padding: 7px 14px 5px;
        border-radius: 100px;
        position: relative;
        overflow: hidden;
}
.aop_blog.detail .detailBox .icon--like i{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-size: 115%;
        vertical-align: 1px;
        margin: 0 5px 0 0;
        color: #ff7373;
        cursor: pointer;
		transition: 0.3s ease;
}
.aop_blog.detail .detailBox .icon--like i.clicked{
	background-color: #ffe4e4;
}
.aop_blog.detail .detailBox .icon--like i:before{
		display: block;
        position: absolute;
        top: 50%;
        left: 15px;
        transform: translate(0, -48%);
        font-size: 90%;
		transition: 0.3s ease;
		color: #ffbebe;
}
.aop_blog.detail .detailBox .icon--like i.clicked:before{
        color: #ff7373;
}
.aop_blog.detail .detailBox .icon--like span{
        font-family: 'Varela Round', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, 'メイリオ', sans-serif;
        font-weight: 600;
        font-size: 13px;
        vertical-align: 2px;
        margin-left: 20px;
        position: relative;
}
.aop_blog.detail .detailBox .txtArea {
    margin-bottom: 50px;
}
.aop_blog.detail .detailBox .txtArea .block--player.mov{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-bottom: 10px;
}
.aop_blog.detail .detailBox .txtArea .block--player video{

}

.aop_blog.detail .detailBox .table_box{
        border-top: 1px solid;
        padding: 50px 0 20px;
        margin-top: 60px;
}
.aop_blog.detail .detailBox .table_box dt{
        font-size: 16px;
        margin: 0 0 20px;
}
.aop_blog.detail .detailBox .table_box dd{

}
.aop_blog.detail .detailBox .table_box dd textarea{
        width: 100%;
        box-sizing: border-box;
        height: 14em;
        border-radius: 10px;
        border: 1px solid #000;
        padding: 10px;
        font-size: 16px;
        font-weight: 300;
        line-height: 1.5em;
        letter-spacing: 0.05em;
}
.aop_blog.detail .detailBox .table_box + #block_box{

}
.aop_blog.detail .detailBox .table_box + #block_box .btn{
        line-height: 0;
}
.aop_blog.detail .detailBox .table_box + #block_box .btn span{
        font-size: 16px;
}
.aop_blog.detail .archiveBtn{
        text-align: center;
        padding: 40px 0 0;
}
.aop_blog.detail .archiveBtn a{
        text-decoration: none;
        text-align: center;
        display: inline-block;
        width: 240px;
        background: #ff5fa2;
        color: #FFF;
        padding: 15px 15px 14px;
        font-size: 18px;
        border-radius: 100px;
		transition:0.3s ease;
}
.aop_blog.detail .archiveBtn a:hover{
        background: #ff3c8d;
}
.aop_blog.detail .ancPoint{
	position: relative;
}
.aop_blog.detail .ancPoint #anc{
	position: absolute;
	top:-80px;
}
.aop_blog.detail .commentList{
        margin-top: 60px;
        margin-bottom: 60px;
}
.aop_blog.detail .commentList li{
        border-bottom: 1px solid;
        padding: 0 0 20px;
        margin-bottom: 20px;
}
.aop_blog.detail .commentList li:first-child{
        border-top: 1px solid;
        padding-top: 20px;
}
.aop_blog.detail .commentList li:last-child{
        margin-bottom: 0;
}
.aop_blog.detail .commentList li .name-wrap{
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
}
.aop_blog.detail .commentList li .name-wrap .name{
        font-size: 16px;
        font-weight: 600;
}
.aop_blog.detail .commentList li .name-wrap .date{
        margin: 0;
        font-size: 12px;
}
.aop_blog.detail .commentList li .text{
        letter-spacing: 0.05em;
}
.aop_blog.detail .commentList li .reportIcon,
.aop_blog.detail .commentList li .reportBlock{
	display: none;
}

.aop_blog.detail .block--pager{
		display: flex;
        justify-content: center;
        position: relative;
}
.aop_blog.detail .block--pager li{
        margin: 10px;
}
.aop_blog.detail .block--pager li.pager__item--newer{
        position: relative;
        width: 30px;
        height: 30px;
}
.aop_blog.detail .block--pager li.pager__item--newer a{
		display: block;
        border: 1px solid;
        width: 100%;
        height: 100%;
        border-radius: 100px;
        box-sizing: border-box;
}
.aop_blog.detail .block--pager li.pager__item--newer a:hover{
		color: #FF5FA2;
}
.aop_blog.detail .block--pager li.pager__item--newer a:before{
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        border-top: 1px solid;
        border-right: 1px solid;
        width: 7px;
        height: 7px;
        transform: translate(-30%, -50%) rotate(-135deg);
}
.aop_blog.detail .block--pager li.pager__item--newer:not(:has(a)){
        width: 30px;
        height: 30px;
        border: 1px solid;
        border-radius: 100px;
        opacity: 0.4;
        box-sizing: border-box;
}
.aop_blog.detail .block--pager li.pager__item--newer:not(:has(a)):before{
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        border-top: 1px solid;
        border-right: 1px solid;
        width: 7px;
        height: 7px;
        transform: translate(-30%, -50%) rotate(-135deg);
}
.aop_blog.detail .block--pager li.pager__item--older{
        position: relative;
        width: 30px;
        height: 30px;
}
.aop_blog.detail .block--pager li.pager__item--older a{
		display: block;
        border: 1px solid;
        width: 100%;
        height: 100%;
        border-radius: 100px;
        box-sizing: border-box;
}
.aop_blog.detail .block--pager li.pager__item--older a:hover{
		color: #FF5FA2;
}
.aop_blog.detail .block--pager li.pager__item--older a:before{
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        border-top: 1px solid;
        border-right: 1px solid;
        width: 7px;
        height: 7px;
        transform: translate(-70%, -50%) rotate(45deg);
}
.aop_blog.detail .block--pager li.pager__item--older:not(:has(a)){
        width: 30px;
        height: 30px;
        border: 1px solid;
        border-radius: 100px;
        opacity: 0.4;
        box-sizing: border-box;
}
.aop_blog.detail .block--pager li.pager__item--older:not(:has(a)):before{
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        border-top: 1px solid;
        border-right: 1px solid;
        width: 7px;
        height: 7px;
        transform: translate(-70%, -50%) rotate(45deg);
}
.aop_blog.detail .block--pager li.pager__item--current{
        border: 1px solid #000;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 100px;
        background: #000;
        color: #FFF;
        line-height: 1.1em;
        box-sizing: border-box;
}
.aop_blog.detail .block--pager li.pager__item--other{

}
.aop_blog.detail .block--pager li.pager__item--other a{
        border: 1px solid;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border-radius: 100px;
        text-decoration: none;
        line-height: 1.1em;
        transition: 0.3s ease;
        box-sizing: border-box;
}
.aop_blog.detail .block--pager li.pager__item--other a:hover{
		background: #FF5FA2;
        color: #FFF;
        border: 1px solid #FF5FA2;	
}
.aop_blog.detail .pageBack.archiveLink{
        margin: 0;
}
.aop_blog.aop_blog_list .pageBack.archiveLink{
        padding-left: 30%;
}
.aop_blog.aop_blog_confirm #container{
        max-width: 800px;
}
.aop_blog.aop_blog_confirm .detailBox{
        padding: 0;
}
.aop_blog.aop_blog_confirm .detailBox .titArea{
        border-bottom: 1px solid;
        padding: 0 0 30px;
        margin-bottom: 30px;
}
.aop_blog.aop_blog_confirm .detailBox #comment_form{

}
.aop_blog.aop_blog_confirm .detailBox #comment_form dl{
    border-bottom: 1px solid;
    padding: 0 0 30px;
    margin-bottom: 30px;
}
.aop_blog.aop_blog_confirm .detailBox #comment_form dt{
        font-size: 14px;
        color: #999;
        margin: 0 0 10px;
        line-height: 1em;
}
.aop_blog.aop_blog_confirm .detailBox #comment_form dd{
        margin-bottom: 30px;
        font-size: 18px;
}
.aop_blog.aop_blog_confirm .detailBox #comment_form dd:last-child{
        margin-bottom: 0;
}
.aop_blog.aop_blog_confirm .btn{
        line-height: 0;
        text-align: center;
}
.aop_blog.aop_blog_confirm .btn #submit_button{
        font-size: 16px;
        letter-spacing: 0.05em;
}
.aop_blog.aop_blog_confirm .compTit{
        text-align: center;
        font-size: 20px;
        line-height: 1.6em;
        margin-bottom: 30px;
        padding-top: 40px;
}
.aop_blog.aop_blog_confirm .compTit + .btn{
        margin-bottom: 40px;
}
.aop_blog.aop_blog_confirm .compTit + .btn a{
        margin: 0 auto;
        padding: 20px 40px;
        display: inline-block;
        width: auto;
        min-width: auto;
        font-size: 16px;
}

.page--guide .langBar {
	width: 100px;
	padding-left: 1em;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	position: fixed;
	top: 2em;
	right: calc(4vw + 250px);
	font-size: 14px;
	transition: 0.3s;
	font-weight: normal;
	z-index: 1000;
}
.page--guide .langBar .langSelector .easy-select-box:nth-of-type(2) {
  display: none;
}
.page--guide .langBar .esb-item {
  padding: 0.2em 1em .2em 0;
  cursor: pointer;
  text-align: right;
  color:#ff5fa2;
}
.page--guide .langBar .esb-displayer {
  padding: 0.3em 1em;
  border-bottom: solid 1px #ff5fa280;
  text-align: right;
  cursor: pointer;
  color:#ff5fa2;
}
.page--guide .langBar .esb-dropdown {
  padding: 0 0.5em;
  background: #fff;
  color: #000;
  line-height: 1.8em;
}
.page--guide .langBar select {
  padding: 1em;
  border-right: solid 1px #555;
  background: none;
  color: #fff;
  font-family: din-2014, sans-serif;
  font-weight: 300;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.page--guide .langBar select option {
  color: #000;
}

.fixed .langBar {
  right: 30px;
}