@charset "UTF-8";
/* CSS Document */
.wrap {
  overflow: hidden;
}
body {
  background: #f8f9fb;
}
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
  h1, h2, h3, h4, p {}
  #header {
    background: #fff;
  }
  h1 img {
    width: 300px;
    float: left;
  }
  .header_right {
    float: right;
  }
  .header_right p {
    float: left;
    line-height: 1.3;
    font-size: 70%;
    color: #3b65a2;
  }
  .header_right p a {
    color: #3b65a2;
  }
  .header_right p.tellink span {
    color: #3b65a2;
    font-size: 2.3em;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  .header_right p.tellink span::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f098";
    margin-right: 5px;
  }
  #head_area {
    max-width: 1000px;
    margin: auto;
    padding: 30px 0;
    overflow: hidden;
  }
  /*メイン画像*/
  #index_img {
    position: relative;
  }
  #index_img .slider img {
    width: 100%;
    background-size: cover;
  }
  #index_img .slider {
    position: relative;
  }
  /*.top_area{
	position: relative;
	}*/
  .index_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .index_title p {
    max-width: 1000px;
    color: #fff;
    font-weight: bolder;
    text-align: center;
    font-size: 60px;
    white-space: nowrap;
    text-shadow: 0 0 10px #5473be, 0 0 10px #5473be, 0 0 10px #5473be;
    letter-spacing: -2px;
  }
  .index_title p:first-of-type {
    font-size: 16px;
    letter-spacing: 5px;
    margin-bottom: 20px;
  }
  .index_title p:last-of-type {
    font-size: 16px;
    text-shadow: 0 0 10px #5473be, 0 0 10px #5473be, 0 0 10px #5473be;
    letter-spacing: 2px;
    margin-top: 20px;
    line-height: 2;
  }
  #index_sengen_area {
    position: absolute;
    top: 95%;
    right: 0;
    left: 0;
    max-width: 1000px;
	width: 95%;
    background: #fff;
    padding: 80px 0;
    text-align: center;
    margin: 0 auto;
  }
  #index_sengen_area p {
    color: #3b65a2;
    line-height: 2;
  }
  #index_sengen_area p:last-of-type {
    color: #595959;
  }
  .index_sengen_title {
    font-size: 45px;
    font-weight: 100;
    letter-spacing: 2px;
  }
  /*コンテンツ　商品*/
  .top_product {
    max-width: 1000px;
	  width: 95%;
    margin: 450px auto 0 auto;
  }
  .top_product h2 {
    font-size: 50px;
    line-height: 0.7;
    font-family: Helvetica, "sans-serif";
    font-weight: bold;
    color: #3b65a2;
    margin-bottom: 50px;
  }
  .top_product span {
    font-size: 13px;
    font-weight: normal;
  }
  .product_area {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .product_area > div {
    width: 49%;
  }
  .p_kanzai {
    position: relative;
    background: url("../img/product01.jpg") no-repeat center center/cover;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .p_eisei {
    position: relative;
    background: url("../img/product02.jpg") no-repeat center center/cover;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .p_kougu {
    position: relative;
    background: url("../img/product03.jpg") no-repeat center center/cover;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .p_dendo {
    position: relative;
    background: url("../img/product04.jpg") no-repeat center center/cover;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .p_air {
    position: relative;
    background: url("../img/product05.jpg") no-repeat center center/cover;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .p_jyutaku {
    position: relative;
    background: url("../img/product06.jpg") no-repeat center center/cover;
    height: 350px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .product_text {
    position: absolute;
    z-index: 1; /*文字の重なりを全面に*/
    font-size: 1em;
    /*top:0;*/
    left: 0;
    bottom: 0;
    /*transform: translate(-50%,-50%);*/
    width: 100%;
    padding: 180px 50px 50px 50px;
	height: 100%;
	box-sizing: border-box;
  }
  .product_text h3 {
    font-size: 30px;
    line-height: 0.7;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #5473be;
  }
  .product_text h3 span {
    color: #fff !important;
  }
  .product_text h3, .product_text p {
    color: #fff;
  }
  .overtext::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(91, 142, 190, 0.4);
    /*mix-blend-mode: multiply;*/
    border-radius: 10px;
  }
  .overtext::after:hover {
    background: #000;
  }
	
  .product_link {
    position: relative;
	  opacity: 0; /* 最初は非表示にしておく */
    transition: all 1.5s; /* 動きを滑らかに */
  }
  .product_link:hover {
	  opacity: 0.8;
	}
	
	.fadeIn {
  opacity: 1;
}
  .product_link a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #link_area {
    text-align: center;
  }
  .link_area a {
    display: inline-block;
    background: #3b65a2;
    margin: 50px auto 100px auto;
    color: #fff;
    padding: 0.5em 1.5em;
    text-align: center;
    border-radius: 50px;
    transition: all 0.5s;
  }
  .link_area a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }
  .link_area a:hover {
    background: #5b8ebe;
  }
  .taisetu {
    width: 100%;
    background: #eef3f8;
  }
  .taisetu_in {
    padding: 100px 0;
    max-width: 800px;
    margin: auto;
  }
  .taisetu_in .taisetu_title {
    text-align: center;
    font-size: 36px;
    font-weight: 100;
    color: #3b65a2;
    margin-bottom: 0.5em;
  }
  .taisetu_in .taisetu_title_un {
    text-align: center;
    margin-bottom: 50px;
  }
  .taisetu_flex {
    display: flex;
    background: #fff;
    padding: 40px 50px;
    justify-content: space-between;
    margin-bottom: 20px;
    border-radius: 10px;
    align-items: center;
  }
  .taisetu_flex img {
    width: 100%;
  }
  .t_flex_item01 {
    flex-basis: 20%;
  }
  .t_flex_item02 {
    flex-basis: 70%;
  }
  .taisetu_flex p:first-of-type {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  .taisetu_flex p:last-of-type {
    font-weight: 100;
    text-align: justify;
  }
  /*個人のお客様********************************************/
  .kojin, .top_company {
    background: #f8f9fb;
    padding: 100px 0;
  }
  .kojin_index_flex {
    max-width: 1000px;
	width: 95%;
    display: flex;
    margin: 0 auto;
    align-items: stretch;
    border-radius: 10px;
    overflow: hidden;
    flex-wrap: nowrap;
  }
  .kojin_index_flex > div {
    width: 50%;
  }
  .kojin_index_flex .kojin_left {
    display: flex;
    background: #ffd400;
  }
  .kojin_index_flex img {
    width: 100%;
    height: 100%;
    display: flex;
    object-fit: cover;
  }
  .kojin_left > div {
    padding: 50px;
  }
  .kojin_left p {
    color: #fff;
  }
  .kojin_left p:first-of-type {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 0px;
  }
	.index_kojin_title{
		margin-bottom: 20px!important;
	}
  .kojin_left p:last-of-type a {
    display: inline-block;
    margin: 30px 0 0 0!important;
    padding: 0.5em 1.5em;
    background: #fff;
    border-radius: 30px;
    color: #ffd400;
    font-weight: bold;
	  line-height: 1;
	  transition: all 0.5s;
	  font-size: 70%;
  }
	
  article {
    padding: 100px 0;
    background: #fff;
    width: 100%;
  }
  article > div {
    max-width: 1000px;
    margin: auto;
  }
  article h2, .top_about h2 {
    font-size: 50px;
    line-height: 0.7;
    font-family: Helvetica, "sans-serif";
    font-weight: bold;
    color: #3b65a2;
    margin-bottom: 50px;
  }
  article span, .top_about h2 span {
    font-size: 13px;
    font-weight: normal;
  }
  .news_area {
    position: relative;
	  width: 95%;
  }
  .news_link {
    position: absolute;
    right: 0;
    top: 0;
  }
  .news_link p a {
    color: #3b65a2;
    display: block;
    padding: 0.5em 1.5em;
    border: 1px solid #3b65a2;
    font-weight: 500;
	  transition: all 0.5s;
  }
  .news_link p a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }
  .news_link p a:hover {
    background: #3b65a2;
    color: #fff;
  }
  .news_flex {
    display: flex;
  }
  .news01 {
    flex-basis: 15%;
  }
  .news02 {
    flex-basis: 10%;
  }
  .news03 {
    flex-basis: 65%;
  }
  .news-item {
    display: flex;
    padding: 20px 0;
	width: 95%;
	  align-items: center!important;
  }
  .news-item:not(:first-child) {
    border-top: 1px solid #ddd;
  }
  .news-head {
    display: flex;
    width: 200px;
  }
  .news-date {
    width: 130px;
    padding-top: 3px;
  }
  .news-label {
    display: block;
	  box-sizing: border-box;
    width: 100px;
    line-height: 1;/*30*/
    padding: 0.5em 0;
    color: #fff;
    background: #00bf00;
    text-align: center;
    border-radius: 30px;
    font-size: 80%;
  }
  .news-label a.blue-label {
    background: blue;
  }
  .news-label a.orange-label {
    background: orange;
  }
  .news-title {
    width: calc(100% - 200px);
    padding-left: 30px;
    padding-top: 3px;
    line-height: 1.5;
  }
  .top_about {
    background: #f8f9fb;
    padding: 100px 0;
  }
  .about_in {
    max-width: 1000px;
	  width: 95%;
    margin: auto;
  }
  .about_flex {
    display: flex;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
  }
  .about_flex > div {
    width: 50%;
  }
  .about_flex img {
    width: 100%;
    display: flex;
  }
  .about_flex .about_right {
    background-color: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
  }
  .about_flex p:first-of-type {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0.5em;
  }
  .about_right p a {
    display: inline-block;
    background: #3b65a2;
    padding: 0.3em 2.5em;
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    margin-top: 1em;
    transition: all 0.5s;
  }
  .about_right p a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
  }
  .about_right p a:hover {
    background: #5b8ebe;
  }
  .access {
    background: #fff;
    padding: 100px 0
  }
  .w1000 {
    max-width: 1000px;
	width: 95%;
    margin: auto;
  }
  .access h2 {
    font-size: 50px;
    line-height: 0.7;
    font-family: Helvetica, "sans-serif";
    font-weight: bold;
    color: #3b65a2;
    margin-bottom: 50px;
  }
  .access span {
    font-size: 13px;
    font-weight: normal;
  }
  .top_map {
    margin-bottom: 20px;
  }
}
  .kojin_left p:last-of-type a:hover {
	  opacity: 0.7;
	}
		
  .kojin_left p:last-of-type a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-right: 10px;
	}
.center{
	text-align: center;
}


.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 350px;
}
/*レイアウト*/
.footer_area {
  background: #3b65a2;
  padding: 70px 0;
}
.footer_in {
  max-width: 1000px;
	width: 95%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.foot_tel p {
  color: #fff;
}
.foot_tel p:last-child {
  font-weight: bold;
  font-size: 40px !important;
  letter-spacing: 3px;
  color: #fff;
}
.foot_tel p:last-child::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f098";
  margin-right: 10px;
}
#footer .foot_logo img {
  max-width: 300px;
  margin-bottom: 10px;
}
#footer p {
  font-size: 0.9em;
}
#footer .footer_ul {
  width: 100%;
  background: #ecedef;
}
#footer .footer_ul ul {
  max-width: 1000px;
	width: 95%;
  padding: 15px 0;
  overflow: hidden;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
#footer ul li {
  font-size: 80%;
}
#footer p.copy {
  font-size: 0.8em;
  color: #000;
  /*padding: 20px 0;*/
}
#footer .ad {
  color: #fff;
  text-decoration: none;
}
.end_flex {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  width: 95%;
  margin: auto;
  padding: 20px 0;
}
.end_ui {
  display: flex;
}
.end_ui li {
  margin-right: 20px;
}
.end_ui li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  margin-right: 5px;
}
/*ページトップ*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 70%;
}
#page-top a {
  background: #5b8ebe;
  text-decoration: none;
  color: #fff;
  width: 80px;
  padding: 20px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#page-top a:hover {
  text-decoration: none;
  background: #3b65a2;
}