@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;500&display=swap');

* {
  -webkit-text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.125s;
  -webkit-transition-timing-function: linear;
}

body {
  font-size: 18px;
  line-height: 1.8;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  color: #333333;
  letter-spacing: 0px;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

#header .g_nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: end;
}

#wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#header .g_nav ul li {
  text-align: center;
  /*margin: 0 4% 0 0;*/
  margin: 0;
  list-style: none;
  width: 160px;
}

#header .g_nav ul li a {
  display: block;
  padding: 18.805px 15px;
}

#header .g_nav {
  /*max-width: 1280px;*/
  width: 100%;
  margin: 0 auto;
}

#header .g_nav ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
}

#header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #00a56a;
  /*padding: 15px 0 0 15px;*/
  padding: 0;
  z-index: 9999;
  position: relative;
}

#header h1 {
  padding: 15px;
}

#Mainvisual {
  position: relative;
  padding: 100px 50px;
  text-align: center;
  background-size: cover;
  background-color: #00a56a;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  /*flex-wrap: wrap;*/
}

#Mainvisual .image {
  max-width: 750px;
  border-radius: 50%;
  width: 100%;
  animation-name: puyopuyo;
  animation-duration: 20s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  background-color: #fff;
}

#Mainvisual .main-wave {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: -350px;
}

#header .g_nav ul li a:hover {
  color: #fff;
  /*letter-spacing: 0.15em;*/
}

#header .g_nav ul li a::after {
  position: absolute;
  left: 50%;
  margin-left: -30%;
  content: '';
  width: 60%;
  height: 0.5px;
  background: #fff;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  transition: transform 0.3s;
  /*変形の時間*/
}

#header .g_nav ul li a:hover::after {
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

#header h1 img {
  width: auto;
  height: 40px;
}

#Mainvisual .title,
section.support .description {
  color: #fff;
  letter-spacing: 0.0125em;
  font-weight: 400;
}

#Mainvisual .title {
  font-size: 2.5rem;
  max-width: 750px;
  padding: 0 0 0 15px;
}

section.support .description {
  font-size: 2.5rem;
  max-width: 400px;
  margin: auto;
}

a {
  text-decoration: none;
}

/*-------------------------------------------------*/
/* Contents
/*-------------------------------------------------*/

#contents {
  padding: 200px 0 0;
  background-color: #fffaf0;
}

.inner {
  max-width: 1280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 40px;
}

#contents h2 {
  text-align: center;
  font-weight: 600;
  font-size: 35px;
  margin: 0 0 100px;
}

#contents h2 span.sub {
  display: block;
  font-size: 25px;
  color: #00a56a;
  font-weight: 400;
}

/*-------------------------------------------------*/
/* 当社のサービス
/*-------------------------------------------------*/
section.service .flex-box,
section.contact .flex-box {
  display: flex;
  flex-wrap: wrap;
}

section.service .flex-box {
  justify-content: center;
}

section.contact .flex-box {
  padding: 60px 0 0;
  justify-content: space-around;
}

section.service .box {
  max-width: 400px;
  background-color: #fff;
  border: solid 3px #00a56a;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  margin: 0 50px;
}

section.service .box img {
  width: 115px;
}

section.service .box dl {
  margin: 50px 0 0;
}

section.service .box dl dt {
  font-weight: 600;
  margin: 0 0 20px;
}

section.service {
  padding: 150px 0;
  position: relative;
}

section.service h2,
section.company-info h2,
section.contact h2 {
  position: relative;
  z-index: 0;
}

/*見出し背景文字*/
section.service h2::after,
section.company-info h2::after,
section.contact h2::after {
  position: absolute;
  top: -180px;
  color: #fbe9ca;
  z-index: -1;
  font-size: 180px;
  font-family: 'Sofia Sans Condensed', sans-serif;
  font-weight: 400;
  white-space: nowrap;
}

section.company-info h2::after {
  content: 'COMPANY INFO';
  left: 0;
}

section.contact h2::after {
  content: 'CONTACT';
}

section.service h2::after {
  content: 'SERVICE';
}

section.contact h2::after,
section.service h2::after {
  right: 0;
}

/*丸*/
.circle,
.circle02,
.circle03 {
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background: #00a56a;
  animation: fuwafuwa 5s infinite;
  position: absolute;
}

.circle {
  top: 100px;
  left: 300px;
}

.circle02 {
  right: 100px;
}

.circle03 {
  left: 200px;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0px);
  }
}

.wave-circle,
.wave-circle02 {
  border-radius: 50%;
  padding-top: 20%;
  width: 20%;
  animation-name: puyopuyo;
  animation-duration: 20.0s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  background-color: #00a56a;
  position: absolute;
}

.wave-circle {
  left: -150px;
}

.wave-circle02 {
  right: -150px;
}

@keyframes puyopuyo {
  0% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }

  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }

  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }

  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }

  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }

  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }

  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }

  100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
}

/*-------------------------------------------------*/
/* support
/*-------------------------------------------------*/
section.support .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

section.support .backcolor-wave,
section.support .backcolor-wave02 {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
}

section.support .backcolor-wave {
  top: -250px;
}

section.support .backcolor-wave02 {
  top: 300px;
}

section.support .image {
  max-width: 500px;
  border-radius: 50%;
  width: 100%;
  animation-name: puyopuyo;
  animation-duration: 20s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  background-color: #fff;
  text-align: center;
}

section.support .image img {
  width: 350px;
}

.support {
  background-color: #00a56a;
  padding: 30px 0;
  position: relative;
  margin: 100px 0;
}

/*-------------------------------------------------*/
/* 会社概要
/*-------------------------------------------------*/
.ggmap {
  height: 400px;
  overflow: hidden;
  margin: 100px 0;
}

.ggmap iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

section.company-info {
  padding: 200px 0;
  position: relative;
}

section.company-info table.info-contents {
  width: 100%;
  max-width: 750px;
  margin: auto;
  letter-spacing: 0.1rem;
}

section.company-info table.info-contents tr th {
  border-right: solid 1px #333333;
}

section.company-info table.info-contents tr th {
  padding: 20px 15px;
}

section.company-info table.info-contents tr td {
  padding: 20px 30px;
}

section.company-info table.info-contents tr td br.sp-br {
  display: none;
}

/*-------------------------------------------------*/
/* お問い合わせ
/*-------------------------------------------------*/
section.contact .mail-box,
section.contact .tel-box {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  width: 45%;
}

section.contact .tel-box a {
  color: #333333 !important;
  text-decoration: none;
}

section.contact .flex-box p {
  color: #00a56a;
  font-weight: 600;
}

section.contact .tel-box dl dt {
  font-size: 35px;
  font-weight: 600;
}

section.contact .mail-box dl dt img {
  padding: 10px;
  width: 80px;
}

section.contact .tel-box dl dt::before {
  content: '';
  display: inline-block;
  background-image: url(../images/contact/tel-icon.jpg);
  vertical-align: middle;
  width: 35px;
  height: 35px;
  background-size: contain;
  margin: 0 10px 0 0;
}

section.contact {
  position: relative;
  padding: 50px 0 100px;
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #00a56a 50%, #00a56a 100%);
}

section.contact .backcolor-wave {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50px;
}

section.contact .flex-box {
  padding: 50px 0 0;
}

section.contact .inner {
  position: relative;
}

section.contact .mail-box a {
  text-decoration: none;
}

section.contact .mail-box a dl dd,
section.contact .tel-box dl dd {
  color: #333333;
  font-size: 16px;
}

/*-------------------------------------------------*/
/* footer
/*-------------------------------------------------*/
#footer .copyright {
  padding: 20px 0;
  text-align: center;
  font-weight: 300;
  font-size: 15px;
}

#footer {
  background-color: #1b142c;
  color: #fff;
}

@media screen and (max-width: 1024px) {
  #header h1 img {
    width: auto;
    height: 30px;
  }


  /*========= ボタンのためのCSS ===============*/
  .openbtn1 {
    /*display: block;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 0px;
    right: 0px;
    cursor: pointer;
    width: 60px;
    height: 60px;
  }

  /*×に変化*/
  .openbtn1 .btnInner {
    width: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .openbtn1 span {
    display: inline-block;
    transition: all .4s;
    /*position: absolute;
        left: 14px;*/
    height: 3px;
    border-radius: 1.5px;
    background-color: #333333;
    width: 100%;
    margin: 0 0 5px;
  }

  .openbtn1 span:nth-of-type(3) {
    margin: 0;
  }

  .openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 100%;
    margin: 0;
  }

  .openbtn1.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-5px) rotate(45deg);
    width: 100%;
    margin: 0;
  }

  /*========= ナビゲーションのためのCSS ===============*/
  #g_nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;

    /*ナビの高さ*/
    background: rgba(255, 255, 255, 0.9);
    /*動き*/
    transition: all 0.3s;
  }

  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g_nav.panelactive {
    opacity: 1;
    left: 0;
    height: 100vh;
    z-index: 999;
    max-width: inherit !important;
  }

  /*ナビゲーションの縦スクロール*/
  #g_nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #header #g_nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    flex-direction: column !important;
    margin: 0 auto;
    width: 100%;
  }

  #header #g_nav.panelactive ul {
    display: block;
  }

  #g_nav ul li {
    width: 100% !important;
  }

  #g_nav ul li a {
    color: #333 !important;
    font-weight: 600;
    display: block;
    padding: 20px 0;
  }

  #g_nav ul li a:hover {
    color: #fff !important;
    background-color: #00a56a;
  }

}

@media screen and (max-width: 960px) {


  section.contact .backcolor-wave {
    top: 45px;
  }

  section.contact .flex-box {
    padding: 45px 0 0;
  }
}

@media screen and (min-width: 836px) {
  #header .nav {
    display: none;
  }
}

@media screen and (max-width: 835px) {
  section.contact .backcolor-wave {
    top: 90px;
  }

  section.contact .flex-box {
    padding: 0;
  }
}

@media screen and (max-width: 1600px) {
  #Mainvisual .main-wave {
    bottom: -280px;
  }
}

@media screen and (max-width: 1280px) {
  #Mainvisual .main-wave {
    bottom: -250px;
  }

  #Mainvisual .title {
    font-size: 2.5rem;
  }

  section.service .box {
    max-width: 350px;
    padding: 40px;
    margin: 0 40px;
  }

  section.contact {
    padding: 0 0 100px;
  }
}

@media screen and (max-width: 1136px) {
  #Mainvisual .main-wave {
    bottom: -200px;
  }

  /*
  section.contact .backcolor-wave {
    top: 50px;
  }
*/
  .circle {
    left: 200px;
  }

  section.support .backcolor-wave {
    top: -210px;
  }
}

@media screen and (max-width: 1024px) {
  .inner {
    padding: 0 30px;
  }

  #Mainvisual .main-wave {
    bottom: -180px;
  }

  section.service h2::after,
  section.company-info h2::after,
  section.contact h2::after {
    font-size: 160px;
    top: -150px;
  }

  #contents h2 span.sub {
    font-size: 20px;
  }

  #contents h2 {
    font-size: 30px;
  }

  #contents {
    padding: 100px 0 0;
  }

  section.support .backcolor-wave {
    top: -150px;
  }

  section.support .description {
    font-size: 2.0rem;
    max-width: 640px;
    margin: 0 auto 30px;
  }

  section.support .inner {
    display: block;
    text-align: center;
  }

  section.support .image {
    max-width: 400px;
    margin: auto;
  }

  section.support .backcolor-wave02 {
    top: 450px;
  }

  section.company-info h2::after {
    left: 0;
  }

  /*
  section.contact .backcolor-wave {
    top: 50px;
  }
*/
  section.contact .mail-box,
  section.contact .tel-box {
    padding: 20px;
    width: 40%;
  }

  .circle03 {
    left: 150px;
  }

  section.service .box {
    max-width: 350px;
    min-width: 44.4%;
    padding: 30px 25px;
    /*margin: 0 20px;*/
    margin: 0 2.8%;
    position: relative;
    z-index: 100;
  }

  section.contact .tel-box dl dt {
    font-size: 30px;
  }

  section.service {
    padding: 100px 0;
  }

  section.company-info {
    padding: 150px 0;
  }

  .wave-circle02 {
    right: -100px;
  }

  .wave-circle {
    left: -100px;
  }
}

@media screen and (max-width: 960px) {

  #Mainvisual .title {
    font-size: 2.0rem;
  }

  section.service h2::after,
  section.company-info h2::after,
  section.contact h2::after {
    font-size: 140px;
    top: -120px;
  }

  section.service .box {
    max-width: 300px;
  }

  section.service .box img {
    width: 120px;
  }

  #contents h2 {
    margin: 0 0 80px;
    font-size: 25px;
  }

  section.contact .tel-box dl dt {
    font-size: 28px;
  }

  .circle02 {
    right: 70px;
  }
}

@media screen and (max-width: 835px) {
  .inner {
    padding: 0 25px;
  }

  #contents {
    padding: 100px 0 0;
  }

  section.contact .mail-box {
    margin: 0 auto 30px;
  }

  section.contact .tel-box {
    margin: auto;
  }

  /*
  section.contact .backcolor-wave {
    top: 100px;
  }
*/
  #Mainvisual .main-wave {
    bottom: -160px;
  }

  #header h1 img {
    width: 70%;
    height: auto;
  }

  #Mainvisual {
    padding: 80px 50px;
  }

  section.service h2::after,
  section.company-info h2::after,
  section.contact h2::after {
    font-size: 120px;
    top: -90px;
  }

  section.service .box {
    max-width: 270px;
    padding: 20px;
  }

  section.service .box img {
    width: 100px;
  }

  section.service .box dl {
    margin: 30px 0 0;
    font-size: 16px;
  }

  section.contact .flex-box {
    display: block;
  }

  section.contact {
    padding: 0 0 50px;
  }

  section.contact .mail-box,
  section.contact .tel-box {
    padding: 10px;
    width: 70%;
  }

  section.contact .mail-box dl dt img {
    width: 70px;
  }

  .ggmap {
    height: 350px;
    margin: 80px 0;
  }

  section.support .description {
    font-size: 1.8rem;
  }

  section.support .backcolor-wave02 {
    top: 430px;
  }
}

@media screen and (max-width: 750px) {
  #Mainvisual .main-wave {
    bottom: -140px;
  }

  #Mainvisual .title {
    font-size: 1.8rem;
  }

  #Mainvisual {
    display: block;
    padding: 80px 0;
  }

  #Mainvisual .title,
  #Mainvisual .image {
    max-width: 550px;
  }

  #Mainvisual .image {
    margin: auto;
  }

  section.service h2::after,
  section.company-info h2::after,
  section.contact h2::after {
    font-size: 100px;
    top: -80px;
  }

  section.service .flex-box {
    /*display: block;*/
  }

  section.service .box {
    margin: 0 auto 40px;
  }


  #contents h2 {
    margin: 0 0 60px;
    font-size: 23px;
  }

  section.contact .backcolor-wave {
    top: 110px;
  }

  #Mainvisual .title {
    margin: 30px auto 0;
  }

  #footer .copyright {
    font-size: 13px;
  }

  section.company-info table.info-contents tr th {
    padding: 10px 15px;
    width: 95px;
  }

  section.company-info table.info-contents tr td {
    padding: 10px 15px;
  }

  .circle {
    left: 100px;
  }

  .circle,
  .circle02,
  .circle03 {
    width: 25px;
    height: 25px;
  }

  section.support .backcolor-wave {
    top: -100px;
  }

  section.service,
  section.company-info {
    padding: 50px 0;
  }


}

@media screen and (max-width: 640px) {
  #Mainvisual .main-wave {
    bottom: -120px;
  }

  #Mainvisual .title,
  #Mainvisual .image {
    max-width: 75%;
  }

  #Mainvisual .title {
    font-size: 1.6rem;
  }

  #Mainvisual {
    padding: 60px 0;
  }

  section.contact .tel-box dl dt {
    font-size: 25px;
  }

  section.contact .flex-box p {
    font-size: 16px;
  }

  section.contact .mail-box a dl dd,
  section.contact .tel-box dl dd {
    font-size: 14px;
  }

  section.contact .mail-box dl dt img {
    width: 65px;
  }

  section.contact .tel-box dl dt::before {
    width: 30px;
    height: 30px;
  }

  .ggmap {
    height: 250px;
    margin: 60px 0;
  }

  section.service h2::after,
  section.company-info h2::after,
  section.contact h2::after {
    font-size: 80px;
    top: -60px;
  }

  section.service .flex-box {
    display: block;
  }

  section.service .box {
    max-width: 480px;
    padding: 20px;
  }

  section.contact .backcolor-wave {
    top: 135px;
  }

  .circle,
  .circle03 {
    left: 50px;
  }

  .circle02,
  .circle03 {
    display: none;
  }

  section.support .description {
    font-size: 1.6rem;
  }

  section.support .image img {
    width: 300px;
  }

  section.support .backcolor-wave02 {
    top: 400px;
  }

  .wave-circle02 {
    right: 0;
  }

  .wave-circle {
    /*left: 0;*/
    display: none;
  }

  .wave-circle02,
  .wave-circle {
    width: 25%;
    padding-top: 25%;
    top: 0;
  }

}

@media screen and (max-width: 500px) {
  #Mainvisual .main-wave {
    bottom: -100px;
  }
}

@media screen and (max-width: 480px) {
  #Mainvisual .main-wave {
    bottom: -90px;
  }

  section.service .box img {
    width: 80px;
  }

  section.service .box {
    max-width: 350px;
  }

  section.contact .mail-box,
  section.contact .tel-box {
    width: 90%;
  }

  #footer .copyright {
    font-size: 11px;
  }

  section.contact .backcolor-wave {
    top: 160px;
  }

  .circle02 {
    right: 50px;
  }

  section.service h2::after,
  section.company-info h2::after,
  section.contact h2::after {
    font-size: 60px;

  }

  section.company-info h2::after {
    left: -30px;
  }


  section.company-info table.info-contents tr th,
  section.company-info table.info-contents tr td {
    display: block;
    width: 100%;
    font-size: 16px;
  }

  section.company-info table.info-contents tr th {
    border-right: none;
    background-color: #fff;
    /*color: #00a56a;*/
    color: #333333;
    padding: 2.5px 0;
  }

  section.company-info table.info-contents tr td {
    text-align: center;
    padding: 20px 10px;
  }

  section.company-info table.info-contents tr td br.sp-br {
    display: block;
  }

  .wave-circle02,
  .wave-circle {
    width: 23%;
    padding-top: 23%;
    right: 15px;
    top: -8%;

  }

  section.support .backcolor-wave {
    top: -70px;
  }

  section.support .image img {
    width: 250px;
  }

  section.support .image {
    width: 80%;
  }

  section.contact .tel-box dl dt {
    font-size: 23px;
  }

  section.contact .tel-box dl dt::before {
    width: 25px;
    height: 25px;
  }

  section.service,
  section.company-info {
    padding: 30px 0;
  }

  section.support .backcolor-wave02 {
    top: 350px;
  }

}

@media screen and (max-width: 350px) {
  #Mainvisual .main-wave {
    bottom: -80px;
  }
}