@charset "UTF-8";

/*
※※※※※※※※※※※※※※※※

共通

※※※※※※※※※※※※※※※※
*/
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;
}


.cf:after {
    content: "";
    display: block;
    clear: both;
}

* {
	box-sizing: border-box;
}

html {
	font-size:62.5%;
	}

body {
	min-width: 1100px;
	font-size: 17px;
  font-size: 1.7rem;
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}

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

a:hover,
a img:hover{
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)"; 
	-moz-opacity:0.7; 
	-khtml-opacity: 0.7; 
	opacity:0.7;
	zoom:1;
}*/

p {
	margin-bottom:1.2em;
	line-height: 1.6em;
}

img {
	vertical-align: bottom;
}

.red {
	color: #d32902;
}

.bold {
	font-weight: bold;
}

@media screen and (max-width:767px) { 
	body {
		min-width: inherit;
	}
}
/*
※※※※※※※※※※※※※※※※

構造

※※※※※※※※※※※※※※※※
*/
.wrap {
	width: 100%;
}

.inner {
	width: calc(1080px + 20px);
	margin: 0 auto;
	padding: 0 10px;
}

.inner2 {
	width: calc(1080px + 20px - 120px);
	margin: 0 auto;
	padding: 0 10px;
}

.title {
	text-align: center;
	font-size: 4.8rem;
	line-height: 1.2em;
	background-color: #007fcc;
	color: #fff;
	height: 223px;
	padding-top:calc(111px - 0.6em);
	position: relative;
	margin-bottom: 2em;
	width: 100%;
}

.title:after {
	content:'';
	display:block;
	background-image: url("../images/title_triangle.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 254px;
	height: 39px;
	position: absolute;
	bottom: -37px;
	left: calc(50% - 127px);
}

.s_title {
	font-size: 3.6rem;
	line-height: 1.2em;
	width: 590px;
	text-align: center;
	color: #fff;
	margin: 0 auto;
	background-color: #007fcc;
	margin-bottom: 50px;
	font-weight: bold;
	padding:0.4em 0.5em;
}

@media screen and (max-width:767px) { 
	.inner,.inner2 {
		width: 100%;
		padding: 0 3%;
	}
	
	.title {
		text-align: center;
		font-size: 2.5rem;
		line-height: 1.2em;
		background-color: #007fcc;
		color: #fff;
		height: 120px;
		padding-top:calc(60px - 0.6em);
		position: relative;
		margin-bottom: 2em;
		width: 100%;
	}

	.title:after {
		content:'';
		display:block;
		background-image: url("../images/title_triangle.png");
		width: 30%;
		height: 25px;
		position: absolute;
		bottom:-20px;
		left: calc(50% - 15%);
	}
	
	.s_title {
		font-size: 2rem;
		width: 100%;
		max-width: 500px;
		margin-bottom: 50px;
	}
}
/*
※※※※※※※※※※※※※※※※

ヘッダー

※※※※※※※※※※※※※※※※
*/
header {
	height: 108px;
	background-color: #fff;
	width: 100%;
  position: fixed;/* 250724 */
  z-index: 3;
  top:0;
}

header .header_left {
	float: left;
	width: 920px;
}

header h1 {
	font-size: 1.2rem;
	margin-top:0.5em;
	margin-bottom: 1em;
}

header .logo {
	width: 292px;
	float: left;
}

header .tel {
	float: right;
	width: 372px;
}

header .mail_btn {
	float: right;
	width: 136px;
	-webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

header .mail_btn:hover {
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)"; 
	-moz-opacity:0.7; 
	-khtml-opacity: 0.7; 
	opacity:0.7;
	zoom:1;
}

header .sp_line,
header .sp_mail{ /* 250724 */
  display: none; 
}

@media screen and (max-width:767px) { 
	header {
		height: 60px;/* 250724 */
	}

	header .header_left {
		float: none;
		width: 100%;
	}
	
	header h1 {
		font-size: 1rem;
    margin-bottom: 0.5em;/* 250724 */
	}
	
	header .logo {
		width: auto;
		height: 28px;/* 250724 */
	}
	
	header .tel {
		display: none;
	}
	
	header .mail_btn {
		display: none;
	}
  
  header .sp_line { /* 250724-1 */
    display: block;
    width: 100px;
    position: fixed;
    right: 5px;
    top:20px;
  }
  
  header .sp_mail { /* 250724-1 */
    display: block;
    width: 100px;
    position: fixed;
    right: 110px;
    top:20px;
  }
  
  header .sp_line img,
  header .sp_mail img{ /* 250724-1 */
    width: 100%;
  }
}

/*
※※※※※※※※※※※※※※※※

メインビジュアル

※※※※※※※※※※※※※※※※
*/
.mainvisual {
	background-image: url("../images/mainvisual_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding-top: 20px;
  margin-top: 108px; /* 250724 */
}

.mainvisual img {
	width: 100%;
}

.mainvisual img.pc {
	display:inline;
}

.mainvisual img.sp {
	display: none;
}

@media screen and (max-width:767px) {
  .mainvisual {
    margin-top:60px; /* 250724 */
  }
	.mainvisual img.pc {
		display: none;
	}

	.mainvisual img.sp {
		display: inline;
	}
}

/*
※※※※※※※※※※※※※※※※

安心

※※※※※※※※※※※※※※※※
*/
.anshin {
	padding:50px 0;
}

.anshin .flex {
	display: flex;
	justify-content: space-around;
}

.anshin .flex li {
	width: 255px;
}

.anshin .flex li img {
	width: 100%;
}

.anshin figcaption {
	font-size: 2.4rem;
	color: #007fcc;
	text-align: center;
	padding-top: 1em;
  line-height: 1.2em;
}

.anshin .text {
	width: 910px;
	margin-top: 3em;
	font-size: 1.6rem;
	line-height: 1.6em;
	margin: 3em auto 0;
}

@media screen and (max-width:767px) {
	.anshin .flex li {
		width: 33%;
}
	.anshin figcaption {
		font-size: 3.3vw;
		padding-left: 0;
	}
	
	.anshin .text {
		width: 100%;
		margin: 1em auto 0;
	}
}


/*
※※※※※※※※※※※※※※※※

お問い合わせ関連

※※※※※※※※※※※※※※※※
*/

/*
※※※※※※※※※※※※※※※※

お問い合わせ関連

※※※※※※※※※※※※※※※※
*/

.contact {
	background-image: url("../images/contact_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding:30px 0 50px;
	width: 100%;
}

.contact .tel_banner {
	margin: 0 auto 100px;
	width: 1003px;
	height: 243px;
}

.contact .tel_banner.pc {
	display: block;
}

.contact .tel_banner.sp {
	display: none;
}

.contact .btn_wrap {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  /*background-color: rgba(255,255,255,0.9);
  padding:50px 20px;*/
}

.contact .btn_wrap > a {
  width: 48%;
  display:block;
  height: 100px;
  text-decoration: none;
  border-radius: 10px;
  position: relative;
  line-height: 80px;
  color: #fff;
  padding:10px 20px 10px 100px;
  font-size: 2.5rem;
  transition: 0.3s;
}

.contact .btn_wrap .mail {
  background-image: url(../images/icon_mail.png);
  background-position: left 30px center;
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-color: chocolate;
  box-shadow: 1px 8px #B7591B;
}

.contact .btn_wrap .line {
  background-image: url(../images/line_fukidashi.png);
  background-position: left 30px center;
  background-repeat: no-repeat;
  background-size: 50px auto;
  background-color: #00b900;
  box-shadow: 1px 8px #018a01;
}

.contact .btn_wrap > a:hover {
  box-shadow: none;
  transform: translateY(8px);
}

.contact .btn_wrap a::after {
  content:'';
  display:block;
  width:20px;
  height: 20px;
  background-image: url(../images/icon_arrow_right.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  background-position: center;
  right: 30px;
  top: calc(50% - 10px);
}

.contact .btn_wrap > a > span {
  position: absolute;
  background-color: #fff;
  padding: 0.3em 0.5em;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  line-height: 1em;
  top: -0.7em;
  width: 60%;
  display:block;
  font-size: 1.6rem;
}



.contact .btn_wrap .mail span {
  color: chocolate;
  border: 3px solid chocolate;
}

.contact .btn_wrap .line span {
  color: #00b900;
  border: 3px solid #00b900;
}

@media screen and (max-width:767px) {
	
	.contact .tel_banner {
		display: block;
		margin: 0 auto 100px;
		width: 100%;
		height: auto;
	}
	
	.contact .tel_banner.pc {
		display: none;
	}
	
		.contact .tel_banner.sp {
			display: block;
			margin-bottom: 30px;
		}
	
	.contact .tel_banner.sp img {
		width: 100%;
	}
  
  .contact .btn_wrap > a {
    width: 100%;
    height: 80px;
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    line-height: 60px;
    color: #fff;
    padding:10px 20px 10px 80px;
    font-size: 2.1rem;
    transition: 0.3s;
  }
  
  .contact .btn_wrap .mail {
    background-position: left 20px center;
    background-size: 40px auto;
    box-shadow: 1px 6px #B7591B;
    margin-bottom: 30px;
  }

  .contact .btn_wrap .line {
    background-position: left 20px center;
    background-size: 40px auto;
    box-shadow: 1px 6px #018a01;
  }
  
  .contact .btn_wrap > a:hover {
    box-shadow: none;
    transform: translateY(6px);
  }

  .contact .btn_wrap a::after {
    width:15px;
    height: 15px;
    right: 20px;
    top: calc(50% - 7.5px);
  }
  
  .contact .btn_wrap > a > span {
    letter-spacing: 0.01em;
    padding: 0.2em 0.5em;
    width: 80%;
    font-size: 1.6rem;
    left: 10%;
  }
  
}

/*
※※※※※※※※※※※※※※※※

サービスのご紹介

※※※※※※※※※※※※※※※※
*/
.service {
	padding-bottom: 10px;
}

.service .flex {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	flex-direction: row;
}

.service .flex > li {
	width: 43%;
	border: 3px solid #007fcc;
	margin-bottom: 40px;
}

.service .photo_area {
	position: relative;
}

.service .photo_area img {
	width: 100%;
}

.service .photo_area .place {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	line-height: 63px;
	color: #fff;
	text-align: center;
	font-size: 4.8rem;
	text-shadow: 3px 3px 7px #333;
	background-color: rgba(0,127,204,0.6);
}

.service .text_area .text1 {
	background-color: #007fcc;
	color: #fff;
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.4em;
}

.service .trouble_list {
	padding:0 1em;
	margin-bottom: 1em;
}

.service .trouble_list li {
	background-image: url("../images/list_icon_water.jpg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 14px auto;
	line-height: 1.4em;
	padding-left: 1.5em;
	font-size: 1.8rem;
	margin-bottom: 0.5em;
}

.service .price {
	width: 372px;
	padding-left:1em;
	margin-bottom: 10px;
}

@media screen and (max-width:767px) {

	
	.service .flex > li {
		width: 100%;
		margin-bottom: 20px;
	}
	
	.service .price {
		width: 95%;
		max-width: 372px;
		padding-left:1em;
		margin-bottom: 10px;
	}
}

/*
※※※※※※※※※※※※※※※※

選ばれる理由

※※※※※※※※※※※※※※※※
*/

.reason .title {
	padding-top: calc(111px - 1.2em);
}

.reason .check_title {
	background-image: url("../images/reason_check.png");
	background-size: 67px auto;
	background-repeat: no-repeat;
	background-position: left center;
	line-height: 65px;
	font-size: 4.8rem;
	color: #007fcc;
	padding-left: 80px;
	margin-bottom: 1em;
	font-weight: bold;
	letter-spacing: 0;
}

.account {
	padding-bottom: 50px;
}

.account .image01 {
	width: 958px;
	margin-bottom: 100px;
}

.account .text01 {
	width: 899px;
}

.skill {
	background-color: #edeef6;
	padding:50px 0;
}

.skill .flex {
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}

.skill .text_area {
	width: 47%;
}

.skill .image_area {
	width: 47%;
}

.skill .image_area img {
	width: 100%;
}

.area {
	padding: 50px 0;
}

.area .flex {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
}

.area .text_area {
	width: 45%;
}

.area img{
	width: 100%;
}

.area .image_area {
	width: 50%;
}

.area .image_area img {
	margin-bottom: 10px;
}

@media screen and (max-width:767px) {
	.reason .title {
		padding-top: calc(60px - 1.2em);
	}
	
	.reason .check_title {
		background-position: left top;
		background-size: 28px auto;
		line-height: 1.2em;
		font-size: 2.3rem;
		padding-left: 3.5rem;
	}

	.account .image01 {
		width: 100%;
		margin-bottom: 40px;
	}

	.account .text01 {
		width: 100%;
	}
	
	.skill .flex {
		justify-content: space-between;
		flex-direction: column;
	}

	.skill .text_area {
		width: 100%;
	}

	.skill .image_area {
		width: 100%;
	}
	
	.area .flex {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}

	.area .text_area {
		width: 100%;
	}
	
	.area .text_area img {
		display: none;
	}
	
	.area .image_area {
		width: 100%;
	}
	
	.area .image_area p {
		font-size: 3.5vw;
	}
}

/*
※※※※※※※※※※※※※※※※

サービスの流れ

※※※※※※※※※※※※※※※※
*/
.flow {
	padding-bottom: 50px;
}
.flow .flex {
	display: flex;
	justify-content: space-around;
	flex-direction: row;
	flex-wrap: wrap;
}

.flow .flex > div {
	width: 27%;
	position: relative;
}

.flow .flex > div:after,
.flow .flex > div:before{
	position: absolute;
	content:'';
	display: block;
	background-image:url("../images/flow_arrow.png");
	width: 90px;
	height: 50px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	right: -80px;
	top: 100px;
	z-index: 999;
}

.flow .flex > div:before {
	display: none;
}

.flow .flex > div:nth-child(4):before {
	display:block;
	left: -55px;
	top: 100px;
}

.flow .flex > div:nth-child(3):after {
	right:-40px;
}


.flow .flex > div:nth-child(5):after,
.flow .flex > div:nth-child(6):after{
	display: none;
}

.flow .flex > div img {
	width: 100%;
}

.flow .text1 {
	font-size: 1.8rem;
	margin-bottom: 0.5em;
	color: #007fcc;
	font-weight: bold;
}

.flow .text2 {
	font-size: 1.4rem;
	margin:1em 0;
}

.flow .credit {
	padding-top: 20px;
}

.flow .credit .paypay {
	width: 60%;
	margin-left: 10px;
}

.flow .maker_image {
	max-width: 750px;
	display: block;
	margin: 0 auto 30px;
}

.flow .text3 {
	margin: 0 50px;
}

.flow .frequent .l_text {
	border-bottom: 3px solid #007fcc;
	line-height: 2em;
	font-size: 2.5rem;
	color: #007fcc;
	background-image: url("../images/list_icon_water.jpg");
	background-size: 18px auto;
	background-repeat: no-repeat;
	background-position: left 5px center;
	padding-left: 27px;
	margin: 0.5em 0;
}

.flow .frequent ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flow .frequent li {
	width: 33%;
	padding: 0.3em 0;
	position: relative;
	padding-left:1.5em;
	font-size: 1.4rem;
}

.flow .frequent li:before {
	color: #007fcc;
	content: '・';
	position: absolute;
	left:0;
	top:-0.15em;
	font-size: 2em;
}

@media screen and (max-width:767px) {
	.flow .flex > div {
		width: 46%;
		position: relative;
	}
	
	.flow .flex > div:after,
	.flow .flex > div:before{
		position: absolute;
		content:'';
		display: none;
		background-image:url("../images/flow_arrow.png");
		width: 45px;
		height: 25px;
		top: 18vw;
		z-index: 999;
	}
	
	.flow .flex > div:nth-child(2):after,
	.flow .flex > div:nth-child(4):after {
		right: -10px;
		display: block;
	}
	
	.flow .flex > div:nth-child(1):after,
	.flow .flex > div:nth-child(3):after{
		right: -30px;
		display:block;
	}
	
	.flow .flex > div:nth-child(3):before,
	.flow .flex > div:nth-child(5):before{
		left: -10px;
		right: inherit;
		display:block;
	}
	
	.flow .flex > div:nth-child(4):before {
		display: none;
	}
	
	.flow .text1 {
		font-size: 1.7rem;
		margin-bottom: 0.5em;
	}
	
	.flow .credit .paypay {
		margin-left: 5px;
	}

	.flow .maker_image {
		width: 100%;
	}
	
	.flow .text3 {
		margin: 0;
	}
  
  .flow .frequent li {
		width: 50%;
		font-size: 1.3rem;
	}
}



/*
※※※※※※※※※※※※※※※※

よくあるお問い合わせ

※※※※※※※※※※※※※※※※
*/
.faq {
	padding-bottom: 50px;
}

.faq .faqlist {
	margin-bottom: 4em;
}

.faq .faqlist dt {
	cursor: pointer;
	background-color: #007fcc;
	color: #fff;
	line-height: 1.4em;
	padding:0.8em 70px;
	font-size: 2.4rem;
	background-image: url("../images/question.png");
	background-size: 41px auto;
	background-repeat: no-repeat;
	background-position: left 10px top 0.6em;
	position: relative;
}

.faq .faqlist dt:after {
	content:'';
	display: block;
	background-image:url("../images/faq_arrow.png");
	width: 25px;
	height: 17px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: absolute;
	top:calc(50% - 8px);
	right: 20px;
}

.faq .faqlist dt.open:after {
	transform:rotateZ(180deg);
}

.faq .faqlist dd {
	padding:2em 3em 4em 70px;
	font-size: 1.8rem;
	position: relative;
	background-image: url("../images/answer.png");
	background-size: 41px auto;
	background-repeat: no-repeat;
	background-position: left 10px top 1.5em;
	display: none;
	line-height: 1.6em;
}

.faq .faqlist dd:after {
	position: absolute;
	content: '';
	display: block;
	height:3px;
	width: 600px;
	background-color: #007fcc;
	bottom: 0;
	left:calc(50% - 300px);
}

@media screen and (max-width:767px) {
	.faq {
		padding-bottom: 30px;
	}

	.faq .faqlist {
		margin-bottom: 3em;
	}
	
	.faq .faqlist dt {
		line-height: 1.4em;
		padding:0.8em 50px;
		font-size: 1.8rem;
		background-size: 30px auto;
		background-position: left 10px top 0.6em;
	}
	
	.faq .faqlist dt:after {
		width: 20px;
		height: 14px;
		right: 15px;
	}
	
	.faq .faqlist dd {
		padding:2em 40px 2em 50px;
		font-size: 1.6rem;
		position: relative;
		background-image: url("../images/answer.png");
		background-size: 30px auto;
		background-position: left 10px top 1.5em;
		line-height: 1.6em;
	}
}

/*
※※※※※※※※※※※※※※※※

お客様の声

※※※※※※※※※※※※※※※※
*/

.voice {
	padding-bottom: 100px;
}

.voice .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	margin-bottom: 50px;
}

.voice .text_area {
	width: 50%;
}

.voice .image_area {
	width: 45%;
}

.voice .image_area img {
	width: 100%;
}

.voice .voice_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
}

.voice .voice_list li {
	width: 450px;
	min-height: 350px;
	border: 2px solid #007fcc;
	margin-bottom: 50px;
}

.voice .voice_list .head {
	background-color: #007fcc;
	color: #fff;
	padding:5px 20px;
	background-repeat: no-repeat;
	background-position: 10% center;
}

.voice .voice_list li.man .head {
	background-image: url(../images/voice_man.png);
	background-size: 66px auto;
}

.voice .voice_list li.woman .head {
	background-image: url(../images/voice_woman.png);
	background-size: 58px auto;
}

.voice .voice_list .info_wrap {
	width: 70%;
	float: right;
}

.voice .voice_list .situation {
	line-height: 1.4em;
	padding:0.8em 0;
	border-bottom: 2px solid #fff;
	margin:0;
}

.voice .voice_list .address {
	line-height: 3em;
	margin: 0;
}

.voice .voice_list .comment {
	padding: 20px;
}

@media screen and (max-width:767px) {
	.voice .text_area {
		width: 100%;
	}

	.voice .image_area {
		width: 100%;
	}
	
	.voice .voice_list li {
		width: 100%;
		max-width: 450px;
		min-height: 350px;
		border: 2px solid #007fcc;
		margin-bottom: 50px;
		margin: 0 auto 50px;
	}
}


/*
※※※※※※※※※※※※※※※※

ネット割

※※※※※※※※※※※※※※※※
*/
.campaign {
	padding-top:100px;
	padding-bottom: 50px;
}

.campaign .head_text {
	font-size: 2rem;
}
.campaign .head_text span {
	color: #d32902;
	font-size: 3rem;
	font-weight: bold;
}

.campaign .main_text {
	background-image: url(../images/campaign_bg.png);
	background-repeat: no-repeat;
	background-position: right top;
	padding:100px 200px 0 20px;
	background-size: 960px auto;
	font-size: 1.8rem;
}

.campaign .kome {
	font-size: 1.4rem;
}

.campaign .kome li {
	line-height: 1.6em;
}

.campaign .kome li:before {
	content:'※';
}

@media screen and (max-width:767px) {
	.campaign {
		padding-top:50px;
		padding-bottom: 25px;
	}
	
	.campaign .head_text {
		font-size: 1.8rem;
		margin-bottom: 0.1em;
	}
	.campaign .head_text span {
		color: #d32902;
		font-size: 2.5rem;
		font-weight: bold;
	}
	
	.campaign .main_text {
		background-image: url(../images/campaign_bg_sp.png);
		background-size: 100% auto;
		background-position: right top;
		padding:33vw 20px 0 20px;
		font-size: 1.6rem;
	}
}

/*
※※※※※※※※※※※※※※※※

お問い合わせフォーム

※※※※※※※※※※※※※※※※
*/
.contactform {
	padding-bottom: 50px;
  padding-top:108px;
  margin-top:-108px
}

.contactform .campaign {
	padding-top:0;
}

.contactform .tel_banner {
	width: 100%;
}

.contactform .tel_banner.pc {
	display: inline;
}

.contactform .tel_banner.sp {
	display: none;
}

.contactform .form_title {
	color: #007fcc;
	font-size: 3.6rem;
	width: 650px;
	text-align: center;
	border-top:1px solid #007fcc;
	border-bottom: 1px solid #007fcc;
	padding: 0.5em 0;
	font-weight: bold;
	margin:2em auto 3em;
}

.contactform table {
	width: 100%;
}

.contactform tr {
	border-bottom: 1px solid #ccc;
}

.contactform .no_border {
	border-bottom: none;
}

.contactform th {
	width: 40%;
	padding:1em 0;
	text-align: left;
	font-size: 2.4rem;
	vertical-align: middle;
}

.contactform td {
	width: 60%;
	padding: 1em 0;
}

.contactform .must {
	position: relative;
}

.contactform .must:after {
	content:'必須';
	display: block;
	background-color: #d32902;
	font-size: 2rem;
	line-height: 1.2em;
	width:3em;
	text-align: center;
	position: absolute;
	right: 10px;
	top: calc(50% - 0.6em);
	color: #fff;
}

.contactform p.must:after {
	right:auto;
	left:5.5em;
}
.contactform td p {
	margin-bottom: 0;
	font-size: 2.4rem;
}

input[type="text"],
input[type="tel"],
input[type="email"]
{
	width: 100%;
	line-height: 2em;
	font-size: 2rem;
	border:1px solid #ccc;
	padding:0 0.5em;
}

select {
	width: 50%;
	font-size: 2rem;
	border: 1px solid #ccc;
	height: 2em;
	padding:0 0.5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: #fff;
  color: #000;
}

.wpcf7-form-control-wrap[data-name='your-pref']::after {
  content: '▼'; 
  font-size: 12px;
  color: #333;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; 
}

textarea {
	width: 100%;
	height: 150px;
	border: 1px solid #ccc;
	font-size: 2rem;
	padding:0.5em;
}

input[type="submit"] {
	width: 295px;
	line-height: 75px;
	background-color: #007fcc;
	color: #fff;
	font-size: 2.4rem;
	border: 1px solid #007fcc;
	cursor: pointer;
	margin: 1.5em auto 0;
	display: block;
	-webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input[type="submit"]:hover {
	background-color: #fff;
	color: #007fcc;
}

.contactform .send_info1 {
	text-align: center;
	margin-top: 2em;
}

.contactform .send_info2 {
	text-align: center;
}


.contactform .wpcf7-not-valid-tip {
	color: #d32902;
	margin-top:0.5em;
	font-size: 1.6rem;
	display: block;
	line-height: 1em;
	font-weight: bold;
}

.contactform .wpcf7 form .wpcf7-response-output {
	font-weight: bold;
	line-height: 1.4em;
	padding:1em;
	color:#d32902;
	border:2px solid #d32902;
}

 .contactform .wpcf7 form.invalid .wpcf7-response-output {
	color:#d32902;
	border:2px solid #d32902;
}

 .contactform .wpcf7 form.sent .wpcf7-response-output {
	color:#007fcc;
	border:2px solid #007fcc;
	position: relative;
}

@media screen and (max-width:767px) {
  .contactform {
    padding-top:60px;
    margin-top:-60px
  }
  
	
	.contactform .tel_banner.pc {
		display: none;
	}

	.contactform .tel_banner.sp {
		display: block;
	}
	
	.contactform .form_title {
		font-size: 2.5rem;
		width: 100%;
		max-width: 500px;
		padding: 0.5em 0;
		margin:2em auto 3em;
	}
	
	.contactform th {
		font-size: 1.8rem;
		display:block;
		width: 100%;
		padding:1em 0 0 0;
		line-height: 1.6em;
	}
	
	.contactform td {
		display:block;
		width: 100%;
		padding:0 0 1em 0;
	}
	
	.contactform .must:after {
		content:'必須';
		display: block;
		background-color: #d32902;
		font-size: 1.4rem;
		line-height: 1.4em;
		width:3em;
		text-align: center;
		position: absolute;
		right: 10px;
		top: calc(50% - 0.1em);
		color: #fff;
	}

	.contactform p.must:after {
		right:auto;
		top:calc(50% - 0.6em);
	}
	.contactform td p {
		margin-bottom: 0;
		font-size: 1.8rem;
	}
}

/*
※※※※※※※※※※※※※※※※

会社概要（運営会社）

※※※※※※※※※※※※※※※※
*/
.company {
	padding-bottom: 50px;
}
.company table {
	width: 100%;
}

.company table th {
	width: 30%;
	background-color: #007fcc;
	color: #fff;
	padding: 1em 0.5em;
	border: 1px solid #aaa;
}

.company table td {
	width: 70%;
	padding: 1em 0.5em;
	border: 1px solid #aaa;
}

.company table .place td p {
	margin-bottom: 0;
	text-indent: -0.5em;
}

.company .link {
	text-align: center;
	margin-top: 2em;
}

.company .link a {
	color: #007fcc;
	text-decoration: underline;
}

@media screen and (max-width:767px) {
	.company table th {
		font-size: 1.6rem;
	}

	.company table td {
		font-size: 1.6rem;
	}

}
/*
※※※※※※※※※※※※※※※※

footer

※※※※※※※※※※※※※※※※
*/
footer {
	background-color: #007fcc;
	padding: 50px 0;
}

footer small {
	font-size: 1.4rem;
	display: block;
	text-align: center;
	color: #fff;
}

footer a {
	color: #fff;
	font-size: 1.4rem;
	float: right;
}

.footer_banner {
	display: none;
}

.pc_footer_banner {
  display:none;
  height: 120px;
  background:linear-gradient(180deg, rgba(211,41,2,0.0) 0px, rgba(211,41,2,0.0) 20px, rgba(211,41,2,0.9) 20px, rgba(211,41,2,0.9) 120px);
  margin-top: -20px;
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 99999;
}

.pc_footer_banner .inner {
  height: 120px;
  position: relative;
}

.pc_footer_banner .img_text {
  position: absolute;
  bottom: 0;
}

.footer_cv_white {
  background-color: #fff;
  height: 90px;
  width: 620px;
  position: absolute;
  bottom: 5px;
  right: 5px;
}

.pc_footer_banner .img_tel {
  position: absolute;
  left: 10px;
  top: 12px;
}

.pc_footer_banner .img_mail {
  position: absolute;
  top: 12px;
  right: 10px;
  transition: 0.5s;
}

.pc_footer_banner .img_mail:hover {
  opacity: 0.7;
}


@media screen and (max-width:767px) {
	footer {
		margin-bottom: 23vw;
	}
	.footer_banner {
		display:block;
		position: fixed;
		width: 100%;
		bottom: 0;
		left:0;
		z-index: 9999;
	}
	
	.footer_banner img {
		width: 100%;
	}
  
  .pc_footer_banner {
    display:none;
  }
}