@charset "utf-8";
/* ===========================================================

	Title: top.css
	Created: 2018-5-15

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

	body,html
	container
	hamburger
	main-visual
	main-copy
	top-contents
	header-stock
	top-banner
	related-sites


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


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

	container

=========================================================== */
.container {
	padding: 32px 0 0 224px;
}
@media screen and (max-width: 1200px) {
	.container {
		padding: 0 8px;
	}
}



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

	mainvisual

=========================================================== */
.main-visual {
	max-width: 1088px;
	margin: 0 auto;
}
.key-visual {
    position: relative;
    width: 100%;
    height: 675px;
    background-image: url("../files/keyvisual_pc.jpg?210701");
    background-size: contain;
    background-repeat: no-repeat;
	
background-position: center;
}

@media screen and (max-width: 1200px) {
	.key-visual {
		
		
    background-image: url("../files/keyvisual.jpg?210701");
		
    height: 500px;
	background-size:cover;
	}
}




.key-visual img {
	position: absolute;
	bottom: 0px;
	left: 10px;
}
.main-visual__icon {
	display: flex;
    width: 100%;
    margin: 20px 0 0;
}
.main-visual__icon a:first-child {
	margin-right: 32px;
}
.main-visual__icon img {
	max-width: 528px;
}

@media screen and (max-width: 1200px) {
	.main-visual {
		flex-direction: column;
		padding-top: 10px;
	}
	.key-visual {
		width: 100%;
		min-height: 200px;
		margin: 72px auto 0;
		background-position: 40% 50%;
	}
	.key-visual::before {
		width: 196px;
		left: 64px;
	}
	.key-visual::after {
		width: 170px;
		right: 64px;
	}
	.key-visual img {
		left:0;
		width: 160px;
	}
	.catch-copy {
		font-size: 24px;
		white-space: normal;
	}
	.main-visual__icon {
		display: block;
    	width: 100%;
    	margin: 10px 0 0;
	}
	.main-visual__icon img {
		margin-bottom: 0;
		max-width: 100%;
	}
	.main-visual__icon a:first-child {
		margin-right: 8px;
	}
}

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

	bxslider

=========================================================== */
.bxslider-main-visual {
	position: relative;
	margin: 0 auto;
	z-index: 10;
}
.bxslider-main-visual li {
	background-color: #00163D;
	position: relative;
	width: 100%;
    height: 500px;
	overflow: hidden;
	background-size: cover;
}
@media screen and (max-width: 1200px) {
	.bxslider-main-visual li {
	}
}
.bxslider-main-visual li.main-visual__1 {background-image: url(../files/mainvisual_1.png); background-position: right 50% top 50%;}
.bxslider-main-visual li.main-visual__2 {background-image: url(../files/mainvisual_2.png); background-position: right 50% top 25%;}
.bxslider-main-visual li.main-visual__3 {background-image: url(../files/mainvisual_3.png); background-position: right 50% top 20%;}
.bxslider-main-visual li.main-visual__4 {background-image: url(../files/mainvisual_4.png); background-position: right 50% top 35%;}
.bxslider-main-visual li.main-visual__5 {background-image: url(../files/mainvisual_5.png); background-position: right 50% top 20%;}
.bxslider-main-visual li.main-visual__6 {background-image: url(../files/mainvisual_6.png); background-position: right 50% top 15%;}
.bxslider-main-visual li.main-visual__7 {background-image: url(../files/mainvisual_7.png); background-position: right 50% top 20%;}
.bxslider-main-visual li.main-visual__8 {background-image: url(../files/mainvisual_8.png); background-position: left 0 top 50%;}

.bxslider-main-visual li span {
	position: absolute;
	bottom: 5px;
	right: 10px;
	color: #fff;
	font-size: 14px
}

/* PAGER */
.main-visual .bx-wrapper .bx-pager,
.main-visual .bx-wrapper .bx-controls-auto　{
	bottom: 30px;
	z-index: 99;
}
.main-visual .bx-wrapper .bx-pager a {
	background: #fff;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	border-radius: 5px;
	line-height: 1;
	font-size: 8px;
	overflow: hidden;
}
.main-visual .bx-wrapper .bx-pager a:hover,
.main-visual .bx-wrapper .bx-pager a.active {
	background: #A8BD00;
}

/* DIRECTION CONTROLS (NEXT / PREV) */
.main-visual .bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	text-align: center;
	z-index: 9999;
	/*　Scott Kellum Method */
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}
.main-visual .bx-wrapper .bx-controls-direction a:hover {
	opacity: 0.5;
}
.main-visual .bx-wrapper .bx-controls-direction a:before {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -15px;
	content: "";
	width: 28px;
	height: 28px;
	display: block;
	border-width: 5px;
	border-color: #fff;
	border-top-style: solid;
}
.main-visual .bx-wrapper .bx-prev:before {
	border-left-style: solid;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-left: -6px;
}
.main-visual .bx-wrapper .bx-next:before {
	border-right-style: solid;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: -22px;
}
@media screen and (max-width: 1200px) {
	.bxslider-main-visual li {
	}
	.main-visual .bx-wrapper .bx-controls-direction {
		display: none;
	}
}

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

	main-visual__scroll

=========================================================== */
.main-visual__scroll {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 95;
}
@media screen and (max-width: 1200px) {
	.main-visual__scroll {
		bottom: 20px;
	}
}
.main-visual__scroll a {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	z-index: 90;
	background: rgba(15,39,78,0.75);
	font-size: 10px;
	/*transition */
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all .2s ease;
	/*Scott Kellum Method */
	overflow: hidden;
	white-space: nowrap;
	line-height: 128px;
}
.main-visual__scroll a:before,
.main-visual__scroll a:after {
	/*transition */
	transition: all .4s ease;
}
.main-visual__scroll a:before {
	content: " ";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
  background:url(/assets/img/common/top/ico-scroll.png) 0 0 no-repeat;
  background-size: 21px 32px;
  width: 21px;
  height: 32px;
}
/*hover */
.main-visual__scroll a:hover {
	line-height: 60px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
}
.main-visual__scroll a:hover:before {
	transform: translate(-50%,200%);
	background-color: rgba(255,255,255,0.00);
}
.main-visual__scroll a:hover:after {
	top: 100%;
	border-right: solid 2px rgba(255,255,255,0.00);
	border-bottom: solid 2px rgba(255,255,255,0.00);
}
/* ===========================================================

	main-visual__ticker

=========================================================== */
.main-visual__ticker {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 90;
	background-color: rgba(255,255,255,0.80);
	display: flex;
	width: 1120px;
	height: 46px;
	line-height: 46px;
	justify-content: space-between;
	font-size: 14px;
}
.main-visual__ticker h1 {
	background-color: #A8BD00;
	text-align: center;
	width: 160px;
	line-height: 46px;
	margin: 0;
	padding: 0;
	color: #fff;
	font-size: 19px;
	font-weight: bold;
}
.main-visual__ticker h1 a {
	color: #fff;
	text-decoration: none;
}
.main-visual__ticker h1 a:hover{
	opacity: 0.7;
}
.main-visual__ticker .main-visual__ticker-frame {
	width: calc(100% - 180px);
	overflow: hidden;
}
.main-visual__ticker .main-visual__ticker-frame a:link,
.main-visual__ticker .main-visual__ticker-framea a:visited {
	text-decoration: none;
	color: #111;
}
.main-visual__ticker .main-visual__ticker-frame a:hover {
	text-decoration: underline;
	color: #A8BD00;
}

.related-sites .bx-wrapper li {
  min-height: 100px;
}

.related-sites .bx-wrapper img {
position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
}

/*  js-slide-ticker
=========================================================== */
@media screen and (min-width: 1120px) {
	.main-visual__ticker .main-visual__ticker-frame .bx-wrapper {
		display: none !important;
	}
	.js-slide-ticker__wrapinner {
		position: relative;
		overflow: hidden;
		height: 45px;
		margin: 0 20px 0 0;
	}
	.js-slide-ticker {
		display: flex;
		position: absolute;
	}
	.js-slide-ticker li {
		padding-right: 100px;
	}
	.js-slide-ticker li:last-child {
		padding-right: 0 !important;
	}
	.js-slide-ticker dl {
		white-space: nowrap;
	}
	.js-slide-ticker dt {
		clear: both;
		float: left;
		text-align: left;
		width: 17em;
		margin: 0;
		padding: 0;
		position: relative;
	}
	.js-slide-ticker dt span.icon {
		position: absolute;
		top: 50%;
		right: 0;
		margin-top: -10px;
	}
	.js-slide-ticker dd {
		margin: 0;
		padding: 0 0 0 18em;
	}
}

/*  news-slider
=========================================================== */
@media screen and (max-width: 1119px) {
	.js-slide-ticker__wrapinner {
		display: none;
	}
	.main-visual__ticker {
		position: relative;
		bottom: inherit;
		left: inherit;
		transform: translateX(0);
		display: block;
		width: auto;
		height: auto;
		line-height: auto;
		border: solid 20px rgba(0,108,182,0.20);
		border-top: none;
	}
	.main-visual__ticker h1 {
		background-color: rgba(0,108,182,0.20);
		color: #A8BD00;
		width: 100%;
		line-height: auto;
		margin: 0;
		padding: 2px 0;
		font-size: 20px;
		letter-spacing: 0.1em;
	}
	.main-visual__ticker h1 a {
		position: relative;
		color: #A8BD00;
		padding-right: 10px;
	}
	.main-visual__ticker h1 a:before {
		display: inline-block;
		vertical-align: middle;
		content: "";
		width: 8px;
		height: 8px;
		border-top: 2px solid #A8BD00;
		border-right: 2px solid #A8BD00;
		border-bottom: none;
		border-left: none;
		transform: rotate(45deg) translateY(-40%);
		margin-right: 12px;
	}
	.main-visual__ticker .main-visual__ticker-frame {
		width: 100%;
		padding: 20px;
	}
	.main-visual__ticker .main-visual__ticker-frame dl {
		width: 100%;
		white-space: normal;
		line-height: 1.6;
		text-align: left;
	}
	.main-visual__ticker .main-visual__ticker-frame dt {
		position: relative;
		width: 17em;
		padding: 0;
		margin: 0 0 5px;
	}
	.main-visual__ticker .main-visual__ticker-frame dt span.icon {
		position: absolute;
		top: 0;
		right: 0;
		margin-top: 0;
	}
	.main-visual__ticker .main-visual__ticker-frame dd {
		white-space: normal;
		padding: 0;
		margin: 0;
		border: none;
		height: auto !important;
		position: inherit !important;
	}
	.main-visual__ticker .main-visual__ticker-frame dd span {
		position : inherit !important;
		top: auto !important;
		left: auto !important;
	}
	.main-visual__ticker .bx-wrapper {
		min-width: 150px !important;
		padding: 0 0 30px;
	}
	.main-visual__ticker .bx-wrapper .bx-viewport {
		background-color: transparent !important;
		overflow: inherit !important;
	}
	.main-visual__ticker .bx-wrapper .bx-controls {
		position: absolute;
		bottom: 0;
		width: 100%;
	}
	.main-visual__ticker .bx-wrapper .bx-controls .bx-controls-direction {
		position: relative;
		z-index: 9999999;
	}
	.main-visual__ticker .bx-wrapper .bx-controls-direction a {
		position: absolute;
		top: inherit;
		bottom: 0;
		margin-top: 0;
		outline: 0;
		width: 80px;
		height: 20px;
		line-height: 20px;
		text-align: center;
		text-indent: -9999px;
		z-index: 9999999;
		opacity: 1.0;
		background-color: #A8BD00;
		background-image: none;
	}
	.main-visual__ticker .bx-wrapper .bx-prev {
		left: 50%;
		margin-left: -1px;
		transform: translateX(-100%);
	}
	.main-visual__ticker .bx-wrapper .bx-next {
		right: 50%;
		margin-right: -1px;
		transform: translateX(100%);
	}
	.main-visual__ticker .bx-wrapper .bx-prev:hover,
	.main-visual__ticker .bx-wrapper .bx-next:hover {
		opacity: 0.8;
	}
	.main-visual__ticker .bx-wrapper .bx-prev:after,
	.main-visual__ticker .bx-wrapper .bx-next:after {
		position: absolute;
		top: 50%;
		left: 50%;
		content: "";
		display: inline-block;
		width: 8px;
		height: 8px;
	}
	.main-visual__ticker .bx-wrapper .bx-prev:after {
		margin-top: -4px;
		margin-left: -4px;
		border-bottom: 1px solid #fff;
		border-left: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	.main-visual__ticker .bx-wrapper .bx-next:after {
		margin-top: -4px;
		margin-left: -4px;
		border-top: none;
		border-right: 1px solid #fff;
		border-top: 1px solid #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
}

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

	top-contents / contents-style

=========================================================== */
#top-contens {
    position: relative;
    background: none;
    max-width: 1088px;
    margin: 0 auto;
    padding-top: 32px;
    padding-right: 0;
    padding-left: 0;
}
#top-contens main {
	margin: 0;
}
@media screen and (max-width: 1200px) {
	#top-contens {
		padding: 0 0 0px;
	}
}
@media screen and (max-width: 1200px) {
	#top-contens {
		width: auto;
	}
}

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

	header-stock

=========================================================== */
@media screen and (max-width: 1200px) {
	.header-stock {
		margin-top: 0;
	}
}

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

	contens-banner

=========================================================== */
.contens-banner {
	background: #ebebeb;
	display: flex;
	padding: 0px 10px;
	margin: 0 0 30px !important;
	justify-content: space-between;
}

.contens-banner li  {
	height: 100px;
}

.contens-banner li img {
	margin: 0;
	height: 100%;
	width: 353px;
}

.contens-banner li:nth-of-type(n+2),
.contens-banner li img:nth-of-type(n+2) {
	margin-left: 20px;
}

@media screen and (max-width: 1200px) {
	.contens-banner {
		display: block;
		padding: 20px 20px;
		margin: 0 !important;
		text-align: center;
	}
	.contens-banner li,
	.contens-banner li img {
		margin: 0;
		margin-left: 0px !important;
	}
}

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

	en-contens-banner

=========================================================== */
.en-contens-banner {
	background: #ebebeb;
	display: flex;
	padding: 0px 40px;
	margin: 0 0 30px !important;
	justify-content: space-around;
}

.en-contens-banner li  {
	height: 100px;
}

.en-contens-banner li img {
	margin: 0;
	height: 100%;
	width: 500px;
}

.en-contens-banner li:nth-of-type(n+2),
.en-contens-banner li img:nth-of-type(n+2) {
	margin-left: 20px;
}

@media screen and (max-width: 1200px) {
	.en-contens-banner {
		display: block;
		padding: 20px 20px;
		margin: 0 !important;
		text-align: center;
	}
	.en-contens-banner li,
	.en-contens-banner li img {
		margin: 0;
		margin-left: 0px !important;
	}
}
/* ===========================================================

	top-data

=========================================================== */
.top-data {
	display: flex;
	justify-content: space-between;
	min-height: 304px;
}
.top-data section {
}
.top-data__box {
	position: relative;
	margin-bottom: 32px;
	width: 32.5%;
	text-align: left;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.top-data h1 {
    position: relative;
    width: 100%;
    font-family: "Noto Serif JP";
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    background-color: #BA422B;
    background-image: url(../files/top-data__h1-background.png);
    background-size: 75%;
    padding: 12px 16px;
}
.top-data h1 a {
	background-image: url(../files/arrow_right.png);
	background-size: 8px;
	background-repeat: no-repeat;
	background-position: center;
}
.top-data h1 span {
	font-size: 12px;
	margin-left: 16px;
}
.top-data h1 a {
	position: absolute;
	top: 0;
	right: 0;
	height: 49px;
	width: 48px;
	line-height: 60px;
	font-size: 14px;
	color: #fff;
	text-decoration: none;
	background-color: #93A600;
	border-left: 1px solid #fff;
}
/* top-data__box dl p ul */
.top-data__box h2 {
	position: relative;
	margin-top: 0;
	margin-bottom: 0px;
	padding: 0;
	color: #111;
	font-size: 16px;
	font-weight: 500;
	border: none;
	background-color: transparent;
}
.top-data__box h2,
.top-data__box dl,
.top-data__box p,
.top-data__box ul {
	margin-left: 16px !important;
	margin-right: 16px !important;
}
.top-data__box dl {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-end;
	line-height: 1.2;
}
.top-data__box dl dt {
	white-space: nowrap;
	padding: 0 0 0.3em;
}
.top-data__box dl dd {
	text-align: right;
	white-space: nowrap;
}
.top-data__box dl dd em {
	font-size: 30px;
	font-weight: bold;
	font-style: normal;
	color: #006cb6;
	padding: 0 3px 0;
}
.top-data__box dl dd span {
	display: inline-block;
	width: 2em;
	text-align: left;
}
.top-data__box p {
	margin-bottom: 10px;
}
.top-data__value {
	color: #93A600;
	font-size: 15px;
	font-weight: 500;
}
.top-data__value em {
	font-size: 32px;
	font-weight: bold;
	color: #93A600;
}
.top-data__date {
	font-size: 10px;
	color: #5B5F63;
}
.top-data__size {
	font-size: 10px;
}
.data-slider__slide {
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.top-data {
		display: block;
	}
	.top-data__box {
		width: auto;
		border: none;
		padding-bottom: 0px;
		margin-bottom: 8px !important;
		height: 272px;
	}
	.top-data h1 {
		position: static;
	}
	.top-data__box h2,
	.top-data__box dl,
	.top-data__box p,
	.top-data__box ul {
		margin-left: 20px !important;
		margin-right: 20px !important;
	}
	.top-data__box dl dt {
		padding: 0 0 0.2em;
	}
	.top-data__box dl dd em {
		font-size: 26px;
	}
}
.slick-slider {
	height: 100%;
	min-height: 185px;
	display: flex;
	margin-top: 32px;
}
/* slick-arrow
----------------------------------------------------------- */
.top-data .slick-arrow {
    position: absolute;
    z-index: 20;
	bottom: 16px;
	margin: 0;
    cursor: pointer;
}
.top-data .prev-arrow {
    left: 16px;
}
.top-data .next-arrow {
    right: 16px;
}

/* slick-dots
----------------------------------------------------------- */
.top-data button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.top-data .slick-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: center;
    margin: 0 !important;
}
.top-data .slick-dots li {
    margin: 0 12px !important;
}
.top-data .slick-dots li button {
    position: relative;
    text-indent: -9999px;
}
.top-data .slick-dots li button::before,
.top-data .slick-dots li button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.top-data .slick-dots li button::after {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #ADB5BD;
}
.top-data .slick-dots li.slick-active button::after {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #B81408;
}


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

	 top-distribute

=========================================================== */
#top-distribute {}
#top-distribute dl {
}
#top-distribute .actual em {
	color: #e50038;
}
#top-distribute .forecast {
}

#top-distribute span.period {
    width: 3.1em;
    text-align: right;
    display: inline-block;
}

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

	 top-portfolio

=========================================================== */
#top-portfolio dl {
	border-top: solid 1px #ddd;
	margin-top: 0.4em;
	padding-top: 0.4em;
}
#top-portfolio dl:nth-of-type(1) {
	border-top: none;
	padding-top: 0;
}
#top-portfolio dl.secondary {
	border-top: none;
	padding-top: 0;
	padding-left: 20%;
	justify-content: space-between;
	margin-top: 0.2em;
}
#top-portfolio dl.secondary dt {
	padding: 0 0 0.2em;
}
#top-portfolio dl.secondary em {
	text-align: right;
}
#top-portfolio em span {
	font-size: 15px;
	width: auto;
}
@media screen and (max-width: 1200px) {
	#top-portfolio dl.secondary em {

	}
}

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

	 top-financial

=========================================================== */
#top-data--financial {}
#top-data--financial ul {
	margin-top: 16px;
	margin-bottom: 8px;
	height: 100%;
}
#top-data--financial p {
	margin-top: 16px;
	margin-bottom: 8px;
	height: 100%;
}
#top-data--financial li {
	position: relative;
	background-color: rgba(204,208,216,0.32);
	padding: 3px 0 0 32px;
	margin-top: 0;
	margin-bottom: 8px;
	height: 32px;
}
#top-data--financial li .top-data__icon--pdf {
    background-image: url(../files/icon-pdf--small.png);
    position: absolute;
    left: 8px;
    top: 8px;
	background-size: 16px;
	width: 16px;
	height: 16px;
}
#top-data--financial li .top-data__icon--movie {
    background-image: url(../files/icon-movie--small.png);
    position: absolute;
    left: 8px;
    top: 8px;
	background-size: 16px;
	width: 16px;
	height: 16px;
}
#top-data--financial li a {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #002966;
	text-decoration: none;
}
#top-data--financial li a:hover {
}

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

	top-future
=========================================================== */
.top-feature {
	height: 416px;
	background-color: rgba(246,240,233,0.64);
	display: flex;
	margin-top: 32px;
	
	text-align: center;
}
.top-feature img {
	position: absolute;
	margin: 0;
}
.left-cloud {
	top: 0;
	left:0;
}
.right-cloud {
	bottom: 0;
	right: 0;
}
.left-human {
	bottom: 16px;
	left: 48px;
}
.right-human {
	bottom: 16px;
	right: 16px;
}
.feature-text {
	color: #00133B;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	z-index: 3;
	font-size: 18px;
}
.feature-text h2 {
	margin: 0 0 16px;
}
.feature-text h3 {
	margin: 0 0 32px;
	border: none;
	font-size: 30px;
	font-family: "noto serif jp";
	text-align: center;
}
.feature-text h3 span {
	font-size: 18px;
}
.feature-text p {
	margin: 0 0 16px;
}
.feature-text .feature-focus {
	font-size: 18px;
	font-weight: bold;
	width: 172px;
	padding: 10px;
	margin-bottom: 16px;
	text-align: center;
	border: 1px solid #00133B;
}
.feature-text .feature-link {
    width: 248px;
    background-color: #93A600;
    text-align: center;
}
.feature-text .feature-link a {
	font-size: 14px;
	color: #fff;
	background-color: #93A600;
	text-decoration: none;
	display: block;
    width: 100%;
    padding: 12px;
}
.feature-text .feature-link a:after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 9px;
	background-image: url(../files/arrow_right.png);
	background-size: contain;
	vertical-align: middle;
	margin: 0 0 4px 10px;
}
@media screen and (max-width: 1200px) {
	.top-feature {
		height: auto;
	}
	.feature-text {
		text-align: center;
		padding: 32px 0 160px;
	}
	.left-human {
		bottom: 16px;
		left: 16px;
	}
}



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

	topics

=========================================================== */
#top-topics {
	width: 350px;
}
@media screen and (max-width: 1200px) {
	#top-topics {
		width: auto;
	}
}
#top-topics li {
	text-align: center;
	margin: 0 0 10px;
	padding: 0 0 10px;
	border-bottom: solid 1px #ddd;
}
#top-topics li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}
#top-topics li img {
	display: block;
	margin: 5px auto;
}

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

	banner-slider

=========================================================== */
.banner-slider li {
	margin: 0;
}
.top-slider-wrapper {
}
.top-slider-wrapper .bx-wrapper {
	width: 1020px !important;
	position: relative;
     margin: 0 auto!important;
     padding: 0;
     *zoom: 1;
}
.top-slider-wrapper .bx-wrapper .bx-viewport {
	background-color: transparent !important;
}
.top-slider-wrapper .bx-wrapper .bx-pager,
.top-slider-wrapper .bx-wrapper .bx-controls-auto {
     position: absolute;
     width: 100%;
}
/* --- slider --- */
.top-slider-wrapper .bx-wrapper .bx-loading {
	background: none !important;
}
/* DIRECTION CONTROLS (NEXT / PREV) */
.top-slider-wrapper .bx-controls-direction a {
	position: absolute;
	top: 0;
	width: 20px;
	height: 100px;
	margin-top: 0;
	background: #A8BD00;
	z-index: 10;
    /*ã€€Scott Kellum Method */
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
.top-slider-wrapper .bx-controls-direction a.bx-prev {
	left: -50px;
}
.top-slider-wrapper .bx-controls-direction a.bx-next {
	right: -50px;
}
.top-slider-wrapper .bx-controls-direction a::before {
	position: absolute;
	content: " ";
	display: inline-block;
	width: 10px;
	height: 10px;
	top: 50%;
	left: 50%;
	margin-top: -5px;
}
.top-slider-wrapper .bx-controls-direction a.bx-prev::before {
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-left: -2px;
}
.top-slider-wrapper .bx-controls-direction a.bx-next::before {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-left: -7px;
}
@media screen and (max-width: 1200px) {
	.top-slider-wrapper {
		padding: 0 8px;
	}
	.top-slider-wrapper .bx-wrapper {
		width: calc(100% - 60px) !important;
		margin: 0 30px !important;
	}
	/* DIRECTION CONTROLS (NEXT / PREV) */
	.top-slider-wrapper .bx-controls-direction a {
		top: 50%;
		height: 50px;
		transform: translateY(-50%);
	}
	.top-slider-wrapper .bx-controls-direction a.bx-prev {
		left: -30px;
	}
	.top-slider-wrapper .bx-controls-direction a.bx-next {
		right: -30px;
	}
}

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

	official-hp

=========================================================== */
.official-hp {
	background-color: rgba(246,240,233,0.64);
}
.banner-area {
    max-width: 1088px;
    margin: 0 auto;
    padding-top: 20px;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 20px;
}
.official-hp h2 {
	text-align: left;
	font-size: 14px;
	position: relative;
	padding: 0;
	margin-bottom: 16px;
}
.official-hp h2::before {
	display: none;
}
.official-hp h2::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 88px;
	width: calc(100% - 88px);
	height: 1px;
	background-color: #5B5F63;
	z-index: 1;
}
.official-hp h2 span {
	display: inline-block;
	padding: 0;
	z-index: 2;
	position: relative;
	color: #5B5F63;
	letter-spacing: 0;
}

.official-hp ul{
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 32px;
}

.official-hp ul li {
	background-color: #fff;
    width: 32%;
	height: 80px;
	margin-bottom: 16px;
}
.official-hp ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
    padding: 10px;
}
.am-banner {
	width: 100%;
	height: 128px;
	background-color: #fff;
}
.am-banner a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
    padding: 10px;
}
@media screen and (max-width: 1200px) {
	.official-hp {
		background: none;
	}	
	.official-hp ul {
		margin-bottom: 0;
	}

  .official-hp ul li{
    width: 100%;
	margin-bottom: 8px;
  }
  .banner-area {
	  padding: 16px 0 8px 0;
  }
}

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

	related-sites

=========================================================== */
.related-sites {
	background-color: #ebebeb;
	padding: 50px 0 !important;
	text-align: center;
}
@media screen and (max-width: 1200px) {
	.related-sites {
		padding: 50px 20px !important;
	}
}


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

	top-news-topics

=========================================================== */
.top-news-topics {
    justify-content: space-between;
    background-color: #F1EDE1;
}
.top-news-topics section {
	margin-bottom: 0 !important;
}
.top-news-topics__box {
	position: relative;
	text-align: left;
	padding: 16px;
}


.top-news-topics h1 {
	position: relative;
	width: 100%;
	font-family: "Noto Serif JP";
	font-size: 17px;
	font-weight: bold;
	color: #976035;
	background-color: #B8E3B7;
	padding: 12px 16px;
	height: 48px;
	
}


.top-news-topics h1 span {
	padding-left: 35px;
	display: inline-block;
	background-position: 0 50%;
	background-repeat: no-repeat;
}


	.top-news-topics__box {
    border: none;
    padding-top: 6px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 16px;
	}
	.top-news-topics__box:last-child {
		/* border-bottom: solid 1px #ddd; */
	}

.top-news-topics h1 {
    height: auto;
    line-height: auto;
    background-color: #000;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    padding: 20px 5%;
    text-align: center;

}

.top-news-topics h1 strong {
    padding-right: 5%;
    padding-left: 5%;
    background: linear-gradient(transparent 60%, #FF0000 0%);
}


@media screen and (max-width: 1200px) {
.top-news-topics h1 strong {
	
    font-size: 18px;
    padding: 0%;
    background: linear-gradient(transparent 60%, #FF0000 0%);
}
}






	.top-news-topics h1 span {
		padding: 30px 0 0 0;
		background-position: 50% 0;
		font-weight: bold;
		letter-spacing: 0;
		color: #006cb6;
	}






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

	accordion

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


.s_01 .accordion_one {
  max-width: 1024px;
  margin: 0 auto;
}
.s_01 .accordion_one .accordion_header {
 
	
	background-image: url(../files/tabbg.jpg);
	background-size: contain;
	vertical-align: middle;
	
	
	
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  padding: 20px 11%;
  text-align: center;
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition-duration: 0.2s;
    margin-top: 20px;
}

.s_01 .accordion_one .accordion_header:hover {
  opacity: .8;
}
.s_01 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s_01 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_01 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.s_01 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s_01 .accordion_one .accordion_inner {
    display: none;
    padding: 30px 30px;
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
    border-bottom: 1px solid #d0d0d0;
    box-sizing: border-box;
	background-color: #fff;
	
	
}
.s_01 .accordion_one .accordion_inner .box_one {
  height: auto;
}
.s_01 .accordion_one .accordion_inner p.txt_a_ac{
  margin: 0;
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 8px;
	
}

.s_01 .accordion_one .accordion_inner p.txt_a_ac_nomargin{
  margin: 0;
	font-size: 15px;
	line-height: 1.5;
	margin-bottom: 10px;
	
}




.s_01 .accordion_one .accordion_inner p.txt_a_ac strong {
  color: #ff0000;
	font-weight: bolder;
    background: linear-gradient(transparent 60%, #FFF100 0%);
	
}

.s_01 .accordion_one .accordion_inner p.txt_a_ac p {


	margin-bottom: 20px;
	padding-bottom: 20px;
	
}

.s_01 .accordion_one .accordion_inner p.txt_a_ac_nomargin p {
	margin-bottom: 0px;
	padding-bottom: 0px;
	
}


@media screen and (max-width: 1024px) {
  .s_01 .accordion_one .accordion_header {
    font-size: 18px;
  }
  .s_01 .accordion_one .accordion_header .i_box {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .s_01 .accordion_one .accordion_header {
    font-size: 16px;
    text-align: left;
    padding: 15px 60px 15px 15px;
  }
}



  
#page_top {
    position: fixed;
    bottom: 30px;
    right: 20px;
	z-index: 9999;
}
#page_top a {
    background-color: #A8BD00;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 20px 20px;
}
#page_top a:hover {
    background-color: #BED600;
    text-decoration: none;
}


.clickhere{
	position: absolute;
  top: -60%;
  right: 4%;
  width: 40px;
  height: 40px;
	z-index: 9999;
	
	
}


@media screen and (min-width:1024px) {
.clickhere{
	position: absolute;
  top: -18%;
  right: -3%;
  width: 80px;
}
	
	.clickhere img{
  width: 80px;
}
}

.to_lineortel img{
	margin-right: auto;
    margin-left: auto;
    margin-bottom: -5px; 
    display : block; 
	
}