@charset "UTF-8";

main {
	overflow: hidden;
}

/* =====================
  汎用style
===================== */


/* PC改行解除用*/

@media screen and (min-width: 470px) {
	.spbr {
		display: none !important;
	}
}

a:hover {
	opacity: 0.7;
}

a {
	text-decoration: none;
}

.tcenter {
	text-align: center;
}

.ratio_one:before {
	content: "";
	display: block;
	padding-top: 100%;
	/* 1:1 */
}

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

ローディング

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


/* ローディング画面 */
#loader {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 1s;
	background: linear-gradient(to right, #d3edfb, #fdeff5, #fffcdb);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

.loaded {
	opacity: 0;
	visibility: hidden;
}

#load_id img {
	max-width: 400px;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
	0% {
		transform: scale(0);
	}

	100% {
		transform: scale(1.0);
		opacity: 0;
	}
}


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

ヘッダー

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

#header {
	background: #fff;
	opacity: 1;
	width: 100%;
	color: #004ea2;
	font-weight: bold;
	z-index: 900;
	display: flex;
	align-items: center;
	position: sticky;
	top: 0px;
	/* 95-115 = -20 */
	height: auto;
}

#header a {
	color: #004ea2;
}

#header a:hover {
	opacity: 0.7;
}

#site_id {
	width: auto;
}


#site_id img {
	max-width: 190px;
	width: 100%;
	margin: 25px 0 10px 25px;
}

menu {
	width: 100%;

}

ul.menulist {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-top: 0px;
	max-width: 360px;
	margin: 0 auto;
}

ul.menulist li {
	padding: 10px 12px !important;
	vertical-align: middle;
}

#header .header_inner {
	width: 100%;
	height: 75px;
	position: sticky;
	top: 0;
}

#header .head_box {
	max-width: 1190px;
	margin: 0px auto 0;
	display: flex;
	justify-content: space-between;

}

#header .menu {
	width: 100%;
	background-color: #e6f4fd;
}

#header .menu .menu-menu-container {
	max-width: 1200px;
	margin: 50px 30px 0;
	display: flex;
	flex-direction: column;
}

#header .menu li {
	display: inline;
	padding: 2px 12px;
	width: auto;
	background-color: #e6f4fd;
	border-bottom: none;
}

#header .menu li a {
	font-size: 1.4rem;
	font-weight: normal;
	text-decoration: none;
}

#header .menu_btn {
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 0;
	margin: 30px 0;

}

#header .menu_btn .contact_btn a {
	background-color: #004ea2 !important;
	color: #fff;
	border-radius: 26px;
	min-width: 180px;
	display: inline-block;
	padding: 12px 18px;
	margin-bottom: 8px;
}

#header .menu_btn .pt_btn a {
	background-color: #0ab9df !important;
	color: #fff;
	border-radius: 56px;
	min-width: 180px;
	display: inline-block;
	padding: 12px 18px;
}

/* グローバルメニュー */
.global-nav {
	background-color: #fff;
	margin: 0;
	display: none;

	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: #fff;
	transition: all .6s;
	z-index: 200;

}

.hamburger {
	position: absolute;
	right: 25px;
	top: 20px;
	width: 50px;
	/* クリックしやすいようにちゃんと幅を指定する */
	height: 50px;
	/* クリックしやすいようにちゃんと高さを指定する */
	cursor: pointer;
	z-index: 300;
}

.hamburger__line {
	position: absolute;
	left: 11px;
	width: 30px;
	height: 2px;
	background-color: #004ea2;
	transition: all .6s;
}

.hamburger__line--1 {
	top: 14px;
}

.hamburger__line--2 {
	top: 25px;
	width: 20px;
	left: 21px;
}

.hamburger__line--3 {
	top: 36px;
}



.nav-open .global-nav {
	display: block;
}

.nav-open .black-bg {
	opacity: .8;
	visibility: visible;
}

.nav-open .hamburger__line--1 {
	transform: rotate(45deg);
	top: 20px;
}

.nav-open .hamburger__line--2 {
	width: 0;
	left: 50%;
}

.nav-open .hamburger__line--3 {
	transform: rotate(-45deg);
	top: 20px;
}


/* サブナビゲーション */

.global-nav-header {
	display: none;
}



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

  セクション　共通

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

.gr_bg {
	width: 100%;
	background: linear-gradient(to right, #d3edfb, #fdeff5, #fffcdb);
}

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

  コンテンツ

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

/* パーティクル　*/

canvas {
	display: block;
}

/* ---- particles.js container ---- */
#particles-js {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	background-image: url("");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
}

.count-particles {
	background: #000022;
	position: absolute;
	top: 48px;
	left: 0;
	width: 80px;
	color: #13E8E9;
	font-size: .8em;
	text-align: left;
	text-indent: 4px;
	line-height: 14px;
	padding-bottom: 2px;
	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	display: none;
}

.js-count-particles {
	font-size: 1.1em;
}

#stats,
.count-particles {
	margin-top: 5px;
	margin-left: 5px;
}

#stats {
	border-radius: 3px 3px 0 0;
	overflow: hidden;
}

.count-particles {
	border-radius: 0 0 3px 3px;
}

/* TOP */
body#toppage {
	position: relative;
}

.top_read {
	position: relative;
	margin: 0 auto;
	height: 122vw;
	max-height: 1200px;
	padding: 10px 0 0;
	background-color: #fff;
}

.top_read .topblock {
	position: absolute;
	top: 30px;
	/*left: 300px;*/
	width: 100%;
	text-align: center;
	padding: 0 30px;
}

.top_read .topblock img {
	width: 100%;
	max-width: 982px;
	padding: 20px 0;
}

.top_read .top_bodyc {
	padding-top: 40px;
	font-size: 1.2rem;
	line-height: 2.2;
}

/* top news  */

.news {
	padding: 10px;
}

.news_box {
	width: 100%;
	max-width: 1160px;
	margin: 50px auto 60px;
	display: flex;
	flex-direction: row;
	/*justify-content: center;*/
	align-items: start;
}

.news_box h2 {
	font-size: 1.2rem;
	padding-left: 0px;
}

.news_inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	padding-left: 30px;
}

.bx-wrapper {
	order: 2;
	min-width: 500px;
	padding-left: 60px !important;
}
#topnews_list {
	margin: 0px 0 40px;
 }
.bx-viewport {
	height: 20px !important;
}

.bx-wrapper #topnews_list li {
	margin-top: 10px;
}
.bx-wrapper #topnews_list li:first-child {
	margin-top:0px;
}
.bx-wrapper  #topnews_list li .news_ttl {
	font-weight: bold;
	padding-left: 25px;
	max-width: 900px;
}



.custom-control {
	order: 1;
	display: flex;
	flex-direction: column;
	justify-content: baseline;
	padding: 0 15px;
}

.custom-prev,
.custom-next {
	font-size: 1.6rem;
	transform: rotate(90deg);
}

/*  top contents  */

#solution,
#business,
#quality {
	width: 100%;
}

.topcontents_imgs {
	background: url(/img/topcontents_bg.png) no-repeat center top;
	background-size: auto;
	padding: 0 30px 0;
}

.topcontents_imgs img {
	border-radius: 20px;
}

.topcontents_imgs .topcontents_inner {
	position: relative;
	height: 540px;
	max-height: 540px;
	margin: 100px auto 0;

}

.topcontents_imgs .topcontents_inner .img_a {
	position: absolute;
	left: 0;
	top: 0;
}

.topcontents_imgs .topcontents_inner .img_b {
	position: absolute;
	right: 0;
	bottom: 0;
}

.topcontents_imgs .topcontents_inner .img_c {
	position: absolute;
	left: 0;
	top: unset;
	bottom: 2%;
	width: 95%;
}

.topcontents_imgs_c {
	background: url(/img/topcontents_bg.png) no-repeat center bottom;
	background-size: auto;
	margin-top: 460px;
	padding: 0 30px 0;
}

.topcontents_imgs_c img {
	/*border-radius: 20px;*/
	width: 90%;
	position: absolute;
	top: -140%;
}

.topcontents_imgs_c .topcontents_inner {
	position: relative;
	height: 240px;
	max-height: 340px;
	margin: 100px auto 0;
}

.topcontents_imgs_c .topcontents_inner .img_c_box {
	position: absolute;
	left: 0;
	bottom: -10%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	/*max-width: 820px;*/
}

.topcontents_imgs_c .topcontents_inner .img_c_box img {
	width: 45%;
	margin: 0px 0;
}

.topcontents_imgs_c .topcontents_inner .img_c_box img:first-child {
	margin-left: 30px;
	margin-bottom: 30px;
}

.topcontents_imgs_c .topcontents_inner .img_c_box img:nth-child(2) {
	margin-top: 30px;
}

.topcontents_imgs_c .topcontents_inner .img_c_box img:nth-child(3) {
	margin-bottom: 30px;
}

.topcontents_imgs_c .topcontents_inner .img_c_box img:last-child {
	margin-right: 30px;
	margin-top: 30px;
}

.topcontents_inner {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 30px;
}

.topcontents_inner h2 {
	font-size: 3.8rem;
	margin: 40px 0 15px;
}

.topcontents_inner .contents_body {
	font-size: 1.2rem;
	line-height: 1.6;
	padding-left: 0px;
}

.top_contents_btn {
	padding-left: 0px;
	margin-top: 30px;
}

.top_contents_btn a {
	display: inline-block;
	position: relative;
	background: #004ea2;
	color: #fff;
	padding: 20px 80px;
	font-size: 1.1rem;
	border-radius: 30px;
	margin-top: 20px;
	margin-left: 20px;
}

.top_contents_btn a:first-child {
	margin-left: 0px !important;
}

.top_contents_btn a::before {
	content: "";
	background-image: url(/img/btn_arrow_a.svg);
	background-repeat: no-repeat;
	width: 15px;
	height: 8px;
	position: absolute;
	color: #fff;
	left: 21px;
	top: 44%;
}

/*-------------

下階層

----------------*/

body#field,
body#goods,
body#goods,
body#results,
body#quality,
body#recruit,
body#contact,
body#news {
	background: #e6f4fd;
}

.snd_page {
	text-align: center;
}

.snd_contents {
	margin: 0 auto;
	width: 100%;
	background-color: #fff;
	padding: 100px;
}

.snd_page h1 {
	margin: 90px auto 65px;
	display: inline-block;
	padding-bottom: 15px;
}

.snd_page h2 {
	margin: 0px auto 35px;
	display: block;
	font-size: 3.5rem;
	line-height: 1.8;
	padding-bottom: 15px;
	color: #004ea2;
}

.snd_contents img {
	max-width: 100%;
}

.snd_page .contents_body {
	color: #004ea2;
	font-size: 1.2rem;
}


#maingoods_snd .contact {
	margin-top: 0 !important;
}

/*  contact */

.contact {
	background-color: #004ea2;
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #fff;
	margin-top: 160px;
}

.contact_inner {
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
	padding: 80px 0;
	font-size: 1.4rem;
}

.contact .contact_btn a {
	margin: 30px 0 0;
	display: inline-block;
	border-radius: 50px;
	border: 3px #fff solid;
	padding: 15px 120px;
	color: #fff;
}


/*-------------

下階層

----------------*/

body#field,
body#maingoods,
body#goods,
body#results,
body#quality,
body#recruit,
body#contact,
body#news {
	background: #e6f4fd;
}

.snd_page {
	text-align: center;
}

.snd_contents {
	max-width: 1140px;
	width: auto !important;
	background-color: #fff;
}

#maing_head {
	text-align: center;
	font-size: clamp(24px, 2.8vw, 36px);
	line-height: 1.9;
	color: #004ea2;
	width: 100%;
}

.snd_page h1 {
	margin: 90px auto;
	display: inline-block;
	padding-bottom: 15px;
}

.snd_page h2 {
	margin: 0px auto 35px;
	display: block;
	font-size: 1.4rem;
	line-height: 1.8;
	padding-bottom: 15px;
	color: #004ea2;
}

.snd_contents img {
	max-width: 100%;
}

.snd_page .contents_body {
	color: #004ea2;
	font-size: clamp(15px, 1.3vw, 25px);
	line-height: 2.4;
}

#field_head {
	text-align: center;
	font-size: 2.1rem;
	border-bottom: 1px solid #004ea2;
	color: #004ea2;
	padding: 0 5px 15px;
}

#field h2 {
	font-size: clamp(15px, 3.5vw, 47px);
}

#field .contents_body {
	color: #000;
}

h1#company_head {
	margin: 60px 0 60px;
}

#company .snd_contents {
	max-width: 1180px;
}

#company .snd_contents h2 {
	margin-top: 60px;
	color: #000;
	text-align: left;
	font-size: 2.2rem;
}

#company .snd_contents .contents_body {
	text-align: left;
	color: #000;
	font-size: 1.0rem;
}

.snd_contents h2.linehead {
	color: #004ea2 !important;
	padding-bottom: 20px;

	border-bottom: 2px solid #004ea2;
	text-align: left;
	margin-top: 120px !important;
}

.snd_contents h3.linehead {
	color: #004ea2 !important;
	font-size: 1.4rem;
	padding-bottom: 20px;
	border-bottom: 2px solid #004ea2;
	text-align: left;
	margin-top: 60px !important;
}

#company img.topimg {
	width: 100%;
}

#quality .snd_contents h2,
#quality .snd_contents .contents_body {
	text-align: left;
}

#quality .snd_contents h2 {
	font-size: 2.2rem;
}

#quality .snd_contents .contents_body {
	font-size: 1.1rem;
	line-height: 1.8;
}

#quality .pic_box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 40px 0;
}

#quality .pic_box .img_box {
	max-width: 100%;
	margin-bottom: 40px;
	flex-basis: 32%;
	text-align: left;
}

#quality .pic_box .img_box img {
	width: 100%;
	margin-right: 0px;
}

/*#quality .pic_box .img_box:nth-of-type(3n) img{margin-right: 0px !important;}*/

#goods .snd_contents h2 {
	font-size: 1.9rem;
	text-align: left;
	margin-bottom: 80px;
}

#goods .snd_contents h3 {
	margin-bottom: 40px;
}

.goods_list {
	margin-bottom: 140px;
}

.goods_list li {
	padding: 30px 0;
	border-bottom: 1px solid #004ea2;
	display: grid;
	gap: 5px;
	grid-template-columns: 1fr 4fr;
	grid-template-rows: 1fr 2fr;
}

.goods_ttl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-height: 80px;
	order: 2;
	grid-column: 2;
	grid-row: 1;
}

.goods_img {
	order: 1;
	grid-column: 1/2;
	grid-row: 1/3;
	text-align: left;
}

.goods_dis {
	order: 3;
	grid-column: 2;
	grid-row: 2;
}

#goods .goods_ttl h4 {
	font-size: 1.8rem;
	line-height: 1.1;
	padding: 0 8px;
}

#goods .goods_ttl span img {
	padding-left: 10px;
	max-width: 100%;
}

#goods .goods_img img {
	max-width: 175px;
}

#goods .goods_dis {
	text-align: left;
	font-size: 1rem !important;
	color: #000;
	line-height: 1.6;
	padding: 0 8px;
}

#goods .goods_btn {
	order: 4;
	grid-row: 3/3;
	grid-column: 1/3;
	display: flex;
	flex-flow: row wrap;
	justify-content: start;
	align-items: center;
}

#goods .goods_btn a img {
	max-width: 100%;
}

#results img.topimg {
	width: 100%;
}

#results .sub_hImg {
	width: 100%;
	margin: 0 0 40px;
}

body#maingoods_snd {
	background: linear-gradient(90deg, #fff 0%, #fff 22%, #e6f4fd 22%, #e6f4fd 100%);
}

#maingoods img.topimg {
	max-width: 1280px;
	margin-bottom: 80px;
}

#maingoods a.maplink:hover {
	opacity: 1;
}

#mgoods_map {
	position: relative;
}

#mgoods_map #btn_a {
	position: absolute;
	top: -2%;
	left: 31%;
}

#mgoods_map #btn_b {
	position: absolute;
	top: 27%;
	left: 67%;
}

#mgoods_map #btn_c {
	position: absolute;
	top: 42%;
	left: 29.5%;
}

#mgoods_map #btn_d {
	position: absolute;
	top: 50%;
	left: 55%;
}

#maingoods .btn_bound {
	opacity: 1;
	-webkit-transition: all .5s ease-in 3s;
	transition: all .5s ease-in 3s;
}

#maingoods .btn_bound img {
	max-width: 60px;
	width: 10vw;

}

.btn_bound {
	display: block;
	z-index: 2;
	-webkit-animation: bounce 2s infinite 2s;
	animation: bounce 2s infinite 2s;
	-webkit-transition: all .2s ease-in;
	transition: all .2s ease-in;
	transform: scale(1)
}

@keyframes bounce {

	0%,
	100%,
	20%,
	50%,
	80% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}

	40% {
		-webkit-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	60% {
		-webkit-transform: translateY(-5px);
		-ms-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

#maingoods #mgood_box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1100px;
}

#maingoods #mgood_box a {
	display: block;
	width: 47%;
}

#maingoods #mgood_box .mgoods_block {
	width: 100%;
	min-height: 580px;
	background: #fff;
	border-radius: 8px;
	padding: 40px;
	margin-bottom: 60px;
	text-align: left;
}

#maingoods #mgood_box .mgoods_block .imgbox {
	width: 100%;
	text-align: center;
}

#maingoods #mgood_box .mgoods_block img {
	width: 100%;
	max-width: 300px;
	margin-bottom: 15px;
}

#maingoods #mgood_box .mgoods_block .sub_read {
	font-size: 1.2rem;
	padding: 15px 0 20px;
}

#maingoods #mgood_box .mgoods_block .text {
	font-size: 1.05rem;
	padding: 13px 0;
	border-top: #000 1px dotted;
}

#maingoods #mgood_box #road_block {
	box-shadow: 0 12px #edbe2a;
}

#maingoods #mgood_box #road_block h2 {
	color: #edbe2a;
	font-size: 2.6rem;
	padding: 0;
	margin: 0;
}

#maingoods #mgood_box #bridge_block {
	box-shadow: 0 12px #9dab1f;
}

#maingoods #mgood_box #bridge_block h2 {
	color: #9dab1f;
	font-size: 2.6rem;
	padding: 0;
	margin: 0;
}

#maingoods #mgood_box #railway_block {
	box-shadow: 0 12px #ab7632;
}

#maingoods #mgood_box #railway_block h2 {
	color: #ab7632;
	font-size: 2.6rem;
	padding: 0;
	margin: 0;
}

#maingoods #mgood_box #other_block {
	box-shadow: 0 12px #f09192;
}

#maingoods #mgood_box #other_block h2 {
	color: #f09192;
	font-size: 2.6rem;
	padding: 0;
	margin: 0;
}


.snd_content_mgoods {
	max-width: 1190px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	min-height: 100%;
}

.snd_content_mgoods .lnav {
	flex-basis: 25%;
	background-color: #fff;
	min-height: 100%;
	text-align: left;
	position: relative;
}

.snd_content_mgoods .lnav .mg_accordion {
	position: absolute;
	width: 100%;
	max-width: 240px;
	background-color: #fff;
	z-index: 0;
	transition: 0.9s;
	top: 0px;
}

.snd_content_mgoods .r_box {
	flex-basis: 75%;
	height: 100%;
	text-align: left;
	padding: 40px 40px 120px;
	margin-top: 0px;
}

.snd_content_mgoods .lnav p.head {
	font-size: 2.2rem;
	width: 100%;
	color: #004ea2;
	padding: 30px 0 5px;
	margin: 0;
}

.snd_content_mgoods .lnav span.ex_txt {
	font-size: 0.9rem;
	color: #004ea2 !important;
	font-weight: normal !important;
	line-height: 1.4;
	position: absolute;
	margin-top: 15px;
}

.snd_content_mgoods .lnav ul {
	display: flex;
	flex-direction: column;
	padding: 15px 0 0;
}

.snd_content_mgoods .lnav ul li a {
	display: inline-block;
	padding: 5px 6px;
	border-radius: 40px;
	border: #004ea2 2px solid;
	background-color: #fff;
	color: #004ea2;
	text-align: center;
	max-width: 160px;
	width: 100%;
	margin-bottom: 12px;
}

.snd_content_mgoods .lnav ul li a:hover {
	border: #004ea2 2px solid;
	background-color: #004ea2;
	color: #fff;
	opacity: 1;
}

.snd_content_mgoods .lnav p a {
	font-size: 0.7rem;
	color: #004ea2;
}

.snd_content_mgoods .lnav p.back_mgtop {
	display: inline-block;
}

.snd_content_mgoods .r_box h3 {
	padding: 15px 0;
	font-size: 1.6rem;
	color: #000;
	border-bottom: 1px #000 solid;
	margin-bottom: 50px;
}

.snd_content_mgoods .r_box ul {
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	max-width: 860px;
	width: 860px;
}

.snd_content_mgoods .r_box ul li {
	flex-shrink: 0;
	flex-grow: 1;
}

.snd_content_mgoods .r_box h4 {
	padding: 8px;
}

.snd_content_mgoods .r_box .item_box {
	/*display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;*/
	max-width: 840px;
	width: auto;
}

.snd_content_mgoods .r_box img {
	/*flex-basis: 45%;
	max-width: 100%;*/
	max-width: 400px;
}

.snd_content_mgoods .r_box .item_box img:nth-child(2n) {
	margin-left: 26px;
}

#maingoods_snd .contact {
	margin-top: 0 !important;
	position: relative;
	z-index: 90;
}


.mg_accordion p.acc_btn {
	position: relative;
	padding: 0 0 15px;
	width: 100%;
	background-color: #fff;
	color: #004ea2;
	font-size: 2.2rem;
	font-weight: bold;
	text-align: left;
	cursor: none;
	margin-bottom: 15px;
	pointer-events: none;
}

.mg_accordion p.acc_btn::after {
	position: absolute;
	content: "";
	background: none;
	width: 22px;
	height: 13px;
	right: 20px;
	top: 38%;
}

.mg_accordion p.acc_btn.open::after {
	position: absolute;
	content: "";
	background: none;
	width: 22px;
	height: 13px;
	right: 20px;
	top: 38%;
}

.mg_answer {
	padding: 30px 0 10px;
	background-color: #fff;
	max-width: 100%;
	text-align: left;
	color: #004ea2;
	display: block;
}

.mg_answer p {
	background: none;
}

/*

news css

*/

#news_head {
	text-align: center;
	font-size: 2.1rem;
	border-bottom: 1px solid #004ea2;
	color: #004ea2;
	padding: 0 5px 15px;
}

#news h2 {
	font-size: clamp(15px, 3.5vw, 47px);
}

#news .contents_body {
	color: #000;
}

#news ul.news_list li {
	border-bottom: #ccc solid 1px;
	text-align: left;
	display: flex;
	flex-direction: row;
	padding: 40px 0;
}

#news ul.news_list li .date {
	padding-right: 20px;
}

#news ul.news_list li a {
	color: #004ea2;
	text-decoration: underline;
}

#contact h1 {
	display: inline-block;
	margin: 70px 0 80px;
}

#contact .read_txt {
	text-align: center;
	padding: 60px;
	font-size: 2.2rem;
	color: #004ea2;
	margin-bottom: 60px;
}

#contact h2 {
	color: #000;
	padding: 0px 0 20px;
	border-bottom: #000 1px solid;
	text-align: left;
}

#tel .telnum_box {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	padding: 25px;
	background-color: #e6f4fd;
	color: #000;
}

#tel .telnum_box .tel_num {
	font-size: 2.0rem;
}

#tel .telnum_box .tel_time {
	font-size: 1.1rem;
	padding-left: 30px;
}

#form .form_read {
	text-align: left;
	margin-bottom: 50px;
}

#form dl {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	text-align: left;
}

#form dt,
#form dd {
	padding: 18px;
}

#form dt {
	flex-basis: 30%;
	color: #000;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	white-space: nowrap;
}

#form dt.al_top {
	flex-basis: 30%;
	color: #000;
	font-size: 1.2rem;
	display: flex;
	align-items: flex-start;
}

#form dd {
	flex-basis: 70%;
}

#form dt span.must {
	border: 1px #e60012 solid;
	padding: 2px 5px;
	color: #e60012;
	font-size: 1.0rem;
	margin-right: 20px;
	margin-left: 0px;
	white-space: nowrap;
}

#form input,
#form textarea {
	background-color: #f7f8f8;
	padding: 30px;
	border-radius: 10px;
	width: 100%;
	max-width: 100%;
	font-size: 1.0rem;
}

input[type=radio] {
	display: none;
}

.radio01 {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 5px 50px;
	position: relative;
	width: auto;
	font-size: 1.1rem;
	color: #000;
}

.radio01::before {
	background: #efefef;
	border: none;
	border-radius: 50%;
	content: '';
	display: block;
	height: 30px;
	left: 5px;
	margin-top: 0;
	position: absolute;
	top: 11px;
	width: 30px;
}

.radio01::after {
	background: #004ea2;
	border-radius: 50%;
	content: '';
	display: block;
	height: 16px;
	left: 12px;
	margin-top: 0;
	opacity: 0;
	position: absolute;
	top: 18px;
	width: 16px;
}

input[type=radio]:checked+.radio01::after {
	opacity: 1;
}

input[type=checkbox] {
	display: none;
}

.checkbox01 {
	box-sizing: border-box;
	cursor: pointer;
	display: inline-block;
	padding: 5px 30px;
	position: relative;
	width: auto;
	font-size: 1.2rem;
	color: #000;
}

.checkbox01::before {
	background: #fff;
	border: 1px solid #231815;
	content: '';
	display: block;
	height: 16px;
	left: 5px;
	margin-top: -8px;
	position: absolute;
	top: 50%;
	width: 16px;
}

.checkbox01::after {
	border-right: 3px solid #ed7a9c;
	border-bottom: 3px solid #ed7a9c;
	content: '';
	display: block;
	height: 9px;
	left: 10px;
	margin-top: -7px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: rotate(45deg);
	width: 5px;
}

input[type=checkbox]:checked+.checkbox01::after {
	opacity: 1;
}

.form_btn {
	display: inline-block;
	border-radius: 6px;
	font-size: 1.4rem;
	text-align: center;
	cursor: pointer;
	padding: 25px 220px;
	background: #004ea2;
	color: #ffffff;
	transition: .3s;
	border: 2px solid #004ea2;
	margin-top: 60px;
}

.form_btn:hover {
	color: #004ea2;
	background: #ffffff;
}


.pt_top_box {
	width: 100%;
	text-align: center;
	background: url(/img/contact/pt_top_img.jpg) top no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 870px;
	color: #fff;
}

.pt_top_box h1 {
	font-size: 5rem;
	margin: 20px 0 !important;
}

.pt_top_box .pt_read {
	font-size: 1.8rem;
}


#contact .contact_contents {
	max-width: 900px;
	text-align: left;
	width: 100%;
	margin: 0 auto;
	padding: 100px 0;
}

#contact .contact_contents_blue {
	max-width: 1080px;
	text-align: left;
	width: 100%;
	margin: 0 auto;
	padding: 100px;
	background-color: #03b8df;
	color: #fff;
	margin-bottom: 60px;
}

#contact .contact_contents_last {
	max-width: 900px;
	text-align: left;
	width: 100%;
	margin: 0 auto;
	padding: 5px 0 90px;
}

#contact .main_read {
	font-size: 3.4rem;
	color: #000;
	border-bottom: #004ea2 3px solid;
	display: inline;
	padding-bottom: 10px;
	line-height: 2;
	text-align: left;
}

#contact .sub_read {
	font-size: 1.1rem;
	margin: 30px 0 40px;
}

#contact .pt_app {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#contact .pt_app .w_box {
	background: #fff;
	border-radius: 6px;
	padding: 20px;
	width: 100%;
	text-align: center;
	font-size: 1.2rem;
	margin: 15px 0 15px;
}

#contact .pt_app p {
	font-size: 1.2rem;
}

.b_box_mainread {
	font-size: 3.3rem;
	padding-bottom: 30px;
}

.b_box_subread {
	font-size: 1.0rem;
	padding-bottom: 30px;
}

.b_box_ex_list {
	font-size: 1.3rem;
	padding-bottom: 30px;
	line-height: 1.8;
}

.last_read {
	font-size: 2.8rem;
	color: #004ea2;
	text-align: left;
	padding: 0 0 50px;
}

.last_read_sub {
	font-size: 1.2rem;
	padding: 0 0 15px;
}

.last_read_p {
	font-size: 1rem;
	padding: 0 0 15px;
}


/* フッタ */
footer {
	width: 100%;
	background-color: #fff;
	padding-top: 60px;
	position: relative;
	z-index: 99;
}

footer>.foot_inner {
	max-width: 1100px;
	margin: 0 auto 0px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	text-align: left;
	padding: 0 30px;
}

.foot_lbox {
	order: 1;
}

.foot_rbox {
	text-align: left;
	order: 2;
}

.foot_lbox ul {
	display: flex;
	max-width: 600px;
	flex-direction: row;
	flex-wrap: wrap;
}

.foot_lbox ul li {
	border-bottom: 1px #ccc solid;
	padding: 15px;
	margin-right: 20px;
	min-width: 146px;
}

.foot_id {
	text-align: left;
	font-size: 0.7rem;
	color: #727171;
	padding: 40px 0 30px;
}

/* フッタ ここまで */



/* table */
.snd_contents table.tbl_a {
	margin: 30px 0;
}

.snd_contents table.tbl_a th,
.snd_contents table.tbl_a td {
	border: none;
	padding: 5px 10px;
	text-align: left;
	font-size: 1.1rem;
	display: table-cell;
}

.snd_contents table.tbl_a th {
	font-weight: bold;
	white-space: nowrap;
}

.snd_contents table.justify_head th {
	text-align: justify;
	text-align-last: justify;
	text-justify: inter-ideograph;
}


.snd_contents table.tbl_a td {
	font-weight: normal;
	padding-left: 30px;
	margin-bottom: 0;
}

.snd_contents table.tbl_b {
	margin: 30px 0;
	width: 100%;
}

.snd_contents table.tbl_b tr {
	width: 100%;
	border-bottom: #004ea2 2px solid;
}

.snd_contents table.tbl_b th,
.snd_contents table.tbl_b td {
	border: none;
	padding: 20px 10px;
	text-align: left;
	font-size: 1.3rem;
	display: table-cell;
}

.snd_contents table.tbl_b th {
	font-weight: bold;
	white-space: nowrap;
	text-align: justify;
	text-align-last: justify;
	text-justify: inter-ideograph;
}

.snd_contents table.tbl_b td {
	padding-left: 30px;
	font-weight: normal;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1rem;
}

.snd_contents table.tbl_b td span a {
	background: #eaeff9;
	border-radius: 20px;
	padding: 20px 20px 20px 60px;
	position: relative;
	color: #004ea2;
	white-space: nowrap;
}

.snd_contents table.tbl_b td span a::before {
	content: "";
	background-image: url(/img/map_ico.svg);
	background-repeat: no-repeat;
	width: 24px;
	height: 30px;
	position: absolute;
	color: #fff;
	left: 21px;
	top: 32%;
}




/*  DL  */

.dl_a {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	text-align: left;
	margin-top: 40px;
}

.dl_a dt,
.dl_a dd {
	padding: 8px;
	/*border-bottom: 1px #004ea2 solid;*/
}

.dl_a dt {
	flex-basis: 25%;
}

.dl_a dd {
	flex-basis: 75%;
	padding-bottom: 8px;
}

.snd_contents table.tbl_a .dl_a {
	margin: 0;
	flex-direction: row;
}

.snd_contents table.tbl_a .dl_a dt {
	flex-basis: 20%;
}

.snd_contents table.tbl_a .dl_a dd {
	flex-basis: 80%;
	padding-bottom: 8px;
}

.snd_contents table.tbl_a .dl_a {
	margin: 0;
}

.snd_contents table.tbl_a .dl_a dt,
.snd_contents table.tbl_a .dl_a dd {
	padding: 0 0 6px;
}



/* accoudion */
.accordion p.acc_btn {
	position: relative;
	padding: 15px;
	width: 100%;
	background-color: #004ea2;
	color: #fff;
	font-size: 1.1rem;
	text-align: left;
	cursor: none;
	margin-bottom: 15px;
	pointer-events: none;
}

.accordion p.acc_btn::after {
	position: absolute;
	content: "";
	background: none;
	width: 22px;
	height: 13px;
	right: 20px;
	top: 38%;
}

.accordion p.acc_btn.open::after {
	position: absolute;
	content: "";
	background: none;
	width: 22px;
	height: 13px;
	right: 20px;
	top: 38%;
}

.answer {
	padding: 10px 20px;
	background-color: #fff;
	max-width: 100%;
	margin: auto;
	text-align: left;
	color: #000;
	display: block;
}

.answer p {
	background: none;
	font-size: 1.0rem;
}

.answer ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 30px 0;
}

.answer ul li {
	font-size: 1.0rem;
	flex-basis: 48%;
}


#goods .accordion p.acc_btn {
	cursor: pointer !important;
	pointer-events: all;
	padding: 5px 30px;
	width: 100%;
	font-size: 1.1rem;
	border-radius: 30px;
}

#goods .accordion p.acc_btn::after {
	background: url(/img/ar_down_ico.svg) no-repeat;
	left: 140px;
	right: unset;
}

#goods .accordion p.acc_btn.open::after {
	background: url(/img/ar_up_ico.svg) no-repeat;
}

#goods .accordion .answer {
	display: none;
}

#goods .accordion dl dt {
	font-size: 1.1rem;
	padding: 6px 0 0;
	font-weight: bold;
	color: #231815;
}

#goods .accordion dl dd {
	font-size: 1.1rem;
	padding: 0px;
}

#goods .accordion dl dd a {
	color: #00a0e9;
	text-decoration: underline;
}