@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;700&display=swap");
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  min-height: 0vw;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #2c2c2c;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

ol, ul {
  list-style: none;
}

em {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

img {
  display: block;
  border-style: none;
  font-size: 0;
  line-height: 0;
}

a {
  background: transparent;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
}
.w100 {
  width: 100%;
}

.bold {
  font-weight: bold;
}

.fade {
  opacity: 0;
  transition: all 1s linear 0.2s;
}

.fade_on {
  opacity: 1;
}

.movexl {
  opacity: 0;
  translate: -20px 0;
  transition: all 0.4s ease-out;
}

.movexr {
  opacity: 0;
  translate: 20px 0;
  transition: all 0.4s ease-out;
}

.movexl_on,
.movexr_on {
  opacity: 1;
  translate: 0 0;
}

.movey {
  opacity: 0;
  translate: 0 20px;
  transition: all 0.4s ease-out;
}

.movey_on {
  opacity: 1;
  translate: 0 0;
}

.small {
  scale: 1.5;
  opacity: 0;
  transition: all 0.4s ease-out 0.4s;
}

.small_on {
  scale: 1;
  opacity: 1;
}

.move {
  opacity: 0;
}

.move_on {
  opacity: 1;
}

.bs {
  animation: bigSmall 0.3s infinite alternate;
}

@keyframes bigSmall {
  0% {
    scale: 1;
  }
  100% {
    scale: 0.92;
  }
}
@keyframes f_a {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes m_r {
  0% {
    opacity: 0;
    translate: 20px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes m_t {
  0% {
    opacity: 0;
    translate: 0 -10px;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes m_l {
  0% {
    opacity: 0;
    translate: -20px 0;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
.container {
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 4% 100px;
  }
  header .pc_nav ul {
    display: flex;
    padding: 0.5em 0 0;
  }
  header .pc_nav li {
    padding: 0 0 0 2em;
  }
  header .pc_nav a {
    color: #000;
    font-family: "Poppins", sans-serif;
    transition: all 0.4s linear;
  }
  header .pc_nav a:hover {
    color: #ff8b1a;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding: 20px 4% 16%;
  }
  header .logo {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  #nav_area {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    padding: 80px 20px 20px;
    background: #6bb160;
    overflow: auto;
    z-index: 999;
  }
  #nav_area.open {
    visibility: visible;
    opacity: 1;
  }
  #nav_area nav {
    margin: 30px 0 0;
    opacity: 0;
    transition: all 0.5s linear;
  }
  #nav_area.open nav {
    margin: 0 auto;
    opacity: 1;
  }
  #nav_area li a {
    display: block;
    margin: 20px 0;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    transition: all 0.3s linear;
  }
  #navBtn {
    position: absolute;
    top: 16px;
    right: 6%;
    display: block;
    width: 30px;
    height: 40px;
    z-index: 1000;
  }
  #navBtn div {
    position: relative;
    width: 40px;
    height: 40px;
  }
  #navBtn span {
    position: absolute;
    left: 5px;
    width: 30px;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
  }
  #navBtn span:nth-of-type(1) {
    top: 8px;
  }
  #navBtn span:nth-of-type(2) {
    top: 19px;
  }
  #navBtn span:nth-of-type(3) {
    bottom: 8px;
  }
  #navBtn.btn_close span:nth-of-type(1) {
    transform: translateY(11.5px) rotate(-315deg);
    background: #fff;
  }
  #navBtn.btn_close span:nth-of-type(2) {
    opacity: 0;
    background: #fff;
  }
  #navBtn.btn_close span:nth-of-type(3) {
    transform: translateY(-11.5px) rotate(315deg);
    background: #fff;
  }
  .fixed,
  .fixed body {
    height: 100%;
    overflow: hidden;
  }
}
main {
  padding: 0 4%;
}

.fv {
  width: 100%;
  height: 80svh;
  display: flex;
  align-items: flex-end;
  margin: auto;
  padding: min(6%, 50px) 6%;
  background: #6bb160 url(../img/fv.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 15px;
}
.fv .box {
  color: #fff;
}
.fv h1 {
  font-size: clamp(34px, 28.4615384615px + 1.5384615385vw, 50px);
  font-weight: 800;
  line-height: 1.4;
}
.fv p {
  margin-top: 1em;
  font-size: clamp(16.5px, 15.2884615385px + 0.3365384615vw, 20px);
  line-height: 1.8;
}
.fv .fv-ph {
  animation: m_r 0.6s linear 2s both;
}

.t_1 {
  font-size: clamp(36px, 31.1538461538px + 1.3461538462vw, 50px);
  font-weight: 800;
  text-align: center;
}
.t_1 span {
  background: linear-gradient(90deg, #738b70, #778375);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

#service {
  padding: min(20%, 150px) 4%;
  background: url(../img/bg.jpg) center top no-repeat;
  background-size: cover;
}
#service h2 {
  text-align: center;
}
#service h3 {
  max-width: 750px;
  margin: 0 auto 1em;
  font-size: clamp(24px, 21.9230769231px + 0.5769230769vw, 30px);
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
  color: #6bb160;
}
#service p {
  max-width: 750px;
  margin: auto;
  line-height: 1.8;
}
#service .btn {
  display: block;
  max-width: 400px;
  padding: 1em;
  margin: 1.5em auto;
  background: #6bb160;
  border-radius: 100vh;
  text-align: center;
  color: #fff;
  transition: all 0.3s linear;
}
#service .btn:hover {
  opacity: 0.7;
}
#service ul {
  margin-top: min(6%, 80px);
}
#service li {
  padding: 12% 8%;
  background: #fff;
  border-radius: 15px;
  filter: drop-shadow(0 0 8px rgba(34, 47, 32, 0.15));
}
@media screen and (max-width: 767px) {
  #service li {
    margin-top: 6%;
  }
}
@media screen and (min-width: 768px) {
  #service ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  #service ul li {
    width: 45%;
    padding: 60px;
  }
}

#company {
  padding: 26% 6% 16%;
  margin: auto;
}
#company dl {
  margin-top: 3em;
  border-bottom: 1px solid #e0e0e0;
  line-height: 2;
}
#company dt {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #company dt {
    border-top: 1px solid #e0e0e0;
    padding-top: 1em;
  }
  #company dd {
    padding-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
  #company {
    padding: 170px 4% 60px;
  }
  #company .inr {
    max-width: 900px;
    margin: auto;
  }
  #company dt {
    position: absolute;
    width: 14em;
    padding: 2em;
    border-top: 1px solid #e0e0e0;
    font-weight: bold;
  }
  #company dd {
    border-top: 1px solid #e0e0e0;
    padding: 2em 2em 2em 16em;
  }
}

.map {
  width: 100%;
  height: 500px;
  filter: grayscale(100%);
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  .map {
    height: 360px;
  }
}

#contact {
  padding: 46% 2% 26%;
}
#contact dl {
  margin: 6% auto 0;
}
#contact dt {
  margin: 1.6em 0 0.8em;
  padding-left: 0.5em;
  font-weight: bold;
}
#contact dt .hissu {
  color: #fe6f6f;
  font-weight: bold;
}
#contact dt .nini {
  color: #8e8e8e;
  font-weight: bold;
}
#contact .form_btn {
  display: block;
  width: 90%;
  max-width: 460px;
  margin: 8% auto 0;
  padding: 1em;
  background: #6bb160;
  border-radius: 100vh;
  color: #fff;
  font-size: 126%;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s linear;
}
#contact .form_btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  #contact {
    padding: 200px 0 100px;
  }
  #contact .inr {
    max-width: 1000px;
    margin: auto;
  }
  #contact dl {
    margin: 70px auto 0;
  }
  #contact .form_btn {
    margin: 58px auto 0;
  }
}

/* ===================================
フォーム
------------------------------------*/
button, textarea, select, input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

button {
  box-shadow: none;
  outline: none;
}

input,
textarea {
  width: 100%;
  padding: 1.4em 1em;
  background: #f1f1f1;
  border-radius: 10px;
  font-size: 112.5%;
}

textarea {
  height: 300px;
  line-height: 1.8;
}

.form_under {
  padding: 26% 6%;
}
.form_under .t_1 {
  text-align: center;
}
.form_under h3 {
  margin: 4em 0 0;
  color: #000;
  text-align: center;
  font-weight: 600;
  font-size: 22px;
}
.form_under dl {
  margin: auto;
}
.form_under dt {
  margin: 10% 0 3%;
  font-weight: bold;
}
.form_under dd {
  line-height: 2;
}
.form_under .btn_next {
  display: block;
  width: 90%;
  max-width: 460px;
  margin: 8% auto 0;
  padding: 1em;
  background: #6bb160;
  border-radius: 100vh;
  color: #fff;
  font-size: 126%;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s linear;
}
.form_under .btn_next:hover {
  opacity: 0.7;
}
.form_under .btn_prev {
  display: block;
  width: 50%;
  max-width: 200px;
  margin: 2em auto 0;
  padding: 0.7em;
  border-radius: 100vh;
  background: #f1f1f1;
  color: #000;
  font-size: 126%;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: all 0.3s linear;
}
.form_under .btn_prev:hover {
  background: #bdbdbd;
  color: #fff;
}
.form_under p {
  max-width: 680px;
  margin: 15% auto;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .form_under {
    padding: 130px 0;
  }
  .form_under .inr {
    max-width: 1000px;
    margin: auto;
  }
  .form_under p {
    margin: 50px auto 200px;
  }
}

/* ===================================
フッター
------------------------------------*/
footer {
  padding: 2% 4%;
}
footer .f_logo {
  display: block;
  width: min(30%, 150px);
  margin: auto;
}
footer small {
  margin-top: 2em;
  display: block;
  font-size: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 146px 4% 30px;
  }
}