@charset "utf-8";

.pc {
	display: none;
}

.tablet {
	display: none;
}

body {
	-webkit-text-size-adjust: 100%;
}

p,
li,
dt,
dd {
	/*Androidブラウザフォントバグ対策*/
	max-height: 999999px;
}


#slideArea {
	width: 100%;
	/*height: calc(100vh - 80px);*/
	position: relative;
}

.slideImg {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.slideInnerImg {
	z-index: 1;
	opacity: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime-slide 30s 0s infinite;
	animation: anime-slide 30s 0s infinite;
}

.slideInnerImg:nth-of-type(1) {
	background-image: url(../../img/top/slider_poster_sp.jpg);
}

.slideInnerImg:nth-of-type(2) {
	background-image: url(../../img/top/slide01_sp.jpg);
	-webkit-animation-delay: 10s;
	animation-delay: 10s;
}

.slideInnerImg:nth-of-type(3) {
	background-image: url(../../img/top/slide02_sp.jpg);
	-webkit-animation-delay: 20s;
	animation-delay: 20s;
}

.slideInnerImg:nth-of-type(4) {
	background-image: url(../../img/top/slide03_sp.jpg);
	-webkit-animation-delay: 30s;
	animation-delay: 30s;
}

.slideInnerImg:nth-of-type(5) {
	background-image: url(../../img/top/slide04_sp.jpg);
	-webkit-animation-delay: 40s;
	animation-delay: 40s;
}

.slideInnerImg:nth-of-type(6) {
	background-image: url(../../img/top/slide05_sp.jpg);
	-webkit-animation-delay: 50s;
	animation-delay: 50s;
}

@keyframes anime-slide {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	20% {
		opacity: 1;
	}

	30% {
		opacity: 1;
		transform: scale(1.2);
	}

	70% {
		opacity: 0;
		transform: scale(1.2);
		z-index: 0;
	}

	100% {
		opacity: 0;
	}
}

.mvWrap {
	width: 90%;
	height: 100%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: 5;
}

.mvInner {
	color: #ffffff;
	line-height: 1.0;
}

.mvTxt01 {
	margin: 0 auto 25px;
	font-size: 5.0rem;
	text-align: center;
	letter-spacing: 0.5rem;
}

.mvTxt03 {
	/*width: 85%;*/
	margin: 0 auto;
	padding: 20px 0;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	font-size: 1.4rem;
	text-align: center;
	letter-spacing: 0.35rem;
	line-height: 1.6;
}


.mvDate {
	padding: 20px 0 0 0;
	text-align: center;
	font-size: 2rem;
}
/* scroll */
.scroll {
	position: absolute;
	bottom: 40px;
	left: 50%;
}

.scroll span {
	position: absolute;
	font-size: 1.2rem;
	color: #ffffff;
	top: -30px;
	left: -27px;
	z-index: 9;
}

.scrollInner {
	position: absolute;
	width: 1px;
	height: 40px;
	left: calc(90% - 2px);
	background: #ffffff;
	z-index: 5;
	overflow: hidden;
}

.scrollInner p {
	position: absolute;
	width: 1px;
	height: 40px;
	top: -80px;
	background: #5c5c5c;
	z-index: 9;
	animation-name: mv-slide;
	animation-duration: 3s;
	animation-timing-function: liner;
	animation-delay: 1s;
	animation-iteration-count: infinite;
}

@keyframes mv-slide {
	0% {
		top: -100px;
	}

	80% {
		top: 100px;
	}

	100% {
		top: 100px;
	}
}


/* news */
.topnewsWrap {
	width: 100%;
	background: url(../../img/top/bg_top01.png) no-repeat 0 0;
	background-size: 70% auto;
	margin-bottom: 50px;
	padding-top: 50px;
}

.topNews {
	width: 94%;
	margin: 0 auto 25px;
	border-bottom: 1px solid #c9c9c9;
}

.topnewsCol {
	padding: 15px 0;
	border-top: 1px solid #c9c9c9;
}

.topnewsCol a {
	display: block;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.topnewsImg {
	display: block;
	width: 42%;
	position: relative;
	margin-right: 15px;
}

.topnewsImgMask {
	overflow: hidden;
}

.topnewsImgMask img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	transform: scale(1);
	transition: all 0.4s;
}

.topnewsCol a:hover .topnewsImg img {
	transform: scale(1.15);
}

.newsCat {
	position: absolute;
	top: 0px;
	left: -5px;
}

.newsCatTag {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 0px 20px;
	font-size: 1.0rem;
	color: #fff;
	font-weight: 700;
}

.newsCatTag:before {
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: -1;
	transform: skewX(-30deg);
	background-color: #b10418;
	content: "";
}

.topnewsInner {
	width: 44%;
}

.topnewsInner p {
	display: none;
}

.topnewsInner p.newsDate {
	display: block;
	margin-bottom: 5px;
	font-size: 1.2rem;
	color: #838383;
	line-height: 1.0;
}

.newsTtl {
	margin-bottom: 5px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.topnewsCol a .topnewsInner p.newsTxt {
	line-height: 1.5;
	text-decoration: none;
}



/* information */
.topinfoWrap {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background: url(../../img/top/bg_top03_sp.jpg) no-repeat center 0;
	background-size: cover;
}

.topInfo {
	margin: 0 auto 25px;
}

.topinfoTxt {
	margin: 0 0 30px;
	font-size: 1.6rem;
	color: #ffffff;
}

.topinfoMenu {
	width: 100%;
	margin: 0 auto;
	padding: 0 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 20px 6%;
}

.topinfoCol:first-child {
	width: 100%;
}

.topinfoCol:not(:first-child) {
	width: 47%;
	/* margin-bottom: 20px; */
}

.topinfoCol a {
	display: block;
	position: relative;
}

.topinfoCol a::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	border: 2px solid #ffffff;
	position: absolute;
	top: 10px;
	left: 10px;
	transition: all 0.4s;
	z-index: 6;;
}

.topinfoCol a:hover::after {
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 2;
}


/*リンク復活したら消す*/
.topinfoCol span {
	display: block;
	position: relative;
}

.topinfoCol span::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	border: 2px solid #ffffff;
	position: absolute;
	top: 10px;
	left: 10px;
	transition: all 0.4s;
}

/*リンク復活したら消す*/

.topinfoImg {
	display: block;
	position: relative;
}

.topinfoImgMask {
	overflow: hidden;
}

.topinfoCol:first-child .topinfoImgMask {
	aspect-ratio: 58 / 37;
}

.topinfoCol:not(:first-child) .topinfoImgMask {
	aspect-ratio: 1 / 1;
}

.topinfoImgMask img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 100%;
	transform: scale(1);
	transition: all 0.4s;
	object-fit: cover;
	object-position: top;
}

.topinfoCol a:hover .topinfoImg img {
	transform: scale(1.15);
}

.topinfoMenuTxt {
	position: absolute;
	bottom: 10px;
	left: 20px;
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.4;
	z-index: 3;
}




/* WHAT IS WHEELCHAIR MARATHON */
.topaboutWrap {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 50px;
	background: url(../../img/top/bg_top04.png) no-repeat right 0,
		url(../../img/top/bg_dot01.jpg) repeat 0 0;
	background-size: 70% auto, auto auto;
}

.topAbout {
	position: relative;
}

.topaboutImg {
	width: 100%;
}

.topaboutImg img {
	max-width: 100%;
}

.topaboutTxt {
	margin: -30px 10px 0;
	padding: 20px;
	background: #ffffff;
	position: relative;
}

.topaboutTxt p {
	margin-bottom: 20px;
	line-height: 1.6;
}

.topaboutTxt p:last-child {
	margin-bottom: 0;
}

#importantTit {
	width: 90%;
	margin: 0 auto 10px;
	max-width: 1230px;
	color: #1059ca;
	font-size: 1.8rem;
}

#importantNews {
	width: 90%;
	max-width: 1230px;
	padding: 30px;
	margin: 0 auto 70px;
	background: #FFF;
	border: 2px #1059ca solid;
}

.ImportantNewsInner {
	padding-bottom: 20px;
}

.ImportantNewsInner a {
	padding: 10px 0;
	border-bottom: 1px #CCC solid;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 1.4rem;
	color: #1059ca;
	transition: all 0.3s ease-in-out 0s;
}

.ImportantNewsInner a:hover {
	opacity: 0.6;
}

.ImportantNewsInner a .iNewsCat {
	color: #FFF;
	background: #1059ca;
	padding: 0 10px;
	margin: 5px 10px 5px 0;
	font-size: 1.2rem;
	font-weight: bold;
}

.ImportantNewsInner a .iNewsDate {
	font-size: 1.4rem;
	color: #838383;
	line-height: 1.0;
	margin: 5px 10px 5px 0;
}

.ImportantNewsInner a .iNewsTtl {
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 5px 0;
}

#comingsoon {
	color: #FFF;
	text-align: right;
}

/* 375px以下の調整 */
@media screen and (max-width: 374px) {
	.mvTxt01 {
		font-size: 4.2rem;
	}

	.mvTxt02 {
		letter-spacing: 1rem;
	}

	.mvTxt03 {
		width: 95%;
		letter-spacing: 0.5rem;
	}

	.scrollInner {
		height: 30px;
	}

	.scrollInner p {
		height: 30px;
	}

	.scroll {
		bottom: 30px;
	}
}