@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*      common         */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
*,
::before,
::after{
  box-sizing: border-box;
  font-size: 14px;
  color: #111;
}

body{
  font-family: 'Noto Sans JP', sans-serif, '游ゴシック', 'ヒラギノ角ゴ ProN', 'MS Pゴシック';
}

ul, ol, dl{
  list-style: none;
}

p{
  font-size: 15px;
  line-height: 1.5;
}

/* form */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  background-color: #F5F9FC;
  border: 1px solid #959595;
  border-radius: 5px;
  color: #595757;
  font-size: 15px;
  padding: 6px 8px;
}
select {
  background: url(../img/icon_arrow.png) right 12px center no-repeat #F5F9FC;
  background-size: 14px 11.5px;
  /* transform: inherit; */
  /* transform-origin: 50% 50%; */
}
.caution-area input[type="text"],
.caution-area input[type="email"],
.caution-area input[type="tel"],
.caution-area input[type="number"],
.caution-area textarea,
.caution-area select{
	background-color: #FAEFF0;
}

.radio-box input[type="radio"]+.radio-btn{
  padding-left: 24px;
  position: relative;
  margin-right: 20px;
}
.radio-box input[type="radio"]+.radio-btn:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto 0;
  width: 20px;
  height: 20px;
  max-width: 20px;
  min-width: 20px;
  border: 1px solid #C8C8C8;
  border-radius: 50%;
}
.radio-box input[type="radio"]:checked+.radio-btn:before {
  border: 1px solid #0065B2;
}
.radio-box input[type="radio"]:checked+.radio-btn:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 4px;
  margin: auto 0;
  width: 12px;
  height: 12px;
  max-width: 12px;
  min-width: 12px;
  background: #0065B2;
  border-radius: 50%;
}



/* btn */
.btn,
.btn_s,
.btn_l {
  display: inline-block;
  position: relative;
  background: linear-gradient(to bottom, #F9E900, #F54B00);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .30);
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	border: 3px solid #fff;
	text-decoration: none;
  margin: 0;
  padding: 10px 20px 12px 30px;
}
.btn {
  min-width: 280px;
}
.btn_s {
  font-size: 18px;
  padding: 5px 10px 6px;
  min-width: auto;
}
input.btn_s {
  padding: 10px 14px;
}
.btn_l {
	font-size: 23px;
	font-weight: 700;
  padding: 12px 20px 12px 40px;
}

.btn::before,
.btn_l::before {
	content: "";
  position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
  margin-right: 20px;
  margin-bottom: 2px;
  left: 10px;
  top: 40%;
}

.btn.pdf::before,
.btn_s.pdf::before,
.btn_l.pdf::before {
	content: none;
}
.btn.pdf::after,
.btn_s.pdf::after,
.btn_l.pdf::after {
	content: "";
  background: url(../img/icon_pdf.png) no-repeat center;
  background-size: 100%;
	display: inline-block;
	width: 20px;
	height: 24px;
  margin-left: 10px;
  margin-bottom: 2px;
  vertical-align: bottom;
}
.btn.back,
.btn_s.back,
.btn_l.back {
  background: #EAEAEA;
  color: #707070;
}
.btn.back::before,
.btn_l.back::before {
	border-top: 3px solid #707070;
	border-right: 3px solid #707070;
  transform: rotate(-135deg);
  left: 15px;
}

@media screen and (min-width: 768px){
  .btn:hover,
  .btn_s:hover,
  .btn_l:hover {
    background: linear-gradient(to bottom, #FAE84C, #F8874C);
    box-shadow: 0 5px 5px rgba(0, 0, 0, .20);
  }
  .btn.back:hover,
  .btn_s.back:hover,
  .btn_l.back:hover {
    background: #EFEFEF;
    color: #999:
  }
}

.btn:disabled,
.btn_s:disabled,
.btn_l:disabled {
  pointer-events: none;
}
.btn:disabled::after,
.btn_s:disabled::after,
.btn_l:disabled::after {
  content: "";
  position: absolute;
  background-color: #000;
  opacity: .3;
  top: 0; right: 0; bottom: 0; left: 0;
}
input.btn:disabled,
input.btn_s:disabled,
input.btn_l:disabled {
  background: linear-gradient(to bottom, #AF9E24, #AE5724);
  box-shadow: 0 5px 5px rgba(0, 0, 0, .10);
	color: #B2B2B1;
	border: 3px solid #B2B2B1;
}

/* パンくず */
.breadcrumb{
  padding: 20px 0 20px 20px;
}
.breadcrumb ol{
  text-align: left;
}
.breadcrumb ol li{
  display: inline-block;
  font-size: 12px;
}
.breadcrumb ol li:nth-of-type(n+2)::before {
  content: "＞";
  font-size: 12px;
  margin: 0 .4em;
}
.breadcrumb ol li a{
  color: #1974B9;
  font-size: 12px;
  text-decoration: none;
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*      ヘッダー         */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#header-fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  background-color: #fff;
  width: 100%;
	z-index: 1;
}

#header-bk {
	background-color: #fff;
	height:70px;
	width:100%;
  border-bottom: 1px solid #707070;
}

#header-inner {
  display:-ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
	height: 70px;
	max-width: 1024px;
  margin: 0 auto;
}

#header-inner a {
  text-decoration: none;
}
#header-inner .header-logo{
	display:-ms-flexbox;
  display: flex;
	-ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
}
.header-logo a.logoimg{
  display: inline-block;
  width: 46px;
}
.header-logo a img{
  width: 100%;
  vertical-align: bottom;
}
.header-logo .tel{
  color: #0065B2;
  font-weight: bold;
  font-size: 17px;
  margin-left: 8px;
}
.header-logo .tel::before{
  content: "";
  display: inline-block;
  background: url(../img/icon_tel.png) no-repeat center;
  background-size: 100%;
  height: 24px;
  width: 24px;
  vertical-align: bottom;
  margin: 0 4px;
}

.header-menu ul {
  display:-ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
	font-size: 0;
}

.header-menu ul li {
  display: inline-block;
  position: relative;
  width: 130px;
  text-align: center;
}

.header-menu ul li a {
  /* display: block; */
  min-height: 70px;
  /* padding-top: 16px; */
  display:-ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
}

.header-menu ul li a span {
  display: block;
  font-size: 8px;
  color: #0065B2;
}

.header-menu ul li.current::before {
  content: "";
  background-color: #0065B2;
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  bottom: 0;
}
.header-menu ul li.current::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 4px 7px 4px;
  border-color: transparent transparent #0065B2 transparent;
  bottom: 6px;
  left: 61px;
}

@media screen and (min-width: 768px){
  .header-menu ul li a:hover,
  .header-menu ul li a:hover span {
    background-color: #3B82C4;
    color: #fff;
  }
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*        ボディ開始　       */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
main {
	padding:70px 0 0;
	max-width:1024px;
	margin:auto;
	color: #333;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*     backToTopボタン      */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
#backToTop {
	background-color: #0065B2;
  right: 4%;
	z-index: 2;
}

#backToTop a {
	font-size: 15px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 10px;
	width: 66px;
	height: 66px;
}

.triangle {
	position:relative;
	display:block;
}

.triangle::before {
	content: "";
  display:inline-block;
  width: 0;
  height: 0;
  border-right: solid 10px transparent;
  border-bottom: solid 10px #fff;
  border-left: solid 10px transparent;
}

@media screen and (min-width: 768px){
  #backToTop a:hover {
    background-color: rgb(145, 188, 245);
    text-decoration: none;
  }
}


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*     　　フッター　 　      */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
footer{
  position: relative;
  background: url(../img/footer_pic.jpg) no-repeat bottom 20% center;
  background-size: cover;
  background-color: rgba(12, 75, 147, .75);
  text-align: center;
}
footer .footer-menu {
	max-width: 1024px;
	margin:auto;
}
footer .footer-list {
  display:-ms-flexbox;
	display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: start;
  align-items: flex-start;
  color: #fff;
  padding: 50px;
}
footer .footer-logo {
  width: 80px;
}
footer .footer-logo img {
  width: 85%;
}
footer address {
  color: #fff;
	font-style: normal;
	margin: 0 20px;
  text-align: left;
}
footer .footer-nav {
	column-count: 2;
	column-width: 160px;
	margin: 0 20px;
}
footer .footer-nav li {
	margin-bottom: 8px;
  text-align: left;
}
footer .footer-nav li a {
	color: #fff;
	text-decoration: none;
}
footer .footer-nav li::before {
	content: "";
	display: inline-block;
	top: 13px;
	left: -12px;
	box-sizing: border-box;
	border-style: solid;
	border-width: 7px;
	border-left-color: #fff;
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-top-color: transparent;
}
footer .copy {
  display: block;
  color: #fff;
  padding-bottom: 10px;
  margin-top: 60px;
}

#footer-fixed {
  position: fixed;
	bottom: 10px;
  /* left: 0px; */
  width: 100%;
  /* height: 100px; */
	z-index: 1;
  margin-bottom: 24px;
}


@media screen and (max-width: 767px){
  /* modal */
  .modal-open {
    position: fixed;
    overflow-y: hidden;
  }
  .confirm-area + .mfp-wrap {
    position: fixed !important;
    top: 0 !important;
    overflow-y: auto !important;
  }
  .mfp-container {
    position: relative;
  }
  .confirm-area + .mfp-auto-cursor .mfp-content {
      /* top: 3%; */
      /* display: flex; */
      align-items: baseline;
      flex-wrap: wrap;
  }
  .confirm-area .mfp-content div[class^="popup-content--"]{
    position: relative;
  }
  .mfp-inline-holder .mfp-content,
  .mfp-ajax-holder .mfp-content {
    height: 100%;
  }

  .btn,
  .btn_s{
    font-size: 16px;
    padding: 10px 10px 10px 30px;
    min-width: auto;
  }
  .btn_l{
    font-size: 18px;
    padding: 10px 10px 10px 30px;
  }
  .btn::before{
    width: 10px;
    height: 10px;
    margin-right: 10px;
  }
  .btn_l::before{
    width: 12px;
    height: 12px;
    margin-right: 10px;
  }
  #header-fixed{
    z-index: 3;
  }
  #header-bk{
    height: 60px;
  }
  #header-inner{
    height: 60px;
  }
  .header-logo a.logoimg{
    width: 40px;
  }
  nav {
    background-color: #EFEFEF;
    position: fixed;
    top: 60px;
    bottom: 0;
    right: -90%;
    width: 90%;
    z-index: 2;
    transition-duration: .5s;
  }
  .header-menu{
    text-align: center;
  }
  .header-menu ul{
    display: block;
    background-color: #fff;
    /* -ms-flex-direction: column; */
    /* flex-direction: column; */
    margin: 0;
    padding: 0;
  }
  .header-menu ul li{
    border-bottom: 1px solid #707070;
    width: 100%;
    height: 70px;
  }
  .header-menu ul li.current::before,
  .header-menu ul li.current::after{
    display: none;
  }
  .header-menu ul li::after,
  .header-menu ul li.current::after{
    content: "";
    position: absolute;
    right: 30px;
    top: 42%;
    left: auto;
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7.5px 0 7.5px 9px;
    border-color: transparent transparent transparent #007bff;
  }
  .header-menu ul li a{
    color: #111;
    padding: 20px 30px;
    text-align: left;
    width: 100%;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .header-menu .nav-request{
    font-size: 13px;
  }
  .header-menu a.btn_l{
    margin-top: 40px;
  }
  label {
    display: inline-block;
    padding: 7px 10px;
    background-color: transparent;
    cursor: pointer;
    margin: 0;
    /* z-index: 3; */
    /* position: fixed; */
    right: 0;
    width: 60px;
    height: 60px;
    padding: 15px;
  }
  .menu_bar {
    display: block;
    background-color: #0799d3;
    width: 30px;
    height: 3px;
    border-radius: 5px;
    margin: 5px auto;
    transition: background-color .5s ease-in, transform .5s ease-in, width .5s ease-in;
  }
  .area-0 {
    top: 0;
    bottom: 0;
    position: absolute;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 2;
    transition: transform .5s ease-in-out;
  }
  .float {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 100px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, .7);
  }
  .float a {
    /* border-bottom: 2px solid rgba(255, 255, 255, .7); */
    padding: 20px 0;
    display: block;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    transition: color .3s .15s ease-in;
  }
  #header-bk input[type="checkbox"] {
    display: none;
  }
  #header-bk input[type="checkbox"]:checked ~ nav {
    transform: translateX(-100%);
  }
  #header-bk input[type="checkbox"]:checked ~ label {
    background-color: #0065B2;
  }
  #header-bk input[type="checkbox"]:checked ~ label .menu_bar {
    background-color: #fff;
  }
  #header-bk input[type="checkbox"]:checked ~ label .top {
    transform: translateY(8px) rotateZ(45deg);
  }
  #header-bk input[type="checkbox"]:checked ~ label .bottom {
    transform: translateY(-7px) rotateZ(-45deg);
  }
  #header-bk input[type="checkbox"]:checked ~ label .middle {
    width: 0;
  }
  .middle {
    margin: 0 auto;
  }

  .breadcrumb{
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
  }

  footer{
    background-size: auto;
  }
  footer .footer-list{
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 20px 150px;
  }
  footer .footer-list .footer-logo a{
    display: block;
    margin-bottom: 20px;
  }
  footer address{
    position: absolute;
    font-size: 13px;
    margin: 20px 0 0;
    padding: 0 20px;
    bottom: 130px;
    width: 100%;
  }
  body.estimate_comp footer address{
    bottom: 80px;
  }
  footer .footer-nav{
    column-count: 1;
    column-width: auto;
    width: 100%;
    margin: 0;
  }
  #footer-fixed{
    margin-bottom: 23px;
  }
  #footer-inner .btn{
    font-size: 15px;
  }
  #backToTop a{
    font-size: 12px;
    width: 46px;
    height: 46px;
    padding: 4px;
  }
  .triangle::before{
    border-right: solid 8px transparent;
    border-bottom: solid 8px #fff;
    border-left: solid 8px transparent;
  }
}
@media screen and (max-width: 360px){
  input[type="text"], input[type="email"], input[type="tel"], input[type="number"], textarea, select{
    font-size: 14px;
  }
  .btn, .btn_s{
    font-size: 14px;
    padding: 10px 10px 10px 20px;
  }
  .btn_l{
    font-size: 16px;
  }
  input.btn_s{
    padding: 8px 10px;
  }
  #footer-inner .btn{
    font-size: 12px;
    padding: 10px 10px 10px 20px;
  }
  .btn::before{
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    left: 6px;
  }
  .btn.back::before, .btn_l.back::before{
    width: 8px;
    height: 8px;
    border-top: 2px solid #707070;
    border-right: 2px solid #707070;
    left: 8px;
  }
}




/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*     　index　       */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.index-layout .area-1 {
	position: relative;
	max-width:1024px;
	margin: auto;
}

/* メインビジュアル */
#main_visual {
  background-position: center center;
  background-size: cover;
  position: absolute;
	width: 100%;
  height: 720px;
  overflow: hidden;
}
#main_visual::after {
  content: "";
  background: linear-gradient( rgba(0, 0, 0, 0), rgba(0, 101, 178, 0.5));
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
}
#main_visual img {
  position: relative;
  object-fit: cover;
  max-height: 720px;
	width: 100%;
}

#main_box {
	text-align: center;
}
#main_box h1 {
	color: #fff;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 2px;
  margin: 50px 0 0;
  padding:0;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, .55);
}
#main_box p {
	color: #fff;
	font-size: 23px;
	font-weight: bold;
	letter-spacing: 2px;
  margin: 20px 0;
  padding:0;
}

/* サブビジュアル */
#sub_visual {
	position: relative;
	background-color: rgba(253, 253, 251, .9);
	box-shadow: 7px 7px 13px rgba(0, 0, 0, .25);
	width: 700px;
  padding: 40px 60px 50px;
  margin: 40px auto;
}
#sub_visual img {
	position: absolute;
	bottom: 0;
	right: -15%;
	width: 300px;
}
#sub_visual h3 {
	color: #3B82C4;
	font-size: 23px;
	font-weight: bold;
  margin-bottom: 10px;
}
#sub_visual p {
	/* font-size: 16px; */
	font-weight: 300;
	line-height: 2;
  margin-bottom: 20px;
}

.index-layout .area-1_2,
.index-layout .area-2,
.index-layout .area-3 {
	max-width:1024px;
	margin: 110px auto 0;
	text-align: center;
}
.index-layout section[class^="area-"]:last-of-type {
	margin-bottom: 110px;
}
.index-layout h2 {
	font-size: 35px;
	font-weight: 500;
  margin-top: -130px;
  padding-top: 130px;
	bottom: 44px;
}
.index-layout h2::after {
	content: "";
	display: block;
	margin: 0 auto;
  width: 210px;
  height: 3px;
  background-color: #0065B2;
  margin-top: 10px;
}

.index-layout .area-1_2 h2 {
  background: url(../img/title_area.png) no-repeat bottom 40px center;
  background-size: auto 45%;
  background-position-y: 97px;
}
.index-layout .area-2 h2 {
  background: url(../img/title_example.png) no-repeat bottom 40px center;
  background-size: auto 40%;
  background-position-y: 97px;
}
.index-layout .area-3 h2 {
  background: url(../img/title_demolition.png) no-repeat bottom 40px center;
  background-size: auto 40%;
  background-position-y: 95px;
}

.index-layout h2 + p {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
	margin-top: 20px;
}

.index-layout .area-1_2 figure{
  width: 60%;
  margin: 20px auto;
}
.index-layout .area-1_2 figure img{
  width: 100%;
}
.index-layout .area-2 ul {
  display:-ms-flexbox;
  display: flex;
  text-align: center;
  font-size: 14px;
	margin: 40px;
}
.index-layout .area-2 ul > li {
  position: relative;
	background-color: #EFEFEF;
  text-align: center;
  font-size: 14px;
  padding: 40px;
  width: calc(100%/2);
}
.index-layout .area-2 ul > li:first-of-type {
	margin-right: 10px;
}
.index-layout .area-2 ul li h3{
	font-size: 20px;
	font-weight: bold;
	/* margin-bottom: 35px; */
}

.index-layout .area-2 ul li > ol li {
  display: inline-block;
  position: relative;
  width: 40%;
	max-width: 170px;
  margin-top: 30px;
}
.index-layout .area-2 ul li > ol li:nth-of-type(2) {
  margin-left: 20px;
}
.index-layout .area-2 ul li > ol li:nth-of-type(2)::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #707070;
  /* left: -20px; */
  left: -16px;
  top: 43%;
}
.index-layout .area-2 ul li a{
	margin-top: 30px;
}
.index-layout .area-2 ul li img{
  width: 100%;
  border: 1px solid #707070;
}


/* section area-3 */
.index-layout .area-3 ul {
	margin: 40px;
}
.index-layout .area-3 ul li {
  display:-ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  background-color: #EFEFEF;
	padding: 45px;
}
.index-layout .area-3 ul li div {
	display: block;
	vertical-align: top;
	text-align: left;
  padding-left: 40px;
  max-width: 70%;
}
.index-layout .area-3 ul li:nth-child(2) {
  flex-direction: row-reverse;
  margin-top: 10px;
}
.index-layout .area-3 ul li:nth-child(2) div {
  padding: 0 40px 0 0;
}
.index-layout .area-3 ul li div h3 {
  font-size: 23px;
  margin-bottom: 20px;
}
.index-layout .area-3 ul img {
  border: 1px solid #707070;
	display: inline-block;
	width: 300px;
}
.index-layout .area-3 ul li p {
	text-align: left;
	font-size: 16px;
	font-weight: 300;
  line-height: 1.8;
}

@media screen and (max-width: 767px){
  main{
    padding: 60px 20px 0;
    height: 100%;
    width: 100%;
  }
  main.index-layout{
    padding: 60px 0 0;
  }
  #main_visual img {
    max-height: 900px;
  	width: auto;
  }
  #main_box p {
  	font-size: 20px;
  }
  #sub_visual {
  	width: auto;
    margin: 20px;
    padding: 20px 10px 30px;
    text-align: center;
  }
  .index-layout h2 {
  	font-size: 22px;
    margin-top: -90px;
    padding-top: 90px;
  }
  .index-layout .area-1_2 h2,
  .index-layout .area-2 h2,
  .index-layout .area-3 h2{
    background-size: auto 30%;
    background-position-y: 75px;
  }
  .index-layout h2 + p{
    text-align: left;
    margin-left: 20px;
    margin-right: 20px;
  }
  .index-layout .area-1_2 figure{
    width: 100%;
    margin: 10px 0 0;
    padding: 0 20px;
  }
  .index-layout .area-1_2 figure img{
    width: 100%;
  }
  .index-layout .area-2 ul li h3{
    font-size: 18px;
  }
  .index-layout .area-2 ul{
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  .index-layout .area-2 ul > li{
    width: auto;
    padding: 20px 20px 30px;
  }
  .index-layout .area-2 ul > li:first-of-type{
    margin-right: 0;
    margin-bottom: 10px;
  }
  .index-layout .area-3 ul{
    margin-left: 0;
    margin-right: 0;
  }
  .index-layout .area-3 ul li,
  .index-layout .area-3 ul li:nth-child(2){
    position: relative;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
  }
  .index-layout .area-3 ul img{
    margin-top: 40px;
    margin-bottom: 10px;
    width: 100%;
  }
  .index-layout .area-3 ul li div,
  .index-layout .area-3 ul li:nth-child(2) div{
    padding: 0;
    max-width: 100%;
  }
  .index-layout .area-3 ul li div h3{
    position: absolute;
    top: 0;
    font-size: 20px;
    margin: 20px 0 10px;
  }
  .index-layout .area-3 ul li p{
    font-size: 14px;
  }
  .index-layout .area-2 ul li > ol li{
    margin-top: 20px;
  }
  .index-layout .area-2 ul li a{
    margin-top: 20px;
  }
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*     　about　       */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

.about-layout h1,
.estimate_comp-layout h1,
.request_comf-layout h1,
.request_comp-layout h1,
.notfound-layout h1 {
	background-color: #0065B2;
	color: #fff;
  font-size: 23px;
  margin: 0 auto 40px;
  padding: 20px 0;
	text-align: center;
}
.about-layout h2,
.estimate_comp-layout h2,
.request_comf-layout h2,
.request_comp-layout h2,
.notfound-layout h2 {
  font-size: 20px;
  margin: 40px 0 5px;
  text-align: left;
}
.about-layout section,
.estimate_comp-layout section,
.request_comf-layout section,
.request_comp-layout section,
.notfound-layout section {
  padding: 0 45px 60px;
  text-align: center;
}

.about-layout .gaiyou_l {
	display: inline-block;
	width: 50%;
	vertical-align: top;
}
.about-layout .gaiyou_r{
	display: inline-block;
  padding-left: 40px;
	width: 49%;
}
.about-layout .gaiyou_r h2{
  margin-top: 0;
}
.about-layout .gaiyou_r iframe{
  border: none;
}
.about-layout table {
	border-collapse: collapse;
  border: none;
}
.about-layout table th,
.about-layout table td {
	border-bottom: 1px solid #707070;
  border-right: none;
	padding: 10px 0 5px;
	text-align: left;
  vertical-align: top;
}
.about-layout table tr:nth-of-type(n+2) th,
.about-layout table tr:nth-of-type(n+2) td {
  padding-top: 30px;
}
.about-layout table th {
  color: #1974B9;
  font-size: 16px;
	font-weight: bold;
	width: 34%;
}
.about-layout table td {
  font-size: 15px;
  font-weight: normal;
}

.about-layout p {
	text-align: left;
	font-size: 14px;
}
@media screen and (max-width: 767px){ /* for about */
  .about main,
  .estimate_comp main,
  .request_comf main,
  .request_comp main,
  .notfound main {
    padding: 60px 0 0;
    margin-bottom: 60px;
  }
  .about-layout h1,
  .estimate_comp-layout h1,
  .request_comf-layout h1,
  .request_comp-layout h1,
  .notfound-layout h1 {
    font-size: 20px;
    margin: 0 auto 20px;
    padding: 10px 0;
  }
  .about-layout h2,
  .estimate_comp-layout h2,
  .request_comf-layout h2,
  .request_comp-layout h2,
  .notfound-layout h2 {
    font-size: 17px;
    margin: 0 0 5px;
  }
  .about-layout section,
  .estimate_comp-layout section,
  .request_comf-layout section,
  .request_comp-layout section,
  .notfound-layout section {
    padding: 0 20px 40px;
    text-align: center;
  }

  .about-layout .gaiyou_l,
  .about-layout .gaiyou_r{
    padding-left: 0;
    margin-top: 10px;
  	width: 100%;
  }
  .about-layout .gaiyou_r h2{
    margin-top: 20px;
  }
  .about-layout table th{
    font-size: 14px;
  }
  .about-layout table td{
    font-size: 14px;
  }

}


@media screen and (max-width: 360px){
  .about-layout table th{
    width: 29%;
  }
}

/* estimate_comp
-------------------------------*/
body.estimate_comp footer #footer-fixed{
  display: none;
}
body.estimate_comp footer .copy{
  margin-top: 0;
}
section.for_estimate_comp{
  background-color: #EFEFEF;
  padding: 45px;
}
section.for_estimate_comp article{
  background-color: #fff;
  border: 2px solid #1974B9;
  padding: 40px 40px 50px;
}
section.for_estimate_comp article h2{
  color: #3B82C4;
  text-align: center;
  margin: 0 0 20px;
}
section.for_estimate_comp article p{
  display: inline-block;
  color: #111;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: .1em;
  border-bottom: 3px solid #0065B2;
  padding: 0 10px 10px;
}
section.for_estimate_comp article p span{
  font-size: 18px;
  letter-spacing: normal;
}
section.for_estimate_comp h3{
  font-size: 20px;
  text-align: left;
  margin: 40px 0 10px;
}
table{
  background-color: #fff;
  border: 1px solid #707070;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 10px;
  width: 100%;
}
table th,
table td{
  padding: 10px;
  text-align: left;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
table th{
  color: #1974B9;
}
table td{
  font-weight: bold;
}
table.table_type1 tr:nth-of-type(even){
  background-color: #F5F9FC;
}
table.table_type1 tr th{
  width: 10%;
  padding-left: 20px;
}
table.table_type1 tr td{
  text-align: right;
}
table.table_type1 tr td span{
  font-weight: normal;
  font-size: 12px;
}
table.table_type2 tr:nth-of-type(odd){
  background-color: #F5F9FC;
}
table.table_type2 tr th{
  width: 50%;
}

section.area-request h2{
  color: #1974B9;
  font-size: 22px;
  text-align: center;
  padding: 20px 0 40px;
}
section.area-request aside{
  text-align: left;
  margin-bottom: 50px;
}
section.area-request aside p{
  font-size: 16px;
}

/* form */
section.area-request h3{
  font-size: 20px;
  text-align: left;
}
section.area-request form{
  text-align: left;
  width: 100%;
}
section.area-request form dl{
  display:-ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 20px;
}
section.area-request form dl dt,
section.area-request form dl dd{
  margin-bottom: 24px;
}
section.area-request form dl dt{
  display:-ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  width: 25%;
  padding: 8px 10px 8px 0;
}
section.area-request form dl dt label{
  font-size: 16px;
}
.icon_required{
  background-color: #B91925;
  border-radius: 4px;
  color: #fff;
  font-size: 11px;
  display: inline-block;
  text-align: center;
  padding: 2px 6px;
}
section.area-request form dl dd{
  width: 75%;
}
section.area-request form dl dd input,
section.area-request form dl dd select,
section.area-request form dl dd textarea{
  width: 100%;
}
section.area-request form .back,
.popup-content--confirm .back{
  margin-right: 20px;
}

.popup-content--confirm{
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 40px;
  width: 80%;
  max-width: 800px;
}
.popup-content--confirm h2{
  color: #1974B9;
  font-size: 20px;
  text-align: center;
}
.popup-content--confirm h3{
  font-size: 18px;
  margin: 40px 0 5px;
}
.popup-content--confirm .table_type2:last-of-type th{
  /* color: #111; */
}

@media screen and (max-width: 767px){
  section.for_estimate_comp{
    margin: 0 20px;
    padding: 20px;
  }
  section.for_estimate_comp article{
    padding: 20px 0 30px;
  }
  section.for_estimate_comp article h2{
    margin: 0 0 10px;
  }
  section.for_estimate_comp article p{
    font-size: 20px;
    padding: 0 0 10px;
  }
  section.for_estimate_comp article p span{
    font-size: 16px;
  }
  section.for_estimate_comp h3{
    font-size: 18px;
  }
  table.table_type1 tr th{
    width: 35%;
    padding-left: 12px;
  }
  section.area-request h2{
    padding: 40px 0 20px;
  }
  section.area-request aside p{
    font-size: 15px;
  }
  section.area-request form dl{
    -ms-flex-direction: column;
    flex-direction: column;
  }
  section.area-request form dl dt{
    font-size: 16px;
    width: 100%;
    -ms-flex-pack: start;
	  justify-content: flex-start;
    margin-bottom: 0;
  }
  section.area-request form dl dt label{
    padding: 0;
    width: auto;
    height: auto;
  }
  section.area-request form dl dt span{
    margin: 0 0 0 10px;
  }
  section.area-request form dl dd{
    margin-bottom: 10px;
    width: 100%;
  }
  section.area-request form .back,
  .popup-content--confirm .back{
    margin-right: 10px;
  }

  .popup-content--confirm{
    padding: 20px;
    width: 95%;
  }
  .popup-content--confirm h2{
    font-size: 18px;
    padding-top: 20px;
  }
  .popup-content--confirm h3{
    font-size: 16px;
    margin: 30px 0 5px;
  }
  .popup-content--confirm table tr{
    display:-ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .popup-content--confirm table tr:nth-of-type(odd){
    background-color: #fff;
  }
  .popup-content--confirm table tr th,
  .popup-content--confirm table tr td{
    width: 100%;
    border-right: none;
  }
  .popup-content--confirm table tr th{
    background-color: #F5F9FC;
    border-bottom: 1px dotted #707070;
  }
  .popup-content--confirm table tr:last-of-type td{
    border-bottom: none;
  }
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*      request_comp　      */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.request_comp-layout section h2,
.notfound-layout section h2{
  color: #1974B9;
  text-align: center;
}
.request_comp-layout section article{
  border: 2px solid #1974B9;
  font-size: 18px;
  padding: 40px;
  margin: 40px 0;
}
.request_comp-layout section article p{
  font-size: 16px;
  margin-bottom: 40px;
}
.request_comp-layout section article dl{
  display:-ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  margin: 0 auto;
  width: 40%;
}
.request_comp-layout section article dl dt{
  color: #1974B9;
  font-weight: bold;
  padding: 5px 0;
  width: 35%;
}
.request_comp-layout section article dl dd{
  font-weight: bold;
  padding: 5px 0;
  width: 65%;
}

@media screen and (max-width: 767px){
  .request_comp-layout section article{
    padding: 20px 10px;
    margin: 20px 0;
  }
  .request_comp-layout section article p{
    font-size: 14px;
    margin-bottom: 20px;
  }
  .request_comp-layout section article dl{
    width: 90%;
  }
  .request_comp-layout section article dl dt{
    width: 36%;
  }
  .request_comp-layout section article dl dd{
    overflow-wrap: break-word;
    padding: 5px;
    width: 63%;
  }
}

@media screen and (max-width: 360px){
  #sub_visual p{
    font-size: 13px;
  }
  .index-layout h2 + p{
    font-size: inherit;
  }
  .request_comp-layout section article dl{
    width: 100%;
  }
  .request_comp-layout section article dl dt{
    width: 39%;
  }
  .request_comp-layout section article dl dd{
    width: 61%;
  }
}





/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*     General　      */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
  .for_sp{
    display: none !important;
  }
}
@media screen and (max-width: 767px){
  .for_pc{
    display: none !important;
  }
}

.txt_l{text-align: left;}
.txt_r{text-align: right;}
.txt_c{text-align: center;}

.disp_inlnine{display: inline;}
.disp_blk{display: block;}
.disp_inlnine_blk{display: inline-block;}

.hide{display: none !important;}

a.txtlink{color: #0065B2;}
.caution{color: #B91925;}

.caution{color: #B91925;}

.mt5{margin-top: 5px !important;}
.mt10{margin-top: 10px !important;}
.mt20{margin-top: 20px !important;}
.mr5{margin-right: 5px !important;}
.mr10{margin-right: 10px !important;}
.mr20{margin-right: 20px !important;}
.mb5{margin-bottom: 5px !important;}
.mb10{margin-bottom: 10px !important;}
.mb20{margin-bottom: 20px !important;}
.ml5{margin-left: 5px !important;}
.ml10{margin-left: 10px !important;}
.ml20{margin-left: 20px !important;}

.pt5{padding-top: 5px !important;}
.pt10{padding-top: 10px !important;}
.pt20{padding-top: 20px !important;}
.pr5{padding-right: 5px !important;}
.pr10{padding-right: 10px !important;}
.pr20{padding-right: 20px !important;}
.pb5{padding-bottom: 5px !important;}
.pb10{padding-bottom: 10px !important;}
.pb20{padding-bottom: 20px !important;}
.pl5{padding-left: 5px !important;}
.pl10{padding-left: 10px !important;}
.pl20{padding-left: 20px !important;}

.clearfix{
  clear: both;
}
.clearfix::after{
  content: "";
  display: block;
  width: 100%;
  height: 0;
}
