@charset "utf-8";
/* ------------------------------
   共通
------------------------------ */
*:before, *:after {
	box-sizing: border-box;
}

html, body, header, article, section, footer, div, ol, ul, li, dl, dt, dd, h1, h2, h3, h4, h5, p, a, figure, img, hr {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: 'Lucida Grande','Hiragino kaku Gothic ProN', Meiryo, sans-serif;
	width: 100%;
	background: #F5F5F5;
	color: #3C3F3F;
	font-size: 1.4rem;
	line-height: 24px;
	margin: 60px auto 0 auto;
}

header, article, section, footer {
	width: 100%;
}

article {
	text-align: center;
}

/* h1 {} */

h2 {
	font-size: 1.4rem;
	font-weight: normal;
	padding: 40px 0 16px 0;
}

h2 span {
	font-size: 3.2rem;
	font-weight: 600;
	line-height: 56px;
	color: #0090C9;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.6rem;
}

img {
	display: block;
	width: 100%;
	margin: 0 auto;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover ,.hover:hover {
	opacity: 0.8;
}

a img {
	display: block;
}

a p {
	text-align: center;
}

.note {
	font-size: 1.0rem;
	line-height: 18px;
}

/* hr {} */

.br_530-900 ,.br_900 ,.br_1000 ,.br_1150 {
	display: none;
}

/**
 * MediaQuery Break Point
 *      - 479	：スマホ(縦)
 *  480 - 767	：スマホ(横)・タブレット
 *  768 - 		：タブレット・PC
**/
@media screen and (min-width: 530px) {
	.br_530-900 {
		display: block;
	}
}
@media screen and (min-width: 570px) {
	.br_570-768-1000 {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	body {
		font-size: 1.6rem;
		line-height: 26px;
	}
	h2 {
		font-size: 1.6rem;
		padding: 56px 0 16px 0;
	}
	h2 span {
		font-size: 4rem;
		line-height: 96px;
	}
	h3 {
		font-size: 2.2rem;
	}
	h4 {
		font-size: 1.8rem;
	}
	.note {
		font-size: 1.2rem;
		line-height: 22px;
	}
	.br_570-768-1000 {
		display: block;
	}
}
@media screen and (min-width: 900px) {
	.br_530-900 {
		display: none;
	}
	.br_900 {
		display: block;
	}	
}
@media screen and (min-width: 1000px) {
	.br_570-768-1000 {
		display: none;
	}
	.br_1000 {
		display: block;
	}	
}
@media screen and (min-width: 1150px) {
	.br_1150 {
		display: block;
	}	
}



/* ------------------------------
   ヘッダー
------------------------------ */
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}

.header_wrap {
	font-size: 1.6rem;
	width: 100%;
	z-index: 999;
	height: 60px;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
	background-color: #ffffff;
}

.header_wrap a:hover {
	opacity: 1;
}

.header_wrap img {
	width: 180px;
	margin: 0;
	padding: 10px 0 0 10px;
}

.hamb_icon {
	/* background: transparent; */
	position: relative;
	cursor: pointer;
	margin: 0 0 0 auto;
	height: 60px;
	width: 60px;
}

.hamb_icon span {
	position: absolute;
	left: 16px;
	width: 30px;
	height: 3px;
	background-color: #0090C9;
	border-radius: 3px;
	transition: all 0.4s ease;
}

.hamb_icon span:nth-of-type(1) {
	top: 17px;
}
.hamb_icon span:nth-of-type(2) {
	top: 29px;
}
.hamb_icon span:nth-of-type(3) {
	bottom: 16px;
}

.hamb_icon.active span:nth-of-type(1) {
	transform: rotate(45deg);
	top: 28px;
}
.hamb_icon.active span:nth-of-type(2) {
	opacity: 0;
}
.hamb_icon.active span:nth-of-type(3) {
	transform: rotate(-45deg);
	top: 28px;
}

.header_sp_mask {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(60,63,63,0.7);
	top: 60px;
	left: 0;
	z-index: 990;
	transition: all 0.3s;
}

.header_sp_mask.bg-active{
	display: block;
	transition: all 0.3s;
}

#hamb-nav {
	position: fixed;
	z-index: 995;
	color: #ffffff;
	background-color: #0090C9;
	font-size: 2rem;
	line-height: 72px;
	width: 100%;
	top: -120%;
	padding: 32px 0;
	transition: all 1.5s ease;
}

#hamb-nav.panel-active {
	width: 100%;
	top: 60px;
	transition: all 0.75s ease;
}

.header_sp ul ,.header_pc ul {
	list-style-type: none;
	font-weight: 600;
}

.header_sp ul li ,.header_pc ul li {
	text-align: center;
}

.header_pc {
	display: none;
}
  
@media screen and (min-width: 768px) {
	.header_center {
		position: fixed;
		z-index: 998;
		top: 0;
		left: 0;
		background-color: #ffffff;
		width: 100%;
		height: 60px;
	}
	.header_wrap {
		position: static;
	}
	#header-hamb ,.header_sp {
		display: none;
	}
	.header_pc {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		width: 100%;
	}
	.header_pc ul {
		display: flex;
		justify-content: flex-end;
		font-size: 1.4rem;
		width: 70%;
	}
	.header_pc ul li {
		width: 25%;
		min-width: 120px;
		margin: 0 5%;
		padding-top: 8px;
		border-bottom: 4px solid transparent;
	}
	.header_pc ul li a {
		display: block;
		width: 100%;
	}
	.header_pc ul li:hover {
		border-bottom: 4px solid #0090C9;
	} 
}



/* ------------------------------
   フッター
------------------------------ */
footer {
	background-color: #1D4366;
}

.footer_wrap {
	font-size: 1.2rem;
	text-align: center;
	color: #ffffff;
}

.footer_wrap ul {
	list-style-type: none;
	margin: 0 auto;
	line-height: 40px;
	padding: 16px 0;
}

.footer_wrap ul li a {
	border-bottom: 1px #ffffff solid;
}

.footer_wrap p {
	line-height: 40px;
}

@media screen and (min-width: 480px) {
	.footer_wrap ul {
		display: flex;
		justify-content: center;
		line-height: 1;
		padding: 24px 0 16px 0;
	}
	.footer_wrap ul li {
		border-left: 1px #ffffff solid;
		padding: 0 16px;
	}
	.footer_wrap ul li a {
		border-bottom: none;
	}
	.footer_wrap li:first-child{
		border: none;
	}
}

@media screen and (min-width: 768px) {
	.footer_wrap ul li {
		padding: 0 40px;
	}
}



/* ------------------------------
   トップページ
------------------------------ */
/*　トップ ファーストビュー　*/
.topmain_bg {
	background-image: url(../image/topmain_sp.png);
	background-size:cover;
	background-repeat: no-repeat;
	background-position: center;
}

.topmain_text {
	padding: 80px 0;
}

.topmain_text1 ,.topmain_text2 {
	max-width: 400px;
	margin: 0 auto;
	padding: 32px 16px;
	animation-name: blur;
	animation-duration: 1.2s;
	animation-fill-mode: forwards;
}

.topmain_text2 {
	opacity: 0;
	animation-delay: 0.7s;
}

@keyframes blur{
	from {
		filter: blur(50px);
	}
  
	to {
		filter: blur(0) drop-shadow(0 0 5px rgba(8, 77, 161, 1));
		transform: scale(1);
		opacity: 1;
	}
}

#first-view p {
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 30px;
	padding: 32px 16px;
}

/*　トップ 提供サービス　*/
#our-services {
	background-color: #DCF0F7;
}

.ours_wrap {
	padding: 0 16px;
}

#container {
	margin: 0 auto;
	width: 100%;
}

#ours-tab-acdi {
	margin: 0 auto;
	width: 100%;
	height: auto;
	position: relative;
}

#ours-tab-acdi dl {
	top: auto;
	left: auto;
	width: 100%;
	position: relative;
	margin-bottom: 56px;
}

#ours-tab-acdi dl dt {
	top: auto;
	left: auto;
	width: 100%;
	position: relative;
}

.ours_acdi_icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	/* background-color: #0090C9; */
	border-radius: 50px;
	margin: 0 auto;
}
.ours_acdi_icon:hover {
	opacity: 0.8;
}
.ours_acdi_icon_1 {
	background-color: #DCF0F7;
}
.ours_acdi_icon_1.block ,.ours_acdi_icon_2 {
	background-color: #0090C9;
}

.ours_acdi_icon_1.bg8A ,.ours_acdi_icon_2.bg8A {
	background-color: #8ACCE6;
	opacity: 1;
}

.ours_acdi_icon_js.ours_acdi_1 .ours_acdi_icon {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.ours_acdi_icon i {
	display: block;
	width: 25px;
	height: 25px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transform-origin: center center;
	transition-duration: 0.2s;
	position: relative;
}
.ours_acdi_icon_js.ours_acdi_1 .ours_acdi_icon i {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.ours_acdi_icon_js.ours_acdi_1.open .ours_acdi_icon i {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.ours_acdi_icon_js.open .ours_acdi_icon {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.ours_acdi_icon_js.ours_acdi_1.open .ours_acdi_icon {
	-webkit-transform: rotate(45eg);
	transform: rotate(45deg);
}
.ours_acdi_icon i::before ,.ours_acdi_icon i::after {
	display: flex;
	content: '';
	background-color: #ffffff;
	width: 25px;
	height: 3px;
	position: absolute;
	top: 11px;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transform-origin: center center;
}
.ours_acdi_icon i::before {
	width: 3px;
	height: 25px;
	top: 0;
	left: 11px;
}
.ours_acdi_icon_js.ours_acdi_1 .ours_acdi_icon i::before {
	content: none;
}
.ours_acdi_icon_js.open .ours_acdi_icon i::before {
	content: none;
}
.ours_acdi_icon_js.ours_acdi_1.open .ours_acdi_icon i::before {
	content: "";
}
.ours_acdi_icon_js.open .ours_acdi_icon i:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.ours_acdi_icon_js.ours_acdi_1.open .ours_acdi_icon i:after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.ours_acdi_icon_def {
	z-index: 900;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 0;
	left: 0;
	width: 50px;
	height: 50px;
	background-color: #8ACCE6;
	border-radius: 50px;
	margin: 0 auto;
}
.ours_acdi_icon_def i {
	display: block;
	width: 25px;
	height: 25px;
	position: relative;
}
.ours_acdi_icon_def i::before {
	display: flex;
	content: '';
	background-color: #ffffff;
	position: absolute;
	width: 25px;
	height: 3px;
	top: 11px;
	left: 0;
}
.ours_acdi_icon_def.none {
	display: none;
	transition-duration: 0.2s;
}

#ours-tab-acdi dl dt a {
	padding: 0 20px;
	height: auto;
	display: block;
	-moz-transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	transition: all 0.2s linear;
	opacity: 1;
}

#ours-tab-acdi dl dd {
	top: auto;
	left: auto;
	width: 100%;
	height: auto;
	position: relative;
}

.ours_title {
	margin-bottom: 16px;
}

.ours_title img {
	width: 140px;
	margin: 0 auto 16px auto;
}

.ours_title h3 {
	line-height: 56px;
}

.ours_sub {
	position: relative;
	padding: 8px 16px 24px 16px;
	margin: 40px auto;
}

.ours_sub::before {
	content: '';
	position: absolute;
	z-index: 1;
	width: 30px; 
	height: 30px;
	top: -15px; 
	left: 50%;
	transform: translateX(-50%) rotate(45deg) skew(3deg,3deg);
}
.ours_sub::after {
	content: '';
	position: absolute;
	z-index: 2;
	top: 0; 
	left: 0;
	width: 100%; 
	height: 100%;
}
.ours_sub > * {
	position: relative;
	z-index: 3;
}
.ours_sub ,.ours_sub::before {
	box-shadow: 0 0 15px 0 rgba(0,144,201,0.4);
}
.ours_sub ,.ours_sub::before ,.ours_sub::after {
	background: #ffffff;
}
  
.ours_sub h4 {
	line-height: 40px;
	margin-top: 12px;
}

.ours_sub_const {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.ours_sub_l ,.ours_sub_r {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 8px;
	padding: 8px;
}

.ours_sub_l {
	width: 40%;
	background-color: #4CB5DC;
	color: #ffffff;
	font-weight: 600;
	border-radius: 10px 0 0 10px;
}
  
.ours_sub_r {
	width: 60%;
	background-color: #F5F5F5;
	text-align: left;
	border-radius: 0 10px 10px 0;
}

.ours_sub ul li {
	display: inline-block;
	list-style-type: none;
	color: #0090C9;
	font-weight: 600;
	border: 1px #0090C9 solid;
	border-radius: 10px;
	margin: 0 4px 8px 0;
	padding: 3px 8px 2px 8px;
}

.ours_contact {
	color: #ffffff;
	background: linear-gradient(90deg, #0090C9, #8ACCE6);
	font-size: 1.6rem;
	line-height: 26px;
	padding: 32px 24px;
}

.ours_contact_btn {
	position: relative;
	border:  1px solid #ffffff;
	width: 320px;
	margin: 24px auto 8px auto;
}

.ours_contact_btn:hover {
	background-color: #0090C9;
}

.ours_contact_btn a:hover {
	opacity: 1;
}

.ours_contact_btn p {
	line-height: 56px;
}

.ours_contact_btn img {
	position: absolute;
	width: 24px;
	top: 16px;
	right: 16px;
}


/*　トップ 事業紹介　*/
#solution {
	padding: 16px 16px 32px 16px;
}

.solution_desc {
	font-size: 1.6rem;
	line-height: 26px;
	margin-bottom: 32px;
}

.solution_wrap {
	background-color: #ffffff;
	max-width: 660px;
	margin: 0 auto 32px auto;
	box-shadow: 8px 8px 0 rgba(0, 144, 201)
}

.solution_img img {
	height: 100%;
	object-fit: cover;
}

.solution_text {
	padding: 16px;
}

.solution_p h3 ,.solution_p p {
	text-align: left;
}

.solution_p h3 {
	line-height: 32px;
}

.solution_p p {
	font-size: 1.4rem;
	line-height: 24px;
	margin-bottom: 8px;
}

.solution_btn {
	display: flex;
	justify-content: center;
	color: #0090C9;
	font-weight: 600;
	border:  1px solid #0090C9;
	border-radius: 8px;
	width: 180px;
	margin: auto 0 0 auto;
	padding: 6px 0 5px 0;
}

.solution_btn img {
	width: 18px;
	margin: 0 0 0 6px;
}


/*　トップ 地図　*/
#top-map {
	background-color: #1D4366;
	color: #ffffff;
	border-bottom:  2px solid #ffffff;
}

.topmap_wrap {
	max-width: 660px;
	margin: 0 auto;
	padding: 56px 16px;
}

.topmap_text {
	text-align: left;
	margin-bottom: 8px;
}

.topmap_text img {
	max-width: 430px;
	margin: 0;
}

.topmap_text ul li {
	list-style-type: none;
}

.topmap_text ul {
	padding: 8px 0;
}

.topmap_btn a {
	display: none;
}


/*　トップ レスポンシブ　*/
@media screen and (min-width: 600px) {
	.ours_sub_l {
		width: 30%;
	}
	.ours_sub_r {
		width: 70%;
	}
}

@media screen and (min-width: 768px) {
	.topmain_bg {
		background-image: url(../image/topmain_pc.png);
		background-size:cover;
		background-repeat: no-repeat;
		background-position: center;
	}
	.topmain_text {
		padding: 100px 0;
	}
	.topmain_text1 ,.topmain_text2 {
		filter: drop-shadow(0 0 8px rgba(8, 77, 161, 1));
		padding: 24px 16px;
	}
	.topmain_text1 {
		width: 55%;
		max-width: 550px;
	}
	.topmain_text2 {
		max-width: 1150px;
	}
	#first-view p {
		font-size: 2rem;
		line-height: 36px;
		padding: 48px 16px;
	}
	#ours-tab-acdi ,#ours-tab-acdi.h1500 {
		height: 1500px;
	}
	#ours-tab-acdi.h700 {
		height: 700px;
	}
	#ours-tab-acdi ,#ours-tab-acdi dl {
		max-width: 1120px;
	}
	#ours-tab-acdi dl {
		top: 0;
		left: 0;
		position: absolute;
	}
	#ours-tab-acdi dl dt {
		top: 0;
		left: 0;
		width: 50%;
		position: absolute;
	}
	#ours-tab-acdi dl:nth-child(2) dt {
		left: 50%;
	}
	#ours-tab-acdi dl dd {
		padding: 0;
		top: 450px;
	}
	.ours_title h3 {
		line-height: 72px;
	}
	.ours_title img {
		width: 170px;
	}
	.ours_sub {
		padding: 16px 24px 32px 24px;
		margin: 0 auto;
	}
	.ours_sub h4 {
		line-height: 48px;
		margin-top: 16px;
	}
	.ours_sub::before {
		left: 25%;
	}
	#ours-tab-acdi dl:nth-child(2) dd .ours_sub::before {
		left: 75%;
	}
	.ours_sub_l ,.ours_sub_r {
		margin-bottom: 12px;
		padding: 8px 16px;
	}
	.ours_contact_flex {
		display: flex;
		justify-content: space-between;
		align-items: center;
		max-width: 1000px;
		margin: 0 auto;
	}
	.ours_contact_flex > p {
		font-size: 1.8rem;
		line-height: 32px;
		text-align: left;
	}
	.ours_contact_btn {
		font-size: 1.8rem;
		width: 360px;
		margin: 16px 0;
	}
	.ours_contact_btn p {
		line-height: 88px;
	}
	.ours_contact_btn img {
		top: 30px;
	}
	#solution {
		padding: 24px 24px 40px 24px;
	}
	.solution_desc {
		margin-bottom: 48px;
	}
	.solution_wrap {
		margin: 0 auto 48px auto;
		box-shadow: 14px 14px 0 rgba(0, 144, 201)
	}
	.solution_p h3 {
		line-height: 32px;
		margin-bottom: 4px;
	}
	.solution_btn {
		width: 200px;
		padding: 8px 0 7px 0;
	}
	.topmap_wrap {
		padding: 40px 0;
	}
	.topmap_text ul {
		padding: 12px 0;
	}
	.topmap_btn a {
		display: block;
		text-align: center;
		font-weight: 600;
		color: #ffffff;
		border: 2px solid #ffffff;
		border-radius: 10px;
		padding: 6px 0 5px 0;
		margin-bottom: 32px;
	}
	.topmap_btn a:hover {
		color: #1D4366;
		background-color: #ffffff;
		opacity: 1;
	}
}

@media screen and (min-width: 800px) {
	#ours-tab-acdi ,#ours-tab-acdi.h1500 {
		height: 1420px;
	}
}

@media screen and (min-width: 900px) {
	.topmain_text {
		padding: 120px 0;
	}
	.topmain_text1 ,.topmain_text2 {
		padding: 32px 24px;
	}
	#ours-tab-acdi ,#ours-tab-acdi.h1500 {
		height: 1300px;
	}
	#ours-tab-acdi.h700 {
		height: 680px;
	}
	#ours-tab-acdi dl dd {
		top: 420px;
	}
	.ours_sub {
		padding: 16px 40px 40px 40px;
	}
	.ours_sub_l {
		width: 25%;
	}
	.ours_sub_r {
		width: 75%;
	}
	.solution_wrap {
		max-width: 1000px;
	}
	.solution_flex {
		display: flex;
		width: 100%;
	}
	.solution_flex_reve {
		flex-direction: row-reverse;
	}	
	.solution_img {
		width: 59%;
	}
	.solution_text {
		display: flex;
		flex-direction: column;
		width: 41%;
		padding: 20px;
	}
	.solution_btn {
		margin: auto 0 0 auto;
	}
	.topmap_wrap {
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 1000px;
		padding: 48px 24px;
	}
	.topmap_text {
		margin-bottom: 0;
	}
	.topmap_text img {
		margin: 0 0 8px 0;
	}
	.topmap_text ul {
		padding: 16px 0;
	}
	.topmap_btn {
		margin-bottom: 0;
	}
	.topmap_map {
		width: 370px;
		height: 100%;
		margin: 0;
	}
}

@media screen and (min-width: 960px) {
	#ours-tab-acdi.h700 {
		height: 640px;
	}
}

@media screen and (min-width: 1060px) {
	#first-view p {
		padding: 64px 0;
	}
	#solution {
		padding: 32px 0 56px 0;
	}
	.solution_desc {
		font-size: 1.8rem;
		line-height: 32px;
	}
	.solution_p p {
		font-size: 1.6rem;
		line-height: 26px;
	}
	.topmap_wrap {
		padding: 64px 0;
	}
}

@media screen and (min-width: 1170px) {
	#ours-tab-acdi ,#ours-tab-acdi.h1500 {
		height: 1238px;
	}
}

@media screen and (min-width: 1200px) {
	.topmain_text {
		padding: 160px 0;
	}
	.topmain_text1 ,.topmain_text2 {
		padding: 40px 24px;
	}	
}



/* ------------------------------
   会社情報／お問い合わせ／プライバシーポリシー
------------------------------ */
#company ,#contact ,#privacy-policy {
	padding-bottom: 32px;
}

#company section ,#contact section ,#contact-finish section ,#privacy-policy section {
	padding: 24px 16px 48px 16px;
}

#company h3 ,#contact h3 ,#contact-finish h3 ,#privacy-policy h3 {
	line-height: 27px;
	text-align: left;
	color: #0090C9;
	max-width: 660px;
	margin: 0 auto 4px auto;
	position: relative;
	padding-left: 34px;
}

#company h3::before ,#contact h3::before ,#contact-finish h3::before ,#privacy-policy h3::before {
	content: '';
	display: block;
	width: 24px; 
	height: 24px;
	background-image: url(../image/icon_h3.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 1px;
}

.company_wrap ,.contact_wrap ,.contact_f_wrap ,.prpoli_wrap {
	background-color: #ffffff;
	max-width: 660px;
	margin: 0 auto;
}

.company_wrap dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	font-size: 1.4rem;
	line-height: 24px;
	text-align: left;
}

.company_wrap dl dt ,.company_wrap dl dd {
	border: 1px solid #F5F5F5;
	padding: 8px 10px;
}

.company_wrap dl dt {
	width: 35%;
}

.company_wrap dl dd {
	width: 65%;
}

.company_wrap dl dd a {
	color: #0090C9;
}

.company_mp img {
	object-fit: cover;
}

.company_text {
	text-align: left;
	padding: 16px;
}

.company_history dl dt {
	text-align: right;
}

.contact_wrap ,.contact_f_wrap {
	padding: 32px 16px;
	margin-bottom: 24px;
}

.contact_wrap h4 ,.contact_f_wrap h4 {
	font-weight: 600;
}

.contact_btn {
	position: relative;
	background-color: #0090C9;
	width: 320px;
	margin: 30px auto;
}

.contact_btn:hover {
	opacity: 0.8;
}

.contact_btn a:hover {
	opacity: 1;
}

.contact_btn p {
	color: #ffffff;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 72px;
}

.contact_btn img {
	position: absolute;
	width: 24px;
	top: 24px;
	right: 16px;
}

.contact_text {
	text-align: left;
	max-width: 660px;
	margin: 0 auto;
	padding: 8px 0 16px 0;
}

.contact_h4 {
	margin-bottom: 16px;
}

.contact_h4 h4 ,.contact_f_h4 h4 {
	color: #0090C9;
	border-bottom: 3px solid #0090C9;
	max-width: 760px;
	margin: 0 auto 16px auto;
}

.contact_dl {
	font-weight: 600;
	max-width: 660px;
	margin: 0 auto;
}

.contact_dl dt {
	font-size: 1.6rem;
	font-weight: 600;
	padding: 32px 0 24px 0;
}

.contact_dl dd {
	border-bottom: 2px dotted #3C3F3F;
	padding-bottom: 24px;
}

.contact_f_h4 p {
	padding-top: 8px;
}

.prpoli_wrap {
	text-align: left;
	padding: 16px 16px 24px 16px;
}

.prpoli_wrap ol {
	padding-left: 20px;
}

.prpoli_wrap ol li {
	padding-top: 16px;
}

.prpoli_right {
	padding-top: 16px;
	text-align: right;
}

.prpoli_wrap ol li > p ,.prpoli_ol_num li > ul li {
	padding-top: 8px;
}

.prpoli_contact ul {
	list-style: none;
}

.prpoli_contact ul li {
	font-weight: 600;
}

.prpoli_contact ul li:first-child{
	padding-top: 8px;
}

.prpoli_contact img {
	display: inline-block;
	width: 116px;
	height: 29px;
	margin: 4px auto 0 0;
}

.prpoli_contact > p {
	padding-top: 12px;
}

.prpoli_contact > p a {
	color: #0090C9;
	text-decoration: underline;
	padding: 0 4px;
}

.prpoli_ol_num {
	list-style: none;
	counter-reset: number;
}

.prpoli_ol_num > li {
	position: relative;
	padding-left: 6px;
}

.prpoli_ol_num > li::before {
	counter-increment: number;
	content: '('counter(number)')';
	position: absolute;
	left: -20px;
}

.prpoli_ol_num li > ul {
	padding-left: 20px;
}

.prpoli_ol_num li > ul li {
	list-style-type: disc;
}

/*　会社情報／お問い合わせ／プライバシーポリシー レスポンシブ　*/
@media screen and (min-width: 400px) {
	.company_wrap dl dt {
		width: 30%;
	}
	.company_wrap dl dd {
		width: 70%;
	}
}

@media screen and (min-width: 500px) {
	.company_wrap dl dt {
		width: 25%;
	}
	.company_wrap dl dd {
		width: 75%;
	}
}

@media screen and (min-width: 768px) {
	#company {
		padding-bottom: 54px;
	}
	#company section ,#contact section ,#contact-finish section ,#privacy-policy section {
		padding: 32px 24px 80px 24px;
	}
	#company h3 ,#contact h3 ,#contact-finish h3 ,#privacy-policy h3 {
		line-height: 32px;
		padding-left: 40px;
	}
	#company h3::before ,#contact h3::before ,#contact-finish h3::before ,#privacy-policy h3::before {
		width: 27px; 
		height: 27px;
		top: 0;
		left: 1px;
	}	
	.company_wrap dl {
		font-size: 1.6rem;
		line-height: 26px;
	}
	.company_wrap dl dt ,.company_wrap dl dd {
		padding: 12px 14px;
	}
	.company_wrap dl dt {
		width: 20%;
	}
	.company_wrap dl dd {
		width: 80%;
	}
	.contact_wrap ,.contact_f_wrap {
		padding: 48px 32px;
	}
	.contact_btn {
		width: 400px;
		margin: 40px auto;
	}
	.contact_btn p {
		line-height: 88px;
	}
	.contact_btn p ,.contact_dl dt {
		font-size: 1.8rem;
	}	
	.contact_btn img {
		top: 30px;
	}
	.contact_h4 h4 ,.contact_f_h4 h4 {
		line-height: 32px;
	}
	.contact_f_h4 p {
		padding-top: 16px;
	}
	.prpoli_wrap {
		padding: 32px 32px 40px 32px;
	}
	.prpoli_wrap ol li {
		padding-top: 24px;
	}
	.prpoli_right {
		padding-top: 32px;
	}
	.prpoli_contact ul li {
		padding-top: 4px;
	}
	.prpoli_ol_num > li {
		padding-left: 10px;
	}
}

@media screen and (min-width: 900px) {
	#company h3 ,#contact h3 ,#contact-finish h3 ,#privacy-policy h3 {
		max-width: 1000px;
	}
	.company_wrap ,.contact_wrap ,.contact_text ,.contact_f_wrap ,.prpoli_wrap {
		max-width: 1000px;
	}
	.company_wrap dl dt ,.company_wrap dl dd {
		border: 2px solid #F5F5F5;
		padding: 16px 20px;
	}
	.company_wrap dl dt {
		width: 17%;
	}
	.company_wrap dl dd {
		width: 83%;
	}
	.company_mp {
		display: flex;
		width: 100%;
	}
	.company_mp img {
		width: 54%;
	}
	.company_text {
		width: 46%;
		padding: 20px;
	}
}



/* ------------------------------
   アクセスマップ
------------------------------ */
.acsmap {
	max-width: 600px;
	margin: 0 auto;
	padding-bottom: 40px;
}

.acsmap_text {
	text-align: left;
	padding: 16px;
}

.acsmap_text ul {
	padding: 8px 0;
}

.acsmap_text ul li {
	list-style-type: none;
}

.acsmap_pbtn {
	display: none;
}

@media screen and (min-width: 650px) {
	.acsmap_text {
		padding: 16px 0;
	}
}

@media screen and (min-width: 768px) {
	.acsmap_pbtn {
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.6rem;
		line-height: 26px;
		color: #ffffff;
		background-color: #0090C9;
		border: none;
		border-radius: 8px;
		width: 150px;
		margin: auto 0 0 auto;
		padding: 15px 0 14px 8px;
	}	
	.acsmap_pbtn:hover {
		opacity: 0.8;
		cursor: pointer;
	}
	.acsmap_pbtn img {
		width: 18px;
		margin: 0 0 1px 6px;
	}
}



/* ------------------------------
   各フォルダにもCSSがあります
   ・MPI
   ・みーにゃん
------------------------------ */

/*///////////きせかえとアプリケーションサービスのページ//////////////////////*/
.productsHeadeing {
	text-indent: 1.8rem;
	border-bottom: 2px solid #00074A;
	margin:4% auto 1.8% auto;
	width: 100%;
}

.productPageCaption {
	padding: 3% 4%;
	margin: 8% auto 0 auto;
	width: 96%;
}

.productLinkButton {
	text-decoration: none;
	display: block;
	white-space: nowrap;
	margin: 4% auto;
	padding: 2% 0;
	width: 90%;
	max-width: 400px;
}

.whiteWrapping {
	flex-direction: column;
	margin: 0 auto 8% auto;
	padding: 12% 0 12% 0;
	width: 97%;
}

.whiteWrapping article {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
}

.whiteWrapping article a {
	width: 40%;
}

.whiteWrapping article h3 {
	width: 40%;
}

.whiteWrapping article a p img {
	margin: 0 auto;
	width: 100%;
}

.whiteWrapping article p.qrCode {
	display: none;
}

.whiteWrapping article.serviceTexts {
	display: block;
}

.whiteWrapping article.serviceTexts h3 {
	margin: 0 auto 4% auto;
	width: 96%;
}

.serviceTexts,
.serviceTexts ul {
	margin: 0 auto 4% auto;
	width: 96%;
}

.serviceTexts ul li {
	margin: .8% auto;
}
/*///////きせかえ提供プロバイダー///////*/
#provider {
	width: 100%;
	max-width: 1280px;
}

#provider section#overView{
	margin: 0 auto;
}

#provider .tableBox table tbody tr td,
#provider .tableBox table tbody tr th {
	vertical-align: middle;
	border-left: 2px solid #fff;
	padding: 2% .8%;
	width: 50%;
}
/*/IoTとgameページはstyle_iot_game.cssにて管理しています/*/
/*//////////////////子会社事業ページ////////////////*/
#subCompanyfirstView {
	width: 100%;
	height: auto;
}

#subCompanyfirstView img{
	width: 100%;
	height: auto;
}

#subCompany {
	margin: 0 auto 40px auto;
	width: 80%;
}

#subCompany h1 {
	width: 100%;
}

#subCompany .left {
	float:left;
}

#subCompany .right {
	float:right;
	margin-bottom:50px;
	padding:8px;
}

#subCompany .right img{
	margin-left:10px;
}

.subCompanyCap {
	width: 100%;
}

.subCampanyimg img {
	width: 100%;
}

#subCampanyButton {
	margin: 0 auto 20px auto;
	padding: 10px;
	width: 90%;
}

#subCampanyButton a {
	display: block;
	width: 100%;
}

.nikuyokoStores {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.nikuyokoStores div {
	width: 98%;
	margin: 1%;
	padding: 10px;
	background-color: #ffffff;
	color: #1a1a4d;
	border-radius: 1px;
}

.nikuyokoStores div ul {
	padding-left: 20px;
}

.nikuyoko_list {
	padding: 20px 0;
	margin-bottom: 10px;
}

.nikuyoko_img {
	margin-bottom: 40px;
	padding: 8px;
}

/*///////////////お問い合わせ///////////////*/
.otherWise {
	margin: 1.1% auto 0 auto;
	width: 92%;
}

.owBox {
	text-align: center;
	padding: 4% 1%;
}

.owBox h2 {
	margin-bottom: 2%;
}

.owBox p {
	font-weight: 400;
	padding: 1.8% 0 1% 0;
}

.owBox p a {
	display: block;
	padding: 4%;
	margin: 1% auto;
	width: 80%;
}

.howTo {
	margin-top: 3%;
	padding: 4%;
}

.infoTitle {
	margin-bottom: 4%;
}

.howTo dl {
	border-bottom: 2px dotted #aaa;
	margin: 0 auto;
	width: 84%;
}

.howTo dl dt {
	margin-top: 3%;
	padding: 4% 4% 3% 4%;
}

.howTo dl dd {
	margin: 2% auto;
	padding: 4% 4% 3% 4%;
}

.owBox ul {
	margin: 0 auto;
	width: 92%;
}

.owBox ul li {
	padding: 1%;
}

.owBorder {
	font-size: 1.8rem;
	border-bottom: 1px solid #eee;
	margin: 3% auto 2% auto;
	width: 80%;
}
/*///地図を印刷する///*/
#printButton {
	display: none;
}

#printButton a {
	display: block;
	text-decoration: none;
	width: 100%;
}
/*/////////アクセスマップページ//////////*/
/* #accessData {
	padding-top: 4%;
	margin: 2% auto .4% auto;
	width: 50%;
}

#accessData li {
	margin: 1% auto ;
	width: 100%;
} */

#printBox {
	/*position: relative;*/
	margin: 2% auto .6% auto;
/*	width: 300px;
	height: 400px;*/
	max-width: 600px;
}

/* #printTarget {
	width: 100%;
	height: auto;
} */

#printBox img {
	display: block;
	width: 100%;
	height: auto;
}

/*#printTarget iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;	
}
*/
#buttonSet {
	margin: 0 auto;
	width: 80%;
	height: auto;
}

#buttonSet button {
	display: none;
	padding: 2%;
	border: none;
	margin-left: 70%;
	margin-bottom: 8%;
}
