@charset "UTF-8";
@import url(reset.css);
* html body {
	background: url(null) fixed;
}
html, body {
	margin: 0;
	width: 100%;
  height: 100%;
}
body {
	position: relative;
	margin: 0;
	padding: 0;
	color: #0A0B0B;
	font-size: 16px;
	line-height: 1.8em;
	letter-spacing: 0.1em;
	background-image: linear-gradient(to left, #00EAFF 0%, #3C8CE7 100%);
	font-family: 'Noto Sans JP', sans-serif;
}
html {
	width: 100%;
  height: 100%;
	overflow-x: hidden;
}
a {
	color: #000000;
	text-decoration: underline;
	transition: .3s;
}
a:hover {
	color: #999;
	text-decoration: none;
}
*:focus {
	outline: none;
}
img {
	-webkit-backface-visibility: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: normal;
}
input[type="submit"], input[type="button"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"], textarea, select {
	-webkit-appearance: none;
	border-radius: 0;
}
select {
	-moz-appearance: menulist;
	-webkit-appearance: menulist;
}

.sp {
		display: none!important;
}
@media screen and (max-width: 896px) {
	.pc {
		display: none;
	}
	.sp {
		display: block!important;
	}
}

body {
	position: relative;
  animation: fadein 2s forwards;
}
@keyframes fadein {
  0% {
		opacity: 0;
	}
  100% {
		opacity: 1;
	}
}
.fadeup {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s,visibility 1s, transform 1s;
}
.fadeup.inview {
	opacity: 1;
	visibility: visible;
	transform: translateY(0px);
}
.faderight {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-30px);
	transition: opacity 1s,visibility 1s, transform 1s;
}
.faderight.inview {
	opacity: 1;
	visibility: visible;
	transform: translateX(0px);
}
.inview.delay1 {
  transition-delay: 0.3s; 
}
.inview.delay2 {
  transition-delay: 0.6s; 
}

@media screen and (max-width: 896px) {
	body.active {
		overflow: hidden;
	} 
	#h_btn {
/*		mix-blend-mode: difference;*/
		position: absolute;
		display: block;
		width: 40px;
		height: 20px;
		top: 30px;
		right: 20px;
		pointer-events: auto;
		box-sizing: border-box;
		z-index: 990;
	}
	#h_btn .h_bar,
	#h_btn .h_bar span {
		display: block;
		transition: all .4s;
		box-sizing: border-box;
	}
	#h_btn .h_bar {
		position: relative;
		width: 100%;
		height: 100%;
	}
	#h_btn .h_bar span {
		position: absolute;
		width: 100%;
		height: 3px;
	  left: 0;
		right: 0;
		font-weight: bold;
		background-color: #fff;
		border-radius: 2px;
	}
	#h_btn .h_bar span:first-child {
		top: 0;
	}
	#h_btn .h_bar span:last-child {
		bottom: 0;
	}
/*
	#h_btn.active {
		mix-blend-mode: normal;
	}
*/
	#h_btn.active .h_bar span {
		width: 40px;
		background: #fff;
	}
	#h_btn.active .h_bar span:first-child {
		transform: translateY(9px) rotate(-315deg);
	}
	#h_btn.active .h_bar span:last-child {
		transform: translateY(-9px) rotate(315deg);
	}
	#h_content {
		position: fixed;
		right: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background-color: rgba(8,174,234,0.95);
		transition: all 0.4s;
		transform: translateX(100%);
		opacity: 0;
		z-index: 99;
	}
	#h_content.active {
		transform: translateX(0px);
		transition: all 0.8s;
		opacity: 1;
	}
	#h_content .sp_inner {
		margin: auto;
		width: 100%;
	}
	#h_content .sp_inner ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		padding: 80px 20px 0;
		list-style-type: none;
	}
	#h_content .sp_inner li {
		position: relative;
		margin-bottom: 15px;
		width: 48%;
		letter-spacing: 0;
	}
	#h_content .sp_inner li:nth-child(5),
	#h_content .sp_inner li:nth-child(6) {
		width: 100%;
	}
	#h_content .sp_inner li a {
		display: block;
		width: 100%;
		height: 50px;
		color: #3C8CE7;
		font-size: 16px;
		line-height: 50px;
		text-align: center;
		font-weight: bold;
		text-decoration: none;
		background-color: #FFF;
		border-radius: 25px;
	}
	#h_content .sp_inner li:nth-child(6) a {
		display: block;
		width: 100%;
		height: 70px;
		color: #FFF;
		font-size: 16px;
		line-height: 70px;
		text-align: center;
		font-weight: bold;
		text-decoration: none;
		background-color: #0A0B0B;
		border-radius: 35px;
	}
	.telcontact {
		display: flex;
		flex-flow: column;
		color: #FFF;
		text-align: center;
	}
	.telcontact h4 {
		margin-bottom: 5px;
		font-size: 18px;
		font-weight: bold;
	}
	.telcontact a {
		color: #FFF;
		font-size: 30px;
		font-weight: bold;
		text-decoration: none;
	}
	.telcontact span {
		display: block;
		margin-top: 5px;
		font-size: 13px;
		font-feature-settings: "palt";
	}
}

/* ボタン要素
------------------------------------------------------------ */
.btnlink_b {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: row nowrap;
	margin: auto;
	width: 300px;
	height: 60px;
}
.btnlink_b a {
	display: block;
	position: relative;
	z-index:0;
	padding: 0 0 0 30px;
	color: #FFF;
	width: 300px;
	height: 60px;
	font-size: 16px;
	font-weight: bold;
	line-height: 60px;
	text-decoration: none;
}
.btnlink_b::before {
	content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:-1;
  left:0;
  transition:0.5s;
	background-image: linear-gradient(to left, #00EAFF 0%, #3C8CE7 100%);
	border-radius: 30px;
	box-sizing: border-box;
}
.btnlink_b::after {
	content:"";
  width:100%;
  height:100%;
  position:absolute;
  z-index:-2;
  left:0;
	background-image: linear-gradient(to left, #3C8CE7 0%, #3C8CE7 100%);
	border-radius: 30px;
	box-sizing: border-box;
}
.btnlink_b a:hover {
	color: #FFF;
}
.btnlink_b:hover::before{
  opacity:0;
}
.btnlink_b span::before {
	content: '';
	position: absolute;
	top: 0;
	right: 20px;
	width: 30px; 
	height: 60px;
	background-image: url('../img/icon_01.svg');
	background-position: right 10px center;
	background-repeat:no-repeat;
	transition: .5s;
}
.btnlink_b:hover span::before {
	background-position: right 0 center;
}
.btnlink_w {
	position: relative;
	display: flex;
	justify-content: center;
	flex-flow: row nowrap;
	align-items: center;
	margin: auto;
	width: 300px;
	height: 60px;
}
.btnlink_w a {
	display: block;
	position: relative;
	z-index:0;
	padding: 0 0 0 30px;
	color: #3C8CE7;
	width: 300px;
	height: 60px;
	font-size: 16px;
	font-weight: bold;
	line-height: 60px;
	text-decoration: none;
	background-color: #FFF;
	border-radius: 30px;
}
.btnlink_w a:hover {
	color: #697391;
}
.btnlink_w span::before {
	content: '';
	position: absolute;
	top: 0;
	right: 20px;
	width: 30px; 
	height: 60px;
	background-image: url('../img/icon_02.svg');
	background-position: right 10px center;
	background-repeat:no-repeat;
	transition: .5s;
}
.btnlink_w:hover span::before {
	background-position: right 0 center;
}

/* 共通見出し
------------------------------------------------------------ */
h3.lefttitle {
	position: relative;
	margin-bottom: 50px;
	padding-bottom: 40px;
	font-size: 40px;
	font-weight: bold;
}
h3.lefttitle span {
	display: block;
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: bold;
}
h3.lefttitle::before {
	content: "";
	display: block;
	position:absolute;
	bottom: 0;
	width: 50px;
	height: 6px;
	background-color: #FFF;
	border-radius: 3px;
}
h3.title {
	display: flex;
  justify-content: center;
	align-items: center;
	flex-flow: column;
	position: relative;
	margin-bottom: 60px;
	padding-bottom: 40px;
	font-size: 40px;
	font-weight: bold;
}
h3.title span {
	display: block;
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: bold;
}
h3.title::before {
	content: "";
	display: block;
	position:absolute;
	bottom: 0;
	width: 50px;
	height: 6px;
	background-color: #FFF;
	border-radius: 3px;
}
@media screen and (max-width: 896px) {
	h3.lefttitle {
		margin-bottom: 40px;
		padding-bottom: 30px;
		font-size: 28px;
	}
	h3.lefttitle span {
		margin-bottom: 15px;
		font-size: 13px;
	}
	h3.lefttitle::before {
		height: 4px;
	}
	h3.title {
		position: relative;
		margin-bottom: 40px;
		padding-bottom: 30px;
		font-size: 28px;
		font-weight: bold;
	}
	h3.title span {
		margin-bottom: 10px;
		font-size: 13px;
	}
	h3.title::before {
		height: 4px;
	}
}

/* メインビジュアル
------------------------------------------------------------ */
.mainvisual {
	color: #FFF;
	width: 100%;
	height: 100vh;
}
.bg-slider {
	background-position: top right;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.mainvisual h2 {
	padding: 230px 0 40px 5%;
	font-size: 70px;
	font-weight: bold;
	line-height: 1.6em;
}
.mainvisual aside {
	padding: 0 0 0 5%;
	font-size: 24px;
	line-height: 1.8em;
}
@media screen and (max-width: 896px) {
	.mainvisual {
		height: 50vh;
	}
	.bg-slider {
		background-position: bottom left;
		background-size: auto 100%;
	}
	.mainvisual h2 {
		padding: 60px 0 20px 5%;
		font-size: 25px;
	}
	.mainvisual aside {
		padding: 0 5%;
		font-size: 16px;
		line-height: 1.4em;
		box-sizing: border-box;
	}
}

/* 共通項目
------------------------------------------------------------ */
main {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100%;
}
main.about {
	background-image: url('../img/sub_mainvisula_01.jpg');
}
.inner {
	margin: auto;
	max-width: 1200px;
	width: 90%;
}
.title_sub h2 {
	padding: 6% 0 18%;
	color: #FFF;
	font-size: 28px;
	line-height: 40px;
	text-align: center;
	letter-spacing: 0.2em;
	font-family: "M-Medium";
	text-shadow: 0 0 3px #000;
}
.title_sub h2 span {
	display: block;
	margin-top: 0;
	font-size: 18px;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 896px) {
}

/* ヘッダー
------------------------------------------------------------ */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 0 30px;
	z-index: 30;
}
header h1 {
	position: relative;
	z-index: 900;
	margin-top: 10px;
	transition: .3s;
}
header h1:hover {
	opacity: 0.7;
}
header ul {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	letter-spacing: 0;
}
header ul li {
	margin-left: 15px;
}
header ul li a {
	position: relative;
	color: #FFF;
	font-size: 15px;
	text-decoration: none;
	padding: 6px 20px 7px;
	background-image: linear-gradient(to right, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 50%);
	background-position: 0 0;
	background-size: 200% auto;
	border-radius: 10px;
	transition: .3s;
}
header ul li a:hover {
	background-position: -100% 0;
	color: #000;
}
header ul li:last-child a {
	display: block;
	margin-left: 20px;
	padding: 0 20px;
	color: #000;
	height: 100px;
	line-height: 100px;
	background-color: #FFF;
	background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 50%);
	background-position: 0 0;
	background-size: 200% auto;
	border-radius: 0 0 0 10px;
	transition: .3s;
}
header ul li:last-child a:hover {
	background-position: -100% 0;
	color: #FFF!important;
}
@media screen and (max-width: 1260px) {
	header {
		padding: 0 0 0 20px;
	}
	header h1 {
		margin-top: 20px;
		width: clamp(250px, 30vw, 400px)
	}
	header ul li a {
		padding: 6px 10px 7px;
		font-size:clamp(14px, 20vw, 15px)
	}
}

/* 私たちについて
------------------------------------------------------------ */
.about {
	position: relative;
	top: -140px;
	color: #FFF;
	background-image: url("../img/visual_01.png"), url("../img/visual_02.png"), url("../img/visual_03.png"), url("../img/visual_04.png");
	background-repeat: no-repeat;
	background-size: 540px auto, 280px auto, 450px auto, 230px auto;
	background-position: right 5% top, left 30% top 80px, left -60px top 450px, right 8% bottom 20%;
}
.about h4 {
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.8em;
}
.about .about_box {
	margin: auto;
	padding: 480px 0 0;
	width: 550px;
}
.about .vision_box {
	background-image: url("../img/visual_05.png");
	background-repeat: no-repeat;
	background-size: 620px auto;
	background-position: left bottom;
}
.about .vision_box .inner {
	padding: 100px 0 60px;
	max-width: 860px;
}
@media screen and (max-width: 1280px) {
	.about {
		position: relative;
		top: -90px;
		color: #FFF;
		background-image: url("../img/visual_01.png"), url("../img/visual_02.png"), url("../img/visual_03.png"), url("../img/visual_04.png");
		background-repeat: no-repeat;
		background-size: 50% auto, 24% auto, 40% auto, 20% auto;
		background-position: right 5% top, left 30% top 80px, left -60px top 450px, right 8% bottom 20%;
	}
}
@media screen and (max-width: 896px) {
	.about {
		position: relative;
		top: -30px;
		margin-bottom: 30px;
		color: #FFF;
		background-image: url("../img/visual_01.png"), url("../img/visual_02.png"), url("../img/visual_03.png"), url("../img/visual_04.png");
		background-repeat: no-repeat;
		background-size: 50% auto, 24% auto, 40% auto, 20% auto;
		background-position: right 5% top, left 20% top 80px, left -60px top 450px, right 8% bottom 20%;
	}
	.about h4 {
		margin-bottom: 20px;
		font-size: 20px;
		line-height: 1.6em;
	}
	.about .about_box {
		padding: 60px 0 0;
		width: 90%;
	}
	.about .about_box p {
		text-align: justify;
		text-justify: inter-ideograph;
	}
	.about .vision_box {
		background-size: 60% auto;
	}
	.about .vision_box .inner {
		padding: 60px 0 40px;
	}
}

/* 事業紹介
------------------------------------------------------------ */
.service {
	color: #FFF;
}
.service .service_list {
	display: flex;
	justify-content: space-between;
}
.service .service_list a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
	width: 100%;
	color: #FFF;
	text-decoration: none;
	box-sizing: border-box;
}
.service .service_list .text_box {
	position: absolute;
	z-index: 2;
	text-shadow: 0 0 2px #000;
}
.service .service_list h4 {
	margin-bottom: 30px;
	padding: 0 40px;
	font-size: 30px;
	font-weight: bold;
}
.service .service_list p {
	padding: 0 40px 40px;
	text-align: justify;
	text-justify: inter-ideograph;
}
.service .service_list .photo_box {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
}
.service .service_list a .photo_box img {
	transition: .5s;
}
.service .service_list a:hover .photo_box img {
	transform:scale(1.1,1.1);
	filter: blur(3px);
}
.service .service_list a::before {
	position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(106, 161, 220, 0) 30%, rgba(106, 161, 220, 1));
  content: "";
  opacity: 0;
  transform: translate3d(0, 50%, 0);
	transition: .5s;
}
.service .service_list a:hover::before {
	opacity: 1;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 896px) {
	.service .service_list {
		flex-flow: column;
	}
	.service .service_list a {
		height: 280px;
	}
	.service .service_list h4 {
		margin-bottom: 20px;
		padding: 0 25px;
		font-size: 24px;
	}
	.service .service_list p {
		padding: 0 25px 25px;
	}
	.service .service_list a .photo_box img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}
}

/* 施工事例
------------------------------------------------------------ */
.works {
	padding: 100px 0;
	background-color: #F3F5F7;
}
.works h3 {
	color: #3C8CE7;
}
.works h3::before {
	background-color: #3C8CE7;
}
.works .slider {
	margin: 0 0 60px;
}
.works .slider div {
	margin: 0 15px;
}
.works .slider img {
	margin-bottom: 10px;
	width: 100%;
	height: 240px;
	object-fit: cover;
	border-radius: 20px;
}
.works .slider h5 {
	margin: 0;
	padding: 0 20px;
	font-size: 16px;
	line-height: 1.6em;
}
.works .slider span {
	display: inline-block;
	margin: 10px 0;
	padding: 0 20px;
	color: #fff;
	height: 24px;
	line-height: 24px;
	font-size: 13px;
	background: #3C8CE7;
	text-align: center;
	border-radius: 12px;
}
@media screen and (max-width: 896px) {
	.works {
		padding: 80px 0;
	}
	.works .slider {
		margin: 0 0 20px;
	}
	.works .slider div {
		margin: 0 15px;
	}
	.works .slider img {
		height: 120px;
		border-radius: 10px;
	}
	.works .slider h5 {
		padding: 0;
		font-size: 13px;
	}
	.works .slider span {
		display: block;
		padding: 0;
		width: 100%;
		height: 20px;
		line-height: 20px;
		font-size: 11px;
		border-radius: 10px;
	}
}

/* 会社案内
------------------------------------------------------------ */
.company {
	padding: 100px 0;
}
.company h3 {
	color: #FFF;
}
.company .company_list {
	display: flex;
	justify-content: space-between;
}
.company .company_list a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	overflow: hidden;
	width: 31%;
	color: #FFF;
	text-decoration: none;
	border-radius: 30px 0 30px 0;
	box-sizing: border-box;
}
.company .company_list .text_box {
	position: absolute;
	z-index: 2;
	text-shadow: 0 0 2px #000;
}
.company .company_list h4 {
	margin-bottom: 20px;
	padding: 0 30px;
	font-size: 24px;
	font-weight: bold;
}
.company .company_list p {
	padding: 0 30px 30px;
	text-align: justify;
	text-justify: inter-ideograph;
}
.company .company_list .photo_box {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
}
.company .company_list a .photo_box img {
	transition: .5s;
}
.company .company_list a:hover .photo_box img {
	transform:scale(1.1,1.1);
	filter: blur(3px);
}
@media screen and (max-width: 896px) {
	.company {
		padding: 80px 0 50px;
	}
	.company .company_list {
		flex-flow: column;
	}
	.company .company_list a {
		margin-bottom: 15px;
		width: 100%;
		height: 250px;
	}
	.company .company_list h4 {
		margin-bottom: 10px;
		padding: 0 25px;
		font-size: 20px;
	}
	.company .company_list p {
		padding: 0 25px 25px;
	}
	.company .company_list a .photo_box img {
		width: 100%;
		height: auto;
		object-fit: cover;
	}
}

/* 採用情報
------------------------------------------------------------ */
.recruit {
	padding: 100px 0;
	color: #FFF;
	background-image: url('../img/recruit_img_01.jpg');
	background-position: center center;
	background-size: cover;
	background-repeat:no-repeat;
}
.recruit p {
	margin-bottom: 50px;
	text-align: center;
}
@media screen and (max-width: 896px) {
	.recruit {
		padding: 60px 0;
	}
	.recruit p {
		margin: 0 auto 30px;
		width: 90%;
		text-align: justify;
		text-justify: inter-ideograph;
	}
}

/* お知らせ
------------------------------------------------------------ */
.news {
	padding: 100px 0 0;
	background-color: #FFF;
}
.news .inner {
	display: flex;
	justify-content: space-between;
}
.news .titlebox {
	width: 20%;
}
.news .titlebox h3 {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	color: #3C8CE7;
}
.news .titlebox h3::before {
	background-color: #3C8CE7;
}
.news ul {
	margin: 0 0 100px;
	padding: 0;
	width: 70%;
	list-style: none;
}
.news ul li {
	position: relative;
	padding: 33px 0 30px;
	color: #0A0B0B;
	line-height: 24px;
	border-bottom: 1px dashed #5681BB;
}
.news ul li:first-child {
	border-top: 1px dashed #5681BB;
}
.news ul li span {
	display: inline-block;
	width: 130px;
}
.news ul li b {
	display: inline-block;
	position: relative;
	top: -2px;
	margin: 0 20px 0 0;
	padding: 2px 8px 4px;
	width: 80px;
	color: #FFF;
	font-size: 13px;
	text-align: center;
	background-color: #3C8CE7;
	border-radius: 10px;
}
.news ul li a {
	padding: 3px 10px 4px;
	color: #0A0B0B;
	text-decoration: none;
	background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 50%);
	background-position: 0 0;
	background-size: 200% auto;
	border-radius: 10px;
	transition: .3s;
}
.news ul li a:hover {
	background-position: -100% 0;
	color: #FFF;
}
@media screen and (max-width: 896px) {
	.news {
		padding: 80px 0;
	}
	.news .inner {
		flex-flow: column;
	}
	.news .titlebox {
		width: 100%;
	}
	.news .titlebox h3 {
		justify-content: center;
		align-items: center;
		flex-flow: column;
	}
	.news ul {
		margin: 0;
		padding: 0;
		width: 100%;
	}
	.news ul li {
		padding: 25px 0;
	}
	.news ul li span {
		width: 110px;
	}
	.news ul li b {
		top: 0;
		margin: 0;
		padding: 2px 10px 4px;
	}
	.news ul li a {
		margin-top: 15px;
		padding: 0;
		background-image: none;
	}
}

/* お問い合わせ
------------------------------------------------------------ */
.contact {
	padding: 120px 0;
	background-color: #3C8CE7;
}
.contact .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact .titlebox {
	width: 30%;
}
.contact .titlebox h3 {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0 0 0;
	color: #FFF;
}
.contact .textbox {
	width: 70%;
	color: #FFF;
}
.contact .textbox p {
	margin-bottom: 30px;
	padding: 0;
}
.contact .textbox .contact_box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.contact .textbox .contact_tel h4 {
	margin-bottom: 10px;
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.contact .textbox .contact_tel br {
	display: none;
}
.contact .textbox .contact_tel a {
	color: #fff;
	text-decoration: none; 
}
.contact .textbox .contact_form {
	position: relative;
	width: 300px;
}
@media screen and (max-width: 896px) {
	.contact {
		padding: 60px 0;
	}
	.contact .inner {
		flex-flow: column;
	}
	.contact .titlebox {
		width: 100%;
	}
	.contact .titlebox h3 {
		justify-content: center;
		align-items: center;
		flex-flow: column;
	}
	.contact .textbox {
		padding: 40px 0 0;
		width: 100%;
	}
	.contact .textbox p {
		text-align: justify;
		text-justify: inter-ideograph;
	}
	.contact .textbox .contact_box {
		justify-content: center;
		flex-flow: column;
	}
	.contact .textbox .contact_tel {
		margin-bottom: 20px;
		text-align: center;
	}
	.contact .textbox .contact_tel h4 {
		margin-bottom: 10px;
		font-size: 32px;
	}
	.contact .textbox .contact_tel br {
		display: block;
	}
}

/* Instagram
------------------------------------------------------------ */
.sns {
	padding: 80px 0;
	background-color: #FFF;
}
.sns h3 {
	margin-bottom: 10px;
	padding-bottom: 30px;
	color: #3C8CE7;
	font-size: 30px;
}
.sns.titlebox h3::before {
	height: 0;
}
.sns .box {
	margin: auto;
	width: 90%;
}

/* フッター
------------------------------------------------------------ */
footer {
	padding: 50px 0;
	color: #FFF;
}
footer .inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
footer h2 {
	margin-bottom: 20px;
}
footer span {
	margin-left: 10px;
}
footer ul {
	display: flex;
	justify-content: flex-end;
	margin: 0;
	list-style: none;
}
footer ul li {
	margin-left: 10px;
}
footer ul li a {
	position: relative;
	color: #FFF;
	font-size: 15px;
	text-decoration: none;
	padding: 5px 10px 7px;
	background-image: linear-gradient(to right, rgba(255,255,255,0) 50%, rgba(255,255,255,1) 50%);
	background-position: 0 0;
	background-size: 200% auto;
	border-radius: 10px;
	transition: .3s;
}
footer ul li a:hover {
	background-position: -100% 0;
	color: #000;
}
footer small {
	display: block;
	margin: 20px auto 0;
	max-width: 1200px;
	text-align: left;
}
@media screen and (max-width: 896px) {
	footer {
		padding: 40px 0;
	}
	footer .inner {
		justify-content: center;
		align-items: center;
		flex-flow: column;
		font-size: 15px;
		text-align: center;
		line-height: 1.6em;
	}
	footer h2 img {
		display: block;
		margin: auto;
		width: 240px;
	}
	footer span {
		display: block;
		margin-left: 0;
	}
	footer .navi {
		display: none;
	}
	footer small {
		font-size: 13px;
		text-align: center;
	}
}

/* ページトップ
------------------------------------------------------------ */
#page-top {
	mix-blend-mode: difference;
	display: block;
	position: fixed;
	z-index: 99999;
  bottom: 30px;
  right: 30px;
  width: 60px;
	height: 60px;
	color: #3C8CE7;
	font-size: 14px;
	font-weight: bold;
  text-align: center;
	line-height: 60px;
	text-decoration: none;
  background-color: #FFF;
  border-radius: 30px;
  transition: .3s;
}
#page-top:hover {
	opacity: 0.7;
}
@media screen and (max-width: 896px) {
	#page-top {
		bottom: 40px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		border-radius: 20px;
	}
}

/* モーダル
------------------------------------------------------------ */
.hide-area {
  display: none;
}
.newstext h4 {
	margin-bottom: 40px!important;
  font-size: 24px!important;
	line-height: 2em!important;
}
.newstext p {
	line-height: 2em!important;
}
.modaal-inner-wrapper {
	z-index: 100003!important;
}
.modaal-inner-wrapper img {
	max-width: 640px;
	width: 60%!important;
	height: auto;
	object-fit: cover;
}

/* 下層ページ追加分
------------------------------------------------------------ */
.subpage select,
.subpage input,
.subpage textarea {
	border: 1px solid #BABABA;
}


/*サブページ共通
------------------------------------------------------------ */
.subpage {
	position: relative;
}
.subpage header {
	position: relative;
	z-index: 900;
}
.subpage .mainvisual {
	height: 380px;
}
.subpage .mainvisual::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 380px;
	max-height: 380px;
/*	background: url("../img/sub_mainvisual_01.png") top left no-repeat;*/
/*	background-size: 100% auto;*/
	background-image: linear-gradient(to left, #00EAFF 0%, #3C8CE7 100%);
	z-index: 0;
}
.subpage .main-title_center {
	position: relative;
	padding: 60px 0 30px 0;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
}
.subpage .main-title_center span {
	display: block;
	font-size: 15px;
	line-height: 30px;
}
.subpage .main-title_center::after {
	position: absolute;
	content: '';
	margin: 0 auto;
	display: block;
	right: 0;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 6px;
	background: #fff;
	border-radius: 3px;
}
.subpage .slider {}
.subpage .slider div {
	margin: 0 15px;
}
.subpage .slider img {
	width: 100%;
	height: 240px;
	border-radius: 20px;
}
@media screen and (max-width: 896px) {
	.subpage .mainvisual {
		height: 240px;
	}
	.subpage .mainvisual::before {
		height: 240px;
		max-height: 240px;
	}
	.subpage .main-title_center {
		padding: 30px 0 20px;
		font-size: 28px;
	}
	.subpage .main-title_center span {
		font-size: 13px;
		line-height: 30px;
	}
	.subpage .main-title_center::after {
		height: 3px;
	}
}

/*サブページ：一覧ページ
------------------------------------------------------------ */
.listpage {
	background-color: #fff;	
}
.listpage .posts_wrapper {
	padding: 100px 0 ;
	margin: 0 auto;
	width: calc(90% + 30px);
	max-width: 1200px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.listpage .posts_wrapper::after{
  content:"";
  display: block;
  width:31%;
}
.listpage .posts_wrapper .post {
	margin-bottom: 50px;
	width: 31%;
}
.listpage .posts_wrapper .post a {
	text-decoration: none;
}
.listpage .posts_wrapper .post .photo {
	margin-bottom: 10px;
}
.listpage .posts_wrapper .post .photo img {
	border-radius: 20px;
}
.listpage .posts_wrapper .post .title {
	padding: 0 20px;
	font-size: 16px;
}
.listpage .posts_wrapper .post .cate_badge {
	display: block;
	margin-bottom: 10px;
	color: #fff;
	width: 100px;
	height: 24px;
	line-height: 24px;
	font-size: 13px;
	background: #3C8CE7;
	text-align: center;
	border-radius: 12px;
}


/*----一覧ページ：お知らせ----*/
#news_list.listpage {
	background-color: transparent;
}
#news_list .posts_wrapper {
	display: block;
	padding: 0 0 100px;
	max-width: 900px;
}
#news_list .posts_wrapper .post {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0;
	padding: 30px 0;
	width: 100%;
	border-bottom: 1px dashed #fff;
}
#news_list .posts_wrapper .post a {
	position: relative;
	padding: 4px 10px 6px;
	text-decoration: none;
	background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 50%);
	background-position: 0 0;
	background-size: 200% auto;
	border-radius: 10px;
	transition: .3s;
}
#news_list .posts_wrapper .post a:hover {
	background-position: -100% 0;
	color: #FFF;
}
#news_list .posts_wrapper .post:first-child {
	border-top: 1px dashed #fff;
}
#news_list .posts_wrapper .post * {
	color: #fff;
}
#news_list .posts_wrapper .post .time {
	margin-right: 30px;
	font-size: 16px;
}
#news_list .posts_wrapper .post .cate_badge {
	margin-right: 30px;
	padding: 1px 0 3px;
	width: 100px;
	color: #3C8CE7;
	font-size: 13px;
	text-align: center;
	font-weight: bold;
	background-color: #FFF;
	border-radius: 10px;
}
#news_list .posts_wrapper .post h3 {
	font-size: 16px;
}
#news_list .list_more_btn {
	margin: 60px auto 0;
	padding-bottom: 15px;
	width: 300px;
	height: auto;
	display: block;
	text-align: center;
	background: url("../img/list_btn_item.svg")bottom center no-repeat;
	border-radius: 40px;
}
#news_list .list_more_btn a {
	display: block;
	line-height: 60px;
	font-size: 18px;
	font-weight: bold;
	color: #2D77DB;
	background: #fff;
	text-decoration: none;
	border-radius: 40px;
}

@media screen and (max-width: 896px) {
	.listpage {
		background-color: #fff;	
	}
	.listpage .posts_wrapper {
		padding: 50px 0 ;
		width: 90%;
	}
	.listpage .posts_wrapper .post {
		margin-bottom: 40px;
		width: 46%;
	}
	.listpage .posts_wrapper .post a {
		text-decoration: none;
	}
	.listpage .posts_wrapper .post .photo {
		margin-bottom: 10px;
	}
	.listpage .posts_wrapper .post .photo img {
		border-radius: 10px;
	}
	.listpage .posts_wrapper .post .title {
		padding: 0;
		font-size: 13px;
		line-height: 1.4em;
		text-align: justify;
		text-justify: inter-ideograph;
	}
	.listpage .posts_wrapper .post .cate_badge {
		margin: 0 auto 10px;
		width: 100%;
		height: 20px;
		line-height: 20px;
		font-size: 11px;
		border-radius: 10px;
	}

	/*----一覧ページ：お知らせ----*/
	#news_list.listpage {
		background-color: transparent;
	}
	#news_list .posts_wrapper {
		display: block;
		padding: 0 0 100px;
		max-width: 900px;
	}
	#news_list .posts_wrapper .post {
		margin: 0;
		width: 100%;
		border-bottom: 1px dashed #fff;
	}
	#news_list .posts_wrapper .post a {
		padding: 23px 10px;
		display: flex;
		justify-content: flex-start;
	}
	#news_list .posts_wrapper .post:first-child {
		border-top: 1px dashed #fff;
	}
	#news_list .posts_wrapper .post * {
		color: #fff;
	}
	#news_list .posts_wrapper .post .time {
		margin-right: 10px;
		display: inline-block;
		font-size: 14px;
	}
	#news_list .posts_wrapper .post .cate_badge {
		margin-right: 10px;
		display: inline-block;
		color: #2D77DB;
		font-size: 12px;
		background: #fff;
	}
	#news_list .posts_wrapper .post h3 {
		font-size: 16px;
		line-height: 24px;
	}
	#news_list .list_more_btn {
		margin: 60px auto 0;
		padding-bottom: 15px;
		width: 300px;
		height: auto;
		display: block;
		text-align: center;
		background: url("../img/list_btn_item.svg")bottom center no-repeat;
		border-radius: 40px;
	}
	#news_list .list_more_btn a {
		display: block;
		line-height: 60px;
		font-size: 18px;
		font-weight: bold;
		color: #2D77DB;
		background: #fff;
		text-decoration: none;
		border-radius: 40px;
	}
}

/*----一覧ページ：施工事例----*/
#works_list post {
	
}
#works_list .post .photo img {
	width: 100%;
	height: auto;
	aspect-ratio: 35 / 24;
}

/*サブページ：詳細ページ
------------------------------------------------------------ */
/*----詳細ページ：共通----*/
.postpage {
}
.postpage .posts_wrapper {
	margin: 0 auto;
	padding: 100px 0;
	width: 90%;
	max-width: 1200px;
	height: auto;
}


/*----詳細ページ：施工事例----*/
#works_single .posts_wrapper ul.pager {
	padding: 0;
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	display: flex;
	justify-content: space-between;
	list-style-type: none;
}
#works_single .posts_wrapper .pager li {
	width: 200px;
	height: 80px;
	line-height: 80px;
}
#works_single .posts_wrapper .pager li:nth-of-type(2) {
	text-align: center;
}
#works_single .posts_wrapper .pager li:nth-of-type(3)  {
	text-align: right;
}
#works_single .posts_wrapper .pager li a {
	display: block;
	color: #fff;
	text-decoration: none;
}
#works_single .post {
	margin: 0 auto 60px;
	width: 100%;
	max-width: 800px;
}
#works_single .post * {
	width: 100%;
	height: auto;
	color: #fff;
}
#works_single .post h3 {
}
#works_single .post .photo {
	margin-bottom: 40px;
}
#works_single .post .time {
	margin-bottom: 20px;
	color: #fff;
}
#works_single .post .content {
	line-height: 2.2;
}



/*サブページ：私たちについてページ
------------------------------------------------------------ */
#about-us_page .about_box {
	padding: 520px 0 0;
}
#about-us_page .service {
	padding: 100px 0;
	margin-bottom: 0;
	background: #fff;
/*	color: #3C8CE7;*/
	color: #0A0B0B;
}
#about-us_page .service > p {
	margin-bottom: 100px;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 2.2;
}
#about-us_page .service h3.title {
	position: relative;
	color: #3C8CE7;
}
#about-us_page > .service h3.title::before {
	background-color: #3C8CE7;
}
#about-us_page .service .flex {
	margin-bottom: 50px;
	width: 90%;
	display: flex;
	justify-content: space-between;
	flex-flow: row wrap;
	float: right;
}
#about-us_page .service .flex .text_box {
	padding-right: 76px;
	width: 55%;
}
#about-us_page .service .flex .text_box h4 {
	margin-bottom: 50px;
	line-height: 1.6;
	font-size: 40px;
	font-weight: bold;
}
#about-us_page .service .flex .text_box h4 span {
	display: block;
	font-size: 16px;
	font-weight: bold;
	color: #3C8CE7;
}
#about-us_page .service .flex .text_box p {
	margin-bottom: 40px;
	font-size: 16px;
	line-height: 2.0;
}
#about-us_page .service .flex .photo {
	width: 45%;
	/*	max-width: 600px;*/
	max-height: 450px;
	aspect-ratio: 60 / 45;
}
#about-us_page .service .flex .photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#about-us_page .service .slider {
	margin-bottom: 150px;
	clear: both;
}
#about-us_page .service .slider:last-child {
	margin-bottom: 50px;
}
#about-us_page .service .slider h5 {
	margin: 0;
	padding: 0 20px;
	font-size: 16px;
	line-height: 1.6em;
}
#about-us_page .service .slider span {
	display: inline-block;
	margin: 10px 0;
	padding: 0 20px;
	color: #fff;
	height: 24px;
	line-height: 24px;
	font-size: 13px;
	background: #3C8CE7;
	text-align: center;
	border-radius: 12px;
}


@media screen and (max-width: 896px) {
	#about-us_page .about_box {
		margin: 0 auto;
		padding: 210px 0 0;
		width: 90%;
	}
	#about-us_page .service {
		padding: 80px 0;
	}
	#about-us_page .service > p {
		margin-bottom: 50px;
		font-size: 18px;
		line-height: 1.6em;
	}
	#about-us_page .service h3.title {
		position: relative;
		color: #3C8CE7;
	}
	#about-us_page > .service h3.title::before {
		background-color: #3C8CE7;
	}
	#about-us_page .service .flex {
		margin: 0 auto 30px;
		width: 90%;
		display: block;
		float: none;
	}
	#about-us_page .service .flex .text_box {
		padding-right: 0;
		width: 100%;
	}
	#about-us_page .service .flex .text_box h4 {
		margin-bottom: 20px;
		font-size: 28px;
	}
	#about-us_page .service .flex .text_box h4 span {
		font-size: 13px;
	}
	#about-us_page .service .flex .text_box p {
		margin-bottom: 30px;
		font-size: 16px;
		line-height: 1.6em;
		text-align: justify;
		text-justify: inter-ideograph;
	}
	#about-us_page .service .flex .photo {
		width: 100%;
	}
	#about-us_page .service .flex .photo img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#about-us_page .service .slider {
		margin-bottom: 80px;
		clear: both;
	}
	#about-us_page .service .slider img {
		width: 100%;
		height: auto;
		aspect-ratio: 35 / 24;
	}
	#about-us_page .service .slider:last-child {
		margin-bottom: 0;
	}
	#about-us_page .service .slider h5 {
		padding: 0;
		font-size: 13px;
	}
	#about-us_page .service .slider span {
		display: block;
		padding: 0;
		width: 100%;
		height: 20px;
		line-height: 20px;
		font-size: 11px;
		border-radius: 10px;
	}
}


/*サブページ：会社案内
------------------------------------------------------------ */
#company_page .mainvisual {
/*	margin-bottom: 94px;*/
}
#company_page .message_box {
	padding: 100px 0 140px;
	background: url("../img/company_message_item.png") top left no-repeat;
	background-size: 863px auto;
}
#company_page .message_box .inner img {
	width: 45%;
	max-width: 450px;
	height: auto;
	border-radius: 50%;
	aspect-ratio: 1 / 1;
}
#company_page .message_box .message_text {
	padding-top: 60px;
	width: 55%;
	color: #fff;
}
#company_page .message_box .message_text h4 {
	margin-bottom: 40px;
	font-size: 24px;
	font-weight: bold;
}
#company_page .message_box .message_text p {
	font-size: 18px;
	line-height: 2.2;
}
#company_page .message_box .message_text p:nth-of-type(1) {
	margin-bottom: 30px;
}
#company_page .message_box .message_text p:last-child {
	text-align: right;
}
#company_page .company {
	padding-bottom: 100px;
	background: #fff;
}
#company_page .inner {
	display: flex;
	justify-content: space-between;
}
#company_page .inner h3 {
	position: relative;
	padding-bottom: 35px;
	width: 130px;
	height: 70px;
	color: #3C8CE7;
	font-size: 30px;
	font-weight: bold;
}
#company_page .inner h3::after {
	position: absolute;
	content: '';
	margin: 0 auto;
	display: block;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: #3C8CE7;
	border-radius: 3px;
}
#company_page .company table {
	width: 80%;
}
#company_page .company table tr {
	padding: 20px 0;
	display: block;
	border-bottom: 1px solid #989898;
}
#company_page .company table tr:last-child {
	border-bottom: none;
}
#company_page .company table th,
#company_page .company table td {
	font-size: 16px;
	font-weight: normal;
}
#company_page .company table th {
	width: 170px;
	padding: 0 0 0 30px;
	text-align: left;
	vertical-align: top;
}
#company_page .company table td {
	padding: 0 0 0 60px;
	line-height: 2.2;
}
#company_page .company .column {
	margin-bottom: 40px;
}
#company_page .company div:last-child {
	margin-bottom: 0;
}
#company_page .company .column .inner {
	width: calc(90% + 40px);
	max-width: 1240px;
	flex-flow: row wrap;
}
#company_page .company .column .inner div {
	margin: 20px 20px;
	max-width: calc(100%/3 - 40px);
	height: auto;
	aspect-ratio: 34 / 24;
}
#company_page .company .column .inner div img {
	width: 100%;
	height: auto;
	object-fit: cover;
}
#company_page .company .map {
	margin: 0 auto 80px;
	width: 90%;
	max-width: 1200px;
	height: 380px;
}
#company_page .company .map iframe {
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 896px) {
	#company_page .message_box {
		padding: 100px 0 100px;
		background: url("../img/company_message_item.png") top left no-repeat;
		background-size: 90% auto;
	}
	#company_page .message_box .inner {
		display: block;
	}
	#company_page .message_box .inner img {
		margin: 0 auto;
		width: 90%;
		max-width: 450px;
		height: auto;
		border-radius: 50%;
		aspect-ratio: 1 / 1;
	}
	#company_page .message_box .message_text {
		padding-top: 60px;
		width: 100%;
		color: #fff;
	}
	#company_page .message_box .message_text h4 {
		margin-bottom: 40px;
		font-size: 24px;
		line-height: 1.9;
		font-weight: bold;
	}
	#company_page .message_box .message_text p {
		font-size: 16px;
		line-height: 2.2;
	}
	#company_page .message_box .message_text p:nth-of-type(1) {
		margin-bottom: 30px;
	}
	#company_page .message_box .message_text p:last-child {
		text-align: right;
	}
	#company_page .company {
		padding-bottom: 40px;
		background: #fff;
	}
	#company_page .inner {
/*		display: block;*/
		justify-content: space-between;
		flex-flow: row wrap;
	}
	#company_page .inner h3 {
		position: relative;
		padding-bottom: 35px;
		width: 100%;
		height: 70px;
		color: #3C8CE7;
		font-size: 30px;
		font-weight: bold;
	}
	#company_page .inner h3::after {
		position: absolute;
		content: '';
		margin: 0 auto;
		display: block;
		left: 0;
		bottom: 0;
		width: 50px;
		height: 3px;
		background: #3C8CE7;
		border-radius: 3px;
	}
	#company_page .company table {
		width: 100%;
	}
	#company_page .company table tr {
		padding: 20px 0;
		display: block;
		border-bottom: 1px solid #989898;
	}
	#company_page .company table tr:last-child {
		border-bottom: none;
	}
	#company_page .company table th,
	#company_page .company table td {
		font-size: 16px;
		font-weight: normal;
	}
	#company_page .company table th {
		width: auto;
		min-width: 140px;
		padding: 0 0 0 15px;
		text-align: left;
		vertical-align: top;
	}
	#company_page .company table td {
		padding: 0 0 0 15px;
		font-size: 14px;
		line-height: 2.2;
	}
	#company_page .company .column {
		margin-bottom: 60px;
	}
	#company_page .company div:last-child {
		margin-bottom: 0;
	}
	#company_page .company .column .inner {
		width: calc(90% + 40px);
		max-width: 1240px;
		flex-flow: row wrap;
	}
	#company_page .company .column .inner div {
		margin: 10px 10px;
		max-width: calc(100%/3 - 20px);
	}
	#company_page .company .map {
		margin: 0 auto 80px;
		width: 90%;
		max-width: 1200px;
		height: 380px;
	}
	#company_page .company .map iframe {
		width: 100%;
		height: 100%;
	}
}

@media screen and (max-width: 560px) {
	#company_page .company .column .inner div {
		margin: 10px 10px;
		max-width: 100%;
	}
	#company_page .company .column .award div {
		margin: 5px 5px;
		max-width: calc(100%/2 - 10px);
	}
}

/*サブページ：リクルート
------------------------------------------------------------ */
#recruit_page .contents {
	padding: 0 0 100px;
	color: #fff;
}
#recruit_page .contents .inner {
	max-width: 900px;
}
#recruit_page .contents table {
	width: 100%;
	border-top: 1px solid #fff;
}
#recruit_page .contents table tr {
	display: block;
	border-bottom: 1px solid #fff;
}
#recruit_page .contents table th,
#recruit_page .contents table td {
	padding: 15px;
	font-size: 16px;
	font-weight: lighter;
}
#recruit_page .contents table th {
	width: 100px;
	vertical-align: text-top;
	text-align: left;
	word-break: keep-all;
}
#recruit_page .contents table td {
	padding-left: 70px;
	line-height: 2.0;
}

@media screen and (max-width: 896px) {
	#recruit_page .contents {
		padding: 0 0 100px;
		color: #fff;
	}
	#recruit_page .contents .inner {
		max-width: 900px;
	}
	#recruit_page .contents table {
		width: 100%;
		border-top: 1px solid #fff;
	}
	#recruit_page .contents table tr {
		display: block;
		border-bottom: 1px solid #fff;
	}
	#recruit_page .contents table th,
	#recruit_page .contents table td {
		padding: 15px;
		font-size: 16px;
		font-weight: lighter;
	}
	#recruit_page .contents table th {
		width: 100px;
		vertical-align: text-top;
		text-align: left;
		word-break: keep-all;
	}
	#recruit_page .contents table td {
		padding-left: 20px;
		line-height: 2.0;
		font-size: 14px;
	}
}


/*サブページお問合せ
------------------------------------------------------------ */
#contact_page .inner {
	padding: 0 0 100px;
	max-width: 850px;
}
#contact_page .inner > p {
	margin-bottom: 80px;
	color: #fff;
	font-size: 18px;
	line-height: 2.4;
}
#contact_page .inner > p:nth-of-type(2){
	margin-bottom: 60px;
	color: #fff;
	font-size: 18px;
}
#contact_page select,
#contact_page input {
	padding: 10px;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
}
#contact_page select {
	width: 60%;
}
#contact_page dl {
	margin-bottom: 30px;
}
#contact_page .form dl dt {
	margin-bottom: 10px;
	color: #fff;
	font-size: 18px;
}
#contact_page .form dl dt span {
	color: #FF0000;
	font-size: 14px;
	font-weight: bold;
	line-height: 18px;
}
#contact_page .form .flex {
	display: flex;
	justify-content: space-between;
}
#contact_page .form .flex dl {
	width: 47%
}
#contact_page .form textarea {
	width: 100%;
	height: 200px;
}
#contact_page .form .acceptance {
	margin-bottom: 80px;
	text-align: center;
	color: #fff;
}
#contact_page .form .acceptance input {
	width: auto;
	height: auto;
	border: none;
} 
#contact_page .form .acceptance a {
	color: #fff;
}
#contact_page .form .submit, 
#contact_page .form .submit p {
	position: relative;
	margin: 0 auto;
	width: 350px;
	height: 76px;
	text-align: center;
}
#contact_page .form #submit {
	width: 100%;
	height: 100%;
	background: #fff url("../img/btn_item.svg") center right 30px no-repeat;
	border-radius: 50px;
	border: none;
}
#contact_page .form .submit::after {
	cursor: pointer;
	position: absolute;
	content: '送信する';
	top: 0;
	left: 30px;
	right: 0;
	width: 80px;
	height: 76px;
	font-size: 18px;
	color: #2D77DB;
	line-height: 76px;
}
#contact_page .form .wpcf7-spinner{
	display: none;
}

@media screen and (max-width: 896px) {
	#contact_page .inner {
		padding: 0 0 100px;
		max-width: 900px;
	}
	#contact_page .inner > p {
		margin-bottom: 80px;
		color: #fff;
		font-size: 16px;
		line-height: 2.4;
	}
	#contact_page .inner > p:nth-of-type(2){
		margin-bottom: 60px;
		color: #fff;
		font-size: 16px;
	}
	#contact_page select,
	#contact_page input {
		width: 100%;
		height: 50px;
	}
	#contact_page select {
		width: 60%;
	}
	#contact_page dl {
		margin-bottom: 20px;
	}
	#contact_page .form dl dt {
		margin-bottom: 10px;
		color: #fff;
		font-size: 16px;
	}
	#contact_page .form dl dt span {
		color: #FF0000;
		font-size: 14px;
		font-weight: bold;
	}
	#contact_page .form .flex {
		display: block;
		justify-content: space-between;
	}
	#contact_page .form .flex dl {
		width: 100%;
	}
	#contact_page .form textarea {
		width: 100%;
		height: 200px;
	}
	#contact_page .form .acceptance {
		margin-bottom: 80px;
		text-align: center;
		color: #fff;
	}
	#contact_page .form .acceptance input {
		width: auto;
		height: auto;
		border: none;
	} 
	#contact_page .form .acceptance a {
		color: #fff;
	}
	#contact_page .form .submit, 
	#contact_page .form .submit p {
		position: relative;
		margin: 0 auto;
		width: 350px;
		height: 76px;
		text-align: center;
	}
	#contact_page .form #submit {
		width: 100%;
		height: 100%;
		background: #fff url("../img/btn_item.svg") center right 30px no-repeat;
		border-radius: 50px;
		border: none;
	}
	#contact_page .form .submit::after {
		position: absolute;
		content: '送信する';
		top: 0;
		left: 30px;
		right: 0;
		width: 80px;
		height: 76px;
		font-size: 18px;
		color: #2D77DB;
		line-height: 76px;
	}
	#contact_page .form .wpcf7-spinner{
		display: none;
	}
}


/*サブページフッター
------------------------------------------------------------ */
#sub_footer {
	padding: 100px 0 30px;
}
#sub_footer .inner {
	margin-bottom: 50px;
}
#sub_footer h3 {
	width: 40%;
	max-width: 260px;
}
#sub_footer .flex {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
#sub_footer .contact_text {
	width: 70%;
}
#sub_footer .contact_text p {
	margin-bottom: 20px;
}

#sub_footer p {
	font-size: 15px;
}
#sub_footer a {
	text-decoration: none;
}
#sub_footer .tell {
	margin-bottom: 20px;
	display: block;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
}
#sub_footer .contact_btn {
	width: 348px;
	font-weight: bold;
}
#sub_footer .contact_btn a {
	padding-left: 30px; 
	display: block;
	color: #3C8CE7;
	line-height: 76px;
	border-radius: 40px;
	background: #fff url("../img/btn_item.svg") center right 30px no-repeat;
}
#sub_footer .information p {
	font-size: 13px;
}

@media screen and (max-width: 896px) {
	#sub_footer {
		padding: 100px 0 30px;
	}
	#sub_footer .inner {
		position: relative;
		display: block;
		margin-bottom: 60px;
	}
	#sub_footer .inner:nth-of-type(2) {
		padding-top: 120px;
		margin-bottom: 0;
	}
	#sub_footer h3 {
		width: 100%;
	}
	#sub_footer .flex {
		width: 100%;
		display: block;
	}
	#sub_footer .contact_text {
		width: 100%;
	}
	#sub_footer .contact_text p {
		margin-bottom: 20px;
	}

	#sub_footer p {
		font-size: 15px;
	}
	#sub_footer a {
		text-decoration: none;
	}
	#sub_footer .tell {
		margin-bottom: 20px;
		display: block;
		color: #fff;
		font-size: 30px;
		font-weight: bold;
	}
	#sub_footer .contact_btn {
		margin: 0 auto;
		width: 348px;
		font-weight: bold;
	}
	#sub_footer ul {
		margin-bottom: 40px;
		justify-content: flex-start;
		flex-flow: row wrap;
	}
	#sub_footer ul li {
		padding-left: 0;
	}
	#sub_footer ul li a {
		font-size: 14px;
	}
	#sub_footer .contact_btn a {
		padding-left: 30px; 
		display: block;
		color: #3C8CE7;
		line-height: 76px;
		border-radius: 40px;
		background: #fff url("../img/btn_item.svg") center right 30px no-repeat;
	}
	#sub_footer .information {
		margin-bottom: 40px;
	}
	#sub_footer .information p {
		font-size: 13px;
	}
	#sub_footer .navi {
		width: 100%;
		top: 0;
		left: 0;
	}
	#sub_footer small {
		font-size: 12px;
	}
}