/* ============================================
   GUEST SECTION
============================================ */
.guest-section__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}
.guest-section__item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
/* 写真エリア */
.guest-section__photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 13rem;
}
.guest-section__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.2rem;
  object-fit: cover;
}
/* DAYバッジ */
.guest-section__day-badge {
  position: absolute;
  top: -1.2rem;
  left: -1.2rem;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.guest-section__day-inner {
  display: flex;
  align-items: end;
}
.guest-section__day-label {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}
.guest-section__day-num {
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.8;
}
/* 情報エリア */
.guest-section__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.guest-section__name-ja {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
}
.guest-section__name-en {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.guest-section__date {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.guest-section__desc {
  border: 1px solid #ccc;
  padding: .8rem;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
