@charset "utf-8";

/* ご来場の皆さまへのお願い */
.visitor-notes {
  background: #fff;
}

.visitor-notes__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visitor-notes__item {
  padding: 24px;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.visitor-notes__title {
  position: relative;
  margin: 0 0 12px;
  padding-left: 18px;
  color: #8b0000;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.5;
}

.visitor-notes__title::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b0000;
  transform: translateY(-50%);
}

.visitor-notes__text {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.9;
}

.visitor-notes__text + .visitor-notes__text {
  margin-top: 0.6em;
}

.visitor-notes__text a {
  color: #8b0000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visitor-notes__sublist {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.8;
}

.visitor-notes__sublist li + li {
  margin-top: 0.3em;
}

/* タブレット */
@media screen and (max-width: 900px) {
  .visitor-notes__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .visitor-notes__item {
    padding: 22px;
  }
}

/* スマートフォン */
@media screen and (max-width: 600px) {
  .visitor-notes__item {
    padding: 18px;
    border-radius: 10px;
  }

  .visitor-notes__title {
    font-size: 1rem;
  }

  .visitor-notes__text,
  .visitor-notes__sublist {
    font-size: 0.9rem;
    line-height: 1.8;
  }
}