@import "../css/loop-item-event.css";

.headline-event {
  color: var(--vk-color-text-body);
  padding-bottom: 0;
  margin-bottom: 40px;
}

.event-ttl-main {
  font-size: 35px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 15px;
  margin-top: 75px;
}

.event-ttl-sub {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 70px;
}

.event-intro-flex {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.event-intro-txt {
  width: 48%;
  flex-shrink: 0;
}

.event-intro-img {
  width: 42%;
}

.event-intro-img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.event-intro-box {
  background-color: var(--vk-color-text-body);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 11px 15px;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.event-intro-list {
  padding: 0;
  margin: 0 0 20px 0;
  list-style: none;
}

.event-intro-list li {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
  line-height: 1.4;
  display: inline-block;
  margin-right: 21px;
}

.event-intro-desc {
  line-height: 1.8;
}

.event-separator {
  margin-top: 80px;
  margin-bottom: 90px;
  border-top: 0.5px solid var(--vk-color-text-body);
  width: 100%;
}

.event-list-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--vk-color-text-body);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.event-list-title::before,
.event-list-title::after {
  content: "";
  display: block;
  width: 1px;
  height: 25px;
  background-color: var(--vk-color-text-body);
}

.event-list-title::before {
  transform: rotate(-30deg);
}

.event-list-title::after {
  transform: rotate(30deg);
}



@media screen and (max-width: 767.98px) {
  .headline-event {
    padding-bottom: 40px;
  }

  .event-ttl-main {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: 50px;
  }

  .event-ttl-sub {
    margin-bottom: 40px;
  }

  .event-intro-flex {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .event-intro-txt,
  .event-intro-img {
    width: 100%;
  }

  .event-separator {
    margin-top: 40px;
    margin-bottom: 0;
  }

  .event-list-title {
    font-size: 20px;
  }

  .event-list-title::before,
  .event-list-title::after {
    height: 20px;
  }
}

.event-end {
  display: block;
  background-color: var(--vk-color-text-body);
  color: #fff;
  padding: 8px 30px;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin: 0 auto 4em;
  text-align: center;
  width: 100%;
  max-width: 640px;
}

@media screen and (max-width: 767.98px) {
  .event-end {
    font-size: 18px;
  }
}

.event-detail {
  display: flex;
  justify-content: space-between;
  gap: 90px;
  margin-bottom: 80px;
}

.event-detail__visual {
  width: 50%;
  flex-shrink: 0;
}

.event-detail__visual img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.event-detail__info {
  width: 50%;
}

.event-detail__badge {
  display: inline-block;
  background-color: var(--vk-color-text-body);
  color: #fff;
  padding: 8px 45px;
  font-size: 20px;
  margin-bottom: 25px;
  letter-spacing: 0.1em;
}

.event-detail__title {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--vk-color-text-body);
  text-indent: -10px;
}

.event-detail__table-wrap {
  width: 100%;
}

.event-detail__table {
  width: 100%;
  border-collapse: collapse;
  border-left: 0;
  border-right: 0;
}

.event-detail__table tr {
  border-bottom: 0.5px solid rgba(113, 113, 113, 0.5);
  border-left: none;
  border-right: none;
}

.event-detail__table tr:first-child {
  border-top: 0.5px solid rgba(113, 113, 113, 0.5);
}

.event-detail__table th {
  padding: 24px 5px;
  text-align: left;
  font-weight: normal;
  width: 90px;
  color: var(--vk-color-text-body);
  vertical-align: top;
  white-space: nowrap;
  letter-spacing: 0.1em;
  border-left: none;
  border-right: none;
  font-size: 18px;
}

.event-detail__table td {
  padding: 20px 0 20px 30px;
  color: var(--vk-color-text-body);
  line-height: 1.6;
  border-left: none;
  border-right: none;
  font-size: 18px;
}

@media screen and (max-width: 991.98px) {
  .event-detail {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
  }

  .event-detail__visual,
  .event-detail__info {
    width: 100%;
  }

  .event-detail__badge {
    margin-bottom: 20px;
    padding: 6px 20px;
    font-size: 14px;
  }

  .event-detail__title {
    font-size: 18px;
    margin-bottom: 20px;
    margin-top: 9px;
  }

  .event-detail__table th {
    width: 70px;
    padding: 15px 0;
    font-size: 16px;
    vertical-align: middle;
  }

  .event-detail__table td {
    padding: 15px 0 15px 20px;
    font-size: 16px;
    vertical-align: middle;
  }
}


/* 比率：main : sub = 140 : 83 */
.ratio-layout {
  display: grid;
  grid-template-columns: 140fr 83fr;
  align-items: start;
}

.ratio-layout__main {
  min-width: 0;
  padding: 45px 60px 0 0;
  border-top: 0.5px solid var(--vk-color-text-body);
}

.ratio-layout__sub {
  min-width: 0;
  padding: 45px 0 0 60px;
  border-top: 0.5px solid var(--vk-color-text-body);
  border-left: 0.5px solid var(--vk-color-text-body);
  background: #fff;
}

@media (max-width: 991.98px) {
  .ratio-layout {
    display: block;
  }

  .ratio-layout__main,
  .ratio-layout__sub {
    border: none;
    padding: 30px 0;
  }

  .ratio-layout__sub {
    border-top: 0.5px solid var(--vk-color-text-body);
  }
}

.event-reservation {
  border: 6px solid #ccc;
  padding: 25px 20px 20px;
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 991.98px) {
  .event-reservation {
    margin-top: 40px;
  }
}

.event-reservation__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background-color: #717171;
  color: #fff;
  text-decoration: none;
  width: 88%;
  margin: 0 auto 15px;
  padding: 22px 15px;
  border-radius: 50vh;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  transition: opacity 0.3s;
}

.event-reservation__btn:hover {
  opacity: 0.8;
  color: #fff;
}

.event-reservation__btn img {
  width: 23px;
  height: auto;
}

.event-reservation__lead {
  font-size: 15px;
  margin-bottom: 5px;
  color: var(--vk-color-text-body);
}

.event-reservation__tel {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 5px;
  color: var(--vk-color-text-body);
  letter-spacing: 5px;
}

.event-reservation__time {
  font-size: 15px;
  color: var(--vk-color-text-body);
  margin-bottom: 0;
}

@media screen and (max-width: 767.98px) {
  .event-reservation {
    padding: 30px 15px;
    border-width: 5px;
  }

  .event-reservation__btn {
    font-size: 18px;
    padding: 15px;
    gap: 10px;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .event-reservation__btn img {
    width: 24px;
  }

  .event-reservation__lead {
    font-size: 14px;
  }

  .event-reservation__tel {
    font-size: 30px;
  }

  .event-reservation__time {
    font-size: 12px;
  }
}

.ratio-layout {
  position: relative;
}

.ratio-layout__sub.is-fixed {
  position: fixed;
  z-index: 10;
}

.ratio-layout__sub.is-absolute {
  position: absolute;
  z-index: 10;
}

.event-contact {
  background-color: #f2f2f2;
  padding: 120px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 120px;
}

.event-contact__box {
  background-color: #fff;
  padding: 60px 40px;
}

.event-contact__lead {
  text-align: center;
  margin-bottom: 50px;
  line-height: 2;
  font-size: 16px;
  color: var(--vk-color-text-body);
}

.event-contact__header {
  background-color: var(--vk-color-text-body);
  color: #fff;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.event-contact__form {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767.98px) {
  .event-contact {
    padding: 80px 0;
    margin-top: 80px;
  }

  .event-contact__box {
    padding: 40px 20px;
  }

  .event-contact__lead {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: left;
  }

  .event-contact__header {
    font-size: 16px;
    padding: 12px;
    margin-bottom: 30px;
  }
}

.event-reservation__tel a {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
  cursor: default;
}

@media screen and (max-width: 767.98px) {
  .event-reservation__tel a {
    pointer-events: auto;
    cursor: pointer;
  }
}

.single-event .main-section {
  margin-bottom: 0;
}

.floating-actions__list--event {
  justify-content: center;
}

.floating-actions__item--event {
  width: 100%;
  height: 320px;
}

.floating-actions__item--event .floating-actions__link {
  justify-content: center;
  color: #fff;
  display: flex;
  align-items: center;
  width: 90px;
  writing-mode: vertical-rl;
}

.floating-actions__item--event .floating-actions__text {
  font-size: 16px;
}

.floating-actions__list.pc-none {
  display: none;
}

.floating-actions__list.sp-none {
  display: block;
}

@media screen and (max-width: 991.98px) {
  .floating-actions__item--event .floating-actions__link {
    width: 75px;
  }
}

@media screen and (max-width: 767.98px) {
  .floating-actions__item--event {
    width: 100%;
    height: 50px;
  }

  .floating-actions__item--event .floating-actions__link {
    padding: 0;
    width: 100%;
    writing-mode: horizontal-tb;
  }

  .floating-actions__list.pc-none {
    display: block;
  }

  .floating-actions__list.sp-none {
    display: none;
  }
}