<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* common */
header {
  background-color: rgb(0 0 0 /0.5);
}

main {
  padding: 66px 16px 0;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.inner {
  max-width: 64rem;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
}

h2 {
  font-size: 1.25rem;
  border-left: 0.25rem solid #e4af24;
  padding-left: 0.5rem;
  line-height: 1.6;
}

h3 {
  border-left: 0.25rem solid #e4af24;
  padding-left: 0.5rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.tel a {
  color: #e45424;
  font-size: 1.5rem;
  font-weight: 700;
}

/* detail */
.detail {
  border-top: 0.0625rem dotted #808080;
}

.detail-top,
.detail-bottom {
  display: grid;
  border-bottom: 0.0625rem dotted #808080;
}

.detail-top &gt; div,
.detail-bottom &gt; div {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-top &gt; div:nth-child(2) {
  border-top: 0.0625rem dotted #808080;
  border-bottom: 0.0625rem dotted #808080;
}
.detail-bottom &gt; div:nth-child(2) {
  border-top: 0.0625rem dotted #808080;
  border-bottom: 0.0625rem dotted #808080;
}

.detail-top .rent {
  font-size: 1.5rem;
  color: #e45424;
  font-weight: 700;
}

.cost span {
  color: #fff;
  background-color: #808080;
  line-height: 1;
  aspect-ratio: 1;
  padding: 0.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: 100%;
}

.cost &gt; p :nth-child(3),
.cost &gt; p :nth-child(4) {
  color: #808080;
}

/* link button */
.link-button {
  position: relative;
}

.link-button a {
  background-color: #ec7e00;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  width: calc(100% - 0.25rem);
  height: calc(100% - 0.25rem);
  z-index: 20;
  padding: 1rem;
  border-radius: 5px;
  line-height: 1.2;
  text-align: center;
}

.link-button a:hover {
  transform: translate(0.25rem, 0.25rem);
}

.link-button span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(100% - 0.25rem);
  height: calc(100% - 0.25rem);
  content: "";
  background-color: #a13b05;
  opacity: 0.75;
  z-index: 10;
  border-radius: 5px;
}

.detail &gt; div:last-child {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
}

/* photo */
.photo .point {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.photo .point figure {
  width: 4rem;
  background-color: #808080;
  padding: 0.5rem;
}

.photo .point &gt; div &gt; p:first-child {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e45424;
}

.photo .carousel-area {
  background-color: #e9e9e9;
  padding: 1rem;
}

.photo .property-carousel {
  background-color: #fff;
  padding: 1.5rem;
  max-width: 40rem;
  position: relative;
}

.photo .property-carousel .property-swiper-button-prev,
.photo .property-carousel .property-swiper-button-next {
  position: absolute;
  width: 1.5rem;
  height: 3rem;
  background-color: #5ba708;
  top: 0;
  bottom: 0;
  margin: auto 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
}

.photo .property-carousel .property-swiper-button-prev {
  border-radius: 1.5rem 0 0 1.5rem;
  left: 0.05rem;
}

.photo .property-carousel .property-swiper-button-next {
  border-radius: 0 1.5rem 1.5rem 0;
  right: 0.05rem;
}
.photo .property-carousel .swiper-wrapper {
  position: relative;
  z-index: 10;
}

.photo .property-carousel .swiper-slide figure {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: 1px solid #c4c4c4;
  padding: 0.5rem;
}

.photo .property-carousel .swiper-slide figure img {
  aspect-ratio: 4/3;
}

.photo .property-carousel .swiper-slide figure figcaption {
  font-size: 0.75rem;
}

.photo .property-carousel .property-swiper-pagination {
  width: fit-content;
  margin: 0 auto;
}

.photo .property-carousel-thumbnail {
  padding-top: 1rem;
}

.photo .property-carousel-thumbnail .swiper-wrapper {
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.photo .property-carousel-thumbnail .swiper-wrapper .swiper-slide {
  aspect-ratio: 4/3;
  min-width: 6.1rem;
  background-color: #fff;
}

.photo .property-carousel-thumbnail .swiper-wrapper .swiper-slide figure {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: opacity 200ms, border 200ms;
  border: #fff solid 0.125rem;
}

.photo .property-carousel-thumbnail .swiper-wrapper .swiper-slide-thumb-active figure {
  opacity: 1;
  border: #5ba708 solid 0.125rem;
}

.photo .property-carousel-thumbnail .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.link-area {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}

.link-area &gt; div:first-child {
  display: flex;
  width: 100%;
}

.link-area .link-button {
  width: 100%;
}

.features,
.outline,
.location,
.map,
.shop {
  max-width: 48rem;
  width: 100%;
  margin: 0 auto;
}

.outline dl,
.location dl {
  border: 2px #7aa2be solid;
}

.outline dt,
.outline dd,
.location dt,
.location dd {
  padding: 0.75rem;
  line-height: 1.4;
  margin-top: -2px;
}

.outline dt,
.location dt {
  border-top: #7aa2be solid 2px;
  border-bottom: #c4c4c4 solid 1px;
  background-color: #e4ebef;
}

.shop &gt; div {
  border: #ccc 1px solid;
  padding: 1rem;
}

.map {
  padding-top: 1rem;
}

@media screen and (min-width: 768px) {
  main {
    padding: 88px 16px 0;
  }

  h2 {
    font-size: 1.5rem;
  }

  .link-button a {
    font-size: 1.75rem;
  }

  .detail-top,
  .detail-bottom {
    grid-template-columns: repeat(3, 1fr);
    padding: 1rem 0;
  }

  .detail-top &gt; div:nth-child(2) {
    border-top: unset;
    border-bottom: unset;
    border-right: 0.0625rem dotted #808080;
    border-left: 0.0625rem dotted #808080;
  }
  .detail-bottom &gt; div:nth-child(2) {
    border-top: unset;
    border-bottom: unset;
    border-left: 0.0625rem dotted #808080;
  }

  .detail &gt; div:last-child {
    flex-direction: row;
    justify-content: space-between;
  }
  .photo .point {
    align-items: center;
  }

  .photo .carousel-area {
    padding: 2rem;
  }

  .photo .property-carousel {
    padding: 3rem;
  }

  .photo .property-carousel .property-swiper-button-prev,
  .photo .property-carousel .property-swiper-button-next {
    width: 2rem;
    height: 4rem;
    cursor: pointer;
  }

  .photo .property-carousel .property-swiper-button-prev {
    border-radius: 2rem 0 0 2rem;
    left: 1rem;
  }

  .photo .property-carousel .property-swiper-button-next {
    border-radius: 0 2rem 2rem 0;
    right: 1rem;
  }

  .photo .property-carousel-thumbnail .swiper-wrapper {
    justify-content: start;
    gap: 1rem;
  }

  .photo .property-carousel-thumbnail .swiper-wrapper .swiper-slide {
    aspect-ratio: 4/3;
    min-width: 7.5rem;
    background-color: #fff;
  }

  .outline dl,
  .location dl {
    display: grid;
    grid-template-columns: 1fr 3fr;
  }

  .outline dt,
  .location dt {
    border-bottom: none;
    border-right: #c4c4c4 solid 1px;
  }

  .outline dd,
  .location dd {
    border-top: #7aa2be solid 2px;
  }
}
</pre></body></html>