@charset "UTF-8";
/* =============================
   リセット
============================= */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  font-family: 'Noto Sans JP', sans-serif;
  font-feature-settings: "palt";
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
  line-height: 1.4;
}
p {
  margin: 0;
}
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
/* =============================
   共通レイアウト
============================= */
.section {
  padding: 0px;
}
/* 通常コンテナ */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0px 20px;
  box-sizing: border-box
}
/* 小さめコンテナ */
.container-small {
  max-width: 900px;
}
/* フル幅コンテナ（完全にフル） */
.container-full {
  max-width: none;
  width: 100%;
}
/* =============================
カラム
============================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-2 div, .grid-3 div {}
@media (max-width: 1000px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }
}
/* =============================
   ヘッダー
============================= */
/* アンカー対策に */
#about,#services,#company {
  scroll-margin-top: 150px; 
}




.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;       
  height: 11opx;
  z-index: 10;
  display: flex;
  justify-content: center; 
  align-items: center;
  background: #fff; 
z-index: 10000
}

.header-inner {
  max-width: 1920px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0 0 0 20px ;
}
/* ロゴ */
.logo img {
  width: 305px;
  height: auto;
  display: block;
  margin-top: 0px
}
/* 電話*/
.header_tel {
  width: 315px;
  height: 110px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00aa32
}
.header_tel img {
  width: 240px;
  height: auto
}
@media (min-width: 769px) {

  .tel_btn {
    pointer-events: none;
    cursor: default;
  }
}
.nav {
  margin-left: auto;
}
.header_info {
  display: flex;
  justify-content: flex-end;
  align-items: center
}
@media (max-width:1500px) {
  .site-header {
    height: 100px;
  }
.header-inner {
  padding:0 0 0 10px ;
}
  .logo img {
    width: 270px;
    margin-top: 5px
  }
  /* 電話*/
  .header_tel {
    width: 250px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00aa32
  }
  .header_tel img {
    width: 200px;
  }
}
@media (max-width: 1000px) {
  .site-header {
    height: 60px;
  }
  .header_info {
    flex-direction: row-reverse;
  }
  .logo img {
    width: 190px;
    margin-top: 5px;
	 padding-right: 10px

  }
  /* 電話*/
  .header_tel {
    width: 130px;
    height: 60px;
	   padding: 0 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00aa32
  }
  .header_tel img {
    width: 150px;
  }
}
/* =============================
   フッター
============================= */
.footer {
  color: #000;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0px;
}
/* ロゴ */
.footer-logo img {
  width: 360px;
  height: auto;
  display: block;
  margin-bottom: 10px
}
footer table{padding: 0px;margin: 0px}
.footer p ,.footer table{
  font-size: 22px;
  margin-bottom: 60px
}
/* ナビ */
.footer-nav ul {
  display: flex;
  flex-flow: column;
  margin: 60px 100px 0 0;
  gap: 10px
}
.footer-nav a {
  color: #000;
  font-size: 23px;
  letter-spacing: 1px;
}
/* コピーライト */
.copyright {
  display: flex;
  align-items: center;
  height: 20px;
  text-align: left;
  font-size: 17px;
  color: #8fcc1f
}
.copyright img {
  height: 26px;
  width: auto;
  margin-right: 10px
}
@media (max-width: 1500px) {
  .footer-inner {
    padding: 0px 0px;
    flex-flow: column;
    justify-content: flex-start;
  }
.footer p ,.footer table {
    font-size: 16px;
    margin-bottom: 50px
  }
  .footer-logo img {
    width: 250px;
    height: auto;
    display: block;
    margin-bottom: 10px
  }
  /* ナビ */
  .footer-nav ul {
    display: flex;
    flex-flow: nowrap;
    margin: 0px 0px 0 0;
    gap: 20px;
    margin-bottom: 80px
  }
  .footer-nav a {
    font-size: 16px;
  }
  .copyright {
    font-size: 12px !important;
  }
  .copyright img {
    height: 15px;
    width: auto;
    margin-right: 10px
  }
}