@charset "utf-8";
/* CSS Document */
/*--------------------------------------------------

  共通設定

--------------------------------------------------*/
body {
  /*標準の文章の設定など*/
  color: #282d3c; 
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 16px;
  line-height: 1.66;
  font-feature-settings: "palt" 1;
}

/*border-box(paddingとborderをwidthに含める設定)*/
* {
  box-sizing: border-box;
}

ul {
	margin: 0;
	padding: 0;
}

li {
  list-style-type: none;
}

p {
	padding: 0;
	margin: 0;
}
@media only screen and (max-width: 768px) {
	p {
		font-size: 14px;
	}
}

h2 {margin: 0;}

/*imgにmax-width: 100%;(はみ出し防止)*/
img {
	display: block;
	max-width: 100%;
	vertical-align: bottom;
}
@media screen and (max-width: 768px) {
	img {
		width: 100%;
	}
}
body a {
    transition: 1s;
}

body a:hover {
    opacity: 0.6;
}

.sp_only,.tb_only {
	display: none;
}
@media (max-width: 1080px) {
	.tb_only {
		display: block;
	}
}
@media (max-width: 768px) {
	.sp_only {
		display: block;
	}
	
	.pc_only {
		display: none;
	}
}

/*スムーススクロール*/
html {
    scroll-behavior: smooth;
	scroll-padding-top: 10px;
}
@media (max-width: 1024px) {
		html {
		scroll-padding-top: 0;
	}
}

/*他ページからのページ内リンクの調整 必要あれば*/
html {
  scroll-behavior: smooth;
}
:target {
  scroll-margin-top: 150px;/*headerの高さ*/
}
@media screen and (max-width: 780px) {
	:target {
	  scroll-margin-top: 100px;/*headerの高さ*/
	}	
}

/*ディスプレイごとの表示・非表示*/
.sp_only {
	display: none;
}
@media screen and (max-width: 780px) {
	.pc_only {
		display: none;
	}
	.sp_only {
		display: block;
	}
}

/*メニュー展開時に背景をスクロールさせないため*/
body.active {
  height: 100%;
  overflow: hidden;
}

/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0087d5;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  /*border: 3px solid #1E1E1E;*/
}
@media screen and (max-width: 768px) {
  #page-top a {
    width: 50px;
    height: 50px;
  }
}

.Arrow-Top {
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  width: 14px;
  height: 14px;
  transform: rotate(45deg);
  margin-top: 8px;
  transition: 1s;
}
/*
#page-top a:hover {
  opacity: unset;
  background: #1E1E1E;
}

#page-top a:hover .Arrow-Top {
    border-top: solid 2px #fff;
	border-left: solid 2px #fff;
}*/

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
  margin: 0;
}

/*　上に上がる動き　*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*--------------------------------------------------

  header

--------------------------------------------------*/

.header .menu_toggle .nav_wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

button, input, select, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: 0 0;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: 0;
}

.header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    padding: 33px 0 0;
    height: 118px;
    -webkit-transition: .2s;
    transition: .2s;
	background: #fff;
}
@media (max-width: 1024px){
	.header {
		padding: 20px 0;
		height: 80px;
	}
}

.header .header_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*max-width: 1262px;*/
	padding: 0 21px 0 19px;
    margin: 0 auto;
}
@media (max-width: 1024px){
	.header .header_inner {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0 20px;
	}
}


.header .header_inner h1{
    font-size: 24px;
	margin: 0;
}
@media only screen and (max-width: 1359px) {
	.header .header_inner h1{
		width: 8%;
	}
}
@media (max-width: 1024px){
	.header .header_inner h1{
		font-size: 16px;
		z-index: 105;
		margin-top: 4px;
		width: unset;
	}
}
@-moz-document url-prefix(){
    @media only screen and (max-width: 1359px) {
	  .header .header_inner h1 {
		max-width: 15%;
		width: 100%;
	  }
	}
}

.header .header_inner h1 a{
    text-decoration: none;
	display: flex;
	align-items: flex-start;
    gap: 12px;
}
@media only screen and (max-width: 1359px) {
	.header .header_inner h1 a{
		gap: 8px;
	}
}
@media only screen and (max-width: 1024px) {
.header .header_inner h1 a{
		gap: 12px;
	}
}

.header .header_inner h1 a img {
	width: 100%;
}
@media only screen and (max-width: 1359px) {
.header .header_inner h1 a img.ndk {
		width: 83%;
	}
}
@media only screen and (max-width: 1024px) {
	.header .header_inner h1 a img:first-of-type {
		width: 73px;
	}
	.header .header_inner h1 a img:last-of-type {
		width: 91px;
	}
}

.header.is-open .menu {
    opacity: 1;
    pointer-events: all;
	padding-left: 20px;
    padding-right: 20px;
}


.header .menu {
    display: flex;
    align-items: center;
	gap: 32px;
}
@media only screen and (max-width: 1359px) {
	.header .menu {
		gap: 25px;
	}
}
@media (max-width: 1024px){
.header .menu {
    pointer-events: none;
    position: fixed;
    opacity: 0;
    top: 0;
    right: 0;
    width: 100%;
	min-height: 100vh;
    padding: 123px 0 0;
    overflow-y: auto;
    background-color: #fff;
    z-index: 102;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
	height: 100%;
  	overflow: auto;
	gap: 40px;
}
	
	.header .menu .site_nav {
		margin: 0 auto;
		width: 100%;
	}
}

.header .menu_toggle .nav_wrap {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.header .menu_toggle .nav_wrap span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #0087d5;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.header .menu_toggle .nav_wrap span:nth-child(1) {
    top: 0;
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(1) {
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
}


.header .menu_toggle .nav_wrap span:nth-child(2) {
    top: calc(50% - 1px);
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(2) {
    height: 0;
    width: 0;
}

.header .menu_toggle .nav_wrap span:nth-child(3) {
    bottom: -1px;
}

.header .menu_toggle.toggle-open>.nav_wrap>span:nth-child(3) {
    -webkit-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
}


.header .menu .site_nav {
    -webkit-transition: .2s;
    transition: .2s;
}

.header .menu .site_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 38px;
	list-style: none;
    margin: 0;
    padding: 0;
}
@media only screen and (max-width: 1359px) {
	.header .menu .site_nav ul {
		gap: 13px
	}
}
@media (max-width: 1024px){
	.header .menu .site_nav ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		/*margin-bottom: 88px;*/
		gap: 0;
	}
	
	.header .menu .site_nav ul li {
		width: 100%;
		border-bottom: 1px solid #e2e2e2;
	}
	
	.header .menu .site_nav ul li:first-of-type {
		border-top: 1px solid #e2e2e2;
	}
}

.header .menu .site_nav ul li a {
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	color: #282d3c;
	display: flex;
}
@media only screen and (max-width: 1359px) {
	header .menu .site_nav ul li a {
		font-size: 15px!important;
	}
}
@media (max-width: 1024px){
	.header .menu .site_nav ul li a {
		font-size: 17px;
		margin-left: 2px;
		justify-content: space-between;
    	padding: 17px 12px;
	}
}

.header .menu .site_nav ul li a span {
	color: #0087d5;
}
@media (max-width: 1024px){
	.header .menu .site_nav ul li a span {
		font-size: 14px;
	}
}

.header .menu .site_nav ul li.button a {
    width: 100%;
    max-width: 280px;
    text-align: center;
    background-color: #3FB5A4;
    border-radius: 2em;
    padding: 13px 32px 17px;
    margin: 0;
    font-size: 17px;
    line-height: 1;
}

.header .menu .site_nav ul li a img {
	width: 216px;
	max-width: 100%;
}

@media (max-width: 1024px){
.header .mask {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 101;
    pointer-events: none;
    cursor: pointer;
    -webkit-transition: .2s;
    transition: .2s;
}}

.header .menu_toggle {
    display: none;
    width: 36px;
    height: 26px;
    z-index: 103;
    padding: 0;
}
@media (max-width: 1024px){
	.header .menu_toggle {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}	
}

/*スクロール後に背景色入れる*/
.header.is-fixed {
	/*background-color: #000;
	opacity: .9;*/
	transition: 0.3s;
}

.header.is-fixed .header_inner h1 a {
	color: #39424C;
	transition: 0.3s;
}

.menu_contact {
	display: none;
}
@media (max-width: 1024px){
	.menu_contact {
		display: block;
		width: 320px;
		margin: 0 auto;
		padding-top: 65px;
		border-top: 1px solid #fff;
	}
}










/*--------------------------------------------------

  mv

--------------------------------------------------*/
.mv {
  height: 84vh; /* 全画面表示 */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../img/mv.jpg");
  margin-top: 118px;/*headerの高さ*/
}
@media only screen and (max-width: 1024px) {
	.mv {
	  height: 420px; /* 全画面表示 */
	  background-image: url("../img/mv_sp.jpg");
	  margin-top: 80px;/*headerの高さ*/
	}
}

.mv_inner {
	max-width: 1160px;
    margin: 0 auto;
	height: 100%;
}

.mv_inner_txt {
    margin: 0 0 0 20px;
	padding-top: 126px;
}
@media only screen and (max-width: 1024px) {
	.mv_inner_txt {
		margin: 0 0 0 20px;
		padding-top: 60px;
	}
}

.mv_inner_txt p {
	color: #fff;
}

.mv_inner_txt p.mv_inner_txt_catch1 {
	font-size: 60px;
	font-weight: bold;
	line-height: 1.17;
}
@media only screen and (max-width: 1024px) {
	.mv_inner_txt p.mv_inner_txt_catch1 {
		font-size: 26px;
	}
}

.mv_inner_txt p.mv_inner_txt_catch2 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	margin-top: 43px;
	 display: flex;
  	align-items: center;
}
@media only screen and (max-width: 1024px) {
	.mv_inner_txt p.mv_inner_txt_catch2 {
		font-size: 13px;
		line-height: 1.75;
		align-items: flex-start;
		margin-top: 28px;
	}
}

.mv_inner_txt p.mv_inner_txt_catch2:before {
  content: "";
  width: 50px;
  height: 1px;
  background: #fff;
	margin: 0 20px 0 0;
}
@media only screen and (max-width: 1024px) {
	.mv_inner_txt p.mv_inner_txt_catch2:before {
		width: 30px;
		margin: 10px 10px 0 0;
	}
}
 
ul.menu_btm {
    display: flex;
    align-items: center;
	gap: 28px;
}
@media only screen and (max-width: 1024px) {
	ul.menu_btm {
		gap: 20px;
	}
}
@media only screen and (max-width: 1024px) {
	ul.menu_btm {
		flex-direction: column;
		 width: 100%;
		gap: 28px;
	}
	
	ul.menu_btm li {
		 width: 100%;
	}
}

.menu_tel a {
	color: #0087d5;
	text-decoration: none;
	line-height: 1;
}
@media only screen and (max-width: 1024px) {
	
	.menu_tel a {
		color: #fff;
		padding: 15px 0;
    	display: block;
		background-color: #0087d5;
   		border-radius: 200px;
	}
}

.menu_tel_no {
	font-size: 28px;
	font-weight: bold;
	display: flex;
    align-items: center;
	justify-content: center;
    gap: 9px;
	letter-spacing: 0;
}
@media only screen and (max-width: 1359px) {
	.menu_tel_no {
		font-size: 22px;
	}
	
	.menu_tel_no img {
		max-width: 16px;
	}
}
@media only screen and (max-width: 1024px) {
	.menu_tel_no img {
		width: 19px;
	}
}

.menu_tel_time {
	display: block;
	font-size: 13px;
	font-weight: 400;
	text-align: center;
	margin-top: 8px;
	margin-left: 2em;
	letter-spacing: -0.025em;
}

header .btm {
	font-size: 15px;
	padding: 17px 29px;
	max-width: 190px;
    gap: 9px;
}
@media only screen and (max-width: 1359px) {
	header .btm {
		font-size: 14px;
		padding: 14px 22px;
		gap: 6px;
	}
}
@media only screen and (max-width: 1024px) {
	header .btm {
		max-width: 100%;
		width: 100%;
	}
}

header .btm img {
    max-width: 25px;
}
@media only screen and (max-width: 1359px) {
	header .btm img {
		max-width: 20px;
	}	
}
@media only screen and (max-width: 1024px) {
	header .btm img {
		max-width: 25px;
	}	
}


/*==================================================
ふわっ
===================================*/

.fadeUp {
animation-name: fadeUpAnime;/*アニメーションの定義名*/
animation-duration:1s;/*アニメーション変化時間 ※デフォルト*/
animation-fill-mode:forwards;/*アニメーションの開始と終了時の状態を指定*/
opacity:0;
}


/*==================================================
アニメーション設定
===================================*/

/* アニメーション１回分の時間の長さを指定するCSS*/
.change-time1{
  animation-duration: 1s;
}

/*--------------------------------------------------

  ページ共通

--------------------------------------------------*/
h2.title {
	font-family: 'Poppins', sans-serif;
	font-size: 45px;
	font-weight: 600;
	line-height: 1;
	color: #0087d5;
	text-align: center;
	letter-spacing: -0.01em;
}
@media only screen and (max-width: 768px) {
	h2.title {
		font-size: 34px;
	}
}

.border{
  border-bottom: 4px solid #eaeaea;
  position: relative;
  max-width: 1160px;
  margin: 0 auto 10px;
}
.border::after{
  content: "";
  display: block;
  border-bottom: 4px solid #008acf;
  width: 180px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

h2.title span {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.2em;
	display: block;
	color: #4cabe2;
	padding: 7px 0 77px;
}
@media only screen and (max-width: 1160px) {
	main section {
		font-size: 14px;
		margin: 0 5%;
	}
}
@media only screen and (max-width: 1024px) {
	h2.title span {
		padding: 7px 0 37px;
	}
}




/*--------------------------------------------------

  ABOUT

--------------------------------------------------*/
#about {
    margin-top: -110px;
}
@media only screen and (max-width: 1024px) {
	#about {
		margin-top: -53px;
	}
}

#about h2 {
	text-align: left;
}

#about h2.title span {
    display: unset;
    padding: 0 0 0 12px;
	font-weight: 500;
	letter-spacing: 0.5px;
}
@media only screen and (max-width: 1024px) {
	#about h2.title span {
		display: block;
		padding: 10px 0 0 0;
	}
}

.about_contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
	gap: 5%;
	max-width: 1160px;
    margin: 0 auto 97px;
}
@media only screen and (max-width: 1024px) {
	.about_contents {
		flex-direction: column-reverse;
		gap: 0;
		margin: 0 auto 65px;
	}
}

.about_contents_txt {
    margin-left: 68px;
}
@media only screen and (max-width: 1024px) {
	.about_contents_txt {
		margin-left: 0;
		margin-top: -66px;
		width: 100%;
	}
}

.about_contents_txt p {
	margin-top: 39px;
	font-weight: 400;
}
@media only screen and (max-width: 1024px) {
	.about_contents_txt p {
		margin-top: 31px;
	}
}


.about_contents_txt a.btm_blue {
	margin-top: 41px;
}
@media only screen and (max-width: 1024px) {
	.about_contents_txt a.btm_blue {
		margin-top: 20px;
	}
}

.about_contents_img {
	margin-bottom: 8px;
	margin-right: -4%;
}
@media only screen and (max-width: 1024px) {
	.about_contents_img {
		margin-right: 0;
	}
}
@media only screen and (max-width: 1024px) {
	.about_contents_img {
		/*flex-basis: 164px;*/
		max-width: 204px;
	}
}
@media only screen and (max-width: 768px) {
	.about_contents_img {
		/*flex-basis: 164px;*/
		max-width: 164px;
	}
}


/* 左から */

.fadeLeft{
	animation-name:fadeLeftAnime;
	animation-duration:1s;	/*動く速さ*/
	animation-fill-mode:forwards;
	animation-delay: 0.8s; /* アニメーション開始時間 */
	opacity:0;
	}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-100px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}




/*--------------------------------------------------

  SERVICE

--------------------------------------------------*/
.service {
    max-width: 1160px;
	margin: 100px auto 100px;
}
@media only screen and (max-width: 1160px) {
	.service {
		margin: 100px 5% 100px;
	}
}

.service_contents > p {
	font-size: 20px;
	text-align: center;
	line-height: 2;
	margin: 85px 0 80px;
}
@media only screen and (max-width: 768px) {
	.service_contents > p {
		font-size: 16px;
		margin: 45px 0 40px;
	}
}

.service_contents > p span {
	font-size: 1.25em;
	font-weight: bold;
}

.under-line {
   text-decoration-line: underline;
   text-decoration-color: #cce7f7;
   text-decoration-thickness: .3em;
   text-underline-offset: -.1em;
   text-decoration-skip-ink: none;
}

.service_contents .card_contents {
    max-width: 100%;
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	gap: 70px;
}
@media screen and (max-width: 768px) {
	.service_contents .card_contents {
		flex-direction: column;
		gap: 45px;
	}
}

.service_contents .card_contents li {
	flex-basis: calc(50% - 70px / 2);
}

.service_contents .card_contents li img {
	width: 100%;
}

.service_contents .card_contents_title {
	font-size: 23px;
	font-weight: bold;
    margin-top: 31px;
	display: flex;
    justify-content: center;
    align-items: flex-start;
    line-height: 1;
	width: 93%;
}
@media screen and (max-width: 768px) {
	.service_contents .card_contents_title {
		font-size: 20px;
		margin-top: 25px;
	}
}

.service_contents .card_contents_title span {
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	color: #0087d5;
	margin: 2px 10px 0 0;
	letter-spacing: 0.01em;
}
@media only screen and (max-width: 768px) {
	.service_contents .card_contents_title span {
		font-size: 13px;
		margin: 1px 10px 0 0;
	}
}

.service_contents .card_contents_txt {
	font-size: 15px;
	font-weight: 400;
	line-height: 1.75;
	margin-top: 31px;
	width: 93%;
	text-align: justify;
	letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
	.service_contents .card_contents_txt {
		font-size: 14px;
		margin-top: 15px;
		width: 100%;
	}
}

.card_contents_2 {
    display: flex;
	flex-wrap: wrap;
    justify-content: space-between;
	margin-top: 67px;

}
@media only screen and (max-width: 1160px) {
	.card_contents_2 {
		gap: 20px;
		margin-top: 47px;
	}
}
@media screen and (max-width: 768px) {
	.card_contents_2 {
		flex-direction: column;
		gap: 20px;
	}
}

.card_contents_2 li {
	flex-basis: 284px;
	max-width: 100%;
	background: rgb(0,95,166);
	background: linear-gradient(130deg, rgba(0,95,166,1) 0%, rgba(0,50,150,1) 50%, rgba(0,50,150,1) 100%);
	position: relative;
}
@media only screen and (max-width: 1160px) {
	.card_contents_2 li {
		flex-basis: calc(50% - 20px);
	}
}

.card_contents_2 li p {
	line-height: 1;
}

p.card_contents_2_no {
	position: absolute;
	top: 0;
	left: 0;
	color: #66b7e6;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	font-weight: 500;
	margin: 15px 0 0 15px;
	letter-spacing: 0.01em;
}

p.card_contents_2_title {
	padding: 50px 0 48px;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}
@media only screen and (max-width: 768px) {
	p.card_contents_2_title {
		padding: 40px 0 38px;
	}
}

/*--------------------------------------------------

  WORKS

--------------------------------------------------*/
section#works {
	/*background: url("../img/img_works.jpg") no-repeat;*/
	margin: unset;
}
@media only screen and (max-width: 1160px) {
	section#works h2 {
		margin: 0 5%;
	}
}

.works_contents {
	display: flex;
	justify-content: flex-end;
	gap: 70px;
	padding-left: calc(50% - 580px);
	margin: 107px 0 133px;
}
@media only screen and (max-width: 1160px) {
	.works_contents {
		flex-direction: column;
		margin: 45px 0 100px;
	}
}

/*テーブル*/
.works_table {
	flex-basis: calc(100% - 460px - 70px);
}
@media only screen and (max-width: 1160px) {
	.works_table {
		margin: 0 5%;
	}
}
.works_table table {
	width: 100%;
	max-width: 100%;
	font-size: 17px;
}
@media (max-width: 768px){
	.works_table table {
		
		font-size: 15px;
	}
}

.works_table tr {
	border-bottom: 1px solid #dfdfe2;
}

.works_table tr:first-of-type {
	border-bottom: unset;
}

.works_table table,
.works_table td,
.works_table th {
	border-collapse: collapse;
}

.works_table td,
.works_table th {
	line-height: 1;
}

.works_table th {
	/*width: 517px;*/
	text-align: left;
	font-weight: 400;
	color: #93969d;
	font-size: 14px;
    padding: 0 0 5px;
	
	/*thの後ろとtdの前に余白があり縦の罫線がある場合必要
	position: relative;*/
}
@media only screen and (max-width: 768px) {
	.works_table th {
		padding: 0;
	}
	
	.works_table th:first-of-type {
		padding-top: 20px;
	}
	.works_table th:last-of-type {
		padding-top: 10px;
	}
}

.works_table th.sp_only {
    width: 100%;
}




@media (max-width: 768px){
	.works_table th {
		width: 82px
	}
}

.works_table td {
	width: 240px;
	max-width: 100%;
	padding: 20px 0;
	font-size: 17px;
	font-weight: bold;
}
.works_table td:last-of-type {
	width: 240px;
	font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1024px){
	.works_table td {
		width: calc(100% - 82px);
	}
}
@media (max-width: 768px){
	.works_table td {
		width: 100%;
		font-size: 14px;
		display: block;
		padding: 10px 0 20px;
	}
}

.works_table td:first-of-type {
	width: calc(100% - 240px);
}
@media only screen and (max-width: 768px) {
	.works_table td:first-of-type {
		width: 100%;
	}
}


/*thの後ろとtdの前に余白があり縦の罫線がある場合必要
.th_line::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 2px;
    height: 35px;
    border-radius: 2px;
    border-right: 1px solid #E8E8E8;
}*/


.works_img {
	flex-basis: 460px;
}
@media only screen and (max-width: 1160px) {
	.works_img {
		display: flex;
		justify-content: flex-end;
		flex-basis: auto;
	}
	
	.works_img img {
		/*max-width: 30%;*/
	}
}

/*--------------------------------------------------

  CONTACT

--------------------------------------------------*/
.contact {
	background: url("../img/back_contact.jpg") no-repeat;
    background-size: cover;
	padding: 75px 100px;
/*	position: relative;*/
	margin: unset;
}
@media only screen and (max-width: 1000px) {
	.contact {
		padding: 5% 7%;
	}
}
@media only screen and (max-width: 768px) {
	.contact {
		padding: 35px 25px;
	}
}

.contact h2.title {
	color: #46b464;
	mix-blend-mode: multiply;
	position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
	font-size: 50px;
}
@media only screen and (max-width: 768px) {
	.contact h2.title {
		font-size: 40px;
	}
}

.contact_contents {
	background: rgba(70,180,100,0.95);
	text-align: center;
	padding-bottom: 66px;
	position: relative;
	max-width: 1160px;
    margin: 0 auto;
	mix-blend-mode: multiply;
}
@media only screen and (max-width: 1000px) {
	.contact_contents {
		padding: 0 20px 30px;
	}
}

.contact_contents_box {
    padding-top: 76px;
}
@media only screen and (max-width: 768px) {
	.contact_contents_box {
		padding-top: 46px;
	}
}

.contact_contents_box p {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
}
@media only screen and (max-width: 1024px) {
	.contact_contents_box p {
		font-size: 16px;
		text-align: left;
		text-align:justify;
	}
}
@media only screen and (max-width: 768px) {
	.contact_contents_box p {
		font-size: 14px;
	}
}

.contact_contents div.contact_contents_link {
    display: flex;
	gap: 56px;
    max-width: 635px;
    margin: 33px auto 0;
}
@media only screen and (max-width: 768px) {
	.contact_contents div.contact_contents_link {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		margin: 25px auto 0;
	}
}

 .contact_contents div div a {
	text-decoration: none;
	color: #fff;
	line-height: 1;
	font-size: 20px;
}

.btm {
	max-width: 100%;
    width: 280px;
    display: flex;
    gap: 12px;
    align-items: center;
	justify-content: center;
    border: 1px solid #fff;
    border-radius: 200px;
    padding: 19px 0;
	background: #46b464;
	color: #fff;
    text-decoration: none;
	line-height: 1;
	
}
@media only screen and (max-width: 1024px) {
	.btm {
		gap: 7px;
		align-items: unset;
		padding: 17px 45px;
	}
}
@media only screen and (max-width: 768px) {
	.btm {
		font-size: 14px;
	}
}

.btm_blue {
    border: 1px solid #0087d5;
    padding: 14px 32px 15px 42px;
    background: #fff;
    color: #0087d5;
    font-size: 17px;
    max-width: 190px;
}
@media only screen and (max-width: 767px) {
	.btm_blue {
		max-width: 100%;
		width: 100%;
	}
}

span.btm_arrow {
	font-weight: 400;
	font-size: 17px;
	transform: translateY(2px) scaleX(0.7) scaleY(0.4) rotate(90deg);
}
@-moz-document url-prefix(){
    span.btm_arrow {
	  margin-bottom: -5px;
	}
}


.btm img {
	max-width: 28px;
}
@media only screen and (max-width: 1024px) {
	.btm img {
		max-width: 22px!important;
	}
}

.contact_contents_tel a img {
	max-width: 298px;
}

.contact_contents_mail a img {
	max-width: 28px;
}

.contact_big {
    background: unset;
    padding: 7px;
    max-width: 1160px;
    margin: 0 auto;
	border: 3px solid #46b464;
}
@media only screen and (max-width: 1160px) {
	.contact_big {
		margin: 0 5%;
	}
}

.trouble {
	text-align: center;
}

.trouble > p {
	font-size: 22px;
	margin-top: 69px;
}
@media only screen and (max-width: 768px) {
	.trouble > p {
		font-size: 16px;
		margin-top: 20px;
		padding: 0 20px;
		text-align: justify;
	}
}

.trouble ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 36px 0 86px;
}

.trouble ul li {    display: flex;
    flex-direction: column;
    align-items: center;
}
@media only screen and (max-width: 1160px) {
	.trouble ul {
		gap: 35px;
	}
}
@media only screen and (max-width: 768px) {

	.trouble ul {
		margin: 30px auto 64px;
		gap: 34px;
		width: 70%;
	}

	.trouble ul li img {
		width: unset;
	}
	
}
@media only screen and (max-width: 442px) {
	.trouble ul {
		width: 100%;
	}
}
@media screen and (max-width: 599px) and (min-width: 533px) {
	.trouble ul::after{
	  content:"";
	  display: block;
	  width:30%;
	}
}
@media screen and (max-width: 532px) and (min-width: 442px) {
	.trouble ul::after{
	  content:"";
	  display: block;
	  /*width: calc(100% / 3 * 2 - 40px);*/
	  width:30%;
	}
	
}
@media only screen and (max-width: 441px) {
	.trouble ul::after{
	  content:"";
	  display: block;
	  width:30%;
	}
}


.trouble ul li p {
	margin-top: 12px;
	line-height: 1;
	font-size: 15px;
}


/*--------------------------------------------------

  工事の流れ

--------------------------------------------------*/
#kouji {
	background: #f4f4f5;
	padding: 120px 0 140px;
	margin: 140px 0 100px;
}
@media only screen and (max-width: 768px) {
	#kouji {
		padding: 60px 0 20px;
		margin: 80px 0 100px;
	}
}

#kouji h2 {
	font-size: 30px;
	font-weight: bold;
	color: #0087d5;
	border-bottom: 3px solid #0087d5;
	padding-bottom: 5px;
	width: 5.3em;
}
@media only screen and (max-width: 768px) {
	#kouji h2 {
		font-size: 20px;
		width: 5.5em;
	}
}

.kouji_nagare {
    max-width: 1160px;
    margin: 0 auto 10px;
    padding: 0 72px 65px;
}
@media only screen and (max-width: 768px) {
	.kouji_nagare {
		padding: 0 40px 65px;
	}
}

.kouji_nagare h2 {
	margin-bottom: 67px;
}

/*工事の流れ*/
.flow_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow {
  padding-left: 0;
}

.flow > li {
  list-style-type: none;
  position: relative;
  padding-left: 132px;
}
@media only screen and (max-width: 768px) {
	.flow > li {
		padding-left: 105px;
	}
}

.flow > li:not(:last-child) {
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
	.flow > li:not(:last-child) {
	  padding-bottom: 8px;
	}
	
	.flow > li:first-of-type {
	  padding-bottom: 16px;
	}
}
@-moz-document url-prefix(){
    .flow > li:not(:last-child) {
	  padding-bottom: 80px;
	}
}

.flow > li.gyou2_mae{
  padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
	.flow > li.gyou2_mae{
	  padding-bottom: 10px;
	}
}
@-moz-document url-prefix(){
    .flow > li.gyou2_mae{
	  padding-bottom: 70px;
	}
	
	.flow > li.gyou2_mae_ff {
	  padding-bottom: 73px;
	}
}

.flow > li.gyou2{
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
	.flow > li.gyou2 {
	  padding-bottom: 10px;
	}
}
@-moz-document url-prefix(){
    .flow > li.gyou2 {
	  padding-bottom: 60px;
	}
	
	.flow > li.gyou2_ff {
	  padding-bottom: 54px;
	}
}

.flow > li:last-of-type {
	padding-bottom: 40px;
}
@media only screen and (max-width: 768px) {
	.flow > li:last-of-type {
		padding-bottom: 0;
	}
}

.flow > li .icon {
	width: 100px;
	height: 100px;
	line-height: 0;
	text-align: center;
	border-radius: 100vh;
	/*display: inline-block;*/
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(0,135,213,0.1);
	color: #0087d5;
	position: absolute;
	top: -13px;
	left: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 26px;
	font-weight: 600;
	letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
	.flow > li .icon {
		width: 80px;
		height: 80px;
		top: 0;
		font-size: 22px;
	}
	
	.flow > li .icon:first-of-type {
		top: -10px
	}
}

.flow > li.gyou2 .icon {
	top: -4px;
}

.step {
	font-size: 11px;
	margin-bottom: 20px;
	/*letter-spacing: 0.01em;*/
}
@media only screen and (max-width: 768px) {
	.step {
		margin-bottom: 19px;
	}
}

.flow > li:not(:last-child)::before {
 	content: '';
	/*background: #c3c3c3;*/
	background-image: url("../img/flow_line.svg");
	background-repeat: no-repeat;
	width: 6px;
	height: 100%;
	position: absolute;
	top: calc(50% - -80px);
	left: 47px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	 z-index: 1;
}
@media only screen and (max-width: 768px) {
	/*.flow > li:not(:last-child)::before {
		background-image: unset;
	    top: calc(50% - -38px);
		left: 37px;
		border-left: dotted 5px #0087d5;
		height: 50%;
	}*/
	.flow > li:not(:last-child)::before {
		background-image: url("../img/dot.svg");
		  /*background-size: 100% 100%;*/
		  background-repeat: round;
	    top: calc(50% - -38px);
		left: 37px;
		height: 60%;
	}
	
}

.flow > li.gyou2:not(:last-child)::before{
	top: calc(50% - -87px);	
}
@media only screen and (max-width: 768px) {
	.flow > li.gyou2:not(:last-child)::before {
		top: calc(50% - -40px);
		height: 68%;
	}
}

.flow > li dl dt {
  font-size: 20px;
  font-weight: bold;
  color: #282d3c;
}
@media only screen and (max-width: 768px) {
	.flow > li dl dt {
		font-size: 16px;
		margin-bottom: 5px;
	}
}

.flow > li dl dd {
  	margin-left: 0;
	letter-spacing: 0.08em;
	font-weight: 400;
}
@media only screen and (max-width: 768px) {
	.flow > li dl dd {
		font-size: 13px;
	}
}
@-moz-document url-prefix(){
    .flow > li dl dd {
		letter-spacing: 0.07em;
	}
}



.area {
	background: #fff;
	max-width: 1160px;
    margin: 0 auto 10px;
	padding: 0 72px 65px;
	z-index: 1;
    position: relative;
}
@media only screen and (max-width: 768px) {
	.area {
		margin: 0 20px 10px;
		padding: 0 30px 65px;
	}
}

.area h2 {
	position: absolute;
    width: 100%;
    top: -27px;
}

.area_box {
	/*display: flex;
    flex-wrap: wrap;*/
}

.area p {
	font-weight: bold;
}

.area_box1 {
	position: relative;
    z-index: 1;
}

p.area_box1_catch {
	font-size: 28px;
	padding-top: 100px;
}
@media only screen and (max-width: 768px) {
	p.area_box1_catch {
		font-size: 18px;
		padding-top: 60px;
	}
}

p.area_box1_txt {
	font-size: 17px;
	margin-top: 10px;
}
@media only screen and (max-width: 768px) {
	p.area_box1_txt {
		font-size: 13px;
		margin-top: 0.5em;
	}
}

.area_box1_link {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	margin-top: 65px;
}
@media only screen and (max-width: 768px) {
	.area_box1_link {
		margin-top: 45px;
		justify-content: center;
	}
	
	.area_box1_link div {
		/*width: 100%;*/
	}
}

.area_box1_link div.tel a img {
	max-width: 298px;
} 

.mail a {
	font-size: 20px;
}

.btm_noline {
	border: unset;
}

.area_box2 {
	position: absolute;
    width: 45%;
    right: 5%;
    top: -82px;
}
@media only screen and (max-width: 767px) {
	.area_box2 {
		position: unset;
		width: 100%;
		margin-top: 40px;
	}
}

.area_box2 img {
	max-width: 100%;
	width: 100%;
}

/*--------------------------------------------------

  COMPANY

--------------------------------------------------*/
#company {
	max-width: 1160px;
    margin: 0 auto 120px;
}
@media only screen and (max-width: 1160px) {
	#company {
		margin: 0 5% 80px;
	}
}

#company img {
	margin-top: 80px;
}

.company_info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
	gap: 70px;
	margin-top: 90px;
}
@media only screen and (max-width: 768px) {
	.company_info {
		flex-direction: column;
		margin-top: 40px;
		gap: 0;
	}
}

.company_info div {
	flex-basis: calc(50% - 70px / 2);
}

/*テーブル*/
.company_info table {
	width: 100%;
	font-size: 17px;
}
@media (max-width: 768px){
	.company_info table {
		width: 100%;
		font-size: 15px;
	}
}

.company_info tr {
	border-bottom: 1px solid #dfdfe2;
}

.company_info table,
.company_info td,
.company_info th {
	border-collapse: collapse;
}

.company_info td,
.company_info th {
	padding: 15px 0;
	width: 30px;
	height: 25px;
}

.company_info th {
	width: 179px;
	text-align: left;
	font-size: 17px;
	font-weight: bold;
	vertical-align: top;
}
@media (max-width: 768px){
	.company_info th {
		width: 100px;
		font-size: 14px;
	}
}

.company_info td {
	width: calc(100% - 179px);
	/*padding: 15px 0 15px 30px;*/
	font-size: 16px;
	font-weight: 400;
}
@media (max-width: 768px){
	.company_info td {
		width: calc(100% - 130px);
		font-size: 14px;
	}
}

.table_tal a {
	text-decoration: none;
	color: #282d3c;
}

.table_2 {
	line-height: 1.8;
}

/*マップ*/
.company_map {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 70px;
    margin-top: 90px;
}
@media only screen and (max-width: 768px) {
	.company_map {
		flex-direction: column;
		margin-top: 70px;
	}
}

.company_map div {
    flex-basis: calc(50% - 70px / 2);
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  /*padding-top: 75%;  比率を4:3に固定 */
  padding-top: 365px;
}
@media only screen and (max-width: 768px) {
	.map {
	  padding-top: 265px; 
	}
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.company_map_txt {
	display: flex;
	align-items: center;
	gap: 35px;
	margin-top: 33px;
}
@media only screen and (max-width: 768px) {
	.company_map_txt {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		margin-top: 20px;
	}
}

.company_map_txt p:first-child {
	font-size: 18px;
	font-weight: bold;
}
@media only screen and (max-width: 768px) {
	.company_map_txt p:first-child {
		font-size: 16px;
	}
}

.company_map_txt p:last-of-type {
	font-size: 15px;
	font-weight: 400;
}
@media only screen and (max-width: 768px) {
	.company_map_txt p:last-of-type {
		font-size: 14px;
	}
}

ul.company_map_list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    line-height: 1;
	margin-top: 25px;
	font-size: 15px;
	font-weight: 400;
}
@media only screen and (max-width: 768px) {
	ul.company_map_list {
		margin-top: 15px;
		font-size: 14px;
	}
}

ul.company_map_list li span {
	color: #0087d5;
}

/*--------------------------------------------------

  footer

--------------------------------------------------*/
#footer {
	background: #fff;
	padding: 75px 0 25px;
}
@media only screen and (max-width: 768px) {
	#footer {
		padding: 30px 0 20px;
	}
}

#footer div.footer_contents {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 17px;
}
@media only screen and (max-width: 768px) {
	#footer div.footer_contents {
		padding: 0 10px;
		gap: 10px;
	}
}

#footer div p {
	color: #282d3c;
    font-size: 12px;
    font-weight: 400;
}
@media only screen and (max-width: 768px) {
	#footer div p {
		text-align: center;
	}
}

#footer div p.footer_contents_txt {
	font-size: 24px;
    font-weight: 500;
    line-height: 1;
}
@media only screen and (max-width: 768px) {
	#footer div p.footer_contents_txt {
		font-size: 18px;
	}
}


 /* コピーライト
--------------------------------------------------*/
small {
    display: block;
    color: #282d3c;
    font-size: 12px;
    font-weight: 400;
	letter-spacing: -0.01em;
}
@media (max-width: 1024px) {
	small {
		font-size: 14px;
	}
}