@charset "UTF-8";
body {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #bfd0ff;
}

.header-pc h1 {
  font-size: 2em;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 0;
}
@media screen and (min-width: 791px) and (max-width: 1207px) {
  .header-pc h1 {
    font-size: 1.5em;
  }
}
.header-pc .row {
  display: flex;
  justify-content: space-around;
}
.header-pc nav ul {
  list-style: none;
  display: flex;
  padding-top: 40px;
}
.header-pc nav ul li {
  margin-left: 15px;
  margin-right: 15px;
  font-size: 1em;
}
@media screen and (min-width: 791px) and (max-width: 1207px) {
  .header-pc nav ul li {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 790px) {
  .header-pc {
    display: none;
  }
}

/*　ハンバーガーボタン　*/
.header-sp h1 {
  padding-top: 20px;
  padding-bottom: 15px;
  font-size: 1.5em;
  text-align: left;
  padding-left: 10px;
}
@media screen and (min-width: 425px) and (max-width: 790px) {
  .header-sp h1 {
    padding-left: 50px;
    font-size: 1.8em;
  }
}
@media screen and (min-width: 791px) {
  .header-sp h1 {
    display: none;
  }
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media screen and (min-width: 791px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #000000;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
}

nav.globalMenuSp ul {
  background: rgba(25, 115, 120, 0.2);
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}

.top {
  background-image: url(image/office.jpg);
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 20%;
}
@media only screen and (max-width: 769px) {
  .top {
    height: 390px;
  }
}
.top h2 {
  font-size: 3em;
  color: #ffffff;
  padding-top: 2em;
  text-shadow: 3px 3px 5px rgba(14, 51, 29, 0.5);
}
@media only screen and (max-width: 769px) {
  .top h2 {
    font-size: 1.7em;
    padding-top: 3em;
  }
}

.intro {
  padding-top: 4em;
  padding-bottom: 4em;
  text-align: left;
  background-color: rgb(25, 115, 120);
  color: whitesmoke;
  display: none;
}
.intro .container-fluid {
  max-width: 1300px;
  margin: 0 auto;
}
@media only screen and (max-width: 570px) {
  .intro .container-fluid {
    max-width: 300px;
    margin: 0 auto;
  }
}
.intro h2 {
  font-size: 3em;
}
@media only screen and (max-width: 769px) {
  .intro h2 {
    font-size: 2em;
    padding-left: 30px;
  }
}
.intro p {
  font-size: 1.2em;
}
@media only screen and (max-width: 769px) {
  .intro p {
    font-size: 1em;
    padding-left: 30px;
    padding-top: 2em;
  }
}
.intro .appeal {
  display: flex;
  align-items: center;
  justify-items: center;
}

.hello {
  padding-top: 4em;
  padding-bottom: 4em;
}
.hello h2 {
  font-size: 3em;
}
@media only screen and (max-width: 769px) {
  .hello h2 {
    font-size: 2em;
  }
}
.hello h3 {
  font-family: "Dancing Script", cursive;
  padding-top: 0em;
  font-size: 2.5em;
  padding-bottom: 0em;
}
.hello hr {
  width: 60%;
  margin: 0 auto;
  padding: 0.1em;
  color: rgb(17, 134, 62);
}
.hello p {
  font-size: 1.2em;
  padding-top: 2em;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding-left: 2em;
  padding-right: 2em;
}
@media only screen and (max-width: 769px) {
  .hello p {
    font-size: 1em;
    max-width: 500px;
    margin: 0 auto;
  }
}
.hello .container-fluid {
  padding-top: 3em;
  padding-bottom: 3em;
  background-color: white;
  color: black;
}
@media only screen and (max-width: 769px) {
  .hello .container-fluid {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.hello .container-fluid h3 {
  font-size: 3em;
  color: rgb(40, 143, 80);
}
@media only screen and (max-width: 769px) {
  .hello .container-fluid h3 {
    padding-top: 1em;
  }
}
.hello .container-fluid h4 {
  font-size: 1.5em;
  font-weight: bold;
  color: rgb(40, 143, 80);
}
.hello .container-fluid hr {
  width: 70%;
  margin: 0 auto;
  padding: 0.1em;
  color: rgb(40, 143, 80);
}
.hello .container-fluid p {
  padding-top: 1em;
  font-size: 1.2em;
  padding-bottom: 1em;
  text-align: left;
}

.topic {
  padding-top: 4em;
  padding-bottom: 4em;
  background-color: rgb(231, 243, 231);
}
.topic h2 {
  font-size: 3em;
}
@media only screen and (max-width: 769px) {
  .topic h2 {
    font-size: 2em;
  }
}
.topic h3 {
  font-family: "Dancing Script", cursive;
  padding-top: 0em;
  font-size: 2.5em;
  padding-bottom: 0em;
}
.topic hr {
  width: 60%;
  margin: 0 auto;
  padding: 0.1em;
  color: rgb(17, 134, 62);
}
.topic .container-fluid {
  padding-top: 2em;
  max-width: 1000px;
  margin: 0 auto;
}
.topic p {
  font-size: 1.2em;
  text-align: left;
}
@media only screen and (max-width: 769px) {
  .topic p {
    padding-bottom: 2em;
  }
}
.topic .day {
  background-color: rgb(17, 134, 62);
  color: whitesmoke;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  text-align: center;
}

.feature {
  background-image: linear-gradient(90deg, rgb(40, 143, 80), rgb(25, 115, 120));
  color: whitesmoke;
  padding-top: 3em;
  padding-bottom: 3em;
  display: none;
}
.feature hr {
  width: 70%;
  margin: 0 auto;
}
.feature h2 {
  font-size: 3em;
}
@media only screen and (max-width: 769px) {
  .feature h2 {
    font-size: 2em;
  }
}
.feature h3 {
  font-family: "Dancing Script", cursive;
  font-size: 2.5em;
  padding-bottom: 20px;
}
.feature p {
  font-size: 1.2em;
  padding-bottom: 3em;
}
@media only screen and (max-width: 769px) {
  .feature p {
    font-size: 1em;
  }
}
.feature .container-fluid {
  padding-top: 3em;
  padding-bottom: 3em;
  background-color: white;
  color: black;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width: 769px) {
  .feature .container-fluid {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.feature .container-fluid h3 {
  font-size: 3em;
  color: rgb(40, 143, 80);
}
@media only screen and (max-width: 769px) {
  .feature .container-fluid h3 {
    padding-top: 1em;
  }
}
.feature .container-fluid h4 {
  font-size: 1.5em;
  font-weight: bold;
  color: rgb(40, 143, 80);
}
.feature .container-fluid hr {
  width: 70%;
  margin: 0 auto;
  padding: 0.1em;
  color: rgb(40, 143, 80);
}
.feature .container-fluid p {
  padding-top: 1em;
  font-size: 1.2em;
  padding-bottom: 1em;
  text-align: left;
}

.service {
  padding-top: 4em;
  padding-bottom: 4em;
  display: none;
}
.service h2 {
  font-size: 3em;
}
@media only screen and (max-width: 769px) {
  .service h2 {
    font-size: 2em;
  }
}
.service h3 {
  font-size: 2em;
  padding-top: 2em;
  padding-bottom: 1em;
}
.service hr {
  width: 60%;
  margin: 0 auto;
  padding: 0.1em;
  color: rgb(17, 134, 62);
}
.service .enwork {
  font-family: "Dancing Script", cursive;
  padding-top: 0em;
  font-size: 2.5em;
  padding-bottom: 0em;
}
.service h4 {
  background-color: #2d713e;
  color: white;
  padding: 1em;
}
.service .sabtitle {
  background-color: #2d713e;
  color: white;
  padding: 1em;
  margin-top: 2em;
}
.service .workmore {
  display: none;
}

.button-service {
  padding-top: 2em;
}

a.btn_13 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 220px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  background: #eee;
  color: #2d713e;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
@media only screen and (max-width: 769px) {
  a.btn_13 {
    padding: 1rem 2rem;
  }
}

a.btn_13::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 1em;
  transform: translateY(calc(-50% - 2px)) rotate(45deg);
  width: 10px;
  height: 1px;
  background: #2d713e;
}

a.btn_13::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #2d713e;
}

a.btn_13:hover {
  background: #d4eef7;
  color: #27acd9;
}

iframe {
  width: 100%;
  height: 400px;
}

.foot {
  padding-top: 4em;
  padding-bottom: 4em;
}

.footer {
  padding-top: 2em;
  padding-bottom: 2em;
  background-color: rgb(34, 34, 69);
}
.footer a {
  text-decoration: none;
  color: whitesmoke;
}
.footer a:hover {
  color: #bfd0ff;
}

a.btn_12 {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 200px;
  margin: auto;
  padding: 1rem 2rem 1rem 2rem;
  font-weight: bold;
  background: #5bc275;
  color: #fff;
  border-radius: 100vh;
  position: relative;
  transition: 0.5s;
}
@media only screen and (max-width: 769px) {
  a.btn_12 {
    width: 290px;
  }
}

a.btn_12:hover {
  background: #44c6f2;
  color: #fff;
}

@media screen and (min-width: 1025px) {
  .br-sp {
    display: none;
  }
}
.fadeInLeft {
  transform: translate3d(-150px, 0px, 0);
  transition: 1s;
  opacity: 0;
}
@media only screen and (max-width: 769px) {
  .fadeInLeft {
    transform: translate3d(-50px, 0px, 0);
  }
}

.fadeInLeft.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.fadeInRight {
  transform: translate3d(150px, 0px, 0);
  transition: 1s;
  opacity: 0;
}
@media only screen and (max-width: 769px) {
  .fadeInRight {
    transform: translate3d(50px, 0px, 0);
  }
}

.fadeInRight.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */