@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: underline;
	color:#007fcc;
}

a:hover {
	text-decoration: none;
}
/*
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;
}

.default_list li{
	list-style-type: disc;
	line-height: 1.4em;
	list-style-position: inside;
	padding:0.2em 0;
	margin-left:1em;
	text-indent: -1.3em;
}

br.pc {
	display: block;
}

br.sp {
	display: none;
}

@media screen and (max-width:767px) { 
	body {
		min-width: inherit;
		font-size: 1.6rem;
	}
	
	br.pc {
		display: none;
	}

	br.sp {
		display: block;
	}
}
/*
※※※※※※※※※※※※※※※※

構造

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

ヘッダー

※※※※※※※※※※※※※※※※
*/
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.menu-toggle i {
    display: block;
    width: 100%;
    height: 4px;
    background-color: #007fcc;
    transition: 0.4s;
}

.menu-toggle.open i:nth-child(1) {
    transform: rotate(-45deg) translate(-5.5px, 5.5px);
}

.menu-toggle.open i:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open i:nth-child(3) {
    transform: rotate(45deg) translate(-5.5px, -5.5px);
}

.menu-text {
  font-size: 1rem;
  font-weight: bold;
  color: #007fcc;
  position: absolute;
  right: -2px;
  bottom:-1.1em;
}
header {
	height: 108px;
	background-color: #fff;
	width: 100%;
  position: fixed;
  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: auto;
	height: 60px;
	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 .menu_btn {
	display: none;
}

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

header.mini {
	position: fixed;
	top: 0;
	left:0;
	display: none;
	padding-top:10px;
	z-index: 999;
	box-shadow: 0 4px 4px rgba(0,0,0,0.4);
	height: 60px;
}

@media screen and (max-width:767px) { 
  
  .menu-toggle {
    display: flex;
  }
  
	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: 30px;/* 250724 */
	}
	
	header .tel {
		display: none;
	}
	
	header .mail_btn {
		display: none;
	}
	
	header .menu_btn {
		display: block;
		color: #007fcc;
		text-decoration: none;
		border:3px solid #007fcc;
		line-height: 2em;
		width: 5em;
		text-align: center;
		float: right;
		border-radius: 10px;
	}
  
  header .sp_line { /* 250724-1 */
    display: block;
    width: 100px;
    position: fixed;
    right: 60px;
    top:20px;
  }
  
  header .sp_line img { /* 250724-1 */
    width: 100%;
  }
}

@media screen and (max-width:350px) { 
	header .logo {
		width: auto;
		height: 35px;
	}
}

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

パンくず

※※※※※※※※※※※※※※※※
*/
.breadcrumb {
	padding:10px 0;
}

.breadcrumb li {
	float: left;
	line-height: 1.3em;
}

.breadcrumb li:after {
	content:'＞';
	margin:0 0.8em;
	line-height: 1.3em;
	line-height: 1em;
}

.breadcrumb li:last-of-type {
	font-weight:bold;
	font-size: 1.3em;
	color: #555;
}

.breadcrumb li:last-of-type:after {
	content: none;
}

.home .breadcrumb {
	visibility: hidden;
}
/*
※※※※※※※※※※※※※※※※

メインビジュアル

※※※※※※※※※※※※※※※※
*/
.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 .inner {
  position: relative;
}

.mainvisual img {
	width: 100%;
}

.mainvisual img.pc {
	display:inline;
	height:583px;
	width: 1080px;
}

.mainvisual img.sp {
	display: none;
	height: auto;
}

.mainvisual img.certification {
  width: 105px;
  position: absolute;
  left:83px;
  bottom:100px;
  border:2px solid #c29f48;
}

.mainvisual p.area_name {
  position: absolute;
  text-align: center;
  font-weight: bold;
  bottom: -15px;
  left:40px;
  font-size: 2.4rem;
  line-height: 1.3em;
  color: #d32902;
}

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

	.mainvisual img.sp {
		display: inline;
	}
  
  .mainvisual img.certification {
    width: 12vw;
    left:11.5vw;
    bottom:14vw;
  }

  .mainvisual p.area_name {
    bottom: -1.5vw;
    left:5vw;
    font-size: 3vw;
  }
}

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

メニュー

※※※※※※※※※※※※※※※※
*/
menu {
	background-color: #007fcc;
}

menu.sp{
	display: none;
  margin-top: 60px;
}

.gmenu li {
	float: left;
	width: 16.6%;
	font-size: 2.4rem;
}

.gmenu li a {
	color: #fff;
	text-decoration: none;
	display: block;
	line-height: 125px;
	position: relative;
	text-align: center;
}

.gmenu li a:before {
	position: absolute;
	content:'';
	display: block;
	width: 3px;
	height: 68px;
	background-color: #fff;
	left: 0;
	top: 28px;
}

@media screen and (max-width:767px) { 
	menu.pc {
		display: none;
	}
	
	menu.sp {
		width: 100vw;
		height: 100vh;
		position: fixed;
		top:0; /* 250724-2 */
		left:0;
		z-index: 9999;
		background-color: rgba(255,255,255,0.95);
		
	}
	
	menu.sp .sp_menu {
		margin-top: 0; /* 250724-2 */
		border-top: 2px solid #fff;
		margin-bottom: 10px;
	}
	
	menu.sp .sp_menu li{
		width: 50%;
		float: left;
		line-height: 3em;
		border-bottom: 2px solid #fff;
		font-weight: bold;
		font-size: 2rem;
		background-color: #007fcc;
		background-image: url(../images/btn_arrow.png);
		background-position: right 10px center;
		background-repeat: no-repeat;
		background-size: 1em auto;
	}
	
	menu.sp .sp_menu li:nth-child(odd){
		border-right: 2px solid #fff;
	}
	
	menu.sp .sp_menu a {
		color: #fff;
		text-decoration: none;
		display: block;
		padding-left: 1em;
	}
	
	menu.sp .contact_btn {
		width: 100%;
		max-width: 450px;
	}
}

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

安心

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

.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;
	min-height: 550px;
}

.service .photo_area {
	position: relative;
}

.service .photo_area img {
	width: 100%;
	height: 323px;
}

.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: 20px;
}

.service .btn {
	display:block;
	background-color: #007fcc;
	color: #fff;
	text-align: center;
	background-image: url(../images/btn_arrow.png);
	background-repeat: no-repeat;
	background-position: right 10% center;
	background-size: 27px auto;
	font-size: 2.4rem;
	line-height: 2em;
	width: 95%;
	margin: 0 auto 20px;
	text-indent: -1em;
	text-decoration: none;
	transition: background-position 0.5s;
}

.service .btn:hover {
	background-position: right 6% center;
}

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

	
	.service .flex > li {
		width: 100%;
		margin-bottom: 20px;
		min-height: auto;
	}
	
	.service .photo_area img {
		height: auto;
	}
	
	.service .price {
		width: 95%;
		max-width: 372px;
		padding-left:1em;
		margin-bottom: 10px;
	}
	
	.service .btn {
		background-position: right 10% center;
		background-size: 1em auto;
		font-size: 2rem;
		line-height: 3em;
	}
}

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

選ばれる理由

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

.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%;*/
	height: 449px;
  display:block;
  margin: 0 auto;
}

.area {
	padding: 50px 0;
}

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

.area .text_area {
	width: 45%;
}

.area .text_area img {
	height: auto;
}

.area img{
	width: 100%;
}

.area .image_area {
	width: 50%;
}

.area .image_area img {
	margin-bottom: 20px;
	height: 475px;
}

@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%;
	}
	
	.skill .image_area img{
		height:auto;
    width: 90%;
	}
	
	.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 img{
		height: auto;
	}
	
	.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: 2;
}

.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%;
	height: 180px;
}

.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 .flex > div.credit img {
	height: auto;
}

.flow .flex > div.credit .paypay {
	width: 60%;
}

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

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

.flow .text3 {
	margin: 0 50px 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{
		display: none;
		width: 45px;
		height: 25px;
		top: 18vw;
	}
	
	.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 .flex > div img {
		height: auto;
	}		
	
	.flow .text1 {
		font-size: 1.7rem;
		margin-bottom: 0.5em;
	}
	
	.flow .flex > div.credit img {
		width: 100%;
	}
	
	.flow .credit .paypay {
		margin-left: 5px;
	}

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

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

対応エリア

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

.sec_area .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	margin-bottom: 3em;
}

.sec_area .flex .text_area {
	width: 45%;
}

.sec_area .flex .image_area {
	width: 50%;
}

.sec_area .flex .image_area a {
  color: inherit;
  text-decoration: none;
}

.sec_area .flex img {
	width: 100%;
	margin-bottom: 20px;
}

.sec_area .l_text {
	font-size: 3rem;
	border-left:5px solid #007fcc;
	padding-left: 0.5em;
}

.sec_area .l_text a{
	text-decoration: none;
  color: inherit;
}

.sec_area .area_link,
.sec_area .area_link_s{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	margin:20px 0;
}

.sec_area .area_link li {
	width: 430px;
	margin-bottom: 1.5em;
}

.sec_area .area_link a {
	text-decoration: none;
	color: #fff;
	background-color: #007fcc;
	display: block;
	line-height: 84px;
	font-size: 2.4rem;
	text-align: center;
	background-image: url(../images/btn_arrow.png);
	background-size: 27px auto;
	background-position: right 10% center;
	background-repeat: no-repeat;
	text-indent: -1em;
	transition: background-position 0.5s;
}

.sec_area .area_link a:hover {
	background-position: right 6% center;
}

.sec_area .area_link_s li{
	width: 220px;
	margin-bottom: 1.5em;
}

.sec_area .area_link_s li.pc {
	display:block;
}

	.sec_area .area_link_s li.sp {
	display:none;
}

.sec_area .area_link_s a {
	text-decoration: none;
	color: #fff;
	background-color: #007fcc;
	display: block;
	line-height: 60px;
	font-size: 2.2rem;
	text-align: center;
	background-image: url(../images/btn_arrow.png);
	background-size: 20px auto;
	background-position: right 10% center;
	background-repeat: no-repeat;
	text-indent: -1em;
	transition: background-position 0.5s;
}

.sec_area .area_link_s a:hover {
	background-position: right 6% center;
}

.sec_area .large_link {
	text-decoration: none;
	color: #fff;
	background-color: #007fcc;
	display: block;
	line-height: 108px;
	font-size: 3.0rem;
	text-align: center;
	background-image: url(../images/btn_arrow.png);
	background-size: 27px auto;
	background-position: right 10% center;
	background-repeat: no-repeat;
	text-indent: -1em;
	transition: background-position 0.5s;
}

.sec_area .large_link:hover {
	background-position: right 6% center;
}

@media screen and (max-width:767px) {
	.sec_area .flex{
		flex-direction: column-reverse;
	}

	.sec_area .flex .image_area{
		width: 100%;
	}

	.sec_area .flex .text_area {
		width: 100%;
	}
	
	.sec_area .l_text {
		font-size: 2rem;
	}
	
	.sec_area .area_link li {
		width: 100%;
		margin:0 auto 1em;
	}
	
	.sec_area .area_link a {
		line-height: 3em;
		font-size: 2rem;
		background-size: 1em auto;
	}
	
		.sec_area .area_link_s a {
		line-height: 2.5em;
		font-size: 1.6rem;
		background-size: 1em auto;
	}
	
	
	.sec_area .area_link_s li {
		width: 32%;
		margin:0 auto 1em;
	}
	
	.sec_area .area_link_s li.pc {
		display:none;
	}
	
		.sec_area .area_link_s li.sp {
		display:block;
	}
	
	.sec_area .large_link {
		line-height: 3.5em;
		font-size: 2.2rem;
	}
}
/*
※※※※※※※※※※※※※※※※

よくあるお問い合わせ

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

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

●●のトラブル（サービスページ）

※※※※※※※※※※※※※※※※
*/
.trouble .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row;
	margin-bottom: 100px;
}

.trouble .flex.reverse {
	flex-direction: row-reverse;
}

.trouble .flex .image_area {
	width:50%;
}

.trouble .flex .image_area img {
	width: 100%;
}

.trouble .flex .text_area {
	width: 45%;
}

@media screen and (max-width:767px) {
	.trouble .flex {
		margin-bottom: 50px;
	}
	
	.trouble .flex .image_area {
		width:100%;
	}
	
	.trouble .flex .text_area {
		width: 100%;
	}
}

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

費用の目安（サービスページ）

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

.sec_price table {
	width: 100%;
}

.sec_price table th,
.sec_price table td {
	padding: 1em 0.8em;
	font-size: 2rem;
	border: 2px solid #007fcc;
	text-align: center;
}

.sec_price table th {
	background-color: #007fcc;
	color: #fff;
}

.sec_price table th span {
	font-size: 0.8em;
}

.sec_price table td {
	color: inheit;
}

.sec_price table tr td:first-child {
	text-align: left;
}

.sec_price table tr td:last-child {
	color:#d32902;
}

@media screen and (max-width:767px) {
	.sec_price table th,
	.sec_price table td {
		padding: 1em 0.8em;
		font-size: 1.6rem;
		border: 2px solid #007fcc;
	}
	
	.sec_price table tr td:last-child {
		width: 32%;
	}
}

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

●●市の水道修理はお任せください

※※※※※※※※※※※※※※※※
*/
.detail_area {
	padding-bottom: 100px;
}

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

.detail_area .flex .text_area {
	width: 50%;
}

.detail_area .flex .image_area {
	width: 45%;
}

.detail_area .flex img {
	width: 100%;
	margin-bottom: 20px;
}

.detail_area .town_list {
	border: 1px solid #000;
	padding: 1em;
}

.detail_area .town_list dt {
	padding-bottom: 0.5em;
	border-bottom: 1px solid #000;
}

.detail_area .town_list dd {
	line-height: 1.5em;
	padding:1em 0 2em;
	font-size: 1.4rem;
}

.detail_area .certification {
  flex-direction: row-reverse;
}

.detail_area .certification .image_area {
  text-align: center;
}

.detail_area .certification .image_area img {
  width: 80%;
  box-shadow: 3px 3px 10px 5px rgba(0,0,0,0.4);
}

.detail_area .certification .certification_info {
  background-color: rgba(0, 127, 204,0.2);
  text-align: center;
  border: 3px solid #007fcc;
}

.detail_area .certification .certification_info .certification_title {
  background-color: #007fcc;
  color: #fff;
  padding: 0.5em 1em;
  margin-bottom: 0;
}

.detail_area .certification .certification_info .group {
  background-color: #fff;
  color: #000;
  padding: 0.5em 1em;
  font-size: 1.2em;
  margin-bottom: 0;
}

.detail_area .certification .certification_info .number {
  font-size: 1.5em;
  margin-bottom: 0;
  padding: 0.5em;
  letter-spacing: 0.05em;
}


@media screen and (max-width:767px) {
	.detail_area .flex {
		margin-bottom: 50px;
    display: block;
	}
	
	.detail_area .flex .text_area {
		width: 100%;
	}

	.detail_area .flex .image_area {
		width: 50%;
		text-align: center;
    float:left;
	}
	
	.detail_area .flex img {
		width: 90%;
		max-width: 400px;
		margin-bottom: 20px;
	}
  
  .detail_area .certification .text_area {
    margin-top: 25px;
  }
}

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

水道局

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

.suidoukyoku {border-top:5px double #007fcc;
	padding:30px 0 50px;
	background-color: rgba(0, 127, 204,0.2);
}

.suidoukyoku table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 2px;
}

.suidoukyoku table tr > * {
	line-height: 1.5em;
	padding:1em;
	border: 2px solid inherit;
	vertical-align: middle;
}

.suidoukyoku th {
	width: 30%;
	color: #fff;
	background-color: #007fcc;
}

.suidoukyoku td {
	background-color: #f6f6f6;
	color: #000;
}

@media screen and (max-width:767px) {
	.suidoukyoku table tr > * {
		padding:1em 0.5em;
		border: 1px solid #fff;
		font-size: 0.8em;
	}
}

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

お問い合わせフォーム

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

.page-id-43 .anshin,
.page-id-43 .contact{
	display:none;
}

.contactform {
	padding-bottom: 50px;
}

.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 .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;
	}
}

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

ネット割（お問い合わせページ）

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

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

会社概要（運営会社）

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

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

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

.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;
}

.company .flex {
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.company .flex>div {
  width: 50%;
}

.company .imgarea img{
  width: 100%;
}

.company .textarea {
  padding-left: 2em;
}

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

	.company table td {
		font-size: 1.6rem;
	}
  
  .company .flex>div {
    width: 100%;
  }
  
  .company .textarea {
    padding-left: 0;
    padding-top: 1em;
  }

}

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

プライバシーポリシー

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

.privacy dt {
	font-weight: bold;
	font-size: 2rem;
	border-bottom: 2px solid #000;
	line-height: 1.4em;
	padding:5px 0;
}

.privacy dd {
	font-size: 1.6rem;
	padding:0.5em 0;
}

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

プライバシーポリシー

※※※※※※※※※※※※※※※※
*/
.sitemap {
	padding-bottom: 50px;
}
.sitemap .flex {
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sitemap .flex > div {
	width: 33%;
	margin-bottom: 10px;
}

.sitemap h3 {
	font-weight: bold;
	font-size: 2rem;
	margin-bottom: 1em;
}

.sitemap li {
	line-height: 1.4em;
}

@media screen and (max-width:767px) {
	.sitemap .flex > div {
		width: 48%;
	}
}

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

求人ページ

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

.recruit table {
	width: 100%;
  margin-bottom: 100px;
}

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

.recruit table td {
	width: 70%;
	padding: 1em 0.5em;
	border: 1px solid #aaa;
	line-height: 1.4em;
}

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

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

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

.recruit .point {
  background-color: rgba(0, 127, 204, 0.2);
  margin-bottom: 50px;
  padding:1em;
  text-align: center;
}

.recruit .point p {
  margin:0;
}

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

	.recruit table td {
		font-size: 1.6rem;
	}
  
  .recruit .point {
    text-align: left;
  }
  
/*  .recruit .star_before,
  .recruit .star_after{
    display: block;
  }*/
  
}



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

footer

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

footer small {
	font-size: 1.7rem;
	display: block;
	text-align: center;
	color: #fff;
	margin-bottom: 1em;
}

footer small span {
  font-family: Verdana, "Droid Sans", sans-serif;
}

footer a {
	color: #fff;
	font-size: 1.6rem;
  position: relative;
  padding-left: 1em;
}

footer a:before {
  content:'>';
  position: absolute;
  left:0;
  font-size: 0.8em;
}

.footer_banner {
	display: none;
}

footer ul {
	float: right;
}

footer li {
	float: left;
	margin-right: 2em;
  line-height: 1.5em;
}

.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%;
	}
	
	footer ul {
		width: 100%;
		float: none;
		margin: 0 auto;
	}
	
	footer li {
		margin-right:1em;
		text-align: left;
    float: none;
	}
  
  .pc_footer_banner {
    display:none;
  }
}

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

サンクスページ

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

.thanks .text {
	text-align: center;
	margin-bottom: 50px;
}

.thanks .btn {
    text-decoration: none;
    color: #fff;
    background-color: #007fcc;
    display: block;
    line-height: 84px;
    font-size: 2.4rem;
    text-align: center;
    background-image: url(../images/btn_arrow.png);
    background-size: 27px auto;
    background-position: right 10% center;
    background-repeat: no-repeat;
    text-indent: -1em;
    transition: background-position 0.5s;
	width: 80%;
	max-width: 300px;
	margin: 0 auto;
}

.thanks img {
	width: 100%;
	max-width: 550px;
	height: auto;
	display: block;
	margin: 0 auto 50px;
}

@media screen and (max-width:767px) {
	.thanks .text {
		text-align: left;
		margin-bottom: 30px;
	}
	
	.thanks img {
		margin: 0 auto 25px;
	}
}