.main{
	background: #FFF;
	float:left;
	width:100%;
}

.maincontent{
	font-size:18px;
}
.sectionbread{
	padding:10px 0px 10px 10px;
}
.breadcrumb {
	/*centering*/
	text-align: center;
	display:inline-block;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.35);
	overflow: hidden;
	border-radius: 5px;
	/*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
	counter-reset: flag; 
}
.breadcrumb a {
	text-decoration: none;
	outline: none;
	display: block;
	float: left;
	
	line-height: 36px;
	color: white;
	/*need more margin on the left of links to accomodate the numbers*/
	padding: 0 10px 0 60px;
	background: #666;
	background: linear-gradient(#666, #333);
	position: relative;
	z-index:0;
}
/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
	padding-left: 46px;
	border-radius: 5px 0 0 5px; /*to match with the parent's radius*/
}
.breadcrumb a:first-child:before {
	left: 14px;
}
.breadcrumb a:last-child {
	border-radius: 0 5px 5px 0; /*this was to prevent glitches on hover*/
	padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active, .breadcrumb a:hover{
	background: #333;
	background: linear-gradient(#333, #000);
}
.breadcrumb a.active:after, .breadcrumb a:hover:after {
	background: #333;
	background: linear-gradient(135deg, #333, #000);
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a:after {
	content: '';
	position: absolute;
	top: 0; 
	right: -18px; /*half of square's length*/
	/*same dimension as the line-height of .breadcrumb a */
	width: 36px; 
	height: 36px;
	transform: scale(0.707) rotate(45deg);
	z-index: 1;
	background: #666;
	background: linear-gradient(135deg, #666, #333);
	box-shadow: 
		2px -2px 0 2px rgba(0, 0, 0, 0.4), 
		3px -3px 0 2px rgba(255, 255, 255, 0.1);
	/*
		5px - for rounded arrows and 
		50px - to prevent hover glitches on the border created using shadows*/
	border-radius: 0 5px 0 50px;
}
/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
	content: none;
}
/*we will use the :before element to show numbers*/
.breadcrumb a:before {
	content: counter(flag);
	counter-increment: flag;
	/*some styles now*/
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	margin: 8px 0;
	position: absolute;
	top: 0;
	left: 30px;
	background: #444;
	background: linear-gradient(#444, #222);
	font-weight: bold;
}
.flat a, .flat a:after {
	background: white;
	color: black;
	transition: all 0.5s;
}
.flat a:before {
	background: white;
	box-shadow: 0 0 0 1px #ccc;
}
.flat a:hover, .flat a.active, 
.flat a:hover:after, .flat a.active:after{
	background: #FFFF33;
}
.contentmain{
	background:#FFF;
	float:left;
	text-align: center;
	/*border: solid #000000;*/
	/*width:79%;*/
	width:100%;
	margin-top:-8px;
	word-break: break-all;
}
.contents{
	margin:50px 20% 0px 20%;
}
.conmo{
	text-align: left;
}
.h1content{
    color: #2c2c2f;
    background: #cde4ff;
    border-top: solid 5px #5989cf;
    border-bottom: solid 5px #5989cf;
}
.h3content{
	background:#FFDC62;
}
.imgleft,
.imgright,
.imgleft1,
.imgright1
{
	width:300px;
	padding:10px 0px;
}
.imgcenter
{
	width:50%;
	padding:10px 24.3%;
}
.imgleft{
	float:left;
	margin:0px 20px 20px 0px;
}
.imgright{
	float:right;
	margin:0px 0px 20px 20px;
	overflow:hidden;
}
.imgleft1{
	float: left;
	margin:0px 20px 20px 0px;
	clear:both;
}
.imgright1{
	float:right;
	margin:0px 0px 20px 20px;
	clear:both;
}
.imgcenter{
	float:none;
	clear:both;
}
.clearbon{
	clear:both;
}
.kuh{
	padding:0px 10px;
}
.list-a{
	text-decoration: none;
}
.linone{
	list-style: none;
	margin-left: -40px;
}
.ifreamovie{
	text-align: center;
}
.pdfimg img{
	margin-left: 10px;
	margin-bottom: -20px;
}
/*デザインボックス*/
.box1{
	padding: 0.5em 1em;
	margin: 2em 0;
	color: #232323;
	background: #fff8e8;
	border-left: solid 10px #ffc06e;
}
.box1 p {
    margin: 0; 
    padding: 0;
}
.box2{
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #62c1ce;
}
.box2 .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    font-size: 17px;
    background: #62c1ce;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box2 p {
    margin: 0; 
    padding: 0;
}

/*カード用*/
.cordview {
	width: auto;
	padding:10px;
	margin: 10px;
	float: left;
	color: #565656;
	background:#FFF27B;
	box-shadow: 0px 0px 0px 5px #FFF27B;
	border: dashed 2px #B3A900;
	border-radius: 8px;
	overflow: hidden;
	position:relative;
	text-align: center;
}
.cordview img{
	border-radius: 8px;
}
.mask{
	clear:both;
}


.hrcontentshead{
	height: 5px;
	border-width: 0;
	background-image: -webkit-linear-gradient(right,
	#c2185b 0px,#c2185b 5px,#1976d2 5px,#1976d2 10px,
	#388e3c 10px,#388e3c 15px,#fbc02d 15px,#fbc02d 20px,
	#e64a19 20px,#e64a19 25px);
	background-image:         linear-gradient(-90deg,
	#c2185b 0px,#c2185b 5px,#1976d2 5px,#1976d2 10px,
	#388e3c 10px,#388e3c 15px,#fbc02d 15px,#fbc02d 20px,
	#e64a19 20px,#e64a19 25px);
	background-size: 25px 25px;
}
/*黄色マーカーを引く*/
.marker_yellow_hoso.active{
	background-position: -100% .5em;
}
.marker_yellow_hoso{
	background: linear-gradient(transparent 20%, #ffff66 60%);
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(255,250,153) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
    font-weight: bold;
}
/*スクロールアニメーション*/
.delighter.splash {
  transition: all 2s ease-out;
}
.delighter.splash.ended {
  background: #fff;
}
.delighter.right { transform:translate(-100%); opacity:0; transition: all .75s ease-out; }
.delighter.right.started { transform:none; opacity:1; }

.delighter.left { transform:translate(100%); opacity:0; transition: all .75s ease-out; }
.delighter.left.started { transform:none; opacity:1; }

.delighter.bottom { transform:translatey(300%); opacity:0; transition: all .75s ease-out; }
.delighter.bottom.started { transform:none; opacity:1; }

.delighter li { opacity: 0; transform: translatey(400%); transition: all .7s ease-out; }
.delighter.started li { opacity: 1; transform: none; }
.delighter.started li:nth-child(1) { transition: all .7s ease-out .1s; }
.delighter.started li:nth-child(2) { transition: all .7s ease-out .3s; }
.delighter.started li:nth-child(3) { transition: all .7s ease-out .5s; }
.delighter.started li:nth-child(4) { transition: all .7s ease-out .7s; }
.delighter.started li:nth-child(5) { transition: all .7s ease-out .9s; }
.delighter.started li:nth-child(6) { transition: all .7s ease-out 1.1s; }
.delighter.started li:nth-child(7) { transition: all .7s ease-out 1.3s; }

.delighter pre {
  display: block;
  transition: all 2s ease-out;
  opacity: 0;
  padding: 20px 0;
  width: 1px;
  overflow: hidden;
}
.delighter.started pre {
  max-width: 99999px; width: 100%; opacity: 1;
}
.delighter .box { transition: all 1s ease-out; }
.delighter .box:nth-child(1) { transform: translate(-100%, 0); }
.delighter .box:nth-child(2) { transform: translate(170%, -70%); }
.delighter .box:nth-child(3) { transform: translate(20%, 0%); }

.delighter.started .box:nth-child(1) { transform: translate(0, 0); }
.delighter.started .box:nth-child(2) { transform: translate(70%, -70%); }
.delighter.started .box:nth-child(3) { transform: translate(20%, -120%); }

/*ページの切り替えボタン*/
.pagination,
.pagination li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.pagination li {
	background-color: #FFFFFF;
	list-style: none;
}
.pagination a {
	font-weight: 300;
	padding-top: 1px;
	text-decoration:none;  
	border: 1px solid rgba(0,0,0,.25);
	border-left-width: 0;
	min-width:44px;
	min-height:44px;
	color: rgba(0,0,0,.85);  
	box-shadow: inset 0px 1px 0px 0px rgba(0,0,0,.35);
}
.pagination li:not([class*="current"]) a:hover { 
	background-color: rgba(255,255,0,0.70);
	border-top-color: rgba(0,0,0,.35);
	border-bottom-color: rgba(0,0,0,.5);
}
.pagination li:not([class*="current"]) a:focus,
.pagination li:not([class*="current"]) a:active {;
	box-shadow: 0px 0px 10px 1px rgba(0,0,0,.25);
	border-left-width:1px;
}
.pagination li:first-of-type a {
	border-left-width: 1px;
}
.pagination li:first-of-type span,
.pagination li:last-of-type span,
.pagination li:nth-of-type(2) span,
.pagination li:nth-last-of-type(2) span { 
	/* screen readers only */
	position: absolute;
	top: -9999px;
	left: -9999px;
}
.pagination li:first-child a::before,
.pagination li:last-child a::after,
.pagination li:nth-of-type(2) a::before,
.pagination li:nth-last-of-type(2) a::after {  
	display: inline-block;
	font-family: Fontawesome;  
	
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: translate(0, 0);
}
.pagination li:first-child a::before,
.pagination li:last-child a::after {
	content: "\f100";
}
.pagination li:nth-of-type(2) a::before,
.pagination li:nth-last-of-type(2) a::after {
	content: "\f104";
}
.pagination li:last-child a::after,
.pagination li:nth-last-of-type(2) a::after {
	transform: rotate(180deg);
}
.pagination li.current a { 
	padding-top:.25em;
	color: rgba(0,0,0,1);
	background-color: rgba(0,0,0,.15);
	box-shadow: inset 0px 2px 1px 0px rgba(0,0,0,.25);
	cursor: default;
	pointer-events: none;
}


@media (min-width:581px) and  (max-width:960px){
	.contents{
		margin:50px 10% 0px 10%;
	}
	.imgleft, .imgright, .imgleft1, .imgright1, .imgcenter{
		width:250px;
	}
	/*ページの切り替え*/
	.pagination li:first-child,
	.pagination li:last-child {
		/* screen readers only */
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.pagination li:nth-of-type(2) a {
		border-left-width: 1px; 
	}
}
@media (min-width:0px) and  (max-width:580px){
	.maincontent{
		font-size:14px;
	}
	.maincontent h2{
		font-size:18px;
	}
	.contents{
		margin:20px 0px;
	}
	.sectionbread{
		display: none;
	}
	.imgleft, .imgright, .imgleft1, .imgright1, .imgcenter{
		float:inherit;
		width:50%;
		padding:0px 25%;
	}
	.pdfimg img{
		margin-left: -5px;
		margin-bottom: -20px;
	}
	/*ページの切り替え*/
	.pagination li:first-child,
	.pagination li:last-child{
		/* screen readers only */
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	.pagination li:nth-of-type(2) a {
		border-left-width: 1px;
	}
}