@charset "UTF-8";

/* ==========================================================
 html5 elements
========================================================== */
article, aside, figure, figcaption, footer, header, nav, section
{ display: block;}

/* ==========================================================
 reseting
========================================================== */
body {
	line-height: 1.6;
	color: #1d1d1d;
	font-size: 15px;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 1500px) and (min-width: 769px) {
	body {
		font-size: 13px;
	}
}
@media screen and (max-width: 768px) {
	body {
		min-width: 2px;
		overflow: hidden;
		font-size: 13px;
	}
}

body, input, textarea, select, button {
	font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	/* 明朝フォント
	font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;*/
}
body, div, pre, p, blockquote, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, th, td, button, figure, figcaption
{ margin: 0; padding: 0;}
input, textarea
{ margin: 0; font-size: 100%;}
input, textarea, select
{ /*-webkit-appearance: none; border-radius: 0;*/}
textarea
{ resize: none;}
button
{ border: none; overflow: visible; background: none; vertical-align: top;	font-size: 100%; color: inherit; cursor: pointer; -webkit-appearance: none;}
label
{ cursor: pointer;}
table
{ border-collapse: collapse; border-spacing: 0; font-size: 100%;}
fieldset, img
{ border: 0;}
img
{ height: auto; vertical-align: top;}
address, caption, code, em, th
{ font-style: normal; font-weight: normal;}
ol, ul
{ list-style: none;}
caption, th
{ text-align: left;}
h1, h2, h3, h4, h5, h6, strong, em
{ font-size: 100%; font-weight: normal;}
a, input
{/* outline: none; -webkit-tap-highlight-color:rgba(0,0,0,0);*/}
sup, sub
{ font-size: 63%;}
sup
{ vertical-align: top;}
sub
{ vertical-align: baseline;}
*
{ box-sizing: border-box; -webkit-box-sizing: border-box;}
sup2, sub2
{ font-size: 43%;}
sup2
{ vertical-align: top;}
sub2
{ vertical-align: baseline;}
*
{ box-sizing: border-box; -webkit-box-sizing: border-box;}


/* ==========================================================
 base Link
========================================================== */
a {
	color: #e18007;
	text-decoration: none;
}
a:visited {}
a:hover,
a:active,
a:focus { text-decoration: underline;}

/* ==========================================================
 clearfix
========================================================== */
.clearfix:before, .clearfix:after,
.contents:before, .contents:after {
	content: "";
	display: table;
}
.clearfix:after,
.contents:after {
	clear: both;
}

/* For IE 6/7
---------------------------------------------------------- */
.clearfix,
.contents {
	*zoom: 1;
}

/* ==========================================================
 layout
========================================================== */
html { overflow-y: scroll;}
html.is-screen-locked {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	right: 0;
}
body { text-align: left;}

/* ==========================================================
 wrapper
========================================================== */
.wrapper {
	width: 100%;
	max-width: 1800px;
	min-width: 1200px;
	margin: 0 auto;
	padding-top: 140px;
}
@media screen and (max-width: 768px) {
	.wrapper {
		padding-top: 59px;
		min-width: inherit;
	}
}

/* ==========================================================
 header
========================================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	min-width: 1200px;
	height: 70px;
	z-index: 200;
	background-color: #fff;
}
.header-in {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	text-align: left;
}
.header-logo {
	position: absolute;
	top: 10px;
	left: 10px;
}
	.header-utility {
		display: flex;
		justify-content: flex-end;
		/* height: 70px; */
		padding: 20px 0;
	}
		.header-search {
			position: relative;
			width: 220px;
			height: 30px;
		}
		#inputSearchTxt {
			-webkit-appearance: none;
			-moz-appearance: none;
			appearance: none;
			border-radius: 0;
			width: 220px;
			height: 30px;
			padding: 0 30px 0 10px;
			border: 1px solid #cecece;
			font-size: 16px;
			/* line-height: 28px; */
		}
			#inputSearchTxt::-webkit-input-placeholder { color: #7c7c7c;}
			#inputSearchTxt::-moz-placeholder { color: #7c7c7c;}
			#inputSearchTxt:-ms-input-placeholder { color: #7c7c7c;}
			#inputSearchTxt:-moz-placeholder { color: #7c7c7c;}
		#inputSearchBtn {
			position: absolute;
			right: 10px;
			top: 6px;
			width: 19px;
			height: 19px;
		}

		.header-btn {
			display: none;
		}

		.header-link {
			margin-left: 30px;
		}
		.header-link a {
			color: #1d1d1d;
			font-size: 18px;
		}

@media screen and (max-width: 768px) {
	.header {
		height: 59px;
		border-bottom: 1px solid #d3d3d3;
		min-width: inherit;
	}
		.header-in {
			width: 100%;
		}
		.header-logo {
			top: 13px;
			left: 13px;
		}
			.header-logo img {
				width: 194px;
				height: auto;
			}
		.header-utility {
			padding: 0;
		}
			.header-search {
				display: none;
				position: absolute;
				top: 59px;
				left: 0;
				right: 0;
				width: 100%;
				height: 66px;
				padding: 10px 8px;
				background-color: #e18007;
			}
			.header-search.is-active {
				display: block;
			}
			#inputSearchTxt {
				width: 100%;
				height: 46px;
				padding: 0 12px;
				border: none;
				font-size: 15px;
			}
				#inputSearchTxt::-webkit-input-placeholder { color: #979797;}
				#inputSearchTxt::-moz-placeholder { color: #979797;}
				#inputSearchTxt:-ms-input-placeholder { color: #979797;}
				#inputSearchTxt:-moz-placeholder { color: #979797;}
			#inputSearchBtn {
				display: none;
			}

			.header-link {
				margin: 0;
				background-color: #1d1d1d;
			}
			.header-link a {
				display: block;
				padding: 12px 20px;
				color: #fff;
			}
				.header-link .ico-arrow-01 {
					padding-left: 18px;
					position: relative;
				}
				.header-link .ico-arrow-01::after {
					border-width: 4px 0 4px 5px;
				}

			.header-btn {
				display: flex;
			}
			.header-btn-search,
			.header-btn-menu {
				width: 59px;
				height: 59px;
				text-indent: 100%;
				white-space: nowrap;
				overflow: hidden;
			}
			.header-btn-search.is-active,
			.header-btn-menu.is-active {
				background: #1d1d1d url('/common/img/ico_close_01.png') no-repeat center center;
				background-size: 22px auto;
			}
			.header-btn-search {
				background: url('/common/img/ico_search_01_sp.png') no-repeat center center;
				background-size: 27px auto;
			}
			.header-btn-menu {
				background: url('/common/img/ico_hamburger_01.png') no-repeat center center;
				background-size: auto 24px;
			}
}

/* ==========================================================
 nav-global
========================================================== */
.nav-global {
	overflow: hidden;
	position: fixed;
	top: 70px;
	left: 0;
	right: 0;
	width: 100%;
	min-width: 1200px;
	z-index: 100;
	background: rgba(19,16,0,0.8);
}
	.nav-global-in {
		width: 1200px;
		margin: 0 auto;
		text-align: left;
	}
	.nav-global ul {
		display: flex;
		justify-content: space-between;
	}
	.nav-global ul ul {
		display: none;
	}
	.nav-global li {
		font-size: 18px;
	}
		.nav-global li a {
			position: relative;
			display: block;
			padding: 18px 24px;
			text-decoration: none;
			color: #fff;
		}

		/*Global Navigation */
		.nav-global li.nav09 .ico-blank-01::after {
			display: none;
		}
		.nav-global li.nav10 {
			width: 270px;
			text-align: center;
		}
			.nav-global li.nav10 a {
				font-weight: bold;
				display: block;
				padding: 18px 0;
				background: rgba(225,128,7,1.0);
				-webkit-transition: all .3s;
				transition: all .3s;
			}
			.nav-global li.nav10 a:hover {
				background: rgba(225,128,7,0.5);
				color: #fff;
			}
			.nav-global li.nav10 a::after {
				display: none;
			}
			.nav-global li.nav10 .ico-mail {
				padding-left: 35px;
				background: url(/common/img/ico_mail_01.png) no-repeat left center;
			}

			/* .has-sub */
			.has-sub,
			.has-sub-in{
				display: none;
			}
@media screen and (max-width: 1500px) {
	.nav-global li {
		font-size: 16px;
	}
	.nav-global li a {
		padding: 15px 29px;
	}
	.nav-global li.nav10 a {
		padding: 15px 0;
	}
}
@media screen and (min-width: 769px) {
	.nav-global li a::after {
		position: absolute;
		bottom: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 5px;
		background: #e18007;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform .3s;
	}

	/*Current GNavi */
	body#g01 .nav-global li.nav01 > a,
	body#g02 .nav-global li.nav02 > a,
	body#g03 .nav-global li.nav03 > a,
	body#g04 .nav-global li.nav04 > a,
	body#g05 .nav-global li.nav05 > a,
	body#g06 .nav-global li.nav06 > a {
		color: #e18007;
	}
		body#g01 .nav-global li.nav01 a::after,
		body#g02 .nav-global li.nav02 a::after,
		body#g03 .nav-global li.nav03 a::after,
		body#g04 .nav-global li.nav04 a::after,
		body#g05 .nav-global li.nav05 a::after,
		body#g06 .nav-global li.nav06 a::after {
			position: absolute;
			bottom: 0;
			left: 0;
			content: '';
			width: 100%;
			height: 5px;
			background: #e18007;
			transform: scale(1, 1);
		}

	.nav-global li a:hover {
		color: #e18007;
	}
		.nav-global li a:hover::after {
			transform-origin: left top;
			transform: scale(1, 1);
		}
}

@media screen and (max-width: 768px) {
	.nav-global {
		display: none;
		position: fixed;
		top: 59px;
		left: 0;
		right: 0;
		bottom: 0;
		min-width: inherit;
		height: auto;
	}
	.nav-global.is-active {
		display: block;
	}
		.nav-global-in {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			z-index: 5;
			width: 100%;
			background: #fff;
			overflow-y: scroll;
		}
			.nav-global-in li > a.is-current {
				color: #fff;
				background-color: #e18007;
			}
				.nav-global-in li > a.is-current + .has-sub {
					background-color: #e18007;
				}
					.nav-global-in li > a.is-current + .has-sub::before,
					.nav-global-in li > a.is-current + .has-sub::after {
						background-color: #fff;
					}
		.nav-global ul {
			flex-direction: column;
		}
		.nav-global li {
			position: relative;
			border-top: 1px solid #bfbfbf;
		}
		.nav-global li:first-child {
			border-top: none;
		}
			.nav-global li a {
				background-color: #fff;
				font-weight: bold;
				position: relative;
				display: -webkit-flex;
				display: -ms-flex;
				display: flex;
				-webkit-flex-wrap: wrap;
				-ms-flex-wrap: wrap;
				flex-wrap: wrap;
				-ms-align-items: center;
				align-items: center;
				height: 60px;
				padding: 5px 20px;
				text-decoration: none;
				color: #1d1d1d;
			}

			.nav-global li a:not([target="_blank"])::before {
				position: absolute;
				content: '';
				top: calc(50% - 11px);
				right: 26px;
				width: 0;
				height: 0;
				border-style: solid;
				border-width: 10px 0 10px 12px;
				border-color: transparent transparent transparent #f18501;
			}

			.nav-global li a:not([target="_blank"])::after {
				position: absolute;
				content: '';
				top: calc(50% - 11px);
				right: 29px;
				width: 0;
				height: 0;
				border-style: solid;
				border-width: 10px 0 10px 12px;
				border-color: transparent transparent transparent #fff;
			}

			.nav-global li > a.is-current::before {
				border-color: transparent transparent transparent #fff;
			}
			.nav-global li > a.is-current::after {
				border-color: transparent transparent transparent #e18007;
			}

			/*Global Navigation */
			.nav-global li.nav09 .ico-blank-01::after {
				display: inline-block;
			}

			/* .has-sub */
			.has-sub {
				cursor: pointer;
				display: block;
				position: absolute;
				top: 0;
				right: 0;
				width: 65px;
				height: 60px;
				z-index: 20;
				background-color: #fff;
			}
			.has-sub:before {
				position: absolute;
				content: '';
				top: 29px;
				left: calc(50% - 11px);
				width: 22px;
				height: 2px;
				background-color: #e18007;
			}
			.has-sub:after {
				position: absolute;
				content: '';
				top: calc(50% - 11px);
				left: 32px;
				width: 2px;
				height: 22px;
				background-color: #e18007;
			}
			.has-sub.is-active:after {
				display: none;
			}
			.has-sub.is-active + ul { display: block;}

			.has-sub-in {
				cursor: pointer;
				display: block;
				position: absolute;
				top: 0;
				right: 0;
				width: 65px;
				height: 60px;
				z-index: 20;
				background-color: #fef2e4;
			}
			.has-sub-in:before {
				position: absolute;
				content: '';
				top: 29px;
				left: calc(50% - 11px);
				width: 22px;
				height: 2px;
				background-color: #e18007;
			}
			.has-sub-in:after {
				position: absolute;
				content: '';
				top: calc(50% - 11px);
				left: 32px;
				width: 2px;
				height: 22px;
				background-color: #e18007;
			}
			.has-sub-in.is-active:after {
				display: none;
			}
			.has-sub-in.is-active + ul { display: block;}

			/* .nav-global-bg */
			.nav-global-bg {
				position: fixed;
				top: 0;
				left: 0;
				right: 0;
				bottom: 0;
				width: 100%;
				height: 100%;
				z-index: 0;
				background: rgba(0,0,0,0.6);
			}
}

/* ==========================================================
 nav-global-sub
========================================================== */
@media screen and (max-width: 768px) {
	.nav-global-sub {
		border-top: 1px solid #bfbfbf;
	}
		.nav-global-sub li {
			font-size: 16px;
		}
			.nav-global-sub li a {
				color: #1d1d1d;
				padding: 5px 35px;
				background-color: #fef2e4;
			}
				.nav-global-sub li a::after {
					border-color: transparent transparent transparent #fef2e4 !important;
				}
			.nav-global-sub li a.is-current {
				color: #fff;
				background-color: #f18501;
			}
				.nav-global-sub li a.is-current + .has-sub-in {
					background-color: #f18501;
				}
					.nav-global-sub li a.is-current + .has-sub-in::before,
					.nav-global-sub li a.is-current + .has-sub-in::after {
						background-color: #fff;
					}
				.nav-global-sub li a.is-current::before {
					border-color: transparent transparent transparent #fff !important;
				}
				.nav-global-sub li a.is-current::after {
					border-color: transparent transparent transparent #f18501 !important;
				}
	.nav-global-sub-in { border-top: 1px solid #bfbfbf;}
		.nav-global-sub-in li a {
			font-size: 12px;
			padding: 5px 50px;
		}
}

/* ==========================================================
 nav-local
========================================================== */
.nav-local {
}
	.nav-local .ttl {
		padding: 14px 0 14px 30px;
		border-top: 5px solid #1d1d1d;
		font-size: 24px;
		font-weight: bold;
	}
	.nav-local ul:not(.csr-pageInner--link) {
		border-top: 1px solid #9e9e9e;
	}
	.nav-local li {
		border-bottom: 1px solid #9e9e9e;
	}
	.nav-local li li {
		border-bottom: none;
	}
		.nav-local li a {
			display: block;
			padding: 17px 0 17px 48px;
			background-color: #fff;
			font-size: 16px;
			color: #1d1d1d;
			-webkit-transition: all .3s;
			transition: all .3s;
		}
		.nav-local li li a {
			padding-left: 58px;
			font-size: 15px;
		}
		.nav-local li a:hover {
			background-color: #dedede;
			text-decoration: none;
		}

		.nav-local ul.csr-pageInner--link li a {
			padding-left: 78px;
		}

	/* current */
	body.l01 .lnav01 a,
	body.l02 .lnav02 a,
	body.l03 .lnav03 a,
	body.l04 .lnav04 a,
	body.l05 .lnav05 a,
	body.l06 .lnav06 a,
	body.l07 .lnav07 a,
	body.l08 .lnav08 a,
	body.l09 .lnav09 a,
	body.l10 .lnav10 a,
	body.l10-01 .lnav10-01 a,
	body.l10-02 .lnav10-02 a,
	body.l10-03 .lnav10-03 a,
	body.l10-04 .lnav10-04 a,
	.nav-local a.is-current {
		background-color: #dedede;
	}
@media screen and (max-width: 1500px) and (min-width: 769px) {
	.nav-local .ttl {
		font-size: 20px;
	}
	.nav-local li a {
		font-size: 14px;
	}
}

@media screen and (max-width: 768px) {
	.nav-local {
		margin-top: 50px;
	}
		.nav-local .ttl {
			padding: 12px 20px;
			background-color: #e5e5e5;
			border-top: 1px solid #2b2b2b;
			font-size: 16px;
		}
		.nav-local ul {
			position: relative;
			display: flex;
			flex-wrap: wrap;
			border-top: none;
			border-top: 1px solid #2b2b2b;
		}
		.nav-local ul ul {
			display: none;
		}
		.nav-local ul:after {
			content: '';
			position: absolute;
			bottom: 0;
			left: 0;
			right: 0;
			width: 100%;
			height: 0;
			border-bottom: 1px solid #2b2b2b;
		}
		.nav-local li {
			width: 50%;
			border-bottom: 1px solid #2b2b2b;
		}
		.nav-local li:nth-child(2n+1) {
			border-right: 1px solid #2b2b2b;
		}
			.nav-local li a {
				padding: 16px 0 16px 20px;
				font-size: 11px;
			}

		/* current */
		body.l01 .lnav01 a,
		body.l02 .lnav02 a,
		body.l03 .lnav03 a,
		body.l04 .lnav04 a,
		body.l05 .lnav05 a,
		body.l06 .lnav06 a,
		body.l07 .lnav07 a,
		body.l08 .lnav08 a,
		body.l09 .lnav09 a,
		body.l10 .lnav10 a,
		.nav-local a.is-current {
			background-color: #fef2e4;
		}
}

.nav-local-banner {
	margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
	.nav-local-banner {
		margin: 20px auto 0;
		text-align: center;
	}
}

/* ==========================================================
 nav-breadcrumb
========================================================== */
.nav-breadcrumb {
	margin-bottom: 50px;
	padding: 9px 0;
	border-bottom: 1px solid #dadada;
}
	.nav-breadcrumb-in {
		width: 1200px;
		overflow: hidden;
		margin: 0 auto;
		text-align: left;
	}
	.nav-breadcrumb li {
		position: relative;
		float: left;
		white-space: nowrap;
		padding: 0 22px;
		font-size: 14px;
		color: #767676;
	}
	.nav-breadcrumb li::before {
		content: '>';
		position: absolute;
		display: inline-block;
		left: 0;
		vertical-align: middle;
	}
	.nav-breadcrumb li.home {
		padding: 0 14px 0 10px;
	}
	.nav-breadcrumb li.home::before {
		display: none;
	}
		.nav-breadcrumb li a {
			color: #767676;
		}
@media screen and (max-width: 1500px) and (min-width: 769px) {
	.nav-breadcrumb-in {
		width: 1000px;
	}
}
@media screen and (max-width: 768px) {
	.nav-breadcrumb {
		margin-bottom: 20px;
		padding: 6px 0;
	}
		.nav-breadcrumb-in {
			width: 100%;
			padding: 0 20px;
		}
		.nav-breadcrumb li {
			padding: 0 14px;
			font-size: 11px;
		}
		.nav-breadcrumb li.home {
			padding: 0 14px 0 0;
		}
		.nav-breadcrumb li::before {
			top: -1px;
		}
}

/* ==========================================================
 contents
========================================================== */
.contents {
	width: 1200px;
	margin: 0 auto 100px;
	text-align: left;
}
.contents.top {
	width: 100%;
	max-width: 1500px;
	min-width: inherit;
	margin-bottom: 0;
}
.contents-main {
	float: right;
	width: 780px;
}
.contents-sub {
	float: left;
	width: 360px;
}
.contents-aside .contents-main {
	float: left;
}
.contents-aside .contents-sub {
	float: right;
}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.contents {
		width: 1000px;
	}
	.contents-main {
		width:640px;
	}
	.contents-sub {
		width: 300px;
	}
}

@media screen and (max-width: 768px) {
	.contents {
		margin-bottom: 65px;
	}
	.contents,
	.contents.top,
	.contents-main,
	.contents-sub {
		width: 100%;
		min-width: inherit;
	}
	.contents-sub-in {
		padding: 0 20px;
	}

	.contents-aside {
		margin-bottom: 50px;
	}
	.contents-aside + .nav-local {
		margin: 0 0 65px;
	}
	.contents-main .sec-cmn-01:last-of-type {
		padding-bottom: 25px;
		margin-bottom: 25px;
		border-bottom: 1px solid #969696;
	}
}

/* contents-with-features
---------------------------------------------------------- */
.contents-with-features {}
@media screen and (max-width: 768px) {
	.contents-with-features {
		margin-bottom: 20px;
	}
}

/* ==========================================================
 footer
========================================================== */
.footer {
	width: 100%;
	min-width: 1200px;
	background-color: #fff;
	border-top: 1px solid #d7d7d7;
	position: relative;
}
body#g01 .footer {
	border-top: none;
}
	.footer-in {
		width: 1200px;
		margin: 0 auto;
		text-align: left;
	}
	.footer a {
		color: #1d1d1d;
		-webkit-transition: all .2s ease 0s;
		transition: all .2s ease 0s;
		-webkit-transform: translateZ(0);
		-ms-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		display: inline-block;
	}
		.footer a:hover {
			-ms-filter: 'alpha( opacity=50)';
			filter: alpha( opacity=50);
			opacity: 0.5;
			text-decoration: none;
		}

	/* .footer-utility	*/
	.footer-utility {
		padding: 62px 0 127px;
	}
	.footer-ttl {
		padding-bottom: 16px;
		border-bottom: 1px solid #d7d7d7;
		font-size: 18px;
		font-weight: bold;
	}
	.footer-ttl-group {
		margin-bottom: 50px;
	}
	.footer-ttl-bnr {
		border-bottom: none;
	}

	.footer-links {
		padding-left: 20px;
		margin: 25px 0 45px;
	}
		.footer-links li {
			font-size: 16px;
			margin-top: 15px;
		}

	/* .footer-grid */
	.footer-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
		.footer-grid-col {
			width: 280px;
		}
			.footer-grid-col.footer-grid-banner {
				width: 796px;
			}

	/* .footer-banner */
	.footer-banner {
		overflow: hidden;
		padding-top: 17px;
	}
	.footer-banner .footer-banner-row {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 0 -8px;
	}
		.footer-banner .footer-banner-row .footer-banner-col {
			-webkit-flex: 0 1 auto;
			-ms-flex: 0 1 auto;
			flex: 0 1 auto;
			margin: 0 8px;
		}
		.footer-banner .footer-banner-row .footer-banner-col .footer-banner-link {
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
			-webkit-transform: translate3d(0,0,0);
			transform: translate3d(0,0,0);
		}
		.footer-banner .footer-banner-row .footer-banner-col .footer-banner-img {
			-webkit-transform: translate3d(0,0,0) rotate(0.1deg);
			transform: translate3d(0,0,0) rotate(0.1deg);
		}
		.footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl {
			-webkit-transform: translate3d(0,0,0) ;
			transform: translate3d(0,0,0);
		}
		.footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl {
			display: inline-block;
			font-size: 14px;
			font-weight: bold;
			margin-bottom: 10px;
		}
			.footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl.ico-blank-01::after {
				position: absolute;
				top: 1px;
				-webkit-transform: translate3d(0,0,0) rotate(0.1deg);
				transform: translate3d(0,0,0) rotate(0.1deg);
			}
		.footer-banner .footer-banner-row .footer-banner-col .footer-banner-img {
			display: block;
			max-width: 185px;
		}

	/* .footer-nav */
	.footer-nav-wrap {
		position: relative;
	}
	.footer-nav {
		padding: 14px 0;
		background-color: #2b2b2b;
	}
		.footer-nav li {
			display: inline;
			margin-left: 50px;
		}
		.footer-nav li:first-child {
			margin-left: 0;
			/* font-size: 14px; */
		}
			.footer-nav li a {
				color: #fff;
			}

	/* .footer-copyright	*/
	.footer-copyright {
		padding: 5px 0;
	}
	.footer-copyright-txt {
		text-align: right;
	}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.footer-in {
		width: 1100px;
	}
	.footer-ttl {
		font-size: 16px;
	}
	.footer-links li {
	font-size: 13px;
	margin-top: 6px;
	}
	.footer-grid-col {
		width: 260px;
	}
	.footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl {
		font-size: 13px;
	}
	.footer-banner .footer-banner-row .footer-banner-col .footer-banner-img {
		display: block;
		max-width: 180px;
	}
}

@media screen and (max-width: 768px) {
	.footer {
		min-width: inherit;
	}
		.footer-in {
			width: 100%;
			padding: 0 20px;
		}

		/* .footer-nav */
		.footer-nav {
			padding: 17px 0;
		}
			.footer-nav li:nth-child(-n+2) {
				margin-top: 4px;
			}
			.footer-nav li {
				margin-left: 0;
				font-size: 13px;
				display: inline-block;
				width: 49%;
				margin-top: 14px;
				margin-bottom: 5px;
			}

		/* .footer-copyright	*/
		.footer-copyright {
			padding: 8px 0;
		}
			.footer-copyright-txt {
				font-size: 10px;
				text-align: center;
			}
}

/* ==========================================================
 grid
========================================================== */
/* grid-two
---------------------------------------------------------- */
.grid-two {
	display: flex;
	flex-wrap: wrap;
	margin: 15px 0 0;
}
	.grid-two > .col {
		width: 50%;
		padding: 0 10px;
		margin-bottom: 20px;
	}
	.grid-two .title-C {
		display: inline-block;
		margin-top: 4px;
		margin-bottom: 18px;
	}

	@media screen and (max-width: 1500px) {
		.grid-two > .col > .image_wrap > .jstream-eqPlayer {
			width: 300px !important;
			height: 169px !important;
			background-color: #fff !important;
		}
		.grid-two > .col > .image_wrap > .jstream-eqPlayer > .eq-h5_player {
			width: 300px !important;
			height: 169px !important;
			background-color: #fff !important;
		}
	}
	@media screen and (max-width: 768px) {
		.grid-two {
			flex-direction: column;
			margin: 0;
		}
			.grid-two > .col {
				width: 100%;
				padding: 0;
				margin-bottom: 10px;
			}
			.grid-two .title-C {
				margin-bottom: 10px;
			}
	}

/* grid-two-full
---------------------------------------------------------- */
.grid-two-full {
	overflow: hidden;
}
.grid-two-full > .row {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
					flex-wrap: wrap;
	margin: -40px -30px 0;
}
.grid-two-full > .row > .col {
	position: relative;
	padding: 0 30px;
	margin-top: 40px;
	width: 50%;
}
	.grid-two-full > .row > .col .link-img .image_wrap {
		width: 100%;
		position: relative;
		-webkit-transition: .3s ease-in-out;
		-o-transition: .3s ease-in-out;
		transition: .3s ease-in-out;
	}
		.grid-two-full > .row > .col .link-img .image_wrap .image {
			width: 100%;
		}
		.grid-two-full > .row > .col .link-img:hover .image_wrap {
			opacity: .5;
		}
	.grid-two-full > .row > .col .link-txt {
		display: inline-block;
		color: #1d1d1d;
	}
		.grid-two-full > .row > .col .link-txt .text {
			padding-left: 20px;
			position: relative;
			margin-top: 12px;
		}
			.grid-two-full > .row > .col .link-txt .text::before {
				content: '';
				position: absolute;
				top: 6px;
				left: 0;
				width: 0;
				height: 0;
				border-style: solid;
				border-width: 5px 0 5px 9px;
				border-color: transparent transparent transparent #e18007;
			}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.grid-two-full > .row {
		margin: -40px -15px 0;
	}
	.grid-two-full > .row > .col {
		padding: 0 15px;
	}
}

@media screen and (max-width: 768px) {
	.grid-two-full > .row {
		margin: -22px -10px 0;
		padding-top: 0;
	}
		.grid-two-full > .row > .col {
			margin-top: 22px;
			padding: 0 10px;
			width: 100%;
		}
				.grid-two-full > .row > .col .link-txt .text {
					font-size: 14px;
					margin-top: 11px;
					padding-left: 15px;
				}
					.grid-two-full > .row > .col .link-txt .text::before {
						top: 6px;
						border-width: 3.5px 0 3.5px 7px;
					}
}

/* grid-three-full
---------------------------------------------------------- */
.grid-three-full {
	overflow: hidden;
}
.grid-three-full > .row {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
					flex-wrap: wrap;
	margin: -40px -15px 0;
}
.grid-three-full > .row > .col {
	position: relative;
	padding: 0 15px;
	margin-top: 40px;
	width: 33.3333%;
}
	.grid-three-full > .row > .col .link-img {}
			.grid-three-full > .row > .col .link-img .image_wrap {
				width: 100%;
				position: relative;
				-webkit-transition: .3s ease-in-out;
				-o-transition: .3s ease-in-out;
				transition: .3s ease-in-out;
			}
				.grid-three-full > .row > .col .link-img .image_wrap .image {
					width: 100%;
				}
				.grid-three-full > .row > .col .link-img:hover .image_wrap {
					opacity: .5;
				}
	.grid-three-full > .row > .col .link-txt {
		display: inline-block;
		color: #1d1d1d;
	}
		.grid-three-full > .row > .col .link-txt .text {
			padding-left: 20px;
			position: relative;
			margin-top: 12px;
		}
			.grid-three-full > .row > .col .link-txt .text::before {
				content: '';
				position: absolute;
				top: 6px;
				left: 0;
				width: 0;
				height: 0;
				border-style: solid;
				border-width: 5px 0 5px 9px;
				border-color: transparent transparent transparent #e18007;
			}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.grid-three-full > .row {
		margin: -40px -15px 0;
	}
	.grid-three-full > .row > .col {
		padding: 0 15px;
	}
}

@media screen and (max-width: 768px) {
	.grid-three-full > .row {
		margin: -22px -10px 0;
		padding-top: 0;
	}
		.grid-three-full > .row > .col {
			margin-top: 22px;
			padding: 0 10px;
			width: 50%;
		}
			.grid-three-full > .row > .col .link-txt .text {
				font-size: 14px;
				margin-top: 11px;
				padding-left: 15px;
			}
				.grid-three-full > .row > .col .link-txt .text::before {
					top: 6px;
					border-width: 3.5px 0 3.5px 7px;
				}
}

.grid-three-flat {
	overflow: hidden;
}
.grid-three-flat > .row {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: -40px -30px 0;
}
.grid-three-flat > .row > .col {
	position: relative;
	padding: 0 5px;
	margin-top: 40px;
	width: 33.3333%;
}
.grid-three-flat > .row > .col figure,
.grid-three-flat > .row > .col figcaption {
	display: block;
}
.grid-three-flat > .row > .col figure img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.grid-three-flat > .row {
		margin: -22px -10px 0;
		padding-top: 0;
	}
	.grid-three-flat > .row > .col {
		margin-top: 22px;
		padding: 0 10px;
		width: 100%;
	}
}

/* grid-four-full
---------------------------------------------------------- */
.grid-four-full {
	overflow: hidden;
}
.grid-four-full > .row {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
					flex-wrap: wrap;
	margin: -40px -30px 0;
}
.grid-four-full > .row > .col {
	position: relative;
	padding: 0 30px;
	margin-top: 40px;
	width: 25%;
}
	.grid-four-full > .row > .col .link-img {}
			.grid-four-full > .row > .col .link-img .image_wrap {
				width: 100%;
				position: relative;
				-webkit-transition: .3s ease-in-out;
				-o-transition: .3s ease-in-out;
				transition: .3s ease-in-out;
			}
				.grid-four-full > .row > .col .link-img .image_wrap .image {
					width: 100%;
				}
				.grid-four-full > .row > .col .link-img:hover .image_wrap {
					opacity: .5;
				}
	.grid-four-full > .row > .col .link-txt {
		display: inline-block;
		color: #1d1d1d;
	}
		.grid-four-full > .row > .col .link-txt .text {
			padding-left: 20px;
			position: relative;
			margin-top: 12px;
		}
			.grid-four-full > .row > .col .link-txt .text::before {
				content: '';
				position: absolute;
				top: 6px;
				left: 0;
				width: 0;
				height: 0;
				border-style: solid;
				border-width: 5px 0 5px 9px;
				border-color: transparent transparent transparent #e18007;
			}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.grid-four-full > .row {
		margin: -40px -15px 0;
	}
	.grid-four-full > .row > .col {
		padding: 0 15px;
	}
}

@media screen and (max-width: 768px) {
	.grid-four-full > .row {
		margin: -22px -10px 0;
		padding-top: 0;
	}
		.grid-four-full > .row > .col {
			margin-top: 22px;
			padding: 0 10px;
			width: 100%;
		}
				.grid-four-full > .row > .col .link-txt .text {
					font-size: 14px;
					margin-top: 11px;
					padding-left: 15px;
				}
					.grid-four-full > .row > .col .link-txt .text::before {
						top: 6px;
						border-width: 3.5px 0 3.5px 7px;
					}
}

/* ==========================================================
 section
========================================================== */
/* sec-cmn
---------------------------------------------------------- */
@media screen and (max-width: 1500px) and (min-width: 769px) {
	.sec-cmn {
		width: 100%;
		max-width: 1100px;
		margin: 0 auto;
	}
}
.sec-cmn-01 {
	padding-bottom: 20px;
	margin-bottom: 40px;
	border-bottom: 1px solid #969696;
}

.sec-cmn-01:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.sec-cmn-01.no-border {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
	border-bottom: none !important;
}

@media screen and (max-width: 768px) {
	.sec-cmn-01{
		padding-bottom: 15px;
		margin-bottom: 25px;
	}
}

/* sec-cmn-02
---------------------------------------------------------- */
.sec-cmn-02 {
	margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
	.sec-cmn-02 {
		margin-bottom: 25px;
	}
}

/* sec-cmn-03
---------------------------------------------------------- */
.sec-cmn-03,
.sec-cmn-03:last-of-type {
	margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
	.sec-cmn-03,
	.sec-cmn-03:last-of-type {
		margin-bottom: 25px;
	}
}

/* sec-cmn
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
	.sec-cmn-in {
		padding: 0 20px;
	}
}

/* area-features
---------------------------------------------------------- */
.area-features {
	padding: 50px 0;
	background-color: #f2f2f2;;
}
.area-features.s-bd-t {
	border-top: 1px solid #d7d7d7
}
	.area-features-in {
		width: 1200px;
		margin: 0 auto;
		text-align: left;
	}
/* .grid-five */
.grid-five {
	display: flex;
	justify-content: space-between;
}
	.grid-five .col {
		width: 230px;
	}

/* .grid-three */
.grid-three {
	display: flex;
	justify-content: space-between;
}
	.grid-three .col {
		width: 360px;
	}

	/* image-txt-05*/
.image-txt-05{}
	.image-txt-05 a {
		color: #1d1d1d;
	}
	.image-txt-05 img {
		width: 100%;
		height: auto;
		margin-bottom: 9px;
	}
	.image-txt-05 .txt {
		position: relative;
		padding-left: 15px;
		font-weight: bold;
		line-height: 1.8;
		letter-spacing: -0.05em;
	}
	.image-txt-05 .txt::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 5px;
		height: 100%;
		background-color: #e18007;
	}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.area-features-in {
		width: 1100px;
	}
	.grid-five .col {
		width: 205px;
	}
	.grid-three .col {
		width: 340px;
	}
	.image-txt-05 .txt {
		font-weight: normal;
	}
}

@media screen and (max-width: 768px) {
	.area-features {
		padding: 25px 0;
		/* border-bottom: none; */
	}
		.area-features + .nav-local { margin: 0 0 65px;}
		.area-features-in {
			width: 100%;
			padding: 0 20px;
		}

	/* .grid-five */
	.grid-five{
		flex-wrap: wrap;
		margin: 0 -10px;
	}
		.grid-five .col{
			width: 50%;
			padding: 0 10px;
			margin-top: 27px;
		}
		.grid-five .col:nth-child(1),
		.grid-five .col:nth-child(2){
			margin-top: 0;
		}

	/* .grid-three */
	.grid-three {
		flex-direction: column;
	}
		.grid-three .col {
			width: 100%;
			margin-top: 10px;
		}
		.grid-three .col:first-child {
			margin-top: 0;
		}

		/* image-txt-05*/
	.image-txt-05{}
		.image-txt-05 .txt {
			padding: 0 12px;
			font-size: 11px;
		}
}

/* sec-inner-01
---------------------------------------------------------- */
.sec-inner-01 {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
}
.sec-inner-02 {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.sec-inner-01 {
		width: 100%;
		max-width: 1000px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.sec-inner-02 {
		width: 100%;
		max-width: 960px;
		margin: 0 auto;
	}
}

@media screen and (max-width: 768px) {
	.sec-inner-01,
	.sec-inner-02 {
		width: auto;
		margin: 0 20px;
	}
}
/* section last margin */
section:last-of-type {
	margin-bottom: 0;
}

/* ==========================================================
 box
========================================================== */
/* box-cmn-01
---------------------------------------------------------- */
.box-cmn-01 {
	margin: -3px 0;
}
@media screen and (max-width: 768px) {
	.box-cmn-01 {
		margin: 0;
	}
}
/* box-frame-01
---------------------------------------------------------- */
.box-frame-01 {
	padding: 18px 25px;
	border: 1px solid #dcdcdc;
}
@media screen and (max-width: 768px) {
	.box-frame-01 {
		padding: 10px;
	}
}

/* box-frame-gray
---------------------------------------------------------- */
.box-frame-gray {
	border: 1px solid #f2f2f2;
	width: 100%;
	max-width: 830px;
	margin: 50px auto 0;
}
	.box-frame-gray .box-frame-inner {
		background: #f2f2f2;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin: 3px;
		padding: 20px 0;
	}
		.box-frame-gray .box-frame-inner .box-frame-title {
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-ms-align-items: center;
			align-items: center;
			justify-content: center;
			-webkit-flex: 0 1 auto;
			-ms-flex: 0 1 auto;
			flex: 0 1 auto;
			width: 180px;
			padding: 10px 20px;
		}
			.box-frame-gray .box-frame-inner .box-frame-title .title-C { margin-bottom: 0;}
		.box-frame-gray .box-frame-inner .box-frame-body {
			border-left: 1px solid #d5d5d5;
			-webkit-flex: 1;
			-ms-flex: 1;
			flex: 1;
			padding: 5px 20px;
		}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.box-frame-gray {
		max-width: 780px;
	}
}

@media screen and (max-width: 768px) {
	.box-frame-gray {
		width: auto;
		max-width: 100%;
		margin-top: 25px;
	}
		.box-frame-gray .box-frame-inner { padding: 20px 0;}
			.box-frame-gray .box-frame-inner .box-frame-title {
				width: 100%;
				padding: 0 20px 10px;
			}
			.box-frame-gray .box-frame-inner .box-frame-body {
				border-left: none;
				border-top: 1px solid #d5d5d5;
				margin: 0 20px;
				padding: 15px 0 0;
			}
}

/* box-top-01
---------------------------------------------------------- */
.box-cmn-caption {
	position: relative;
	background-color: #1b1b1b;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100px;
}
	.box-cmn-caption > .txt-caption {
		color: #fff;
		font-size: 30px;
		font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
	}
		.box-cmn-caption > .txt-caption span { color: #e18007;}
	.box-cmn-caption > .btn-cmn-01 { margin-left: 30px;}


@media screen and (max-width: 1500px) and (min-width: 769px) {
	.box-cmn-caption {
	height: 70px;
	}
	.box-cmn-caption > .txt-caption {
		font-size: 26px;
	}
}

@media screen and (max-width: 768px) {
	.box-cmn-caption { height: 57px;}
		.box-cmn-caption > .txt-caption { font-size: 20px;}
		.box-cmn-caption > .btn-cmn-01 { margin-left: 16px;}
}

.box-ir-analyst .fig-cmn-01 .img-cmn-adjust {
    width: auto;
}

/* txt-image
---------------------------------------------------------- */
.txt-image {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
	.txt-image.txt-image-full {
		width: 780px;
		margin-left: auto;
		margin-right: auto;
	}
	.txt-image .txt {
		width: 430px;
	}
	.txt-image .txt.txt-flex {
		margin-right: 35px;
		flex: 1;
	}
	.txt-image .img {
		width: 315px;
	}
	.txt-image .img.img-w180 {
		width: 180px;
	}
	.txt-image .img.img-auto {
		width: auto;
		max-width: 100%;
	}
		.txt-image .img img {
			width: 100%;
			height: auto;
		}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.txt-image.txt-image-full {
		width: 660px;
	}
	.txt-image .txt {
		width: 360px;
	}
	.txt-image .img {
		width: 260px;
	}
	.txt-image .img.img-auto {
		width: auto;
		max-width: 100%;
	}
}

@media screen and (max-width: 768px) {
	.txt-image {
		flex-direction: column;
		margin-bottom: 30px;
	}
		.txt-image.txt-image-full {
			width: auto;
		}
		.txt-image .txt.txt-flex {
			margin-right: 0;
			flex: 100%;
		}
		.txt-image .txt {
			margin: 0;
			width: 100%;
		}
		.txt-image .img {
			width: 100%;
			padding-top: 20px;
		}
		.txt-image .img.img-w180 {
			margin-right: auto;
			margin-left: auto;
		}
		.txt-image .img.img-auto {
			width: auto;
			max-width: 100%;
			margin-right: auto;
			margin-left: auto;
		}
		.txt-image.swap .img { padding-top: 0px;}
		.txt-image.swap .txt { padding-top: 17px;}
}

/* ==========================================================
 hero
========================================================== */
/* hero-cmn
---------------------------------------------------------- */
.hero-cmn {
	padding: 30px 0 40px;
	border-bottom: 8px solid #e18007;
}
	.hero-cmn-in {
		width: 1200px;
		overflow: hidden;
		margin: 0 auto;
		text-align: left;
	}
	.hero-cmn .title {
		display: inline-block;
		font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
		font-size: 38px;
		font-weight: bold;
		vertical-align: middle;
	}
	.hero-cmn .txt {
		display: inline-block;
		margin-left: 10px;
		font-size: 20px;
		color: #e18007;
		vertical-align: middle;
	}

	@media screen and (max-width: 1500px) and (min-width: 769px) {
		.hero-cmn-in {
			width: 1000px;
		}
		.hero-cmn .title {
			font-size: 30px;
		}
		.hero-cmn .txt {
			font-size: 16px;
		}
	}

	@media screen and (max-width: 768px) {
		.hero-cmn {
			padding: 20px 0;
			border-bottom: 4px solid #e18007;
		}
			.hero-cmn-in {
				width: 100%;
				padding: 0 20px;
			}
			.hero-cmn .title {
				font-size: 22px;
			}
			.hero-cmn .txt {
				font-size: 14px;
			}
	}

/* ==========================================================
 module
========================================================== */
.image-txt {
}
	.image-txt li {
		margin-top: 30px;
	}
	.image-txt li:first-child {
		margin-top: 0;
	}
	.image-txt a,
	.image-txt span {
		display: block;
		font-size: 20px;
		color: #1d1d1d;
	}
	.image-txt span {
		display: inline;
	}
	.image-txt img {
		width: 100%;
		height: auto;
		margin-bottom: 10px;
	}
	.image-txt a:hover {
		text-decoration: none;
	}
	.image-txt a:hover span {
		border-bottom: 1px solid #000;
	}

	@media screen and (max-width: 1500px) and (min-width: 769px) {
		.image-txt a,
		.image-txt span {
			font-size: 14px;
		}
	}

	@media screen and (max-width: 768px) {
		.image-txt li {
			margin-top: 27px;
		}
		.image-txt a,
		.image-txt span {
			font-size: 13px;
		}
	}

/* ==========================================================
 title
========================================================== */
/* ttl-cmn-01
---------------------------------------------------------- */
.ttl-cmn-01 {
}

/* ttl-cmn-02
---------------------------------------------------------- */
.ttl-cmn-02 {
}

/* ttl-cmn-03
---------------------------------------------------------- */
.ttl-cmn-03 {
	font-size: 40px;
	line-height: 1.2;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
	.ttl-cmn-03 {
		font-size: 28px;
		line-height: 1.2;
		margin-bottom: 20px;
	}
}

/* title-A
---------------------------------------------------------- */
.title-A {
	margin-bottom: 35px;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}
	.title-A .txt {
		display: block;
		margin-bottom: 4px;
		color: #e18007;
	}
	.title-A .ttl {
		font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;
		font-size: 25px;
	}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.title-A .ttl {
		font-size: 23px;
	}
}

@media screen and (max-width: 768px) {
	.title-A {
		margin-bottom: 20px;
		-webkit-transform: translateY(-3px);
		-ms-transform: translateY(-3px);
		transform: translateY(-3px);
	}
		.title-A .txt {
			margin-bottom: 7px;
			font-size: 11px;
		}
		.title-A .ttl {
			font-size: 18px;
		}
}

/* title-B
---------------------------------------------------------- */
.title-B {
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: bold;
	-webkit-transform: translateY(-5px);
	-ms-transform: translateY(-5px);
	transform: translateY(-5px);
}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.title-B {
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.title-B{
		margin-bottom: 15px;
		font-size: 16.5px;
	}
}

.title-B .date {
	margin-left: 0.5em;
	font-weight: normal;
	font-size: 77%;
}

/* title-C
---------------------------------------------------------- */
.title-C {
	margin-bottom: 25px;
	font-size: 16px;
	font-weight: bold;
	color: #000;
}
	.title-C a {
		color: #1d1d1d;
		display: inline-block;
	}

	@media screen and (max-width: 768px) {
		.title-C {
			margin-bottom: 10px;
		}
	}

/* title-D
---------------------------------------------------------- */
.title-D {
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
	color: #e18007;
}
@media screen and (max-width: 768px) {
	.title-D {
		margin-bottom: 15px;
	}
}

/* title-E
---------------------------------------------------------- */
.title-E {
	margin-bottom: 25px;
}
	.title-E .txt {
		display: block;
		margin-bottom: 6px;
		font-size: 25px;

	}
	.title-E .ttl {
		color: #e18007;
		font-size: 30px;
		font-weight: bold;
	}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.title-E .txt {
		font-size: 16px;
	}
	.title-E .ttl {
		font-size: 25px;
	}
}

@media screen and (max-width: 768px) {
	.title-E {
		margin-bottom: 20px;
		-webkit-transform: translateY(-3px);
		-ms-transform: translateY(-3px);
		transform: translateY(-3px);
	}
		.title-E .txt {
			margin-bottom: 7px;
			font-size: 12px;
		}
		.title-E .ttl {
			font-size: 20px;
		}
}

/* title-F
---------------------------------------------------------- */
.title-F {
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
	background-color: #e18007;
	color: #fff;
	padding: 10px 20px;
}
@media screen and (max-width: 768px) {
	.title-F {
		margin-bottom: 15px;
	}
}

/* title-G
---------------------------------------------------------- */
.title-G {
	margin-bottom: 15px;
	font-size: 16px;
	background-color: #5270c8;
	color: #fff;
	padding: 10px 20px 9px;
}
.title-G a {
	color: #fff;
	position: relative;
	padding-left: 1.2em;
}
.title-G a::before {
	content: '';
	position: absolute;
	top: 4.5px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 9px;
	border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 768px) {
	.title-G {
		font-size: 15px;
		margin-top: 20px;
		margin-bottom: 15px;
		padding: 4% 3.5%;
	}
}
/* title-H
---------------------------------------------------------- */
.title-H {
	margin-bottom: 10px;
	margin-left: 20px;
	font-size: 16px;
	font-weight: bold;
	color: #1b1b1b;
}
@media screen and (max-width: 768px) {
	.title-D {
		margin-bottom: 15px;
	}
}

/* ==========================================================
 text
========================================================== */

/* txt-require
---------------------------------------------------------- */
.txt-require {
	display: inline-block;
	width: 50px;
	margin-top: 10px;
	background-color: #c63a3a;
	font-size: 14px;
	color: #fff;
	text-align: center;
}
@media screen and (max-width: 768px) {
	.txt-require {
		position: absolute;
		top: 10px;
		right: 10px;
		width: 50px;
		margin-top: 0;
		font-size: 13px;
	}
}

/* txt-A
---------------------------------------------------------- */
.txt-A {
	margin-bottom: 24px;
	line-height: 1.7;
}
@media screen and (max-width: 768px) {
	.txt-A {
		margin-bottom: 15px;
	}
}

/* txt-indent
---------------------------------------------------------- */
/* indent 1em */
.txt-indent-01 {
	display: block;
	text-indent: 1em;
}

.txt-notes-dl {
	overflow: hidden;
	font-size: 12px;
}
.txt-notes-dl dt {
	float: left;
	width: 4.0em;
}
.txt-notes-dl dd {
	overflow: hidden;
}
.table-item + .txt-notes-dl {
	margin-top: 1.0em;
}

.txt-notes-dl-02 {
	overflow: hidden;
	font-size: 12px;
}
.txt-notes-dl-02 dt {
	float: left;
	width: 2.0em;
}
.txt-notes-dl-02 dd {
	overflow: hidden;
}

.txt-notes-dl-03 {
	overflow: hidden;
	margin-left: 20px;
	font-size: 12px;
}
.txt-notes-dl-03 dt {
	float: left;
	width: 2.0em;
}
.txt-notes-dl-03 dd {
	overflow: hidden;
}

/* txt 体裁
---------------------------------------------------------- */
.txt-notice {
	color: #e24242;
	font-weight: bold;
}

/* ==========================================================
 list
========================================================== */
/* list-cmn-01
---------------------------------------------------------- */
.list-cmn-01 { margin: 0 35px 35px;}
	.list-cmn-01 li {
		border-bottom: 1px dotted #b4b4b4;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 15px 0;
	}
		.list-cmn-01 li .box-head {
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			-webkit-flex: 0 1 auto;
			-ms-flex: 0 1 auto;
			flex: 0 1 auto;
		}
			.list-cmn-01 li .box-head .date {
				font-size: 15px;
				font-weight: bold;
			}
			.list-cmn-01 li .box-head .tag-cmn { margin-left: 24px;}
	.list-cmn-01 li .box-detail {
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	.list-cmn-01 li .box-detail .link-detail {
		color: #1d1d1d;
		font-size: 15px;
	}
	@media screen and (max-width: 1500px) and (min-width: 769px) {
		.list-cmn-01 li .box-head .date,
		.list-cmn-01 li .box-detail .link-detail {
			font-size: 14px;
		}
	}

/* list-cmn-02
---------------------------------------------------------- */
.list-cmn-02 {
	margin-top: 15px;
	padding-left: 20px;
}
	.list-cmn-02 dt {}
	.list-cmn-02 dd {
		padding: 8px 0;
		margin-bottom: 10px;
	}
	.list-cmn-02 dd:last-child {
		margin-bottom: 0;
	}

	@media screen and (max-width: 768px) {
		.list-cmn-02 {
			margin-top: 10px;
			padding-left: 15px;
		}
	}

/* list-news
---------------------------------------------------------- */
.list-news {
	margin-bottom: 35px;
}
	.list-news dt {
		float: left;
		clear: both;
		width: 120px;
	}
	.list-news dd {
		margin-bottom: 20px;
		padding: 0 0 20px 120px;
		border-bottom: 1px dotted #a8a8a8;
	}
	.list-news dd:first-of-type {
		padding-bottom: 20px;
	}
	.list-news dd a {
		color: #1d1d1d;
	}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.list-news dt {
		width: 100px;
	}
	.list-news dd {
		padding: 0 0 20px 100px;
	}
}
@media screen and (max-width: 768px) {
	.list-news {
		margin-bottom: 25px;
		line-height: 1.85;
	}
		.list-news dt {
			font-weight: bold;
			float: none;
			width: 100%;
			padding: 15px 0 0;
		}
		.list-news dd {
			margin-bottom: 0;
			padding: 10px 0 15px;
		}
}

/* table in list-news */
.list-news.list-news-noborder {
	padding: 6px 0;
	margin-bottom: 0;
}
.list-news.list-news-noborder dd {
	margin-bottom: 0;
	border-bottom: none;
}

/* list-news in p */
.list-news dd p + p {
	margin-top: 0.5em;
}


/* list-disc
---------------------------------------------------------- */
.list-disc {
	padding: 10px 0;
}
	.list-disc li {
		position: relative;
		padding: 3px 0 8px 20px;
	}
	.list-disc li::before {
		content: '';
		position: absolute;
		top: 8px;
		left: 0;
		width: 10px;
		height: 10px;
		background-color: #f38b0a;
		border-radius: 10px;
	}

	@media screen and (max-width: 768px) {
		.list-disc {
			padding: 0;
		}
			.list-disc li {
				padding: 0 0 0 15px;
			}
			.list-disc li::before {
				top: 8px;
				width: 5px;
				height: 5px;
			}
	}

/* list-orange
---------------------------------------------------------- */
.list-orange {
	margin-left: 20px;
}
	.list-orange li {
		position: relative;
		padding: 4px 0 4px 20px;
		margin-top: 5px;
	}
	.list-orange li:first-child {
		margin-top: 0;
	}
	.list-orange li::before {
		content: '';
		position: absolute;
		top: 10px;
		left: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5px 0 5px 9px;
		border-color: transparent transparent transparent #f38a0a;
	}

	@media screen and (max-width: 768px) {
		.list-orange {
			margin-left: 0;
		}
			.list-orange li {
				padding: 15px 12px 15px 25px;
				background-color: #ffefda;
				font-size: 13px;
			}
			.list-orange li::before {
				top: 20px;
				left: 12px;
				border-width: 3px 0 3px 6px;
			}
	}

	/* list-orange-r
---------------------------------------------------------- */
.list-orange-r {
	margin-left: 20px;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	list-style: none;
}
	.list-orange-r li {
		position: relative;
		padding: 4px 0 4px 20px;
		margin-top: 5px;

	}
	.list-orange-r li:first-child {
		margin-top: 0;
	}
	.list-orange-r li::before {
		content: '';
		position: absolute;
		top: 10px;
		left: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5px 0 5px 9px;
		border-color: transparent transparent transparent #f38a0a;
	}

	@media screen and (max-width: 768px) {
		.list-orange-r {
			margin-left: 0;
		}
			.list-orange-r li {
				padding: 15px 12px 15px 25px;
				background-color: #ffefda;
				font-size: 13px;
			}
			.list-orange-r li::before {
				top: 20px;
				left: 12px;
				border-width: 3px 0 3px 6px;
			}
	}

/* list-decimal-A
---------------------------------------------------------- */
.list-decimal-A {
	list-style: none;
	counter-reset: my-number-counter;
	padding: 0 20px;
}
.list-decimal-A > li {
	counter-increment: my-number-counter;
	position: relative;
	padding-left: 35px;
	margin-top: 13px;
	line-height: 1.78;
}
.list-decimal-A > li:first-child {
	margin-top: 0;
}
.list-decimal-A > li::before {
	content:	"(" counter(my-number-counter) ")";
	position: absolute;
	top: 0;
	left: 0;
}

.list-decimal-A[start="2"] {
	counter-reset: my-number-counter 1;
}

@media screen and (max-width: 768px) {
	.list-decimal-A {
		padding: 0;
	}
	.list-decimal-A > li {
		padding-left: 25px;
		margin-top: 10px;
	}
}

/* list-decimal-B
---------------------------------------------------------- */
.list-decimal-B {
	list-style: none;
	counter-reset: my-number-counter;
	padding: 0 20px;
}
.list-decimal-B > li {
	counter-increment: my-number-counter;
	position: relative;
	padding-left: 35px;
	margin-top: 13px;
	line-height: 1.78;
}
.list-decimal-B > li:first-child {
	margin-top: 0;
}
.list-decimal-B > li::before {
	content: counter(my-number-counter) ".";
	position: absolute;
	top: 0;
	left: 0;
}
.list-decimal-B .list-decimal-A { padding: 0;}

.list-decimal-B.mg-guideline, .list-decimal-A[start="2"], .guideline-col .list-decimal-B {
	margin: 20px 0 0 0;
	padding: 0;
}

@media screen and (max-width: 768px) {
	.list-decimal-B {
		padding: 0;
	}
	.list-decimal-B > li {
		padding-left: 20px;
		margin-top: 10px;
	}
	.list-decimal-B.mg-guideline, .list-decimal-A[start="2"], .guideline-col .list-decimal-B {
		margin: 15px 0 0 0;
	}
}

.list-decimal-B[data-start="2"] {
	counter-reset: my-number-counter 1;
}
.list-decimal-B[data-start="3"] {
	counter-reset: my-number-counter 2;
}
.list-decimal-B[data-start="4"] {
	counter-reset: my-number-counter 3;
}
.list-decimal-B[data-start="5"] {
	counter-reset: my-number-counter 4;
}
.list-decimal-B[data-start="6"] {
	counter-reset: my-number-counter 5;
}
.list-decimal-B[data-start="7"] {
	counter-reset: my-number-counter 6;
}
.list-decimal-B[data-start="8"] {
	counter-reset: my-number-counter 7;
}
.list-decimal-B[data-start="9"] {
	counter-reset: my-number-counter 8;
}
.list-decimal-B[data-start="10"] {
	counter-reset: my-number-counter 9;
}
.list-decimal-B[data-start="11"] {
	counter-reset: my-number-counter 10;
}
.list-decimal-B[data-start="12"] {
	counter-reset: my-number-counter 11;
}
.list-decimal-B[data-start="13"] {
	counter-reset: my-number-counter 12;
}
.list-decimal-B[data-start="14"] {
	counter-reset: my-number-counter 13;
}
.list-decimal-B[data-start="15"] {
	counter-reset: my-number-counter 14;
}
.list-decimal-B[data-start="16"] {
	counter-reset: my-number-counter 15;
}
.list-decimal-B[data-start="17"] {
	counter-reset: my-number-counter 16;
}
.list-decimal-B[data-start="18"] {
	counter-reset: my-number-counter 17;
}
.list-decimal-B[data-start="19"] {
	counter-reset: my-number-counter 18;
}
.list-decimal-B[data-start="20"] {
	counter-reset: my-number-counter 19;
}
.list-decimal-B[data-start="21"] {
	counter-reset: my-number-counter 20;
}
.list-decimal-B[data-start="22"] {
	counter-reset: my-number-counter 21;
}
.list-decimal-B[data-start="23"] {
	counter-reset: my-number-counter 22;
}
.list-decimal-B[data-start="24"] {
	counter-reset: my-number-counter 23;
}
.list-decimal-B[data-start="25"] {
	counter-reset: my-number-counter 24;
}
.list-decimal-B[data-start="26"] {
	counter-reset: my-number-counter 25;
}
.list-decimal-B[data-start="27"] {
	counter-reset: my-number-counter 26;
}
.list-decimal-B[data-start="28"] {
	counter-reset: my-number-counter 27;
}
.list-decimal-B[data-start="29"] {
	counter-reset: my-number-counter 28;
}
.list-decimal-B[data-start="30"] {
	counter-reset: my-number-counter 29;
}
.list-decimal-B[data-start="31"] {
	counter-reset: my-number-counter 30;
}
.list-decimal-B[data-start="32"] {
	counter-reset: my-number-counter 31;
}
.list-decimal-B[data-start="33"] {
	counter-reset: my-number-counter 32;
}
.list-decimal-B[data-start="34"] {
	counter-reset: my-number-counter 33;
}
.list-decimal-B[data-start="35"] {
	counter-reset: my-number-counter 34;
}
.list-decimal-B[data-start="36"] {
	counter-reset: my-number-counter 35;
}
.list-decimal-B[data-start="37"] {
	counter-reset: my-number-counter 36;
}
.list-decimal-B[data-start="38"] {
	counter-reset: my-number-counter 37;
}
.list-decimal-B[data-start="39"] {
	counter-reset: my-number-counter 38;
}
.list-decimal-B[data-start="40"] {
	counter-reset: my-number-counter 39;
}
.list-decimal-B[data-start="41"] {
	counter-reset: my-number-counter 40;
}
.list-decimal-B[data-start="42"] {
	counter-reset: my-number-counter 41;
}

/* list-decimal-C
---------------------------------------------------------- */
.list-decimal-C {
	list-style: none;
	counter-reset: my-number-counter;
	padding: 0 20px;
	font-size: 12px;
}
.list-decimal-C > li {
	counter-increment: my-number-counter;
	position: relative;
	padding-left: 35px;
	margin-top: 5px;
	line-height: 1.78;
}
.list-decimal-C > li:first-child {
	margin-top: 0;
}
.list-decimal-C > li::before {
	content:	"(注" counter(my-number-counter) ")";
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 768px) {
	.list-decimal-C {
		padding: 0;
	}
	.list-decimal-C > li {
		padding-left: 30px;
		margin-top: 10px;
	}
}

.list-csr-policy-conduct {
	display: flex;
	margin-bottom: 30px;
}
.list-csr-policy-conduct dt {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	padding: 15px;
	vertical-align: middle;
	font-size: 28px;
	text-align: center;
	color: #fff;
	border-right: 1px solid #fff;
	background: #8db1b2;
}
.list-csr-policy-conduct dd {
	padding: 25px;
	background: #f2f2f2;
	flex: 1;
}
.list-csr-policy-conduct dd .txt {
	text-indent: 1.0em;
}

@media screen and (max-width: 768px) {
	.list-csr-policy-conduct {
		flex-direction: column;
		margin-bottom: 20px;
	}
	.list-csr-policy-conduct dt {
		width: 100%;
		padding: 10px;
	}
	.list-csr-policy-conduct dd {
		padding: 20px;
	}
}

/* guideline-col
---------------------------------------------------------- */
.guideline-col {
	display: flex;
	margin: 0 0 30px 20px;
}

.guideline-col div:first-child {
	flex: 0 0 60px;
	font-weight: bold;
}

.guideline-col div:last-child {
	flex: 1;
}

@media screen and (max-width: 768px) {
	.guideline-col {
		margin: 0 0 20px 10px;
	}
	.guideline-col div:first-child {
		flex: 0 0 55px;
	}
}

/* list-black
---------------------------------------------------------- */
.list-black {
}
	.list-black li {
		position: relative;
		padding-left: 20px;
		margin-top: 10px;
	}
	.list-black li:first-child {
		margin-top: 0;
	}
	.list-black li::before {
		content: '';
		position: absolute;
		top: 7px;
		left: 6px;
		width: 8px;
		height: 8px;
		background-color: #000;
		border-radius: 8px;
	}

@media screen and (max-width: 768px) {
	.list-black {
	}
		.list-black li {
			padding-left: 15px;
		}
		.list-black li::before {
			top: 8px;
			width: 5px;
			height: 5px;
		}
}

.list-black-pf {
}
	.list-black-pf li {
		position: relative;
		padding-left: 20px;
		margin-top: 10px;
	}
	.list-black-pf li:first-child {
		margin-top: 0;
	}
	.list-black-pf li::before {
		content: '';
		position: absolute;
		top: 7px;
		left: 6px;
		width: 8px;
		height: 8px;
		background-color: #000;
		border-radius: 8px;
	}
	.list-black-pf p {
		padding-left:1em;
		text-indent:-1em;
	}

@media screen and (max-width: 768px) {
	.list-black-pf {
	}
		.list-black-pf li {
			padding-left: 15px;
		}
		.list-black-pf li::before {
			top: 8px;
			width: 5px;
			height: 5px;
		}
}



/* list-black-csr
---------------------------------------------------------- */
.list-black-csr {
}
	.list-black-csr li {
		position: relative;
		padding-left: 30px;
		margin-top: 10px;
		
	}
	.list-black-csr li:first-child {
		margin-top: 10;
	}


@media screen and (max-width: 768px) {
	.list-black-csr {
	}
		.list-black-csr li {
			padding-left: 15px;
		}
		.list-black-csr li::before {
			top: 8px;
			width: 5px;
			height: 5px;
		}
}

/* list-news-tab
---------------------------------------------------------- */
.list-news-tab{
	display: flex;
	justify-content: space-between;
	margin-bottom: 35px;
}
	.list-news-tab li {
		width: 130px;
	}
	.list-news-tab li a {
		display: block;
		position: relative;
		padding: 20px 0;
		text-decoration: none;
		font-size: 16px;
		color: #1d1d1d;
		text-align: center;
	}
	.list-news-tab li a:hover,
	.list-news-tab li a.is-active {
		color: #e18007;
	}
	.list-news-tab li a.is-active {
		font-weight: bold;
	}
	.list-news-tab li a::after,
	.list-news-tab li a.is-active::after {
		position: absolute;
		bottom: 0;
		left: 0;
		content: '';
		width: 100%;
		height: 5px;
		background: #e18007;
		transform: scale(0, 1);
		transform-origin: right top;
		transition: transform .3s;
	}
	.list-news-tab li a:hover::after,
	.list-news-tab li a.is-active::after {
		transform-origin: left top;
		transform: scale(1, 1);
	}
@media screen and (max-width: 1500px) and (min-width: 769px) {
		.list-news-tab li a {
			font-size: 14px;
		}
	}
	@media screen and (max-width: 768px) {
		.list-news-tab {
			flex-wrap: wrap;
			margin: 0 -20px;
			border-top: 1px solid #bfbfbf;
		}
		.list-news-tab li {
			width: 50%;
			border-bottom: 1px solid #bfbfbf;
		}
		.list-news-tab li:nth-child(2n+1) {
			border-right: 1px solid #bfbfbf;
		}
			.list-news-tab li a {
				padding: 10px 0;
				font-size: 14px;
			}
			.list-news-tab li a::after {
				display: none;
			}
			.list-news-tab li a.is-active {
				background-color: #e18007;
				color: #fff;
			}
	}

/* list-cmn-01
---------------------------------------------------------- */
.list-cmn-01 li .box-detail .link-detail:hover {
	color: #5a92ae;
	text-decoration: underline;
}

@media screen and (min-width: 769px) {
	.list-cmn-01 li .box-head .date { margin: 0 16px;}
	.list-cmn-01 li .box-detail { margin-left: 40px;}
}
@media screen and (max-width: 768px) {
	.list-cmn-01 { margin: 0 0 25px;}
		.list-cmn-01 li { padding: 15px 0;}
			.list-cmn-01 li .box-head { width: 100%;}
				.list-cmn-01 li .box-head .date {
					font-size: 15px;
					margin: 0;
				}
				.list-cmn-01 li .box-head .tag-cmn { margin-left: 13px;}
		.list-cmn-01 li .box-detail {
			width: 100%;
			margin: 12px 0 0 0;
		}
}

/* list-news-01
---------------------------------------------------------- */
.list-news-01 { overflow: hidden;}
	.list-news-01 li {
		border-bottom: 1px dotted #b4b4b4;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: 100%;
		padding: 14px 0;
	}
		.list-news-01 li .box-head {
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			-webkit-flex: 0 1 auto;
			-ms-flex: 0 1 auto;
			flex: 0 1 auto;
		}
			.list-news-01 li .box-head .date {
				font-size: 15px;
				margin: 0 14px 0 16px;
			}
			.list-news-01 li .box-head .tag-cmn {
			}

	.list-news-01 li .box-detail {
		-webkit-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
		.list-news-01 li .box-detail .link-detail {
			color: #1d1d1d;
			font-size: 15px;
			padding-right: 15px;
		}
			.list-news-01 li .box-detail .link-detail:hover {
				color: #5a92ae;
				text-decoration: underline;
			}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.list-news-01 li .box-head .date { margin: 0 16px;}
	.list-news-01 li .box-detail { margin-left: 15px;}
	.list-news-01 li .box-head .date,
	.list-news-01 li .box-detail .link-detail {
		font-size: 14px;
	}
}

@media screen and (max-width: 768px) {
	.list-news-01 {
		margin: 0 0 25px;
	}
		.list-news-01 li {
			padding: 15px 0;
		}
			.list-news-01 li .box-head {
				width: 100%;
			}
				.list-news-01 li .box-head .date {
					font-size: 15px;
					font-weight: bold;
					margin: 0;
				}
				.list-news-01 li .box-head .tag-cmn {
					margin-left: 13px;
				}
				_::-webkit-full-page-media, _:future, :root .list-news-01 li .box-head .tag-cmn {
					line-height: 1.05;
				}

		.list-news-01 li .box-detail {
			-webkit-flex: 0 1 auto;
			-ms-flex: 0 1 auto;
			flex: 0 1 auto;
			width: 100%;
			margin: 12px 0 0 0;
		}
}

/* list-video
---------------------------------------------------------- */
.list-video {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
					flex-wrap: wrap;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
			-ms-flex-pack: start;
					justify-content: flex-start;
	margin: 0 -15px 0;
	padding-top: 41px;
	margin-bottom: 54px;
}
	.list-video .item {
		position: relative;
		padding: 0 15px;
	}
		.list-video .item .link-img {
			position: relative;
			display: block;
		}
			.list-video .item .link-img .image_wrap {
				width: 100%;
				position: relative;
				-webkit-transition: .3s ease-in-out;
				-o-transition: .3s ease-in-out;
				transition: .3s ease-in-out;
			}
				.list-video .item .link-img .image_wrap .image {
					width: 100%;
				}
				.list-video .item .link-img:hover .image_wrap {
					/* opacity: .5; */
				}
		.list-video .item .link-txt {
			position: relative;
			display: block;
			margin-bottom: 46px;
			color: #1d1d1d;
		}

@media screen and (max-width: 768px) {
	.list-video {
		margin:0;
		padding-top: 30px;
		width: 100%;
	}
		.list-video .item {
			padding: 0;
		}
			.list-video .item .link-txt {
				margin-bottom: 22px;
			}
}

/* list-video col-01
---------------------------------------------------------- */
.list-video.col-01 .item {
	width: 740px;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.list-video.col-01 .item {
		width: 100%;
		padding: 0;
	}
}

.list-video .eq-area-center .eq-center-icon-play div {
	display: block;
	width: 110px;
	height: 110px;
	background-image: url(/video/img/ico_video_play.png);
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0.9;
	cursor: pointer;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
}

@media screen and (max-width: 768px) {
	.list-video .eq-small {
		height: 100%;
	}
	.list-video .jstream-eqPlayer {
		width: 100% !important;
		height: calc(100vw / 1.9) !important;
	}
	.list-video .video .image_wrap {
		width: 100%;
		height: calc(100vw / 1.9);
	}
	.list-video .video .image_wrap iframe {
		width: 100% !important;
		height: calc(100vw / 1.9) !important;
	}
}

/* txt-link-video
---------------------------------------------------------- */
.txt-link-video {
	font-size: 15px;
	position: relative;
	margin-top: 15px;
	color: #1d1d1d;
	line-height: 1.75;
}
	.txt-link-video.link-pdf {
		display: inline-block;
		background: url(/common/img/ico_pdf_01.png) right center no-repeat;
		padding-right: 30px;
	}
@media screen and (max-width: 768px) {
	.txt-link-video {
		font-size: 14px;
		margin-top: 11px;
	}
		.txt-link-video::before {
			width: 7px;
			height: 10px;
			-webkit-background-size: contain;
							background-size: contain;
		}
		.txt-link-video.link-pdf {
			-webkit-background-size: 15px 18px;
							background-size: 15px 18px;
			padding-right: 23px;
		}
}

/* ==========================================================
 table
========================================================== */
/* table-cmn
---------------------------------------------------------- */
.table-cmn {
}
	.table-cmn th,
	.table-cmn td {
	}
	.table-cmn th {
	}
	.table-cmn td {
	}

/* table-A
---------------------------------------------------------- */
.table-A {
	margin: 0 10px 50px;
	border-bottom: 1px solid #cfcfcf;
}
	.table-A th,
	.table-A td {
		border-top: 1px solid #cfcfcf;
		padding: 22px 20px;
	}
	.table-A th {
		width: 145px;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
	}
	.table-A td {
	}

	@media screen and (max-width: 768px) {
		.table-A {
			margin: 0 0 25px;
			padding: 0;
		}
			.table-A th,
			.table-A td {
				display: block;
				padding: 11px 10px;
				border-top: 1px solid #cfcfcf;
			}
			.table-A th {
				width: 100%;
				font-size: 13px;
				text-align: left;
			}
			.table-A td {
			}
	}

.table-A.table-th-ws-nowrap th {
	white-space: nowrap;
}

/* table-BC
---------------------------------------------------------- */
.table-B,
.table-C,
.table-D,
.table-scroll {
	width: 100%;
	width: calc(100% + 4px);
	margin: -2px;
	padding-bottom: 15px;
	border-spacing: 2px;
	border-collapse: separate;
}

.table-scroll-wrap {
	margin-bottom: 15px;
}

.table-scroll {
	margin: 0;
	padding-bottom: 0;
}
	.table-B th,
	.table-B td,
	.table-C th,
	.table-C td,
	.table-D th,
	.table-D td,
	.table-scroll th,
	.table-scroll td {
		padding: 10px 16px;
		letter-spacing: -0.05em;
	}
	.table-B th,
	.table-C th,
	.table-D th,
	.table-scroll th {
		width: 175px;
		background-color: #ded9d0;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
	}
	.table-B td,
	.table-C td,
	.table-D td,
	.table-scroll td {
		background-color: #f1efeb;
	}
	.table-B a,
	.table-C a,
	.table-D a,
	.table-scroll a {
		color: #1d1d1d;
	}

	.table-B a[href^="tel:"],
		.table-C a[href^="tel:"],
		.table-D a[href^="tel:"] {
		display: inline-block;
		pointer-events: none;
	}
	.table-A .link-cmn-01,
	.table-B .link-cmn-01,
	.table-scroll .link-cmn-01,
		.table-C .link-cmn-01,
		.table-D .link-cmn-01 {
		display: inline-block;
	}
	.table-B a[href^="tel:"]:visited,.table-B a[href^="tel:"]:focus,.table-B a[href^="tel:"]:active,.table-B a[href^="tel:"]:hover,
	.table-scroll a[href^="tel:"]:visited,.table-scroll a[href^="tel:"]:focus,.table-scroll a[href^="tel:"]:active,.table-scroll a[href^="tel:"]:hover,
		.table-C a[href^="tel:"]:visited,.table-C a[href^="tel:"]:focus,.table-C a[href^="tel:"]:active,.table-C a[href^="tel:"]:hover,
		.table-D a[href^="tel:"]:visited,.table-D a[href^="tel:"]:focus,.table-D a[href^="tel:"]:active,.table-D a[href^="tel:"]:hover {
		text-decoration: unset;
	}

	@media screen and (max-width: 1500px) and (min-width: 769px) {
		.table-B th,
		.table-C th,
		.table-D th,
		.table-scroll th {
			font-size: 14px;
		}
	}
	@media screen and (max-width: 768px) {
		.table-B,
		.table-C,
		.table-D {
			width: calc(100% + 2px);
			margin: -1px;
			border-spacing: 1px;
		}
		.table-scroll-wrap {
			overflow-x: auto;
			overflow-y: hidden;
		}
		.table-scroll {
			min-width: 768px;
		}
			.table-B th,
			.table-B td,
			.table-C th,
			.table-C td,
			.table-D th,
			.table-D td {
				display:block;
				position:relative;
				width:100%;
				padding:10px;
			}
			.table-B th,
			.table-C th,
			.table-D th {
				width: 100%;
				font-size: 14px;
			}
			.table-B td,
			.table-C td,
			.table-D td {
			}
	}
	@media screen and (max-width: 768px) {
		.table-B a[href^="tel:"],
		.table-scroll a[href^="tel:"],
		.table-C a[href^="tel:"],
		.table-D a[href^="tel:"] {
			pointer-events: visible;
		}
	}

.table-scroll caption {
	margin: 0;
	padding: 5px 0 5px 20px;
	font-weight: bold;
	line-height: 1.0;
	color: #fff;
	text-align: left;
	background: #6e6e6e;
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
}
.table-scroll .th-w-400 {
	width: 400px;
}
.table-scroll .th-w-260 {
	width: 260px;
}
.table-scroll .th-w-auto {
	width: auto;
}
.table-scroll .th-ws-nowrap {
	width: auto;
	white-space: nowrap;
}

	/* table-B
    ---------------------------------------------------------- */
.table-B {}
	.table-B tr.row-c th,	.table-scroll tr.row-c th {
		background-color: #fac994;
	}
	.table-B tr.row-c td, .table-scroll tr.row-c td {
		background-color: #fff1dd;
	}

/* table-C
---------------------------------------------------------- */
.table-C {}
	.table-C tr.row-c th {
		background-color: #fae694;
	}
	.table-C tr.row-c td {
		background-color: #fff8dd;
	}

/* table-D
---------------------------------------------------------- */
/* with .list-orange .list-blue */
@media screen and (max-width: 768px) {
	.table-D .list-orange li,
	.table-D .list-blue li {
		padding-right: 30px;
	}
}
/* with pdf */
.table-D td .ico-pdf-01 {
	position: relative;
	padding-right: 30px;
}
.table-D td .ico-pdf-01::after {
	right: 0;
}
/* with .list-news */
.table-D .list-news dd:first-of-type {
    padding-bottom: 0;
}
@media screen and (max-width: 768px) {
    .table-D .list-news dt {
        padding-top: 0;
    }
}

.table-D-flat {
	width: 100%;
	width: calc(100% + 4px);
	border-spacing: 2px;
	border-collapse: separate;
	margin: -2px;
}
.table-D-flat th {
	background-color: #ded9d0;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 10px 16px;
	letter-spacing: -0.05em;
}
@media screen and (max-width: 768px) {
	.table-D-flat th {
		font-size: 14px;
	}
}
.table-D-flat td {
	background-color: #f1efeb;
	padding: 10px 16px;
	letter-spacing: -0.05em;
}

@media screen and (max-width: 768px) {
	.table-scroll-wrap .table-D-flat th,
	.table-scroll-wrap .table-D-flat td {
		white-space: nowrap;
	}
}

/* table-E
---------------------------------------------------------- */
.table-E {
	width: 100%;
	margin: 0 0 50px;
	border-bottom: 1px solid #cfcfcf;
	font-size: 14px;
}
.table-E th,
.table-E td {
	border-top: 1px solid #cfcfcf;
	padding: 22px 10px;
	font-size: 14px;
}
.table-E th {
	font-weight: bold;
}
.table-E th .textSmall {
	font-size: 0.7em;
	font-weight: normal;
}
.table-E .th-w-120 {
	width: 120px;
}
.table-E .th-miw-100 {
	min-width: 150px;
}

.table-E-number thead th {
	text-align: right;
}
.table-E-number tbody td {
	text-align: right;
}

@media screen and (max-width: 768px) {
	.table-E-scroll {
		min-width: 768px;
	}
}

.table-E-number.table-highlight-number {
	margin-bottom: 15px;
}
@media screen and (max-width: 1500px) and (min-width: 769px) {
	.table-E-number.table-highlight-number th,
	.table-E-number.table-highlight-number td {
		font-size: 13px;
		padding-right: 5px;
		padding-left: 5px;
	}
	.table-E-number.table-highlight-number tbody tr th:first-child {
		padding-left: 10px;
	}
}


.table-item {
	width: 100%;
}
.table-item thead th {
	border-bottom: 1px solid #cfcfcf;
	white-space: nowrap;
}
.table-item th,
.table-item td {
	padding: 15px 10px;
	border-bottom: 1px solid #cfcfcf;
	font-size: 14px;
}
.table-item th {
	font-weight: bold;
}
.table-item td {
	text-align: right;
}

.table-item-resultrow th,
.table-item-resultrow td {
	font-weight: bold;
	border-bottom: 1px solid #cfcfcf;
}
.table-item .table-item-subrow th,
.table-item .table-item-subrow td {
	padding: 10px 10px;
	border-bottom: none;
}
.table-item-totalrow th,
.table-item-totalrow td {
	font-weight: bold;
	background-color: #fff1dd;
}

.table-item .ownShares th {
	border-bottom: none;
	padding-bottom: 0;
}
.table-item .stocks th,
.table-item .amount th {
	text-align: right;
}
.table-item .stocks th,
.table-item .stocks td,
.table-item .amount th,
.table-item .amount td {
	padding-top: 0;
	border-bottom: none;
}
.table-item .amount th,
.table-item .amount td {
	border-bottom: 1px solid #cfcfcf;
}

.table-item .ico-arrow-01 {
	color: #333;
}
@media screen and (max-width: 768px) {
	.table-scroll-wrap .table-item {
		min-width: 768px;
	}
	.table-item thead th {
		white-space: nowrap;
	}
	.table-item th,
	.table-item td {
		padding: 15px 8px;
	}
}

/* table-form
---------------------------------------------------------- */
.table-form {
}
	.table-form th {
		width: 300px;
		padding: 20px 30px;
		text-align: left;
	}
	.table-form td {
		padding: 25px;
	}

@media screen and (max-width: 768px) {
	.table-form {
	}
		.table-form th,
		.table-form td {
			display: block;
			position: relative;
			width: 100%;
			padding: 10px;
		}
}

/* ==========================================================
 button
========================================================== */
/* btn-cmn-02
---------------------------------------------------------- */
.btn-cmn-02 {
	display: block;
	position: relative;
	border: 1px solid #dcdcdc;
	background-color: #fff;
	padding: 23px 0;
	font-size: 20px;
	text-align: center;
	color: #1d1d1d;
	-webkit-transition: all .3s;
		transition: all .3s;
}
.btn-cmn-02:hover {
	text-decoration: none;
	background-color: #dedede;
}
.btn-cmn-02.ico-arrow-01::after {
	left: 32px;
}

@media screen and (max-width: 768px) {
	.btn-cmn-02 {
		padding: 21px 0;
		font-size: 13px;
	}
	.btn-cmn-02.ico-arrow-01::after {
		left: 20px;
	}
}

/* btn-cmn-01
---------------------------------------------------------- */
.btn-cmn-01 {
	color: #1d1d1d;
	border: 1px solid #1d1d1d;
	background-color: #fff;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-ms-align-items: center;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	width: 200px;
	height: 50px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding-left: 16px;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
	.btn-cmn-01:before {
		position: absolute;
		content: '';
		left: 16px;
		top: 50%;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5px 0 5px 7px;
		border-color: transparent transparent transparent #e18007;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.btn-cmn-01:after {
		position: absolute;
		content: '';
		z-index: -1;
		width: 100%;
		height: 100%;
		top: 0;
		left: -100%;
		background-color: #e18007;
		-webkit-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
	}
		.btn-cmn-01:hover {
			color: #fff;
			border: 1px solid #fff;
			text-decoration: none;
		}
			.btn-cmn-01:hover:before { border-color: transparent transparent transparent #fff;}
			.btn-cmn-01:hover:after { left: 0;}

@media screen and (max-width: 768px) {
	.btn-cmn-01 {
		font-size: 16px;
		width: 100%;
		max-width: 344px;
	}
		.btn-cmn-01:before {
			left: 13px;
			border-width: 4px 0 4px 6px;
		}
}

/* btn-cmn-01 int
---------------------------------------------------------- */
.btn-cmn-01.is-large {
	width: 320px;
	height: 55px;
}
.btn-cmn-01.is-small {
	width: 90px;
	height: 40px;
}
@media screen and (max-width: 768px) {
	.btn-cmn-01.is-small {
		width: 57px;
		height: 26px;
	}
}
.btn-cmn-01.is-center { margin: 0 auto;}

/* btn-cmn-01 type-a
---------------------------------------------------------- */
.btn-cmn-01.type-a {
	color: #fff;
	border: 1px solid #fff;
	background-color: transparent;
}
	.btn-cmn-01.type-a::before { border-color: transparent transparent transparent #fff;}
	.btn-cmn-01.type-a::after { background-color: #fff;}
	.btn-cmn-01.type-a:hover {
		color: #1d1d1d;
		border: 1px solid #1d1d1d;
		text-decoration: none;
	}
		.btn-cmn-01.type-a:hover:before { border-color: transparent transparent transparent #1d1d1d;}

@media screen and (max-width: 768px) {
	.btn-cmn-01.type-a {
		font-size: 10px;
		padding-left: 6px;
	}
		.btn-cmn-01.type-a::before {
			left: 6px;
			border-width: 3.5px 0 3.5px 5px;
		}
		.btn-cmn-01.type-a::after { background-color: #fff;}
		.btn-cmn-01.type-a:hover {
			color: #1d1d1d;
			border: 1px solid #1d1d1d;
			text-decoration: none;
		}
			.btn-cmn-01.type-a:hover:before { border-color: transparent transparent transparent #1d1d1d;}
}

/* btn_orange
---------------------------------------------------------- */
.btn-orange,
.btn-black {
	display: inline-block;
	position: relative;
	min-width: 200px; /*For ID20*/
	padding: 11px 40px 9px 50px;
	background-color: #e18007;
	font-size: 18px;
	color: #fff;
	text-align: center;
	-moz-transition: all .3s;
	-webkit-transition: all .3s;
	transition: all .3s;
	border: none;
}
.btn-orange:hover,
.btn-black:hover {
	text-decoration: none;
}
.btn-orange:hover {
	background-color: rgba(225, 128, 7, 0.5);
}
.btn-black:hover {
	background-color: rgba(73, 73, 73, 0.8);
}
.btn-black {
	display: block;
	background-color: #494949;
}

.btn-orange:before,
.btn-black:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 17px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 7px;
	border-color: transparent transparent transparent #fff;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.btn-orange,
	.btn-black {
		display: block;
		padding: 14px 17px 14px 25px;
		font-size: 15px;
	}
	.btn-orange:before,
	.btn-black:before {
		left: 12px;
		border-width: 3px 0 3px 4px;
	}
}

/* pagetop
---------------------------------------------------------- */
.btn-cmn-pagetop {
	overflow: hidden;
	position: fixed;
	right: 0;
	bottom: 50px;
	-webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	z-index: 150;
}
	.btn-cmn-pagetop a {
		display: block;
		width: 50px;
		height: 50px;
		background: url(/common/img/btn_toppage_01.png) no-repeat 0 0;
		background-size: 50px auto;
		text-indent: -9999px;
	}

@media screen and (min-width: 1300px) {
	.btn-cmn-pagetop {
		right: 10px;
	}
}

@media screen and (min-width: 1200px) and (max-width: 1299px) {
	.btn-cmn-pagetop {
		right: 10px;
	}
}

@media screen and (max-width: 768px) {
	.btn-cmn-pagetop {
		right: 8px;
		bottom: 8px;
	}
		.btn-cmn-pagetop a {
			width: 46px;
			height: 46px;
			background-size: 46px auto;
		}
}

/* ==========================================================
 link
========================================================== */
/* link-cmn-01
---------------------------------------------------------- */
.link-cmn-01 {
	margin-left: 20px;
	font-weight: bold;
	color: #1d1d1d;
}
@media screen and (max-width: 768px) {
	.link-cmn-01 {
		margin-left: 15px;
	}
}

/* link-external
---------------------------------------------------------- */
.link-external {
	/* padding-right: 30px; */
	color: #000;
}

/* link-pdf
---------------------------------------------------------- */
.link-pdf {
	display: inline-block;
	background: url('/common/img/ico_pdf_01.png') right center no-repeat;
	padding-right: 30px;
}
@media screen and (max-width: 768px) {
	.link-pdf {
		display: inline;
		-webkit-background-size: 15px 18px;
		background-size: 15px 18px;
		padding-right: 23px;
	}
}

/* link-new-window
---------------------------------------------------------- */
.link-new-window {
	display: inline;
	background: url('/common/img/ico_new_window.png') right center no-repeat;
	-webkit-background-size: 17px;
	background-size: 17px;
	padding-right: 30px;
}
@media screen and (max-width: 768px) {
	.link-new-window {
		-webkit-background-size: 15px;
		background-size: 15px;
		padding-right: 25px;
	}
}

.link-blue {
	color: #3e8cbd;
	text-decoration: underline;
}
.link-blue:hover {
	text-decoration: none;
}

/* ==========================================================
 icon
========================================================== */
/* ico-cmn
---------------------------------------------------------- */
.ico-cmn {
}

/* ico-arrow-01
---------------------------------------------------------- */
.ico-arrow-01 {
	display: block;
	position: relative;
	padding-left: 20px;
}
.ico-arrow-01::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6.5px 0 6.5px 9px;
	border-color: transparent transparent transparent #f38a0a;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.ico-arrow-01 {
		padding-left: 12px;
	}
	.ico-arrow-01::after {
		border-width: 3.5px 0 3.5px 5px;
	}
}

.ico-arrow-01.fz-16
.ico-arrow-01.fz-16::after {
	top: 13px;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}

@media screen and (max-width: 768px) {
	.ico-arrow-01.fz-16::after {
		top: 13px;
	}
}

/* position top */
.ico-arrow-01.ico-arrow-01-top::after {
	top: 0.75em;
}

/* ico-arrow-02
---------------------------------------------------------- */
.ico-arrow-02 {
	position: relative;
	padding-left: 15px;
}
.ico-arrow-02::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8px;
	border-color: transparent transparent transparent #000;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
	.ico-arrow-02 {
		padding-left: 10px;
	}
	.ico-arrow-02::after {
		border-width: 3.5px 0 3.5px 5px;
	}
}

/* ico-blank-01
---------------------------------------------------------- */
.ico-blank-01 {
	position: relative;
}

.ico-blank-01::after {
	display: inline-block;
	margin-left: 10px;
	content:'';
	width: 16px;
	height: 16px;
	background: url('/common/img/ico_blank_01.png') no-repeat 0 0;
	background-size: 16px auto;
}

@media screen and (max-width: 768px) {
	.ico-blank-01 {}
	.ico-blank-01::after {
		margin-left: 5px;
		width: 14px;
		height: 14px;
		background-size: 14px auto;
	}
}

.ico-blank-02::after {
	content: ' ';
	position: relative;
	width: 16px;
	height: 16px;
	padding: 0 8px;
	background: url(/common/img/ico_blank_01.png) no-repeat center 1px;
	background-size: contain;
}

@media screen and (max-width: 768px) {
	.ico-blank-02::after {
		padding: 0 6px;
		background-position-y: 4px;
	}
}

/* ico-pdf-01
---------------------------------------------------------- */
.ico-pdf-01{}
.ico-pdf-01.space-right { padding-right: 30px;}
.ico-pdf-01::after {
	position: absolute;
	margin-left: 10px;
	background: url('/common/img/ico_pdf_01.png') no-repeat 0 0;
	background-size: 20px auto;
	width: 20px;
	height: 30px;
	content:'';
}

@media screen and (max-width: 1500px) and (min-width: 769px) {
	.ico-pdf-01::after {
		background-size: 16px auto;
	}
}
@media screen and (max-width: 768px) {
	.ico-pdf-01 {
		position: relative;
	}
	.ico-pdf-01::after {
		margin-left: 15px;
		background-size: 15px auto;
		width: 15px;
		height: 18px;
		/* right: -30px; */
	}
}

/* ==========================================================
 tag
========================================================== */
/* tag-cmn
---------------------------------------------------------- */
.tag-cmn {
	border: 1px solid #000;
	display: block;
	font-size: 14px;
	font-weight: bold;
	/* line-height: 1.2; */
	line-height: 1;
	width: 105px;
	height: 25px;
	padding: 4px;
	text-align: center;
}
	.tag-cmn.tag-csr {
		color: #8fad60;
		border: 1px solid #8fad60;
		font-size: 11px;
	}
	.tag-cmn.tag-ir {
		color: #53a6bb;
		border: 1px solid #53a6bb;
	}
	.tag-cmn.tag-exhibition {
		color: #c26d73;
		border: 1px solid #c26d73;
	}
	.tag-cmn.tag-notice {
		color: #494949;
		border: 1px solid #494949;
	}
	.tag-cmn.tag-tech {
		color: #4b77ad;
		border: 1px solid #4b77ad;
	}
@media screen and (max-width: 768px) {
	.tag-cmn {
		font-size: 14px;
		width: 107px;
		height: 22px;
		padding: 3px;
	}
}

/* ==========================================================
 figure
========================================================== */
/* fig-cmn-01
---------------------------------------------------------- */
.fig-cmn-01 {
	margin-bottom: 50px;
}

.fig-cmn-01--half {
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}


.fig-cmn-01 a img {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.fig-cmn-01:hover a img {
	opacity: .5;
}
	.fig-cmn-01 img {
		width: 100%;
		height: auto;
	}

	@media screen and (max-width: 768px) {
		.fig-cmn-01 {
			margin-bottom: 25px;
		}

		.fig-cmn-01--half {
			width: 100%;
		}
	}

/* fig-cmn-02
---------------------------------------------------------- */
.fig-cmn-02 img {
	display: block;
	width: 100%;
}

/* fig-cmn-03
---------------------------------------------------------- */
.fig-cmn-03 {
	margin-bottom: 50px;
}
.fig-cmn-03 img {
	max-width: 100%;
	height: auto;
}

@media screen and (max-width: 768px) {
	.fig-cmn-03 {
		margin-bottom: 25px;
	}
}

.fig-banner-01 {
	text-align: center;
}
.fig-banner-01 a {
	display: inline-block;
	text-align: left;
}
.fig-banner-01 .fig-banner-01-image {
	max-width: 100%;
	height: auto;
}
.fig-banner-01 .fig-banner-01-text {
	margin-top: 1.0em;
}

/* ==========================================================
 image
========================================================== */
/* img-cmn-adjust
---------------------------------------------------------- */
.img-cmn-adjust {
    width: auto;
    max-width: 100%;
}

/* ==========================================================
 form
========================================================== */
/* base Form
---------------------------------------------------------- */
/* type="text" */
input[type="text"] {
	-webkit-appearance: none;
	border-radius: 0;
}
/* type="checkbox" */
input[type="checkbox"] {
}
/* type="radio" */
input[type="radio"] {
}
/* select */
select {
}
/* textarea */
textarea {
	-webkit-appearance: none;
	border-radius: 0;
}
/* button */
button {
}

/* class Form
---------------------------------------------------------- */

/* form-cmn-input
---------------------------------------------------------- */
.form-cmn-input {
	padding: 3px 5px;
	border: none;
}
.form-cmn-input.s-w-full {
	width: 100%;
}
.form-cmn-input.s-w-70 {
	width: 70%;
}
.form-cmn-input.s-w-50 {
	width: 50%;
}
.form-cmn-input.s-w-40 {
	width: 40%;
}

/* form-cmn-check
---------------------------------------------------------- */
.form-cmn-check {
}

/* form-cmn-radio
---------------------------------------------------------- */
.form-cmn-radio {
}
	.form-cmn-radio input[type="radio"] {
		position: absolute;
		opacity: 0;
	}
	.form-cmn-radio label {
		position: relative;
		display: inline-block;
		padding-left: 25px;
	}
	.form-cmn-radio input[type="radio"] + label::before {
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 7px;
		height: 7px;
		background-color: #fff;
		border: 4px solid #fff;
		border-radius: 15px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.form-cmn-radio input[type="radio"]:checked + label::before {
		background-color: #515151;
	}

/* form-cmn-select
---------------------------------------------------------- */
.form-cmn-select {
    position: relative;
}
.form-cmn-select::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    width: 0;
    height: 0;
    margin-top: -4px;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #000 transparent transparent transparent;
}
.form-cmn-select-in {
    width: 100%;
    background-color: #fff;
    padding: 15px 40px 15px 12px;
    font-size: 16px;
    border: none;
    border-radius: 0px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
}
.form-cmn-select-in::-ms-expand {
    display: none;
}
/* form-cmn-textarea
---------------------------------------------------------- */
.form-cmn-textarea {
}

/* form-cmn-button
---------------------------------------------------------- */
.form-cmn-button {
}

/* ==========================================================
 is
========================================================== */
/* opacity hover
---------------------------------------------------------- */
.is-opacity {
	-ms-filter: 'alpha( opacity=100)';
	opacity: 1;
}
.is-opacity:hover {
	-ms-filter: 'alpha( opacity=70)';
	filter: alpha( opacity=70);
	opacity: 0.7;
}

.img-opacity {
	color: #1d1d1d;
}
.img-opacity img {
	opacity: 1;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.img-opacity:hover img {
	opacity: .5;
}

/* css animation
---------------------------------------------------------- */
.is-animate {
	-webkit-transition: all 0.2s ease 0s;
	transition: all 0.2s ease 0s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

/* ==========================================================
Youtube レスポンシブ対応
========================================================== */
@media screen and (max-width: 768px) {
	.youtube {
		position: relative;
		width: 100%;
		padding-top: 56.25%;
	}
	.youtube iframe {
		position: absolute;
		top: 0;
		right: 0;
		width: 100%;
		height: 100%;
	}
	.youtube figcaption {
	position: absolute;
    margin-top: 10px;
	}
}

/* ==========================================================
 style
========================================================== */
.s-fw-n	{ font-weight: normal;}
.s-fw-b	{ font-weight: bold;}
.s-ta-l	{ text-align: left !important;}
.s-ta-c	{ text-align: center !important;}
.s-ta-r	{ text-align: right !important;}
.s-va-t	{ vertical-align: top !important;}
.s-va-m	{ vertical-align: middle !important;}
.s-va-b	{ vertical-align: bottom !important;}
.s-ov-h	{ overflow: hidden;}
.s-clear { clear: both;}
.s-hide  { display: none;}
.s-txt-hide { text-indent: 100%; white-space: nowrap; overflow: hidden;}
.s-bg-n { background: none !important;}
.s-mt-00 { margin-top: 0 !important;}
.s-mb-00 { margin-bottom: 0 !important;}
.s-mb-00 { margin-bottom: 0 !important;}
.s-ml-00 { margin-left: 0 !important;}
.s-mr-00 { margin-right: 0 !important;}
.s-mr-10 { margin-right: 10px !important;}
.s-pt-00 { padding-top: 0 !important;}
.s-pb-00 { padding-bottom: 0 !important;}
.s-pl-00 { padding-left: 0 !important;}
.s-pr-00 { padding-right: 0 !important;}
.s-mb-05 { margin-bottom: 5px !important;}
.s-mb-10 { margin-bottom: 10px !important;}
.s-mb-15 { margin-bottom: 15px !important;}
.s-mb-20 { margin-bottom: 20px !important;}
.s-mb-25 { margin-bottom: 25px !important;}
.s-mb-30 { margin-bottom: 30px !important;}
.s-mb-35 { margin-bottom: 35px !important;}
.s-mb-40 { margin-bottom: 40px !important;}
.s-mb-50 { margin-bottom: 50px !important;}
.s-ml-10 { margin-left: 10px !important;}
.s-ml-20 { margin-left: 20px !important;}
.s-mt-20 { margin-top: 20px !important;}
.s-mt-30 { margin-top: 30px !important;}
.s-ma-10 { margin: 10px !important;}

.s-fz-ss { font-size: 87% !important;}/* base 15px -> 13px */
.s-fz-s { font-size: 94% !important;}/* base 15px -> 14px */
.s-fz-m { font-size: 100%;}
.s-fz-ml { font-size: 107%;}/* base 15px -> 16px */
.s-fz-l { font-size: 114%;}/* base 15px -> 17px */
.s-fz-ll { font-size: 120%;}/* base 15px -> 18px */
.s-fz-lll { font-size: 134%;}/* base 15px -> 20px */

.font-ryomin { font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", YuMincho, serif;}
.sup-cmn { font-size: 100%; line-height: 1;}

/* ==========================================================
 rwd switch
========================================================== */
/* pc
---------------------------------------------------------- */
.only-pc {}
.only-sp,
.no-pc { display: none !important;}
.no-sp {}

/* sp
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
.only-pc,
.no-sp { display: none !important;}
.only-sp,
.no-pc { display: block !important;}
img.only-sp,
img.no-pc { display: block !important;}

.s-ph-sp-15 { padding: 0 15px;}
}

/* partlist
---------------------------------------------------------- */
.title-partlist {
	padding: 0 20px;
	margin-bottom: 20px;
	border: 1px dashed #e18007;
	font-size: 40px;
	color: #e18007;
}
.box-partlist {
	margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
	.box-partlist {
		margin-bottom: 50px;
	}
		.box-partlist-in {
			padding: 0 20px;
		}
}

.table-form .form-row {
	display: flex;
	margin-bottom: 5px;
}

.table-form .form-row input {
	margin-left: 5px;
}

select.form-cmn-input {
	height: 29.31px;
}

.form-cmn-input + p {
	margin-top: 10px;
}

.table-form textarea {
	resize: none;
	width: 100%;
	border: none;
	padding: 3px 5px;
}

/* ==========================================================
 print
========================================================== */
@media print{
	.wrapper{
		width: auto;
		min-width: initial;
		min-width: auto;
		padding-top: 20px;
	}
	.header{
		position: static;
		width: auto;
		min-width: initial;
		min-width: auto;
	}
	.header-in{
		width: auto;
	}
	.header-utility{
		display: none;
	}
	.nav-global{
		display: none;
	}
	.hero-cmn{
		border-bottom: 0;
	}
	.hero-cmn-in{
		width: auto;
	}
	.nav-breadcrumb{
		display: none;
	}
	.area-features{
		display: none;
	}
	.footer{
		width: auto;
		min-width: initial;
		min-width: auto;
		border-top: 0;
	}
	.footer-utility{
		display: none;
	}
	.btn-cmn-pagetop{
		display: none;
	}
	.footer-in{
		width: auto;
	}
	.footer-nav{
		display: none;
	}
	.contents{
		width: auto;
	}
	.contents-main,
	.contents-aside .contents-main{
		float: none;
		width: auto;
	}
	.contents-sub{
		display: none;
	}
}


/* ==========================================================
 rnw
========================================================== */
/* pc
---------------------------------------------------------- */
.only-pc {}
.only-sp,
.no-pc { display: none !important;}
.no-sp {}

.wrapper {
	padding-top: 95px;
}

/* sp
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
.only-pc,
.no-sp { display: none !important;}
.only-sp,
.no-pc { display: block !important;}
img.only-sp,
img.no-pc { display: block !important;}

.wrapper {
	padding-top: 60px;
}
}
/* -------------------------------------------------------- */
/* ==========================================================
 header
========================================================== */
.rnw--menu-trigger,
.rnw--header-nav-item:first-child,
.rnw--header-nav-2nd-toggle,
.rnw--header-nav-2nd,
.rnw--header-utility--sp {
	display: none;
}
.rnw--header {
	font-family: 'Noto Sans JP', "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3","HIragino Kaku Gothic Pro W3","HIragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック", "MS P Gothic",sans-serif;
	font-weight: 400;
	line-height: 1.9em;
	color: #333; 

	position: fixed;
	box-sizing: border-box;
	background-color: #fff;
	top: 0;
	left: 0;
	padding: 0;
	width: 100%;
	height: 95px;
	z-index: 200;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.rnw--header img {
	vertical-align:top;
	max-width: 100%;
	height: auto; 
}
.rnw--header a {
	color: #333;
	transition:all 0.3s;
	text-underline-position: under;
}
.rnw--header a:link {
	text-decoration-color: transparent;
}
.rnw--header a:hover {
	color: #999;
	text-decoration: underline;
	text-decoration-color: #999;
}
.rnw--header a:active {
	color: #333;
	text-decoration-color: transparent;
}
.rnw--header-logo {
	float: left;
	width: 180px;
	margin-top: 24px;
	margin-left: 26px;
}
.rnw--header-logo a {
	display: block;
}
.rnw--header-logo a:hover {
	opacity: 0.7;
}
.rnw--header-menu {
	float: right;
}
.rnw--header-menu::after {
	content: ' ';
	display: table;
	line-height: 0;
	clear: both;
}
.rnw--header-utility::after {
	content: ' ';
	display: table;
	line-height: 0;
	clear: both;
}
.rnw--header-utility li {
	float: right;
	font-size: 13px;
	font-weight: 500;
	margin-top: 15px;
	margin-right: 54px;
}
.rnw--header-utility li a {
	display: inline-block;
	position: relative;
}
.rnw--header-utility li a::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 7px;
	right: -23px;
}
/* 三井グループ350周年バナー */
.rnw--header-utility li:nth-of-type(4) {
    margin-top: 5px;
	margin-right: 34px;
}
.rnw--header-btn-350th a img {
	width: 95px;
}
/* 三井グループ350周年バナー ここまで*/

.rnw--header-btn-inquiry a::after {
	width: 16px;
	height:12px;
	background: url(/cmn/img/ico_inquiry_pc.svg) no-repeat;
	background-size: 16px;
}
.rnw--header-btn-search a::after {
	width: 15px;
	height:15px;
	background: url(/cmn/img/ico_search_pc.svg) no-repeat;
	background-size: 15px;
}
.rnw--header-btn-english a::after{
	width: 15px;
	height:15px;
	background: url(/cmn/img/ico_english_pc.svg) no-repeat;
	background-size: 15px;
}
.rnw--header-nav ul::after {
	content: ' ';
	display: table;
	line-height: 0;
	clear: both;
}
.rnw--header-nav ul li {
	float: left;
	font-size: 15px;
	font-weight: 500;
	margin-top: 7px;
	margin-right: 33px;
}
@media screen and (max-width: 1024px) {
	.rnw--header-utility li {
		font-size: 12px;
	}
	.rnw--header-utility li a::after {
		top: 9px;
	}
	.rnw--header-nav ul li {
		font-size: 13px;
		margin-right: 26px;
	}
}

/* ==========================================================
 footer
========================================================== */
.rnw--footer.footer {
	font-family: 'Noto Sans JP', "メイリオ", Meiryo,"ヒラギノ角ゴ Pro W3","HIragino Kaku Gothic Pro W3","HIragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック", "MS P Gothic",sans-serif;
	font-weight: 400;
	line-height: 1.9em;
	color: #333; 

	width: 100%;
	background-color: #fff;
	border-top: 1px solid #d7d7d7;
	position: relative;
}
body#g01 .rnw--footer.footer {
	border-top: none;
}
	.rnw--footer .footer-utility .footer-in {
		max-width: 1200px;
		margin: 0 auto;
	}
	.rnw--footer .footer-in {
		/* width: 1200px; */
		margin: 0 auto;
		text-align: left;
	}
	.rnw--footer.footer a {
		color: #1d1d1d;
		-webkit-transition: all .2s ease 0s;
		transition: all .2s ease 0s;
		-webkit-transform: translateZ(0);
		-ms-transform: translateZ(0);
		transform: translateZ(0);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
		display: inline-block;
	}
		.rnw--footer.footer a:hover {
			-ms-filter: 'alpha( opacity=50)';
			filter: alpha( opacity=50);
			opacity: 0.5;
			text-decoration: none;
		}

	/* .footer-utility	*/
	.rnw--footer .footer-utility {
		padding: 34px 0 104px;
	}
	.rnw--footer .footer-ttl {
		position: relative;
		padding-bottom: 16px;
		font-size: 16px;
		font-weight: 500;
		border-bottom: none;
	}
	.rnw--footer .footer-ttl::before {
		content: '';
		position: absolute;
		display: inline-block;
		background: url('/cmn/img/ico_border.svg') no-repeat;
		background-size: 12px;
		width: 12px;
		height: 3px;
		top: 13px;
	}
	.rnw--footer .footer-ttl a {
		padding-left: 22px;
	}
	.rnw--footer .footer-ttl-group {
		margin-bottom: 50px;
	}
	.rnw--footer .footer-ttl-bnr {
		border-bottom: none;
	}

	.rnw--footer .footer-links {
		padding-left: 20px;
		margin: 25px 0 45px;
	}
		.rnw--footer .footer-links li {
			font-size: 16px;
			margin-top: 12px;
		}

	/* .footer-grid */
	.rnw--footer .footer-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
		.rnw--footer .footer-grid-col {
			width: 280px;
		}
			.rnw--footer .footer-grid-col.footer-grid-banner {
				width: 796px;
			}

	/* .footer-banner */
	.rnw--footer .footer-banner {
		overflow: hidden;
		padding-top: 17px;
	}
	.rnw--footer .footer-banner .footer-banner-row {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -8px;
	}
		.rnw--footer .footer-banner .footer-banner-row .footer-banner-col {
			-webkit-flex: 0 1 auto;
			-ms-flex: 0 1 auto;
			flex: 0 1 auto;
			margin: 0 8px;
		}
		.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-link {
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
			-webkit-transform: translate3d(0,0,0);
			transform: translate3d(0,0,0);
		}
		.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-img {
			-webkit-transform: translate3d(0,0,0) rotate(0.1deg);
			transform: translate3d(0,0,0) rotate(0.1deg);
		}
		.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl {
			-webkit-transform: translate3d(0,0,0) ;
			transform: translate3d(0,0,0);
		}
		.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl {
			display: inline-block;
			font-size: 14px;
			font-weight: 500;
			margin-bottom: 10px;
		}
			.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl.ico-blank-01::after {
				position: absolute;
				top: 5px;
				-webkit-transform: translate3d(0,0,0) rotate(0.1deg);
				transform: translate3d(0,0,0) rotate(0.1deg);
			}
		.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-img {
			display: block;
			max-width: 185px;
		}

	/* .footer-nav */
	.rnw--footer .footer-nav-wrap {
		position: relative;
	}
	.rnw--footer .footer-nav {
		padding: 25px 0 0;
		background-color: #8197a4;
	}
	.rnw--footer .footer-nav .footer-in {
		width: auto;
		text-align: center;
	}
		.rnw--footer .footer-nav li {
			display: inline;
			margin-left: 35px;
			font-size: 15px;
		}
		.rnw--footer .footer-nav li:first-child {
			margin-left: 0;
			/* font-size: 14px; */
		}
			.rnw--footer .footer-nav li a {
				color: #fff;
			}

	/* .footer-copyright	*/
	.rnw--footer .footer-copyright {
		padding: 10px 0 22px;
		background-color: #8197a4;
	}
	.rnw--footer .footer-copyright-txt {
		font-size: 14px;
		color: #fff;
		text-align: center;
	}
@media screen and (max-width: 1220px) and (min-width: 769px) {
	.rnw--footer .footer-in {
		width: 98%;
	}
	.rnw--footer .footer-ttl {
		font-size: 16px;
	}
	.rnw--footer .footer-links li {
	font-size: 13px;
	margin-top: 6px;
	}
	.rnw--footer .footer-grid {
		justify-content: flex-start;
	}
	.rnw--footer .footer-grid-col {
		width: 19%;
		margin-right: 1%;
	}
	.rnw--footer .footer-grid-col.footer-grid-banner {
		width: 98%;
		margin: 0 auto;
	}
	.rnw--footer .footer-banner .footer-banner-row {
		flex-wrap: nowrap;
	}
	.rnw--footer .footer-banner .footer-banner-row .footer-banner-col {
		flex: auto;
	}
	.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl {
		font-size: 12px;
	}
	.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-img {
		display: block;
		max-width: 180px;
		width: 100%;
	}
}	
@media screen and (max-width: 768px) {
	body {
		min-width: auto;
	}
	.rnw--header {
		height: 60px;
	}
	.rnw--header-logo {
		float: none;
		width: 108px;
		height: 60px;
		padding-top: 16px;
		margin-top: 0;
		margin-left: 17px;
	}
	.rnw--header-menu {
		float: right;
	}
	.rnw--header-utility {
		display: none;
	}
	.rnw--header-nav ul::after {
		content: ' ';
		display: table;
		line-height: 0;
		clear: both;
	}
	.rnw--header-nav ul li {
		position: relative;
		float: none;
		margin-top: 0;
		margin-right: 0;
	}

	.rnw--menu-trigger,
	.rnw--menu-trigger span {
		display: inline-block;
		box-sizing: border-box;
	}
	.rnw--menu-trigger {
		position: absolute;
		width: 28px;
		height: 28px;
		top: 16px;
		right: 15px;
	}
	.rnw--menu-trigger span {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 28px;
		height: 2px;
		background-color: #333;
		border-radius: 1px;
		margin-left: -14px;
		-webkit-transition-property: -webkit-transform;
		transition-property: -webkit-transform;
		transition-property: transform;
		transition-property: transform, -webkit-transform;
		-webkit-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		transition-timing-function: cubic-bezier(.165, .84, .44, 1);
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden
	}
	.rnw--menu-trigger span:nth-of-type(1) {
	}
	.rnw--menu-trigger span:nth-of-type(2) {
		margin-top: -10px;
	}
	.rnw--menu-trigger span:nth-of-type(3) {
		margin-top: 10px;
	}
	.rnw--menu-trigger.is-active span {
		margin-top: 0;
	}
	.rnw--menu-trigger.is-active span:nth-of-type(1) {
		width: 0;
	}
	.rnw--menu-trigger.is-active span:nth-of-type(2) {
		transform: rotate(45deg);
	}
	.rnw--menu-trigger.is-active span:nth-of-type(3) {
		transform: rotate(-45deg);
	}

	.rnw--header-menu {
		display: block;
		float: none;
		width: 100%;
		height: 0;
		overflow: auto;
		background-color: #fff;
		box-shadow: 0px 0px 4px 0px rgba(38, 38, 38, 0.3);
		transition: height .5s ease-in-out;
		-webkit-overflow-scrolling: touch;
	}
	.rnw--header-menu.is-active {
		position: absolute;
		top: 60px;
		height: calc(100vh - 60px);
	}
	.rnw--header-nav {
		float: none;
		width: 100%;
	}
	.rnw--header-nav-inner {
		width: 84%;
		margin: 0 auto;
	}
	.rnw--header-nav-item {
		float: none;
		border-bottom: 1px solid #bfbfbf;
		text-align: left;
		/* padding: 13px 0; */
	}
	.rnw--header-nav-item:first-child {
		display: block;
		margin-top: 10px;
	}
	.rnw--header-nav-item + .rnw--header-nav-item {
		/* padding: 13px 0; */
	}
	.rnw--header-nav-item a {
		display: block;
		padding: 13px 0;
	}
	.rnw--header-nav-item:hover a {
		color: #272727;
	}

	.rnw--header-nav-item a span {
		padding-left: 10px;
	}
	.rnw--header-nav-item a.rnw--header-nav-none::after {
		content: '';
		display: block;
		position: absolute;
		top: 21px;
		right: 17px;
		width: 7px;
		height: 7px;
		border: 2px solid;
		border-color: #f69c31 #f69c31 transparent transparent;
		transform: rotate(45deg);
	}
	.rnw--header-nav-item a.rnw--header-nav-blank::after {
		content:'';
		display: block;
		position: absolute;
		top: 21px;
		right: 11px;
		width: 16px;
		height: 16px;
		background: url('/cmn/img/ico_blank.png') no-repeat 0 0;
		background-size: 16px auto;

	}
	.rnw--header-nav-2nd-toggle {
		position: absolute;
		top: 0;
		right: 0;
		width: 38px;
		height: 100%;
	}
	.rnw--header-nav-2nd-toggle > span:first-child {
		position: absolute;
		top: 26px;
		right: 11px;
		content: '';
		width: 16px;
		height: 2px;
		display: block;
		border: none;
		background-color: #f69c31;
		transform: rotate(0);
	}
	.rnw--header-nav-2nd-toggle > span:last-child {
		position: absolute;
		top: 26px;
		right: 11px;
		content: '';
		width: 16px;
		height: 2px;
		display: block;
		border: none;
		background-color: #f69c31;
		transform: rotate(90deg);
		transition: all 0.3s;
	}
	.is-active > .rnw--header-nav-2nd-toggle > span:last-child {
		transform: rotate(0);
	}

	.rnw--header-nav-2nd {
		display: none;
		background-color: #f0f0f0;
	}
	.rnw--header-nav ul li.rnw--header-nav-2nd-item {
		position: relative;
		border-top: 1px solid #bfbfbf;
		list-style: none;
		font-size: 11px;
	}
	.rnw--header-nav ul li.rnw--header-nav-2nd-item a:after {
		position: absolute;
		top: 21px;
		right: 17px;
		content: '';
		display: block;
		width: 7px;
		height: 7px;
		border: 2px solid;
		border-color: #f69c31 #f69c31 transparent transparent;
		transform: rotate(45deg);
	}
	.rnw--header-nav ul li.rnw--header-nav-2nd-item a span {
		padding-left: 20px;
	}
	.rnw--header-utility--sp {
		display: block;
		width: 84%;
		margin: 24px auto;
		padding-bottom: 40px;
	}
	.rnw--header-utility--sp li {
		margin: 10px 0;
	}
	.rnw--header-utility--sp li a {
		position: relative;
		display: block;
		color: #fff;
		text-align: center;
		padding: 8px;
	}
	.rnw--header-utility--sp li a::after {
		content: '';
		display: block;
		position: absolute;
		top: 15px;
		right: 13px;
	}
	.rnw--header-utility--sp .rnw--header-btn-inquiry a {
		background-color: #f69c31;
	}
	.rnw--header-utility--sp .rnw--header-btn-search a {
		background-color: #8197a4;
	}
	.rnw--header-utility--sp .rnw--header-btn-english a{
		background-color: #8197a4;
	}
	.rnw--header-utility--sp .rnw--header-btn-inquiry a::after {
		width: 16px;
		height:12px;
		background: url(/cmn/img/ico_inquiry_sp.svg) no-repeat;
		background-size: 16px;
	}
	.rnw--header-utility--sp .rnw--header-btn-search a::after {
		width: 15px;
		height:15px;
		background: url(/cmn/img/ico_search_sp.svg) no-repeat;
		background-size: 15px;
	}
	.rnw--header-utility--sp .rnw--header-btn-english a::after{
		width: 15px;
		height:15px;
		background: url(/cmn/img/ico_english_sp.svg) no-repeat;
		background-size: 15px;
	}
	/* 三井グループ350周年バナー */

	.rnw--header-utility--sp .rnw--header-btn-350th a img {
		width: 55%;
		margin-top: 20px;
	}

	/* 三井グループ350周年バナー ここまで*/

		.rnw--footer .footer-utility {
		border-top: 1px solid #bfbfbf;
		padding-bottom: 21px;
	}
	.rnw--footer .footer-grid-col {
		display: none;
	}
	.rnw--footer .footer-grid-col.footer-grid-banner {
		display: block;
		width: auto;
	}
	.rnw--footer .footer-banner {
		padding-top: 0;
	}
	.rnw--footer .footer-banner .footer-banner-row {
		display: block;
		flex-wrap: unset;
	}
	.rnw--footer .footer-banner .footer-banner-row .footer-banner-col {
		flex: none;
		float: left;
		width: 50%;
		margin: 0 0 5px;
		padding: 0 12px;
	}
	.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-link {
		
	}
	.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-ttl {
		font-size: 10px;
		margin-bottom: 0;
	}
	.rnw--footer .footer-banner .footer-banner-row .footer-banner-col .footer-banner-img {
		display: block;
		max-width: 100%;
		width: 100%;
		height: 100%;
	}
	.rnw--footer.footer {
		min-width: inherit;
	}
		.rnw--footer .footer-in {
			width: 100%;
			padding: 0 20px;
		}

		/* .footer-nav */
		.rnw--footer .footer-nav {
			padding: 0;
		}
		.rnw--footer .footer-nav .footer-in {
			padding: 0;
		}
			.rnw--footer .footer-nav li {
				margin-left: 0;
				font-size: 10px;
				display: block;
				width: 100%;
				margin-top: 0;
				margin-bottom: 0;
				text-align: left;
				padding: 11px 26px;
				border-bottom: 1px solid #fff;
			}

		/* .footer-copyright	*/
		.rnw--footer .footer-copyright {
			padding: 8px 0;
		}
			.rnw--footer .footer-copyright-txt {
				font-size: 10px;
				text-align: center;
			}
}
