@charset "UTF-8";
body {
  background: #fff;
}

/* -------------------------------------------------------------------
　キービジュアル
------------------------------------------------------------------- */
#kv {
  background-image: url("../imgs/common/top_bg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 43.8125rem;
  position: relative;
}
#kv:after {
  content: "";
  background: #F0F5F3;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14.75rem;
  z-index: -10;
}
#kv .f-container {
  height: 42.81rem;
  display: flex;
  align-items: start;
  justify-items: flex-end;
}
#kv .f-container__ct:first-child {
  width: 55%;
  padding-right: 3.43rem;
  padding-top: 2rem;
}
#kv .f-container__ct:first-child h1 {
  font-size: clamp(2.15rem, 2vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1.1rem;
  color: #204731;
}
#kv .f-container__ct:first-child h1 span {
  font-size: clamp(1.75rem, 2vw, 2.9rem);
}
#kv .f-container__ct:first-child h3 {
  width: fit-content;
  font-size: clamp(1.7rem, 2vw, 2.25rem);
  font-weight: 700;
  border-bottom: 6px solid #F1A039;
  margin-bottom: 1.5rem;
  color: #204731;
}
#kv .f-container__ct:first-child ul {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
}
#kv .f-container__ct:first-child ul li {
  width: 15.44rem;
  height: 4.75rem;
  border-radius: 0.25rem;
  line-height: 4.75rem;
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.16);
  transition: all 0.5s ease;
}
#kv .f-container__ct:first-child ul li.download {
  background-color: #F1A039;
}
#kv .f-container__ct:first-child ul li.download:before {
  content: "";
  display: inline-block;
  width: 1.5625rem;
  height: 2.0625rem;
  margin-right: 0.3rem;
  background-image: url("../imgs/common/ico_download.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
}
#kv .f-container__ct:first-child ul li.contact {
  background-color: #204731;
}
#kv .f-container__ct:first-child ul li.contact:before {
  content: "";
  display: inline-block;
  width: 2.4375rem;
  height: 2.1875rem;
  margin-right: 0.3rem;
  background-image: url("../imgs/common/ico_contact.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
}
#kv .f-container__ct:first-child ul li:hover {
  opacity: 0.7;
}
#kv .f-container__ct:nth-child(2) {
  width: 45%;
  font-size: 1rem;
  border: 7px solid #204731;
  border-radius: 0.625rem;
  background: #fff;
  padding: 1rem;
  align-items: center;
}
#kv .f-container__ct:nth-child(2) h3 {
  font-size: 1.75rem;
  color: #204731;
  width: fit-content;
  display: block;
  margin: 0 auto 1.625rem;
}
#kv .f-container__ct:nth-child(2) p.exp {
  font-size: 0.8125rem;
  text-align: center;
  margin-bottom: 1rem;
}
#kv .f-container__ct:nth-child(2) .item {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#kv .f-container__ct:nth-child(2) .item .txt-area {
  width: 15em;
}
#kv .f-container__ct:nth-child(2) .item .ans-area {
  width: 100%;
}
#kv .f-container__ct:nth-child(2) .item .ans-area .wpcf7-list-item {
  display: block;
}
#kv .f-container__ct:nth-child(2) .req:after {
  content: "必須";
  color: #ffffff;
  background: #cc0000;
  font-size: 0.8em;
  padding: 0.3em;
  border-radius: 0.5em;
  margin-left: 0.3em;
}
#kv .f-container__ct:nth-child(2) .opt:after {
  content: "任意";
  color: #ffffff;
  background: #ccc;
  font-size: 0.8em;
  padding: 0.3em;
  border-radius: 0.5em;
  margin-left: 0.3em;
}
#kv .f-container__ct:nth-child(2) input[type=submit] {
  width: 100%;
  height: 4rem;
  margin: 1rem auto 0;
  border-radius: 0.25rem;
  line-height: 4rem;
  display: block;
  font-size: 1.125rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.16);
  transition: all 0.5s ease;
  background-color: #D70930;
}
#kv .f-container__ct:nth-child(2) input[type=submit]:hover {
  background-color: #fff;
  color: #D70930;
}
#kv .f-container__ct:nth-child(2) input[type=text],
#kv .f-container__ct:nth-child(2) input[type=email],
#kv .f-container__ct:nth-child(2) input[type=tel],
#kv .f-container__ct:nth-child(2) textarea {
  width: 100%;
  box-sizing: border-box;
  flex-grow: 1;
  border-radius: 5px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1) inset;
  border: 1px #ccc solid;
  margin: 5px 0 5px 0;
  padding: 5px;
}
#kv .f-container__ct:nth-child(2) input[type=text]:focus,
#kv .f-container__ct:nth-child(2) input[type=email]:focus,
#kv .f-container__ct:nth-child(2) input[type=tel]:focus,
#kv .f-container__ct:nth-child(2) textarea:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}
#kv .f-container__ct:nth-child(2) textarea {
  height: 4.5em;
}
#kv .f-container__ct:nth-child(2) .acceptance {
  font-size: 1rem;
  width: 100%;
}
#kv .f-container__ct:nth-child(2) .acceptance a {
  color: #33C3F0;
}
#kv .f-container__ct:nth-child(2) .acceptance a:after {
  background-color: #33C3F0;
  height: 1px;
}

@media (max-width: 768px) {
  #kv {
    height: auto;
  }
  #kv .f-container {
    height: auto;
    flex-direction: column;
    justify-content: center;
  }
  #kv .f-container__ct:first-child {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  #kv .f-container__ct:first-child ul {
    flex-direction: column;
    gap: 1rem;
  }
  #kv .f-container__ct:nth-child(2) {
    display: none;
  }
}
/* -------------------------------------------------------------------
　野原の3Dデータ作成サービスとは？
------------------------------------------------------------------- */
#data_service {
  padding: 5.8125rem 0 7.1875rem;
}
#data_service p.lead {
  margin-top: 1.8125rem;
  text-align: center;
  line-height: 1.875;
}
#data_service #date_format {
  width: 100%;
  border: 1px solid #204731;
  border-radius: 0.625rem;
  position: relative;
  margin-top: 7.375rem;
  padding: 2.5rem;
}
#data_service #date_format__title {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.625rem 1.5rem;
  font-size: 1.125rem;
  color: #fff;
  background: #204731;
  border-radius: 0.625rem;
}
#data_service #date_format .f-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
}
#data_service #date_format .f-container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
#data_service #date_format p {
  font-size: 0.75rem;
  text-align: center;
}
#data_service #point {
  position: relative;
  width: 54.375rem;
  height: 31.4375rem;
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
#data_service #point .text {
  font-size: 0.875rem;
  color: #333333;
}
#data_service #point .point {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  height: 13rem;
  background: #F4F4F4;
}
#data_service #point .point01 {
  border-radius: 13rem 13rem 0 13rem;
  position: absolute;
  top: 0;
  left: 4rem;
}
#data_service #point .point02 {
  border-radius: 13rem 13rem 13rem 0;
  position: absolute;
  top: 1rem;
  right: 2rem;
}
#data_service #point .point03 {
  border-radius: 13rem 0 13rem 13rem;
  position: absolute;
  bottom: 1rem;
  left: 0;
}
#data_service #point .point04 {
  border-radius: 0 13rem 13rem 13rem;
  position: absolute;
  bottom: 0;
  right: 0;
}
#data_service .triangle {
  width: 6.75rem;
  height: 2.75rem;
  margin: 2rem auto 3rem;
}
#data_service h3 {
  width: fit-content;
  font-size: clamp(1.08rem, 1vw, 2rem);
  margin: 1rem auto 0;
  position: relative;
  display: block;
}
#data_service h3:before {
  content: "“";
  position: absolute;
  top: -0.75rem;
  left: -1.5rem;
}
#data_service h3:after {
  content: "”";
  position: absolute;
  top: -0.75rem;
  right: -1.5rem;
}
#data_service h3.marker {
  font-size: clamp(1.4rem, 1vw, 2rem);
  display: block;
  background-image: linear-gradient(transparent 50%, #F1A039 50%);
  background-size: 100% 1rem;
  background-position: 0 90%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
}
#data_service h5 {
  width: fit-content;
  margin: 6.375rem auto 0;
}
#data_service .exp {
  font-size: clamp(1.08rem, 1vw, 1.375rem);
  font-weight: 700;
  text-align: center;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  #data_service {
    padding: 5.8125rem 0 5rem;
  }
  #data_service h2 {
    font-size: clamp(1.35em, 1vw, 2rem);
  }
  #data_service #date_format .f-container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding: 0;
  }
  #data_service #date_format .f-container .format {
    width: 45%;
    margin-bottom: 1rem;
  }
  #data_service #point {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  #data_service #point .point {
    width: auto;
    height: auto;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
  }
  #data_service #point .point01,
  #data_service #point .point02,
  #data_service #point .point03,
  #data_service #point .point04 {
    position: initial;
    width: 80%;
  }
  #data_service h3 {
    margin: 0 2rem;
    text-align: center;
  }
  #data_service h3:before {
    top: -0.5rem;
  }
  #data_service h3:after {
    top: -0.5rem;
  }
}
/* -------------------------------------------------------------------
　野原が選ばれる4つの理由
------------------------------------------------------------------- */
#reason {
  padding: 6.25rem 0 8.375rem;
  background: #FFFBF2;
}
#reason .f-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4.5rem;
}
#reason .f-container .panel {
  width: 45%;
  border: 1px solid #204731;
  border-radius: 0.625rem;
  background: #fff;
  position: relative;
  padding: 3.625rem 3.1875rem 2.375rem;
  margin-bottom: 3.125rem;
}
#reason .f-container .panel__title {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.1rem 1.2rem;
  font-size: 0.75rem;
  color: #fff;
  background: #204731;
  border-radius: 0.625rem;
  letter-spacing: 0.01rem;
}
#reason .f-container .panel__title span {
  font-size: 1.5rem;
}
#reason .f-container .panel h3.title {
  font-size: clamp(1.07rem, 1vw, 1.375rem);
  width: fit-content;
  background-image: linear-gradient(transparent 50%, #F1A039 50%);
  background-size: 100% 0.5rem;
  background-position: 0 90%;
  background-repeat: no-repeat;
  padding-bottom: 0.8rem;
}
#reason .f-container .panel__item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 21rem;
}
#reason .f-container .panel__item .txt {
  margin-top: 1rem;
  line-height: 1.75;
}
#reason .f-container .panel__item ul li {
  color: #204731;
  margin-bottom: 1rem;
}
#reason .f-container .panel__item ul li:before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  display: inline-block;
  margin-right: 0.3rem;
  background-image: url("../imgs/common/ico_check-circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  vertical-align: middle;
}

@media (max-width: 768px) {
  #reason {
    padding: 6.25rem 0 3rem;
  }
  #reason .f-container {
    flex-direction: column;
  }
  #reason .f-container .panel {
    width: 100%;
    padding: 3.625rem 1rem 2.375rem;
  }
  #reason .f-container .panel__item ul li {
    text-indent: -1.5rem;
    padding-left: 1rem;
    margin-top: 1rem;
  }
  #reason .f-container .panel__item ul li:before {
    content: "";
    width: 1.2rem;
    height: 1.2rem;
  }
  #reason .f-container .panel__item {
    height: auto;
    margin-top: 1rem;
  }
}
/* -------------------------------------------------------------------
　Space Collection
------------------------------------------------------------------- */
#collection {
  padding: 6.5625rem 0 5.375rem;
  background: #F4F4F4;
}
#collection p.lead {
  margin-top: 2rem;
  text-align: center;
  line-height: 1.875;
  color: #333333;
}
#collection .f-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3.5625rem;
}
#collection .f-container img {
  aspect-ratio: 390/205;
  object-fit: cover;
}

@media (max-width: 768px) {
  #collection {
    padding: 6.5625rem 0 1.5rem;
  }
  #collection .f-container {
    flex-direction: column;
    gap: 1rem;
  }
}

/*# sourceMappingURL=data_creation.css.map */
