/*list*/

.castlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, 49.25%);
  justify-content: space-between;
  padding: 0 0.25rem;
  grid-auto-rows: max-content;
}
.cast_data {
  text-align: center;
  margin-top: 0.2rem;
}
.cast_data .name {
  font-size: 1rem;
  padding: 0.5rem 0;
}
@media screen and (min-width: 640px) {
  .castlist {
    grid-template-columns: repeat(auto-fit, 32%);
    justify-content: flex-start;
    grid-gap: 2%;
  }
  .castlist + .btn01 {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 900px) {
  .castlist {
    grid-template-columns: repeat(auto-fit, 23%);
    grid-gap: 2.6%;
  }
}

@media screen and (min-width: 1100px) {
  .castlist {
    grid-template-columns: repeat(auto-fit, 21%);
    grid-gap: 5.2%;
  }
  .castlist + .btn01 {
    margin-top: 15rem;
  }
}

.therapist-box {
  position: relative;
  border: 2px solid #e5dd9c;
  padding: 4px;
  background: #fff;
  border-radius: 7px;
}

.therapist-box .photo {
  position: relative;
}

.therapist-box .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.therapist-box .photo .today-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  /* height: 0; */
  border-style: solid;
  border-width: 0 50px 50px 0;
  border-color: transparent #c9bd57 transparent transparent;
  z-index: 99;
  display: none;
}

.therapist-box .photo .today-icon span {
  color: #fff;
  font-size: 11px;
  width: fit-content;
  position: absolute;
  right: -46px;
  top: 6px;
  display: block;
  z-index: 99;
  word-break: keep-all;
}

.therapist-box .photo .grade-icon {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
  left: 0;
  z-index: 99;
}

.therapist-box .sns-icon {
  display: grid;
  justify-content: right;
  position: absolute;
  right: 0.25rem;
  bottom: 12%;
  z-index: 99;
}

.therapist-box .sns-icon img {
  width: 30px;
  height: auto;
  object-fit: contain;
  aspect-ratio: unset;
}

.therapist-box p.catchcopy {
  font-size: 16px;
  color: #555;
  line-height: 1.4;
  padding: 0.25rem 0.1rem;
  /* display: -webkit-box; */
  /* -webkit-line-clamp: 1; */
  /* -webkit-box-orient: vertical; */
  overflow: hidden;
  width: 100vw;
  white-space: nowrap;
}

.therapist-box p.catchcopy {
  /* 追加20221210 */
  padding-left: 100%;
  /* 追加20221210ここまで */
  animation: marquee 10s linear infinite;
}
.catchcopy-box {
  background: #ffffff;
  overflow: hidden;
  position: relative;
  z-index: 0;
  top: 0;
  left: 0;
}

@keyframes marquee {
  from {
    transform: translate(0);
  }
  to {
    transform: translate(-100%);
  }
}
.therapist-box p.date {
  padding: 0 0 6px 0;
  font-size: 14px;
}

.therapist-box p.date span {
  display: block;
  line-height: 1.4;
}

.therapist-box .profile-icon {
  margin-top: 0 !important;
}
.therapist-box .profile-icon,
.therapist-single .profile-icon {
  display: grid;
  grid-template-columns: repeat(auto-fit, 48%);
  justify-content: space-between;
  /* margin: 10px 0; */
  align-content: baseline;
}

.therapist-box .profile-icon {
  width: 100%;
  display: flex;
  font-size: 2.95vw;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.therapist-box .profile-icon li {
  width: 49.25%;
  text-align: center;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #e5dd9c 0%, #fbffc5 70%, #e5dd9c 100%);
  color: #454545;
  border-radius: 0.25rem;
  padding: 0.2rem 0 0.25rem;
}
.therapist-box .profile-icon li {
}

.therapist-box .todays-time-box {
  background: #2a2a2a;
  margin-top: 0.25rem;
  font-size: 15px;
  color: #fff;
  padding: 0.25rem 0;
  text-align: center;
  border-radius: 0.25rem;
}
.therapist-box .todays-time p {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-shadow: 0 0 7px #fff; */
  font-size: 1.1rem;
}
.therapist-box .todays-time p {
  display: flex;
  justify-content: center;
  align-items: center;
  /* text-shadow: 0 0 7px #fff; */
  font-size: 1.1rem;
}

.therapist-box .todays-time p span {
  margin-bottom: 0;
  margin-top: 2px;
  margin-right: 3px;
}

.therapist-box .room {
  text-align: center;
}

.therapist-box .guide {
  /* border: 1px #CCC solid; */
  /* text-align: center;
    background: #fff;
    border: 1px solid #454545; */
}

/*single*/
.therapist-single {
  display: grid;
  grid-template-columns: repeat(auto-fit, 100%);
  justify-content: space-between;
  position: relative;
}

.therapist-single h1.name {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  border-bottom: 1px solid #ccc;
  width: 100%;
  display: flex;
  align-items: center;
}

.therapist-single .profile-icon li {
  background: linear-gradient(135deg, #e5dd9c 0%, #fbffc5 70%, #e5dd9c 100%);
  color: #454545;
  /* border: 1px solid #0053c5; */
  padding: 7px 0;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin: 0 0 5px 0;
  border-radius: 4px;
  line-height: 1;
}

.therapist-single .grade-icon {
  line-height: 1.6;
  position: absolute;
  width: 100%;
  bottom: 0;
  font-size: 1.1rem;
  padding: 0.25rem 0;
  text-align: center;
}

.therapist-single p.sns-icon {
  display: grid;
  grid-template-columns: repeat(auto-fit, 25px);
  position: absolute;
  top: 8px;
  right: 0;
  width: 22%;
  grid-gap: 4px;
  justify-content: right;
}

.therapist-single p.sns-icon a {
}

.therapist-single p.sns-icon img {
  width: 100%;
  height: auto;
}

.therapist-single .data {
  position: absolute;
  top: 44px;
  left: 0;
}

.therapist-single .photo {
  width: 90%;
  margin: 75px auto 0 auto;
  position: relative;
}

.therapist-single .photo .slider-for img {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
}

.therapist-single .photo .today-icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 56px;
  /* height: 54px; */
  border-style: solid;
  border-width: 0 68px 68px 0;
  border-color: transparent #c9bd57 transparent transparent;
  z-index: 99;
  display: none;
}

.therapist-single .photo .today-icon span {
  color: #fff;
  font-size: 14px;
  width: fit-content;
  position: absolute;
  right: -58px;
  top: 5px;
  display: block;
  z-index: 99;
}

.therapist-single .photoarea {
  position: relative;
}
.therapist-single .photo ul.slider-nav {
  margin: 10px 0;
}

.therapist-single .photo ul.slider-nav img {
  aspect-ratio: 3/4;
  width: 100%;
  object-fit: cover;
  height: auto;
}

.therapist-single .photo .slider-nav .slick-slide {
  margin: 0 18px 0 0;
}

.therapist-single .btn_scheudle a {
  display: none;
  align-items: center;
  border: 1px solid #666;
  justify-content: center;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  margin: 0 0 15px 0;
  width: 100%;
  box-sizing: border-box;
  background: rgb(232, 232, 232);
  background: linear-gradient(0deg, rgba(232, 232, 232, 1) 0%, rgba(255, 255, 255, 1) 38%);
}

.therapist-single .pickup dt {
  background: #555;
  color: #fff;
  padding: 10px;
  line-height: 1;
}

.therapist-single .pickup dd {
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.therapist-single .comment {
  border: 1px solid #ccc;
  /* border-radius: 7px; */
  margin: 15px 0;
}

.therapist-single .comment dt {
  padding: 7px;
  /* border-radius: 6px 6px 0 0; */
  background: rgba(255, 255, 255, 0.7);
}

.therapist-single .comment.cast dt {
  background: #555;
  color: #fff;
}

.therapist-single .comment.master dt {
  background: #555;
  color: #fff;
}

.therapist-single .comment dd {
  padding: 7px;
  /* background: rgba(255,255,255,0.7); */
}

.single-cast-calendar .calendar {
  margin: 0 0 20px 0;
}

.single-cast-calendar .calendar ul {
  margin: 0;
}

.single-cast-calendar .calendar ul li {
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 7px;
  font-size: 16px;
  border-bottom: 1px solid #ccc;
  box-sizing: border-box;
  justify-content: space-around;
}

.single-cast-calendar .calendar ul li.sat a.date {
  color: #0043ff;
}

.single-cast-calendar .calendar ul li.sun a.date {
  color: red;
}

.single-cast-calendar .calendar ul li a.date {
  line-height: 1.2;
  display: flex;
  padding: 4px 0;
  margin: 0 10px 0 0;
}
.single-cast-calendar .calendar ul li span.time {
  display: block;
  text-align: center;
  width: 43%;
}

.single-cast-calendar .calendar ul li .schedule-castreserve-btn {
  display: flex;
  border: 1px solid #ccc;
  font-size: 12px;
  align-items: center;
  border-radius: 5px;
  line-height: 1;
  padding: 7px 5px 7px 10px;
  background: rgb(232, 232, 232);
  background: linear-gradient(0deg, rgba(232, 232, 232, 1) 0%, rgba(255, 255, 255, 1) 38%);
  width: 30%;
  justify-content: center;
}

.single-cast-calendar .calendar ul li .schedule-castreserve-btn span {
  font-size: 18px;
  margin-top: 2px;
  margin-right: 2px;
}

.therapist-single .calendar ul li .schedule-castreserve-btn span {
  color: #666;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .therapist-single {
    grid-template-columns: repeat(auto-fit, 52% 43%);
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
  }
  .therapist-single h1.name {
    position: relative;
    top: auto;
    left: auto;
    font-size: 23px;
    border-bottom: 1px solid #ccc;
    width: 100%;
    display: flex;
    align-items: center;
  }
  .therapist-single .data {
    position: relative;
    top: auto;
    left: auto;
  }

  .therapist-single .photo {
    width: 100%;
    margin: 0;
    position: relative;
  }

  .therapist-single-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, 52% 43%);
    justify-content: space-between;
    margin: 40px auto;
    width: 100%;
    max-width: 1100px;
  }

  .single-cast-calendar .calendar ul li span.time {
    width: 53%;
  }
}

.inner_under {
  width: 100%;
}
.catchcopy {
  font-size: 1.25rem;
  line-height: 1.4;
}
.profile-wrap {
  padding: 0 1rem;
}
.therapist-single .photo {
  width: 100%;
}
.slider-nav.slick-initialized.slick-slider img {
  aspect-ratio: 4/4 !important;
  width: 20%;
}
.top_eventbanner .slider-nav .slick-slide img {
  aspect-ratio: unset !important;
}
.slider-nav.slick-initialized.slick-slider .slick-track {
  margin-left: unset;
  margin-right: unset;
}

/* 口コミカスタム; */

.css-1usxwxi {
  display: none !important;
}
.css-1ef7y0r {
  display: none !important;
}
.css-105z36w {
  background: none;
}
.css-1llg1ya {
  display: none !important;
}
.css-4kk4hk {
  display: none !important;
}
.css-1k6g2ir {
  position: relative;
  box-shadow: none !important;
}
.css-auobc3 {
  box-shadow: none !important;
  border-bottom: 1px solid #bbb;
}
.css-1cpjif9 {
  position: absolute;
  right: 0.75rem;
  bottom: -0.5rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
}
.css-5atsda {
  display: none !important;
}
.css-t84myq {
  display: none;
}
.css-1l4w6pd {
  display: none !important;
}
.css-1vm7xmc {
  display: none !important;
}
.css-k008qs {
  flex-direction: row-reverse;
}
.css-1v7shu4 {
  margin-right: 0.5rem;
  margin-left: 0 !important;
  font-size: 0.9rem;
  font-weight: bold;
  color: #555;
}
.css-u60qnr {
  color: #555 !important;
  font-weight: bold;
}
.css-1v7shu4::before {
  content: "平均評価 / ";
}
.css-nkmskm {
  margin-bottom: 0 !important;
}
.css-1kbmarl {
  padding: 0 !important;
}
.profile-review {
  background: #fff;
  margin-bottom: 5rem;
  border-radius: 8px;
}
.css-1b9e8o5 {
  position: relative;
  padding: 1rem 0;
}
.css-j6jvsx {
  position: absolute !important;
  bottom: -4rem;
  left: 0;
}
.css-x28z19 {
  /* display: none!important; */
}
.css-1eh296d {
  /* display: none!important; */
}
.css-1eh296d:after {
  display: block;
  content: "投稿完了";
}
.css-105z36w {
  padding-bottom: 0 !important;
}
.css-16lxqtw {
  padding-top: 5rem !important;
  padding-bottom: 8rem !important;
}
@media screen and (min-width: 640px) {
  .therapist-box .profile-icon {
    font-size: 14px;
  }
  .therapist-box .photo .grade-icon {
    font-size: 1.1rem;
  }
}

.frame {
  /* background-image: url(../img/common/cast_frame.png); */
  position: absolute;
  background-size: cover;
}
.therapist-single .frame {
  width: 45px;
  height: 45px;
}
.therapist-single .frame.lt {
  left: -7px;
  top: -7px;
  z-index: 99;
  transform: scale(-1, 1);
}
.therapist-single .frame.rt {
  right: -7px;
  top: -7px;
  z-index: 99;
}
.therapist-single .frame.lb {
  left: -7px;
  bottom: -7px;
  z-index: 1;
  transform: scale(-1, -1);
}
.therapist-single .frame.rb {
  right: -7px;
  bottom: -7px;
  transform: scale(1, -1);
  z-index: 1;
}

.therapist-single .photo {
  border-radius: 5px;
  padding: 0.5rem;
  box-sizing: border-box;
  border: 2px solid #e7ce78;
}
.therapist-single .photo .today-icon {
  right: 0.5rem;
  top: 0.5rem;
}
.therapist-single .name.pc,
.therapist-single .sns-icon.pc {
  display: none !important;
}
.therapist-single .profile-icon.pc {
  opacity: 0;
  visibility: hidden;
  height: 0;
}
@media screen and (max-width: 640px) {
  .therapist-single .photo {
    margin: 0 auto;
  }
}
@media screen and (min-width: 640px) {
  .therapist-single .profile-icon.pc {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .therapist-single .sns-icon.pc {
    display: grid !important;
  }
  .therapist-single .name.pc {
    display: flex !important;
  }
}
.therapist-single .sns-icon.sp {
  top: unset;
  bottom: 3rem;
  right: 1rem;
}
