@charset "UTF-8";
/*---------------------------------------------------------------
　　　common
---------------------------------------------------------------*/
img {
  width: 100%;
}

/* ========================================================
    voice_mv
======================================================== */
.voice_mv {
  position: relative;
  width: 100%;
  margin-bottom: 8rem;
}
.voice_mv::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 2/1;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f2248b;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .voice_mv::after {
    width: calc(100% - 5rem);
    aspect-ratio: 4/1;
  }
}
.voice_mv .inner {
  max-width: none;
  width: calc(100% - 6rem);
  margin: auto;
}
.voice_mv .inner img {
  border-radius: 3rem;
}
.voice_mv_ttl {
  padding: 6rem 2rem;
  width: 100%;
  margin-left: auto;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .voice_mv_ttl {
    padding: 4rem;
    width: calc(100% + 11rem);
    margin-left: -3rem;
  }
}
.voice_mv_ttl .fukidashi {
  background: #ffe730;
  color: #f2248b;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  display: inline-block;
  line-height: 4.8rem;
  padding: 0 2em;
  border-radius: 3rem;
  position: relative;
}
.voice_mv_ttl .fukidashi::after {
  content: "";
  display: block;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background-color: #ffe730;
  position: absolute;
  width: 0.5em;
  height: 0.7em;
  bottom: -0.6em;
  left: 50%;
  transform: translateX(-50%);
}
.voice_mv_ttl .text {
  font-size: 4rem;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.voice_mv_ttl .text img {
  display: inline;
  width: 10rem;
  margin-right: 0.5rem;
}

.lead {
  font-size: clamp(16px, 2.4rem, 24px);
  font-weight: 500;
  line-height: 2;
  text-align: center;
  padding-bottom: 6rem;
}

/* ========================================================
    member
======================================================== */
.member_inner {
  max-width: 1130px;
  margin: auto;
  padding: 0 2rem;
}
.member_click {
  max-width: 580px;
  margin: auto;
}
.member_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 6rem auto 0;
}
.member_list li {
  background: repeating-linear-gradient(-45deg, #fdc1df 0, #fdc1df 20px, #fdc9e3 20px, #fdc9e3 40px);
  text-align: center;
  width: calc((100% - 20px) / 2);
  border-radius: 2rem;
  border: 2px solid #000;
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .member_list li {
    width: calc((100% - 60px) / 4);
  }
}
.member_list li:hover {
  transform: translateY(-10px);
}
.member_list li button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2rem 1rem;
}
.member_list li .name {
  font-size: clamp(14px, 1.4rem, 14px);
  font-weight: 600;
  line-height: 1.6;
}
.member_list li img {
  width: 71.7391304348%;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .member_list li:nth-child(2), .member_list li:nth-child(3), .member_list li:nth-child(6), .member_list li:nth-child(7), .member_list li:nth-child(10), .member_list li:nth-child(11), .member_list li:nth-child(14), .member_list li:nth-child(15) {
    background: repeating-linear-gradient(-45deg, #fffd3a 0, #fffd3a 20px, #fffe86 20px, #fffe86 40px);
  }
}
@media screen and (min-width: 768px) {
  .member_list li:nth-child(2), .member_list li:nth-child(4), .member_list li:nth-child(5), .member_list li:nth-child(7), .member_list li:nth-child(10), .member_list li:nth-child(12), .member_list li:nth-child(13), .member_list li:nth-child(15) {
    background: repeating-linear-gradient(-45deg, #fffd3a 0, #fffd3a 20px, #fffe86 20px, #fffe86 40px);
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 10000;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-inner {
  position: relative;
  width: min(90%, 1000px);
  margin: 8rem 0;
  padding: 3rem;
  background: repeating-linear-gradient(-45deg, #fdc1df 0, #fdc1df 20px, #fdc9e3 20px, #fdc9e3 40px);
  border-radius: 3rem;
  border: 8px solid #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .modal-inner {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 2rem 3rem;
  }
}
.modal h2 {
  width: 100%;
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.modal h2 span {
  display: inline-block;
  padding: 0 2rem;
  position: relative;
}
.modal h2 span::before, .modal h2 span::after {
  content: "";
  display: block;
  width: 5rem;
  height: 100%;
  background: url(../images/voice/dotted_pnk.png) no-repeat center/contain;
  position: absolute;
  top: 0;
}
.modal h2 span::before {
  left: 100%;
}
.modal h2 span::after {
  right: 100%;
}
.modal .profile {
  width: 98%;
  text-align: center;
  display: flex;
  gap: 0 20px;
  align-items: center;
  background: #fffd3a;
  padding: 2rem 2rem;
  border: 3px solid #000;
  border-radius: 1rem;
  margin: auto auto 3rem;
}
@media screen and (min-width: 768px) {
  .modal .profile {
    padding: 2rem 4rem;
    gap: 0 40px;
    margin-bottom: 2rem;
  }
}
.modal .profile picture {
  display: flex;
  align-items: center;
  width: 16rem;
  aspect-ratio: 1/1;
  position: relative;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .modal .profile picture {
    width: 18rem;
  }
}
.modal .profile picture img {
  width: 100%;
  border-radius: 50%;
  border: 3px solid #000;
}
.modal .profile_text {
  width: calc(100% - 20px - 16rem);
}
@media screen and (min-width: 768px) {
  .modal .profile_text {
    width: calc(100% - 40px - 18rem);
  }
}
.modal .profile .modal-name {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  text-align: left;
  width: 13rem;
  aspect-ratio: 130/51;
  background: url(../images/voice/tape.svg) no-repeat center/contain;
  margin-bottom: -2.5rem;
  position: relative;
  z-index: 2;
  transform: rotate(-4deg);
}
.modal .profile .modal-department {
  background: #fff;
  padding: 2rem;
  border-radius: 2rem;
  padding: 2rem 1rem;
  flex: 1;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 1rem;
  position: relative;
  border: 3px solid #000;
}
@media screen and (min-width: 768px) {
  .modal .profile .modal-department {
    font-size: 2.8rem;
  }
}
.modal .profile .modal-department::before {
  content: "";
  position: absolute;
  width: 16px;
  aspect-ratio: 23/35;
  background: url(../images/voice/arrow_s.svg) no-repeat left center/contain;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .modal .profile .modal-department::before {
    width: 23px;
    left: -21px;
    background: url(../images/voice/arrow.svg) no-repeat left center/contain;
  }
}
.modal .info {
  width: 100%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
}
@media screen and (min-width: 768px) {
  .modal .info {
    gap: 10px;
  }
}
.modal .info dl {
  position: relative;
  margin-bottom: 10px;
}
.modal .info dl dt {
  background: #f2248b;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(14px, 1.6rem, 16px);
  font-weight: 600;
  padding: 0 2rem;
  border-radius: 3rem;
  position: absolute;
}
.modal .info dl dd {
  box-sizing: border-box;
  background: #fff;
  border: 3px solid #000;
  padding: 1.6em 2rem 2rem;
  font-size: clamp(16px, 2rem, 20px);
  line-height: 1.2;
  border-radius: 1rem;
  margin-left: 10px;
  margin-top: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .modal .info dl dd {
    line-height: 1.6;
    padding: 1.5em 2rem 1.3rem;
  }
}
.modal .info dl.hobby, .modal .info dl.dream, .modal .info dl.message {
  width: 100%;
}
.modal .info dl.hobby dd, .modal .info dl.dream dd, .modal .info dl.message dd {
  text-align: left;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media screen and (max-width: 767px) {
  .modal .info dl.birthplace, .modal .info dl.club, .modal .info dl.faculty, .modal .info dl.mbti {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .modal .info dl.birthplace, .modal .info dl.club {
    width: calc(36.5079365079% - 5px);
  }
  .modal .info dl.faculty {
    width: 62.5396825397%;
  }
  .modal .info dl.hobby {
    flex: 1;
  }
  .modal .info dl.hobby dd {
    text-align: center;
  }
  .modal .info dl.mbti {
    width: 17.4603174603%;
  }
}
.modal-close {
  width: 60px;
  height: 60px;
  background: url(../images/workstyle/icon_close.svg) no-repeat center, #f2248b;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -50%);
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .modal-close {
    width: 80px;
    height: 80px;
    transform: translate(50%, -50%);
  }
}
.modal-close:hover {
  transform: translate(50%, -50%) scale(1.2);
}

.modal.is-active .modal-inner {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 767px) {
  #modal02 .modal-inner,
  #modal03 .modal-inner,
  #modal06 .modal-inner,
  #modal07 .modal-inner,
  #modal10 .modal-inner,
  #modal11 .modal-inner,
  #modal14 .modal-inner,
  #modal15 .modal-inner {
    background: repeating-linear-gradient(-45deg, #fffd3a 0, #fffd3a 20px, #fffe86 20px, #fffe86 40px);
  }
  #modal02 .profile,
  #modal03 .profile,
  #modal06 .profile,
  #modal07 .profile,
  #modal10 .profile,
  #modal11 .profile,
  #modal14 .profile,
  #modal15 .profile {
    background: #fdc1df;
  }
}
@media screen and (min-width: 768px) {
  #modal02 .modal-inner,
  #modal04 .modal-inner,
  #modal05 .modal-inner,
  #modal07 .modal-inner,
  #modal10 .modal-inner,
  #modal12 .modal-inner,
  #modal13 .modal-inner,
  #modal15 .modal-inner {
    background: repeating-linear-gradient(-45deg, #fffd3a 0, #fffd3a 20px, #fffe86 20px, #fffe86 40px);
  }
  #modal02 .profile,
  #modal04 .profile,
  #modal05 .profile,
  #modal07 .profile,
  #modal10 .profile,
  #modal12 .profile,
  #modal13 .profile,
  #modal15 .profile {
    background: #fdc1df;
  }
}
/* ========================================================
    theme
======================================================== */
.ttl {
  position: relative;
  background: url(../images/voice/dotted_pnk.png) repeat-x center/50px;
  margin: 15rem auto 10rem;
  text-align: center;
}
.ttl span {
  display: block;
  width: 100%;
  max-width: 65rem;
  height: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .ttl span {
    width: 80%;
  }
}

.theme01,
.theme02,
.theme03 {
  width: 100%;
  margin: auto;
}
.theme01 .inner,
.theme02 .inner,
.theme03 .inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 11rem;
}

.theme_box {
  width: 100%;
  border: 4px solid #fabe00;
  border-radius: 4rem;
  margin-bottom: 15rem;
  box-sizing: border-box;
  padding: 2rem 2.5rem 8rem;
}
@media screen and (min-width: 768px) {
  .theme_box {
    padding: 0 10rem 8rem;
  }
}
.theme_box .sub_ttl {
  background: #fff;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 2rem;
  font-weight: 700;
  padding: 0 2rem;
  margin: auto;
  transform: translateY(-50%);
  line-height: 1.2;
  font-size: clamp(24px, 3rem, 32px);
}
.theme_box .sub_ttl img.illust {
  width: 10rem;
}
.theme_box .sub_ttl span img {
  display: inline;
  width: 8rem;
}
.theme_box .q_ttl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 4rem;
  line-height: 1.4;
  font-weight: 500;
}
.theme_box .q_ttl:not(:first-of-type) {
  margin-top: 10rem;
}
.theme_box .q_ttl:has(.add) {
  margin-top: 16rem;
}
.theme_box .q_ttl_num {
  font-family: "Concert One";
  font-size: 6rem;
  line-height: 1;
  color: #f2248b;
  display: block;
  width: 11rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .theme_box .q_ttl_num {
    font-size: 6rem;
    width: 12rem;
  }
}
.theme_box .q_ttl_txt {
  position: relative;
  font-size: 3rem;
  font-weight: 600;
  display: block;
  background: #f2f2f2;
  border-radius: 2rem;
  width: calc(100% - 11rem);
  box-sizing: border-box;
  padding: 1.3rem 2rem;
}
@media screen and (min-width: 768px) {
  .theme_box .q_ttl_txt {
    font-size: 2.4rem;
    width: calc(100% - 11rem);
    padding: 1.3rem 4rem;
  }
}
.theme_box .q_ttl_txt .add {
  display: inline-block;
  border: 3px solid #f2248b;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: 100%;
  padding: 0.3rem 2rem 0.5rem;
  border-radius: 3rem;
  transform: rotate(-5deg) translateY(-30%);
  font-size: 2.4rem;
  color: #f2248b;
  font-style: normal;
}
.theme_box .q_ttl_txt .add::before, .theme_box .q_ttl_txt .add::after {
  content: "";
  display: block;
  position: absolute;
}
.theme_box .q_ttl_txt .add::before {
  background: #fff;
  width: 2rem;
  height: 1rem;
  bottom: -0.5rem;
  left: 20px;
}
.theme_box .q_ttl_txt .add::after {
  background: #f2248b;
  width: 3px;
  height: 2rem;
  bottom: -1.8rem;
  left: 25px;
  transform: rotate(30deg);
}
.theme_box .q_ttl_txt img {
  display: inline;
  width: 6rem;
  margin: 0 5px;
}
@media screen and (min-width: 768px) {
  .theme_box .q_ttl_txt img {
    width: 5rem;
  }
}
.theme_box .double-digit {
  margin-left: 3rem;
}
.theme_box .txt_block {
  padding-left: 12rem;
  padding-right: 4rem;
}
.theme_box .txt_block p {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.5;
  padding-bottom: 1em;
  color: #000000;
}
@media screen and (min-width: 768px) {
  .theme_box .txt_block p {
    font-size: 2.1rem;
  }
}
.theme_box .txt_block p small {
  font-size: 2.8rem;
  line-height: 1.3 !important;
}
@media screen and (min-width: 768px) {
  .theme_box .txt_block p small {
    font-size: 1.6rem;
  }
}
.theme_box > .img_block {
  margin: 0 auto 1rem;
}
.theme_box > .illust_box .illust_block {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .theme_box > .illust_box {
    display: flex;
    justify-content: flex-start;
  }
  .theme_box > .illust_box .illust_block {
    width: 43%;
  }
  .theme_box > .illust_box .txt_block {
    width: 52%;
  }
}

dl.interview {
  display: flex;
  gap: 30px 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  dl.interview {
    gap: 0 40px;
    align-items: center;
  }
}
dl.interview dt {
  width: 13rem;
  font-size: 2.1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  dl.interview dt {
    font-size: 2.1rem;
  }
}
dl.interview dt .photo {
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  dl.interview dt .photo {
    padding-top: 3rem;
  }
}
dl.interview dt .photo img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 4px solid #f2248b;
}
dl.interview dt:nth-of-type(even) .photo img {
  border-color: #fabe00;
}
dl.interview dt .name {
  font-weight: 600;
  font-size: clamp(15px, 1.8rem, 18px);
  line-height: 1.2;
}
dl.interview dt .answer {
  font-size: clamp(14px, 1.4rem, 14px);
  line-height: 1.2;
  display: block;
  border: 4px solid #f2248b;
  margin-top: -2rem;
  z-index: 1;
  background: #fff;
  box-shadow: 3px 3px 0 #fabe00;
  border-radius: 1rem;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  font-feature-settings: "palt";
  letter-spacing: -0.05em;
}
dl.interview dt:nth-of-type(even) .answer {
  border-color: #fabe00;
  box-shadow: 3px 3px 0 #f2248b;
}
dl.interview dd {
  padding: 2rem 2rem;
  color: #000000;
  width: calc(100% - 20px - 13rem);
  background: #ffe3f1;
  border-radius: 2rem;
  font-size: clamp(16px, 1.8rem, 20px);
  line-height: 1.8;
  position: relative;
}
@media screen and (min-width: 768px) {
  dl.interview dd {
    width: calc(100% - 40px - 13rem);
  }
}
dl.interview dd::before {
  content: "";
  display: block;
  width: 3.4rem;
  height: 2.6rem;
  position: absolute;
  top: 5rem;
  left: -2.4rem;
  transform: translateY(-50%);
  background: url(../images/voice/pink_fukidashi.svg) no-repeat center/contain;
}
@media screen and (min-width: 768px) {
  dl.interview dd::before {
    top: 50%;
  }
}
dl.interview dd:nth-of-type(even) {
  background: #fff799;
}
dl.interview dd:nth-of-type(even)::before {
  background: url(../images/voice/yellow_fukidashi.svg) no-repeat center/contain;
}

/* ========================================================
    schedule
======================================================== */
.schedule {
  background: #fbc8dd;
  margin-top: 30rem;
}
.schedule .ttl {
  transform: translateY(-50%);
  margin: unset;
}
.schedule .lead {
  margin: -8rem auto 0;
  padding: 0;
}
.schedule .note_wrap {
  position: relative;
  z-index: 0;
  padding: 10rem 0;
}
.schedule .note_wrap:nth-of-type(even)::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fffd3a;
  z-index: -2;
}
.schedule .note_wrap h3 {
  font-size: 5rem;
  font-weight: 600;
  padding-bottom: 6rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .schedule .note_wrap h3 {
    width: 550px;
    font-size: 4rem;
  }
}
.schedule .note_wrap h3 img {
  max-width: 40rem;
  position: relative;
  z-index: 1;
  transform: rotate(5deg);
}
@media screen and (min-width: 768px) {
  .schedule .note_wrap h3 img {
    max-width: 34rem;
    transform: rotate(0);
  }
}
.schedule .note_wrap h3 span {
  display: block;
  border: 3px solid #000;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.6;
  padding: 0.5rem 2rem 0.7rem;
}
.schedule .note_wrap h3 span.schedule01 {
  margin-top: -20px;
  margin-left: 2rem;
}
@media screen and (min-width: 768px) {
  .schedule .note_wrap h3 span.schedule01 {
    margin-left: 5rem;
    margin-top: -12px;
  }
}
.schedule .note_wrap h3 span.schedule02 {
  margin-top: -3px;
  margin-right: 0;
  margin-left: auto;
  background: #ffe730;
}
.schedule .note_wrap h3 span em {
  font-size: 70%;
  font-style: normal;
}
.schedule .note_wrap .note_photo {
  width: 100%;
  padding: 2rem;
  border: 3px solid #000;
  transform: rotate(5deg);
  background: #fff;
  margin-bottom: 6rem;
}
@media screen and (min-width: 768px) {
  .schedule .note_wrap .note_photo {
    width: 44rem;
    position: absolute;
    top: 0;
    right: 2rem;
  }
}
.schedule .note_wrap .note_photo > div {
  border: 3px solid #000;
  background: #ffe730;
}
.schedule .note_wrap .note_photo::before {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/voice/illust_clip02.png) no-repeat top center/contain;
  transform: rotate(-1deg);
  z-index: 10;
  top: -4.6rem;
  left: 4rem;
  width: 6.5rem;
  aspect-ratio: 131/295;
}
.schedule .note_wrap:nth-of-type(even) .note_photo > div {
  background: #fdc1df;
  z-index: -2;
}
.schedule .note_wrap .note {
  width: 90%;
  max-width: 1130px;
  margin: auto;
  background-color: #fff;
  background-image: repeating-linear-gradient(90deg, #fff9f8 0 4px, transparent 4px 30px), repeating-linear-gradient(0deg, #f4fff1 0 4px, transparent 4px 30px);
  border: 3px solid #000;
  padding: 6rem 4rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .schedule .note_wrap .note {
    padding: 6rem;
  }
}
.schedule .note_wrap .note::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffe730;
  transform: rotate(-1deg);
  z-index: -1;
}
.schedule .note_wrap .note::after {
  content: "";
  position: absolute;
  display: block;
  background: url(../images/voice/illust_clip.png) no-repeat top center/contain;
  transform: rotate(-1deg);
  z-index: 10;
  top: -5rem;
  right: 50%;
  width: 11.5rem;
  aspect-ratio: 236/221;
  transform: translateX(-50%);
}
.schedule .note_wrap .note dl {
  font-size: clamp(16px, 2.2rem, 24px);
  display: grid;
  grid-template-columns: 12rem 1fr;
  align-items: flex-start;
  font-weight: 600;
  max-width: 820px;
  margin: auto;
  position: relative;
}
.schedule .note_wrap .note dl::before {
  content: "";
  display: block;
  width: 12px;
  height: calc(100% - 4rem);
  position: absolute;
  top: 0;
  left: 6rem;
  z-index: 0;
  background: #dddddd;
  transform: translateX(-50%);
}
.schedule .note_wrap .note dl dt {
  background: #f2248b;
  color: #fff;
  border: 3px solid #000;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .schedule .note_wrap .note dl dt {
    line-height: 1.8;
    padding: 0.5rem 0;
  }
}
.schedule .note_wrap .note dl dd {
  margin-bottom: 3rem;
}
.schedule .note_wrap .note dl dd div {
  width: -moz-fit-content;
  width: fit-content;
  border: 3px solid #000;
  margin-left: -3px;
  box-sizing: border-box;
  padding: 0 4rem;
  color: #f2248b;
}
@media screen and (max-width: 767px) {
  .schedule .note_wrap .note dl dd div {
    line-height: 1.8;
    padding: 0.5rem 2rem;
  }
}
.schedule .note_wrap .note dl dd p {
  font-weight: 400;
  padding: 0 0 1rem 4rem;
  font-size: clamp(15px, 2rem, 20px);
}
@media screen and (max-width: 767px) {
  .schedule .note_wrap .note dl dd p {
    line-height: 1.6;
  }
}
.schedule .note_wrap .note dl dd:has(> div) p {
  padding-top: 1rem;
}
.schedule .note_wrap:nth-of-type(even) .note::before {
  background: #f2248b;
  border: 1px solid red;
  z-index: -1;
}/*# sourceMappingURL=voice.css.map */