@charset "UTF-8";

/* =================================
profile
================================= */

.profile__inner {
  display: flex;
  gap: 40px;
}
.profile__img-area {
  width: 35%;
  max-width: 350px;
  flex-shrink: 0;
  position: relative;
}
.profile__slider {
  width: 100%;
}
.profile__img {
  width: 100%;
  aspect-ratio: 366 / 488;
  object-fit: cover;
}
.profile__pagination {
  margin-top: 10px;
  position: static !important;
  text-align: center;
}
.profile__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0 12px;
  background: transparent;
  border: 1px solid var(--color-gold);
  opacity: 1;
}
.profile__pagination .swiper-pagination-bullet-active {
  background: var(--color-gold);
}
.profile__content {
  flex: 1;
}
.profile__head {
  display: flex;
  align-items: center;
  position: relative;
}
.profile__head::after,
.profile__comment::before,
.profile__comment::after,
.profile__schedule::before {
  content: "";
  width: 100%;
  height: 1px;
  background: var(--gradient-gold);
  position: absolute;
  left: 0;
}
.profile__head::after {
  bottom: 0;
}
.profile__name {
  width: 35%;
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
}
.profile__age {
  width: 25%;
  font-family: var(--font-serif);
  font-weight: 600;
}
.profile__height {
  width: 40%;
  font-family: var(--font-serif);
  font-weight: 600;
  text-align: right;
}
.profile__comment {
  padding-top: 20px;
  position: relative;
}
.profile__comment::before {
  top: 47px;
}
.profile__comment::after {
  top: 51px;
}
.profile__sub-ttl {
  font-family: var(--font-serif);
  font-weight: 600;
}
.profile__txt {
  margin-top: 15px;
}
.profile__schedule {
  margin-top: 40px;
  padding-top: 10px;
  position: relative;
}
.profile__schedule::before {
  top: 0;
}
.profile__table {
  width: 100%;
  margin-top: 5px;
  border-collapse: collapse;
  font-family: var(--font-serif);
  font-weight: 700;
  text-align: center;
}
.profile__table th,
.profile__table td {
  border: 1px solid var(--color-gold);
  vertical-align: middle;
}
.profile__table--pc th,
.profile__table--pc td {
  width: calc(100% / 7);
}
.profile__table--pc tr:first-child {
  background: var(--gradient-gold);
}
.profile__table--pc th {
  height: 45px;
  background: transparent;
}
.profile__table--pc td {
  height: 80px;
  background: var(--color-white);
}
.profile__table--sp {
  display: none;
}

.profile__table td{
	position:relative;
}

.profile__schedule-soldout{
	height: 100%;
	position:absolute;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgba(80,80,80,.8);
	color:#fff;
	font-size:1.2rem;
	font-weight:700;
	letter-spacing:.08em;
	text-transform:uppercase;
	pointer-events:none;
}

@media screen and (max-width: 768px) {
  .profile__inner {
    display: block;
  }
  .profile__img-area {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .profile__pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 10px;
  }
  .profile__content {
    margin-top: 20px;
  }
  .profile__head {
    padding-bottom: 10px;
  }
  .profile__name {
    width: 38%;
    font-size: 2.8rem;
  }
  .profile__age {
    width: 23%;
  }
  .profile__height {
    width: 43%;
  }
  .profile__comment {
    padding-top: 15px;
    padding-bottom: 20px;
  }
  .profile__comment::before {
    top: 42px;
  }
  .profile__comment::after {
    top: 47px;
  }
  .profile__txt {
    margin-top: 30px;
  }
  .profile__schedule {
    margin-top: 20px;
    padding-top: 15px;
  }
  .profile__table--pc {
    display: none;
  }
  .profile__table--sp {
    display: table;
    margin-top: 15px;
  }
  .profile__table--sp th {
    height: 40px;
    background: var(--gradient-gold);
  }
  .profile__table--sp td {
    height: 50px;
    background: var(--color-white);
  }
}