@charset "UTF-8";

/* ==================================================
FONT
================================================== */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400;700;900&display=swap');
/*
--- CSS ---
【和文体】
https://fonts.google.com/specimen/M+PLUS+1p?query=M+plus

■M PLUS 1p - Regular
font-family: 'M PLUS 1p', sans-serif;
font-weight: 400;

■M PLUS 1p - Bold
font-family: 'M PLUS 1p', sans-serif;
font-weight: 700;

■M PLUS 1p - Black
font-family: 'M PLUS 1p', sans-serif;
font-weight: 900;
*/


/* Adobe Fonts - webfonts.js にて読込み */
/*
--- CSS ---
【和文体】
https://fonts.adobe.com/fonts/'M PLUS 1p'

 (Ryo Gothic PlusN)
■りょうゴシック PlusN - Regular
font-family: 'M PLUS 1p',sans-serif;
font-weight: 400;

■りょうゴシック PlusN - Bold
font-family: 'M PLUS 1p',sans-serif;
font-weight: 700;

■りょうゴシック PlusN - Black
font-family: 'M PLUS 1p',sans-serif;
font-weight: 900;

【欧文体】
https://fonts.adobe.com/fonts/tandelle

■Tandelle - Regular
font-family: tandelle,sans-serif;
font-weight: 400;

■Tandelle - Bold
font-family: tandelle,sans-serif;
font-weight: 700;
*/

html { font-size: 62.5%; }

body,
#allWrap {
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1rem;
	line-height: 1.2;
	letter-spacing: 0.03em;
	color: #000;

	-webkit-font-smoothing: antialiased; /* WebKitブラウザサポート */
	text-rendering: optimizeLegibility; /* Chrome、Safariサポート */
	-moz-osx-font-smoothing: grayscale; /* Firefoxサポート */
	font-feature-settings: 'liga'; /* IEサポート */
	
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%; /* iPhoneの文字サイズバグの回避 */
}


/* ==================================================
LINK
================================================== */
a:link { text-decoration: none; color: #a276b0; }
a:visited { text-decoration: none; color: #a276b0; }
a:hover { text-decoration: none; color: #7a2495; }
a:active { text-decoration: none; color: #7a2495; }
/*a { outline: 0; transition: opacity 0.4s ease-out 0s, color 0.4s ease-out 0s; }*/
:focus { outline: 0; }


/* ==================================================
VIEW SWITCH
================================================== */

/* View Switch
------------------------------ */
@media screen and (min-width: 641px) {
	.spOnly { display: none !important; }
}

@media screen and (max-width: 640px) {
	.pcOnly { display: none !important; }
}

/* ==================================================
PAGE BASE
================================================== */
body {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	
	min-width: 320px;
	background: #a276b0;
}

#allWrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
	
	min-width: 320px;
	font-size: 1.5rem;
	z-index: 3;
}

@media screen and (max-width: 900px) {
	#allWrap {
		font-size: 1.4rem;
	}
}

/* RESET CSS CUSTOM */
img {
	display: block;
	margin: 0 auto;
}

p {
	line-height: 1.6;
}

p:not(:last-child) {
	margin-bottom: 2em;
}

i,em {
	display: inline-block;
}


/* テキストリンク */
a.txtType {
	text-decoration: none;
	position: relative;
	padding: 0 24px 5px 0;
	display: inline-block;
	line-height: 1.2;
	transform: translateY(-2px);
}

a.txtType::before {
	content: "";
	position: absolute;
	bottom: 8px;
	right: 6px;
	width: 11px;
	height: 8px;
	background: url("../img/common/icon_window.svg") no-repeat center center;
	background-size: 100%;
}

a.txtType::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #a276b0;
}

a.txtType img {
}

a.txtType:hover {
}

a.txtType:hover img {
}


/* YouTube */
.youtube {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 0;
	padding: 30px 0 56.25%;
	/*アスペクト比 16:9の場合の縦幅*/
	/*padding: 0 0 56.25%;*/
	/*アスペクト比 16:9の場合の縦幅*/
	/* margin: 0 0 20px; */
}

.youtube iframe {
	position: absolute;
	top: -1px;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


/* ==================================================
GLOBAL NAVIGATION
================================================== */

/* #hdrNavi
------------------------------ */
#hdrNavi {
	padding: 0 1%;
	height: 48px;
	border-bottom: 1px solid #000;
	overflow: hidden;
}

#hdrNavi ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	height: 100%;
	padding-top: 2px;
}

#hdrNavi ul li {
	margin: 0 10px;
	position: relative;
}

#hdrNavi ul li a {
	font-family: tandelle, sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #fff;
	text-decoration: none;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	transition: all 0.4s ease-out 0s;	
}

#hdrNavi ul li:not(.icon) a:hover {
	color: #d2de34;
	transform: scaleY(1.2);
	text-shadow: 1px 2px 0 #000;
	opacity: 1;
}

#hdrNavi ul li.current:not(.icon) a {
	color: #fff459;
	transform: scaleY(1.2);
	text-shadow: 1px 2px 0 #000;
	pointer-events: none;
}

#hdrNavi ul .comingsoon {
}

#hdrNavi ul .comingsoon a {
	pointer-events: none;
	opacity: 0.3;
}

#hdrNavi ul .new {
}

#hdrNavi ul .new::before {
	content: "UPDATE!!";
	position: absolute;
	top: -10px;
	left: calc(50% - 35px);
	/*! right: 0; */
	font-size: 1.1rem;
	font-family: 'M PLUS 1p', sans-serif;
	font-weight: 700;
	letter-spacing: 0.02em;
	margin: 0 auto;
	color: #eb2828;
	text-align: center;
	width: 70px;
}

#hdrNavi ul .icon {
}

#hdrNavi ul .icon a {
}

#hdrNavi ul .icon a img {
	transition: all 0.4s ease-out 0s;
}

#hdrNavi ul .icon a:hover img {
	transform: scale(1.2) rotate(-10deg);
}

@media screen and (max-width: 900px) {
	#hdrNavi {
		border-bottom: none;
	}
	#hdrNavi ul {
		display: none;
	}
}

/* #pageNavi
------------------------------ */
#pageNavi {
	position: fixed;
	top: -420px;
	left: 0;
	z-index: 100;
	width: 100%;
	transition: all 0.8s ease-out 0s;
}

@media screen and (max-width: 900px) {
	#pageNavi {
		top: 0;
		transition: position 0s linear 0s, background 0.8s ease-out 0s, height 0.8s ease-out 0s;
	}
}

#pageNavi.veiw {
	top: 0;
}

#pageNavi .ttl {
	height: 48px;
	border-bottom: 1px solid #000;
	background: #a276b0;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-out 0s;
}

#pageNavi .ttl:hover {
	cursor: pointer;
	background: #8b5d9a;
}

#pageNavi .ttl img {
	width: 70%;
	max-width: 200px;
	margin: 0 auto;
}

#pageNavi .accordion {
	background: #f2a7c8;
	height: 0;
	overflow: hidden;
	transition: all 0.6s ease-out 0s;
	position: relative;
}

#pageNavi .accordion::after {
	background: #000;
	content: "";
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}

#pageNavi.navOpen .accordion {
	height: 350px;
}

#pageNavi .accordion ul {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	max-width: 640px;
	margin: 0 auto;
	padding: 30px 3% 0;
}

#pageNavi .accordion ul li {
	width: 50%;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 2px solid #000;
	border-bottom: none;
}

#pageNavi .accordion ul li:first-child {
}

#pageNavi .accordion ul li:nth-child(1),
#pageNavi .accordion ul li:nth-child(2) {
}

#pageNavi .accordion ul li:nth-of-type(2n-1){
	border-right: none;
}

#pageNavi .accordion ul li:last-child {
	border-bottom: none;
	border-left: none;
	width: 100%;
	height: 80px;
	border-right: none;
}

#pageNavi .accordion ul li:not(.icon) a {
	font-family: tandelle, sans-serif;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #000;
	text-decoration: none;
	font-size: 2.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-out 0s;
	position: relative;
	background: #fff;
}

#pageNavi .accordion ul li.new:not(.icon) a {
}

#pageNavi .accordion ul li.new:not(.icon) a::before {
	content: "UPDATE!!";
	position: absolute;
	top: -3px;
	left: 5px;
	font-size: 1.2rem;
	font-family: "M PLUS 1p", sans-serif;
	font-weight: 900;
	letter-spacing: 0.02em;
	color: #eb2828;
	transform: rotate(-15deg);
}


@media screen and (max-width: 900px) {
#pageNavi .accordion ul li:not(.icon) a {
	font-size: 2rem;
}
}

#pageNavi .accordion ul li:not(.icon) a:hover {
	background: #dae627;
}

#pageNavi .accordion ul li.current:not(.icon) a {
	background: #fff459;
	pointer-events: none;
}

#pageNavi .accordion ul .comingsoon {
	background: #fff;
}

#pageNavi .accordion ul .comingsoon a {
	pointer-events: none;
	opacity: 0.2;
}

#pageNavi .accordion ul .icon {
}

#pageNavi .accordion ul .icon a {
}

#pageNavi .accordion ul .icon a img {
	transition: all 0.4s ease-out 0s;
}

#pageNavi .accordion ul .icon a:hover img {
	transform: scale(1.2) rotate(-10deg);
}

#pageNavi .accordion .close {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #fff;
	font-size: 1.8rem;
	background: #a276b0;
	border-top: 1px solid #000;
	transition: all 0.4s ease-out 0s;
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

#pageNavi .accordion .close:hover {
	cursor: pointer;
	background: #8b5d9a;
}

#pageNavi .accordion .close span {
	position: relative;
	/*! padding-left: 35px; */
}

#pageNavi .accordion .close span::before,
#pageNavi .accordion .close span::after {
	content: "";
	display: block;
	width: 22px;
	height: 3px;
	background: #fff;
	position: absolute;
	top: calc(50% - 2px);
	left: calc(50% - 11px);
	border-radius: 10px;
}

#pageNavi .accordion .close span::before {
	transform: rotate(45deg);
}

#pageNavi .accordion .close span::after {
	transform: rotate(-45deg);
}


/* ==================================================
HEADER (FOR SUBPAGE)
================================================== */
#hdrWrap {
	border-bottom: 1px solid #000;
	margin-bottom: 60px;
	background: rgba(162, 118, 176, 0.6) url("../img/hdr_2nd_bg.png") no-repeat center center;
	background-size: auto 100%;
}

#hdrWrap .hdrInner {
}

#hdrWrap .hdrInner a {
	display: block;
	border-left: 1px solid #000;
	border-right: 1px solid #000;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

#hdrWrap .hdrInner a img {
}

#hdrWrap .hdrInner a .pcHdr {
}

#hdrWrap .hdrInner a .spHdr {
	display: none;
}

@media screen and (max-width: 640px) {
	#hdrWrap {
	background: none;
	}

	#hdrWrap .hdrInner {
	}

	#hdrWrap .hdrInner a {
	border: none;
	}

	#hdrWrap .hdrInner a img {
	}

	#hdrWrap .hdrInner a .pcHdr {
		display: none;
	}

	#hdrWrap .hdrInner a .spHdr {
		display: block;
	}
}

/* ==================================================
CONTENTS
================================================== */
#mainWrap {
	text-align: left;
}

.area {
	position: relative;
}

/* ノボリアニメーション
------------------------------ */
.noboriScroll {
	background: url("../img/line_nobori_2020re.png") repeat-x 0 0;
	background-size: auto 100%;
	animation: nobori-line 40s linear infinite;
	width: 100%;
	height: 314px;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 640px) {
	.noboriScroll {
		animation: nobori-line-sp 30s linear infinite;
		height: 157px;
	}
}

@keyframes nobori-line {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -1842px 0;
	}
	/* 1842px＝使用した背景画像の長さ */
}

@keyframes nobori-line-sp {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -921px 0;
	}
}

.noboriScroll2 {
	background: url("../img/line_nobori_2020re.png") repeat-x 0 0;
	background-size: auto 100%;
	animation: nobori-line2 40s linear infinite;
	width: 100%;
	height: 314px;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media screen and (max-width: 640px) {
	.noboriScroll2 {
		animation: nobori-line2-sp 30s linear infinite;
		height: 157px;
	}
}

@keyframes nobori-line2 {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 1842px 0;
	}
	/* 1842px＝使用した背景画像の長さ */
}

@keyframes nobori-line2-sp {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 921px 0;
	}
}

/* イラストアニメーション
------------------------------ */
.illustScroll {
	background: url("../img/line_illust_2020re.png") repeat-x 0 0;
	background-size: auto 100%;
	animation: illust-line 40s linear infinite;
	width: 100%;
	height: 252px;
	position: absolute;
	bottom: -120px;
	left: 0;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.illustScroll {
		animation: illust-line-sp 40s linear infinite;
		height: 200px;
		bottom: -90px;
	}
}

@keyframes illust-line {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -1840px 0;
	}
	/* 1840px＝使用した背景画像の長さ */
}

@keyframes illust-line-sp {
	from {
		background-position: 0 0;
	}
	to {
		background-position: -1460px 0;
	}
}

/* ==================================================
FOOTER CREDIT
================================================== */
#ftrCredit {
	margin: 80px auto 0;
	padding: 0 3%;
	text-align: center;
}

#ftrCredit ul {
	text-align: left;
	max-width: 640px;
	margin: 0 auto;
	display: inline-block;
}

#ftrCredit ul li {
	margin-bottom: 8px;
	color: #fff;
}

#ftrCredit ul li em {
	display: inline-block;
	border: 1px solid #fff;
	line-height: 1.2;
	padding: 3px 0;
	font-weight: 700;
	font-size: 1.3rem;
	width: 110px;
	text-align: center;
	margin-right: 20px;
	font-weight: 900;
}

#ftrCredit ul li span {
	display: inline-block;
	font-weight: 700;
	font-size: 1.4rem;
}

#ftrCredit ul li span i {
}

@media screen and (max-width: 640px) {
	#ftrCredit {
	text-align: center;
	}

	#ftrCredit ul {
	display: inline-block;
	margin: 0 auto;
	}

	#ftrCredit ul li {
	display: inline-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: column;
	margin-bottom: 12px;
	color: #fff;
	}

	#ftrCredit ul li em {
	margin: 0 0 5px 0;
	font-size: 1.2rem;
	}

	#ftrCredit ul li span {
	width: 100%;
	}

	#ftrCredit ul li span i {
	}
}

/* ==================================================
FOOTER
================================================== */

/* pageTop
------------------------------ */
#pageTop {
	padding: 80px 3% 100px;
}

#pageTop a {
	display: block;
	width: 40%;
	max-width: 120px;
	margin: 0 auto;
	transition: all 0.6s ease-out 0s;
}

#pageTop a:hover {
	opacity: 0.8;
	filter: brightness(115%) contrast(110%) saturate(120%);
}

#pageTop .scrollto img {
}
/**/

#ftrWrap {
	background: #f2a7c8;
	border-top: 1px solid #000;
	padding: 30px 3% 60px;
}

#ftrWrap .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
}

#ftrWrap .jwaveLogo {
}

#ftrWrap .jwaveLogo a {
	display: inline-block;
}

#ftrWrap .jwaveLogo img {
	margin: 0;
}

#ftrWrap .copyright {
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #fff;
	line-height: 1.2;
	font-size: 1.2rem;
}

#ftrWrap .copyright b {
	display: inline-block;
	margin-right: 5px;
	font-size: 110%;
	transform: translateY(1px);
}

@media screen and (max-width: 900px) {
	#ftrWrap {
		padding: 30px 3%;
	}

	#ftrWrap .inner {
		display: block;
		text-align: center;
	}

	#ftrWrap .jwaveLogo {
		margin-bottom: 10px;
	}
	
	#ftrWrap .jwaveLogo a {
		max-width: 140px;
	}
	
	#ftrWrap .jwaveLogo img {
		margin: 0 auto;
	}
}


/* ==================================================
ANIMATION
================================================== */
body {
	animation: body_fadein 2.2s ease 0.2s both;
}

@keyframes body_fadein {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

#allWrap.introFade {
	animation: fadein 1s both 1s;
}

@media screen and (min-width: 901px) {
#commonFooter {
	animation: viewin 1s both 1s;
}
}

@media screen and (max-width: 900px) {
#commonFooter {
	animation: fadein 1s both 1s;
	bottom: 0;
}
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

@keyframes viewin {
	0% { bottom: -50px; opacity: 0; }
	100% { bottom: 0;  opacity: 1; }
}

.noTransition {
	transition: none;
}


/* BACKGROUND BLOCK for CANVAS - bg1
------------------------------ */
#bg1 {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 120vh;
	overflow: hidden;
}

#bg1 .inner {
	position: absolute;
	width: 2000px;
	height: 2000px;
	top: 0;
	left: calc(50% - 1000px);
}

#cvs1 {
	background-color: transparent;
}

/* BACKGROUND BLOCK for CANVAS - bg2
------------------------------ */

#bg2 {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 120vh;
	overflow: hidden;
}

#bg2 .inner {
	position: absolute;
	width: 2000px;
	height: 2000px;
	top: 0;
	left: calc(50% - 1000px);
}

#cvs2 {
	background-color: transparent;
}


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


/* .bannerColumn
------------------------------ */
.bannerColumn {
	padding: 0 3% 30px;
}

.bannerColumn ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 800px;
	margin: 0 auto;
}

.bannerColumn ul li {
	width: calc(50% - 15px);
	margin: 0 0 30px;
}

.bannerColumn ul li.wide {
	width: 100%;
	height: 200px;
}

.bannerColumn ul li.wide a {
	height: 100%;
}

.bannerColumn ul li.wide img {
	width: auto;
	height: 100%;
}

.bannerColumn ul li a {
	transition: all 0.4s ease-out 0s;
	display: block;
	border: 6px solid #fff;
}

.bannerColumn ul li a img {
	transition: all 0.4s ease-out 0s;
}

.bannerColumn ul li a:hover{
	opacity: 0.7;
}

.bannerColumn ul li a:hover img{
}


/*
パープル … #a476b1
グリーン … #d3df24
ピンク … #f2a7c8
レッド … #d11019
オレンジ … #eb9f16
イエロー … #fff358
ブルー … #3a9eea
*/


.bg-purple { background-color: #a476b1; }
.bg-green { background-color: #d3df24; }
.bg-pink { background-color: #f2a7c8; }
.bg-red { background-color: #d11019; }
.bg-orange { background-color: #eb9f16; }
.bg-yellow { background-color: #fff358; }
.bg-blue { background-color: #3a9eea; }




@media screen and (max-width: 640px) {
.bannerColumn {
}

.bannerColumn ul {
	display: block;
}

.bannerColumn ul li {
	width: 100%;
	margin-bottom: 20px;
}

.bannerColumn ul li.wide {
	height: auto;
}

.bannerColumn ul li.wide a {
	height: auto;
}

.bannerColumn ul li.wide img {
	width: 100%;
	height: auto;
}

.bannerColumn ul li a {
}

.bannerColumn ul li a img {
}

.bannerColumn ul li a:hover{
}

.bannerColumn ul li a:hover img{
}
}


/* .programInfo
------------------------------ */
.programInfo {
position: relative;
z-index: 1;
border-top: 6px solid #d2de34;
padding: 2px 0;
max-width: 1000px;
margin: 80px auto 80px;
border-bottom: 6px solid #d2de34;
}

.programInfo .programInfo-inner {
border-bottom: 1px solid #d2de34;
padding: 20px 0 0px;
text-align: left;
color: #fff;
border-top: 1px solid #d2de34;
}

.programInfo .programInfo-inner .box {
	text-align: center;
	background: #fff;
	padding: 20px 3%;
	margin-bottom: 20px;
	border: 3px solid #d2de34;
	color: #000;
}

.programInfo .programInfo-inner .head {
	font-size: 1.8rem;
	margin-bottom: 20px;
}

.programInfo .programInfo-inner .head b {
	font-weight: 900;
	display: inline-block;
	margin-bottom: 10px;
	color: #a476b1;
}

.programInfo .programInfo-inner .head b i {
}

.programInfo .programInfo-inner .head i {
}

.programInfo .programInfo-inner .head i i {
}

.programInfo .programInfo-inner .ttl {
	background: #fff358;
	font-weight: 900;
	font-size: 1.8rem;
	padding: 15px;
	margin-bottom: 20px;
}

.programInfo .programInfo-inner .ttl i {
}

.programInfo .programInfo-inner .date {
	border: 2px solid #000;
	padding: 5px;
	font-size: 1.8rem;
	font-weight: 900;
	max-width: 460px;
	margin: 0 auto 15px;
}

.programInfo .programInfo-inner .date i {
}

.programInfo .programInfo-inner .navigator {
	margin-bottom: 10px;
}

.programInfo .programInfo-inner .navigator .label {
}

.programInfo .programInfo-inner .navigator b {
	font-size: 1.7rem;
}

.programInfo .programInfo-inner .address {
}

.programInfo .programInfo-inner .address .label {
}

.programInfo .programInfo-inner .address b {
	font-size: 1.7rem;
}


@media screen and (max-width: 640px) {
.programInfo {
}

.programInfo .programInfo-inner {
}

.programInfo .programInfo-inner .box {
}

.programInfo .programInfo-inner .head {
}

.programInfo .programInfo-inner .head b {
}

.programInfo .programInfo-inner .head b i {
}

.programInfo .programInfo-inner .head i {
}

.programInfo .programInfo-inner .head i i {
}

.programInfo .programInfo-inner .ttl {
	font-size: 1.7rem;
	padding: 10px 3%;
}

.programInfo .programInfo-inner .ttl i {
}

.programInfo .programInfo-inner .date {
	font-size: 1.6rem;
}

.programInfo .programInfo-inner .date i {
}

.programInfo .programInfo-inner .navigator {
	margin-bottom: 5px;
}

.programInfo .programInfo-inner .navigator .label {
}

.programInfo .programInfo-inner .navigator b {
}

.programInfo .programInfo-inner .address {
}

.programInfo .programInfo-inner .address .label {
}

.programInfo .programInfo-inner .address b {
}

}




/* //////////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////// */

/* ==================================================
OTHERS
================================================== */

.scrollto {/**/}

/* clrfix */
.clrfix::before, .clrfix::after { display: table; content: ''; }
.clrfix::after { clear: both; }

/* iOS フルサイズディスプレイ対応 */
.vfit-cover {
	padding-left: env(safe-area-inset-left);
	padding-right: env(safe-area-inset-right);
}


/*

<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->
<!-- ##########　HTML コメントアウト記述ルール　######################################################### -->
<!-- #################################################################################################### -->
<!-- #################################################################################################### -->


<!-- ▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼ -->
<!-- //////////////////////////////////////////////////////////////////// -->
<!-- ///// メインコンテンツエリア（編集エリア） ///////////////////////// -->
<!-- //////////////////////////////////////////////////////////////////// -->

<!-- //////////////////////////////////////////////////////////////////// -->
<!-- //////////////////////////////////////////////////////////////////// -->
<!-- ▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲ -->

<!-- ==================== 大ブロックエリア ==================== -->
<!-- ==================== //大ブロックエリア ==================== -->

<!-- ***** 中ブロックエリア *************** -->
<!-- ***** //中ブロックエリア *************** -->

<!-- #ID名 -->
<!-- //#ID名 -->

<!-- .class名 -->
<!-- //.class名 -->

<!-- [memo] -->
<!-- //[memo] -->


<!-- ※※※※※ INCLUDE - HEADER ※※※※※ -->
<!--#include virtual="/common/inc_header.html"-->
<!-- ※※※※※ //INCLUDE - HEADER ※※※※※ -->

<!-- ※※※※※ INCLUDE - FOOTER ※※※※※ -->
<!--#include virtual="/common/inc_footer.html"-->
<!-- ※※※※※ //INCLUDE - FOOTER ※※※※※ -->

<!--
[ id/class Name List ]
wrap > area > (group) > set > box

[ memmo ]
TOPページ → <body id="pageHome">
Newsページ(第2階層) → <body id="pageNews" class="subPage">
-->
*/


/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* #################################################################################################### */
/* ##########　コメントアウト記述ルール　############################################################## */
/* #################################################################################################### */
/* #################################################################################################### */


/* //////////////////////////////////////////////////////////////////// */
/* ///// ブロック区切り /////////////////////////////////////////////// */
/* //////////////////////////////////////////////////////////////////// */

/* ==================================================
大見出し
================================================== */

/* 中見出し（他、説明など）
------------------------------ */

/* ### 小見出し 1 ### */
/* ### ----- ### */

/* 小見出し 2 */
/* ----- */