@charset "UTF-8";
/*
  ###########
  ## トグルアニメーション ##
  ###########
  折りたたみ可能なコンテンツのトグルボタンとアニメーション
*/
.real-estate-single .real-estate-floor-map .floor-map__toggle {
  width: 30px;
  height: 30px;
  background: #fff;
  position: relative;
  cursor: pointer;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.4s ease;
}
.real-estate-single .real-estate-floor-map .floor-map__toggle::before, .real-estate-single .real-estate-floor-map .floor-map__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #333;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease, opacity 0.2s ease;
}
.real-estate-single .real-estate-floor-map .floor-map__toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.real-estate-single .real-estate-floor-map .floor-map__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.real-estate-single .real-estate-floor-map .floor-map__rich li.is-open .floor-map__li-header .floor-map__toggle, .real-estate-single .real-estate-floor-map .floor-map__li-header.is-open:hover .floor-map__toggle, .real-estate-single .real-estate-floor-map .floor-map__group.is-open > .floor-map__toggle {
  transform: rotate(-24deg);
}
.real-estate-single .real-estate-floor-map .floor-map__rich li.is-open .floor-map__li-header .floor-map__toggle::before, .real-estate-single .real-estate-floor-map .floor-map__li-header.is-open:hover .floor-map__toggle::before, .real-estate-single .real-estate-floor-map .floor-map__group.is-open > .floor-map__toggle::before {
  transform: translate(-50%, -50%) rotate(24deg);
}
.real-estate-single .real-estate-floor-map .floor-map__rich li.is-open .floor-map__li-header .floor-map__toggle::after, .real-estate-single .real-estate-floor-map .floor-map__li-header.is-open:hover .floor-map__toggle::after, .real-estate-single .real-estate-floor-map .floor-map__group.is-open > .floor-map__toggle::after {
  opacity: 0;
}
.real-estate-single .real-estate-floor-map .floor-map__rich li.is-open .floor-map__li-header .floor-map__toggle:hover, .real-estate-single .real-estate-floor-map .floor-map__li-header.is-open:hover .floor-map__toggle:hover, .real-estate-single .real-estate-floor-map .floor-map__group.is-open > .floor-map__toggle:hover {
  transform: rotate(-24deg);
}
.real-estate-single .real-estate-floor-map .floor-map__rich li.is-open .floor-map__li-header .floor-map__toggle:hover::before, .real-estate-single .real-estate-floor-map .floor-map__li-header.is-open:hover .floor-map__toggle:hover::before, .real-estate-single .real-estate-floor-map .floor-map__group.is-open > .floor-map__toggle:hover::before {
  transform: translate(-50%, -50%) rotate(24deg);
}

.real-estate-single .real-estate-floor-map .floor-map__li-header:hover .floor-map__toggle {
  transform: rotate(-24deg);
}
.real-estate-single .real-estate-floor-map .floor-map__li-header:hover .floor-map__toggle::before {
  transform: translate(-50%, -50%) rotate(114deg);
}
.real-estate-single .real-estate-floor-map .floor-map__li-header:hover .floor-map__toggle::after {
  transform: translate(-50%, -50%) rotate(24deg);
}

.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li > ul {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(20px);
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), margin 0.8s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li.is-open > ul {
  max-height: 3000px;
  padding-bottom: 40px;
  opacity: 1;
  transform: translateY(0);
}

.real-estate-single .real-estate-floor-map .floor-map__rich li > .floor-map__toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.real-estate-single .real-estate-floor-map .floor-map__rich li.is-open > .floor-map__toggle {
  transform: translateY(-50%) rotate(-24deg);
}
.real-estate-single .real-estate-floor-map .floor-map__rich li.is-open > .floor-map__toggle:hover {
  transform: translateY(-50%) rotate(-24deg);
}

.real-estate-single .real-estate-floor-map {
  padding: 120px 0 80px;
  background: #f4f4f4;
  /* WYSIWYG li 固有: 絶対配置で上下位置を固定 */
}
.real-estate-single .real-estate-floor-map .real-estate-floor-map__container {
  width: 100%;
  max-width: 1238px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 478px minmax(0, 1fr);
  grid-column-gap: 40px;
}
.real-estate-single .real-estate-floor-map .floor-map__heading {
  grid-column: 1/2;
  padding-top: 0;
  position: sticky;
  top: 80px;
  align-self: start;
  z-index: 1;
  margin-bottom: 150px;
}
.real-estate-single .real-estate-floor-map .floor-map__heading .floor-map__title-left {
  font-size: 40px;
  font-weight: 300;
  margin: 0 0 24px;
  line-height: 120%;
}
.real-estate-single .real-estate-floor-map .floor-map__heading .floor-map__subtitle-left {
  color: #A6A9AB;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0;
  line-height: 120%;
}
.real-estate-single .real-estate-floor-map .floor-map {
  grid-column: 2/3;
  position: relative;
}
.real-estate-single .real-estate-floor-map .floor-map__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.real-estate-single .real-estate-floor-map .floor-map__group {
  padding: 0;
  position: relative;
}
.real-estate-single .real-estate-floor-map .floor-map__group .floor-map__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  letter-spacing: normal;
}
.real-estate-single .real-estate-floor-map .floor-map__group.is-open .floor-map__body {
  max-height: 3000px;
  padding-bottom: 0;
  opacity: 1;
  transform: translateY(0);
}
.real-estate-single .real-estate-floor-map .floor-map__group:not(:last-child) {
  border-bottom: 1px solid #A6A9AB;
}
.real-estate-single .real-estate-floor-map .floor-map__title {
  font-size: 30px;
  font-weight: 500;
  margin: 0;
}
.real-estate-single .real-estate-floor-map .floor-map__rich ul {
  padding: 0;
}
.real-estate-single .real-estate-floor-map .floor-map__body {
  padding-bottom: 48px;
}
.real-estate-single .real-estate-floor-map .floor-map__tenants {
  list-style: none;
  padding: 0 16px;
  margin: 24px 0 0;
  display: grid;
  row-gap: 24px;
}
.real-estate-single .real-estate-floor-map .floor-map__tenants li,
.real-estate-single .real-estate-floor-map .floor-map__tenant-link {
  font-size: 16px;
  line-height: 1;
  color: #333;
}
.real-estate-single .real-estate-floor-map .floor-map__tenant-link {
  text-decoration: none;
}
.real-estate-single .real-estate-floor-map .floor-map__tenant-link.is-link {
  text-decoration: underline;
}
.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li {
  position: relative;
  box-sizing: border-box;
  max-width: 720px;
  width: 100%;
  min-height: 122px;
  padding: 0 16px;
  list-style: none;
  color: #333;
}
.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li:first-child {
  border-top: 1px solid #A6A9AB;
  border-bottom: 1px solid #A6A9AB;
}
.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li:not(:first-child) {
  border-bottom: 1px solid #A6A9AB;
}
.real-estate-single .real-estate-floor-map .floor-map__li-header {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  max-width: 688px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0;
  cursor: pointer;
}
.real-estate-single .real-estate-floor-map .floor-map__li-header + ul {
  margin-top: 24px;
}
.real-estate-single .real-estate-floor-map .floor-map__li-header .floor-map__toggle {
  position: absolute;
  right: 16px;
}
.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li > ul > li {
  list-style: none;
  font-size: 16px;
  line-height: 1;
  color: #333;
  margin: 0 0 24px;
  font-weight: 400;
  letter-spacing: 0;
}
.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li > ul > li:last-child {
  margin-bottom: 0;
}
.real-estate-single .real-estate-floor-map .floor-map__rich > ul > li > ul a {
  color: #333;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 右はみ出し防止（コンテナ幅以下で1カラム化）*/
@media (max-width: 1238px) {
  .real-estate-single .real-estate-floor-map .real-estate-floor-map__container {
    grid-template-columns: minmax(0, 1fr);
    grid-column-gap: 0;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .real-estate-single .real-estate-floor-map .floor-map__title {
    font-size: 20px;
    font-weight: 500;
    line-height: 180%;
  }
  .real-estate-single .real-estate-floor-map .floor-map__heading {
    grid-column: 1/-1;
    position: static;
    top: auto;
    padding-top: 0;
    margin-bottom: 0px;
  }
  .real-estate-single .real-estate-floor-map .floor-map {
    grid-column: 1/-1;
    padding-right: 0;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li {
    max-width: 100%;
  }
  .real-estate-single .real-estate-floor-map .floor-map__li-header {
    padding: 24px 0;
  }
}
@media (max-width: 960px) {
  .real-estate-single .real-estate-floor-map {
    padding: 56px 16px;
  }
  .real-estate-single .real-estate-floor-map .real-estate-floor-map__container {
    padding: 0;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li {
    min-height: 78px;
  }
  .real-estate-single .real-estate-floor-map .floor-map__li-header {
    min-height: 78px;
  }
  .real-estate-single .real-estate-floor-map .floor-map__heading .floor-map__title-left {
    font-size: 28px;
    margin: 0 0 16px;
  }
  .real-estate-single .real-estate-floor-map .floor-map__group {
    padding: 40px 0 0;
  }
  .real-estate-single .real-estate-floor-map .floor-map__group.is-open .floor-map__body {
    padding-bottom: 0;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li.is-open > ul {
    padding-bottom: 24px;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li > ul > li {
    font-size: 15px;
  }
  .real-estate-single .real-estate-floor-map .floor-map__group:not(.is-open) .floor-map__toggle {
    transform: rotate(0deg) !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__group:not(.is-open) .floor-map__toggle::before {
    transform: translate(-50%, -50%) rotate(90deg) !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__group:not(.is-open) .floor-map__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg) !important;
    opacity: 1 !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__group.is-open .floor-map__toggle {
    transform: rotate(-24deg) !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__group.is-open .floor-map__toggle::before {
    transform: translate(-50%, -50%) rotate(24deg) !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__group.is-open .floor-map__toggle::after {
    opacity: 0 !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li:not(.is-open) .floor-map__toggle {
    transform: translateY(0) rotate(0deg) !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li:not(.is-open) .floor-map__toggle::before {
    transform: translate(-50%, -50%) rotate(90deg) !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li:not(.is-open) .floor-map__toggle::after {
    transform: translate(-50%, -50%) rotate(0deg) !important;
    opacity: 1 !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li.is-open .floor-map__toggle {
    transform: translateY(0) rotate(-24deg) !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li.is-open .floor-map__toggle::before {
    transform: translate(-50%, -50%) rotate(24deg) !important;
  }
  .real-estate-single .real-estate-floor-map .floor-map__rich > ul > li.is-open .floor-map__toggle::after {
    opacity: 0 !important;
  }
}