@charset "UTF-8";

/*==========================================
 全デバイス共通［common］
===========================================*/
html {
	font-size: 62.5%;
}

body {
	width: 100%;
	color: #333;
	line-height: 1.5;
	font-size: 1.6rem;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

a:link {
	color: #333;
	transition-duration: .3s;
	text-decoration: none;
}

a:hover {
	color: #014099;
}

a:visited {
	color: #74325c;
}

@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		color: #333;
	}
}

/*------------
 hoverスタイル
------------*/
.hover_opacity {
	transition-duration: .3s;
}

.hover_opacity:hover {
	opacity: .7;
}

/*------------
ボタンのスタイル
------------*/
/*基本のボタン*/
a.btm {
	margin: 30px 0;
	padding: 10px 15px;
	width: 180px;
	display: inline-block;
	color: #014099;
	border: solid 1px #014099;
	text-align: left;
	position: relative;
	/*アニメーションの指定*/
	transition: ease .2s;
}

a.btm:hover {
	background: #014099;
	color: #fff;
}

/* 矢印が右に移動して現在地に戻る */
a.btm::after {
	content: '';
	/*絶対配置で矢印の位置を決める*/
	position: absolute;
	top: 42%;
	right: 10px;
	/*矢印の形状*/
	width: 8px;
	height: 8px;
	border-top: 2px solid #014099;
	border-right: 2px solid #014099;
	transform: rotate(45deg);
}

a.btm:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	animation: arrow .5s;
}

@keyframes arrow {
	50% {
		right: 8px;
	}

	100% {
		right: 10px;
	}
}

/*基本のボタン白*/
a.btm.btm-wh {
	color: #fff;
	border: solid 1px #fff;
}

a.btm.btm-wh::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

a.btm.btm-wh:hover::after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

/*矢印*/
a.btm_arrow,
.btm_arrow {
	margin: 30px 0;
	padding-right: 15px;
	display: inline-block;
	text-align: left;
	position: relative;
	/*アニメーションの指定*/
	transition: ease .2s;
}

a.btm_arrow:hover,
.btm_arrow:hover {}

/* 矢印が右に移動して現在地に戻る */
a.btm_arrow::after,
.btm_arrow::after {
	content: '';
	/*絶対配置で矢印の位置を決める*/
	position: absolute;
	top: 10px;
	right: 5px;
	/*矢印の形状*/
	width: 8px;
	height: 8px;
	border-top: 2px solid #014099;
	border-right: 2px solid #014099;
	transform: rotate(45deg);
}

a.btm_arrow:hover::after,
.btm_arrow:hover::after {
	animation: arrow .5s;
}

@keyframes arrow {
	50% {
		right: 2px;
	}

	100% {
		right: 5px;
	}
}

.ancher {
	margin-top: -80px;
	padding-top: 80px;
}

/*------------
fadeinエフェクト
------------*/
.fadein {
	opacity: 0;
	transform: translate(0, 100px);
	transition: all 1s;
}

.fadein.active {
	opacity: 1;
	transform: translate(0, 0);
}

/*==========================================
 PC［1001px~］
===========================================*/
.sp_on,
.tb_on {
	display: none;
}

/*------------
	 見出し
------------*/
.content-ttl-h2 {
	margin: 30px auto;
	font-size: 3.2rem;
	letter-spacing: 0.35rem;
	color: #014099;
}

.content-ttl-h3 {
	margin: 30px auto;
	padding-left: 30px;
	font-size: 2.6rem;
	color: #014099;
	position: relative;
}

.content-ttl-h3:before {
	content: '';
	width: 20px;
	height: 2px;
	border-radius: 5px;
	background: #014099;
	position: absolute;
	top: 50%;
	left: 0;
}

.content-ttl-h4 {
	margin: 15px 0;
	padding-left: 15px;
	letter-spacing: 0.15rem;
	position: relative;
	font-size: 2rem;
}

.content-ttl-h4:before {
	content: '';
	width: 10px;
	height: 2px;
	border-radius: 5px;
	background: #333;
	position: absolute;
	top: 50%;
	left: 0;
}
span.sub {
	vertical-align: sub;
	font-size: small;
}
span.sup {
	vertical-align: super;
	font-size: small;
}

.content-ttl-h5 {
	margin: 10px 0 5px;
	letter-spacing: 0.15rem;
	font-size: 1.8rem;
}

.text_small {
	font-size: 40%;
}

.text_wh {
	color: #fff;
}

.flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/*------------
 header
------------*/
header {
	background-repeat: no-repeat;
	background-position: bottom -5% left -5%;
	background-size: 450px;
}

#header_bar_wrap {
	margin: 0 auto;
	width: 100%;
	height: 45px;
	background: #F8F8F8;
	position: relative;
}

.header_bar {
	margin: 0 auto;
	max-width: 1000px;
	width: 90%;
}

.copy {
	font-size: 1.1rem;
	justify-content: flex-start;
	align-items: center;
}

.copy img {
	margin: 5px 10px;
	width: 60px;
	height: auto;
}

.copy h1,
.copy p {
	font-weight: normal;
	font-size: 11px;
}

.header_contact {
	width: 180px;
	line-height: 1.25;
	height: 100%;
	background: #014099;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url("../images/header-tel.svg");
	background-repeat: no-repeat;
	background-position: left 20px top 12px;
}

.header_contact a {
	padding: 5px 20px 5px 50px;
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 1.35rem;
}

.header_wrap {
	justify-content: space-around;
}

/*logo_area*/
.logo_area a {
	display: block;
	max-width: 460px;
	height: 100%;
}

.logo {
	margin: 15px 5px 0;
	max-width: 200px;
	width: 200px;
	height: 60px;
	display: block;
	transition-duration: .3s;
}

/*nav*/
#gl_nav {
	margin: 0 auto;
	padding: 10px 0;
	height: 90px;
	position: relative;
	z-index: 100;
	display: flex;
}

/*スクロールで固定*/
#gl_nav.fixed .gl_nav {
	margin: 0 auto;
	width: 95%;
	position: fixed;
	top: 10px;
	right: 0;
	left: 0;
	justify-content: center;
	background: #fff;
	box-shadow: 1px 1px 10px 1px rgba(0, 0, 0, .2);
}

#gl_nav.fixed .gl_nav li a {
	padding: 20px 15px;
	height: 65px;
}

/*メニュー*/
.gl_nav {
	display: flex;
	height: 65px;
	margin: 0 auto;
	width: 1000px;
	transition-duration: .3s;
}

.gl_nav>li {
	/*親階層のみ幅を25%にする*/
	width: calc(100% / 6);
}

/*全てのリスト・リンク共通*/
.gl_nav li {
	list-style: none;
	position: relative;
}

.gl_nav>li:not(:last-child):after {
	content: '';
	position: absolute;
	top: 45%;
	right: 0;
	background: #aaa;
	height: 15px;
	width: 1px;
}

.gl_nav li a {
	padding: 0 10px;
	color: #333;
	height: 75px;
	text-align: center;
	text-decoration: none;
	width: 100%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}

.gl_nav li a:hover,
.gl_nav li:hover a {
	color: #fff;
	background: #014099;
}

/*子階層以降*/
.gl_nav li li {
	height: 0;
	overflow: hidden;
	transition: .5s;
}

.gl_nav li li a {
	background: #014099;
	border-top: 1px solid #eee;
}

.gl_nav li>ul {
	width: 200%;
}

.gl_nav li:last-child>ul {
	transform: translateX(-50%);
}

.gl_nav li:hover>ul>li {
	height: auto;
	overflow: visible;
}

.gl_nav li:hover>ul>li a {
	padding: 5px 10px 0;
	color: #fff;
}

.gl_nav li>ul>li a:hover {
	background-color: rgba(1, 64, 153, .85);
}

.dropdown {
	position: relative;
}

/*カレント*/
.gl_nav li a.current {
	color: #014099;
}

@media screen and (min-width:1025px) and (max-width:1250px) {
	.header_wrap {
		flex-direction: column;
		align-items: center;
	}

	.logo {
		max-width: 250px;
	}

	#gl_nav {
		margin: 20px calc(50% - 50vw) 0;
		padding: 0;
		height: 75px;
		background: #eaf4fc;
	}


	.fixed .gl_nav li a {
		height: 65px;
	}
}

/*------------
 コンテンツ
------------*/
.section {
	margin: 0 auto;
	padding: 60px 0;
	max-width: 1000px;
	width: 90%;
}

.section_2col {
	align-items: flex-start;
}

.content_inner {
	margin: 0 auto;
	padding: 50px 0;
	width: 90%;
}

/*------------
 footer
------------*/
#footer {
	background: #014099;
	color: #fff;
	position: relative;
}

#footer .section {
	padding: 80px 0;
	position: relative;
}

#footer .logo {
	margin-bottom: 15px;
	width: 250px;
	height: auto;
	position: relative;
}

.address {
	margin-top: 20px;
}

.footerNav {
	margin-bottom: 15px;
	justify-content: flex-start;
}

.footerNav li {
	margin-right: 2em;
	font-size: 12px;
}

.footerNav li a {
	color: #fff;
	position: relative;
}

.footerNav li a::after {
	content: url("../images/icon-blank-wh.svg") !important;
	margin-left: .5em !important;
	width: 10px !important;
	height: 10px !important;
	position: absolute !important;
	top: -2px !important;
}

.footerNav li a:hover {
	opacity: .7;
}

small {
	margin: 0 auto 0;
	display: block;
	font-size: 1.2rem;
}

.recycling {
	width: 160px;
	height: auto;
	position: absolute;
	right: 0;
	bottom: 80px;
}

/*------------
	 pagetop
------------*/
#pagetop {
	width: 50px;
	height: 50px;
	background: #014099;
	position: fixed;
	right: 5%;
	bottom: 5%;
	z-index: 2;
	font-size: 1.2rem;
}

#pagetop a {
	padding: 25px 0 0;
	width: 100%;
	height: 100%;
	display: block;
	text-align: center;
	position: relative;
	color: #fff;
}

#pagetop a:before {
	content: '';
	position: absolute;
	top: 12px;
	left: 35%;
	width: 15px;
	height: 15px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/*==========================================
 tb［769px-1024px以下］
===========================================*/
@media screen and (max-width: 1024px) {
	.tb_on {
		display: block;
	}

	/*------------
	 header
	------------*/
	.header_wrap {
		justify-content: space-between;
	}

	/* nav-toggle */
	#nav-toggle {
		position: fixed;
		top: 60px;
		right: 10px;
		height: 50px;
		width: 50px;
		background: #fff;
	}

	.open #nav-toggle {
		top: 10px;
	}

	#gl_nav.fixed #nav-toggle {
		top: 10px;
	}

	#nav-toggle>div {
		position: relative;
		width: 20px;
		color: #333;
	}

	#nav-toggle>div:after {
		content: 'MENU';
		font-size: 1rem;
		position: absolute;
		bottom: -45px;
		right: -22px;
	}

	#nav-toggle span {
		margin: 0 auto;
		width: 100%;
		height: 1px;
		position: absolute;
		left: 15px;
		display: block;
		background: #333;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}

	#nav-toggle span:nth-child(1) {
		top: 15px;
	}

	#nav-toggle span:nth-child(2) {
		top: 20px;
	}

	#nav-toggle span:nth-child(3) {
		top: 25px;
	}

	/* #nav-toggle close */
	.open #nav-toggle span:nth-child(1) {
		top: 20px;
		-webkit-transform: rotate(45deg);
		-moz-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}

	.open #nav-toggle span:nth-child(3) {
		top: 20px;
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	/*オーバーレイ*/
	.open #overlay {
		position: fixed;
		background: rgba(0, 0, 0, .3);
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1;
	}

	/*PCのスタイル解除*/
	#gl_nav {
		margin: 0;
	}

	.gl_nav li {
		width: 100%;
		height: auto;
		text-align: left;
		border-bottom: solid 1px #ddd;
	}

	/*スクロール固定解除*/
	#gl_nav.fixed .gl_nav {
		position: static;
	}

	#gl_nav.fixed .gl_nav li a {
		padding: 20px 5% 20px 10%;
		background: inherit;
		box-shadow: none;
	}

	#gl_nav.fixed .gl_nav

	/*スクロール固定解除*/
	,
	.gl_nav {
		padding: 10% 0;
		position: fixed;
		right: -250px;
		left: inherit
			/*スクロール固定解除*/
		;
		top: 0;
		height: 100%;
		width: 250px;
		background: #fff;
		transition: .35s ease-in-out;
		overflow-y: scroll;
		justify-content: flex-start;
		flex-direction: column;
		-ms-overflow-style: none;
		/* IE, Edge 対応 */
		scrollbar-width: none;
		/* Firefox 対応 */
	}

	.open .gl_nav {
		-webkit-transform: translate3d(-250px, 0, 0);
		transform: translate3d(-250px, 0, 0);
	}

	.gl_nav>li:not(:last-child)::after {
		content: none;
	}

	.gl_nav li li {
		height: auto;
	}

	.gl_nav li a {
		text-align: left;
		padding: 20px 5% 20px 10%;
		display: block;
		height: auto;
	}

	.gl_nav li:last-child>ul {
		transform: translateX(0);
	}

	/*PCのスタイル解除*/
	.gl_nav li a:hover,
	.gl_nav li:hover a {
		color: #fff !important;
		background: #014099 !important;
	}

	.gl_nav li>ul {
		width: 100%;
	}

	.gl_nav li li a,
	.gl_nav li:hover>ul>li a {
		padding: 20px 5% 20px 10%;
		background-color: #888 !important;
		color: #fff !important;
	}

	.gl_nav li>ul>li a:hover {
		opacity: .7;
	}

	.gl_nav li:hover .dropdown::after {
		content: none;
	}

	.gl_nav li:hover>ul>li {
		height: auto;
	}

	/*END PCのスタイル解除*/
	/*子メニュー*/
	.dropdown-btn {
		position: relative;
	}

	.dropdown-btn::before {
		margin-top: -4px;
		content: '';
		width: 10px;
		height: 10px;
		border: 0px;
		border-top: solid 2px #014099;
		border-right: solid 2px #014099;
		-ms-transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		position: absolute;
		top: 45%;
		right: 5%;
		transition-duration: .3s;
	}

	.dropdown-btn.open::before {
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}

	.dropdown-btn:hover::before {
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
	}

	.dropdown {
		background-color: #014099;
		display: none;
	}

	.gl_nav li .dropdown li {
		margin-bottom: 0;
		border: none;
	}

	/*------------
	 header ナビ以外
	------------*/
	/*logo_area*/
	.logo_area a {
		margin-left: 5%;
		display: block;
		height: 100%;
	}

	.logo {
		max-width: 260px;
		display: block;
		transition-duration: .3s;
	}
}

/*==========================================
 sp［540px以下］
===========================================*/
@media screen and (max-width: 540px) {
	.sp_on {
		display: block;
	}

	.pc_on {
		display: none;
	}

	a.btm {
		margin: 15% auto;
	}

	/*------------
		 見出し
	------------*/
	.content-ttl-h2 {
		font-size: 3rem;
	}

	.content-ttl-h3 {
		margin-bottom: 30px;
		font-size: 2rem;
	}

	.content-ttl-h4 {
		font-size: 1.8rem;
	}

	/*------------
		 header
	------------*/
	/*header_bar*/
	.header_bar {
		width: 95%;
		position: relative;
	}

	.copy {
		padding: 5px 0;
	}

	.copy img {
		margin: 0 10px;
	}

	.copy p {
		display: none;
	}

	.header_contact {
		width: auto;
		right: -10px;
		top: -3px;
		height: 48px;
	}

	.header_contact a {
		padding: 10px 20px 0px 50px;
		font-size: 1.1rem;
	}

	.logo_area {
		height: 40px;
		width: 90%;
	}

	.logo_area a {
		margin-top: 20px;
	}


	.logo_area span {
		margin-left: 7%;
		font-size: 1.1rem;
		font-weight: normal;
	}

	.logo_area .logo {
		margin: 10px 5px 0;
		width: 200px;
		height: 45px;
	}

	.gl_nav {
		padding: 30px 0 0;
	}


	/*------------
	コンテンツ
	------------*/
	.section {
		padding: 50px 0;
	}

	/*------------
	footer
	------------*/
	#footer .section {
		padding: 50px 0;
	}

	.recycling {
		margin: 20px 0 0;
		position: static;
	}
}