@charset "utf-8";
/*-----------------------------------------------
 * Loading
 * visualArea
 * Topics
 * Archices
 * Aside
 * particle
 * infoLists
 * InfoModal
-------------------------------------------------*/

/*-----------------------------------------------
 * Loading
-------------------------------------------------*/
#loading {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10000;
	backdrop-filter: blur(30px);
	transition: .8s ease-in-out;
}

#loading.js-load {
	backdrop-filter: blur(0px);
}

#load {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	transition: .3s ease-in-out;
	opacity: 1;
	overflow: hidden;
}

#load_t {
	position: absolute;
	transition: 0.5s ease-in-out;
	width: 100%;
	height: 200%;
	bottom: 49%;
	left: 0;
	background-color: rgb(var(--main-color));
	background-image: url(../img/common/bg_ptn2.png);
	background-repeat: repeat;
	transform: skewY(336deg);
	transition: .8s ease-in-out;
	overflow: hidden;
}

#load_t.js-load {
	bottom: 300%;
}

#load_b {
	position: absolute;
	transition: 0.5s ease-in-out;
	width: 100%;
	height: 200%;
	top: 49%;
	left: 0;
	transform: skewY(336deg);
	transition: .8s ease-in-out;
	overflow: hidden;
}

#load_b.js-load {
	top: 300%;
}

#load_b::before {
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	top: 0;
	right: 0;
	background: rgba(255, 255, 255, .2);
	z-index: 10;
}

#load_b::after {
	content: "";
	height: 2px;
	position: absolute;
	top: 0;
	right: 0;
	background: rgb(var(--main-color-dark-gold));
	transition: .4s ease-in-out;
	animation: loadbarAni 1.2s linear;
	animation-fill-mode: forwards;
	z-index: 11;
}

.load_bg {
	position: absolute;
	width: 100%;
	height: 200%;
	background-color: rgb(var(--main-color));
	background-image: url(../img/common/bg_ptn2.png);
	background-repeat: repeat;
}

#load_t .load_bg {
	transform: skewY(-336deg);
	top: 0;
	left: 0;
}

#load_b .load_bg {
	transform: skewY(-336deg);
	bottom: 0;
	right: 0;
}

@keyframes loadbarAni {
	0% {
		width: 0%;
	}

	20% {
		width: 10%;
	}

	30% {
		width: 40%;
	}

	50% {
		width: 40%;
	}

	60% {
		width: 60%;
	}

	80% {
		width: 85%;
	}

	100% {
		width: 90%;
	}
}

#load_b.js-loadfin::after {
	width: 100%;
	animation-fill-mode: none;
}

/*-----------------------------------------------
 * visualArea
-------------------------------------------------*/
/**
 * flex
 */
.visualArea__flex {
	display: flex;
	flex-direction: row-reverse;
}

@media screen and (max-width:767px) {
	.visualArea__flex {
		flex-direction: column;
	}
}

/* left */
.visualArea__left {
	width: 100%;
	overflow: hidden;
	position: relative;
}

@media screen and (max-width:767px) {
	.visualArea__left {
		width: 100%;
		order: 1;
	}
}

/* right */
.visualArea__right {
	width: 100%;
	position: relative;
}

@media screen and (max-width:767px) {
	.visualArea__right {
		width: 100%;
		order: 2;
	}
}

/* sakura sp */
@media screen and (max-width:767px) {
	.visualArea__right {
		overflow: hidden;
	}

	.visualArea__right:before {
		content: "";
		background: url(../img/common/sakura_ue.png) no-repeat 0 0 / 100%;
		width: 150px;
		height: 122px;
		position: absolute;
		top: 56px;
		right: -10px;
	}
}

/* imgWrap */
.visualArea__imgWrap img {
	width: 100%;
}

/* ifWrap */
.visualArea__ifWrap {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	pointer-events: none;
	z-index: 0;
}

@media screen and (max-width:767px) {
	.visualArea__ifWrap {
		position: absolute;
		top: 0;
		left: 0;
	}
}

.visualArea__ifWrap iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* link */
.visualArea__link {
	background-color: rgba(0, 0, 0, .4);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: 1;
	text-decoration: none;
	transition: background-color .4s ease;
}

.visualArea__link:hover {
	background-color: transparent;
}

/* inner */
.visualArea__link__inner {
	color: rgb(var(--main-color-white));
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* arrow */
.visualArea__link__inner:before {
	content: '';
	display: block;
	width: 32px;
	height: 66px;
	background: url(../img/common/arrow_next.svg) no-repeat 0 0 / 100%;
	margin-right: 10px;
	transition: transform .4s ease;
}

.visualArea__link:hover .visualArea__link__inner:before {
	transform: translateX(10px);
}

/* right__inner */
.visualArea__right__inner {
	width: 100%;
	padding: 80px 0 40px;
}

@media screen and (max-width:767px) {
	.visualArea__right__inner {
		padding: 0;
	}
}

/* title */
.visualArea__title {
	background: url(../img/common/logo.png) no-repeat 0 0 / 100%;
	width: 650px;
	height: 381px;
	margin: 0 auto 60px;
}

@media screen and (max-width:767px) {
	.visualArea__title {
		width: 300px;
		height: 178px;
		margin: 0 auto 40px;
	}
}

/* topCatch--br */
.topCatch--br {
	margin-right: 26px;
}

@media screen and (max-width:767px) {
	.topCatch--br {
		display: block;
		margin-right: 0;
	}
}

/**
 * visualArea__catch
 */
.visualArea__catch {
	background-color: rgb(var(--main-color));
	color: rgb(var(--main-color-gold));
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	width: 100%;
	margin-top: 30px;
	padding: 4px 0;
	text-align: center;
}

@media screen and (max-width:767px) {
	.visualArea__catch {
		font-size: 20px;
		margin-top: 20px;
	}
}

/**
 * visualArea__dl
 */
.visualArea__dlWrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.visualArea__dl {
	/*display: flex;
	flex-direction: column;
	justify-content: center;*/
	margin-top: 40px;
}

/* item */
.visualArea__dl__item {
	display: flex !important;
	align-items: baseline;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.visualArea__dl__item:not(:first-child) {
	margin-top: 20px;
}

@media screen and (max-width:767px) {
	.visualArea__dl__item {
		display: block !important;
		font-size: 16px;
		padding: 0 20px;
	}
}

/* dt */
.visualArea__dl__dt {
	background-color: rgb(var(--main-color));
	color: rgb(var(--main-color-white));
	line-height: 1;
	margin-right: 10px;
	padding: 3px 10px;
	white-space: nowrap;
}

@media screen and (max-width:767px) {
	.visualArea__dl__dt {
		margin-right: 0;
		margin-bottom: 10px;
	}
}

/* hakumyulive__startLists */
.hakumyulive__startLists {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	margin-top: 40px;
	text-align: center;
}

.hakumyulive__startLists.is-start {
	font-size: 24px;
}

.hakumyulive__startLists>li:not(:first-child) {
	margin-top: 10px;
}

.hakumyulive__startLists>li.is-space {
	margin-top: 30px;
}

.hakumyulive__startLists:before {
	content: '';
	background-color: rgb(var(--main-color));
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: 100%;
	mask-size: 100%;
	-webkit-mask-image: url(../img/common/title_accent.svg);
	mask-image: url(../img/common/title_accent.svg);
	width: 72px;
	height: 32px;
	margin: 0 auto 30px;
}

@media screen and (max-width: 767px) {
	.hakumyulive__startLists {
		margin-top: 20px;
		font-size: 14px;
	}

	.hakumyulive__startLists.is-start {
		font-size: 16px;
	}

	.hakumyulive__startLists:before {
		width: 42px;
		height: 19px;
		margin: 0 auto 20px;
	}

	.hakumyulive__startLists>li:not(:first-child) {
		margin-top: 0.8em;
	}

	.hakumyulive__startLists>li.is-space {
		margin-top: 1.6em;
	}
}

.hakumyulive__startLists .font-min {
	font-size: 85%;
}

/**
 * visualArea__logo
 */
.visualArea__logo {
	width: 500px;
	margin: 100px auto 0;
}

.visualArea__logo img {
	width: 100%;
}

@media screen and (max-width:767px) {
	.visualArea__logo {
		width: 76%;
		margin: 30px auto 0;
	}
}


/*-----------------------------------------------
 * Topics
-------------------------------------------------*/
/**
 * topicsWrap
 */
.topicsWrap {
	display: flex;
	justify-content: space-between;
	width: var(--common-in-width);
	margin: 80px auto;
}

@media screen and (max-width:767px) {
	.topicsWrap {
		display: block;
		margin: 20px auto 60px;
	}
}

/* topicsOne */
.topicsOne {
	width: 590px;
}

@media screen and (max-width:767px) {
	.topicsOne {
		width: 100%;
		padding: 0 20px;
	}
}

/**
 * newsListsWrap
 */
.newsListsWrap {
	background-color: rgb(var(--main-color));
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 30px 0;
}

@media screen and (max-width:767px) {
	.newsListsWrap {
		margin: 20px 0;
	}
}

.newsLists {
	padding: 32px;
	height: 360px;
	overflow: hidden;
	overflow-y: scroll;
}

@media screen and (max-width:767px) {
	.newsLists {
		padding: 15px;
		height: 220px;
	}
}

/* item */
.newsLists__item {
	display: flex;
	color: rgb(var(--main-color-white));
	font-size: 18px;
	line-height: 1.6;
	width: 125%;
	transform: scale(0.8, 1);
	transform-origin: top left;
}

.newsLists__item:not(:first-child) {
	margin-top: 20px;
}

@media screen and (max-width:767px) {
	.newsLists__item {
		font-size: 12px;
	}

	.newsLists__item:not(:first-child) {
		margin-top: 16px;
	}
}

/* link */
.newsLists__link {
	display: flex;
	color: rgb(var(--main-color-white));
	text-decoration: none;
}

/* date */
.newsLists__date {
	color: rgb(var(--main-color-gold));
	padding-right: 20px;
}

/* ttl */
.newsLists__ttl {
	background: linear-gradient(transparent, #fff);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 0 1px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	transition: background-size .3s cubic-bezier(.25, 1, .5, 1);
}

.newsLists__link:hover .newsLists__ttl {
	background-position: left bottom;
	background-size: 100% 1px;
}

/**
 * twjWrap
 */
.twjWrap {
	/* background-color: #fff; */
	height: 360px;
	border: 10px solid rgb(var(--main-color));
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 30px 0;
	overflow-y: scroll;
	position: relative;
}

.twjWrap .twitter-timeline {
	width: 100%;
	height: 100%;
	position: absolute !important;
	top: 0;
}

@media screen and (max-width:767px) {
	.twjWrap {
		margin: 20px 0;
	}

	.twitter {
		margin-top: 40px;
	}
}


/*-----------------------------------------------
 * Archices
-------------------------------------------------*/
/**
 * archivesListsWrap
 */
.archivesListsWrap {
	width: var(--common-in-width);
	margin: 80px auto 0;
}

@media screen and (max-width:767px) {
	.archivesListsWrap {
		margin: 30px auto 0;
		padding: 0 20px;
	}
}

/* lists */
.archivesLists {
	display: flex;
	flex-wrap: wrap;
}

/* item */
.archivesLists__item {
	width: calc((100% - 40px) / 3);
	margin-bottom: 20px;
}

.archivesLists__item:not(:nth-child(3n + 1)) {
	margin-left: 20px;
}

@media screen and (max-width:767px) {
	.archivesLists__item {
		width: calc((100% - 12px) / 3);
		margin-bottom: 6px;
	}

	.archivesLists__item:not(:nth-child(3n + 1)) {
		margin-left: 6px;
	}
}

.archivesLists__item:nth-child(n + 4) {
	display: none;
}

/* a */
.archivesLists__item a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

/* img */
.archivesLists__imgWrap {
	width: 100%;
	overflow: hidden;
}

.archivesLists__imgWrap img {
	width: 100%;
	transition: transform .3s ease-in-out;
}

.archivesLists__item a:hover .archivesLists__imgWrap img {
	transform: scale(1.15);
}

/* text */
.archivesLists__text {
	/* color: rgb(var(--main-color)); */
	color: rgb(172, 161, 36);
	font-size: 14px;
	font-weight: 700;
	margin-top: 10px;
	text-decoration: none;
}

@media screen and (max-width:767px) {
	.archivesLists__text {
		font-size: 10px;
		margin-top: 2px;
	}
}


/*-----------------------------------------------
 * Aside
-------------------------------------------------*/
.topAside {
	margin: 80px 0 180px;
}

@media screen and (max-width:767px) {
	.topAside {
		margin: 60px 0 120px;
	}
}

/**
 * bnrLists
 */
.bnrLists {
	display: flex;
	flex-wrap: wrap;
	/* justify-content: center; */
	width: 620px;
	margin: 0 auto;
}

@media screen and (max-width:767px) {
	.bnrLists {
		width: 100%;
		padding: 0 20px;
	}
}

/* li */
.bnrLists>li {
	width: 300px;
	margin-bottom: 20px;
}

.bnrLists>li:not(:nth-child(2n + 1)) {
	margin-left: 20px;
}

@media screen and (max-width:767px) {
	.bnrLists>li {
		width: calc((100% - 12px) / 2);
		margin-bottom: 6px;
	}

	.bnrLists>li:not(:nth-child(2n + 1)) {
		margin-left: 6px;
	}

	.bnrLists>li img {
		width: 100%;
	}
}


/*-----------------------------
 * particle
------------------------------- */
#particleWrap {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9998;
	overflow: hidden;
	pointer-events: none;
	opacity: 1;
	-webkit-transition: .8s ease-in-out;
	transition: .8s ease-in-out;
}

#particleWrap.js-l04 {
	opacity: 0;
}

#particle {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	#bg_tl {
		width: 40%;
		height: auto;
		padding-top: 24.5334%;
		background-size: contain;
	}

	#bg_tr {
		width: 47.41667%;
		height: auto;
		padding-top: 6.8334%;
		background-size: contain;
	}

	#bg_bl {
		width: 59.334%;
		height: auto;
		padding-top: 15.334%;
		background-size: contain;
	}

	#bg_br {
		width: 42%;
		height: auto;
		padding-top: 30.1334%;
		background-size: contain;
		background-position: right bottom;
	}
}


/*-----------------------------------------------
 * infoLists
-------------------------------------------------*/
/**
 * .infoLists__item > a
 */
.infoLists__item>a {
	background-color: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-align: center;
	text-decoration: none;
	padding: 4px 0;
	font-size: 16px;
}

@media screen and (max-width: 767px) {
	.infoLists__item>a {
		font-size: 12px;
		padding: 8px 0;
	}
}

/* color */
.infoLists__item.is-darkred>a {
	background-color: rgb(var(--main-color-dark-red));
	color: #fff;
}

.infoLists__item.is-red>a {
	background-color: rgb(var(--main-color-red));
	color: #fff;
}

.infoLists__item.is-gold>a {
	background-color: rgb(var(--main-color-gold));
	color: #000;
}

.infoLists__item.is-green>a {
	background-color: rgb(var(--main-color));
	color: #fff;


}

.infoLists__item.is-black>a {
	background-color: rgb(var(--main-color-black-red));
	color: #fff;
}

@media screen and (min-width: 768px) {
	.infoLists__item.is-green>a {
		border-top: solid 1px rgb(var(--main-color-dark-gold));
	}
}

/**
 * infoLists__in
 */
.infoLists__in {
	position: relative;
}

.infoLists__in:after {
	content: "";
	background-color: #000;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: scaleX(0);
	transition: transform .3s ease;
}

.infoLists__item>a:hover .infoLists__in:after {
	transform: scaleX(100%);
}

/* color */
.infoLists__item.is-darkred .infoLists__in:after {
	background-color: #fff;
}

.infoLists__item.is-red .infoLists__in:after {
	background-color: #fff;
}

.infoLists__item.is-gold .infoLists__in:after {
	background-color: #000;
}

.infoLists__item.is-green .infoLists__in:after {
	background-color: #fff;
}

.infoLists__item.is-black .infoLists__in:after {
	background-color: #fff;
}


/*-----------------------------------------------
 * InfoModal
-------------------------------------------------*/
.newStage {
	width: 800px;
}

@media screen and (max-width: 767px) {
	.newStage {
		width: 100%;
	}
}

/* title */
.newStage__title {
	width: 600px;
	margin: 0 auto 30px;
}

.newStage__title img {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.newStage__title {
		width: 300px;
		margin: 0 auto 20px;
	}
}

/* start */
.newStage__start {
	font-size: 28px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
	.newStage__start {
		font-size: 18px;
		margin-bottom: 30px;
	}
}

/**
 * newStaffLists
 */

/* li */
.newStage__staffLists>li {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.newStage__staffLists>li {
		font-size: 16px;
	}

	.newStage__staffLists>li:not(:first-child) {
		margin-top: 10px;
	}
}

/* min */
.newStage__staffLists>li .font-min {
	font-size: 80%;
}

/* cast */
.newStage__staffLists>li.is-cast {
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.newStage__staffLists>li.is-cast {
		margin-top: 40px;
	}
}

/* youtube */
.newStage__youtube {
	margin-top: 60px;
	margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
	.newStage__youtube {
		margin-top: 40px;
		margin-bottom: 60px;
		padding: 0 24px;
	}
}

@media screen and (max-width: 767px) {
	.subcontSection:not(:first-of-type) {
		margin-top: 30px !important;
	}
}


/**
 * twitterBtn
 */
.twitterBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgb(var(--main-color));
	border-radius: 40px;
	width: 300px;
	height: 40px;
	color: #fff;
	font-size: 16px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
}

@media screen and (max-width:767px) {
	.twitterBtn {
		width: 200px;
		height: 36px;
		font-size: 12px;
	}
}

@media screen and (min-width:768px) {
	.footer:after {
		content: none !important;
	}
}


.topLogo {
	display: block;
	width: 103px;
}

.topLogo img {
	width: 100%;
}

#Top_overlay .oneModal {
	display: block !important;

}

#Top_overlay .oneModal .oneModalIn__cont {
	background: #fff url(../img/common/bg_ptn.jpg) repeat;
	-webkit-text-size-adjust: 100%;
	background-color: rgb(var(--main-color-white));
	width: 80%;

}

#Top_overlay .oneModal .oneModalIn__cont .title {
	text-align: center;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 20px;
}

#Top_overlay .oneModal .oneModalIn__cont figure {
	max-width: 520px;
	margin: 0 auto 30px;
	text-align: center;
}

#Top_overlay .oneModal .oneModalIn__cont figure img {
	width: 100%;
	height: auto;
}

#Top_overlay .oneModal .oneModalIn__cont .txt {
	text-align: center;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 10px;
}

#Top_overlay .oneModal .oneModalIn__cont .txt::before {
	display: none;
}

#Top_overlay .oneModal .oneModalIn__cont .txt .font_shadow {
	text-shadow: none;
}

#Top_overlay .oneModal .oneModalIn__cont .txt .font_big {
	font-size: 30px;
}

@media screen and (max-width:767px) {
	#Top_overlay .oneModal .oneModalIn__cont .title {
		font-size: 22px;
	}

	#Top_overlay .oneModal .oneModalIn__cont figure {
		margin: 0 30px 30px;
	}

	#Top_overlay .oneModal .oneModalIn__cont .txt {
		padding: 0 0;
		font-size: 20px;
	}

	#Top_overlay .oneModal .oneModalIn__cont .txt .font_big {
		font-size: 26px;
	}

	#Top_overlay .oneModal .oneModalIn__cont {
		width: 90%;
	}
}

.topicsWrap .contTitle2 {
	color: rgb(var(--main-color-gold));
}
.new_live_bnr a{
	width: 400px;
	margin: 60px auto 0;
	display: block;
}
.new_live_bnr img{
	width: 100%;
	height: auto;
}
@media screen and (max-width:767px) {
	.new_live_bnr a{
	width: 310px;
	margin: 20px auto 0;
	}
}
#Top_overlay .oneModal .oneModalIn__cont figure{max-width: 624px;
}
#Top_overlay .modal_inner_Wrap {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 30px;
}
#Top_overlay .modal_inner_Wrap dl {
	margin-bottom: 40px;
}
#Top_overlay .modal_inner_Wrap p {
	margin-bottom: 20px;
}
#Top_overlay .modal_inner_Wrap p.copy {
	font-size: 14px;
	margin-bottom: 0;
}
#Top_overlay .modal_inner_Wrap dl dt{
	font-weight: bold;
	border-bottom: 2px solid rgb(var(--main-color-gold));
	display: flex;
	align-items: center;
	color: rgb(var(--main-color-gold));
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.6;
	margin-bottom: 10px;
	padding-bottom: 10px;

}
#Top_overlay .popupModalCont .logo{
	padding-left: 3%;
}
#Top_overlay .modal_inner_Wrap iframe {
	margin: 0 auto 20px;
	width: 100%;
	height: 410px;
}
#Top_overlay .modal_inner_Wrap ul.day_list{
	margin-bottom: 25px;
}
#Top_overlay .modal_inner_Wrap ul.day_list li{
	margin-bottom: 10px;
	font-size: 17px;
}

#Top_overlay .modal_inner_Wrap .cast_list{
	display: flex;
}
#Top_overlay .modal_inner_Wrap .cast_list .list{
	width: 33.333333%;
}

@media screen and (max-width:767px) {
	#Top_overlay .modal_inner_Wrap {
		width: auto;
		padding: 0 15px;
	}
	#Top_overlay .modal_inner_Wrap iframe {
		width: 100%;
		height: 50vw;
	}
	#Top_overlay .modal_inner_Wrap .cast_list {
		display: flex;
		flex-wrap: wrap;
	}
	#Top_overlay .modal_inner_Wrap .cast_list .list {
		width:50%;
		margin-bottom: 20px;
		letter-spacing: -0.03em;
	}
	#Top_overlay .modal_inner_Wrap p.copy {
		font-size: 11px;
		margin-bottom: 0;
	}
	#Top_overlay .modal_inner_Wrap dl dt {
		font-size: 15px;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	#Top_overlay .modal_inner_Wrap ul.day_list li {
		margin-bottom: 10px;
		font-size: 14px;
	}
}
@media screen and (min-width:768px) {
	#Top_overlay .modal_inner_Wrap .indent-4 {
		padding-left: 4.4em;
		text-indent: -4.4em;
	}
}