@charset "UTF-8";

/* ---------------------
     theater-tips
---------------------*/
.theater-tips {
  max-width: 65rem;
  width: 100%;
  margin: 0 auto;
}

.theater-tips__note {
  display: flex;
  flex-flow: column;
  gap: 3.2rem;
  margin-top: 3.5rem;
  text-align: center;
}

.theater-tips___img {}

.theater-tips__main-wrapper {
  margin: 8rem auto 0;
  display: flex;
  flex-flow: column;
  gap: 4rem;
}

.theater-tips__content {
  display: flex;
  flex-flow: column;
  gap: 3.2rem;
  background-color: #fff;
  padding: 8rem 6rem;
}

.theater-tips__content-title {
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  line-height: 1.4;
}

.theater-tips__border {
  margin-top: 1.6rem;
  width: 100%;
}

.theater-tips__list {
  display: flex;
  flex-flow: column;
  gap: 2.4rem;
}

.theater-tips__list li {
  position: relative;
  padding-left: 1.5rem;
  -webkit-font-feature-settings: initial;
  font-feature-settings: initial;
}

.theater-tips__list li:not(.normal-list)::before {
  content: "";
  position: absolute;
  top: .6em;
  left: 0;
  width: .6rem;
  height: .6rem;
  background-color: #08131a;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .theater-tips__note {
    margin-top: 4rem;
    text-align: left;
  }

  .theater-tips__note br {
    display: none;
  }

  .theater-tips__main-wrapper {
    margin-top: 6rem;
    gap: 2.4rem;
  }

  .theater-tips__content {
    padding: 6rem 2.8rem;

  }
}