@charset "UTF-8";
/* ==================================================
common
================================================== */

body.page_home {}

body.page_home #all_wrap {background: #fff;}

/* ==================================================
main
================================================== */
main#jme_cnt {}


/* #order_control
------------------------------ */
@media screen and (max-width: 1000px) {
#order_control { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; flex-direction: row; }
#order_control section { width: 100%; }
#area_whatis { order: 1; }
#area_user { order: 2; }
#area_present_event { order: 3; }
#area_side_banner { order: 4; }
#area_ranking { order: 5; margin-top: -55px;}
#area_info { order: 6; }
#area_program { order: 7; }
#area_share { order: 8; }
}

@media screen and (min-width: 1001px) {
#float_control {
	padding: 0 30px;
	max-width: 1300px;
	margin: 0 auto;
}
#float_control section {
}

#area_user,
#area_share,
#area_ranking { float: left; width: 300px; margin-bottom: 40px !important;}

#area_side_banner { float: left; width: 300px; margin-bottom: 20px !important;}

#area_whatis,
#area_present_event,
#area_info,
#area_program { float: right; width: calc(100% - 300px); padding-left: 30px !important;}
}


/* =========================================================
MODAL BLOCK (BASIC STYLE)
========================================================= */
.modal_wrap {
}

.modal_wrap .trigger {
}

.modal_wrap .trigger span {
}

.modal_wrap .window_bg {
	content: "";
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	transition: all 0.8s ease-out 0s;
	background-color: rgba(255,255,255,0);
	visibility: hidden;
	z-index: -101;
}

.modal_wrap .modal_bg {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	width: 94%;
	max-width: 800px;
	height: calc(85vh - 44px);
	border-radius: 8px;
	border: 1px solid #f2f2f2;
	padding: 20px 0;
	box-shadow: 0 0 20px rgba(0,0,0,0.15);
	transition: all 0.8s ease-out 0s;
	opacity: 0;
	transform: scale(0.4);
	visibility: hidden;
	z-index: -100;
}

/**/
.modal_wrap .window_bg.modal_open {
	background-color: rgba(255,255,255,0.96);
	visibility: visible;
	z-index: 1000;
}

.modal_wrap .modal_bg.modal_open {
	opacity: 1;
	transform: scale(1);
	visibility: visible;
	z-index: 1001;
}
/**/

.modal_wrap .modal_bg .close {
	display: block;
	width: 24px;
	height: 24px;
	position: absolute;
	top: 15px;
	right: 15px;
}

.modal_wrap .modal_bg .close:hover {
	opacity: 0.4;
}

.modal_wrap .modal_bg .close::before,
.modal_wrap .modal_bg .close::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 2px;
	background-color: #000;
}

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

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

.modal_wrap .modal_cnt {
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.modal_wrap .modal_cnt .modal_ttl {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0;
	line-height: 1;
	height: 35px;
	border-bottom: 2px solid #000;
	font-size: 2rem;
	text-align: center;
}

.modal_wrap .modal_cnt .modal_body {
	overflow-y: scroll;
	height: calc(100% - 35px);
	padding: 30px 5% 0;
	font-size: 1.4rem;
	text-align: left;
}

.modal_wrap .modal_cnt .modal_body .sct {
	margin-bottom: 30px;
}

.modal_wrap .modal_cnt .modal_body .sct .ttl {
	font-size: 1.6rem;
	background: #000;
	font-weight: 700;
	line-height: 1.2;
	padding: 8px 10px 5px;
	border-bottom: 1px dotted #000;
	margin-bottom: 15px;
	/*! border-top-left-radius: 8px; */
	/*! border-top-right-radius: 8px; */
	color: #fff;
}

.modal_wrap .modal_cnt .modal_body .sct .detail {
}

.modal_wrap .modal_cnt .modal_body .sct .detail p {
}

.modal_wrap .modal_cnt .modal_body .sct .detail p:not(:last-child) {
	margin-bottom: 2.2em;
}

.modal_wrap .modal_cnt .modal_body .sct .detail dl {
	margin-bottom: 1.8em;
}

.modal_wrap .modal_cnt .modal_body .sct .detail dl dt {
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.4;
	border-left: 5px solid #000;
	padding-left: 10px;
}

.modal_wrap .modal_cnt .modal_body .sct .detail dl dt a {
	display: block;
	position: relative;
	padding-right: 20px;
}

.modal_wrap .modal_cnt .modal_body .sct .detail dl dt a::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 5px;
	margin: auto 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
}

.modal_wrap .modal_cnt .modal_body .sct .detail dl dd {
}

.modal_wrap .modal_cnt .modal_body .sct .detail dl dd a {
}

.modal_wrap .modal_cnt .modal_body .sct .detail .caution {
	font-size: 1.2rem;
	opacity: 0.7;
}

.modal_wrap .modal_cnt .modal_body .sct .detail .note {
	font-size: 1.3rem;
	opacity: 0.7;
}

.modal_wrap .modal_cnt .modal_body .sct .detail .btn_signup {
	padding: 30px 0;
}

.modal_wrap .modal_cnt .modal_body .sct .detail .btn_signup a {
	border: 2px solid #000;
	border-radius: 50px;
	display: block;
	width: 260px;
	position: relative;
	margin: 0 auto;
	padding: 8px;
	background: #000;
	color: #fff;
}

.modal_wrap .modal_cnt .modal_body .sct .detail .btn_signup a span {
	font-weight: 700;
	line-height: 1.2;
	display: block;
	font-size: 1.6rem;
	text-align: center;
}


/* =========================================================
LOGIN-LOGOUT
========================================================= */
#area_user {
}

#area_user.area {
}

/* loginArea
------------------------------ */
#loginArea {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

#loginArea .border_box {
	padding: 15px 3% 20px;
}

#loginArea .border_box .box_ttl {
	display: none;
}

#loginArea ul.btn_set {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
	flex-direction: row;
}

#loginArea ul.btn_set li {
	width: 48%;
}

#loginArea ul.btn_set li:first-child {
}

@media screen and (min-width: 1001px) {
#loginArea {
}

#loginArea .border_box {
	padding: 25px 5% 30px;
}

#loginArea .border_box .box_ttl {
	border-bottom: 2px solid #000;
	padding-bottom: 15px;
	margin-bottom: 20px;
	text-align: center;
	display: block;
}

#loginArea ul.btn_set {
	display: block;
}

#loginArea ul.btn_set li {
		width: 100%;
}

#loginArea ul.btn_set li:first-child {
}
}

/* login_modal_wrap
------------------------------ */
#login_modal_wrap.modal_wrap {
}

#login_modal_wrap.modal_wrap h3.caption {
	font-weight: 700;
	font-size: 1.4rem;
	margin-bottom: 5px;
}

#login_modal_wrap.modal_wrap .trigger {
	border: 2px solid #000;
	border-radius: 50px;
	display: block;
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 8px;
	background: #000;
	color: #fff;
}

#login_modal_wrap.modal_wrap .trigger::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D%22%23fff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2232%22%20viewBox%3D%220%200%2020%2032%22%3E%3Cpath%20d%3D%22M5.333%2032v-3.556h10.667v-24.888h-10.667v-3.556h14.223v32zM8.148%2016l-8.148%208.889v-5.389l3.209-3.5-3.209-3.5v-5.389l5.678%206.2z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto 0;
}

#login_modal_wrap.modal_wrap .trigger span {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1;
	display: block;
	font-size: 1.6rem;
	text-align: center;
	transform: translate(-3px, 2px);
}

#login_modal_wrap.modal_wrap .window_bg {
}

#login_modal_wrap.modal_wrap .modal_bg {
	max-width: 420px;
	height: 420px;
	padding: 15px 0 0;
}

/**/
#login_modal_wrap.modal_wrap .window_bg.modal_open {
}

#login_modal_wrap.modal_wrap .modal_bg.modal_open {
}
/**/

#login_modal_wrap.modal_wrap .modal_bg .close {
}

#login_modal_wrap.modal_wrap .modal_bg .close:hover {
}

#login_modal_wrap.modal_wrap  .modal_bg .close::before,
#login_modal_wrap.modal_wrap .modal_bg .close::after {
}

#login_modal_wrap.modal_wrap .modal_bg .close::before {
}

#login_modal_wrap.modal_wrap .modal_bg .close::after {
}

#login_modal_wrap.modal_wrap .modal_cnt {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl {
	height: 60px;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .ttl_set {
	/*! height: 100px; */
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	text-align: left;
	padding: 0 4%;
	margin: 0 auto;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .illust {
	width: 38px;
	margin-right: 15px;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .illust .svg_style {
	display: block;
	width: 100%;
	height: auto;
	/*! transform: translateY(-3px); */
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group {
	width: calc(100% - 65px);
	line-height: 1;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .svg_style {
	display: block;
	width: 100%;
	height: auto;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .logo {
	display: inline-block;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .logo .svg_style {
	width: 60px;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .catch {
	margin-top: 3px;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .catch .svg_style {
	width: 180px;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_body {
	height: calc(100% - 60px);
	padding: 20px 5% 0;
}

@media screen and (min-width: 901px) and (max-width: 1000px) {
#login_modal_wrap.modal_wrap .modal_bg {
	transition: none;
}
}

@media screen and (min-width: 1001px) {
#login_modal_wrap.modal_wrap {
}

#login_modal_wrap.modal_wrap h3.caption {
	display: none;
}

#login_modal_wrap.modal_wrap .trigger {
	display: none;
}

#login_modal_wrap.modal_wrap .trigger::after {
}

#login_modal_wrap.modal_wrap .trigger span {
}

#login_modal_wrap.modal_wrap .window_bg {
	display: none;
}

#login_modal_wrap.modal_wrap .modal_bg {
	position: relative;
	width: 100%;
	height: auto;
	border-radius: 0;
	border: none;
	padding: 0;
	box-shadow: none;
	transition: none;
	opacity: 1;
	transform: scale(1);
	visibility: visible;
	z-index: 1;
}

/**/
#login_modal_wrap.modal_wrap .window_bg.modal_open {
}

#login_modal_wrap.modal_wrap .modal_bg.modal_open {
}
/**/

#login_modal_wrap.modal_wrap .modal_bg .close {
	display: none;
}

#login_modal_wrap.modal_wrap .modal_bg .close:hover {
}

#login_modal_wrap.modal_wrap  .modal_bg .close::before,
#login_modal_wrap.modal_wrap .modal_bg .close::after {
}

#login_modal_wrap.modal_wrap .modal_bg .close::before {
}

#login_modal_wrap.modal_wrap .modal_bg .close::after {
}

#login_modal_wrap.modal_wrap .modal_cnt {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl {
	display: none;
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .ttl_set {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .illust {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .illust .svg_style {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .svg_style {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .logo {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .logo .svg_style {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .catch {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_ttl .group .catch .svg_style {
}

#login_modal_wrap.modal_wrap .modal_cnt .modal_body {
	/*! height: auto; */
	padding: 0;
	overflow: hidden;
	height: 380px;
}
}

/* social_login_wrap
------------------------------ */
#social_login_wrap {
	margin-bottom: 15px;
}

#social_login_wrap h3,
#login_form_wrap h3 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 8px;
	border-left: 5px solid #000;
	padding-left: 8px;
	margin-left: 4px;
}

#social_login_wrap .box {
	background: #f7f7f7;
	width: 100%;
	height: auto;
	padding: 12px;
	border-radius: 6px;
}

@media screen and (min-width: 1001px) {
#social_login_wrap {
	margin-bottom: 20px;
}

#social_login_wrap h3,
#login_form_wrap h3 {
	margin-bottom: 15px;
}

#social_login_wrap .box {
}
}

/* gigyaLoginUI
------------------------------ */
/* socialLoginUI
------------------------------ */
#socialLoginUI {
	margin: 0 auto;
	width: 100%;
	text-align:center;
}

#socialLoginUI li{
	margin: 0 2px;
	width: calc(90% / 6) !important;
	display:inline-block;
}

#socialLoginUI li img{
    width: 90%;
}

/* login_form_wrap
------------------------------ */
#login_form_wrap {
}

#login_form_wrap h3 {
}

#login_form_wrap form {
}

#login_form_wrap form input {
	border: 2px solid #000;
	width: 100%;
	border-radius: 6px;
	padding: 5px 10px;
	font-size: 1.6rem;
	line-height: 1.2;
}

#login_form_wrap form dl {
	margin-bottom: 10px;
}

#login_form_wrap form dl dt {
	font-size: 1.4rem;
	margin-bottom: 5px;
	line-height: 1.2;
	padding: 0 5px;
	letter-spacing: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#login_form_wrap form dl dt i {
	margin-left: 10px;
	font-size: 85%;
}

#login_form_wrap form dl dd {
}

#login_form_wrap form dl dd input {
}

#login_form_wrap form dl dt span {
}

#login_form_wrap form dl dt .reminder {
	margin-left: auto;
}

#login_form_wrap form dl dt .reminder a {
}

#login_form_wrap form dl dt .reminder a::before {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 5px;
	transform: translateY(2px);
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D%22%23000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M19.82%2013.367c0.328-0.955%200.517-2.055%200.517-3.2%200-5.613-4.551-10.164-10.164-10.164s-10.164%204.551-10.164%2010.164c0%205.613%204.551%2010.164%2010.164%2010.164%201.143%200%202.243-0.189%203.269-0.537l-0.072%200.021%202.315%202.315h4.924v4.925l0.008%200.008h4.925v4.919l0.010%200.013h6.448v-6.451zM8.052%2011.411c-1.894-0.001-3.43-1.536-3.43-3.431s1.536-3.431%203.431-3.431c1.895%200%203.43%201.536%203.431%203.43v0c0%200%200%200.001%200%200.001%200%201.895-1.536%203.431-3.431%203.431-0%200-0.001%200-0.001%200h0z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
}

#login_form_wrap form .btn_login {
	padding: 10px 0 30px;
}

#login_form_wrap form .btn_login a {
	border: 2px solid #000;
	border-radius: 50px;
	display: block;
	width: 220px;
	position: relative;
	margin: 0 auto;
	padding: 8px;
	background: #000;
	color: #fff;
}

#login_form_wrap form .btn_login a::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D%22%23fff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2232%22%20viewBox%3D%220%200%2020%2032%22%3E%3Cpath%20d%3D%22M5.333%2032v-3.556h10.667v-24.888h-10.667v-3.556h14.223v32zM8.148%2016l-8.148%208.889v-5.389l3.209-3.5-3.209-3.5v-5.389l5.678%206.2z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
}

#login_form_wrap form .btn_login a span {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1;
	display: block;
	font-size: 1.6rem;
	text-align: center;
	transform: translateY(2px);
}

@media screen and (min-width: 1001px) {
#login_form_wrap {
}

#login_form_wrap h3 {
}

#login_form_wrap form {
}

#login_form_wrap form input {
}

#login_form_wrap form dl {
}

#login_form_wrap form dl dt {
}

#login_form_wrap form dl dt i {
}

#login_form_wrap form dl dd {
}

#login_form_wrap form dl dd input {
}

#login_form_wrap form dl dt span {
}

#login_form_wrap form dl dt .reminder {
}

#login_form_wrap form dl dt .reminder a {
}

#login_form_wrap form dl dt .reminder a::before {
}

#login_form_wrap form .btn_login {
}

#login_form_wrap form .btn_login a {
}

#login_form_wrap form .btn_login a::after {
}

#login_form_wrap form .btn_login a span {
}
}

/* signup_wrap
------------------------------ */
#signup_wrap {
}

#signup_wrap h3.caption {
	letter-spacing: 0;
	font-weight: 700;
	font-size: 1.4rem;
	margin-bottom: 5px;
}

#signup_wrap h3.caption span {
	font-size: 85%;
}

#signup_wrap .btn_signup {
}

#signup_wrap .btn_signup a {
	border: 2px solid #000;
	border-radius: 50px;
	display: block;
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 8px;
	background: #d9f9f6;
	color: #000;
}

#signup_wrap .btn_signup a span {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1;
	display: block;
	font-size: 1.6rem;
	text-align: center;
	transform: translateY(2px);
}

@media screen and (min-width: 1001px) {
#signup_wrap {
	border-top: 2px solid #000;
	padding: 20px 0 0;
	margin: 15px 0 0;
}

#signup_wrap h3.caption {
	margin-bottom: 15px;
	border-left: 5px solid #000;
	padding-left: 8px;
	margin-left: 4px;
	text-align: left;
}

#signup_wrap .btn_signup {
}

#signup_wrap .btn_signup a {
	width: 220px;
}

#signup_wrap .btn_signup a span {
}
}

/* listenersStatus
------------------------------ */
#listenersStatus {
	width: 100%;
}

#listenersStatus .border_box {
}

#listenersStatus .border_box .box_ttl {
	border-bottom: 2px solid #000;
	padding-bottom: 15px;
	margin-bottom: 20px;
	text-align: center;
}

#listenersStatus form {
	margin-top: 15px;
}

#listenersStatus .border_box form input {
}

#listenersStatus .border_box form a {
	border: 2px solid #000;
	border-radius: 50px;
	display: block;
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 8px;
	background: #fff;
	color: #000;
	max-width: 320px;
}

#listenersStatus .border_box form a::after {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D%22%23000%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2232%22%20viewBox%3D%220%200%2020%2032%22%3E%3Cpath%20d%3D%22M16.862%2018.693l-6.195%206.2v-5.393l3.5-3.5-3.5-3.5v-5.387l8.889%208.887zM3.556%2028.444h10.666v3.556h-14.222v-32h14.222v3.556h-10.666z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto 0;
}

#listenersStatus .border_box form a span {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1;
	display: block;
	font-size: 1.6rem;
	text-align: center;
	transform: translateY(2px);
}

@media screen and (min-width: 1001px) {
#listenersStatus {
}

#listenersStatus .border_box {
	min-height: 340px;
}

#listenersStatus .border_box .box_ttl {
	margin-bottom: 30px;
}

#listenersStatus form {
}

#listenersStatus .border_box form input {
}

#listenersStatus .border_box form a {
}

#listenersStatus .border_box form a::after {
}

#listenersStatus .border_box form a span {
}
}

/* user_status_wrap
------------------------------ */
#user_status_wrap {
    margin-bottom: 16px;
}

/* challenge_status_wrap
------------------------------ */
#challenge_status_wrap {
	margin-top: 20px;
}

#gigyaUserStatus_container .gig-userStatus-nameAndPoints {
	width:168px;
	margin-top:0 !important;
}

@media screen and (min-width: 1001px) {
#challenge_status_wrap {
	margin-top: 15px;
}
}

/* collection_modal_wrap
------------------------------ */
#collection_modal_wrap.modal_wrap {
}

#collection_modal_wrap.modal_wrap a.trigger {
	border: 2px solid #000;
	border-radius: 50px;
	display: block;
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 8px;
	background: #000;
	color: #fff;
	max-width: 320px;
}

#collection_modal_wrap.modal_wrap a.trigger span {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0;
	line-height: 1;
	display: block;
	font-size: 1.6rem;
	text-align: center;
	transform: translateY(2px);
}

#collection_modal_wrap.modal_wrap .window_bg {
}

#collection_modal_wrap.modal_wrap .modal_bg {
	height: calc(65vh - 44px);
}

/**/
#collection_modal_wrap.modal_wrap .window_bg.modal_open {
}

#collection_modal_wrap.modal_wrap .modal_bg.modal_open {
}
/**/

#collection_modal_wrap.modal_wrap .modal_bg .close {
}

#collection_modal_wrap.modal_wrap .modal_bg .close:hover {
}

#collection_modal_wrap.modal_wrap .modal_bg .close::before,
#collection_modal_wrap.modal_wrap .modal_bg .close::after {
}

#collection_modal_wrap.modal_wrap .modal_bg .close::before {
}

#collection_modal_wrap.modal_wrap .modal_bg .close::after {
}

#collection_modal_wrap.modal_wrap .modal_cnt {
}

#collection_modal_wrap.modal_wrap .modal_cnt .modal_ttl {
	text-align: left;
	font-size: 1.8rem;
	padding-left: 15px;
}

#collection_modal_wrap.modal_wrap .modal_cnt .modal_body {
}

/* gigyaUserStatus
------------------------------ */
#gigyaUserStatus {
	width: 100% !important;
}

#gigyaUserStatus_container {
	padding: 0;
	border: none;
}

#gigyaUserStatus_container div {
}

#gigyaUserStatus_container .gig-userStatus-userPhoto-container {
}

#gigyaUserStatus_container .gig-userStatus-userPhoto {
	padding: 0;
	border-radius: 8px;
}

#gigyaUserStatus_container .gig-userStatus-nameAndPoints {
	width:122px;
	margin-top:0 !important;
}

#gigyaUserStatus_container .gig-userStatus-nameAndPoints .gig-userStatus-progress {
}

#gigyaUserStatus_container .gig-userStatus-nameAndPoints .gig-userStatus-progress-fill {
}

#gigyaUserStatus_container .gig-userStatus-nameAndPoints .gig-userStatus-progress-percent {
}

#gigyaUserStatus_container .gig-userStatus-name {
}

#gigyaUserStatus_points {
	color: #333;
	font-weight: bold;
}

#gigyaUserStatus_points .gig-userStatus-pointsValue {
	font-size: 1.2em;
	color: #333;
	display: inline-block;
	margin-right: 4px;
}

#gigyaUserStatus_userPhoto {
	margin-left: 0 !important;
}

#gigyaUserStatus_settingsLink {
	font-family: Lato, "游ゴシック", YuGothic, "Yu Gothic", "Custom Yu Gothic", sans-serif;
	font-size: 1.3rem;
	margin-top: 5px;
	display: inline-block;
	text-decoration: underline;
}

#gigyaUserStatus_settingsLink:hover {
	text-decoration: none;
}

#gigyaUserStatus_badge {
	width: 45px;
}

#gigyaUserStatus_badge .gig-userStatus-levelTitle {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0;
	text-transform: uppercase;
	margin-top: 2px;
	font-size: 0.8rem;
}

#gigyaUserStatus_badgeImg {
	padding-bottom: 0;
}

/* gigyaChallengeStatus
------------------------------ */
#gigyaChallengeStatus {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#gigyaChallengeStatus > div {
	font-family: Lato, "游ゴシック", YuGothic, "Yu Gothic", "Custom Yu Gothic", sans-serif;
	font-size: 1.2rem !important;
	min-width: 80px;
	width: calc(100% / 3) !important;
	padding: 0 10px;
	margin-bottom: 15px;
}

#gigyaChallengeStatus > div > img {
}

@media screen and (min-width: 421px) {
#gigyaChallengeStatus > div {
	width: calc(100% / 4) !important;
}
}

@media screen and (min-width: 641px) {
#gigyaChallengeStatus > div {
	width: calc(100% / 5) !important;
}
}

@media screen and (min-width: 801px) {
#gigyaChallengeStatus > div {
	width: calc(100% / 6) !important;
}
}

/* jlc_links
------------------------------ */
#jlc_links {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#jlc_links .btn {
}

#jlc_links .btn:nth-of-type(1) {
	width: 165px;
}

#jlc_links .btn:nth-of-type(2) {
	width: 130px;
}

#jlc_links .btn a {
	display: block;
}

#jlc_links .btn a .icon {
}

#jlc_links .btn a .icon .svg_style {
	display: block;
	width: auto;
	height: 22px;
	margin: 0 auto;
}

#jlc_links .btn a .txt {
	font-weight: bold;
	font-size: 1.4rem;
	line-height: 1.2;
	letter-spacing: 0;
	margin-top: 10px;
	display: inline-block;
	padding-right: 16px;
	position: relative;
}

#jlc_links .btn a .txt::after {
	content: "";
		position: absolute;
	top: 0;
	bottom: 0;
	right: 3px;
	margin: auto 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
}

#jlc_links .btn a .txt span {
}

#jlc_links .btn a .txt span i {
}


/* =========================================================
WHAT IS J-me
========================================================= */
#area_whatis.area {
	background: url("../img/hdr_visual.jpg") no-repeat center center;
	background-size: cover;
	/*border-radius: 8px;
	width: 94%;*/
	padding: 30px 3%;
	margin-bottom: 40px;
}

#area_whatis .area_innner {
}

#area_whatis .comment {
	color: #fff;
	font-size: 1.6rem;
	margin-bottom: 20px;
}

#area_whatis .comment p {
	line-height: 2;
}

#area_whatis .comment p strong {
	display: inline-block;
	margin-bottom: 10px;
}

#area_whatis .comment p em {
	font-weight: 700;
	font-size: 110%;
	display: inline-block;
	margin: 0 3px;
}

#area_whatis .comment .svg_style {
	margin-right: 3px;
}

#area_whatis .comment em {
}

/* whatis_modal_wrap
------------------------------ */
#whatis_modal_wrap.modal_wrap {
}

#whatis_modal_wrap.modal_wrap .trigger {
	border: 2px solid #fff;
	border-radius: 50px;
	width: 260px;
	height: 56px;
	position: relative;
	margin: 0 auto;
	padding: 8px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

#whatis_modal_wrap.modal_wrap .trigger::after {
}

#whatis_modal_wrap.modal_wrap .trigger span {
	color: #fff;
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1;
	font-size: 1.8rem;
	transform: translateY(2px);
	display: block;
}

#whatis_modal_wrap.modal_wrap .window_bg {
}

#whatis_modal_wrap.modal_wrap .modal_bg {
}

/**/
#whatis_modal_wrap.modal_wrap .window_bg.modal_open {
}

#whatis_modal_wrap.modal_wrap .modal_bg.modal_open {
}
/**/

#whatis_modal_wrap.modal_wrap .modal_bg .close {
}

#whatis_modal_wrap.modal_wrap .modal_bg .close:hover {
}

#whatis_modal_wrap.modal_wrap  .modal_bg .close::before,
#whatis_modal_wrap.modal_wrap .modal_bg .close::after {
}

#whatis_modal_wrap.modal_wrap .modal_bg .close::before {
}

#whatis_modal_wrap.modal_wrap .modal_bg .close::after {
}

#whatis_modal_wrap.modal_wrap .modal_cnt {
}

#whatis_modal_wrap.modal_wrap .modal_cnt .modal_ttl {
}

#whatis_modal_wrap.modal_wrap .modal_cnt .modal_body {
}

/* howto_modal_wrap
------------------------------ */
#howto_modal_wrap.modal_wrap {
	margin-top: 20px;
}

#howto_modal_wrap.modal_wrap .trigger {
	border: 2px solid #fff;
	border-radius: 50px;
	width: 260px;
	height: 56px;
	position: relative;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

#howto_modal_wrap.modal_wrap .trigger::before {
	content: "";
	display: inline-block;
	width: 26px;
	height: 26px;
	margin-right: 8px;
	transform: translateY(-1px);
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20fill%3D%22%23fff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cpath%20d%3D%22M22.489%2019.581h-1.389v2.8h1.389c0.027%200.002%200.059%200.003%200.091%200.003%200.796%200%201.447-0.617%201.503-1.398l0-0.005c-0.056-0.786-0.707-1.403-1.502-1.403-0.032%200-0.064%200.001-0.096%200.003l0.004-0zM22.173%2011.862c-5.561%200-10.069%204.508-10.069%2010.069s4.508%2010.069%2010.069%2010.069c5.561%200%2010.069-4.508%2010.069-10.069v0c-0.001-5.561-4.508-10.068-10.069-10.069h-0zM22.489%2023.931h-1.389v2.034c0%200%200%200%200%200%200%200.391-0.317%200.708-0.708%200.709h-0.355c0%200%200%200%200%200-0.391%200-0.708-0.317-0.708-0.708%200-0%200-0.001%200-0.001v0-7.23c0%200%200%200%200%200%200-0.39%200.317-0.707%200.707-0.707%200%200%200.001%200%200.001%200h2.452c0.058-0.004%200.125-0.006%200.193-0.006%201.678%200%203.052%201.299%203.173%202.945l0.001%200.010c-0.121%201.659-1.497%202.959-3.176%202.959-0.067%200-0.134-0.002-0.2-0.006l0.009%200zM8.178%206.963c4.517%200%208.177-1.558%208.177-3.482s-3.655-3.481-8.177-3.481-8.178%201.559-8.178%203.481%203.661%203.482%208.178%203.482zM8.178%2012.857c4.517%200%208.177-1.558%208.177-3.481v-0.866c-0-0.437-0.354-0.791-0.791-0.791-0.112%200-0.218%200.023-0.314%200.065l0.005-0.002c-1.909%201.001-4.17%201.589-6.569%201.589-0.178%200-0.355-0.003-0.532-0.010l0.026%200.001c-0.153%200.006-0.332%200.009-0.513%200.009-2.398%200-4.659-0.588-6.647-1.627l0.079%200.038c-0.091-0.039-0.197-0.062-0.308-0.062-0.437%200-0.791%200.354-0.792%200.79v0.866c0%201.924%203.661%203.481%208.178%203.481zM8.178%2015.457c-0.148%200.005-0.322%200.009-0.497%200.009-2.403%200-4.669-0.59-6.66-1.632l0.079%200.038c-0.091-0.040-0.197-0.063-0.309-0.063-0.437%200-0.791%200.354-0.791%200.791%200%200%200%200.001%200%200.001v-0%200.86c0%201.925%203.662%203.485%208.175%203.485%200.4%200%200.793-0.011%201.178-0.037%200.327-1.38%200.831-2.596%201.499-3.704l-0.032%200.058c-0.79%200.121-1.701%200.19-2.629%200.19-0.005%200-0.011%200-0.016%200h0.001zM8.178%2021.545c-0.148%200.005-0.322%200.009-0.497%200.009-2.403%200-4.669-0.59-6.66-1.632l0.079%200.038c-0.091-0.040-0.198-0.063-0.31-0.063-0.436%200-0.79%200.354-0.79%200.79%200%200.001%200%200.002%200%200.004v-0%200.866c0%201.92%203.662%203.481%208.175%203.481%200.4%200%200.8-0.011%201.189-0.038-0.231-0.916-0.364-1.967-0.364-3.049%200-0.006%200-0.012%200-0.019v0.001c0-0.136%200-0.271%200.010-0.407-0.271%200.011-0.547%200.016-0.834%200.016zM8.178%2027.632c-0.148%200.005-0.322%200.009-0.497%200.009-2.403%200-4.669-0.589-6.66-1.631l0.079%200.038c-0.091-0.040-0.197-0.063-0.309-0.063-0.437%200-0.791%200.354-0.791%200.791%200%200.001%200%200.001%200%200.002v-0%200.866c0%201.92%203.662%203.48%208.175%203.48%200.036%200%200.079%200%200.122%200%201.421%200%202.802-0.175%204.12-0.505l-0.117%200.025c-0.803-0.902-1.491-1.933-2.026-3.051l-0.034-0.079c-0.608%200.073-1.313%200.114-2.027%200.114-0.013%200-0.026%200-0.040-0h0.002z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
}

#howto_modal_wrap.modal_wrap .trigger span {
	color: #fff;
}

#howto_modal_wrap.modal_wrap .trigger span em {
	display: block;
	line-height: 1;
}

#howto_modal_wrap.modal_wrap .trigger span em.en {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0;
	font-size: 1.6rem;
}

#howto_modal_wrap.modal_wrap .trigger span em.jp {
	font-size: 1.3rem;
	font-weight: 700;
}

#howto_modal_wrap.modal_wrap .window_bg {
}

#howto_modal_wrap.modal_wrap .modal_bg {
}

/**/
#howto_modal_wrap.modal_wrap .window_bg.modal_open {
}

#howto_modal_wrap.modal_wrap .modal_bg.modal_open {
}
/**/

#howto_modal_wrap.modal_wrap .modal_bg .close {
}

#howto_modal_wrap.modal_wrap .modal_bg .close:hover {
}

#howto_modal_wrap.modal_wrap  .modal_bg .close::before,
#howto_modal_wrap.modal_wrap .modal_bg .close::after {
}

#howto_modal_wrap.modal_wrap .modal_bg .close::before {
}

#howto_modal_wrap.modal_wrap .modal_bg .close::after {
}

#howto_modal_wrap.modal_wrap .modal_cnt {
}

#howto_modal_wrap.modal_wrap .modal_cnt .modal_ttl {
}

#howto_modal_wrap.modal_wrap .modal_cnt .modal_body {
}

@media screen and (min-width: 1001px) {
	#area_whatis.area {
		position: relative;
		height: 340px;
		width: calc(100% - 330px);
		border-radius: 8px;
		padding: 30px 0 !important;
		margin-bottom: 30px;
	}
	
	#area_whatis.area::before {
		content: "";
		display: block;
		width: 50%;
		height: 100%;
		position: absolute;
		left: 0;
		bottom: 0;
		background-repeat: no-repeat;
		background-position: left 60% bottom -18px;
		background-size: 260px auto;
		background-image: url("../img/common/pct_jme.svg");
	}
	
	#area_whatis .area_innner {
		text-align: left;
		width: 50%;
		margin-left: 50%;
	}

	#area_whatis .comment {
	}

	#area_whatis .comment p {
	line-height: 1.8;
	}

	#area_whatis .comment p strong {
	margin-bottom: 2px;
	}

	#area_whatis .comment p em {
	}

	#area_whatis .comment .svg_style {
	}

	#area_whatis .comment em {
	}
	
	#whatis_modal_wrap.modal_wrap .trigger {
	margin-left: 0;
	}

	#howto_modal_wrap.modal_wrap .trigger {
	margin-left: 0;
	}
}


/* =========================================================
PRESENT EVENT
========================================================= */
#area_present_event.area {
}

#area_present_event h2 {
}

#area_present_event .article_list {
}

#area_present_event .article_list li {
	max-width: 480px;
	margin: 0 auto;
}

#area_present_event .article_list li:not(:last-child) {
	margin-bottom: 40px;
}

/**/
#area_present_event .article_list li a {
}

#area_present_event .article_list li a .thumb {
	overflow: hidden;
	border-radius: 8px;
	margin-bottom: 10px;
	border: 1px solid #f2f2f2;
}

#area_present_event .article_list li a .thumb img {
	transition: all 0.4s ease-out 0s;
}

#area_present_event .article_list li a .txt {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	padding: 0 8px;
	font-size: 1.5rem;
	text-align: left;
	font-weight: 700;
}

#area_present_event .article_list li a .txt p {
	margin: 0;
	width: calc(100% - 100px);
	word-break: break-all;
	overflow-wrap: break-word;
}

#area_present_event .article_list li a .txt .btn {
	border: 2px solid #000;
	border-radius: 50px;
	background: #000;
	color: #fff;
	text-align: center;
	width: 80px;
	font-weight: 700;
	font-size: 1.4rem;
	transition: all 0.4s ease-out 0s;
	position: relative;
	padding: 0 10px 0 0;
}

#area_present_event .article_list li a .txt .btn::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	transition: all 0.4s ease-out 0s;
}

#area_present_event .article_list li a:hover {
	opacity: 1;
}

#area_present_event .article_list li a:hover .thumb {
}

#area_present_event .article_list li a:hover .thumb img {
	transform: scale(1.05);
}

#area_present_event .article_list li a:hover .txt {
}

#area_present_event .article_list li a:hover .txt p {
}

#area_present_event .article_list li a:hover .txt .btn {
	opacity: 0.6;
}
/* // */


#area_present_event .article_list .info {
}

#area_present_event .article_list .info a {
}

#area_present_event .article_list .info a .thumb {

}

#area_present_event .article_list .info a .thumb img {
}

#area_present_event .article_list .info a .txt {
}

#area_present_event .article_list .info a .txt p {
}

#area_present_event .article_list .info a .txt .btn {
	background: #fff;
	color: #000;
}

#area_present_event .article_list .info a .txt .btn::after {
	border-top: 2px solid #000;
	border-right: 2px solid #000;
}

/**/
#area_present_event .article_list .apply {
}

#area_present_event .article_list .apply a {
}

#area_present_event .article_list .apply a .thumb {
}

#area_present_event .article_list .apply a .thumb img {
}

#area_present_event .article_list .apply a .txt {
}

#area_present_event .article_list .apply a .txt p {
}

#area_present_event .article_list .apply a .txt .btn {
}

@media screen and (min-width: 641px) {
#area_present_event.area {
	margin-bottom: 40px;
	padding-top: 20px;
}

#area_present_event h2 {
}

#area_present_event .article_list {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
}

#area_present_event .article_list li {
	width: calc(50% - 10px);
	margin: 0 0 40px;
}

#area_present_event .article_list li:not(:last-child) {
}

#area_present_event .article_list li:nth-of-type(2n-1) {
	margin-right: 20px !important;
}

/**/
#area_present_event .article_list li a {
}

#area_present_event .article_list li a .thumb {
}

#area_present_event .article_list li a .thumb img {
}

#area_present_event .article_list li a .txt {
}

#area_present_event .article_list li a .txt p {
}

#area_present_event .article_list li a .txt .btn {
}

#area_present_event .article_list li a:hover {
}

#area_present_event .article_list li a:hover .thumb {

}

#area_present_event .article_list li a:hover .thumb img {
}

#area_present_event .article_list li a:hover .txt {
}

#area_present_event .article_list li a:hover .txt p {
}

#area_present_event .article_list li a:hover .txt .btn {
}
/* // */


#area_present_event .article_list .info {
}

#area_present_event .article_list .info a {
}

#area_present_event .article_list .info a .thumb {
}

#area_present_event .article_list .info a .thumb img {
}

#area_present_event .article_list .info a .txt {
}

#area_present_event .article_list .info a .txt p {
}

#area_present_event .article_list .info a .txt .btn {
}

/**/
#area_present_event .article_list .apply {
}

#area_present_event .article_list .apply a {
}

#area_present_event .article_list .apply a .thumb {
}

#area_present_event .article_list .apply a .thumb img {
}

#area_present_event .article_list .apply a .txt {
}

#area_present_event .article_list .apply a .txt p {
}

#area_present_event .article_list .apply a .txt .btn {
}
}

/* =========================================================
SHARE
========================================================= */
#area_share.area {
	margin-bottom: 0;
}

#area_share .border_box {
	padding: 0;
	border: none;
}

#area_share .border_box h2.area_ttl {
}

#gigyaShare {
}

#jme-point-img,
#gigyaShare .gig-share-button {
	transition: all 0.4s ease-out 0s;
}

#jme-point-img:hover,
#gigyaShare .gig-share-button:hover {
	opacity: 0.6;
}

@media screen and (min-width: 1001px) {
#area_share.area {
	margin-bottom: 40px;
}

#area_share .border_box {
}

#area_share .border_box h2.area_ttl {
}

#gigyaShare {
}

#jme-point-img,
#gigyaShare .gig-share-button {
}

#jme-point-img:hover,
#gigyaShare .gig-share-button:hover {
}
}


/* =========================================================
SIDE BANNER
========================================================= */
#area_side_banner.area {
}

#area_side_banner .bnrs {
	/*! width: 100%; */
	/*! max-width: 480px; */
	/*! margin: 0 auto; */
}

#area_side_banner .bnrs li {
}

#area_side_banner .bnrs li:not(:last-child) {
	margin-bottom: 20px;
}

#area_side_banner .bnrs li a {
	display: block;
	overflow: hidden;
	border-radius: 8px;
	max-width: 480px;
	margin: 0 auto;
}

#area_side_banner .bnrs li.border a {
	border: 2px solid #000;
}

#area_side_banner .bnrs li a img {
}

/* ad_bnr
------------------------------ */
#ad_bnr {
	border-radius: 8px;
	max-width: 480px;
	margin: 0 auto 40px;
	background: #f7f7f7;
	padding: 25px 0;
}

/*#ad_bnr .code_insert {
	border: 1px solid #fff;
	width: 252px;
	height: 252px;
	margin: 0 auto;
}*/

#ad_bnr .code_insert {
	width: 250px;
	height: 250px;
	margin: 0 auto;
}


/* =========================================================
POINT RANKING
========================================================= */
#area_ranking.area {
	/*! width: 100%; */
}

#area_ranking .border_box {
	width: 94%;
	max-width: 480px;
	margin: 0 auto;
	padding: 30px 3% 10px;
}

#area_ranking .border_box .box_ttl {
	border-bottom: 2px solid #000;
	padding-bottom: 15px;
	margin-bottom: 30px;
	text-align: center;
}

#area_ranking .modal_wrap {
}

#area_ranking .modal_wrap .trigger {
	border: 2px solid #000;
	border-radius: 50px;
	width: 260px;
	position: relative;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	padding: 12px 20px 12px 25px;
}

#area_ranking .modal_wrap .trigger .icon {
	width: 40px;
}

#area_ranking .modal_wrap .trigger .icon .svg_style {
	width: 34px;
	height: auto;
	display: block;
}

#area_ranking .modal_wrap .trigger .txt {
	width: calc(100% - 40px);
}

#area_ranking .modal_wrap .trigger .txt em {
	display: block;
	line-height: 1;
}

#area_ranking .modal_wrap .trigger .txt em.en {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0;
	font-size: 2rem;
}

#area_ranking .modal_wrap .trigger .txt em.jp {
	font-size: 1.6rem;
	font-weight: 700;
}


@media screen and (min-width: 1001px) {
#area_ranking.area {
}

#area_ranking .border_box {
	width:100%;
	/*! max-width: 480px; */
	/*! margin: 0 auto 40px; */
	/*! padding: 30px 0; */
}

#area_ranking .border_box .box_ttl {
}

#area_ranking .modal_wrap {
}

#area_ranking .modal_wrap .trigger {
}

#area_ranking .modal_wrap .trigger .icon {
}

#area_ranking .modal_wrap .trigger .icon .svg_style {
}

#area_ranking .modal_wrap .trigger .txt {
}

#area_ranking .modal_wrap .trigger .txt em {
}

#area_ranking .modal_wrap .trigger .txt em.en {
}

#area_ranking .modal_wrap .trigger .txt em.jp {
}
}


/* #gigyaLeaderBoard
------------------------------ */
#ranking_wrap {
}

#ranking_wrap div#gigyaLeaderBoard {
	width: 100% !important;
	border: none;
	padding: 0;
	height: auto !important;
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard {
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-container {

}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-container {
	width: calc(100% / 3) !important;
	height: auto !important;
	margin: 0 0 10px 0 !important;
	padding: 0 5px;
	min-width: 80px;
	display: grid;
}

@media screen and (min-width: 421px) {
#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-container {
	width: calc(100% / 4) !important;
	display: grid;
}
}

@media screen and (min-width: 1001px) {
#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-container {
	width: calc(100% / 3) !important;
	display: grid;
}
}

#ranking_wrap div#gigyaLeaderBoard a.gig-leaderboard-topUser {
	padding: 0;
}

#ranking_wrap div#gigyaLeaderBoard a:hover.gig-leaderboard-topUser {
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-border {
	border: 1px solid #000;
	border-radius: 6px;
	margin-bottom: 6px;
	flex-direction: column;
	display: flex;
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-header {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	font-size: 1.2rem;
	margin: 0;
	background: #000;
	color: #fff;
	padding: 4px 0 0 2px;
	border-bottom: 1px solid #000;
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-container:nth-of-type(1) div.gig-leaderboard-topUser-header,
#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-container:nth-of-type(2) div.gig-leaderboard-topUser-header,
#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-container:nth-of-type(3) div.gig-leaderboard-topUser-header {
	background: #a8976b;
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-userPhoto {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	padding: 5px 0 2px;
	text-align: center !important;
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-userPhoto img {
	width: 48px !important;
	height: auto !important;
	margin: 0 auto !important;
	display: block;
	border-radius: 6px;
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-friendIcon-container {
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-top3Icon-container {
	margin-left: -7px;
	margin-top: -84px;
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-top3Icon-container div.gig-leaderboard-topUser-top3Icon {
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-name {
	font-family: Lato, "游ゴシック", YuGothic, "Yu Gothic", "Custom Yu Gothic", sans-serif;
	font-size: 1.2rem !important;
	letter-spacing: 0;
	width: 100%;
	display: inline-block;
	height: auto;
	overflow: visible;
}

#ranking_wrap div#gigyaLeaderBoard div.gig-leaderboard-topUser-point {
	font-family: "Ekster-Bold", sans-serif;
	font-size: 1.6rem !important;
	font-weight:bold;
	letter-spacing: 0;
	width: 100%;
	display: inline-block;
	height: auto;
	overflow: visible;
	margin-top: auto;
}


/* =========================================================
INFORMATION
========================================================= */
#area_info.area {
	background: #f8f8f8;
	padding: 50px 3% 60px; 
}

#area_info h2.area_ttl {
	/*! margin-bottom: 30px; */
}

#area_info .info_list {
	border-top: 1px solid #ccc;
	text-align: left;
	max-width: 640px;
	margin: 0 auto;
}

#area_info .info_list li {
	border-bottom: 1px solid #ccc;
	padding: 12px 0;
	line-height: 1.4;
	font-size: 1.4rem;
	letter-spacing: 0;
	overflow: hidden;
}

#area_info .info_list li a {
	display: block;
	padding: 0 30px 0 8px;
	position: relative;
	color: #000;
}

#area_info .info_list li a::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 8px;
	margin: auto 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
	transition: all 0.4s ease-out 0s;
}

#area_info .info_list li a:hover::after {
	right: 3px;
}

#area_info .info_list li:nth-child(n+11) {
	visibility: hidden;
	height: 0;
	opacity: 0;
	border-bottom: 0px solid #ccc;
	padding: 0;
	transition: all 0.8s linear 0s;
}

#area_info .info_list.info_list_open li:nth-child(n+11) {
	visibility: visible;
	height: auto;
	opacity: 1;
	border-bottom: 1px solid #ccc;
	padding: 12px 0;
}

#area_info .info_list li.info_list_more {
	border: 2px solid #000;
	border-radius: 50px;
	display: block;
	width: 220px;
	margin: 40px auto 0;
	overflow: hidden;
	padding: 0;
	visibility: visible;
	height: auto;
	opacity: 1;
	position: relative;
	z-index: 1;
}

#area_info .info_list.info_list_open li.info_list_more {
	border: 0px solid #000;
	border-radius: 50px;
	display: block;
	width: 220px;
	margin: 0 auto;
	overflow: hidden;
	padding: 0;
	visibility: hidden;
	height: 0;
	opacity: 0;
}

#area_info .info_list li.info_list_more a {
	padding: 8px;
	background: #000;
	color: #fff;
	display: block;
	width: 100%;
	position: relative;
	z-index: -1;
}

#area_info .info_list li.info_list_more a span {
	font-family: "Ekster-Bold", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	line-height: 1;
	display: block;
	font-size: 1.6rem;
	text-align: center;
	transform: translateY(2px);
}


@media screen and (min-width: 1001px) {
#area_info.area {
	width: calc(100% - 330px);
	border-radius: 8px;
}

#area_info h2.area_ttl {
}

#area_info .info_list {
	max-width: 800px;
}

#area_info .info_list li {
}

#area_info .info_list li a {
}

#area_info .info_list li a::after {
}

#area_info .info_list li a:hover::after {
}

#area_info .info_list_more {
}

#area_info .info_list_more a {
}

#area_info .info_list_more a span {
}
}


/* =========================================================
PROGRAMS
========================================================= */
#area_program.area {
	margin-bottom: 60px;
}

#area_program h2.area_ttl {
	margin-bottom: 10px;
}

#area_program .comment {
	margin-bottom: 30px;
	font-size: 1.4rem;
}

#area_program .comment p {
}

#area_program .program_list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	margin: 0 auto;
}

#area_program .program_list li {
	max-width: 212px;
}

#area_program .program_list li a {
	display: block;
	overflow: hidden;
	border: 1px solid #f2f2f2;
	border-radius: 8px;
}

#area_program .program_list li a img {
}

@media screen and (max-width: 480px) {
#area_program .program_list {
	max-width: 440px;
}

#area_program .program_list li {
	width: 48.5%;
	margin-bottom: 3%;
}

#area_program .program_list li:nth-of-type(2n-1) {
	margin-right: 3%;
}
}


@media screen and (min-width: 481px) and (max-width: 720px) {
	#area_program .program_list {
		max-width: 677px;
	}

	#area_program .program_list li {
		width: calc(100% / 3 - 2%);
		margin-right: 3%;
		margin-bottom: 3%;
	}

	#area_program .program_list li:nth-of-type(3n) {
		margin-right: 0;
	}
}

@media screen and (min-width: 721px) and (max-width: 1000px) {
	#area_program .program_list {
		max-width: 928px;
	}

	#area_program .program_list li {
		width: calc(100% / 4 - 2.1%);
		margin-right: 2.8%;
		margin-bottom: 2.8%;
	}

	#area_program .program_list li:nth-of-type(4n) {
		margin-right: 0;
	}
}

@media screen and (min-width: 1001px) and (max-width: 1100px) {
	#area_program .program_list {
		max-width: 677px;
	}

	#area_program .program_list li {
		width: calc(100% / 3 - 2%);
		margin-right: 3%;
		margin-bottom: 3%;
	}

	#area_program .program_list li:nth-of-type(3n) {
		margin-right: 0;
	}
}

@media screen and (min-width: 1101px) {
	#area_program .program_list {
		max-width: 928px;
	}

	#area_program .program_list li {
		width: calc(100% / 4 - 2.1%);
		margin-right: 2.8%;
		margin-bottom: 2.8%;
	}

	#area_program .program_list li:nth-of-type(4n) {
		margin-right: 0;
	}
}


/* ------------------------------------------------------------
	20210201 シェアボタン改定
------------------------------------------------------------ */

ul.jme_share li{
	list-style: none;
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}


/* ------------------------------------------------------------
	20230428 Listenplus
------------------------------------------------------------ */
.listenplus_udata {
  cursor: pointer;
  color: #999999;
  background-color: #F0F0F0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 10px 15px 10px 0px;
  letter-spacing: 0px;
  line-height: 1.4;
  background-image: url(/jlc/asset/img/common/r-arrow.svg);
  background-size: auto 20%;
  background-position: calc(100% - 3px) center;
  background-repeat: no-repeat;
}
.listenplus_udata.not_logged_in {
  cursor: unset;
  background-image: none;
  background-color: #BFEAFF;
  padding: 10px 10px 10px 0px;
}

.listenplus_udata a {
  display: block;
  color: unset;
}
.listenplus_udata dl {
  width: 64%;
  background-color: #fff;
  border-radius: 8px;
}
.listenplus_udata_logo {
  width: 35%;
  text-align: center;
  display: block;
}
.not_logged_in .listenplus_udata_logo{
  width: 45%;
}
.listenplus_udata dt {
  color: #fff;
  font-size: 14px;
  padding: 3px 3px;
  background-color: #000;
  border-radius: 10px 10px 0px 0px;
}
.listenplus_udata dd {
  text-align: right;
  font-size: 11px;
  letter-spacing: -1px;
  background-image: url(/jlc/asset/img/common/ico_listenplus_clock.svg);
  background-size: auto 70%;
  background-position: 6% center;
  background-repeat: no-repeat;
  padding-right: 5px;
  line-height: 1.6;
}


.listenplus_udata_logo img {
  max-width: 80%;
}
.listenplus_udata_hours {
  color: #0091F0;
  font-weight: bold;
  font-size: 30px;
  display: inline-block;
  margin: 0 3px 0 0;
}

@media screen and (min-width: 1101px) {
	.listenplus_udata dd {
	  background-size: auto 60%;
	  background-position: 4% center;
	}

	.listenplus_udata_hours {
	  font-size: 28px;
	}
}

.listenplus_udata_minutes {
  color: #0091F0;
  font-weight: bold;
  font-size: 28px;
  display: inline-block;
  margin: 0 3px 0 3px;
}
.listenplus_join {
  width: 60%;
}
.listenplus_join img {
  max-width: 100%;
}

