@charset "UTF-8";
/* =========================
SP/Panorama
========================= */
.panorama {
  overflow: hidden;
}
.panorama .panoramix {
  position: relative;
  overflow: hidden;
  cursor: -webkit-grab;
  cursor: grab;
}
.panorama .panoramixImg {
  display: block;
  max-width: none;
  width: auto;
  height: 40vh;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.panorama .controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.panorama .panorama__btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 38px;
  pointer-events: auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.panorama .panorama__btn.--left {
  left: 10px;
}
.panorama .panorama__btn.--right {
  right: 10px;
}
.panorama .panorama__btn:hover {
  opacity: 0.7;
}
.panorama .viewCap {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
  font-size: 10px;
}
.panorama .panorama__cap {
  padding-top: 20px;
}

/* =========================
SP/PlanBtn
========================= */
.plan-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
  color: #4d4d4d;
  font-size: 10px;
}

.plan {
  position: relative;
  background: #fff;
  padding: 25px;
  -webkit-box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 480px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}
.plan:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.plan.--no-hover {
  cursor: default;
}
.plan.--no-hover:hover {
  -webkit-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.plan__type {
  font-size: 18px;
}
.plan__type .plan__type-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 6px;
}
.plan__type span {
  font-size: 30px;
  color: #005144;
  line-height: 1;
}
.plan__type::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#006655), to(rgba(0, 102, 85, 0)));
  background: linear-gradient(to right, #006655 0%, rgba(0, 102, 85, 0) 100%);
}

.plan__detail {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
}
.plan__detail span {
  font-size: 25px;
}

.plan__area-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 5px;
}

.plan__area-label {
  margin-right: 5px;
  margin-bottom: 11px;
}

.plan__spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.plan__trunk,
.plan__balcony {
  line-height: 1.6;
  margin-top: 8px;
}

.plan__area-num {
  line-height: 1;
}
.plan__area-num span {
  font-size: 25px;
}
.plan__area-num small {
  font-size: 18px;
}
.plan__area-num .sub {
  display: block;
  margin-top: 2px;
  font-size: 10px;
}

.plan__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}
.plan__img img {
  display: block;
  width: 100%;
  max-width: 270px;
  margin: 0 auto;
}

.plan__note {
  margin-top: auto;
  text-align: right;
  line-height: 1.5;
  letter-spacing: normal;
}

/* =========================
SP/Modal
========================= */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9999;
}
.modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal .plan {
  -webkit-box-shadow: none;
          box-shadow: none;
  min-height: auto;
  padding: 0;
}

.modal__inner {
  position: relative;
  width: min(900px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  padding: 20px;
  padding-top: 40px;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: #fff;
  border-radius: 50%;
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 24px;
  height: 2px;
  background: #333;
}
.modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================
SP/service
========================= */
.service {
  margin: 60px auto 80px;
}
.service .service__ttl {
  font-size: 18px;
  color: #005144;
  text-align: center;
}
.service .service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding: 0 20px;
}
.service .service__text {
  letter-spacing: 0;
  margin-top: 5px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}

/* =========================
SP/label
========================= */
.casbee {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 80px;
  padding: 0 30px;
}

/* ==================================================
タブレット(min-width: 768px)
================================================== */
@media screen and (min-width: 768px) {
  /* =========================
  タブレット/Panorama
  ========================= */
  /* =========================
  タブレット/Modal
  ========================= */
  .modal .plan__img img {
    max-width: 500px;
  }
}
/* ==================================================
PC(min-width: 1024px)
================================================== */
@media print, screen and (min-width: 1024px) {
  /* =========================
  PC/Panorama
  ========================= */
  .panorama {
    overflow: visible;
  }
  .panorama .panoramix {
    cursor: default;
  }
  .panorama .panoramixImg {
    width: 100%;
    max-width: 100%;
    -webkit-transform: none !important;
            transform: none !important;
    max-width: 100%;
    height: auto;
  }
  .panorama .controls {
    display: none;
  }
  .panorama .panorama__cap {
    padding-top: 40px;
    text-align: center;
  }
  /* =========================
  PC/PlanBtn
  ========================= */
  .plan-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 90px;
    font-size: 12px;
  }
  .plan__area-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 8px;
  }
  .plan__area-wrap .plan__area-label {
    margin-bottom: 0;
    margin-right: 0;
  }
  .plan__area-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    line-height: 1;
  }
  .plan__area-num span {
    font-size: 30px;
  }
  .plan__area-num small {
    font-size: 16px;
  }
  .plan__area-num .sub {
    display: inline;
    margin-top: 0;
    font-size: 11px;
    white-space: nowrap;
  }
  .plan__trunk {
    font-size: 9px;
  }
  .plan__note {
    font-size: 10px;
  }
  /* =========================
  PC/Modal
  ========================= */
  .modal .modal__inner {
    padding: 50px;
  }
  .modal .plan__detail {
    font-size: 18px;
  }
  .modal .plan__detail span {
    font-size: 33px;
  }
  .modal .plan__area-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    line-height: 1;
    font-size: 23px;
  }
  .modal .plan__area-num span {
    font-size: 33px;
  }
  .modal .plan__area-num small {
    font-size: 18px;
  }
  .modal .plan__area-num .sub {
    display: inline;
    margin-top: 0;
    font-size: 11px;
    white-space: nowrap;
  }
  .modal .plan__trunk {
    font-size: 11px;
    margin-top: 10px;
  }
  .modal .plan__balcony {
    font-size: 14px;
    margin-top: 10px;
  }
  .modal .plan__img {
    padding: 100px 0;
  }
  .modal .plan__img img {
    max-width: 600px;
  }
  /* =========================
  PC/service
  ========================= */
  .service {
    margin: 100px auto 120px;
    max-width: 1000px;
  }
  .service .service__ttl {
    font-size: 33px;
  }
  .service .service__list {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 50px;
  }
  .service .service__img {
    width: 60%;
    margin: 0 auto;
  }
  .service .service__text {
    font-size: 14px;
    letter-spacing: 0.1;
    margin-top: 10px;
  }
  /* =========================
  PC/label
  ========================= */
  .label__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 800px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}