@charset "UTF-8";
.sm-alert {
  margin-bottom: 50px;
  margin-top: 50px;
  padding: 1.5em 1.5em 1.5em 80px;
  border: 1px solid #D2D2D2;
  position: relative;
  border-radius: 5px;
}
.sm-alert .sm-icon-attention {
  position: absolute;
  top: 50%;
  left: 1.5em;
  transform: translateY(-50%);
}

.sm-contents {
  display: none;
}
.sm-contents.is-active {
  display: block;
}

.sm-contents-map {
  position: relative;
}
.sm-contents-map img {
  width: 100%;
  vertical-align: top;
}
.sm-contents-map svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.sm-btn-show-modal {
  cursor: pointer;
}
.sm-fill-none {
  fill: none;
}

.sm-fill-text {
  fill: #fff;
}

.sm-fill-btn {
  fill: #1b854d;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.sm-contents-info {
  padding: 30px;
  margin-bottom: 60px;
  border: 1px solid #d2d2d2;
  display: none;
}
.sm-contents-info.is-active {
  display: block;
}

.sm-contents-icons-wrap {
  padding: 50px;
  margin-bottom: 60px;
  border: 1px solid #d2d2d2;
}
@media screen and (max-width: 768px) {
  .sm-contents-icons-wrap {
    padding: 26px;
  }
}

.sm-contents-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 30px;
  margin-bottom: 30px;
}
.sm-contents-icons:last-child {
  margin-bottom: 0;
}
.sm-contents-icons > li {
  width: calc((100% - 120px) / 5);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  line-height: 1.25em;
}
.sm-contents-icons > li .sm-icon {
  flex-grow: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sm-contents-icons {
    margin-bottom: 26px;
  }
  .sm-contents-icons > li {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 400px) {
  .sm-contents-icons > li {
    width: 100%;
  }
}

.sm-icons-noise,
.sm-icons-lighting {
  display: none;
}
.sm-icons-noise.is-active,
.sm-icons-lighting.is-active {
  display: flex;
}

.sm-icon-attention {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url("../images/icons/attention.svg") no-repeat center center;
  background-size: contain;
}

.sm-desc,
.sm-desc-show {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
}
.sm-desc hr,
.sm-desc-show hr {
  border: none;
  border-top: 1px solid #d2d2d2;
  margin: 40px 0;
}
.sm-desc h3,
.sm-desc-show h3 {
  margin-top: 0;
}
.sm-desc._border-top-none,
.sm-desc-show._border-top-none {
  border-top: none;
  margin-bottom: 60px;
}

.sm-desc ul {
  padding-left: 0.5em;
}
.sm-desc ul > li {
  padding-left: 1em;
  position: relative;
  line-height: 1.8;
  margin-bottom: 0.75em;
}
.sm-desc ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}

.sm-footer-btn-wrap {
  margin-top: 60px;
  margin-bottom: 130px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sm-footer-btn-wrap {
    margin-bottom: 65px;
  }
}

.sm-footer-btn {
  display: inline-block;
  padding: 1em 8em 1em 1em;
  border: 1px solid #000;
  color: #000;
  line-height: 1;
  position: relative;
  margin: 0.5em;
}
.sm-footer-btn::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/icons/chevron-right.svg") no-repeat center center;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.sm-footer-btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: #000;
}
.sm-footer-btn:hover::after {
  background-image: url("../images/icons/chevron-right-white.svg");
}
@media screen and (max-width: 768px) {
  .sm-footer-btn {
    display: flex;
    justify-content: space-between;
    padding: 1em;
  }
  .sm-footer-btn::after {
    position: relative;
    top: initial;
    right: initial;
    transform: translateY(0%);
  }
}

.sm-contentns-icons-noise,
.sm-contentns-icons-light {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  margin-bottom: 70px;
}
.sm-contentns-icons-noise li,
.sm-contentns-icons-light li {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sm-intro {
  margin-bottom: 50px;
}
.sm-intro__title {
  margin-top: 3em;
  margin-bottom: 0.5em;
  font-size: 2.2rem;
  text-align: left;
}
.sm-intro__title:before {
  content: "●";
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 50%;
  vertical-align: top;
  margin-top: 1.2em;
  margin-right: 0.5em;
}
.sm-intro__list {
  padding-left: 0.5em;
}
.sm-intro__list > li {
  padding-left: 1em;
  position: relative;
  line-height: 1.8;
  margin-bottom: 0.75em;
}
.sm-intro__list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}
.sm-intro hr {
  border: none;
  border-top: 1px solid #d2d2d2;
  margin: 40px 0;
}

.sm-attention {
  margin-bottom: 50px;
  padding: 1em 1.5em;
  border: 1px solid #D2D2D2;
  border-radius: 5px;
}
.sm-attention h3:first-child {
  margin-top: 0;
}
.sm-attention ul {
  padding-left: 0.5em;
}
.sm-attention ul > li {
  padding-left: 1em;
  position: relative;
  line-height: 1.8;
  margin-bottom: 0.75em;
}
.sm-attention ul > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}
.sm-attention .sm-icon {
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
}

.sm-h3-circle::before {
  content: "●";
  font-size: 50%;
  margin-right: 0.4em;
  vertical-align: middle;
}

.sm-page-title {
  text-align: left;
}

.sm-icon-close {
  display: inline-block;
  width: 52px;
  height: 52px;
  background: url("../images/icon_close.svg") no-repeat center center;
  background-size: contain;
}

.bl_main .free_html div:not(.markup2022) .sm-icon-close:not(.full-width):not(.disable-max-width):not(.el_icon):not(.sp-full-width):not(.searchFormGs .form):not(.searchFormGs input.button):not(.searchFormGs input.field) {
  height: 52px !important;
}

.sm-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
}
.sm-icon._wc_male {
  background: url("../images/icons/wc_male.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._wc_female {
  background: url("../images/icons/wc_female.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._wc_multi {
  background: url("../images/icons/wc_multi.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._info {
  background: url("../images/icons/info.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._locker {
  background: url("../images/icons/locker.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._elevator {
  background: url("../images/icons/elevator.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._chair {
  background: url("../images/icons/chair.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._audio {
  background: url("../images/icons/audio.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._monitor {
  background: url("../images/icons/monitor.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._eat {
  background: url("../images/icons/eat.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._crow {
  background: url("../images/icons/crow.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._noise {
  background: url("../images/icons/noise.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._movie {
  background: url("../images/icons/movie.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._light {
  background: url("../images/icons/light.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._restaurant {
  background: url("../images/icons/restaurant.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._cafe {
  background: url("../images/icons/cafe.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._sound {
  background: url("../images/icons/sound.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._noisy {
  background: url("../images/icons/noisy.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._quiet {
  background: url("../images/icons/quiet.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._bright {
  background: url("../images/icons/bright.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._natural {
  background: url("../images/icons/natural.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._dark {
  background: url("../images/icons/dark.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._click {
  background: url("../images/icons/click.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._click_black {
  background: url("../images/icons/click_black.svg") no-repeat center center;
  background-size: contain;
}
.sm-icon._click_yellow {
  background: url("../images/icons/click_yellow.svg") no-repeat center center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .sm-icon {
    width: 30px;
    height: 30px;
  }
  .bl_main .free_html div:not(.markup2022) .sm-icon:not(.full-width):not(.disable-max-width):not(.el_icon):not(.sp-full-width):not(.searchFormGs .form):not(.searchFormGs input.button):not(.searchFormGs input.field) {
    height: 30px !important;
  }
}
.sm-link {
  display: inline-block;
  padding: 1em 4em 1em 1em;
  border: 1px solid #000;
  color: #000;
  line-height: 1;
  position: relative;
}
.sm-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/icons/chevron-right.svg") no-repeat center center;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.sm-link:hover {
  text-decoration: none;
  color: #fff;
  background-color: #000;
}
.sm-link:hover::after {
  background-image: url("../images/icons/chevron-right-white.svg");
}

.sm-link-wrap {
  padding: 1em 0;
}

.sm-menu-block {
  padding: 45px;
  background-color: #e6e6e6;
  position: relative;
}
.sm-menu-block::after {
  content: "";
  display: block;
  border-top: 15px solid #e6e6e6;
  border-right: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid transparent;
  position: absolute;
  left: 80px;
  bottom: -29px;
}

.sm-menu-label {
  margin-bottom: 0.5em;
  margin-top: 1.75em;
}
.sm-menu-label:first-child {
  margin-top: 0;
}

.sm-menu .selected {
  display: none;
}
.sm-menu .list {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}
.sm-menu .list li {
  width: calc((100% - 20px) / 3);
  position: relative;
}
.sm-menu .list li button {
  width: 100%;
  box-sizing: border-box;
  padding: 0.75em;
  background-color: #2b2b2b;
  border: 1px solid #2b2b2b;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s;
}
.sm-menu .list li button:hover {
  background-color: #fff;
  color: #000;
}
.sm-menu .list li.is-active::after {
  content: "";
  display: block;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #2b2b2b;
  border-left: 5px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
.sm-menu .list li.is-active button {
  background-color: #fff;
  color: #000;
}
.sm-menu ._list_5 li {
  width: calc((100% - 50px) / 6);
}
@media screen and (max-width: 768px) {
  .sm-menu .selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5em 0.75em;
    background-color: #2b2b2b;
    border: 1px solid #2b2b2b;
    color: #fff;
    font-weight: bold;
    font-size: 80%;
  }
  .sm-menu .selected::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("../images/icons/chevron-down-white.svg") no-repeat center center;
  }
  .sm-menu .selected.is-active::after {
    transform: rotate(180deg);
  }
  .sm-menu .list {
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #000;
    display: none;
  }
  .sm-menu .list.is-open {
    display: block;
  }
  .sm-menu .list li {
    width: 100%;
  }
  .sm-menu .list li.is-active::after {
    display: none;
  }
  .sm-menu .list li button {
    background-color: #fff;
    border-bottom: none;
    color: #000;
    text-align: left;
  }
}

.sm-modal {
  box-sizing: border-box;
  border: none;
  width: calc(100vw - 60px);
  max-width: 1200px;
  padding: 20px;
  margin: auto;
  transition: opacity 0.5s;
  background-color: transparent;
}
.sm-modal::backdrop {
  background: #000;
  opacity: 0.75;
  transition: opacity 0.5s;
}
.sm-modal._close {
  opacity: 0;
}
.sm-modal._close::backdrop {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .sm-modal {
    min-width: 100%;
  }
}

.bl_main .free_html div:not(.markup2022) .sm-modal:not(.full-width):not(.disable-max-width):not(.el_icon):not(.sp-full-width):not(.searchFormGs .form):not(.searchFormGs input.button):not(.searchFormGs input.field) {
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.sm-modal-header {
  text-align: right;
  padding-bottom: 40px;
}

.sm-modal-contents {
  background-color: #fff;
  display: flex;
}

.sm-modal-img {
  width: 38%;
}
.sm-modal-img img {
  vertical-align: top;
  width: 100%;
}
.sm-modal-img img.sp-full-width {
  margin-right: 0;
  margin-left: 0;
}

.sm-modal-text {
  width: 62%;
  box-sizing: border-box;
  padding: 60px;
  line-height: 1.75;
}
.sm-modal-text.is-pc {
  overflow-y: scroll;
}
.sm-modal-text .sm-modal-title {
  margin: 0 0 0.5em;
  font-size: 3rem;
}
.sm-modal-text.sp-full-width {
  margin-right: 0;
  margin-left: 0;
}

.sm-modal-img-sub {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.sm-modal-img-sub img {
  max-width: calc((100% - 30px) / 2);
}

@media screen and (max-width: 768px) {
  .sm-modal-contents {
    flex-direction: column;
  }
  .sm-modal-img {
    width: 100%;
  }
  .sm-modal-text {
    width: 100%;
    padding: 20px;
  }
  .sm-modal-text .sm-modal-title {
    text-align: left;
    font-size: 2rem;
  }
  .bl_main .free_html div:not(.markup2022) .sm-modal-img-sub img:not(.full-width):not(.disable-max-width):not(.el_icon):not(.sp-full-width):not(.searchFormGs .form):not(.searchFormGs input.button):not(.searchFormGs input.field) {
    max-width: calc((100% - 30px) / 2) !important;
  }
}
.sm-modal-btn-close {
  display: block;
  width: 100%;
  background: none;
  padding-bottom: 50px;
  border: none;
  text-align: right;
}
.sm-modal-btn-close .sm-icon-close {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sm-modal-btn-close {
    padding-bottom: 25px;
  }
}

.sm-desc {
  display: none;
}
.sm-desc.is-active {
  display: block;
}

.js-show-modal {
  cursor: pointer;
}

.sm-triger-modal {
  fill: #fff;
  opacity: 0;
}

.sm-btn-show-modal .cls-1 {
  fill: #fff;
}
.sm-btn-show-modal .cls-2 {
  fill: #221e1f;
}
.sm-btn-show-modal .cls-3 {
  fill: #1b854d;
  stroke: #fff;
  stroke-linejoin: round;
  stroke-width: 2px;
}
.sm-btn-show-modal._teien .text .cls-1 {
  fill: #000;
}
.sm-btn-show-modal._teien .cls-3 {
  fill: #FDB81E;
}

.sensary-map-top {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .sensary-map-top {
    padding-bottom: 60px;
  }
}

.sm-top-map-wrap {
  margin-top: 80px;
  padding: 100px 140px;
  border-top: 1px solid #2b2b2b;
}
.sm-top-map-wrap._no-border {
  margin-top: 0;
  border-top: none;
}
@media screen and (max-width: 768px) {
  .sm-top-map-wrap {
    margin-top: 40px;
    padding: 40px 0;
  }
}

.sm-top-map {
  position: relative;
}
.sm-top-map img {
  width: 100%;
  height: auto;
}
.sm-top-map svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.sm-top-list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 50px;
}
.sm-top-list > li {
  width: calc((100% - 50px) / 2);
  border-top: 1px solid #2b2b2b;
}
@media screen and (max-width: 768px) {
  .sm-top-list > li {
    width: calc(100% + 52px);
    margin-right: -26px;
    margin-left: -26px;
    padding-right: 26px;
    padding-left: 26px;
  }
}

@media screen and (max-width: 768px) {
  .bl_main .free_html div:not(.markup2022) .sm-top-list > li:not(.full-width):not(.disable-max-width):not(.el_icon):not(.sp-full-width):not(.searchFormGs .form):not(.searchFormGs input.button):not(.searchFormGs input.field),
  .bl_main .free_html div:not(.markup2022) .sm-top-list__img:not(.full-width):not(.disable-max-width):not(.el_icon):not(.sp-full-width):not(.searchFormGs .form):not(.searchFormGs input.button):not(.searchFormGs input.field) {
    max-width: initial !important;
  }
}

.sm-top-list__title {
  margin: 0.75em 0 0.4em;
}

.sm-top-list__contents {
  display: flex;
  gap: 20px 40px;
}
@media screen and (max-width: 768px) {
  .sm-top-list__contents {
    flex-direction: column;
  }
}

.sm-top-list__img {
  width: calc(45% - 40px);
  padding-top: 10px;
}
.sm-top-list__img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .sm-top-list__img {
    margin-left: -26px;
    margin-right: -26px;
    width: calc(100% + 52px);
  }
}

.sm-top-list__text {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .sm-top-list__text {
    width: 100%;
  }
}

.sm-top-list__link {
  display: block;
  padding: 0.5em 1.75em 0.5em 1em;
  margin-bottom: 1em;
  border: 1px solid #2b2b2b;
  color: #2b2b2b;
  line-height: 1.5;
  position: relative;
}
.sm-top-list__link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url("../images/icons/chevron-right.svg") no-repeat center center;
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
}
.sm-top-list__link:hover {
  background-color: #2b2b2b;
  color: #fff;
  text-decoration: none;
}
.sm-top-list__link:hover::after {
  background-image: url("../images/icons/chevron-right-white.svg");
}

.sm-modal .sm-top-list__link {
  display: inline-block;
  padding-right: 5em;
  margin-top: 1em;
}

.top-map-rect {
  fill: none;
}

.top-map-baloon {
  mix-blend-mode: multiply;
  opacity: 0.65;
}

.top-map-link-text {
  fill: #fff;
}
