@charset "UTF-8";

/*-----------------------------------------------------------------------------------------------------------
	base setting			
-----------------------------------------------------------------------------------------------------------*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
  font-family: "Number";
  src: local("Helvetica");
  unicode-range: U+0030-0039; /* 0-9 */
}

@font-face {
  font-family: "Number";
  src: local("Helvetica Bold");
  font-weight: bold;
  unicode-range: U+0030-0039; /* 0-9 */
}

/* @font-face でローカルフォントを優先 */
  @font-face {
    font-family: "Local Noto Sans JP";
    src: local("Noto Sans JP");
  }

body,button,input,option,select,table,textarea{
	color: #333;
	font-family: -apple-system,BlinkMacSystemFont,"Number","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","メイリオ",sans-serif;
	line-height: 1.1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; /* Firefox向け */
}

a:link {
	color: #003953;
	text-decoration: none;
}

a:visited {
	color: #003953;
	text-decoration: none;
}

a:hover {
	color: #00ac9a;
	text-decoration: underline;
}

a:active {
	color: #00ac9a;
	text-decoration: none;
}

a img {
  display: block;
  transition: 0.3s;
}

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

img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

.btn {
  display: inline-block;
  text-decoration: none;
  transition: opacity 0.3s;
  cursor: pointer;
}
.btn:hover {
  opacity: 0.5;
}

.triangle-down {
  width: 100px;
  aspect-ratio: 1/cos(30deg);
  clip-path: polygon(0% 0%,100% 0,50% 60%);
}

/*------ アニメーション設定<jquery.inview> ------*/
.fadeUp {
  opacity: 0;
  transform: translate(0,50px);
  transition: .8s;
  transition-delay: .2s;
}
.fadeUp.is_inview {
  opacity: 1;
  transform: translate(0,0);
}
.fadeIn {
  opacity: 0;
  transition: .8s;
  transition-delay: .2s;
}
.fadeIn.is_inview {
  opacity: 1;
}
.fadeSide_L {
  opacity: 0;
  transform: translateX(-50px);
  transition: .8s;
  transition-delay: .2s;
}
.fadeSide_R {
  opacity: 0;
  transform: translateX(50px);
  transition: .8s;
  transition-delay: .2s;
}
.fadeSide_L.is_inview,
.fadeSide_R.is_inview {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 767px){
  .triangle-down {
    width: 13.33vw;
  }
}

/*-----------------------------------------------------------------------------------------------------------
	common layout			
-----------------------------------------------------------------------------------------------------------*/
#wrapper {
	min-width: 100%;
	height: auto;
	overflow: hidden;
}

section:nth-of-type(n+2) {
  padding-top: 80px;
  padding-bottom: 80px;
}
section:nth-of-type(n+2) h2 {
  text-align: center;
  margin-bottom: 60px;
}

.inner {
  max-width: 1280px;
  margin: 0 auto;
}

.content_width {
	width: 930px;
	margin: 0 auto;
}

.pc {
  display: block;
}
.tab {
  display: none;
}
.sp {
  display: none;
}

@media (min-width: 768px) and (max-width: 959px) {
  section:nth-of-type(n+2) {
    padding-top: 6vw;
    padding-bottom: 6vw;
  }
  section:nth-of-type(n+2) h2 {
    margin-bottom: 6vw;
  }
  .inner {
    width: 100%;
  }
  .content_width {
    width: 93.75%;
  }
  .pc {
    display: none;
  }
  .tab {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px){
    section:nth-of-type(n+2) {
      padding-top: 8vw;
      padding-bottom: 8vw;
    }
    section:nth-of-type(n+2) .inner h2 {
      margin-bottom: 6vw;
    }

  .inner {
    max-width: 100%;
    padding: 3vw;
  }
  
  .content_width {
    width: 92vw;
  }
  
  .pc {
    display: none;
  }
  .tab {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*-----------------------------------------------------------------------------------------------------------
	text			
-----------------------------------------------------------------------------------------------------------*/
h1,h2,h3,h4,h5,h6,.heading {
  font-feature-settings: "palt" 1;
  font-family: "Number","Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
h2,h3,h4 {
  font-weight: 700;
}
#feature h2,
#case h2,
#reason h2,
#step h2,
#voice h2,
#closing h2,
.thanks h2 {
  font-size: 2.25em;
  font-weight: 800;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.05em;
  color: #003953;
  margin-bottom: 0.5em;
}
h2 .h_start {
  font-size: 0.8em;
  font-weight: 600;
}
.h_num {
  font-size: 150%;
  line-height: 0;
}
.h_smaller {
  font-size: 75%;
  font-weight: 600;
  margin-bottom: 1em;
}
.h_small {
  font-size: 83%;
}
.h_large {
  font-size: 125%;
}
.h_largest {
  font-size: 133%;
}

.txt {
  font-feature-settings: "pkna" 1;
}
.bold {
  font-weight: 600;
}
.bolder {
  font-weight: 700;
}
.body_txt {
  font-size: 1.125em;
  font-feature-settings: "pkna" 1;
  line-height: 2em;
  text-align: justify;
}
.white {
  color: #ffffff !important;
}
.yellow {
  color: #ffff00 !important;
}
.orange {
  color: #f47411 !important;
}
.red {
  color: #ee1540 !important;
}
.green {
  color: #2cb4ad !important;
}
.blueblack {
  color: #020a0d !important;
}
.marker_white {
  display: inline;
  background: linear-gradient(transparent 10%, #fff 10%);
  padding: 0 .2em;
}
.marker_green {
  display: inline;
  background: linear-gradient(transparent 10%, #2cb4ad 10%);
  padding: 0 .2em;
  color: #fff;
}
.marker_yellow_half {
  background: linear-gradient(transparent 50%, #fff352 50%); 
}
.marker_blue_half {
  background: linear-gradient(transparent 50%, #aee9f3 50%); 
}

@media (min-width: 768px) and (max-width: 959px) {
  #feature h2,
  #case h2,
  #reason h2,
  #step h2,
  #voice h2,
  #closing h2,
  .thanks h2 {
    font-size: 3.75vw;
    margin-bottom: 1em;
  }
  h2 .h_start {
    font-size: 3.75vw;
  }
}
@media screen and (max-width: 767px) {
  #feature h2,
  #case h2,
  #reason h2,
  #step h2,
  #voice h2,
  #closing h2,
  .thanks h2 {
    font-size: 4.8vw;
    margin-bottom: 8vw;
  }
  .body_txt {
    font-size: .8em;
  }
}

/*-----------------------------------------------------------------------------------------------------------
	header			
-----------------------------------------------------------------------------------------------------------*/
header.header {
  position: fixed;
  width: 100%;
	height: 100px;
  padding-top: 20px;
  z-index: 999;
}
.header.scrolled {
  background-color: white;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header .inner{
  height: auto;
	display: flex;
  margin: 0 auto;
	justify-content: space-between;
  vertical-align: middle;
	align-items: center;
}

header .inner .logo {
	width: 190px;
	height: auto;
	margin-left: 0;
	margin-right: auto;
}
header .inner .resp {
  display: inline-flex;
  align-items: center;
}
header .inner .tel {
  width: 256px;
  height: auto;
}
header nav {
	margin-right: 30px;
}
header nav ul{
	display: flex;
	align-items: center;
}
header nav ul li a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	padding: 16px ;
  position: relative;
  text-align: center;
  display: inline-block;
  transition: all .3s;
}
header nav ul li a:before {
  content: '';
  position: absolute;
  width: 90%;
  height: 4px;
  border-radius: 4px;
  background-color: #00ac9a;
  bottom: 0;
  left: 0;
  transform-origin: center top;
  transform: scale(0,1);
  transition: all .3s ease-in-out;
}
header nav ul li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}
header nav ul li a:hover:before {
  width: 100%;
}
header nav ul li a:hover {
  color: #00ac9a;
  text-decoration: none;
}
#nav_toggle{
	display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  header.header {
    width: 100%;
    height: 80px;
    padding-top: 0;
	}
  header .inner {
    height: 100%;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    vertical-align: middle;
    align-items: center;
  }
  header .inner .logo {
		width: calc(190 / 960 * 100%);
		height: auto;
		margin-left: 20px;
	}
  header .inner .tel {
    width: calc(256 / 960 * 100%);
    height: auto;
    margin-right: 2%;
  }
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
  nav{
		display: none;
		position: absolute;
		top: 80px;
    left: 0;
		width: 100%;
		background: rgba(255,255,255,0.9);
		z-index: 999
	}
	header nav ul{
		display: block;
		margin: 0 auto;
		width: 90%;
	}
	header nav ul li{
		margin: 0 auto;
		text-align: center;
		border-bottom: none;
	}
	header nav ul li:last-child{
    padding-bottom: 4vw;
	}
	header nav ul li a{
		display: block;
	}
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 80px;
		height: 80px;
		position: relative;
		z-index: 100;
		right: 0;
    background-color: #fff;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 5px;
		background: #00ac9a;
		position:absolute;
		width: 40px;
		left: 20px;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}
	#nav_toggle span:nth-child(1){
		top: 22px;
	}
	#nav_toggle span:nth-child(2){
		top: 40px;
	}
  #nav_toggle p {
    position: absolute;
    font-size: .9em;
    color: #00ac9a;
    top: 55px;
    left: 20px;
  }

	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
    top: 33px;
     -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .open #nav_toggle span:nth-child(2) {
    top: 33px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
}

@media screen and (max-width: 767px) {
	header.header {
		width: 100%;
    height: 13.33vw;
    padding-top: 0;
	}
  header .inner{
    position: relative;
    width: 100%;
    padding: 0;
  }
	header .inner .logo {
		width: 29.6vw;
		height: auto;
		margin-left: 4vw;
	}
  header .inner .tel {
    width: calc(267 / 750 * 100%);
    height: auto;
    margin-right: 2.67vw;
  }
  header .inner>div:nth-of-type(n+2) {
    margin-left: auto;
  }
	nav{
		display: none;
		position: absolute;
		top: 13.33vw;
    left: 0;
		width: 100%;
		background: rgba(255,255,255,0.9);
		z-index: 999
	}
	header nav ul{
		display: block;
		margin: 0 auto;
		width: 90%;
	}
	header nav ul li{
		margin: 0 auto;
		text-align: center;
		border-bottom: none;
	}
	header nav ul li:last-child{
    padding-bottom: 4vw;
	}
	header nav ul li a{
		display: block;
    
	}
	/*開閉ボタン*/
	#nav_toggle{
		display: block;
		width: 13.33vw;
		height: 13.33vw;
		position: relative;
		z-index: 100;
		margin-left: 0;
    background-color: #fff;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
    position: absolute;
		display: block;
		width: 6.4vw;
    height: .9vw;
		background: #00ac9a;
		left: 3.47vw;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;
	}
	#nav_toggle span:nth-child(1){
		top: 3.6vw;
	}
	#nav_toggle span:nth-child(2){
		top: 6.27vw;
	}
  #nav_toggle p {
    position: absolute;
    font-size: 2.4vw;
    color: #00ac9a;
    top: 9vw;
    left: 3vw;
  }

	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 5.33vw;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			top: 5.33vw;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}
}

/*-----------------------------------------------------------------------------------------------------------
	FV
-----------------------------------------------------------------------------------------------------------*/
.container:first-of-type {
  padding-top: 100px;
}
#fv {
  width: 100%;
  height: auto;
  min-height: 830px;
  background-image: image-set(url("../img/fv_bg_pc.webp") 1x, url("../img/fv_bg_pc@2x.webp") 2x);
  -webkit-background-image: image-set(url("../img/fv_bg_pc.webp") 1x, url("../img/fv_bg_pc@2x.webp") 2x);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 100%;
  padding-top: 40px;
}
#fv .mv {
  width: 1250px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
}
#fv .txt {
  padding-left: 20px;
}
#fv .txt h1 {
  text-shadow:
    3px 3px 3px #fff, -3px -3px 3px #fff,
    -3px 3px 3px #fff, 3px -3px 3px #fff,
    3px 0 3px #fff, -3px 0 3px #fff,
    0 3px 3px #fff, 0 -3px 3px #fff;
  align-content: center;
  margin-bottom: 20px;
}
#fv .txt h1 .fv_h1_1, #fv .txt h1 .fv_h1_2 {
  font-size: 3.75em;
  font-weight: 800;
  color: #092b36;
  line-height: 1.25;
  text-align: center;
}
#fv .txt h2 {
  width: auto;
  min-width: 680px;
  height: auto;
  background-color: #00ac9a;
  border-radius: 100vh;
  color: #fff;
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-feature-settings: "palt" 1;
  margin: 0 auto 320px;
}
#fv ul {
  list-style-type: none;
  display: flex;
}
#fv ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background-image: url("../img/fv_point_bg.webp");
  background-repeat: no-repeat;
  background-size: 100%;
}
#fv ul li:not(:last-child) {
  margin-right: 30px;
}
#fv ul li p {
  text-align: center;
  font-size: 1.6em;
  font-weight: 800;
  line-height: 1.5;
  background: linear-gradient(315deg, #092b36 50%, #3f6d71 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#fv ul li p .h_num {
  font-size: 175%;
  line-height: 0.75;
}
#fv ul li p .h_small {
  transform: scaleX(0.8);
}

/*----------------------------
	一括見積もりフォーム
-----------------------------*/
#fv .form {
  position: relative;
  width: 470px;
  height: auto;
  background-color: #fff;
  border: 5px solid #00ac9a;
  box-sizing: border-box;
  padding: 0 0 20px;
  border-radius: 20px;
  z-index: 2;
}

#fv .form h3 {
  background-color: #00ac9a;
  width: 100%;
  height: auto;
  font-size: 2.25em;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: .25em .75em .5em;
}
#fv .form h3::before {
  position: absolute;
  content: "";
  background-image: url("../img/fv_freequote.webp");
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  width: 118px;
  height: 82px;
  top: -30px;
  left: 50px;
}

#fv form {
  width: calc(540/580*100%);
  margin: 10px auto;
}
#fv form .form-item {
  padding: 15px 10px;
  border-bottom: 1px solid #d1d1d1;
}
#fv form .form-item .form-data {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#fv form label.item-label {
  width: 15%;
  height: 50px;
  background-color: #00ac9a;
  border-radius: 10px 0 0 10px;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  align-content: center;
  color: #fff;
}
#fv form select {
  width: 85%;
  height: 50px;
  padding: .5em;
  background-color: #f8f8f8;
  border: 1px solid #d4d4d4;
  border-radius: 0 10px 10px 0;
}
#fv form input[type="text"] {
  width: 85%;
  height: 50px;
  padding: .5em;
  background-color: #f8f8f8;
  border: 1px solid #d4d4d4;
  border-radius: 0 10px 10px 0;
}
#fv form .form_btn {
  position: relative;
  width: 90%;
  height: 60px;
  background-color: #ff8f00;
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  display: block;
  cursor: pointer;
  margin: 20px auto;
}
#fv form .form_btn .now {
  position: absolute;
  background-image: url("../img/cta_btn_now.webp");
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  width: 61px;
  height: 63px;
  top: -15px;
  left: 20px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
#fv form .form_btn::after {
  content: '';
  position: absolute;
  background-image: url("../img/btn_arrow.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 22px;
  top: calc(50% - (22px/2));
  right: 20px;
}
#fv form .note {
  font-size: .9em;
  line-height: 1.5;
}
#fv form .note a {
  color: #ea5532;
}

input {
  padding-left: 0.75em;
  font-family: 'Hiragino Kaku Gothic ProN';
  font-size: 18px;
  border-width: 4px;
  border-color: #ccc;
  border-radius: 0px 12px 12px 0px;
  border-style: solid;
  color: #000 !important;
}

select {
  padding-left: 0.5em;
  font-family: 'Hiragino Kaku Gothic ProN';
  font-size: 18px;
  border-radius: 0px 12px 12px 0px;
  border-width: 4px;
  border-color: #ccc;
  color: #000 !important;
}

input.blink, select.blink {
  border-width: 5px !important;
  border: 1px solid #ff8f00;
  animation: blink 0.5s linear infinite alternate;
}
@keyframes blink {
  0% { border-color: #c0c0c0; }
  100% { border-color: #ff8f00; }
}

@media (min-width: 768px) and (max-width: 1024px) { /*-- 横幅960px基準で%(vw)を割り出し --*/
  .container:first-of-type {
    padding-top: 80px;
  }
  #fv {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 86.46vw;
		background-image: url("../img/fv_bg_tab.webp");
		background-size: contain;
		padding-left: 0;
    padding-right: 0;
	}
  #fv .mv {
    width: 100vw;
    display: block;
    align-items: normal;
  }
  
  #fv .txt {
    width: 87.5vw;
    margin: 0 auto 6vw;
    padding-left: 0;
  }
  #fv .txt h1 {
    text-align: center;
    margin-bottom: 2vw;
  }
  #fv .txt h1 .fv_h1_1, #fv .txt h1 .fv_h1_2 {
    font-size: 6.25vw;
  }
  #fv .txt h2 {
    min-width: 70vw;
    font-size: 3.75vw;
    margin: 0 auto 33.33vw;
  }
  #fv ul li {
    width: 15.63vw;
    height: 15.63vw;
  }
  #fv ul li:not(:last-child) {
    margin-right: 3vw;
  }
  #fv ul li p {
    font-size: 2.8vw;
  }
  
  /*----------------------------
    FV用一括見積もりフォーム
  -----------------------------*/
  #fv .form {
    width: 100%;
    max-width: 100vw;
    height: auto;
    padding: 0;
    border-radius: 0;
    margin-left: 0;
  }
  #fv .form h3 {
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 4.38vw;
    border-radius: 0;
    padding: 1vw 0 2vw;
  }
  #fv .form h3 br {
    display: none;
  }
  #fv .form h3::before {
    width: 13.54vw;
    height: 9.79vw;
    top: -2vw;
    left: 10vw;
  }
  #fv form {
    width: calc(900/960*100%);
    margin: 0 auto;
  }
  #fv form label.item-label {
    width: 10%;
    height: 6vw;
    font-size: 3vw;
  }
  #fv form select {
    width: 90%;
    height: 6vw;
  }
  #fv form input[type="text"] {
    width: 90%;
    height: 6vw;
  }
  #fv form .form_btn {
    width: 66.67vw;
    height: auto;
    padding: 3vw 0;
    font-size: 4.38vw;
    margin: 5vw auto;
  }
  #fv form .form_btn .now {
    width: 7.9vw;
    height: 8.1vw;
    top: -1vw;
    left: 5vw;
  }
}

@media screen and (max-width: 767px) {
  .container:first-of-type {
    padding-top: 13.33vw;
  }
	#fv {
    position: relative;
    width: 100%;
    height: auto;
		background-image: url("../img/fv_bg_sp.webp");
		background-size: contain;
		padding-top: 4vw;
    padding-left: 0;
    padding-right: 0;
	}
  #fv .mv {
    width: 100%;
    height: auto;
    display: block;
    align-items: normal;
  }
  #fv .txt {
    width: 92vw;
    margin: 0 auto 2.67vw;
    padding-left: 0;
  }
  #fv .txt h1 {
    text-align: center;
    margin-bottom: 2.67vw;
  }
  #fv .txt h1 .fv_h1_1, #fv .txt h1 .fv_h1_2 {
    font-size: 8vw;
  }
  #fv .txt h2 {
    min-width: 70vw;
    font-size: 4.8vw;
    margin: 0 auto 56vw;
  }
  #fv ul {
    margin-left: 17.33vw;
  }
  #fv ul li {
    width: 24vw;
    height: 24vw;
  }
  #fv ul li:not(:last-child) {
    margin-right: 1.33vw;
  }
  #fv ul li p {
    font-size: 4.48vw;
  }
  
  /*--------------------------------------------------------
    一括見積もりフォーム
  ---------------------------------------------------------*/
  #fv .form {
    width: 100vw;
    height: auto;
    padding: 0;
    border-radius: 0;
    margin-left: 0;
  }
  #fv .form h3 {
    text-align: right;
    font-size: 6vw;
    border-radius: 0;
    padding: 3vw 4vw;
  }
  #fv .form h3 br {
    display: none;
  }
  #fv .form h3::before {
    width: 17.33vw;
    height: 12.53vw;
    top: -2vw;
    left: 4vw;
  }
  #fv form {
    width: calc(690 / 750 * 100%);
    margin: 0 auto;
  }
  #fv form .form-item {
    padding: 3vw 0;
  }
  #fv form label.item-label {
    width: calc(90 / 690 * 100%);
    height: 50px;
  }
  #fv form select {
      width: calc(600 / 690 * 100%);
      height: 50px;
      padding: .5em;
    }
  #fv form input[type="text"] {
    width: calc(600 / 690 * 100%);
  }
  #fv form .form_btn {
    width: 100%;
    height: 20vw;
    font-size: 7vw;
    padding: 5vw 0px 5vw 8vw;
    margin: 5vw auto;
  }
  #fv form .form_btn .now {
    width: 13.47vw;
    height: 13.73vw;
    top: -2.67vw;
    left: 4vw;
  }
  #fv form .form_btn::after {
    width: 2.8vw;
    height: 4.4vw;
    top: calc(50% - (4.4vw/2));
    right: 5.6vw;
  }
  #fv form .note {
    font-size: .8em;
  }
}

/*-----------------------------------------------------------------------------------------------------------
	1. 解体工事マッチの特徴
-----------------------------------------------------------------------------------------------------------*/
#feature {
  background-color: #e4f5f4;
}

#feature .content_width {
  width: 840px;
}

#feature .diagram {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-top: 80px;
}
#feature .diagram img {
  margin-top: -60px;
}
#feature .diagram p {
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  margin-top: 30px;
}

#feature .list {
  width: 100%;
  background: #fff;
  border: 5px solid #00ac9a;
  border-radius: 20px;
  box-sizing: border-box;
  margin-top: 100px;
}

#feature .list h3 {
  width: 100%;
  height: auto;
  background-color: #00ac9a;
  border-radius: 10px 10px 0 0;
  font-size: 2.625em;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0 0;
}
#feature .list h3::after {
  content: '';
  background-image: url("../img/list_h_pc.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 840px;
  height: 200px;
  display: block;
  margin: -180px auto 0;
}

#feature ul {
  list-style: none;
  padding: 40px;
}
#feature ul li {
  position: relative;
  font-size: 1.75em;
  font-weight: 700;
  padding-left: 50px;
  margin-bottom: 40px;
}
#feature ul li:last-of-type {
  margin-bottom: 0;
}

#feature ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  background-image: url("../img/list_check.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 43px;
  height: 37px;
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) and (max-width: 959px) {
  #feature .content_width {
    width: calc((840 / 960) * 100%);
  }

  #feature .diagram {
    border-radius: 2vw;
    padding: 3vw;
    margin-top: 8vw;
  }
  #feature .diagram img {
    margin-top: -6vw;
  }
  #feature .diagram p {
    font-size: 2.5vw;
    margin-top: 3vw;
  }

  #feature .list {
    border-radius: 2.5vw;
    margin-top: 10vw;
  }

  #feature .list h3 {
    border-radius: 1vw 1vw 0 0;
    font-size: 4.38vw;
    padding: 2vw 0 0;
  }
  #feature .list h3::after {
    width: 87.5vw;
    height: 20.83vw;
    margin: -18.75vw auto 0;
  }

  #feature ul {
    padding: 4vw;
  }
  #feature ul li {
    font-size: 2.8vw;
    padding-left: 5vw;
    margin-bottom: 4vw;
  }

  #feature ul li::before {
    width: 4.48vw;
    height: 3.85vw;
  }
}

@media screen and (max-width: 767px) {
  #feature .content_width {
    width: 92vw;
  }

  #feature .diagram {
    border-radius: 2.67vw;
    padding: 2.67vw 4vw;
    margin-top: 12vw;
  }
  #feature .diagram img {
    margin-top: -8vw;
  }
  #feature .diagram p {
    font-size: 4vw;
    margin-top: 4vw;
  }

  #feature .list {
    border: 0.67vw solid #00ac9a;
    border-radius: 2.67vw;
    margin-top: 8vw;
  }

  #feature .list h3 {
    border-radius: 1.3vw 1.3vw 0 0;
    font-size: 5.6vw;
    padding: 1vw 0 0;
  }
  #feature .list h3::after {
    background-image: url("../img/list_h_sp.webp");
    background-repeat: no-repeat;
    background-size: contain;
    width: 92vw;
    height: 28vw;
    margin: -25vw auto 0 -0.67vw;
  }

  #feature ul {
    padding: 5vw 4vw;
  }
  #feature ul li {
    font-size: 4vw;
    padding-left: 8vw;
    margin-bottom: 4vw;
  }

  #feature ul li::before {
    width: 5.73vw;
    height: 4.93vw;
  }
}

/*-----------------------------------------------------------------------------------------------------------
	2. 成約例
-----------------------------------------------------------------------------------------------------------*/
#case {
  width: 100%;
  height: auto;
  min-height: 475px;
  background-color: #092b36;
  background-image: url("../img/case_bg_pc.webp");
  background-size: auto 100%;
  background-position: center top;
  padding: 80px 60px;
}

#case h2 {
  margin-bottom: 60px;
}

#case ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  list-style-type: none;
  justify-content: center;
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 959px) {
  #case {
    background-image: url("../img/case_bg_tab.webp");
    background-size: 100% auto;
    background-position: center top;
    padding: 8vw 6vw;
  }
}

@media screen and (max-width: 767px) {
  #case {
    background-image: url("../img/case_bg_sp.webp");
    background-size: 100% auto;
    background-position: center top;
    padding: 10.67vw 6.67vw;
  }
  #case h2 {
    margin-bottom: 8vw;
  }
  #case ul {
    display: grid;
    width: 100%;
    grid-template-columns: 40vw 40vw;
    gap: 6.67vw;
  }
}

/*-----------------------------------------------------------------------------------------------------------
	3. 3つの理由
-----------------------------------------------------------------------------------------------------------*/
#reason {
  width: 100%;
  height: auto;
  background-color: #fff;
  overflow: hidden;
}

#reason h2 {
  margin-bottom: 30px;
}
#reason h2 .num {
  font-size: 1.75em;
  line-height: 1;
}

#reason .txt_container {
  position: relative;
  width: 1280px;
  height: auto;
  min-height: 400px;
  margin: 0 auto;
}
#reason .txt_container:last-child {
  margin-bottom: 0;
}
#reason .txt_container .photo {
  position: absolute;
  top: 0;
  width: 640px;
  height: 380px;
}
#reason .txt_container:nth-of-type(odd) .photo {
  right: 0;
}
#reason .txt_container:nth-of-type(even) .photo {
  left: 0;
}
#reason .txt_container .photo::before {
  position: absolute;
  content: '';
  top: -1px;
  width: 100px;
  height: 100px;
  background-size: contain;
}
#reason .txt_container:nth-of-type(odd) .photo::before {
  background-image: url("../img/reason_triangle_L.webp");
  left: -1px;
}
#reason .txt_container:nth-of-type(even) .photo::before {
  background-image: url("../img/reason_triangle_R.webp");
  right: -1px;
}
#reason .txt_container .photo::after {
  position: absolute;
  content: '';
  top: 20px;
  width: 640px;
  height: 380px;
  background-color: #2cb4ad;
  z-index: -1;
}
#reason .txt_container:nth-of-type(odd) .photo::after {
  left: 20px;
}
#reason .txt_container:nth-of-type(even) .photo::after {
  right: 20px;
}
#reason .txt_container .txt_box {
  position: absolute;
  width: 450px;
  height: auto;
  top: 100px;
}
#reason .txt_container .txt_box:last-of-type {
  margin-bottom: 0;
}
#reason .txt_container:nth-of-type(odd) .txt_box {
  left: calc(50% - 450px);
  padding: 0 30px 0 0;
}
#reason .txt_container:nth-of-type(even) .txt_box {
  right: calc(50% - 450px);
  padding: 0 0 0 30px;
}
#reason .txt_container .txt_box h3 {
  display: flex;
  align-items: center;
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 40px;
  margin-left: 105px;
  height: 91px;
}
#reason .txt_container .txt_box h3::before {
  content: '';
  position: absolute;
  top: 0;
  width: 80px;
  height: 91px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}
#reason .txt_container:nth-of-type(1) .txt_box h3::before {
  background-image: url("../img/reason_num1.webp");
  left: 0;
}
#reason .txt_container:nth-of-type(2) .txt_box h3::before {
  background-image: url("../img/reason_num2.webp");
  left: 30px;
}
#reason .txt_container:nth-of-type(3) .txt_box h3::before {
  background-image: url("../img/reason_num3.webp");
  left: 0;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #reason {
    width: 100vw;
  }
  #reason h2 {
    margin-bottom: 3vw;
  }
  #reason .txt_container {
    width: 1024px;
    min-height: 320px;
    margin: 0 auto;
    left: calc(50% - (1024px / 2));
  }
  #reason .txt_container .photo {
    position: absolute;
    top: 0;
    width: 512px;
    height: 300px;
  }
  #reason .txt_container .photo::before {
    width: 8vw;
    height: 8vw;
  }
  #reason .txt_container .photo::after {
    top: 16px;
    width: 50vw;
    height: 300px;
  }
  #reason .txt_container:nth-of-type(odd) .photo::after {
    left: 16px;
  }
  #reason .txt_container:nth-of-type(even) .photo::after {
    right: 16px;
  }
  #reason .txt_container .txt_box {
    position: absolute;
    width: 45vw;
    height: auto;
    top: 8vw;
  }
  #reason .txt_container .txt_box:last-of-type {
    margin-bottom: 0;
  }
  #reason .txt_container:nth-of-type(odd) .txt_box {
    left: calc(50% - 45vw);
    padding: 0 2.5vw 0 0;
  }
  #reason .txt_container:nth-of-type(even) .txt_box {
    right: calc(50% - 45vw);
    padding: 0 0 0 2.5vw;
  }
  #reason .txt_container .txt_box h3 {
    font-size: 3.5vw;
    margin-bottom: 2vw;
    margin-left: 11vw;
    height: 9.38vw;
  }
  #reason .txt_container .txt_box h3::before {
    width: 8.33vw;
    height: 9.38vw;
  }
  #reason .txt_container:nth-of-type(1) .txt_box h3::before {
    left: 0;
  }
  #reason .txt_container:nth-of-type(2) .txt_box h3::before {
    left: 3vw;
  }
  #reason .txt_container:nth-of-type(3) .txt_box h3::before {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  #reason {
    overflow-x: hidden;
  }
  #reason h2 {
    margin-bottom: 4vw;
  }
  #reason .txt_container {
    width: 86.67vw;
    height: auto;
    min-height: 90vw;
    margin: 0 auto 8vw;
  }
  #reason .txt_container .photo {
    width: 90vw;
    height: 53.33vw;
  }
  #reason .txt_container:nth-of-type(odd) .photo {
    right: 0;
  }
  #reason .txt_container:nth-of-type(even) .photo {
    left: 0;
  }
  #reason .txt_container .photo::before {
    width: 13.3vw;
    height: 13.3vw;
  }
  #reason .txt_container .photo::after {
    top: 2.67vw;
    width: 90vw;
    height: 53.33vw;
  }
  #reason .txt_container:nth-of-type(odd) .photo::after {
    left: 2.67vw;
  }
  #reason .txt_container:nth-of-type(even) .photo::after {
    right: 2.67vw;
  }
  #reason .txt_container .txt_box {
    width: 100%;
    top: 60vw;
  }
  #reason .txt_container:nth-of-type(odd) .txt_box {
    left: 0;
    padding: 0;
  }
  #reason .txt_container:nth-of-type(even) .txt_box {
    right: 0;
    padding: 0;
  }
  #reason .txt_container .txt_box h3 {
    font-size: 4.8vw;
    margin-bottom: 4vw;
    margin-left: 18.67vw;
    height: 15vw;
  }
  #reason .txt_container .txt_box h3::before {
    width: 13vw;
    height: 15vw;
  }
  #reason .txt_container:nth-of-type(1) .txt_box h3::before {
    left: 0;
  }
  #reason .txt_container:nth-of-type(2) .txt_box h3::before {
    left: 0;
  }
  #reason .txt_container:nth-of-type(3) .txt_box h3::before {
    left: 0;
  }
  #reason .txt_container:nth-of-type(4) .txt_box h3::before {
    left: 0;
  }
}

/*-----------------------------------------------------------------------------------------------------------
	4. 4ステップ
-----------------------------------------------------------------------------------------------------------*/
#step {
  width: 100%;
  height: auto;
  background-color: #e4f5f4;
}

#step h2 {
  color: #023e62;
  margin-bottom: 60px;
}

#step ul {
  list-style: none;
  width: 100%;
}
#step ul li {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 95px;
}
#step ul li .step_container {
  width: 100%;
  height: auto;
  min-height: 170px;
  background-color: #fff;
  background-size: 120px;
  background-repeat: no-repeat;
  background-position: top 25px left 60px;
  border-radius: 10px;
  filter: drop-shadow(0 5px 0 rgba(155,197,198,0.5));
  padding: 15px;
}
#step ul li:last-child {
  margin-bottom: 0;
}
#step ul li::before {
  position: absolute;
  content: url("../img/flow_arrow.svg");
  width: 70px;
  height: 0;
  left: calc(50% - 35px);
  top: -95px;
  bottom: 0px;
  padding-top: 30px;
  filter: none;
}
#step ul li:first-child::before {
  content: '';
}
#step ul li .step_container::before {
  position: absolute;
  transform: scale(50%);
  width: 0;
  height: 0;
  left: -30px;
  top: -30px;
}

#step ul li:nth-of-type(1) .step_container {
  background-image: url("../img/flow_pic_1.svg");
}
#step ul li:nth-of-type(1) .step_container::before {
  content: url("../img/flow_num_1.webp");
}
#step ul li:nth-of-type(1) .step_container .inquiry {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 900px;
  background-color: #e4f5f4;
  border-radius: 5px;
  padding: 20px 30px;
  margin-top: 20px;
}
#step ul li:nth-of-type(1) .step_container .inquiry .btn {
  width: 480px;
  height: 80px;
}
#step ul li:nth-of-type(1) .step_container .inquiry .tel {
  width: 321px;
  height: 72px;
}

#step ul li:nth-of-type(2) .step_container {
  background-image: url("../img/flow_pic_2.svg");
}
#step ul li:nth-of-type(2) .step_container::before {
  content: url("../img/flow_num_2.webp");
}
#step ul li:nth-of-type(3) .step_container {
  background-image: url("../img/flow_pic_3.svg");
}
#step ul li:nth-of-type(3) .step_container::before {
  content: url("../img/flow_num_3.webp");
}
#step ul li:nth-of-type(4) .step_container {
  background-image: url("../img/flow_pic_4.svg");
}
#step ul li:nth-of-type(4) .step_container::before {
  content: url("../img/flow_num_4.webp");
}
#step ul li .step_container img {
  display: inline;
}

#step ul li .flow_notes {
  margin-left: 200px;
  padding-top: 1em;
}
#step ul li .flow_notes h3 {
  font-size: 1.875em;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: .5em;
}

@media (min-width: 768px) and (max-width: 959px) {
  #step h2 {
    margin-bottom: 6vw;
  }
  #step ul li {
    margin-bottom: 9.5vw;
  }
  #step ul li .step_container {
    min-height: auto;
    background-size: 12vw;
    background-position: top 2.5vw left 6vw;
    border-radius: 1vw;
    padding: 1.5vw;
  }
  #step ul li .step_container::before {
    transform: scale(40%);
    left: -3vw;
    top: -3vw;
  }
  #step ul li:nth-of-type(1) .step_container .inquiry {
    width: 100%;
    border-radius: .5vw;
    padding: 2vw;
    margin-top: 2vw;
  }
  #step ul li:nth-of-type(1) .step_container .inquiry .btn {
    width: 50vw;
    height: 8.3vw;
  }
  #step ul li:nth-of-type(1) .step_container .inquiry .tel {
    width: 33.3vw;
    height: 7.5vw;
  }
}

@media screen and (max-width: 767px) {
  #step h2 {
    margin-bottom: 6.67vw;
  }
  #step ul li {
    margin-bottom: 12.67vw;
  }
  #step ul li .step_container {
    min-height: 24vw;
    background-size: 16vw;
    background-position: top 4.67vw left 9.33vw;
    padding: 0 2.67vw 2.67vw;
    border-radius: 1.33vw;
    filter: drop-shadow(0 1.3vw 0 rgba(155,197,198,0.5));
    margin-bottom: 1vw;
  }
  #step ul li .step_container::before {
    transform: scale(25%);
    left: -2.67vw;
    top: -2.67vw;
  }
  #step ul li::before {
    transform: scale(50%);
    top: -8.67vw;
    padding-top: 0;
  }
  #step ul li:nth-of-type(1) .step_container .inquiry {
    display: block;
    width: 100%;
    border-radius: 0.67vw;
    padding: 3.33vw;
    margin-top: 5vw;
  }
  #step ul li:nth-of-type(1) .step_container .inquiry .btn {
    width: 80vw;
    height: 15vw;
    margin: 0 auto 4vw;
  }
  #step ul li:nth-of-type(1) .step_container .inquiry .tel {
    width: 64vw;
    height: 14.4vw;
    margin: 0 auto;
  }
  #step ul li .step_container .flow_notes {
    width: 60vw;
    margin-left: calc((220 / 750) * 100%);
  }
  #step ul li .step_container .flow_notes h3 {
    font-size: 4vw;
    margin-bottom: 0;
  }
}


/*-----------------------------------------------------------------------------------------------------------
	5. 業者様の声
-----------------------------------------------------------------------------------------------------------*/
#voice {
  width: 100%;
  height: auto;
  background-color: #2cb4ad;
}

#voice h2 {
  color: #fff;
  margin-bottom: 60px;
}

#voice .voice_container {
  position: relative;
  width: 100%;
  background-color: #fff;
  background-size: 150px;
  background-repeat: no-repeat;
  background-position: top 40px left 30px;
  border-radius: 10px;
  padding: 40px 40px 50px 210px;
}
#voice .voice_container:nth-of-type(1) {
  background-image: url("../img/voice_pic1.webp");
}
#voice .voice_container:nth-of-type(2) {
  background-image: url("../img/voice_pic2.webp");
}
#voice .voice_container:nth-of-type(3) {
  background-image: url("../img/voice_pic3.webp");
}
#voice .voice_container:nth-of-type(4) {
  background-image: url("../img/voice_pic4.webp");
}
#voice .voice_container:nth-of-type(5) {
  background-image: url("../img/voice_pic5.webp");
}
#voice .voice_container:nth-of-type(6) {
  background-image: url("../img/voice_pic6.webp");
}

#voice .voice_container::before {
  position: absolute;
  content: '';
  background-image: url("../img/voice_ttl.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 52px;
  top: -20px;
  left: 30px;
}
#voice .voice_container:not(:last-child) {
  margin-bottom: 60px;
}

#voice .voice_container .name {
  font-size: 1.875em;
  font-weight: 700;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 959px) {
  #voice h2 {
    margin-bottom: 6vw;
  }

  #voice .voice_container {
    background-size: 15vw;
    background-position: top 4vw left 3vw;
    border-radius: 1vw;
    padding: 4vw 4vw 4vw 21vw;
  }
  #voice .voice_container::before {
    width: 15vw;
    height: 5.2vw;
    top: -2vw;
    left: 3vw;
  }
  #voice .voice_container:not(:last-child) {
    margin-bottom: 6vw;
  }

  #voice .voice_container .name {
    font-size: 3vw;
    margin-bottom: 3vw;
  }
}

@media screen and (max-width: 767px) {
  #voice h2 {
    margin-bottom: 8vw;
  }

  #voice .voice_container {
    background-size: 20vw;
    background-position: top 5.33vw left 4vw;
    border-radius: 1.33vw;
    padding: 4vw 4vw 4vw 28vw;
  }
  #voice .voice_container::before {
    width: 20vw;
    height: 6.93vw;
    top: -2.67vw;
    left: 4vw;
  }
  #voice .voice_container:not(:last-child) {
    margin-bottom: 8vw;
  }

  #voice .voice_container .name {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
}


/*-----------------------------------------------------------------------------------------------------------
	6. クロージング
-----------------------------------------------------------------------------------------------------------*/
#closing {
  width: 100%;
  height: auto;
  background-color: #e4f5f4;
  background-image: url("../img/closing_bg_pc.webp");
  background-image: image-set(url("../img/closing_bg_pc.webp") 1x, url("../img/closing_bg_pc@2x.webp") 2x);
  -webkit-background-image: image-set(url("../img/closing_bg_pc.webp") 1x, url("../img/closing_bg_pc@2x.webp") 2x);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto 570px;
  padding-top: 60px;
}

#closing .content_width {
  width: 960px;
  padding-left: 400px;
}
#closing .h_balloon {
  position: relative;
  width: 100%;
  background-color: #2cb4ad;
  border-radius: 100vh;
  padding: 15px 30px;
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  color: #fff;
  filter:
    drop-shadow(2px 2px 2px #fff)
    drop-shadow(-2px -2px 2px #fff)
    drop-shadow(-2px 2px 2px #fff)
    drop-shadow(2px -2px 2px #fff);
}
#closing .h_balloon::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50px;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 20px solid #2cb4ad;
}

#closing h2 {
  font-size: 3em;
  text-align: left;
  line-height: 1.3;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #092b36;
  text-shadow:
    3px 3px 3px #fff, -3px -3px 3px #fff,
    -3px 3px 3px #fff, 3px -3px 3px #fff,
    3px 0 3px #fff, -3px 0 3px #fff,
    0 3px 3px #fff, 0 -3px 3px #fff;
}

#closing ul {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
#closing ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
}

@media (min-width: 768px) and (max-width: 959px) {
  #closing {
    background-image: url("../img/closing_bg_tab.webp");
    background-size: auto 59.38vw;
    padding-top: 6vw;
  }
  #closing .content_width {
    width: 96.88vw;
    padding-left: 40vw;
    margin: 0 auto;
  }
  #closing .h_balloon {
    width: 100%;
    padding: 1.5vw 3vw;
    font-size: 3vw;
  }
  #closing h2 {
    font-size: 5vw;
    margin-top: 2vw;
    margin-bottom: 1vw;
  }
  #closing ul {
    margin-bottom: 1.5vw;
  }
  #closing ul li {
    width: 18vw;
    height: 18vw;
  }
}

@media screen and (max-width: 767px) {
  #closing {
    background-image: url("../img/closing_bg_sp.webp");
    background-size: auto 120vw;
    padding-top: 10vw;
  }
  #closing .content_width {
    width: 92vw;
    padding: 0;
    margin: 0 auto;
  }
  #closing .h_balloon {
    width: 100%;
    padding: 3vw 6.67vw;
    font-size: 4.8vw;
  }
  #closing .h_balloon::before {
    left: 8vw;
    margin-left: -2px;
    border: 2vw solid transparent;
    border-top: 4vw solid #2cb4ad;
  }
  #closing h2 {
    font-size: 8vw;
    margin-top: 2vw;
    margin-bottom: 40vw;
    text-align: center;
  }
  #closing ul {
    margin-bottom: 2.67vw;
  }
  #closing ul li {
    width: 30vw;
    height: 30vw;
  }
}

/*-----------------------------------------------------------------------------------------------------------
  一括見積もりフォーム（FV以外の箇所）
-----------------------------------------------------------------------------------------------------------*/
.form_area {
  width: 100%;
}

.form_area .form {
  width: auto;
  max-width: 960px;
  height: auto;
  background-color: #fff;
  border: 5px solid #00ac9a;
  box-sizing: border-box;
  padding: 0 0 30px;
  border-radius: 20px;
  margin: 0 auto;
}

.form_area .form h3 {
  position: relative;
  background-color: #00ac9a;
  width: 100%;
  height: auto;
  font-size: 2.625em;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #fff;
  border-radius: 10px 10px 0 0;
  padding: .3em .75em;
}
.form_area .form h3::before {
  position: absolute;
  content: "";
  background-image: url("../img/cta_freequote.webp");
  background-size: contain;
  background-repeat: no-repeat;
  width: 130px;
  height: 88px;
  top: -20px;
  bottom: 0;
  left: 100px;
}

.form_area form {
  width: calc(900 / 960 * 100%);
  margin: 10px auto;
}
.form_area form .form-item {
  padding: 15px 30px;
  border-bottom: 1px solid #d1d1d1;
}
.form_area form .form-item .form-data {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.form_area form label.item-label {
  width: calc(60 / 900 * 100%);
  height: 50px;
  background-color: #00ac9a;
  border-radius: 10px 0 0 10px;
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  align-content: center;
  color: #fff;
}
.form_area form select {
  width: calc(840 / 900 * 100%);
  height: 50px;
  padding: .5em;
  background-color: #f8f8f8;
  border: 1px solid #d4d4d4;
  border-radius: 0 10px 10px 0;
}
.form_area form input[type="text"] {
  width: calc(840 / 900 * 100%);
  height: 50px;
  padding: .5em;
  background-color: #f8f8f8;
  border: 1px solid #d4d4d4;
  border-radius: 0 10px 10px 0;
}
.form_area form .form_btn {
  position: relative;
  width: calc(640 / 900 * 100%);
  height: auto;
  padding: 25px 0;
  background-color: #ff8f00;
  color: #fff;
  font-size: 2.625em;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  display: block;
  cursor: pointer;
  margin: 30px auto;
}
.form_area form .form_btn .now {
  position: absolute;
  background-image: url("../img/cta_btn_now.webp");
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  width: 75px;
  height: 75px;
  top: -10px;
  left: 40px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.form_area form .form_btn::after {
  content: '';
  position: absolute;
  background-image: url("../img/btn_arrow.webp");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 22px;
  top: calc(50% - (22px/2));
  right: 25px;
}
.form_area form .note {
  font-size: .9em;
  line-height: 1.5;
}
.form_area form .note a {
  color: #ea5532;
}

@media (min-width: 768px) and (max-width: 959px) {
  .form_area {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
  }
  .form_area .form {
    border-radius: 0;
  }
  .form_area .form h3 {
    font-size: 4.38vw;
    padding: 1vw 0 2vw;
    border-radius: 0;
  }
  .form_area .form h3::before {
    width: 13.54vw;
    height: 9.79vw;
    top: -2vw;
    left: 10vw;
  }
  .form_area form .form-item {
    padding: 1.5vw 1vw;
  }
  .form_area form label.item-label {
    width: 10%;
    height: 6vw;
    font-size: 3vw;
  }
  .form_area form select {
    width: 90%;
    height: 6vw;
  }
  .form_area form input[type="text"] {
    width: 90%;
    height: 6vw;
  }
  .form_area form .form_btn {
    width: 66.67vw;
    height: auto;
    padding: 3vw 0;
    font-size: 4.38vw;
    margin: 5vw auto;
  }
  .form_area form .form_btn .now {
    width: 7.9vw;
    height: 8.1vw;
    top: -1vw;
    left: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .form_area {
    width: 100%;
  }
  .form_area .form {
    width: 100vw;
    height: auto;
    padding: 0;
    border-radius: 0;
    margin-left: 0;
  }
  .form_area .form h3 {
    text-align: right;
    font-size: 6vw;
    border-radius: 0;
    padding: 3vw 4vw;
  }
  .form_area .form h3::before {
    width: 17.33vw;
    height: 12.53vw;
    top: -2vw;
    left: 4vw;
  }
  .form_area form {
    width: calc(690 / 750 * 100%);
    margin: 0 auto;
  }
  .form_area form .form-item {
    padding: 3vw 0;
  }
  .form_area form label.item-label {
    width: calc(90 / 690 * 100%);
    height: 50px;
  }
  .form_area form select {
    width: calc(600 / 690 * 100%);
    height: 50px;
    padding: .5em;
  }
  .form_area form input[type="text"] {
    width: calc(600 / 690 * 100%);
  }
  .form_area form .form_btn {
    width: 100%;
    height: 20vw;
    font-size: 7vw;
    padding: 5vw 0px 5vw 8vw;
    margin: 5vw auto;
  }
  .form_area form .form_btn .now {
    width: 13.47vw;
    height: 13.73vw;
    top: -2.67vw;
    left: 4vw;
  }
  .form_area form .form_btn::after {
    width: 2.8vw;
    height: 4.4vw;
    top: calc(50% - (4.4vw/2));
    right: 5.6vw;
  }
}



/*-----------------------------------------------------------------------------------------------------------
	footer
-----------------------------------------------------------------------------------------------------------*/
footer {
	width: 100%;
	text-align: center;
}

footer .company {
  padding: 25px 0;
  background: #e4f5f4;
  line-height: 1.75;
}

footer ul .foot_link {
	width: 100%;
	height: auto;
}
footer ul li {
	display: inline-block;
}
footer ul li:after {
	padding-left: 1em;
  padding-right: 1em;
	content: "|";
}
footer ul li:last-child:after {
	content: "";
}

footer ul li a {
  display: inline-block;
  padding: .5em;
}

footer .copyright {
	font-size: 0.7rem;
  background: #003953;
  color: #fff;
  padding: 30px;
}

@media screen and (max-width: 767px) {
	footer .company {
    padding: 8vw 0;
  }
	
	footer ul li {
		font-size: 3.2vw;
	}
	footer ul li:after {
		border-right: 20px;
		padding-left: 10px;
		content: "|";
	}
	footer ul li:last-child:after {
		content: "";
	}
	footer .copyright {
		font-size: 2.4vw;
	}
}


/*-----------------------------------------------------------------------------------------------------------
	▲page_top			
-----------------------------------------------------------------------------------------------------------*/
#backTo_top {
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 70px;
	right: 30px;
	z-index: 999;
}

@media screen and (max-width: 767px) {
	#backTo_top {
		width: 16vw;
		height: 16vw;
		position: fixed;
		bottom: 2vw;
		right: 2vw;
		z-index: 999;
	}
}

/* Added: submit pulse effect */
.blink2 { animation: pulse 1s ease-in-out infinite alternate; }
@keyframes pulse { 0% { transform: translateZ(0); opacity: .95; } 100% { transform: translateZ(0); opacity: 1; filter: brightness(1.05); } }
