:root {
  --viewport-width: 100vw;
  --b: calc(var(--viewport-width) / 160);
}

@media screen and (max-width: 550px) {
  :root {
    --viewport-width: max(100vw, 550px);
    --b: calc(var(--viewport-width) / 55);
  }
}
.tmp-title1 {
  border-left: 6px solid #007440;
  background: linear-gradient(to right, rgba(0, 116, 64, 0.2), rgba(224, 237, 232, 0.2));
  padding: 25px 0;
  margin-bottom: 6rem;
}
@media screen and (max-width: 550px) {
  .tmp-title1 {
    padding: 20px 0;
    margin-bottom: 50px;
  }
}
.tmp-title1 h2 {
  color: #007440;
  font-size: max(2.2rem, 14px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-left: max(5rem, 25px);
}
@media screen and (max-width: 550px) {
  .tmp-title1 h2 {
    font-size: 14px;
    margin-left: 25px;
  }
}
.tmp-title1 h2 span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.tmp-title2 {
  position: relative;
  gap: 2rem;
  display: flex;
  align-items: end;
  color: #007440;
  font-size: max(2.9rem, 29px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-bottom: 25px;
  margin: 0 10% 25px 10%;
}
@media screen and (max-width: 550px) {
  .tmp-title2 {
    font-size: 29px;
    margin: 0 5% 25px 5%;
  }
}
.tmp-title2::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  width: max(1.9rem, 19px);
  background: #007440;
}
@media screen and (max-width: 550px) {
  .tmp-title2::before {
    width: 19px;
  }
}
.tmp-title2 span {
  color: inherit;
  font-size: max(1.6rem, 16px);
  font-weight: inherit;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .tmp-title2 span {
    font-size: 16px;
  }
}

.attention {
  font-size: max(1.2rem, 10px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 550px) {
  .attention {
    font-size: 10px;
  }
}

.js-split .character-wrapper {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.js-split .character-wrapper .animate-character {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(10px);
}
.js-split.active .animate-character {
  animation: 1s appearance cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes appearance {
  0% {
    opacity: 0;
    transform: scale(1.2);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.js-FadeInTurnUP > * {
  opacity: 0;
  transform: translateY(10%);
}

.property {
  position: relative;
  padding-top: 12.5rem;
  padding-bottom: 12.5rem;
  border-top: 4px solid #007440;
  background: linear-gradient(to bottom, #dbf2e9 0rem, #fdfffe 30rem);
}
@media screen and (max-width: 550px) {
  .property {
    padding: 70px 0;
    background: linear-gradient(to bottom, #dbf2e9 0rem, #fdfffe 200px);
  }
}
.property .deco {
  top: 0;
  right: 0;
  width: 39rem;
}
@media screen and (max-width: 550px) {
  .property .deco {
    width: 130px;
  }
}
.property > b {
  position: relative;
  gap: 2rem;
  display: flex;
  align-items: end;
  color: #007440;
  font-size: max(2.9rem, 29px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-bottom: 25px;
  margin: 0 10% 25px 10%;
}
@media screen and (max-width: 550px) {
  .property > b {
    font-size: 29px;
    margin: 0 5% 25px 5%;
  }
}
.property > b::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  width: max(1.9rem, 19px);
  background: #007440;
}
@media screen and (max-width: 550px) {
  .property > b::before {
    width: 19px;
  }
}
.property > b span {
  color: inherit;
  font-size: max(1.6rem, 16px);
  font-weight: inherit;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 550px) {
  .property > b span {
    font-size: 16px;
  }
}
.property .housing {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
@media screen and (max-width: 550px) {
  .property .housing {
    min-width: 100%;
  }
}
.property .housing .imageBox {
  margin-bottom: 15px;
}
.property .housing .imageBox .tag {
  gap: 5px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.property .housing .imageBox .tag__list {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 5px;
  background: #007440;
}
.property .housing .imageBox .tag__list.accent {
  background: #d86c00;
}
.property .housing .imageBox a {
  display: block;
  overflow: hidden;
}
.property .housing .imageBox a img {
  width: 100%;
  transition: 0.5s cubic-bezier(0.03, 0.29, 0.24, 0.72);
}
.property .housing .imageBox a:hover img {
  transform: scale(1.1);
}
.property .housing b {
  color: #007440;
  font-size: max(1.6rem, 16px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.property .housing .btnBox {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.property .housing .btnBox .arrowBtn {
  flex: auto;
  display: block;
  font-size: max(1.8rem, 14px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  padding: 15px 0;
  text-align: center;
}
@media screen and (max-width: 550px) {
  .property .housing .btnBox .arrowBtn {
    flex: 1;
    font-size: 14px;
  }
}
.property .housing .btnBox .arrowBtn:nth-of-type(1) {
  width: 100%;
}
@media screen and (max-width: 550px) {
  .property .housing .btnBox .arrowBtn:nth-of-type(1) {
    min-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .property .housing .btnBox .arrowBtn::after {
    right: 10px;
  }
}

.styles__wrapper--title {
  background: #007440;
  padding: max(3rem, 20px) 10%;
}
@media screen and (max-width: 550px) {
  .styles__wrapper--title {
    padding: 20px 5%;
  }
}
.styles__wrapper--title h3 {
  color: #fff;
  font-size: max(2.9rem, 21px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 550px) {
  .styles__wrapper--title h3 {
    font-size: 21px;
  }
}
.styles__wrapper--title h3 span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.styles__wrapper--detail {
  background: linear-gradient(to bottom, #dbf2e9 0%, #fdfffe 23rem);
}
@media screen and (max-width: 550px) {
  .styles__wrapper--detail {
    background: linear-gradient(to bottom, #dbf2e9 0%, #fdfffe 200px);
  }
}
.styles__wrapper--detail .style__list {
  gap: 45px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 12rem 0 18rem;
}
@media screen and (max-width: 1000px) {
  .styles__wrapper--detail .style__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .styles__wrapper--detail .style__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 550px) {
  .styles__wrapper--detail .style__list {
    gap: 50px 10px;
    padding: 70px 0 80px;
  }
}
.styles__wrapper--detail .style__list.list2 {
  padding-bottom: 10rem;
}
@media screen and (max-width: 550px) {
  .styles__wrapper--detail .style__list.list2 {
    padding-bottom: 50px;
  }
}
.styles__wrapper--detail .style__list--item {
  flex: 1;
}
@media screen and (max-width: 550px) {
  .styles__wrapper--detail .style__list--item {
    width: 100%;
  }
}
.styles__wrapper--detail .style__list--item a {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.styles__wrapper--detail .style__list--item a .imageBox {
  overflow: hidden;
  margin-bottom: 2rem;
}
@media screen and (max-width: 550px) {
  .styles__wrapper--detail .style__list--item a .imageBox {
    margin-bottom: 10px;
  }
}
.styles__wrapper--detail .style__list--item a .imageBox img {
  transition: 0.5s cubic-bezier(0.03, 0.29, 0.24, 0.72);
}
.styles__wrapper--detail .style__list--item a .textBox b {
  display: block;
  color: #007440;
  font-size: max(1.6rem, 14px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.15em;
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .styles__wrapper--detail .style__list--item a .textBox b {
    font-size: 14px;
  }
}
.styles__wrapper--detail .style__list--item a .textBox b span {
  display: inline-block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
@media screen and (max-width: 550px) {
  .styles__wrapper--detail .style__list--item a .textBox b span {
    display: inline;
  }
}
.styles__wrapper--detail .style__list--item a .btn {
  margin-top: 20px;
}
@media screen and (max-width: 550px) {
  .styles__wrapper--detail .style__list--item a .btn {
    padding: 15px 10px;
    margin-top: 10px;
  }
  .styles__wrapper--detail .style__list--item a .btn .line {
    width: 50px;
  }
}
.styles__wrapper--detail .style__list--item:hover .imageBox img {
  transform: scale(1.1);
}
.styles__wrapper--detail .style__list--item:hover .btn {
  color: #fff;
  background: #007440;
}
.styles__wrapper--detail .style__list--item:hover .btn .line {
  background: rgba(255, 255, 255, 0.5);
}
.styles__wrapper--detail .style__list--item:hover .btn .line::before {
  left: 80%;
  background: #fff;
}/*# sourceMappingURL=order.css.map */