<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* ▼▼▼ 特集ページ
======================================================*/
.floor_area_list {
  --flex-c: 3;
  --flex-g: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px var(--flex-g);
  width: 100%;
  max-width: 656px;
  margin: 0 auto;
}
.floor_area_list:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .floor_area_list:not(:first-child) {
    margin-top: 30px;
  }
}
.floor_area_list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33%;
          flex: 0 0 33%;
  max-width: calc((100% - var(--flex-g) * (var(--flex-c) - 1)) / var(--flex-c));
}
.floor_area_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  height: 57px;
  background: #fff;
  border: 2px solid var(--fc-gray);
  border-radius: 5px;
  color: var(--fc-dark);
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .floor_area_list li a {
    height: 65px;
    font-size: 14px;
  }
}
.floor_area_list li a.active {
  background: var(--fc-main);
  border: 2px solid var(--fc-main);
  color: #fff;
}
.floor_area_list li a span {
  text-align: center;
}
.floor_area_list li a svg {
  --svg-stroke: var(--fc-dark);
  margin-right: 0.2em;
}
.floor_map {
  border: 1px solid var(--fc-gray);
  border-radius: 10px;
  background: #F7F7F7;
  position: relative;
  overflow: hidden;
}
.floor_map_area {
  width: 100%;
  max-width: 775px;
  margin: 0 auto 70px;
}
.floor_map_inner {
  position: relative;
}
.floor_map_inner svg {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.floor_map_inner svg a {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .floor_map_inner svg a:hover {
    opacity: 0.5;
  }
}
.floor_map_icon {
  display: inline-block;
  margin-top: 10px;
  padding-right: 1em;
  text-decoration: underline !important;
  position: relative;
}
.floor_map_icon::after {
  content: "";
  width: 9px;
  height: 9px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.floor_map .zoom_btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .floor_map .zoom_btn {
    display: block;
    position: absolute;
    left: 6px;
    bottom: 8px;
    z-index: 1;
  }
  .floor_map .zoom_btn button {
    display: block;
    border: 1px solid #4B3C09;
    width: 44px;
    height: 44px;
    background: #fff;
    position: relative;
  }
  .floor_map .zoom_btn button:not(:last-child) {
    border-bottom: none;
  }
  .floor_map .zoom_btn button#zoom-out::before, .floor_map .zoom_btn button#zoom-in::before, .floor_map .zoom_btn button#zoom-in::after {
    content: "";
    width: 18px;
    height: 2px;
    background: #4B3C09;
    position: absolute;
    top: calc(50% - 1px);
    right: calc(50% - 9px);
  }
  .floor_map .zoom_btn button#zoom-in::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.floor_pdf_list {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .floor_pdf_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}</pre></body></html>