* {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

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

body {
  background-color: #fffbe1;
}

.main-fonts {
  font-family: "Noto Sans JP", sans-serif;
}

.text-color {
  color: #bca485;
}

@media screen and (max-width: 850px) {
  .tb {
    display: none;
  }
}

.db {
  display: none;
}
@media screen and (max-width: 850px) {
  .db {
    display: block;
  }
}

.orb-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

header .header-Wrapper {
  position: fixed;
  width: 100%;
  z-index: 10;
}
header .header-Container {
  position: relative;
}
header .header-top-text {
  background: #ECCD7A;
  box-shadow: 0px 39px 92px 18px #8dc5be, 0px 78px 79px 13px rgba(255, 255, 255, 0.56);
}
@media screen and (max-width: 850px) {
  header .header-top-text p {
    font-size: 13px;
  }
}
header .header-menu {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  align-items: center;
}
header .header-menu-left {
  font-size: 25px;
}
@media screen and (max-width: 850px) {
  header .header-menu-left {
    font-size: 20px;
  }
}
header .header-menu-right {
  width: 90px;
}
@media screen and (max-width: 850px) {
  header .header-menu-right {
    font-size: 16px;
  }
}
header .pdmenu {
  position: relative;
}
header .menu {
  cursor: pointer;
  transition-duration: 500ms;
  position: relative;
  z-index: 10;
}
header .menu.active {
  color: white;
}
header .navi {
  transform: translateX(-150%);
  opacity: 0;
  transition-duration: 500ms;
  position: absolute;
  top: 30px;
  z-index: 10;
}
header .navi li:nth-child(2) {
  padding: 20px 0;
}
header .navi li a {
  color: white;
}
header .navi-contact-box {
  position: absolute;
  top: 111%;
  width: 110%;
}
header .navi-contact-box p a {
  font-size: 16px;
}
header .navi-logo {
  color: white;
}
header .navi-tel {
  margin: 20px 0;
  font-size: 16px;
  color: white;
}
header .navi-adress {
  font-size: 16px;
  color: white;
}
header .navi.active {
  transform: translateX(0);
  transition-duration: 500ms;
  opacity: 1;
  margin-left: 10px;
}

.mask {
  position: absolute;
  top: -20px;
  height: 100vh;
  width: 30%;
  background: white;
  transform: translateX(-150%);
  transition-duration: 500ms;
  opacity: 0;
}
@media screen and (max-width: 850px) {
  .mask {
    width: 50%;
  }
}

.mask.active {
  transform: translateX(0);
  transition-duration: 500ms;
  opacity: 1;
  background: linear-gradient(90deg, #bca485 0%, rgba(188, 164, 133, 0.600867679) 61%, rgba(188, 164, 133, 0) 100%);
}

.animation_text {
  background-color: #2d2d2d;
  overflow: hidden;
  padding: 10px 0;
}

.news_test {
  display: inline-block;
  white-space: nowrap;
  animation: text_scroll 20s linear infinite;
  padding-left: 100%;
}

@keyframes text_scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.zoomin {
  transition: 0.3s;
  transform: scale(1.2, 1.2);
}

.zoom {
  transition: 0.7s;
}
.zoom:hover {
  transition: 0.7s;
  transform: scale(1.1, 1.1);
}

.main-Container {
  position: relative;
  background: url(../img/mainback.png) no-repeat;
  background-size: 45%;
  background-position: center;
  padding: 120px 0;
}
@media screen and (max-width: 850px) {
  .main-Container {
    background-size: 80%;
  }
}
.main-Container::before {
  width: 100%;
  height: 100%;
  position: absolute;
  display: inline-block;
}
.main-img {
  width: 50%;
  margin: 0 auto;
  margin-top: 100px;
  max-width: 600px;
}
@media screen and (max-width: 850px) {
  .main-img {
    width: 65%;
  }
}

.main-contact {
  margin-top: 160px;
}

.contact-btn {
  text-align: center;
  border: solid 2px #bca485;
  color: #bca485;
  background-color: white;
  width: 150px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 15px;
  margin-top: 40px;
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 850px) {
  .contact-btn {
    width: 130px;
    font-size: 16px;
  }
}

.title {
  font-size: 50px;
  text-align: center;
  color: #bca485;
}
@media screen and (max-width: 850px) {
  .title {
    font-size: 40PX;
  }
}

.title-icon {
  width: 10%;
  margin: 0 auto;
  max-width: 95px;
  margin-bottom: 30px;
}
@media screen and (max-width: 850px) {
  .title-icon {
    width: 15%;
  }
}

.Project-Container {
  text-align: center;
  padding: 73px 0;
}
@media screen and (max-width: 850px) {
  .Project-title {
    width: 90%;
    margin: 0 auto;
  }
}
.Project-goods {
  width: 90%;
  margin: 0 auto;
  margin-top: 70px;
  max-width: 1000px;
}
.Project-goods-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 850px) {
  .Project-goods-list {
    flex-direction: column;
    align-items: center;
  }
}
.Project-goods-list-item {
  width: 70%;
  padding: 70px 23px;
  background: white;
  margin: 0 auto;
  border: solid 5px #bca485;
}
@media screen and (max-width: 850px) {
  .Project-goods-list-item {
    width: 50%;
  }
}
.Project-goods .center {
  z-index: 1;
}
@media screen and (max-width: 850px) {
  .Project-goods .center {
    position: initial;
    margin: 60px auto;
  }
}

.Aboutus-Container {
  padding: 130px 0 123px 0;
  position: relative;
}
@media screen and (max-width: 850px) {
  .Aboutus-Container {
    padding-bottom: 80px;
  }
}
.Aboutus-text {
  width: 60%;
  margin: 0 auto;
  font-size: 20px;
  max-width: 1000px;
}
@media screen and (max-width: 850px) {
  .Aboutus-text {
    width: 90%;
    font-size: 18px;
  }
}
.Aboutus-text-box {
  margin-top: 100px;
  font-feature-settings: "palt";
}

.Contact-Container {
  padding-bottom: 140px;
  margin-top: 80px;
}
@media screen and (max-width: 850px) {
  .Contact-Container {
    padding: 80px 0;
  }
}
.Contact-box {
  text-align: center;
  border: solid 5px #bca485;
  width: 60%;
  margin: 0px auto;
  padding-bottom: 21px;
  max-width: 1000px;
}
@media screen and (max-width: 850px) {
  .Contact-box {
    width: 90%;
  }
}
.Contact-box h1 {
  background: #bca485;
  padding: 15px !important;
  color: white;
}
.Contact-box ul {
  font-size: 20px;
}
.Contact-box ul li:nth-child(1) {
  margin: 30px 0;
}

.bottom-Container {
  padding: 30px 0;
  background: linear-gradient(90deg, rgba(27, 119, 104, 0.8113839286) 0%, rgba(209, 255, 250, 0.7021402311) 50%, rgba(27, 119, 104, 0.7701711491) 100%);
}
.bottom-headline {
  font-size: 20px;
  width: 20%;
}
@media screen and (max-width: 850px) {
  .bottom-headline {
    width: initial;
    padding: 15px 0;
    font-size: 20px;
  }
}
.bottom-headline p {
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .bottom-headline p {
    width: initial;
  }
}
.bottom-box {
  width: 90%;
  margin: 0 auto;
  border: solid 3px;
  max-width: 1000px;
}
.bottom-Project {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 850px) {
  .bottom-Project {
    flex-direction: column-reverse;
  }
}
.bottom-Project-left {
  display: flex;
  width: 70%;
  align-items: center;
  justify-content: space-between;
  border-right: solid 2px;
  padding: 12px 30px 12px 30px;
}
@media screen and (max-width: 850px) {
  .bottom-Project-left {
    border-top: 0;
    padding: 12px 0px 12px 0px;
    border-right: 0;
    width: 82%;
    margin: 0 auto;
  }
}
.bottom-Project-logo {
  width: 13%;
}
@media screen and (max-width: 850px) {
  .bottom-Project-logo {
    width: 20%;
  }
}
.bottom-Project-img {
  width: 7%;
}
@media screen and (max-width: 850px) {
  .bottom-Project-img {
    width: 10%;
  }
}
@media screen and (max-width: 850px) {
  .bottom-Project-right {
    padding: 15px 0;
    border-top: solid 2px;
  }
}
.bottom-About {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: solid 2px;
}
@media screen and (max-width: 850px) {
  .bottom-About {
    flex-direction: column-reverse;
  }
}
.bottom-About-left {
  display: flex;
  width: 70%;
  align-items: center;
  justify-content: flex-start;
  border-right: solid 2px;
  padding: 0px 30px 0px 30px;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .bottom-About-left {
    border-top: 0;
    width: 100%;
    padding: 0;
    border-right: 0;
  }
}
.bottom-About-left-number {
  padding: 20px 30px 20px 0;
  border-right: solid 2px;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 850px) {
  .bottom-About-left-number {
    padding: 31px 0px 31px 0;
    font-size: 16px;
    width: 40%;
  }
}
.bottom-About-left-address {
  margin-left: 25px;
  font-size: 20px;
}
@media screen and (max-width: 850px) {
  .bottom-About-left-address {
    font-size: 16px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 850px) {
  .bottom-About-right {
    border-top: solid 2px;
    border-bottom: solid 2px;
  }
}
.bottom-Contact {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: solid 2px;
}
@media screen and (max-width: 850px) {
  .bottom-Contact {
    flex-direction: column-reverse;
  }
}
.bottom-Contact-left {
  display: flex;
  width: 70%;
  align-items: center;
  justify-content: space-between;
  border-right: solid 2px;
  padding: 20px 30px 20px 30px;
}
@media screen and (max-width: 850px) {
  .bottom-Contact-left {
    border-top: 0;
    border-right: 0;
    width: 100%;
    padding: 30px 0px 30px 0px;
    justify-content: space-around;
  }
}
@media screen and (max-width: 850px) {
  .bottom-Contact-left p {
    padding: 0;
  }
}

.bottom-box-right {
  text-align: center;
}

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