@charset "utf-8";
/* CSS Document */

body{ margin: 0; font-family: "Noto Sans Japanese"; color: #444; }

img{ vertical-align: bottom; }

@media screen and (min-width: 1024px){	
  .br-pc { display:block; }
  .br-sp { display:none; }
}
@media screen and (max-width: 1024px){	
  .br-pc { display:none; }
  .br-sp { display:block; }
}

/*header*/
#head{
	width: 100%;
	margin: 0;
}
#head .inner{
	width: 1200px;
	margin: 0 auto;
	
	padding: 1em 0;
	display: -webkit-flex;
	display: flex;
	justify-content: space-between;
}
.head-logo{
	width: 420px;
	margin: 0;
	display: flex;
    display: -webkit-flex;
    align-items: center;
}
.head-logo img{
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: auto;
	margin: auto;
}
#head .kaisaibi{
	font-size: 140%;
  	font-weight: 600;
  	color: #0B4F9F;
}

.head-contbox{
  	max-width: 220px;
	display: flex;
    display: -webkit-flex;
    align-items: center;
}
.contact-box{
	background: #0D41BB;
    max-width: 220px;
	box-sizing: border-box;
    margin-left: auto;
  	margin-right: 0;
	padding: 15px 20px;
	border-radius: 10px;
	color: #fff;
}

/*footer*/
#marathon-foot{
  	/*background: #0a1e20;*/
  	background: #2C7C00;
	width: 100%;
  	margin: 0 auto;
  	font-size: 90%;
}
.foot-add{
	width: 1200px;
  	margin: 0 auto;
  	padding: 3em 0;
}
.add-tit01{
	width: 100%;
  	margin: 0 auto 1em auto;
    text-align: center;
  	font-size: 180%;
  	font-weight: 600;
  	color: #fff;
}
.add-txt01{
	width: 100%;
  	font-size: 110%;
  	margin: 0 auto 2em auto;
    text-align: center;
  	color: #fff;
}
.add-list01{
	max-width: 1200px;
  	margin: 0 auto;
}
.add-list01 ul{
  margin: 0 auto;
  padding: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
.add-list01 li{
  width: 14%;
  list-style: none;
  border-left: 1.5px solid #0A2F00;
  text-align: center;
}
.add-list01 li a{
  color: #fff;
  font-size: 90%;
}
.add-list01 li:last-child{
  border-right: 1.5px solid #0A2F00;
}

.add-list02{
  max-width: 1200px;
  width: 95%;
  margin: 30px auto 0;
}
.add-list02 ul{
  margin: 0;
  padding: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  max-width: 450px;
}
.add-list02 li{
  list-style: none;
  width: 49.5%;
}
.add-list02 li a{
  display: block;
  background: rgba(10,47,0,.4);
  border: 1.5px solid #0A2F00;
  border-radius: 2px;
  padding: 10px;
  font-weight: normal;
  font-size: 90%;
  color: #fff;
  transition: .3s;
}

.foot-nav{
	width: 100%;
  	margin: 0;
  	padding: 3em 0;
  	/*background:#000a0c;*/
  	background: #165400;
}
.foot-img{
  	width: 100%;
  	min-height: 50px;
  	margin: 0;
}
.foot-img img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
  	margin: auto;
}

/*global-menu*/
.l-nav-m{
	display: none;
}
.local-nav,.nav-menu{
	background: rgba(17,82,143,1.00);
	width: 100%;
	margin: 0;
	box-sizing: border-box;
	text-align: center;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid #fff;
  	z-index: 100;
}
.nav-menu {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
	border-bottom: none;
	padding-left: 100px;
}
.nav-menu > li {
    float: left;
    width: 13%; /* グローバルナビ4つの場合 */
    height: 115px;
	background: #0B4F9F;
	border-right: 1px solid #fff;
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nav-menu > li:first-child{
	border-left: 1px solid #fff;
}

.nav-menu > li a {
  	text-decoration: none;
}

.nav-menu > li a:hover {
    color: #999;
}

ul.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.nav-menu > li:hover {
    background: rgba(4,46,90,1.00);
    -webkit-transition: all .5s;
    transition: all .5s;
}

.menu__second-level li {
    border-top: 1px solid #fff;
  	text-decoration: none;
    transition: all .5s;
    padding: 15px 0
}
.menu__second-level li a{
	color: #fff;
}

.menu__second-level li:hover {
    background: #111;
}

.midashi{
    display: block;
    color: #fff;
	font-weight: 600;
    text-align: center;
}
.en-text{
	display: block;
    color: #BFC6CD;
    text-align: center;
}

/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 0px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* floatクリア */
.nav-menu:before,.nav-menu:after {
    content: " ";
    display: table;
}
.nav-menu:after {
    clear: both;
}
.nav-menu {
    *zoom: 1;
}

.nav-menu > li.menu__single {
    position: relative;
    z-index: 2000;
}

li.menu__single ul.menu__second-level {
    position: absolute;
    top: 90%;
  	left: 0;
  	right: 0;
  	padding: 0;
    width: 200%;
    background: rgba(4,46,90,1.00);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
  	z-index: 2000;
}

li.menu__single:hover ul.menu__second-level {
  	width: 200%;
    top: 100%;
    visibility: visible;
    opacity: 1;
	padding: 0;
}
.menu__second-level li{
	list-style: none;
}


/*有料公告*/
.banner-box01 {
  width: 100%;
  margin: 0 auto;
}
.banner-box01 .tit01{
	width: 100%;
  	margin:0 0 .5em 0;
  	text-align: center;
  	font-size: 150%;
  	font-weight: 600;
  	color: rgba(41,131,205,1.00);
}
.banner-box01 .inner {
  width: 200px;
  margin: 0 auto 1em auto;
  padding: 0;
  color: #444;
  font-weight: 300;
}
.banner-box01 .ul01 {
  display: -webkit-flex;
  display: flex;
  list-style-type: none;
  padding: 0px;
  margin: 0 auto;
}
.banner-box01 .ul01 li {
  font-size: 100%;
  font-weight: 400;
  margin: 0px 8px /*0% 0.8%*/;
  text-align: center;
  line-height: 0px;
}
.banner-box01 .ul01 li a:hover {
  opacity: 0.8;
}
.banner-box01 .ul01 li img {
  width: 100%;
  border: 1px #ccc solid;
}


/**/
#content{
	width: 100%;
  	margin: 0;
}

/*cont-columnbox01*/
.cont-columnbox01{
    width: 100%;
  	max-width: 1200px;
    margin: 0 auto;
  	padding: 2em 0;
    display: -webkit-flex;
	display:flex;
  	justify-content: space-between;
}
.column-box-l{
	width: 65%;
}
.column-box-r{
	width: 32%;
}


/*cont-tit*/
.cont-tit01{
  	margin: .5em auto;
  	box-sizing: border-box;
  	border-left: 10px solid rgba(41,131,205,1.00);
  	color: rgba(41,131,205,1.00);
  	font-size: 160%;
  	font-weight: 600;
  	line-height: 30px;
  	padding-left: 1em;
}
.cont-tit01 .midashi01{ font-size: 200%; font-weight: 600; margin-right: .5em; }
.cont-tit01 .text01{ display: inline-block; font-size: 110%; }


/*News/おしらせ*/
.cont-news-box01{
	width: 100%;
  	margin: 0 auto;
}
.cont-news-box01 .cont-tit01{
	float: left;
  	font-size: 100%;
}
.kiji-btn01{
  	width: 150px;
    background: rgba(17,82,143,1.00);
	box-sizing: border-box;
  	border-radius: 10px;
    border: 1px solid rgba(17,82,143,1.00);
  	padding: 1em 1.5em;
  	color: #fff;
  	text-align: center;
  	transition: .3s;
    display: block;
  	float: right;
}
.kiji-btn01:hover{
	color: rgba(17,82,143,1.00);
  	background: #fff;
}
.cont-news-box01 .list01{
  	width: 100%;
  	margin: .5em 0;
  	padding: .5em 0;
	border-top: 3px dotted rgba(41,131,205,1.00);
}
.cont-news-box01 .list01 ul{
	padding: 0;
  	margin: 0;
}
.cont-news-box01 .list01 li{
	list-style: none;
  	border-bottom: 1px dotted #ccc;
  	margin: .5em 0;
  	padding: .5em 0;
}
.cont-news-box01 .list01 li a{
	margin-left: .5em;
}
.cont-news-box01 .list01 li p{
	font-size: 90%;
}

/*お役立ち情報/大会写真はこちら*/
.cont-useful-box01 .inner{
	width: 100%;
  	margin: 0 auto;
  	padding: 1em 0;
  	display: -webkit-flex;
  	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 3px dotted rgba(41,131,205,1.00);
}
.useful-bannerbox01,.photo-bannerbox01{
    width:49%;
  	margin-bottom: 10px;
  	padding: 0;
}
.cont-photo-box01.ex_links .photo-bannerbox01{
  	width: 32%;
  	border: 1px solid #ddd;
	/*width: 32.5%;*/
  	/*display: flex;
  	display: -webkit-flex;
  	align-items: center;
  	justify-content: center;*/
}

.useful-bannerbox01 img{
	width: 100%;
  	max-width: 100%;
	height: auto;
  	max-height: auto;
}

.cont-photo-box01 .inner{
	width: 95%;
  	max-width: 1200px;
  	margin: 0 auto;
  	padding: 1em 0;
  	display: -webkit-flex;
  	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 3px dotted rgba(41,131,205,1.00);
}
.photo-bannerbox01 img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
}


/*協賛社一覧*/
.kyosan-itiran-list{
  	width: 100%;
	margin: 0;
  	padding: 0;
}
.kyosan-itiran-list ul{
  	padding: 0;
  	display: -webkit-flex;
  	display: flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
}
.kyosan-itiran-list li{
	width: 49%;
	border: 1px solid #ddd;
  	box-sizing: border-box;
  	list-style: none;
  	margin-bottom: 10px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
}
.kyosan-itiran-list li img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
}
.kyosan-itiran-list .tit01{
	width: 100%;
  	margin:0 0 .5em 0;
  	text-align: center;
  	font-size: 150%;
  	font-weight: 600;
  	color: rgba(41,131,205,1.00);
}


/*facebook*/
.cont-fb-box01{
	width: 100%;
  	margin: 0 auto 1em auto;
  	box-sizing: border-box;
}
.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe[style]{
    width: 100% !important;
  	width: 100%;
  	margin: 0;
}
/*お天気をチェック/協賛社一覧*/
.cont-weather-box01,.cont-kyousan-box01{
	width: 100%;
  	margin: 0;
}
.cont-kyousan-box01{
	margin-bottom: 1em;
}
.cont-weather-box01 img,.cont-kyousan-box01 img{
	width: 100%;
    max-width: 100%;
    height: auto;
    max-height: auto;
}


/*外部サイトへのリンク*/
.cont-link-box01{
	width: 100%;
  	max-width: 1200px;
  	margin: 0 auto;
}
.cont-link-box01 .inner{
	width: 100%;
  	margin: 0 auto;
  	padding: 1em 0;
  	display: -webkit-flex;
  	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.link-bannerbox01{
	width: 32%;
}
.link-bannerbox01 img{
	width: 100%;
    max-width: 100%;
    height: auto;
    max-height: auto;
}

/*slide*/
#slider-content{
	width: 100%;
    margin: 0;
  	padding: 0;
  	position:relative;
}
#fadeslider {
	position: relative;
  	width: 100%;
  	overflow: hidden;
  	margin: 0;
  	padding: 0;
  	z-index: 1;
}
#fadeslider ul{
  	width: 100%;
  	margin: 0;
	padding: 0;
  	position: relative;
}
#fadeslider ul li{
  	width: 100%;
  	position: absolute;
	top: 0;
  	left: 0;
}
#fadeslider img{
	width: 100%;
    max-width: 100%;
    height: auto;
    max-height: auto;
}
#fadeslider ul::after{
	content: "";
	clear: both:
    display: block;
    visibility: hidden;
}
#fadeslider ul{
	display: inline-block;
  	overflow: hidden;
}


/*==============================================================================================================================================================================================================================================*/
/*ページリスト/記事*/


/*パンくずリスト*/
.pankuzu{
  	background: #20638c;
	width: 100%;
  	margin: 0 auto;
  	padding: .5em 0;
}
.pankuzu .inner{
	width: 100%;
  	max-width: 1200px;
  	margin: 0 auto;
  	color: #fff;
}
.pankuzu a{
	color: #fff;
}
.separator{
	margin: 0 .5em;
}

.cont-tit-box01{
  	background: #f2fafe;
	width: 100%;
  	margin: 0 auto;
  	padding: 1.5em 0;
}
.cont-tit-box01 .inner{
	width: 1200px;
  	margin: 0 auto;
  	padding-bottom: .5em;
  	border-left: none;
  	border-bottom: 2px dotted rgba(41,131,205,1.00);
    font-size: 180%;
  	font-weight: 600;
  	color: #20638c;
}
.cont-article-box01,.cont-article-box02{
	width: 1200px;
  	margin: 0 auto;
  	padding: 2em 0;
}


/*ページリスト*/
.cont-catebox01{
  	width: 100%;
	max-width: 1024px; 
  	margin: 0 auto;
  	display: -webkit-flex;
  	display: flex;
  	flex-wrap: wrap;
    justify-content: space-between;
}
.cate-element01{
  	background: url(../../img/shimada-marathon/article/marathon-background.png)no-repeat 100% 0%;
	width: 49%;
  	box-sizing: border-box;
  	border: 1px solid #ccc;
  	padding: 1.5em 1em;
  	margin-bottom: 1em;
	text-decoration:none;
  	color: #444;
  	transition: .5s;
}
.cate-element01:hover{
	background-color: #f2fafe;
  	background-position: 70% 0%;
}
.cate-element01 .tit{
    margin: 0 auto;
  	box-sizing: border-box;
  	padding: .1em;
  	font-size: 150%;
  	font-weight: 600;
  	color: rgba(41,131,205,1.00);
	border-bottom: 3px dotted rgba(41,131,205,1.00);
}
.cate-element01 .tit i{
	color: #20638c;
  	margin-right: .5em;
}


/*見出し/段落.テンプレート*/
.cont-article-box01 h1{
  	margin: 0 auto 1em auto;
  	box-sizing: border-box;
  	padding: .5em 1em;
  	border-radius: 5px;
  	font-size: 150%;
  	font-weight: 600;
  	color: #fff;
  	background: #20638c;
}
.cont-article-box01 h2{
  	position: relative;
	margin: 1em auto;
  	box-sizing: border-box;
  	padding-left: 1.5em;
  	font-size: 130%;
  	color: #20638c;
}
.cont-article-box01 h2:before{
    font-family: "Font Awesome 5 Free";
    font-family: FontAwesome;
  	position: absolute;
  	top: 4px;
  	left: 0;
  	padding: .2em .3em;
  	box-sizing: border-box;
	content: "\f054";
  	color: #fff;
  	font-size: 90%;
  	font-weight: 400;
  	background: #20638c;
  	border-radius: 5px;
}
.cont-article-box01 h3{
    color: #20638c;
}
.cont-article-box01 p{
	margin: .5em;
}
.cont-article-box01 img{
	text-align: center;
}

.cont-article-box01 ol{
	width 100%;
  	margin: 0 auto;
  	padding: 1em;
  	box-sizing: border-box;
    border: 2px solid #ddd;
  	border-radius: 10px;
  	list-style-type: #20638c;
}
.cont-article-box01 li{
	box-sizing: border-box;
  	padding: .5em;
  	margin-left: 2em;
}
.cont-article-box01 li:first-child{
	border-top: none;
}
.cont-article-box01 iframe{
	display: block;
  	margin: 0 auto;
}
.btn a{
  	margin: 1em auto;
  	display: inline-block;
    width: 100%;
  	max-width: 260px;
  	text-align: center;
	background: #333;
  	color: #fff;
  	box-sizing: border-box;
  	border: 1px solid #333;
  	padding: 1em;
  	border-radius: 10px;
  	font-weight: 600;
  	font-size: 90%;
  	transition: .3s;
  	text-decoration: none;
}
.btn a:hover{
	background: #fff;
  	color: #333;
}

.txt-summary-box01{
	width: 100%;
  	background: #eee;
  	margin: 1em auto;
  	padding: .5em;
  	box-sizing: border-box;
  	border-radius: 5px;
}
.txt-summary-box02{
	border: 2px solid #ddd;
  	box-sizing: border-box;
    border-radius: 5px;
  	padding: 1em;
}

/*table（表）*/
.cont-article-box01 table{
  border-collapse:collapse;
}
.cont-article-box01 td,.cont-article-box01 th{
  border:1px solid #ccecfa;
  padding:10px;
}
.cont-article-box01 th{
  background: #f2fafe;
  text-align: center;
  color: #20638c;
}
.cont-article-box01 td{
	background: #fff;
}

/*btn*/
.cont-linkbtn01{
	background: #0e84bc;
	width: 250px;
	display: block;
	margin: 1em auto;
	padding: 1em;
	border: 1px solid #0e84bc;
	text-align: center;
	font-weight: 600;
	color: #fff;
	transition: .3s;
}
.cont-linkbtn01:hover{
	background: rgba(255,255,255,0.9);
	color: #0e84bc;
}
.cont-linkbtn02{
	background: #ff7700;
	width: 100%;
	display: block;
	margin: 1em auto;
	padding: 1em;
	border: 1px solid #ff7700;
    box-sizing: border-box;
	text-align: center;
    font-size: 1.4em;
	font-weight: 600;
	color: #fff;
	transition: .3s;
}
.cont-linkbtn02:hover{
	background: rgba(255,255,255,0.9);
	color: #ff7700;
}

/*大会の特徴*/
.fea-main-txt01{
	padding: 1.5em;
  	box-sizing: border-box;
  	margin: 0 auto 1em auto;
  	border-radius: 5px;
  	background: #d0efff;
  	color: #20638c;
  	text-align: center;
}
.fea-box01{
	width: 100%;
  	padding-bottom: 1em;
  	margin: 0 auto 1em auto;
  	box-sizing: border-box;
  	border-bottom: 1px dotted #ccc;
}
.fea-tit01,.fea-tit02,.fea-tit03,.fea-tit04,.fea-tit05,.fea-tit06{
  	margin: 0 auto;
  	box-sizing: border-box;
  	padding-left: 3em;
    position: relative;
  	line-height: 1.5em;
  	font-size: 160%;
	color: #0e84bc;
  　display:block;
  	margin:30px 0;
}
.fea-tit01:before{
  	content: "";
	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	width: 65px;
  	height: 60px;
  	margin: auto;
  	background: url(../../img/shimada-marathon/article/point-icon.png)no-repeat;
}
.fea-txt01{
	color: #444;
  	margin: 0;
}

.fea-imgbox01{
	width: 100%;
  	margin: 0 auto;
  	padding: 1em 0;
  	display: -webkit-flex;
  	display: flex;
	justify-content: space-between;
}
.fea-img01{
	width: 49%;
}
.fea-img01 img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
}
.fea-img02{
	width: 32%;
}
.fea-img02 img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
}

.fea-inner{
  	width: 100%;
	display: -webkit-flex;
  	display: flex;
  	justify-content: space-between;
  	flex-wrap: wrap;
}
.fea-inner .fea-tit01{
  	font-size: 130%;
  	padding-left: 3.5em;
}
.fea-l-box01{
	width: 43%;
  	display: -webkit-flex;
  	display: flex;
    justify-content: center;
    align-items: center;

}
.fea-r-box01{
	width: 55%;
}
.fea-l-box01 img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
}
.fea-inner .cont-linkbtn01{
	margin-right: 0;
  	padding: .5em;
  	width: 150px;
}

/*アクセス・交通規制*/
.acc-flexbox01{
	width: 100%;
  	margin: 0 auto;
  	display: -webkit-flex;
  	display: flex;
	justify-content: space-between;
}
.acc-l-box01{
	width: 49%;
}
.acc-r-box01{
	width: 49%;
}
.acc-img01{
	width: 100%;
  	margin: 0 auto 2em auto;
}
.acc-img01 img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
}
.acc_sub_txt01{
	width: 100%;
  	margin: 1em auto;
  	padding: 1em;
  	box-sizing: border-box;
  	background: #eee;
  	border-radius: 5px;
}

/*大会お申込み*/
.moushikomi-box01{
  	width: 100%;
  	margin-bottom: 2em;
	display: -webkit-flex;
  	display: flex;
  	justify-content: space-between;
}
.moushikomi-box01 .img{
	width: 49%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.moushikomi-box01 .img img{
	width: 100%;
  	max-width: 490px;
 	height: auto;
  	max-height: auto;
}
.moushikomi-box01 .inner{
	width: 49%;
	display: -webkit-flex;
  	display: flex;
  	justify-content: space-between;
}
.moushikomi-element01,.moushikomi-element02{
  	width: 49%;
  	padding: 1em;
  	box-sizing: border-box;
  	border: 2px solid #11a690;
  	border-radius: 5px;
}
.moushikomi-element02{
  	border: 2px solid #2b8ac8;
}
.moushikomi-element01 .tit,.moushikomi-element02 .tit{
	font-weight: 600;
  	font-size: 160%;
  	box-sizing: border-box;
  	padding: 0 0 .5em 0;
  	margin: 0 auto .5em auto;
  	border-bottom: 10px solid #11a690;
  	text-align: center;
  	color: #11a690;
}
.moushikomi-element02 .tit{
	border-bottom: 10px solid #2b8ac8;
  	color: #2b8ac8;
}
.moushikomi-element01 .time,.moushikomi-element02 .time{
	font-weight: 600;
  	font-size: 110%;
  	text-align: center;
  	color: #222;
}
.moushikomi-element01 .url,.moushikomi-element02 .url{
	margin: 2em auto 0 auto;
}
.moushikomi-element01 .url a,.moushikomi-element02 .url a{
	display: block;
  	width: 80%;
  	margin: 0 auto;
  	background: #0B4F9F;
  	color: #fff;
  	padding: 1em;
  	text-align: center;
    box-sizing: border-box;
  	border: 1px solid #0B4F9F;
  	border-radius: 5px;
}



/*=================================================================================================================================================================================================================================================*/
/*イベント*/
/*おもてなし広場「しま旨っ！」*/
.cont-fureai-box01{
	width: 100%;
  	max-width: 1200px;
  	margin: 0 auto;
}
.cont-fureai-box01 ul{
  	box-sizing: border-box;
	padding: 1em;
  	margin: 0;
  	background: rgba(255,243,201,1.00);
  	border-radius: 10px;
}
.cont-fureai-box01 li{
  	padding-left: 2em;
	list-style: none;
  	line-height: 40px;
  	position: relative;
  	border-bottom: 1px dotted #FF7F00;
}
.cont-fureai-box01 li:last-child{
	border-bottom: none;
}
.cont-fureai-box01 li:before{
    font-family: "Font Awesome 5 Free",'Quicksand','Avenir','Arial',sans-serif;
    font-family: FontAwesome;
  	content: "\f138";
	position: absolute;
  	left: 0;
  	width:	20px;
  	height: 20px;
  	color: #FF7F00;
  	font-size: 120%;
}
/*.cont-fureai-box01 a{
  	margin: 1em auto;
  	display: inline-block;
  	width: 150px;
  	text-align: center;
	background: #FFB000;
  	color: #333;
  	box-sizing: border-box;
  	border: 1px solid #FFB000;
  	margin-right: 5px;
  	padding: 1em;
  	border-radius: 10px;
  	font-weight: 600;
  	transition: .3s;
  	text-decoration: none;
}
.cont-fureai-box01 a:hover{
	background: #fff;
  	color: #FFB000;
}*/
.fureai-txt01{
  	width: 95%;
  	margin: 1.5em auto;
	box-sizing: border-box;
  	padding: 1.5em;
  	border-radius: 10px;
  	border: 2px solid #FFB000;
}
.cont-fureai-box01 ul.flex-box-3column{
  	background: none;
}
.cont-fureai-box01 ul.flex-box-3column li{
	border-bottom: 0;
  	padding: 10px;
}
.cont-fureai-box01 ul.flex-box-3column li::before{
  	display: none;
}


/*しまだ乾杯タウン*/
.cont-kanpai-box01{
	max-width: 1200px;
  	margin: 0 auto;
}
.cont-kanpai-box01 h1{
	font-size: 140%;
  	color: #911010;
}
.cont-kanpai-box01 a{
  	max-width: 230px;
	display: block;
  	margin: 0 auto;
  	box-sizing: border-box;
  	padding: 1em;
  	border-radius: 10px;
  	border: 1px solid #911010;
  	background: #911010;
  	color: #fff;
  	text-align: center;
  	transition: .3s;
}
.cont-kanpai-box01 a:hover{
	background: #fff;
  	color: #911010;
}
.cont-kanpai-box01 ul{
  	margin: 2em auto;
	padding: 1em;
  	box-sizing: border-box;
  	border: 1px solid #911010;
  	border-radius: 10px;
}
.cont-kanpai-box01 li{
  	padding-left: 2em;
	list-style: none;
  	line-height: 40px;
    position: relative;
}
.cont-kanpai-box01 li:before{
    font-family: "Font Awesome 5 Free",'Quicksand','Avenir','Arial',sans-serif;
    font-family: FontAwesome;
  	content: "\f00c";
	position: absolute;
  	left: 0;
  	color: #911010;
  	font-size: 120%;
}

/*マラソン完走塾*/
.cont-kansou-box01{
	width: 100%;
  	max-width: 1200px;
  	margin: 0 auto 3em auto;
}
.cont-kansou-box01 h1{
  	margin: 2em auto 1em auto;
  	box-sizing: border-box;
  	padding: .5em 1em;
  	border-radius: 5px;
  	font-size: 150%;
  	font-weight: 600;
  	color: #fff;
  	background: #20638c;
}
.cont-kansou-box01 h2 {
    position: relative;
    margin: 1em auto;
    box-sizing: border-box;
    padding-left: 1.5em;
    font-size: 130%;
    color: #20638c;
}
.cont-kansou-box01 h2:before {
    font-family: "Font Awesome 5 Free";
    font-family: FontAwesome;
    position: absolute;
    top: 4px;
    left: 0;
    padding: .2em .3em;
    box-sizing: border-box;
    content: "\f054";
    color: #fff;
    font-size: 90%;
    font-weight: 400;
    background: #20638c;
    border-radius: 5px;
}

/*しまだおもてなし券*/
.omotenashi-content01{
   display:flex;
}

.omotenashi-img-box01{
   width:40%;
}

.omotenashi-img-box01 img{
   width:90%;
}

.omotenashi-txt-box01{
  width:60%;
  padding:1.2em;
  border-radius:6px;
  border:solid 2px #64401D;
  box-sizing:border-box;
}

.omotenashi-txt-box01 p{
  color:#64401D;
  font-size:1.2em;
}

.omotenashi-content02{
  text-align:center;
  margin-top:3em;
  margin-bottom:3em;
}

.omotenashi-pc-img-box02{
  width:100%;
}

.omotenashi-sp-img-box02{
  display:none;
}

.omotenashi-txt-box02{
  width:100%;
  padding:1em;
  background:#eee;
  margin:1em auto;
  border-radius:5px;
  box-sizing:border-box;
}

.touroku-btn-box{
  margin-top:3em;
}

.touroku-btn{
  display:block;
  background:#333;
  width:250px;
  text-align:center;
  color:#fff;
  margin:1em auto;
  padding:1em;
  text-decoration: none;
  border: solid 2px #333;
  border-radius:10px;
}

.touroku-btn:hover{
  background:#fff;
  color:#333;
}

.omotenashi_pdf{
  color:#333;
  text-decoration:underline;
}

.omotenashi_pdf:hover{
  color:#FFB000;
}

/*table（表）*/
.cont-kansou-box01 caption{
	margin: 0 auto .5em auto;
	font-size:130%;
	font-weight: 600;
	color: #444;
}
.cont-kansou-box01 table{
    border-collapse: separate;
    border-spacing: 0 10px;
    margin:0 auto 1em auto;
    padding: .5em 1em;
    box-sizing: border-box;
    border: 3px solid #ddd;
    border-radius: 10px;
}
.cont-kansou-box01 td,th{
    padding:10px;
}
.cont-kansou-box01 th{
    background: #20638c;
    border-radius: 10px;
    color: #fff;
}
.cont-kansou-box01 td{
	background: #fff;
  	border-bottom:dashed 1px #ddd;
}
.cont-kansou-box01 .btn a{
  	margin:1em auto;
  	/*display: block;*/
  	max-width: 220px;
  	text-align: center;
	background: #FFB000;
  	color: #333;
  	box-sizing: border-box;
  	border: 1px solid #FFB000;
  	padding: 1em;
  	border-radius: 10px;
  	font-weight: 600;
  	transition: .3s;
  	text-decoration: none;
}
.cont-kansou-box01 .btn a:hover{
	background: #fff;
  	color: #FFB000;
}

/*サマリー*/
.cont-kansou-txt01{
	text-align: center;
  	padding: 2em 0;
    line-height: 2em;
}

/*ボタン２種*/
.album-btn{
  	margin: 2em auto 1em auto;
  	display: block;
  	width: 30%;
  	text-align: center;
	background: #FFB000;
  	color: #333;
  	box-sizing: border-box;
  	border: 1px solid #FFB000;
  	padding: 1em;
  	border-radius: 10px;
  	font-weight: 600;
  	transition: .3s;
  	text-decoration: none;
}
.album-btn:hover{
	background: #fff;
  	color: #FFB000;
}

.situation-btn{
  	margin: 1em auto 2em auto;
  	display: block;
  	width: 30%;
  	text-align: center;
	background: #333;
  	color: #fff;
  	box-sizing: border-box;
  	border: 1px solid #333;
  	padding: 1em;
  	border-radius: 10px;
  	font-weight: 600;
  	transition: .3s;
  	text-decoration: none;
}
.situation-btn:hover{
	background: #fff;
  	color: #333;
}
/*指導・講師*/
.kan-koushi-box01{
	width: 100%;
  	margin: 0 auto 1em auto;
  	padding-bottom: 1em;
  	border-bottom: 1px dotted #ddd;
  	display: -weblit-flex;
  	display:flex;
  	justify-content: space-between;
}
.koushi-l-box01{
	width: 24%;
    display: flex;
    justify-content: center;
    align-items: center;
  	box-sizing: border-box;
  	border: 1px solid #ddd;
}
.koushi-l-box01 img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
}
.koushi-r-box01{
	width: 75%;
}
/*名前*/
.koushi-name01{
  	margin: 0 auto 1em auto;
	padding: 0.5em 0;
  	border-bottom: 1px solid #ddd;
  	overflow: hidden;
}
.koushi-name01:before,.koushi-name01:after{
	content: "";
  	display: block;
  	clear:both;
}
.koushi-name01 h2{
	font-size: 110%;
  	margin: 0;
  	float: left;
}
.koushi-name01 p{
  	margin: 0;
  	padding-left: 1.5em;
	float: left;
}
/*テキスト*/
.koushi-txt01{
  	padding: 1em;
  	background: #ddd;
}
/*ベストタイム*/
.koushi-btime{
  	width: 70%;
  	margin: 1em 0 0 0;
  	box-sizing: border-box;
  	position: relative;
  	background: #ddd;
  	padding: 1em 0;
  	padding-left: 8.5em;
}
.koushi-btime:before{
	content: "ベストタイム";
  	position: absolute;
  	top: 0;
  	left: 0;
	background: #3db3dc;
  	color: #fff;
  	padding: 1em;
}

.kan_caution_tit01{
  	margin-bottom: 1em;
	padding: 1em;
  	color: #fff;
  	font-size: 120%;
  	background: #ff7f00;
  	border-radius: 5px;
}
.kan_caution_list01 ol{
	box-sizing: border-box;
  	border: 2px solid #ff7f00;
  	margin: 0 auto;
  	padding: 1em;
  	border-radius: 5px;
}
.kan_caution_list01 li{
	border-bottom: 1px solid #ddd;
  	padding: .5em 0;
  	list-style-position: inside;
}


/*アルバム/大会記録*/
.cont-kiroku-box01,.cont-album-box01{
	width: 100%;
  	max-width: 1200px;
  	margin: 0 auto;
}
.cont-kiroku-box01 .inner{
  	padding: 1em 0 2em 0;
  	display: flex;
  	display: -webkit-flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
}

.cont-album-box01 .inner{
  	padding: 1em 0 2em 0;
  	display: -webkit-flex;
  	display: -webkit-flex;
  	flex-wrap: wrap;
  	justify-content: space-between;
}

.kiroku-element01,.album-element01{
	width: 49%;
  	border: 3px solid #ddd;
  	box-sizing: border-box;
  	padding: 1em 1em 0 1em;
  	margin-bottom: 20px;
}
.kiroku-element01 .tit,.album-element01 .tit{
	font-size: 140%;
  	font-weight: 600;
  	padding-bottom: .5em;
  	border-bottom: 2px dotted #ccc;
    margin-bottom: 5px;
}
.kiroku-element01 .date,.album-element01 .date{
  	color: #444;
}
.kiroku-element01 .element-btn{
  	width: 80%;
	padding: 1em 0;
  	margin: 1em auto;
	display: block;
  	background: #015db2;
  	color: #fff;
  	text-align: center;
  	box-sizing: border-box;
  	border: 1px solid #015db2;
  	transition: .3s;
}
.kiroku-element01 .element-btn:hover{
	background: #fff;
  	color: #015db2;
}

.album-element01 .element-btn{
	padding: 1em 0;
  	margin: 1em auto;
	display: block;
  	background: #fff;
  	color: #015db2;
  	text-align: center;
  	box-sizing: border-box;
  	border: 1px solid #015db2;
  	transition: .3s;
}
.album-element01 .element-btn:hover{
	opacity:.3;
}

.album-img,.kiroku-img{
	width: 100%;
  	margin: 1em auto;
}
.album-img img,.kiroku-img img{
	width: 100%; 
    max-width: 100%;
    height: auto;
    max-height: auto;
}


/*マラソン結果-テンプレート*/
.ma-kekka-box{
	width: 100%;
  	margin: 2em auto;
  	display: -webkit-flex;
  	display: -webkit-flex;
  	justify-content: space-between;
}
.kekka-l{
	width: 49%;
}
.kekka-l h1{
	background: #00a2e6;
  	font-weight: 130%;
  	margin-bottom: .5em;
}
.kekka-r{
	width: 49%;
}
.kekka-r h1{
	background: #ea639a;
  	font-weight: 130%;
  	margin-bottom: .5em;
}
.ma-kekka-box a{
  	display: block;
  	box-sizing: border-box;
  	border: 3px solid #ddd;
  	border-radius: 10px;
  	color: #444;
	text-decoration: none;
  	padding: 1em;
  	margin:	.5em auto;
  	transition: .3s;
}
.ma-kekka-box a:hover{
	opacity:.5;
}

/*よくあるご質問*/
.faq-box01{
	margin-bottom: 1em;
  	padding: 1em;
  	box-sizing: border-box;
  	border: 3px solid #ddd;
}
.faq-element-q{
	position:relative;
  	padding-left: 2.5em;
    padding-bottom: 1em;
  	margin: 1em auto;
  	border-bottom: 3px dotted #ddd;
}
.faq-element-q:before{
	content: "";
  	padding: .3em;
  	width: 20px;
  	height: 20px;
  	text-align: center;
  	background: url(../../img/shimada-marathon/article/qa_q_mark1.gif)no-repeat;
  	border-radius: 5px;
  	position: absolute;
  	top: 5px;
  	left: 0;
  	margin: auto;
}
.faq-element-a{
	position:relative;
  	padding-left: 2.5em;
  	margin: 1em auto;
}
.faq-element-a:before{
	content: "";
  	padding: .3em;
  	width: 20px;
  	height: 20px;
  	text-align: center;
  	background: url(../../img/shimada-marathon/article/qa_a_mark1.gif)no-repeat;
  	position: absolute;
  	top: 5px;
  	left: 0;
  	margin: auto;
}


/*お問い合わせが不要な場合、表示しない*/
footer.contact{
	display: none;
}


/*大会アルバム-ページリスト*/
.album_nend_list{
	width: 100%;
  	padding: 2em 0;
  	display: -webkit-flex;
  	display: flex;
  	justify-content: space-between;
  	flex-wrap: wrap;
}
.album_nend_list a{
	width: 49%;
  	display: block;
  	box-sizing: border-box;
  	border: 1px solid #ddd;
  	margin-bottom: 1em;
  	color: #fff;
}
.album_nend_list .a-tit{
	background: rgba(17,82,143,1.00);
  	padding: 1em;
  	font-size: 110%;
  	font-weight: 500;
  	text-align: center;
}
.album_nend_list .a-img{
  	width: 100%;
  	height: 300px;
  	margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.album_nend_list img{
	max-width: 100%;
  	max-height: 100%;
  	height: auto;
  	max-height: auto;
}


/* ========================================================================================================================================================================================================================================== */
/*テンプレート*/
.float-cont{
	width: 100%;
    margin: 0 auto;
    overflow: hidden;
    clear: both;
}
.float-cont p{
	margin: 0 auto;
}
.float-right{/*右回り込み*/
    margin-bottom: 10px !important;
    margin-left: 20px !important;
	float: right;
    clear: both;
}
.float-left{/*左回り込み*/
    margin-bottom: 10px !important;
    margin-right: 20px !important;
    float: left;
	margin: 0 0 1em 1.5em;
    clear: both;
}


/*画像中央寄せ*/
.article-img01{
	width: 100%;
	margin: 0 auto .8em auto;
	padding: 0;
	text-align: center;
}
.article-img01 img{}



/*画像横並び*/
.img-listbox:after,.img-listbox:before {
    content: "";
    clear: both;
    display: block;
}
ul.img-listbox {
	background: none;
}
.img-listbox,.img-listbox li{
  	overflow: hidden;
    margin: 0;
  	padding: 0;
}
.img-listbox li{
  	position: static;
  	border: none;
	list-style: none;
  	float: left;
    width: 24%;
  	display: block;
  	margin-right: 15px;
  	margin-bottom: 5px;
}
.img-listbox li:before{
	display: none;
}
.img-listbox li:nth-child(4n+1){
  	clear: both;
}
.img-listbox li:nth-child(4n){
  	margin-right: 0;
}
.img-listbox li img{
	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
  	margin: 0;
}


/*アルバム*/
.album-slide img{
 	width:auto;
 	max-width:100%;
}
.album-slide{
 	width:100%;
 	margin:0 auto;
 	text-align:center;
}
.main-img{
	width: 100%;
  	height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
  	margin-bottom: 2em;
  	box-sizing: border-box;
  	border: 2px solid #ddd;
}
.main-img img{
   	width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
}
.list-img{
  	width: 100%;
 	margin:0 auto;
 	padding: 1em 0;
  	display: -webkit-flex;
  	display: flex;
  	justify-content: space-between;
  	flex-wrap: wrap;
  	border-top: 2px dotted #ddd;
}
.list-img li{
  	width: 23%;
  	height: 175px;
  	margin: 0;
  	margin-bottom: 1em;
  	padding: 0;
	list-style: none;
  	border-top: none;
  	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  	overflow: hidden;
  	border: 1px solid #ddd;
}
.list-img img{
 	width: 100%;
  	max-width: 100%;
  	height: auto;
  	max-height: auto;
}  
.list-img::before{
    content:"";
    display: block;
    width:23%;
    order:1;
}
.list-img::after{
    content:"";
    display: block;
    width:23%;
}
.cont-article-box01 .list-img li{
	border-top: none;
}

.cont-article-box01 .list-img li{
	padding: 0;
}



.list01 ul{
	margin: 0;
  	padding: 0;
}
.list01 ul li{
	list-style: none;
  	margin-left: 0;
  	padding: 1em 0;
  	border-bottom: 1px solid #ddd;
}
.list01 ul li a{
  	font-size: 110%;
  	font-weight: 600;
  	color: rgba(41,131,205,1.00);
  	padding-left: 1em;
} 



.flex{
  display: flex;
  justify-content: center;
  align-items: center;

}


/**/
.cont-kyousan-box01{
  	box-sizing: border-box;
	display: block;
  	padding: 1em;
  	color: #fff;
  	background: rgba(17,82,143,1.00);
  	border: 1px solid rgba(17,82,143,1.00);
  	text-align: center;
  	font-weight: 600;
  	font-size: 110%;
  	margin-bottom: 1.5em;
}
.cont-kyousan-box01 i{
	font-size: 120%;
  	margin-right: .5em;
}


/*メールフォーム*/
.inquiry-form{
	padding: 1em;
  	background: #FFF4E0;
}

fieldset.column{
	margin-top: 30px;
    padding-bottom: 30px;
  	border: none;
  	border-bottom: 1px dotted rgb(169, 169, 169);
}
fieldset.column:fast-child{
}
fieldset.column legend label{
  font-size: 110%;
  padding-left: 20px;
  position: relative;
}
fieldset.column legend label::before{
    font-family: FontAwesome;
    content: "\f067";
    color: #20638c;
    position: absolute;
    top: 6px;
    left: 0;
    box-sizing: border-box;
    font-size: 90%;
    font-weight: 400;
}
fieldset.column legend span.required{
  	font-weight: 600;
    color: red;
  	margin-left: 10px;
}
.cont-article-box01 fieldset.column p{  }

.inquiry-form footer.send input{
  	display: block;
  	width: 200px;
	padding: 1em 1.5em;
  	margin:1em auto;
  	background: #0B4F9F;
  	border:1px solid #0B4F9F;
  	color: #fff;
  	transition: .3s;
}
.inquiry-form footer.send input:hover{
	background: #fff;
  	color: #0B4F9F;
}

.inquiry-form fieldset .fields textarea {
    width: 100%;
    min-height: 200px;
}

#content img{
	max-width: 100%;
}


.banner_10th{
  display: block;
  vertical-align: bottom;
  text-align: center;
  margin-bottom: 1em;
  background: rgba(41,131,205,1.00);
}
.banner_10th img{
  vertical-align: bottom;
  max-width: 100%;
  width: auto;
  height: auto;
  border: 3px solid rgba(17,82,143,1.00);
  box-sizing: border-box;
  transition: .7s;
}
.banner_10th img:hover{
 opacity: .4;
}


/* 20190502 */

.vol-btn-box { margin: 0px auto; width: 520px; display: flex; justify-content: space-between; }
.vol-btn { width: 250px; text-align: center; display: inline-block; }



/* トップ-エントリーページへのリンクボタン */

.slider-cont{
  width: 100%;
  margin: 0 auto;
 position: relative;
  overflow: hidden;
}

.slider-logo-cont{
  position: absolute;
  top: 5%;
  left: 10%;
  margin: auto;
  width: 17vw;
  height: auto;
  z-index: 2;
}
.slider-logo-cont img{
  max-width: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}

.entry-btn-cont{
  position: absolute;
  top: 5%;
  right: 18%;
  margin: auto;
  width: 400px;
  display: block;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: center;
  z-index: 2;
}
.entry-btn-cont span{
  font-size: 130%;
  color: red;
}
.entry-link-btn{
  display: block;
  width: 49.5%;
  box-sizing: border-box;
  border-radius: 5px;
  background-size: auto auto;
  background-color: rgba(184, 229, 60, 1);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(160, 208, 27, 1) 6px, rgba(160, 208, 27, 1) 16px );
  border: 3px solid #fff;
  padding: 20px;
  text-align: center;
  color: #222;
  font-size: 95%;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 8px #222;
  transition: .5s;
}
.entry-link-btn:hover{
  background-color: rgba(184, 229, 60, .7);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(160, 208, 27, .7) 6px, rgba(160, 208, 27, .7) 16px );
}
.item-link-btn{
  display: block;
  max-width: 420px;
  width: 70%;
  margin-left: auto;
  margin-right: 0;
  box-sizing: border-box;
  border-radius: 5px;
  background-size: auto auto;
  background-color: rgba(255, 166, 70, 1);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(255, 150, 36, 1) 6px, rgba(255, 150, 36, 1) 16px );
  border: 4px solid #fff;
  padding: 10px;
  text-align: center;
  color: #222;
  font-size: 90%;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 0 8px #222;
  transition: .5s;
}
.item-link-btn:hover{
  background-color: rgba(255, 166, 70, .7);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 6px, rgba(255, 150, 36, .7) 6px, rgba(255, 150, 36, .7) 16px );
}
.item-link-btn img{
  max-width: 100%;
  width: auto;
  height: auto;
}


.held-banner{
  background: rgba(23,47,91,.9);
  padding: 12px;
  box-sizing: border-box;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  color: #fff;
  text-align: center;
  font-weight: 600;
  z-index: 3;
}
.held-text01{ font-size: 180%; }
.held-banner span.mtit{
  margin-left: 10px;
}
.held-banner span.sub{
  color: #F49E1F;
  font-size: 140%;
}
.held-inner{
  max-width: 545px;
  width: 95%;
  margin: 0 auto;
  position: relative;
}
/*
.held-inner::before{
  background: url(../../img/shimada-marathon/top/held_hyakusen.png)no-repeat;
  width: 92px;
  height: 111px;
  content: '';
  position: absolute;
  left: -100px;
  bottom: 5px;
  z-index: 100;
}
*/
.held-pamp-banner{
  display: block;
  background: #71B22D;
  max-width: 290px;
  font-size: 15px;
  margin: 10px auto 10px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #71B22D;
  border-radius: 5px;
  color: #fff;
  font-weight: 400;
  transition: .5s;
}
.held-pamp-banner:hover{
  background: #fff;
  color: #71B22D;
}


.sp-br{ display: none; }


.cont-article-box01 ul{ padding: 0; }


/*カウントダウン*/
.head-timer-container{ margin-left: auto; margin-right: 15px; }
.head-timer-container h2{ margin: 0; color: #0773d8; font-size: 140%; }
.head-timer-container h2 span{ color: #222; }
.head-timer-container h2 span.date{ margin-left: 15px; font-size: 140%; }
.head-timer-container h2 span.day{ font-size: 80%; }
#timer2{
  display: flex;
  display: -webkit-flex;
  align-items: baseline;
  justify-content: center;
}
#timer2 p{ margin-top: 0; margin-bottom: 0; margin-right: 10px; }
.yycountdown-box{
  text-align:center;
  font-size: 150%;
  letter-spacing: .1em;
}
.yycountdown-box .yyc-day,
.yycountdown-box .yyc-hou,
.yycountdown-box .yyc-min,
.yycountdown-box .yyc-sec{
  font-size: 130%;
  color: #69cdff;
}
.yyc-day-text{ margin-right: 5px; color: #fff; }


/**/
.link-slidebox01{
	overflow: hidden;
  	width: 100%;
  	height: 100%;
  	position: absolute;
    top:0;
    left: 0;
    margin: auto;
    background: rgba(19,35,69,.5);
    color: #fff;
  text-align: right;
}
.link-slidebox01 h1{
  position: absolute;
  top: 60%;
  right: 1%;
  margin: 0;
  font-size: 24px;
}
.link-slidebox01.link02 h1{
  position: absolute;
  top: 45%;
  right: 1%;
  margin: 0;
  font-size: 24px;
}
.link-slidebox01 h2 {
  position: absolute;
  top: 70%;
  right: 1%;
  margin: 0;
  font-size: 20px;
}
.link-slidebox01 h3 {
  position: absolute;
  top: 80%;
  right: 2%;
  margin: 0;
  font-size: 15px;
  padding: 10px 25px;
  box-sizing: border-box;
  border: 1px solid #fff;
}




/* PagiNation
--------------------------- */
.pagiNation {
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 15px;
    text-align: center;
    position: fixed; /* absolute or fixed */
    z-index: 110; /* 非表示にする場合は「90」以下に */
    visibility: visible; /* 非表示にする場合は「hidden」に */
}
 
.pagiNation a {
    margin: 0 5px;
    width: 20px;
    height: 20px;
    display: inline-block;
    overflow: hidden;
    background: #000;
}
.pagiNation a.pnActive {
    filter:alpha(opacity=100)!important;
    -moz-opacity: 1!important;
    opacity: 1!important;
}



.home-content-background{
  width: 100%;
  margin: 0 auto;
  padding: 2em 0;
  background: url(../../img/shimada-marathon/top/entry_banner/interlaced.png);
}

.entry-column-content{
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  display: flex;
  display: -webkit-flex;
  /*justify-content: space-between;*/
  justify-content: center;
  flex-wrap: wrap;
}

.entry-column-element{
  width:50%;
  height: 265px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  border: 4px solid #fff;
  overflow: hidden;
}

.entry-column-element img{
  position: absolute;
  top:70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 400px;
  vertical-align: bottom;
  transition: .5s;
}

.entry-column-element .hover-btn{
  display: block;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(19,35,69,.7);
  overflow: hidden;
  transition: .5s;
  z-index: 2;
}
.entry-column-element .hover-btn:hover {
   background: rgba(19,35,69,.4);
}

.entry-column-element .hover-btn .inner{
  position: absolute;
  top: -15%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 20%;
  color: #fff;
}

.entry-column-element:first-child .hover-btn .inner{ top:-10%; }

.entry-column-element .hover-btn h1{ font-size: 140%; margin: 0; }
.entry-column-element .hover-btn h1.change-font-size{ font-size: 100%; }
.entry-column-element .hover-btn h2{ font-size: 100%; font-weight: 400; margin: 10px 0 0; }
.entry-column-element .hover-btn h3{ 
  font-size: 130%; 
  margin: 0; 
  bottom: 0;     
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}

.entry-column-element .hover-btn .h3{top:45%;}
.entry-column-element .f-h3{top:76%!important;}
.entry-column-element:first-child { width: 33.3%; }
.entry-column-element:first-child .hover-btn h1 { font-size: 140%; line-height:1.2;}
.entry-column-element:nth-child(2) .hover-btn h1 { font-size: 140%; line-height:1.6;}
.entry-column-element:nth-child(3) .hover-btn h1 { font-size: 140%; line-height:1.6;}
.entry-column-element:nth-child(4) .hover-btn h1 { font-size: 140%; line-height:1.6;}

.entry-column-element:nth-child(2),
.entry-column-element:nth-child(3),
.entry-column-element:nth-child(4){ width: 33.3%; }

.entry-column-element:first-child .hover-btn h3{top:65%;}
.entry-column-element:nth-child(2) .hover-btn h3{top:130%;}
.entry-column-element:nth-child(3) .hover-btn h3{top:130%;}

/*20231016*/

.entry-column-link{
  width:calc(33.3% - 4px);
  height:265px;
  margin:0;
  padding:0;
  border:solid 4px #fff;
  box-sizing:border-box;
  position:relative;
  z-index:1;
  overflow:hidden;
  text-decoration:none;
  color:#fff;
}

.entry-column-link:before{
  content:"";
  width:100%;
  height:265px;
  background:rgba(19,35,69,.7);
  position:absolute;
  transition:.5s;
}

.entry-column-link:hover:before{
  background:rgba(19,35,69,.4);
}

.entry-column-link:first-child{
  background:url(https://www.shimada-marathon.jp/img/shimada-marathon/top/entry_banner/midashi_banner01.jpg) no-repeat;
  background-size:cover;
}

.entry-column-link:nth-child(2){
  background:url(https://www.shimada-marathon.jp/img/shimada-marathon/top/entry_banner/top_4_banner_back01.jpg) no-repeat;
  background-size:cover;
}

.entry-column-link:nth-child(3){
  background:url(https://www.shimada-marathon.jp/img/shimada-marathon/top/entry_banner/entry_banner03.jpg) no-repeat;
  background-size:cover;
}

.entry-column-inner{
  width: 90%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.entry-column-inner h1{
  font-size:140%;
  line-height:1.2;
  margin:0 0 20px 0;
}
.entry-column-inner h3{
  font-size:130%;
  line-height:1.2;
  margin:0;
}

/*20190801*/
.pr_tai_table{
  margin: 0;
  padding: 0;
  position: relative;
  background: #444;
  overflow: hidden;
}

.pr_tai_table .background_div{
  background: #444;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: .8;
}

.pr_tai_table.first .txt-summary-box01{
  position: absolute;
  width: 90%;
  height: 200px;
  top: 10%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}
.pr_tai_table.second .txt-summary-box01{ 
  position: absolute;
  width: 90%;
  height: 200px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}



/*form-bottom__border-line*/
.form-bottom__border-line{
  position: relative;
}


.top-pamp-banner{
  display: block;
  padding: 15px;
  padding-right: 45px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #ec7800;
  background: #ec7800;
  color: #fff;
  position: relative;
  transition: .3s;
}
.top-pamp-banner:hover{
  background: #fff;
  color: #ec7800;
}
.top-pamp-banner::after{
  font-family: FontAwesome;
  content: '\f1c1';
  font-size: 110%;
  position: absolute;
  top: 18px;
  right: 15px;
}



.form-flex-container .inquiry-form div.columns{
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form-flex-container .inquiry-form div.columns fieldset.column{
  width: 49%;
}



/*slider*/
#top-slider-container{
    position: relative;
}
#top-slider-container .sp-buttons{
    position: absolute;
    bottom: 0;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}
#top-slider-container .sp-button{ 
    border-radius: 0;
    width: 100%;
    margin: 0;
    border: none;
    border-right: 2px solid rgba(255,255,255,.6);
    background: rgba(0,0,0,.4);
}
#top-slider-container .sp-button:last-child{ border-right: none; }
#top-slider-container .sp-selected-button{ 
    background: rgba(255,255,255,.9);
    position: relative;
}
#top-slider-container .sp-selected-button::before{
    position: absolute;
    content: '';
    top: -20px;
    right: 0;
    left: 0;
    margin: auto;
    border: 10px solid transparent;
    border-bottom: 10px solid rgba(255,255,255,.9);
    width: 0;
    height: 0;
    z-index: 1000;
}

.head-timer-container{ display: none; }
.heading-img img{ max-width: 100%; height: auto; }


/* 20201009 */

.m-day-btn { width: 250px; text-align: center; margin: 25px auto; }
.m-day-btn a {
    display: block;
    text-align: center;
    background: #222;
    color: #fff;
    box-sizing: border-box;
    border: 1px solid #222;
    padding: .8em 1em;
    border-radius: 10px;
    font-weight: 600;
    font-size: 130%;
    transition: .3s;
    text-decoration: none;
}
.m-day-btn a:hover{
	background: #fff;
  	color: #222;
}

/* 2021 大会申込 */

.entry__corona {
  padding: 30px;
  font-size: 1.1em;
  font-weight: bold;
  color: #d41324;
  line-height: 1.8em;
  border: 5px #d41324 solid;
}

.entry__box01 {
  padding: 40px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #deebf7;
  border: 2px #41719c solid;
}
.entry__box01 .heading01 {
  font-size: 1.55em;
  font-weight: bold;
  color: #20638c;
  margin-top: 0;
  margin-bottom: 20px;
}
.entry__box01 .heading02 {
  font-size: 1.55em;
  font-weight: bold;
  color: #20638c;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px #20638c dotted;
}

.entry__box02 {
  padding: 40px;
  margin-bottom: 20px;
  text-align: center;
  border: 2px #41719c solid;
}
.entry__box02 .heading01 {
  font-size: 1.55em;
  font-weight: bold;
  color: #20638c;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px #20638c dotted;
}

.yycountdown-box{
  text-align:center;
  margin:10px 0;
}

/* 20210629 */
.sdgs_flex-box {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.sdgs_flex-box .img {
  width: 20%;
  margin-right: 5%;
}
.sdgs_flex-box .txt {
  width: 75%;
}

.cha-btn{
   max-width: 460px;
   text-align: center;
   margin: 25px auto;
}

.cha-btn a{
   display: block;
   text-align: center;
   background: #222;
   color: #fff;
   box-sizing: border-box;
   border: 1px solid #222;
   padding: .8em 1em;
   border-radius: 10px;
   font-weight: 600;
   font-size: 130%;
   transition: .3s;
   text-decoration: none;
}

.cha-btn a:hover{
	background: #fff;
  	color: #222;
}

.flex-ouen{
    display: flex;
    justify-content: flex-start;
    margin-bottom:50px;
    }
    
.ouen-btn a{
    width: 100%;
    text-decoration: none;
    color: #FFF;
    background: #222;
    text-align: center;
    margin-right: 20px;
    border: 1px solid #222;
    padding: 0.8em 1em;
    border-radius: 10px;
    font-size:130%;
    font-weight:600;
    transition: .3s;
    box-sizing:border-box;
    }
    
    .ouen-btn a:hover{
        background: #fff;
        color: #222;
    }

    .sakuhin-content{
        display: flex;
        justify-content: space-around;
        color:#20638c;
        margin-top:25px;
    }
    .sakuhin-text{
        width: 50%;
        padding: 3em;
        box-sizing:border-box;
        background: #f2fafe;
    }
    .bb{
      font-weight:600;
      font-size:1.2em;
    }
    .sakuhin-text ul{
        list-style: none;
        padding: 0;
    }
    .sakuhin-text li{
        margin:0;
        padding: 0;
    }
    .sakuhin-img{
        width: 50%;
        padding:10px;
        box-sizing:border-box;
        text-align:center;
    }
    .sakuhin-img img{
        width: 100%;
        object-fit: cover;
        height: auto;
    }

      .entry_img_box_01{
              display: flex;
              gap: 1.5em;
              flex-wrap: wrap;
              margin: 0 auto;
              max-width: 760px;
              width: 90%;
              justify-content: center;
      }

.entry_img_box_01 .item{
      width:350px;
    }

    .entry_img_box{
        display: flex;
        gap: 1.5em;
        flex-wrap: wrap;
        margin: 0 auto;
        max-width: 760px;
        width: 90%;
        justify-content: center;
    }

    .entry_img_box .item{
      width:350px;
      margin-bottom:40px;
    }

  .pa_btn a{
      max-width: 340px;
      display: block;
      margin: 20px auto 0px auto;
      box-sizing: border-box;
      padding: 1em;
      border-radius: 10px;
      border: 1px solid #8cc63f;
      background: #8cc63f;
      color: #fff;
      text-align: center;
      transition: .3s;
  	}

  .pa_btn a:hover{
        border: 1px solid #8cc63f;
    	background:#fff;
    	color:#8cc63f;
      }

.acc-btn{
  	margin:0 auto;
  	width: 300px;
    text-align: center;
}

.acc-btn a{
  	margin: 1em auto 4em auto;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    text-align: center;
    background: #333;
    color: #fff;
    box-sizing: border-box;
    border: 1px solid #333;
    padding: 1em;
    border-radius: 10px;
    font-weight: 600;
    font-size: 90%;
    transition: .3s;
    text-decoration: none;
}

.acc-btn a:hover{
  color:#333;
  background:#fff;
}

.volunteer_box ul{
    margin: 2em auto;
    padding: 1em;
    box-sizing: border-box;
    background: #f2fafe;
    border: 2px solid #ccecfa;
    border-radius: 10px;
    list-style:disc;
    color:#20638c;
}

.volunteer_box .list-icon{
  	padding-left: 2em;
    list-style: none;
    line-height: 40px;
    position: relative;
  	margin-left:12px;
}

.list-icon_box{
  	background:#fff;
  	padding:10px;
    margin:10px 0;
  	border-radius:10px;
}

.volunteer_box .list-icon:before{
 	font-family: FontAwesome;
    content: "\f00c";
    position: absolute;
    left: 0;
    color: rgb(238, 0, 0);
    font-size: 120%;
}

.kyousan_li{
  display:flex;
  gap:1em;
  align-items: center;
  flex-wrap: wrap;
  margin-top:1.5rem;
  margin-bottom:2rem;
}

.kyousan_li li{
  display:flex;
  align-items:center;
  justify-content: center;
  width:190px;
  height:80px;
  border: 1px solid #ddd!important;
  padding:5px; margin:0;
  box-sizing: border-box;
  list-style: none;
  overflow: hidden;
}
 
.kyousan_li li img{max-width:100%;}
.li01 li{ width:32%; height:90px; }
.li01 li a{ width:100%; text-align:center; }
.li01 li a img{ width:235px; }
.li02 li:nth-child(6),.li02 li:nth-child(7){ padding:0!important; }

/*table 20230517*/
.comm_table{
  border-collapse: inherit!important;
  background-color: rgb(255, 255, 255); 
  border-collapse: inherit;
  width:100%; 
  border-spacing: 0 10px; 
  margin: 0 auto 1em auto;
  padding: 0.5em 1em;
  box-sizing: border-box;
  border: 3px solid #ddd; 
  border-radius: 10px;"
}

.comm_table td{
  border-top:none;
  border-left:none;
  border-right:none;
  border-bottom:dashed 1px #ddd;
}

/*しま旨　テーブル*/
.cont-fureai-box01 table {
    border-collapse: collapse;
}

.cont-fureai-box01 th {
    background: #f2fafe;
    text-align: center;
    color: #20638c;
}

.cont-fureai-box01 td {
    background: #fff;
}

.cont-fureai-box01 td, .cont-fureai-box01 th {
    border: 1px solid #ccecfa;
    padding: 10px;
}

/* 応援看板_20240228 */

.support-sign_content{ 
  padding: 0;
  margin-top:2em;
}
.support-sign_img{ background:#f2fafe; border-radius:5px; text-align:center; padding: 2em 10%; }
.support-sign_img img{ width:100%; }
.support-sign_img img:not(:first-child){ padding-top: 15px; }

.sp_br{display:none;}

.banner-web{ width: 225px!important; height: 149px!important; }
.banner-web a{ height: 149px; }
.banner-web a img{ width: 225px!important; height: 149px!important;  }

