@charset "UTF-8";
.picture-slide-show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 36px;
}
.picture-slide-show .picture-display {
  flex-grow: 1;
  overflow: hidden;
}
.picture-slide-show .picture-display .picture-container {
  position: relative;
  left: 0;
  transition: left 0.8s ease;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0 44px;
}
.picture-slide-show .picture-display .picture-container .picture, .picture-slide-show .picture-display .picture-container .picture-dummy {
  flex-shrink: 0;
  width: 350px;
  height: 467px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .picture-slide-show {
    margin: 0 -30px;
  }
  .picture-slide-show .picture-display .picture-container {
    gap: 0 32px;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: 76px;
    margin-right: 76px;
  }
  .picture-slide-show .picture-display .picture-container .picture, .picture-slide-show .picture-display .picture-container .picture-dummy {
    /* 564px x 750px */
    width: 564px;
    height: 750px;
  }
  .picture-slide-show .left-button {
    z-index: 5;
    position: absolute;
    left: 0;
  }
  .picture-slide-show .right-button {
    position: absolute;
    right: 0;
  }
}

.picture-slide-show-indicator {
  display: flex;
  margin-top: 25px;
  justify-content: center;
  gap: 20px;
}
.picture-slide-show-indicator .dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background-color: var(--global--background-highlight--color);
}
.picture-slide-show-indicator .dot.selected {
  background-color: var(--global--color--white);
}

.voice-sample-group .voice-sample {
  margin: 18px 0;
  padding: 0 2px;
  display: flex;
  align-items: center;
  font-family: var(--global--font--noto-sans);
  font-size: 16px;
}
.voice-sample-group .voice-sample .number {
  margin: 0 10px;
  font-size: 18px;
}
.voice-sample-group .voice-sample .title {
  font-size: 18px;
}
.voice-sample-group .voice-sample .length {
  margin: 0 33px;
}
.voice-sample-group .voice-sample .update-date-text {
  margin-right: 18px;
}
.voice-sample-group .voice-sample .update-date {
  margin-right: 10px;
}
.voice-sample-group > hr {
  border: 1px solid var(--global--color--white);
}

.profile {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.profile .profile-left {
  display: flex;
  flex-direction: column;
}
.profile .profile-top-group {
  box-sizing: border-box;
  padding: 30px 5px 10px 5px;
  flex-shrink: 0;
  width: 450px;
  border-radius: 20px;
  background-color: #feeef6;
  font-family: var(--global--font--noto-sans);
  color: var(--global--color--dark-purple);
}
.profile .profile-top-group .cast-profile .name-and-age {
  margin: 28px 0 18px;
}
.profile .profile-top-group .cast-profile .name-and-age .name {
  display: inline;
  font-size: 33px;
  font-weight: 700;
}
.profile .profile-top-group .cast-profile .name-and-age .age {
  margin-left: 20px;
  display: inline;
  font-size: 20px;
  font-weight: 700;
}
.profile .profile-top-group .cast-profile .status {
  margin-left: 2px;
  font-size: 18px;
  font-weight: 400;
}
.profile .profile-top-group .profile-button-group {
  display: flex;
  gap: 37px;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
}
.profile .profile-top-group .profile-button-group .profile-button {
  box-sizing: border-box;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  padding: 6px 0 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: var(--global--color--pink);
  font-size: 12px;
  font-weight: 700;
  color: var(--global--color--white);
}
.profile .profile-top-group .profile-button-group .profile-button::before {
  flex-shrink: 0;
  content: "";
  margin-top: 12px;
  width: 100%;
  height: 35px;
  display: block;
}
.profile .profile-top-group .profile-button-group .profile-button.comment::before {
  background: url(../img/cast-button-icon-balloon-white.svg) no-repeat center;
  background-size: contain;
  transform: scale(-1, 1);
}
.profile .profile-top-group .profile-button-group .profile-button.report::before {
  background: url(../img/book.svg) no-repeat center;
  background-size: contain;
}
.profile .profile-top-group .profile-button-group .profile-button.twitter::before {
  background: url(../img/x-logo-white.svg) no-repeat center;
  background-size: contain;
}
.profile .profile-top-group .nomination-fee {
  margin: auto;
  width: 370px;
  height: 180px;
  border-radius: 20px;
  background-color: var(--global--color--white);
  overflow: hidden;
}
.profile .profile-top-group .nomination-fee .header {
  box-sizing: border-box;
  width: 325px;
  height: 40px;
  border-radius: 20px;
  margin: 30px auto 15px;
  padding-bottom: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  background-color: var(--global--color--pink);
  color: var(--global--color--white);
}
.profile .profile-top-group .nomination-fee .price {
  font-size: 36px;
  font-weight: 700;
  color: var(--global--color--purple);
}
@media screen and (max-width: 750px) {
  .profile .profile-top-group {
    flex-direction: column;
  }
  .profile .profile-top-group .profile-button-group {
    margin-top: 30px;
  }
}
.profile .profile-reports {
  box-sizing: border-box;
  margin: 30px 0px 0px 0px;
  padding: 30px 5px 10px 5px;
  flex-shrink: 0;
  width: 450px;
}
.profile .profile-reports .reports_swiper {
  position: relative;
  width: 100%;
  height: 140px;
  padding-bottom: 40px;
  margin: 0 auto;
  overflow: hidden;
}
.profile .profile-reports .reports_swiper .swiper {
  margin: 0 auto;
}
.profile .profile-reports .reports_swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.profile .available-lists {
  width: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile .available-lists .list .title {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--global--color--pink);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--global--color--white);
}
.profile .available-lists .list .content {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 9px;
}
.profile .available-lists .list .content > div {
  position: relative;
  box-sizing: border-box;
  padding-top: 10px;
  width: 210px;
  height: 100px;
  border-radius: 20px;
  background-color: #fddded;
  color: var(--global--color--dark-purple);
  font-size: 17px;
  font-weight: 700;
}
.profile .available-lists .list .content > div .detail-icon {
  position: absolute;
  width: 30px;
  right: 10px;
  bottom: 5px;
}
.profile .available-lists .list .content > div .detail-icon img {
  width: 100%;
  object-fit: cover;
}
.profile .available-lists .list .content > .ok::before {
  content: "";
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 37px;
  height: 47px;
  margin-bottom: 4px;
  display: block;
  background: url(../img/circle-line.svg) no-repeat center;
  background-size: contain;
}
.profile .available-lists .list .content > .ng::before {
  content: "";
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 47px;
  height: 47px;
  margin-bottom: 4px;
  display: block;
  background: url(../img/x-line.svg) no-repeat center;
  background-size: contain;
}
.profile .available-lists .detail-additional-container .content.table.option {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 20px;
}
.profile .available-lists .detail-additional-container .content.table.option > div {
  width: 40%;
}
@media screen and (max-width: 750px) {
  .profile .available-lists {
    flex-direction: column;
  }
}
@media screen and (max-width: 750px) {
  .profile {
    flex-direction: column;
    align-items: center;
  }
  .profile .profile-left {
    width: 100%;
  }
  .profile .profile-top-group {
    width: 100%;
  }
  .profile .profile-top-group .nomination-fee {
    width: 90%;
    margin: 10px auto;
  }
  .profile .profile-reports {
    width: 100%;
  }
  .profile .available-lists {
    width: 100%;
  }
  .profile .available-lists .list .title {
    margin-top: 24px;
  }
  .profile .available-lists .list .content {
    gap: 11px 18px;
    justify-content: space-between;
  }
  .profile .available-lists .list .content > div {
    width: calc(50% - 10px);
  }
}

.q-and-a-group {
  display: flex;
  justify-content: start;
  overflow-x: scroll;
}
.q-and-a-group .q-and-a {
  margin-left: 30px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  font-family: var(--global--font--noto-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--global--color--dark-purple);
  text-align: start;
  /*
      .q {
        height: 36px;
        border-radius: 18px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: var(--global--color--white);
        font-weight: 800;
      }

      .arrow {
        width: 0;
        height: 0;
        margin-left: 40px;
        border-top: 0 solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 20px solid var(--global--color--white);
        border-left: 20px solid transparent;
      }

      .a {
        flex-grow: 1;
        border-radius: 18px;
        padding: 20px 20px 40px;
        text-align: left;
        background-color: var(--global--color--white);
        font-weight: 500;
      }
   */
}
.q-and-a-group .q-and-a .q {
  font-size: 20px;
}
.q-and-a-group .q-and-a .q::before {
  content: "Q";
  margin-right: 25px;
  font-family: var(--global--font--m-plus);
  font-size: 36px;
  font-weight: 700;
  color: var(--global--color--pink);
}
.q-and-a-group .q-and-a .a {
  display: flex;
  position: relative;
}
.q-and-a-group .q-and-a .a::before {
  content: "A";
  margin-right: 25px;
  font-family: var(--global--font--m-plus);
  font-size: 36px;
  font-weight: 700;
  color: var(--global--color--pink);
}
.q-and-a-group .q-and-a .a .a-text {
  position: relative;
  box-sizing: border-box;
  width: 370px;
  height: 145px;
  padding: 30px;
  border-radius: 20px;
  background-color: #feeef6;
  font-size: 20px;
  font-weight: 400;
}
.q-and-a-group .q-and-a .a .a-text::before {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-right: 30px solid #feeef6;
  border-bottom: 20px solid transparent;
  border-left: 0 solid transparent;
  content: " ";
  position: absolute;
  top: 10px;
  left: -15px;
}
.q-and-a-group .q-and-a .a .button {
  position: absolute;
  top: 60px;
  left: -8px;
}
.q-and-a-group .q-and-a .a .button .mic-icon {
  width: 40px;
  height: 40px;
}
.q-and-a-group .q-and-a .a .button .mic-icon.start-button {
  background: url(../img/mic-icon.svg) no-repeat;
  background-size: contain;
}
.q-and-a-group .q-and-a .a .button .mic-icon.start-button:after {
  content: none;
}
.q-and-a-group .q-and-a .a .button .text {
  color: var(--global--color--purple);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .q-and-a-group {
    flex-direction: row;
    align-items: center;
    gap: 0px 24px;
    padding-left: 38px;
    padding-bottom: 28px;
    padding-right: 28px;
  }
  .q-and-a-group .q-and-a {
    width: 513px;
    min-width: 513px;
  }
  .q-and-a-group .q-and-a .q {
    font-size: 24px;
  }
  .q-and-a-group .q-and-a .a .a-text {
    width: 460px;
    height: 170px;
    padding: 20px 30px;
    font-size: 24px;
  }
}

@media screen and (max-width: 750px) {
  .content-bg-question {
    padding: 0px 0px 32px;
  }
  .twitter-timeline {
    border: 4px solid var(--global--background--color);
    border-radius: 10px;
  }
}
.month-schedule-button {
  position: absolute;
  top: 35px;
  right: 180px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: var(--global--color--pink);
}
.month-schedule-button::before {
  content: "";
  width: 31px;
  height: 31px;
  margin: 13px auto 0;
  display: block;
  background: url(../img/calender-small.svg) no-repeat;
  background-size: contain;
}
.month-schedule-button::after {
  content: "1ヶ月";
  margin-left: 2px;
  display: block;
  font-family: var(--global--font--noto-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--global--color--white);
}
@media screen and (max-width: 750px) {
  .month-schedule-button {
    top: 45px;
    right: 120px;
  }
}

.reservation-button {
  position: absolute;
  top: 35px;
  right: 70px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: var(--global--color--pink);
}
.reservation-button::before {
  content: "";
  width: 31px;
  height: 31px;
  margin: 13px auto 0;
  display: block;
  background: url(../img/menu-icon-smartphone.svg) no-repeat;
  background-size: contain;
}
.reservation-button::after {
  content: "予約";
  margin-left: 2px;
  display: block;
  font-family: var(--global--font--noto-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--global--color--white);
}
@media screen and (max-width: 750px) {
  .reservation-button {
    top: 45px;
    right: 30px;
  }
}

.week-schedule-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-family: var(--global--font--noto-sans);
  color: var(--global--color--dark-purple);
}
.week-schedule-list .week-schedule-element .date {
  background-color: var(--global--color--pink);
  border-radius: 20px 20px 0 0;
  padding-top: 29px;
  padding-bottom: 23px;
  font-size: 16px;
  font-weight: 700;
}
.week-schedule-list .week-schedule-element .week-text {
  font-size: 18px;
}
.week-schedule-list .week-schedule-element .week-text.saturday {
  color: var(--global--color--blue);
}
.week-schedule-list .week-schedule-element .week-text.holiday {
  color: var(--global--color--red);
}
.week-schedule-list .week-schedule-element .time-text {
  width: 120px;
  padding: 50px 0;
  font-size: 24px;
  background-color: #feeef6;
  border-radius: 0 0 20px 20px;
}
.week-schedule-list .week-schedule-element .time-text .time-tilde {
  transform: rotate(90deg);
}
.week-schedule-list hr {
  width: 2px;
  margin: 0 0;
  border: none 0;
  background-color: var(--global--color--light-pink);
}
@media screen and (max-width: 750px) {
  .week-schedule-list {
    gap: 10px;
    justify-content: space-between;
    padding-top: 10px;
  }
  .week-schedule-list .week-schedule-element {
    /* flex制御 */
    width: 100%;
  }
  .week-schedule-list .week-schedule-element .date {
    padding: 20px 0px;
    font-size: 20px;
  }
  .week-schedule-list .week-schedule-element .week-text {
    font-size: 20px;
  }
  .week-schedule-list .week-schedule-element .time-text {
    width: initial;
    font-size: 22px;
    font-weight: 600;
    padding: 16px 0px;
  }
  .week-schedule-list .week-schedule-element .time-text > div {
    margin: 3px 0px;
  }
}

.diary-group {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px 0;
}
.diary-group > div {
  width: 220px;
  height: 348px;
}
.diary-group::before, .diary-group::after {
  content: "";
  width: 220px;
  height: 0;
  display: block;
  order: 1;
}
.diary-group > div {
  background-color: white;
}
.diary-group .diary {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-family: var(--global--font--noto-sans);
  border: 2px #efefef solid;
  text-decoration: none;
}
.diary-group .diary .picture {
  height: 247px;
  background-color: var(--global--color--gray);
  display: flex;
  justify-content: center;
  align-items: center;
}
.diary-group .diary .title {
  margin: 10px 10px 0px 20px;
  font-size: 22px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--global--color--dark-purple);
}
.diary-group .diary .author {
  margin-left: 20px;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--global--color--blue);
}
.diary-group .diary .date-time {
  flex-grow: 1;
  margin: 10px 0 20px 20px;
  display: flex;
  align-items: flex-end;
  color: var(--global--color--gray);
}
@media screen and (max-width: 750px) {
  .diary-group > div {
    width: 300px;
  }
  .diary-group .diary .picture {
    width: 300px;
    height: 300px;
    background-color: var(--global--color--gray);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .diary-group .diary .author {
    font-size: 20px;
  }
  .diary-group .diary .date-time {
    font-size: 24px;
    margin: 10px 0 15px 20px;
  }
}

.comment-content .header {
  font-family: var(--global--font--m-plus);
  font-size: 40px;
  font-weight: 700;
  color: var(--global--color--purple);
  text-align: center;
}
.comment-content .bubble-content {
  margin-bottom: 60px;
}
.comment-content .bubble-content .arrow {
  margin: 0 auto 0 auto;
  width: 0;
  height: 0;
  border-top: 0 solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 24px solid var(--global--color--white);
  border-left: 20px solid transparent;
}
.comment-content .bubble-content .content {
  box-sizing: border-box;
  border-radius: 20px;
  padding: 50px 60px;
  background-color: var(--global--color--white);
  font-family: var(--global--font--noto-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--global--color--dark-purple);
  text-align: left;
  line-height: 26px;
  letter-spacing: 1px;
}
@media screen and (max-width: 750px) {
  .comment-content .header {
    text-align: center;
  }
  .comment-content .bubble-content {
    margin-top: 30px;
  }
  .comment-content .bubble-content .arrow {
    margin: 0 auto 0 auto;
  }
  .comment-content .bubble-content .content {
    width: 100%;
    margin: 0px auto;
    padding: 40px 30px;
    font-size: 20px;
    font-weight: 400;
    line-height: 27px;
  }
}

.voice-group {
  margin-top: 50px;
  position: relative;
  /*
  .voice {
    margin: 18px 0;
    padding: 0 2px;
    display: flex;
    align-items: center;
    font-family: var(--global--font--noto-sans);
    font-size: 16px;
    color: var(--global--color--dark-purple);

    .detail {
      margin-bottom: 2px;
      flex-grow: 1;
      display: flex;

      .title-and-cast {
        flex-grow: 1;
        display: flex;
        justify-content: space-between;
        font-size: 18px;

        .title {
          margin: 0 10px;
        }

        .cast-name {
        }
      }

      .times {
        display: flex;
        justify-content: space-between;
        font-size: 16px;
        margin-left: 50px;

        .length {
          margin: 0 33px;
        }

        .update {
          display: flex;

          .update-date-text {
            margin-right: 18px;
          }

          .update-date {
            margin-right: 10px;
          }

          .update-time {

          }
        }
      }
    }
  }
   */
}
.voice-group hr {
  margin: 20px 0;
  border-top: 1px solid #fcbbdb;
  border-bottom: 0;
}
.voice-group .day-group {
  display: flex;
}
.voice-group .day-group .day-header {
  width: 75px;
  height: 75px;
  margin-right: 50px;
  border: 2px var(--global--color--purple) solid;
  border-radius: 39px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--global--color--dark-purple);
  font-family: var(--global--font--noto-sans);
}
.voice-group .day-group .day-header .day {
  font-size: 24px;
  font-weight: 600;
  line-height: 15px;
}
.voice-group .day-group .day-header .week {
  font-size: 18px;
  font-weight: 500;
}
.voice-group .day-group .day-header .number {
  font-size: 24px;
  font-weight: 600;
}
.voice-group .day-group .day-header.holiday .week {
  color: var(--global--color--red);
}
.voice-group .day-group .day-header.saturday .week {
  color: var(--global--color--blue);
}
.voice-group .day-group .day-header.today {
  background-color: var(--global--color--purple);
  color: white;
}
.voice-group .day-group .content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.voice-group .day-group .content .voice {
  box-sizing: border-box;
  height: 67px;
  margin: 4px 0;
  padding: 10px 18px 10px 20px;
  border-radius: 10px;
  background-color: #feeef6;
  display: flex;
  align-items: center;
  text-align: start;
  font-size: 16px;
  color: var(--global--color--dark-purple);
  font-family: var(--global--font--noto-sans);
}
.voice-group .day-group .content .voice .title {
  margin-left: 15px;
  width: 440px;
  font-size: 18px;
  font-weight: 600;
}
.voice-group .day-group .content .voice .cast-name {
  width: 180px;
  font-weight: 600;
}
.voice-group .day-group .content .voice .length {
  width: 60px;
}
.voice-group .day-group .content .voice .update-date-text {
  width: 60px;
}
.voice-group .day-group .content .voice .update-date {
  width: 100px;
}
@media screen and (max-width: 750px) {
  .voice-group .day-group .day-header {
    margin-right: 30px;
  }
  .voice-group .day-group .content .voice {
    position: relative;
  }
  .voice-group .day-group .content .voice .title {
    width: 330px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 56px;
  }
  .voice-group .day-group .content .voice .length {
    width: 60px;
    position: absolute;
    top: 38px;
    left: 72px;
  }
  .voice-group .day-group .content .voice .update-date-text {
    position: absolute;
    right: 100px;
  }
  .voice-group .day-group .content .voice .update-date {
    position: absolute;
    right: 0px;
  }
  .voice-group .day-group .content .voice .update-time {
    display: none;
  }
}

.headline-text {
  font-size: 40px;
}

.modal-schedule {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  bottom: 150px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.schedule-content {
  width: 1158px;
  height: 777px;
  border-radius: 20px;
  background-color: var(--global--color--white);
}
.schedule-content .headline-text {
  margin-top: 40px;
  font-family: var(--global--font--noto-sans);
  font-size: 30px;
}
.schedule-content .schedule {
  width: 1040px;
  margin: auto;
  border-collapse: collapse;
  font-size: 18px;
  font-weight: 500;
  color: var(--global--color--dark-purple);
}
.schedule-content .schedule tr td {
  border: 2px solid #d767a2;
  height: 33px;
}
.schedule-content .schedule tr td:nth-of-type(odd) {
  width: 192px;
  background-color: #fff4f8;
}
.schedule-content .schedule tr td:nth-of-type(even) {
  padding: 0 9px 0 40px;
  text-align: start;
  font-weight: 800;
}
.schedule-content .schedule tr td.saturday {
  background-color: #aeb8fd;
}
.schedule-content .schedule tr td.saturday span {
  color: #253ebc;
}
.schedule-content .schedule tr td.holiday {
  background-color: #ffafb0;
}
.schedule-content .schedule tr td.holiday span {
  color: #a52020;
}
.schedule-content .schedule tr td {
  position: relative;
}
.schedule-content .schedule tr td .schedule-reservation-button {
  position: absolute;
  right: 10px;
  display: inline-flex;
  border-radius: 15px;
  padding: 1px 24px 3px;
  background-color: var(--global--color--purple);
  color: var(--global--color--white);
  font-size: 16px;
  font-weight: 500;
}
.schedule-content .month-schedule {
  font-size: 18px;
  font-weight: 500;
  width: 1037px;
  margin: auto;
  border-collapse: collapse;
  color: var(--global--color--dark-purple);
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(16, 37px);
  grid-template-columns: repeat(2, 50%);
  border: 1px solid #d767a2;
}
.schedule-content .month-schedule > div {
  border: 1px solid #d767a2;
  display: flex;
  position: relative;
}
.schedule-content .month-schedule > div > div {
  height: 35px;
  line-height: 35px;
}
.schedule-content .month-schedule > div > div:nth-of-type(odd) {
  width: 194px;
  background-color: #fff4f8;
  border-right: 2px solid #d767a2;
}
.schedule-content .month-schedule > div > div:nth-of-type(even) {
  padding: 0 9px 0 40px;
  text-align: start;
  font-weight: 800;
}
.schedule-content .month-schedule > div > div:nth-of-type(even) .schedule-reservation-button {
  position: absolute;
  right: 10px;
  display: inline-flex;
  border-radius: 15px;
  padding: 1px 24px 3px;
  background-color: var(--global--color--purple);
  color: var(--global--color--white);
  font-size: 16px;
  font-weight: 500;
  height: 23px;
  line-height: 23px;
  top: 5px;
}
.schedule-content .month-schedule > div.saturday > div:nth-of-type(odd) {
  background-color: #aeb8fd;
}
.schedule-content .month-schedule > div.saturday > div:nth-of-type(odd) span {
  color: #253ebc;
}
.schedule-content .month-schedule > div.holiday > div:nth-of-type(odd) {
  background-color: #ffafb0;
}
.schedule-content .month-schedule > div.holiday > div:nth-of-type(odd) span {
  color: #a52020;
}
@media screen and (max-width: 750px) {
  .schedule-content {
    zoom: 0.75;
    width: 750px;
    height: 1200px;
  }
  .schedule-content .month-schedule-outer {
    margin: 0px 30px 30px;
    height: calc(100% - 155px);
  }
  .schedule-content .month-schedule {
    grid-template-columns: repeat(1, 100%);
    grid-template-rows: repeat(32, 57px);
    overflow-y: scroll;
    border: 0px solid transparent;
    width: 100%;
    height: 100%;
    font-size: 28px;
    font-weight: 400;
  }
  .schedule-content .month-schedule > div {
    border: 0px solid transparent;
    border-top: 2px solid #d767a2;
    display: flex;
    position: relative;
  }
  .schedule-content .month-schedule > div:first-child {
    border-top: 0px solid transparent;
  }
  .schedule-content .month-schedule > div > div {
    height: 55px;
    line-height: 55px;
  }
  .schedule-content .month-schedule > div > div:nth-of-type(odd) {
    width: 214px;
    background-color: #fff4f8;
    border-right: 2px solid #d767a2;
  }
  .schedule-content .month-schedule > div > div:nth-of-type(even) {
    padding: 0 9px 0 40px;
    text-align: start;
    font-weight: 800;
  }
  .schedule-content .month-schedule > div > div:nth-of-type(even) .schedule-reservation-button {
    position: absolute;
    right: 16px;
    display: inline-flex;
    border-radius: 15px;
    padding: 1px 24px 3px;
    background-color: var(--global--color--purple);
    color: var(--global--color--white);
    font-size: 22px;
    font-weight: 400;
    height: 28px;
    line-height: 28px;
    top: 12px;
  }
}

iframe {
  zoom: 1.25;
  max-width: 720px;
}

.pc-content.audio-diary iframe {
  min-height: 329px;
}

@media screen and (max-width: 750px) {
  iframe {
    max-width: 480px;
  }
  #word-of-mouth iframe {
    zoom: 1.4;
  }
}
.content-float-1040 {
  padding-bottom: 65px;
}

.comment-content .button {
  margin-top: 29px;
  scale: 0.6;
  position: absolute;
  top: -55px;
  left: 200px;
}
@media screen and (max-width: 750px) {
  .comment-content .button {
    left: 0;
  }
}

.comment-content .button .mic-icon {
  margin: auto;
  width: 96px;
  height: 96px;
  background: url(../img/mic-icon.svg) no-repeat;
  background-size: contain;
  pointer-events: none;
}

.comment-content .button .stop-icon {
  margin: auto;
  width: 96px;
  height: 96px;
  background: url(../img/stop-icon.svg) no-repeat;
  background-size: contain;
  pointer-events: none;
}

.comment-content .button:not(.playing) .stop-icon {
  display: none;
}

.comment-content .button.playing .mic-icon {
  display: none;
}

.comment-content .button .text {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  pointer-events: none;
  color: var(--global--color--purple);
}

/*# sourceMappingURL=cast-detail.css.map */
