@charset "UTF-8";

/* merit
---------------------------------------------- */
.merit {
  padding-top: 20px;
}
.meritList {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
}
.meritList > li {
  font-size: clamp(.8rem, 0.53rem + 0.73vw, 2.4rem); /* 375 - 2560 */
  font-weight: 500;
  line-height: 1.6;
  padding: .5em calc(50 / 1280 * 100%);
  text-align: center;
  position: relative;
  z-index: 0;
}
.meritList > li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--accent-color);
  z-index: 0;
}
.meritList > li:last-child::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--accent-color);
  z-index: 0;
}
.meritList > li sup {
  top: -1em;
  font-size: 60%;
}

@media screen and (max-width: 768px) {
  .merit {
    padding-top: 5px;
  }
  .meritList > li {
    padding-block: 1em;
  }
  .meritList > li:first-child::before,
  .meritList > li:last-child::after {
    content: none;
  }
}

/* topics
---------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .tpl-link__title:not(a.tpl-link__title):hover {
    text-decoration: none;
  }
}

/* actionArea
---------------------------------------------- */
@media screen and (min-width: 769px) {
  .actionArea .tpl-col .tpl-headline__subcopy {
    text-align: center;
  }
}

/* plan
---------------------------------------------- */
.tpl-room-type__example-note .tpl-room-type__example[data-example=storage] {
  background-color: #cab7ad;
}