@charset "UTF-8";
.fw-600 {
  font-weight: 600;
}

.c-blue {
  color: #006cb4;
}

.c-red {
  color: #c00;
}

.c-yellow {
  color: #ffff67;
}

.d-none {
  display: none;
}

body {
  font-family: ヒラギノ角ゴシック, Hiragino Sans, YuGothic, Yu Gothic, sans-serif;
  background-color: #e5e5e5;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
  font-weight: 300;
  letter-spacing: 0.0625rem;
  padding-top: 3.625rem;
}

.container {
  max-width: 23.4375rem;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.5s;
}

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

ol, ul {
  padding: 0;
}

blockquote, body, dd, dl, figure, h1, h2, h3, h4, ol, p, ul {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
  width: 100%;
}

article > * + * {
  margin-top: 1em;
}

button, input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  resize: vertical;
}

input[type=checkbox], input[type=radio] {
  display: none;
}

button {
  cursor: pointer;
}

input[type=button], input[type=submit] {
  cursor: pointer;
}

label {
  cursor: pointer;
}

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

.fadeinAnime {
  opacity: 0;
}

.fadeInDown {
  animation: a 1.5s forwards;
}

@keyframes a {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translate(0);
  }
}
.updown {
  transform: translateY(-1.875rem);
}

.downup {
  transform: translateY(1.875rem);
}

.slide-right {
  transform: translateX(1.875rem);
}

.slide-left {
  transform: translateX(-1.875rem);
}

.footer {
  background-color: #131431;
  color: #fff;
  padding: 2.125rem 0 5rem;
}

.footer__logo a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.footer__logo img {
  width: 10.1875rem;
  height: 1.1875rem;
}

.footer__copyright {
  text-align: center;
  font-size: 0.625rem;
  letter-spacing: -0.0125rem;
  margin-top: 1.5rem;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #131431;
  color: #fff;
  z-index: 4;
  max-width: 23.4375rem;
}

.header__inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.125rem 0.5rem 0.75rem;
  border-bottom: 1px solid gray;
}

.header__logo img {
  width: 4rem;
  height: 2.5625rem;
}

.header__link a {
  text-align: center;
  font-size: 0.625rem;
  line-height: 1.2;
  color: #131431;
  background-color: #fff;
  padding: 0.25rem 0.625rem;
  border-radius: 0.00625rem;
  display: block;
  letter-spacing: 0.03125rem;
}

.js-HeaderDownmove {
  opacity: 1;
  transition: all 0.5s;
}
.js-HeaderDownmove.hide {
  opacity: 0;
}

.inner {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

#lightbox {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column-reverse;
}
#lightbox .lb-outerContainer {
  align-self: flex-start;
  margin-bottom: 10vh !important;
  background: transparent;
  border-radius: 0 !important;
}
#lightbox .lb-dataContainer {
  margin-bottom: 0.5rem;
}
#lightbox .lb-container {
  padding: 0;
}
#lightbox .lb-image {
  margin: auto;
  border-radius: 0 !important;
}

.lb-data .lb-details {
  display: none;
}

#lightbox .lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
#lightbox .lb-cancel {
  border: 0.25rem solid #fff;
  border-top: 0.25rem solid transparent;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  margin: auto;
  animation: b 2s linear infinite;
  background: none;
}

@keyframes b {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  background-color: #2b2c46;
  height: 3.0625rem;
  transition: 0.3s;
  z-index: 1;
  font-size: 0.9125rem;
  cursor: pointer;
}

.pagetop__img img {
  width: 0.8125rem;
  height: 0.90625rem;
}

.sec__title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3333333333;
  margin-bottom: 1.5rem;
}
.sec__title:after {
  content: "";
  display: block;
  margin: 1.3125rem auto 0;
  width: 3.75rem;
  height: 0.125rem;
  background-color: #006cb4;
}

.sec__text {
  font-size: 0.8125rem;
  line-height: 1.8461538462;
}

.sec__caption {
  font-size: 0.625rem;
  line-height: 1.6;
  text-align: left;
  letter-spacing: 0;
}
.sec__caption a {
  text-decoration: underline;
  color: #0087db;
}

.gallery {
  margin: 0 0 0.5rem;
  position: relative;
}
.gallery:before {
  content: "撮影日2024年9月";
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  font-size: 0.625rem;
  padding: 0 0.375rem;
  background-color: hsla(0, 0%, 100%, 0.8);
  letter-spacing: 0;
}
.gallery li {
  list-style: none;
}

.choice-btn {
  padding: 0 0.5625rem;
}
.choice-btn li {
  cursor: pointer;
  outline: none;
  background: #fff;
  list-style: none;
  margin: 0.15rem 0.1875rem;
}
@media (max-width: 520px) {
  .choice-btn li {
    width: calc(33.3333333333% - 0.4rem) !important;
  }
}
.choice-btn .slick-track {
  display: flex !important;
  justify-content: space-between;
  transform: unset !important;
  flex-wrap: wrap;
}

.slider .gallery .slick-next, .slider .gallery .slick-prev {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  outline: none;
}
.slider .gallery .slick-next:before {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  opacity: 1;
}
.slider .gallery .slick-prev:before {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  opacity: 1;
  content: "";
  background: url(../images/arrow_l.png) no-repeat;
  background-size: contain;
}
.slider .gallery .slick-next:before {
  content: "";
  background: url(../images/arrow_r.png) no-repeat;
  background-size: contain;
}
.slider .choice-btn .slick-next, .slider .choice-btn .slick-prev {
  display: none !important;
}

.slick-prev {
  left: 3.3%;
}

.slick-next {
  right: 3.3%;
}

.kv {
  text-align: center;
  padding: 0 0 3rem;
}

.kv__info h2 {
  font-size: 1.2rem;
  color: #006cb4;
  font-weight: 600;
  margin: 1.25rem 0 1.0625rem;
}

.kv__detail p {
  display: flex;
  gap: 1.1875rem;
  font-weight: 600;
  width: 16.625rem;
  margin: 0 auto;
}
.kv__detail p:first-of-type {
  margin-bottom: 0.875rem;
}
.kv__detail p span {
  background-color: #006cb4;
  color: #fff;
  display: block;
  width: 4.5625rem;
}

.kv__text {
  margin: 1.4375rem auto 1.1875rem;
}

.property {
  padding-bottom: 3.3125rem;
}

.property__item {
  margin-bottom: 2.375rem;
}
.property__item.property03 {
  margin-bottom: 0.625rem;
}
.property__item h2 {
  background-color: #383838;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  width: 19.1875rem;
  padding: 0.3125rem;
  border-radius: 1rem;
  margin: 0 auto -0.8125rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.property__item h2:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.25rem solid transparent;
  border-left: 0.25rem solid transparent;
  border-top: 0.4375rem solid #383838;
  border-bottom: 0;
  display: block;
  position: absolute;
  transform: translate(-50%);
  left: 50%;
  bottom: -0.4375rem;
}

.property__text {
  margin: 1.125rem auto 1.5rem;
}

.property__btn {
  background-color: #fff;
  border: 0.0625rem solid #383838;
  border-radius: 1.75rem;
  width: 11.25rem;
  height: 2.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.0625rem;
  position: relative;
}
.property__btn:first-of-type {
  margin-bottom: 1rem;
}
.property__btn:after {
  content: "";
  background: url(../images/arrow_bk.png) no-repeat;
  background-size: contain;
  width: 1.125rem;
  height: 0.625rem;
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 0.25rem;
}

.recommend {
  padding-bottom: 2.5rem;
}

.recommend__list {
  display: flex;
  gap: 0.35rem;
}
.recommend__list li {
  position: relative;
  width: 6.5625rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.recommend__list li:before {
  content: "";
  background: url(../images/bg_house.png) no-repeat;
  background-size: contain;
  width: 6.5625rem;
  height: 6rem;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}
.recommend__list li .p-center {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.3333333333;
  font-weight: 600;
  padding-top: 1.625rem;
  letter-spacing: 0;
}

.present {
  padding-bottom: 2.875rem;
}

.present__inner {
  background-color: #fff;
  border: 0.125rem solid #dbdbdb;
  padding: 1.6875rem 1.0625rem 0.9375rem;
  margin-bottom: 0.8125rem;
}

.present .sec__title {
  margin-bottom: 0.5625rem;
}
.present .sec__title:after {
  display: none;
}

.present__text {
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.6666666667;
  text-align: center;
  letter-spacing: 0.03125rem;
}

.present__textBG {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  display: block;
  padding: 1.8125rem 0 1.3125rem;
  position: relative;
}
.present__textBG:before {
  content: "";
  background: url(../images/bg_present.png) no-repeat;
  background-size: contain;
  width: 16.3125rem;
  height: 5.4375rem;
  display: block;
  position: absolute;
  transform: translate(-50%);
  left: 50%;
  bottom: 0;
}
.present__textBG span {
  position: relative;
  z-index: 2;
}

.p-add {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-top: 0.625rem;
}
.p-add__more {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 0 5px;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  color: #FFF;
  font-size: 0.6rem;
  font-weight: bold;
  background: #154bbe;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(25deg);
}
.p-add__more:before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  top: 50%;
  right: 0;
  transform: translate(90%, -50%);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
  background: #154bbe;
  z-index: 0;
}
.p-add__more i {
  display: inline-block;
  transform: rotate(-25deg);
}

.p-add__img {
  width: 5.5625rem;
  height: auto;
  padding-top: 0.5rem;
}

.p-add__detail {
  flex: 1;
}
.p-add__detail p {
  font-size: 0.75rem;
  line-height: 1.6666666667;
  letter-spacing: 0;
}
.p-add__detail p img {
  width: 2.9375rem;
  margin-left: -0.25rem;
}
.p-add__detail p .c-red {
  font-weight: 600;
}

.reserve {
  background-color: #ffd;
  padding: 2.375rem 0 2.8125rem;
}
.reserve .sec__title {
  margin-bottom: 1.1875rem;
}

.reserve__text {
  text-align: center;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.8461538462;
}

.reserve__btn, .reserve__btn--fix {
  background-color: #1a1a1a;
  border: 0.1875rem solid #dbd093;
  color: #fff;
  width: 18.75rem;
  height: 4.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.625rem auto 1.1875rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.09375rem;
  position: relative;
}
.reserve__btn:after, .reserve__btn--fix:after {
  content: "";
  background: url(../images/arrow_wt.png) no-repeat;
  background-size: contain;
  width: 0.375rem;
  height: 0.625rem;
  display: block;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 1.25rem;
}
.reserve__btn--fix {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 23.4375rem;
}

.reserve .sec__text {
  line-height: 1.6923076923;
}
.reserve .sec__caption {
  margin-top: 0.5rem;
}

.access {
  padding-top: 2.3125rem;
  padding-bottom: 3.0625rem;
}

.access__map {
  aspect-ratio: 327/251;
}
.access__map iframe {
  width: 100%;
  height: 100%;
}

.access p {
  font-size: 0.75rem;
  line-height: 1.8333333333;
  text-align: center;
  margin-top: 0.75rem;
}
.access p span {
  font-weight: 700;
}

@media (min-width: 751px) {
  html {
    font-size: 32px;
  }
}
@media screen and (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 750px) {
  html {
    font-size: 4.2666666667vw;
  }
}/*# sourceMappingURL=styles.css.map */