@font-face {
  font-family: "josefin";
  src: url("../images/JosefinSlab-SemiBold.ttf") format("truetype");
}
* {
  box-sizing: border-box;
  color: #333333;
  padding: 0;
  margin: 0;
}
.pc {
  display: none;
}
.sp {
  display: block;
}
html {
  background-color: #fff;
  font-size: 62.5%;
  font-family: Century Gothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", serif;
}
img {
  height: auto;
  width: 100%;
}
a {
  text-decoration: none;
}
a.nolink {
  pointer-events: none;
  color: #ccc;
}
.h2-style {
  background: rgb(255, 160, 120);
  background: linear-gradient(90deg, rgba(255, 160, 120, 1) 0%, rgba(255, 83, 150, 1) 89%);
  /* background: #333333; */
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
  padding: 2% 0;
}
.h2-style span {
  display: block;
  color: #fff;
  font-size: 1.6rem;
}
.btn {
  margin-bottom: 10%;
}
.btn a {
  background-color: #ffe4e1;
  /* background: linear-gradient(to bottom, rgba(227, 215, 171, 1) 1%, rgba(144, 107, 62, 1) 100%); W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  color: #333;
  border-radius: 5px;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1% 4%;
  margin: auto;
  width: 40%;
  text-align: center;
}
.height {
  margin-top: 14rem;
}
/* スマホメイン */
header {
  position: relative;
}
.head-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1% 2%;
}
.head-inner .logo {
  /* padding-right: 20%;
  width: 70%; */
  width: 48%;
  margin-right: 2%;
}
.head-inner .logo img {
  height: 100%;
  width: auto;
  max-height: 7rem;
  margin-left: 10%;
}
.head-tel-icon {
  margin-right: 2%;
  width: 7%;
}
.head-inner .head-line-icon {
  width: 28%;
}
.head-inner .head-line-icon a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #333;
  border-radius: 200px;
}
.head-line-icon .icon {
  width: 25%;
}
.head-line-icon .txt {
  width: 75%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding-left: 10%;
  position: relative;
}
/* .head-line-icon .txt::after {
  content: ">";
  border: 1px solid #fff;
  border-radius: 50%;
  display: block;
  height: 18px;
  width: 18px;
  text-align: center;
  font-size: 1rem;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
} */

header .open {
  background: rgb(255, 160, 120);
  background: linear-gradient(90deg, rgba(255, 160, 120, 1) 0%, rgba(255, 83, 150, 1) 89%);
  /* background-color: #333; */
  color: #fff;
  text-align: center;
  padding: 1% 0;
  font-size: 1.2rem;
}
#fixed-header.is-show {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  opacity: 0.8;
}
#fixed-header.is-show .open {
  display: none;
}
/* ハンバーガーメニュー */
.hamburger {
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 150;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: #333333;
  transition: transform 0.3s;
}
.hamburger.is-active span {
  background-color: #ffffff;
}
.hamburger span:nth-child(1) {
  top: 30%;
}
.hamburger span:nth-child(2) {
  top: 60%;
}
.hamburger span:nth-child(3) {
  top: 90%;
}
/* ドロワーメニュー */
.drawer {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 130;
  width: 100%;
  height: 100vh;
  background-color: #333333;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer.is-active {
  visibility: visible;
  opacity: 1;
}
.drawer-inner {
  display: flex;
  height: 100%;
  padding: 20% 10%;
}
.drawer__list {
  display: flex;
  flex-wrap: wrap;
}
.drawer__item {
  width: 100%;
}
.drawer__item:not(:last-of-type) {
  margin-bottom: 6%;
}
.drawer__link {
  color: #ffffff;
  display: block;
  font-size: 1.6rem;
  position: relative;
}
.drawer__link::after {
  content: ">";
  display: inline-block;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.drawer__link span {
  font-size: 1.2rem;
  padding-left: 2%;
}
/* kvスライダー */
.kv.swiper-box {
  position: relative;
  margin-top: 4%;
  padding-bottom: 10%;
}
.kv.swiper-box .swiper {
  width: 100%;
  text-align: center;
}
.kv.swiper-box .swiper-pagination-bullet {
  background: pink;
  vertical-align: middle;
}
.kv.swiper-box .swiper-pagination-bullet-active {
  background: rgba(210, 176, 105, 1);
  height: 12px;
  width: 12px;
}
/* セラピスト一覧 */
.therapist-lists {
  padding: 6% 2%;
}
.therapist-lists li {
  background-color: rgba(255, 255, 255, 0.8);
  /* background-color: #fff; */
  box-shadow: 2px 2px 6px #dcdcdc;
  width: 49%;
  margin-bottom: 4%;
}
.therapist-lists .pic-pack {
  position: relative;
  overflow: hidden;
}
.therapist-lists .new {
  background-color: #ff0000;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10% 15% 0%;
  position: absolute;
  left: -15%;
  top: -2%;
  transform: rotate(-40deg);
}
.therapist-lists .foot-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1%;
  position: absolute;
  left: 0;
  bottom: 1%;
  width: 100%;
}
.therapist-lists .recom {
  background-color: #800000;
  border-radius: 4px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1% 3%;
  margin-right: 3%;
}
.therapist-lists .rank {
  /* background-color: #c0f1f2; */
  border-radius: 4px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 1% 3%;
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9), 0px 0px 3px rgba(0, 0, 0, 0.9);
  margin-right: 3%;
}
.therapist-lists .x-icon {
  background: #333;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 3%;
  width: 18%;
}
.therapist-lists .recom.opa,
.therapist-lists .rank.opa,
.therapist-lists .x-icon.opa,
.date-top .opa {
  opacity: 0;
}
.therapist-lists .name {
  font-size: 1.4rem;
  text-align: center;
}
.therapist-lists .size {
  font-size: 1.2rem;
  text-align: center;
}
.therapist-lists .time {
  /* background: linear-gradient(to bottom, rgba(227, 215, 171, 1) 1%, rgba(144, 107, 62, 1) 100%); */
  color: #333;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
}
.therapist-lists .comment {
  background: rgb(255, 160, 120);
  background: linear-gradient(90deg, rgba(255, 160, 120, 1) 0%, rgba(255, 83, 150, 1) 89%);
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  padding: 2% 0;
}
.therapist-lists .sche {
  /* background-color: #bcb581; */
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2% 0;
  text-align: center;
}
.therapist-lists .inday {
  text-align: center;
  margin: 1rem 0;
}
.therapist-lists .inday span {
  background-color: #e8718d;
  border-radius: 200px;
  color: #fff;
  display: inline-block;
  padding: 0 5%;
  font-size: 1.4rem;
}
.schedule-wrap .therapist-lists,
.therapist-wrap .therapist-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.therapist-wrap .therapist-lists {
  padding-top: 0;
}
/* topics */
.topics-lists {
  padding: 4% 2%;
}
.topics-lists li {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 2%;
}
.topics-lists li:not(:last-of-type) {
  margin-bottom: 3%;
}
.topics-lists dt {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1%;
}
.topics-lists dt span {
  font-size: 1.3rem;
  font-weight: normal;
  display: block;
}
.topics-lists .msg {
  padding: 3% 0;
  font-size: 1.8rem;
  overflow: hidden;
}
.topics-lists dd {
  display: none;
}
.topics-lists li:first-of-type dd {
  display: block;
}
.topic-open {
  position: relative;
}
.topic-open:after {
  content: "";
  display: block;
  background: url(../images/arrow.svg) no-repeat left center / 100% auto;
  height: 3rem;
  width: 3rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.active .topic-open:after {
  transform: translateY(-50%) rotate(-90deg);
}
/* new-face */
.new-face .swiper-slide {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 2px 2px 6px #dcdcdc;
}
/* link-wrap */
.link-lists {
  padding: 5% 4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.link-lists li {
  width: 47%;
  margin-bottom: 4%;
}
/* footer */
footer {
  background-color: #fffafa;
  padding: 10% 3% 25%;
}
footer .copy {
  text-align: center;
}
footer small {
  color: #333;
}
.foot-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10000;
}
.foot-nav-lists {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  /* background-color: rgba(255, 255, 255, 0.9); */
  padding: 2% 0 3%;
}
.foot-nav-lists li {
  width: 20%;
}
.foot-nav-lists li span {
  font-size: 1.2rem;
  text-align: center;
  display: block;
}
.foot-nav-lists li img {
  padding: 0 25%;
}
/* system */
.second-top-wrap {
  padding-top: 4%;
}
.second-top-wrap .h2-style {
  margin-bottom: 8%;
}
.system-wrap .base-pack {
  background-color: #333;
  margin: 0 2% 5%;
  padding: 1%;
}
.system-pack h2 {
  color: #fff;
  padding: 2% 3%;
}
.system-pack dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 0.5%;
}
.system-pack dl dt,
.system-pack dl dd {
  color: #fff;
  font-size: 1.6rem;
  border: 1px solid #fff;
}
.system-pack dl dt {
  padding: 2% 4%;
  width: 46%;
}
.system-pack dl dd {
  padding: 2% 4%;
  text-align: center;
  width: 53.5%;
}
.system-pack dl:nth-of-type(2n) dt,
.system-pack dl:nth-of-type(2n) dd {
  background-color: #5c5c5c;
}
.system-wrap .policy-pack {
  background-color: transparent;
  border: 1px solid #333;
  padding: 0;
}
.system-wrap .policy-pack h2 {
  background-color: #333;
  color: #fff;
}
.system-wrap .policy-pack .msg {
  padding: 4% 2%;
  font-size: 1.4rem;
  line-height: 1.6;
}
/* スケジュールページ */
.second .schedule-wrap .sch-date {
  padding: 0 3%;
}
.second .schedule-wrap .date-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 3%;
  font-size: 1.4rem;
}
.second .schedule-wrap .date-top span {
  position: relative;
}
.second .schedule-wrap .date-top .before {
  padding-left: 1.5rem;
}
.second .schedule-wrap .date-top .after {
  padding-right: 1.5rem;
}
.second .schedule-wrap .date-top .before::before,
.second .schedule-wrap .date-top .after::after {
  content: "";
  display: block;
  background: url(../images/arrow.svg) no-repeat left center / 100% auto;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  top: 50%;
}
.second .schedule-wrap .date-top .before::before {
  left: 0;
  transform: translateY(-50%) rotate(180deg);
}
.second .schedule-wrap .date-top .after::after {
  right: 0;
  transform: translateY(-50%);
}
.second .schedule-wrap .date-top .now {
  padding-left: 2rem;
}
.second .schedule-wrap .date-top .now::before {
  content: "";
  display: block;
  background: url(../images/calender-icon.svg) no-repeat left center / 100% auto;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.second .schedule-wrap .sch-week {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
}
.second .schedule-wrap .sch-week li {
  background-color: #fff;
  width: calc(100% / 7);
  text-align: center;
}
.second .schedule-wrap .sch-week li:not(:last-of-type) {
  border-right: 1px solid #ddd;
}
.second .schedule-wrap .sch-week li a {
  display: block;
  padding: 1% 0 0.5rem;
}
.second .schedule-wrap .sch-week .day {
  font-size: 1.2rem;
}
.second .schedule-wrap .sch-week .day .large {
  font-size: 2.2rem;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(0.5rem);
}
.second .schedule-wrap .sch-week .w {
  display: block;
  font-size: 1.4rem;
}
.second .schedule-wrap .sch-week li.active {
  background-color: #333;
}
.second .schedule-wrap .sch-week li.active .day,
.second .schedule-wrap .sch-week li.active .large,
.second .schedule-wrap .sch-week li.active .w {
  color: #fff;
}
.second .schedule-wrap .sch-week li .w.sat {
  color: #3090ff;
}
.second .schedule-wrap .sch-week li .w.san {
  color: #f46438;
}
/* トピックスページ */
.second .topics-wrap .topics-lists dd {
  display: block;
}
/* レビューページ */
.second .review-btn {
  margin: 0 auto 1.5rem;
  text-align: center;
  width: 94%;
}
.second .review-btn a {
  display: block;
  background-color: rgba(255, 255, 255, 0.6);
  border: 6px double #999;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1.5% 0;
}
.second .review-lists li {
  background-color: #fff;
  margin: 0 1%;
  padding: 2%;
}
.second .review-lists li:not(:last-of-type) {
  margin-bottom: 2rem;
}
.second .review-lists .name-flex {
  margin-bottom: 0.8rem;
}
.second .review-lists h2 {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  margin-right: 1rem;
}
.second .review-lists .post-btn {
  text-align: center;
  vertical-align: super;
}
.second .review-lists .post-btn a {
  background-color: #ddd;
  border-radius: 6px;
  display: inline-block;
  font-size: 1.2rem;
  padding: 1%;
}
.second .review-lists .photo {
  margin: 0 2%;
}
.second .review-lists .review-box {
  padding: 5%;
}
.second .review-box .auth-name {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.second .review-box .auth-day {
  font-size: 1.2rem;
  margin-bottom: 1.4rem;
}
.second .review-box .auth-msg {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.second .review-box .thanks-cmt {
  text-align: center;
  font-size: 1.2rem;
}
/* アクセスページ */
.access-pack {
  margin: 0 3% 5%;
}
.access-pack h2 {
  margin-bottom: 2rem;
}
.access-pack .access-data {
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
/* セラピスト詳細ページ */
.cerapist-top-pack {
  padding: 0 3%;
}
.cerapist-data {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cerapist-data span {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.8);
  font-size: 1.1rem;
  padding: 0 2%;
}
.cerapist-data .push {
  background-color: #800000;
}
.cerapist-data .rank {
  /* background-color: #fed84d; */
}
.cerapist-data .sche {
  background-color: #5c64cb;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 1% 2%;
}
.cerapist-name-pack {
  margin-bottom: 0.5rem;
}
.cerapist-name-pack h1 .new-icon {
  color: #fff;
  font-size: 1.4rem;
  background-color: orangered;
  border-radius: 4px;
  padding: 1% 2%;
  vertical-align: bottom;
}
.fukidashi {
  position: relative;
}
.fukidashi::before {
  content: "";
  display: inline-block;
  background: url(../images/fukidashi-bk.png) no-repeat left center / 100% auto;
  height: 2rem;
  width: 2rem;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.cerapist-size-pack {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.cerapist-size-pack .size {
  font-size: 1.4rem;
  margin-right: 1rem;
}
.cerapist-size-pack .x-icon {
  background: #333;
  border-radius: 50%;
  border: 1px solid #fff;
  padding: 1.5%;
  width: 8%;
}
.cerapist-type-pack {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5%;
  margin-bottom: 1rem;
}
.cerapist-type-pack span {
  border: 1px solid #333;
  border-radius: 2px;
  font-size: 1.2rem;
  padding: 1% 2%;
}
.therapist-wrap.detail-wrap .review-pack {
  margin-bottom: 1rem;
}
/* レイアウトのためのスタイル */
.swiper-fade .swiper-slide {
  margin-bottom: 1rem;
}
.slider-thumbnail .swiper-slide {
  opacity: 0.5;
  transition: opacity 0.5s;
  width: calc(100% / 5);
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
.cerapist-photo-pack {
  margin-bottom: 3rem;
}
.prof-pack h2,
.schedule-pack h2,
.review-pack h2 {
  background-color: #333;
  color: #fff;
  padding: 1%;
}
.prof-pack dl {
  padding: 1%;
}
.prof-pack dt {
  font-weight: bold;
  font-size: 1.4rem;
  border-bottom: 0.5px solid #ccc;
  padding-bottom: 0.4rem;
}
.prof-pack dd {
  padding: 1% 2% 4%;
  font-size: 1.4rem;
  overflow-wrap: break-word;
}
.schedule-pack {
  padding-bottom: 1.5rem;
}
.schedule-pack dl {
  display: flex;
  flex-wrap: wrap;
}
.schedule-pack dt {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  width: 30%;
  padding: 1rem 0;
}
.schedule-pack dd {
  border-bottom: 1px solid #ccc;
  font-size: 1.4rem;
  width: 70%;
  padding: 1rem;
}
.review-pack h2 span {
  color: #fff;
}
.review-pack .fukidashi::before {
  background: url(../images/fukidashi.png) no-repeat left center / 100% auto;
  height: 1.6rem;
  width: 1.6rem;
  margin-left: 1rem;
}
.auth-review-box {
  padding: 2% 2% 4%;
}
.auth-review-box:not(:last-of-type) {
  border-bottom: 1px dotted #ccc;
  margin-bottom: 0.5rem;
}
.auth-review-box h3 {
  background-color: #333;
  color: #fff;
  font-size: 1.4rem;
  padding: 1%;
}
.auth-review-box .auth-day {
  padding-left: 1%;
}
.auth-review-box .auth-msg {
  padding: 0 2%;
}
.auth-review-box .thanks-cmt {
  text-align: right !important;
}
.celapist-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.celapist-pagination a {
  font-size: 1.2rem;
  font-weight: bold;
}
.therapist-wrap.detail-wrap {
  padding-bottom: 6rem;
}
.therapist-wrap.detail-wrap .review-btn p {
  margin-bottom: 1rem;
}
/* レビュー投稿 */
.review-create-pack {
  padding: 0 5% 10%;
}
.review-create-pack .msg {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.review-create-pack input,
.review-create-pack select,
.review-create-pack textarea {
  background-color: #fff;
  font-size: 1.4rem;
  padding: 0.5rem;
}
.review-create-pack input {
  height: auto;
}
.review-create-pack li {
  margin-bottom: 1.5rem;
}
.review-create-pack li p {
  border-bottom: 1px dotted #ccc;
  font-size: 1.4rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.review-create-pack .day-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.review-create-pack .day-flex .form-select {
  width: 23%;
}
.review-create-pack .day-flex option {
  font-size: 1.4rem;
  padding: 0.5rem;
}
.review-create-pack .day-flex span {
  font-size: 1.4rem;
  padding: 0 0.5rem;
}
.review-create-pack .btn-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 54%;
  margin: 0 auto;
}
.review-create-pack .form-submit-button,
.review-create-pack .clear-btn {
  border-radius: 3px;
  border: 1px solid #cccccc;
  color: #555555;
  background-color: #ffffff;
}
.review-create-pack button {
  font-size: 1.4rem;
  text-align: center;
  width: 46%;
}
.review-create-pack .check-value {
  font-size: 1.6rem;
  border-bottom: none;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.sp.foot-elem .foot-logo {
  width: 60%;
  margin: 0 auto 2rem;
}
.sp.foot-elem p {
  text-align: center;
}
.sp.foot-elem {
  margin-bottom: 3rem;
}
.rec-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 60%;
  margin: 2rem auto 0;
}
.rec-btns li {
  border-radius: 5px;
  width: 100%;
  margin-bottom: 1.5rem;
}
.rec-btns li a {
  display: block;
  padding: 1rem 0;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 8px;
}
.rec-btns .rec-tel a {
  background-color: #efbdb4;
}
.rec-btns .rec-line a {
  background-color: #bbefb4;
}
.rec-btns .rec-mail a {
  background-color: #b5c7f0;
}
/* お問い合わせフォーム */
.rec-contact-pack form {
  margin: 0 auto;
  width: 90%;
}
.rec-contact-pack input,
.rec-contact-pack textarea,
.rec-contact-pack select {
  background-color: #fff;
  padding: 2%;
  font-size: 1.4rem;
}
.rec-contact-pack li {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: dotted 1px #ccc;
}
.rec-contact-pack li p {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  position: relative;
}
.rec-contact-pack li p::before {
  content: "■";
  display: inline-block;
  color: pink;
  padding-right: 0.5rem;
}
.rec-contact-pack .form-radio label {
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 3% 4%;
  margin-right: 2rem;
}
.rec-contact-pack .form-select {
  margin-bottom: 1rem;
}
.rec-contact-pack .form-submit-button {
  display: block;
  font-size: 1.4rem;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  width: 70%;
}
.thunks h1 {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 10%;
}
.thunks .msg-box {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 5rem;
}
.thunks .btn a {
  display: block;
  background-color: pink;
  font-size: 1.4rem;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  padding: 1rem 0;
  color: #fff;
}
.pageNation {
  text-align: center;
}
.pageNation a {
  font-size: 1.4rem;
  background-color: #ccc;
  border: 1px solid #ccc;
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin: 0 1%;
}
.pageNation a.current {
  background-color: #fff;
  border: 1px solid #ccc;
}
/* PC表示 */
@media (min-width: 751px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  .h2-style {
    padding: 1% 0;
  }
  header.pc .head-data {
    text-align: right;
    color: #333;
    font-size: 1.4rem;
  }
  header.pc .head-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    padding: 0 10% 1rem;
  }
  header.pc .head-inner .logo {
    padding-right: 0;
    width: 48%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  header.pc .head-inner .logo a {
    display: block;
    width: 31%;
  }
  header.pc .head-inner .logo img {
    width: auto;
    height: 100%;
    max-height: 14rem;
  }
  header.pc .shop-time-tel {
    width: 40%;
    text-align: right;
  }
  header.pc .shop-time-tel p {
    color: #333;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
  }
  header.pc .shop-time-tel span {
    color: #333;
  }
  header.pc .shop-time-tel .shop-time span {
    font-size: 3.7rem;
  }
  header.pc .shop-time-tel .shop-tel span {
    font-size: 4rem;
  }
  .pc-nav {
    /* background-color: #333; */
    background: rgb(255, 160, 120);
    background: linear-gradient(90deg, rgba(255, 160, 120, 1) 0%, rgba(255, 83, 150, 1) 89%);
  }
  .pc-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0 6%;
  }
  .pc-nav li a {
    color: #fff;
    display: block;
    font-size: 1.6rem;
    padding: 1rem 0;
    text-align: center;
  }
  .pc-nav li a span {
    color: #fff;
    display: block;
    font-size: 1.1rem;
  }
  .pc-nav li a:hover {
    opacity: 0.6;
  }
  .kv.swiper-box {
    margin-top: 1rem;
    padding-bottom: 3.5rem;
  }
  .schedule-wrap .therapist-lists,
  .therapist-wrap .therapist-lists {
    justify-content: flex-start;
    gap: 2.6%;
  }
  .therapist-lists {
    padding-bottom: 1rem;
  }
  .therapist-lists li {
    width: 23%;
  }
  .topics-lists {
    max-width: 900px;
    margin: 0 auto;
  }
  .topics-wrap .topics-lists .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .topics-wrap .topics-lists .thumb {
    width: 30%;
  }
  .topics-wrap .topics-lists .msg {
    width: 60%;
  }
  .swiper-box.new-face {
    margin-bottom: 3rem;
  }
  .link-lists {
    justify-content: flex-start;
    gap: 2.5%;
    padding: 2% 10%;
  }
  .link-lists li {
    width: 20%;
  }
  .foot-contents {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin-bottom: 4rem;
    align-items: flex-start;
  }
  .pc-foot-logo {
    width: 20%;
    margin-right: 3rem;
    align-self: center;
  }
  .foot-shop-data {
    /* margin-right: 25%; */
    width: 13%;
  }
  .foot-contents a,
  .foot-contents dt,
  .foot-contents dd,
  .foot-shop-name {
    color: #333;
  }
  .foot-contents dt {
    font-weight: bold;
    font-size: 1.2rem;
  }
  .foot-contents dd {
    font-size: 1.2rem;
  }
  .foot-contents dl {
    margin-bottom: 1rem;
  }
  .foot-shop-name {
    font-size: 1.4rem;
    font-weight: bold;
  }
  .foot-nav {
    display: flex;
    flex-wrap: wrap;
    width: 40%;
    margin: 0 0 0 auto;
  }
  .foot-nav li {
    width: calc(100% / 3);
    margin-bottom: 1rem;
  }
  .foot-nav li a {
    color: #333;
    font-size: 1.2rem;
  }
  footer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .second-top-wrap .h2-style {
    margin-bottom: 4%;
    line-height: 1.6;
  }
  .system-pack,
  .therapist-lists,
  .review-lists,
  .access-pack,
  .recruit-pack {
    max-width: 900px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .second .schedule-wrap .sch-date {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .second .schedule-wrap .date-top .now {
    font-size: 2.6rem;
    font-weight: bold;
    padding-left: 3rem;
  }
  .second .schedule-wrap .date-top .now::before {
    height: 2.6rem;
    width: 2.6rem;
  }
  .review-btn {
    max-width: 400px;
  }
  .review-lists .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .second .review-lists .photo {
    margin-left: 0;
    width: 37%;
  }
  .second .review-lists .review-box {
    width: 61%;
    border: 1px solid #ccc;
    padding: 2%;
  }
  .second .review-lists h2 {
    font-size: 2.4rem;
  }
  .second .review-lists li:not(:last-of-type) {
    margin-bottom: 4rem;
  }
  .therapist-wrap.detail-wrap {
    max-width: 900px;
    margin: 0 auto;
  }
  .therapist-wrap.detail-wrap .pc-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .cerapist-top-pack {
    width: 58%;
    padding: 0;
  }
  .cerapist-pc-right {
    width: 38%;
  }
  .schedule-pack dt {
    background-color: #eee;
  }
  .pc-view-pack {
    /* width: 58%; */
    width: 100%;
  }
  .celapist-pagination {
    margin-top: 2rem;
  }
  .therapist-wrap.detail-wrap .pc-top h1 {
    background-color: #333;
    color: #fff;
    font-size: 2.6rem;
    text-align: center;
    padding: 1% 0;
  }
  .therapist-wrap.detail-wrap .pc-top .celapist-pagination {
    margin-bottom: 2rem;
  }
  .height {
    margin-top: 0;
  }
  .review-create-pack {
    width: 900px;
    margin: 0 auto;
  }
  .rec-btns {
    width: 100%;
  }
  .rec-btns li {
    width: 31%;
  }
  .rec-btns li a {
    padding: 2rem 0;
  }
  .rec-contact-pack {
    margin-top: 6%;
  }
  .rec-contact-pack form {
    width: 70%;
  }
}
/* 全体背景 */
body {
  background-color: #eeffff;
}
.rank_platinum {
  background: linear-gradient(135deg, #1d262e 0%, #183d5c 100%);
  background-color: #1d262e;
}
.rank_gold {
  background: linear-gradient(45deg, #b67b03 0%, #daaf08 45%, #fee9a0 70%, #daaf08 85%, #b67b03 90% 100%);
  background-color: #fed84d;
}
.rank_silver {
  background: linear-gradient(45deg, #757575 0%, #9e9e9e 45%, #e8e8e8 70%, #9e9e9e 85%, #757575 90% 100%);
  background-color: #c0f1f2;
}
.h2-style {
  background: rgb(116, 151, 255);
  background: linear-gradient(90deg, rgba(116, 151, 255, 1) 0%, rgba(0, 192, 187, 1) 78%);
  font-family: "josefin";
}
.btn a,
.therapist-lists .new,
.cerapist-name-pack h1 .new-icon {
  background-color: #7aaed4;
  color: #fff;
}
.head-inner .head-line-icon a {
  background-color: #4cc764;
}
.system-wrap .base-pack,
.system-wrap .base-pack.policy-pack {
  background-color: #fff;
}
.system-pack h2,
.system-pack dl dt,
.system-pack dl dd {
  color: #333;
}
.system-pack dl dt,
.system-pack dl dd,
.system-pack dl:nth-of-type(2n) dt,
.system-pack dl:nth-of-type(2n) dd {
  background-color: #b0e2ff;
}
header .open,
.therapist-lists .comment {
  background: rgb(116, 151, 255);
  background: linear-gradient(90deg, rgba(116, 151, 255, 1) 0%, rgba(0, 192, 187, 1) 78%);
}
@media (min-width: 751px) {
  .pc-nav {
    /* background-color: #333; */
    background: rgb(116, 151, 255);
    background: linear-gradient(90deg, rgba(116, 151, 255, 1) 0%, rgba(0, 192, 187, 1) 78%);
  }
  .pc .x-follow {
    height: 600px;
    overflow-y: scroll;
  }
}

/* オリーブスパ */
.head-inner .head-line-icon a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  justify-content: center;
  padding: 0.4rem 0;
}
.sp-nav .nav-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 3%;
}
.sp-nav .nav-lists li {
  width: 48%;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.sp-nav .nav-lists li a {
  display: block;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.4rem;
}
.therapist-lists li {
  width: 32%;
}
.therapist-lists .syame {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #FF1493;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2px 6px;
}
.therapist-lists .time {
  border-top: 1px solid #ccc;
  padding: 0.6rem 0;
}
.therapist-lists .size {
  font-size: 1.1rem;
}
.newface-wrap .therapist-lists .time {
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
.newface-wrap .therapist-lists .inday {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(255,20,147,0.6);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem 0;
  text-align: center;
  width: 100%;
  margin: 0;
}
.newface-wrap .therapist-lists .size span {
  display: block;
}
.newface-wrap .therapist-lists .icon-box {
  background-color: #ccc;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  padding: 2% 5%;
}
.newface-wrap .therapist-lists .icon-box p {
  width: 47%;
  text-align: center;
  background-color: #FF1493;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 5px 0;
}
.photo-wrap .photo-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    padding: 0 5%;
    margin: 6% 0;
}
.photo-wrap .photo-lists li {
  border: 1px solid #ccc;
  width: 32%;
  padding: 0.4rem;
  margin-bottom: 1rem;
}
.photo-wrap .photo-lists .name {
  color: #E59100;
  font-size: 1.4rem;
  font-weight: bold;
}
.photo-wrap .photo-lists .post-day {
  font-size: 1.1rem;
  color: #ccc;
}
.photo-wrap .photo-lists .msg {
  font-size: 1.4rem;
}
.more-btn {
  background-color: #7aaed4;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 0.7rem 0;
  width: 80%;
  margin: 0 auto;
}
.more-link {
  width: 80%;
  margin: 0 auto;
}
.more-link a {
  display: block;
  background-color: #7aaed4;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  padding: 0.7rem 0;
}
.schedule-wrap,
.newface-wrap,
.photo-wrap,
.review-wrap,
.access-wrap {
  margin-bottom: 10%;
}
.event-wrap .swiper-main {
  overflow: hidden;
  margin-bottom: 20px;
  padding-top: 6%;
}
.event-wrap .swiper-thumb {
  padding-bottom: 6%;
  margin: 0 auto;
  width: 94%;
}
.review-wrap .review-lists {
  padding: 6% 5% 0;
  margin-bottom: 40px;
}
.review-wrap .review-lists li {
  border: 1px solid #ccc;
  position: relative;
  padding: 0.6rem;
  margin-bottom: 2rem;
}
.review-wrap .review-lists .pic {
  width: 20%;
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
}
.review-wrap .review-lists .cast-data {
  background-color: #333;
  padding: 2rem 1rem;
  width: 78%;
}
.review-wrap .review-lists .cast-data .name,
.review-wrap .review-lists .cast-data .size {
  color: #fff;
  font-size: 1.4rem;
}
.review-wrap .review-lists .auth-name {
  color: #ccc;
  font-size: 1.2rem;
  padding: 1rem 0;
}
.review-wrap .review-lists .msg {
  font-size: 1.4rem;
  line-height: 1.6;
}
.access-wrap .googleMap iframe {
  width: 100%;
}
.access-wrap .googleMap {
  padding: 6% 5%;
}
.foot-nav-lists {
  background-color: rgba(217,233,242,0.6);
}
.foot-nav-lists .hamburger {
  position: relative;
  top: auto;
  right: auto;
  margin: 0 auto;
}
.foot-banner-wrap {
  padding: 6% 5%;
}
.foot-banner-wrap li {
  margin-bottom: 20px;
}
/* more-view */
.list-data {
  opacity: 1;
}
.list-data.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
}
.list-data.is-hidden a {
  pointer-events: none;
}
.second .recruit-pack {
  padding-left: 5%;
  padding-right: 5%;
}
.second .new-face-inday {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(255, 20, 147, 0.6);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.5rem 0;
  text-align: center;
  width: 100%;
  margin: 0;
}
.thanks-msg {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 10rem;
}
.second .access-pack .access-map,
.second .access-pack .access-map iframe {
  width: 100%;
}
.second .photo-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 2%;
    padding: 0 5%;
    margin: 6% 0;
}
.second .photo-lists li {
  border: 1px solid #ccc;
  width: 48%;
  padding: 0.4rem;
  margin-bottom: 1rem;
}
.second .photo-lists .name {
  color: #E59100;
  font-size: 1.4rem;
  font-weight: bold;
}
.second .photo-lists .post-day {
  font-size: 1.1rem;
  color: #ccc;
}
.second .photo-lists .msg {
  font-size: 1.4rem;
}
@media (min-width: 751px) {
  .therapist-lists li {
    width: 23%;
  }
  .more-btn,
  .more-link {
    max-width: 400px;
    font-size: 1.6rem;
  }
  .photo-wrap .photo-lists {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    gap: 1%;
  }
  .photo-wrap .photo-lists li {
    width: 24%;
  }
  .event-wrap .swiper-main {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .event-wrap .swiper-thumb {
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
  }
  .review-wrap .review-lists {
    display: flex;
    flex-wrap: wrap;
    padding: 6% 0 0;
    gap: 2%;
  }
  .review-wrap .review-lists li {
    width: 48%;
  }
  .review-wrap .review-lists .pic {
    width: 15%;
  }
  .review-wrap .review-lists .cast-data {
    width: 83%;
  }
  .access-wrap {
    margin-bottom: 0;
  }
  .foot-banner-wrap {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .foot-banner-wrap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .foot-banner-wrap li {
    width: 48%;
  }
  .second .recruit-pack {
    padding: 0;
  }
  .second .photo-lists {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .second .photo-lists li {
    width: 32%;
  }
}
.kv {
  margin-bottom: 3rem;
}
.photo-lists iframe {
  min-height: 600px;
}
.event-box {
  border: 2px solid #ccc;
  border-radius: 20px;
  padding: 30px;
  width: 90%;
  margin: 0 auto;
}
.event-box.flex {
  display: flex;
  align-items: flex-start;
}
.event-box.flex img {
  width: 20%;
}
.event-box h3 {
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: underline;
  padding: 0 10px;
}
.event-box p {
  font-size: 1.4rem;
  padding: 20px 10px;
  line-height: 1.6;
}
@media (min-width: 751px) {
}