/****************************
 * ヘッダー
 */
#navHome {
	color: #ff0000;
}
/****************************
 * コンテンツトップ
 */
/* エントリーボタン（画像）
 */
#contentTop div.entry {
	top: 20px;
}

/*
#contentTop a {
	position: absolute;
	bottom: -10px;
	right: 3%;
}
#contentTop a .ImgMynavi {
	width: 200px;
	border: 1px solid #CCCCCC;
}
*/

/****************************
 *  エントリーエリア
 */
div.entryArea {
	position: relative;
	padding: 20px 13px;
	border: solid 1.5px #00b0f0;
 	border-radius: 10px;
 	width: 590px;
	margin: 1% auto;
}

.entryArea p {
	font-size: 18px;
}

.entryArea .entryAreaTitle{
	position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    background: #FFF;
    color: #00b0f0;
}

div .banner{
	display: inline-block;
	margin-bottom: 10px;
}

/****************************
 * 動画(video)
 */
#logoAnime {

	animation-name: fadeIn;
	animation-duration: 1s;
	animation-delay:0;
	animation-iteration-count:1;
	animation-direction:normal;
	width:100%;
	height:auto;
}
@keyframes fadeIn  {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes fadeIn  {
	0% {opacity: 0}
	100% {opacity: 1}
}

#logoImage {
	display: none;
}


#mainImgWrapper {
	position: relative;
}

#toptxt {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(images/txt_mottoit.png);
	background-size:contain;
	z-index:-9997;
}

#mainImg {
	position: relative;
	top:0;
	left:0;
	width:100%;
	height:100%;
	z-index:-9999;
}

#bgdot {
	display: block;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:url(images/bg_dot.png);
	background-size:auto;
	z-index:-9998;
}


/****************************
 * CSS(top画像)
 */
#mainImgWrapper h1 .box{
	display:block;
	animation-name:topImagefadeIn;
	animation-duration: 2s;
	animation-delay:1;
	animation-iteration-count:1;
	animation-direction:normal;
}
@keyframes topImagefadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}
@-webkit-keyframes topImagefadeIn{
	0% {opacity: 0}
	100% {opacity: 1}
}


/****************************
 *  コンテンツ説明文
 */
div.contentTitle {
	text-align: center;
}

/****************************
 * 予定
 */
.scheduleWrap {
	padding: 0 24px;
	background-color: #faf6dc;
}
.scheduleWrap .scheduleTitle {
	padding: 20px 0;
    font-size: 18px;
    text-align: center;
}
ul.twoBlockCcontent {
    padding-right: 20px;
}
ul.twoBlockCcontent::after {
    content: "";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
ul.twoBlockCcontent li {
	width: 50%;
	float: left;
	padding-bottom: 30px;
	margin-right: 20px;
}
ul.twoBlockCcontent li:nth-child(2n) {
    margin-right: -20px;
}
ul.twoBlockCcontent li section {
    background-color: #ffffff;
    border: 2px solid #CCCCCC;
	border-radius: 16px;

}
section .splitLine {
	width: initial;
	margin: 0 16px;
}
section h2.title {
	width: 60%;
	margin: -2px auto 0;
	padding: 14px 0 12px;
	font-size: 18px;
	font-weight: 400;
	text-align: center;
}
#honsyaSchedule h2.title {
	border-top: 4px solid #00b0f0;
}
#kansaiSchedule h2.title {
	border-top: 4px solid #ff832f;
}
div.contentMain {
	margin: 16px;
	font-weight: 200;
}
div.contentMain p.nittei {
	margin-left: 16px;
}
#honsyaSchedule div.contentMain p.nittei {
	color: #00b0f0;
}
#kansaiSchedule div.contentMain p.nittei {
	color: #ff832f;
}
div.contentMain p.syousai {
	margin-left: 32px;
}
div.contentMain p.syousai a.link {
	font-weight: 200;
}
div.contentMain .btnArea {
	margin-top: 16px;
	text-align: center;
}
#honsyaSchedule div.contentMain button {
	background-color: #00b0f0;
}
#kansaiSchedule div.contentMain button {
	background-color: #ff832f;
}


/****************************
 * 画像リンクエフェクト
 */
div.linkBlock{
	overflow: hidden;
	position: relative;
	border: 4px solid #111076;
	border-radius: 8px;
}
div.linkBlock a.link img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}
div.linkBlock .linkDecoArea{
	width: 100%;
	position: absolute;
	bottom: 0px;
}
div.linkBlock .linkLabel{
	height: 44px;
	width: 100%;
	background-color: rgb(17,16,118,0.7);
	color: white;
	text-align: center;
	vertical-align: middle;
	font-size: 16pt;
	font-weight: 400;
	padding: 6px;
	position: relative;
	opacity: 1;
	bottom: 30px;
	transition-property: bottom;
	transition-duration: 0.2s;
	transition-delay: 0s;
	transition-timing-function: ease-out;
}
div.linkBlock:hover {
	& a.link img {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	& :before {
		top: 50%;
	}
	& .linkLabel {
		opacity: 1;
		bottom: 0px;
		transition-delay: 0s;
	}
}
