@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda+SC:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap");
@import url("all.css");
/*===============================

共通

================================*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
/*
補足
================================*/
.br_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br_sp {
    display: block;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .br_pc {
    display: none;
  }
}

.flex {
  display: flex;
}

/*===============================

タイトル

================================*/
.ttl {
  padding: 0 0 60px;
  font-size: 5rem;
  font-family: "Bodoni Moda SC", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-right: -0.4em;
}
@media screen and (max-width: 767px) {
  .ttl {
    padding: 0 0 30px;
    font-size: 4rem;
    letter-spacing: 0.3em;
    margin-right: -0.3em;
  }
}

/*
調整
================================*/
.inner {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 50px 0;
  }
}

.adjustment {
  margin: 70px 0 0;
}

.shadow_w {
  text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff;
}

.white {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}

.fade_wrap {
  position: relative;
  margin: 0 auto;
}

.fademovie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.fade_text_02 {
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
}

.fade_text_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 1;
}

.fade_click_inner {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 103%;
  height: 103%;
  border-radius: 50%;
  background-color: #fff;
  z-index: 1;
}

.fade_image {
  position: absolute;
  top: 3.5%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 92%;
  height: 92%;
  z-index: 1;
  object-fit: cover;
}

.fade_movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fade_click {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 100px;
}

.swiper-slide-active .fade_text_01 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_02 {
  animation: slideFromText 1s ease 0s 1 normal;
}

.swiper-slide-active .fade_text_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_image {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_movie {
  animation: slideFromRightMovie 555.5s ease 0s 1 normal;
}

.swiper-slide-active .fade_click {
  animation: slideFromClick 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

.swiper-slide-active .fade_click_inner {
  animation: slideFromWhite 1.5s ease 0s 1 normal;
  animation-fill-mode: forwards;
}

@keyframes slideFromText {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromClick {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes slideFromWhite {
  0%, 25% {
    transform: translateX(0px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 0;
  }
}
.main_pc_01 {
  animation-delay: 0.5s;
}

.main_pc_02 {
  animation-delay: 1s;
}

.main_pc_03 {
  animation-delay: 1.5s;
}

.main_pc_04 {
  animation-delay: 2s;
}

.main_pc_05 {
  animation-delay: 2.5s;
}

.main_pc_06 {
  animation-delay: 3s;
}

.main_pc_07 {
  animation-delay: 3.5s;
}

.main_pc_08 {
  animation-delay: 4.5s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeStay {
  animation-name: fadeStayAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeStayAnime {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mainFrom01 {
  0%, 25% {
    transform: translateY(5px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@keyframes mainFrom02 {
  0%, 25% {
    transform: translateY(0px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/*
オン・オフ
================================*/
.button_more {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #7335ff;
  font-size: 18px;
  border-radius: 30px;
  width: 320px;
  height: 60px;
  margin: auto;
  font-weight: bold;
  border: 1px solid #7335ff;
  position: relative;
  transition: 0.3s;
  background-color: #ffffff;
}

.button_more::before {
  content: "CLICK!!";
  display: block;
  font-size: 1.4rem;
  background-color: #7335ff;
  color: #fff;
  border-radius: 3px;
  padding: 5px 10px 7px;
  position: absolute;
  top: 0;
  left: 10px;
  transform: translate(-5px, -30%);
  transition: 0.3s;
}

.button_more:hover::before {
  transform: translate(-5px, -50%);
}

.button_pickup {
  display: flex;
  margin: 20px 0 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 5px;
  width: 320px;
  height: 60px;
  position: relative;
  transition: 0.3s;
  background-color: #7335ff;
}
@media screen and (max-width: 768px) {
  .button_pickup {
    width: 100%;
    height: 50px;
    margin: 0;
    font-size: 1.4rem;
  }
}

.button_pickup::before,
.button_pickup::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform-origin: 100% 50%;
  height: 2px;
  width: 12px;
  background-color: #fff;
  border-radius: 2px;
  will-change: transform;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .button_pickup::before,
.button_pickup::after {
    right: 5px;
  }
}

.button_pickup::before {
  transform: translateY(-50%) rotate(30deg);
}

.button_pickup::after {
  transform: translateY(-50%) rotate(-30deg);
}

.button_pickup:hover::before {
  transform: translate(5px, -50%) rotate(30deg);
}

.button_pickup:hover::after {
  transform: translate(5px, -50%) rotate(-30deg);
}

.back-btn {
  width: 300px;
  margin: auto;
  margin-top: 50px;
  background-color: gray;
  border-radius: 100vh;
}
.back-btn a {
  display: block;
  padding: 10px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}

.color01 {
  color: #ff3980;
}

.color02 {
  color: #ff7706;
}

.color03 {
  color: #44b9a4;
}

.color04 {
  color: #00d8ff;
}

.color05 {
  color: #b931ff;
}

.color06 {
  color: #b39003;
}

.color07 {
  color: #ff83a3;
}

.color08 {
  color: #86ddcd;
}

.bg_color01 {
  background-color: #ff8caa;
}

.bg_color02 {
  background-color: #31ecb6;
}

.bg_color03 {
  background-color: #fff100;
}

html {
  font-size: 62.5%;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  -webkit-tab-size: 4;
  tab-size: 4;
  scroll-padding-top: 120px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  overflow-x: hidden;
  background-color: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 1.6rem;
}

img {
  max-width: 100%;
}

#wrapper {
  width: 100%;
  overflow-x: hidden !important;
}

/*===============================

メイン

================================*/
main {
  padding: 90px 0 0;
}
@media screen and (max-width: 767px) {
  main {
    padding: 60px 0 0;
  }
}

aside {
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 100vh;
  border-left: 1px solid #ccc;
  backdrop-filter: blur(10px);
  z-index: 100;
}

/*===============================

出勤情報

================================*/
.schedule {
  padding: 100px;
}
@media screen and (max-width: 767px) {
  .schedule {
    padding: 50px 20px 20px;
  }
}
.schedule ul {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #e8e4e2;
  border-left: 1px solid #e8e4e2;
}
.schedule li {
  width: 25%;
  border-bottom: 1px solid #e8e4e2;
  border-right: 1px solid #e8e4e2;
}
@media screen and (max-width: 767px) {
  .schedule li {
    width: 50%;
  }
}
.schedule figure {
  margin: 50px;
}
@media screen and (max-width: 767px) {
  .schedule figure {
    margin: 10px;
  }
}
.schedule a {
  text-decoration: none;
}
.schedule .image {
  position: relative;
}
.schedule .image .nmb {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 60px;
  padding: 5px 0;
  background-color: white;
  border-radius: 100vh;
  color: black;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.schedule .data {
  position: relative;
}
.schedule .data .icon {
  position: absolute;
  display: flex;
  top: 30px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .schedule .data .icon {
    top: 20px;
  }
}
.schedule .data .icon img {
  width: 40px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .schedule .data .icon img {
    width: 30px;
    margin-left: 3px;
  }
}
.schedule .name {
  padding: 20px 0 0;
  font-size: 3.3rem;
  font-family: "Bodoni Moda SC", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .schedule .name {
    padding: 5px 0 0;
    font-size: 2.5rem;
  }
}
.schedule .name span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .schedule .name span {
    display: block;
    padding: 5px 0 0;
  }
}
.schedule .size {
  padding: 10px 0;
  font-size: 1.5rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .schedule .size {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.schedule .time {
  padding: 10px 0;
  border: 1px solid black;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .schedule .time {
    padding: 8px 0;
    font-size: 1.8rem;
  }
}
.schedule .book {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  background-color: black;
  color: white;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .schedule .book {
    margin: 5px 0 0;
    font-size: 2rem;
  }
}
.schedule .book a {
  display: block;
  padding: 10px 0;
  color: white;
}
@media screen and (max-width: 767px) {
  .schedule .book a {
    padding: 8px 0;
  }
}
.schedule .book_off {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 0;
  background-color: #efeeec;
  color: white;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .schedule .book_off {
    margin: 5px 0 0;
    padding: 8px 0;
    font-size: 2rem;
  }
}

.week {
  width: 95%;
  max-width: 1600px;
  margin: auto;
  background: #fff;
}
.week dl {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 100px;
}
@media screen and (max-width: 767px) {
  .week dl {
    padding: 0 0 20px;
  }
}
.week dt {
  width: 14.2857142857%;
  position: relative;
  letter-spacing: 0.1rem;
}
.week dt + dt {
  border-left: 1px solid #eee;
}
.week a {
  display: block;
  padding: 10px 0 5px 0;
  color: #000;
  font-family: "Bodoni Moda SC", serif;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}
.week p {
  font-size: 20px;
}
.week .current {
  background: rgba(250, 162, 167, 0.5);
}
.week .month {
  vertical-align: top;
  position: relative;
  top: -0.3em;
  font-size: 1.2rem;
}
.week .day,
.week .day-on {
  display: inline-block;
  width: 70%;
  margin-top: 5px;
  padding: 3px;
  border-radius: 100vh;
  background-color: #f5f5f5;
  font-size: 1.2rem;
}
.week .day-on {
  background: rgba(255, 255, 255, 0.4);
}
.week .dotw {
  margin-top: 5px;
  padding: 3px;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .week {
    width: 100%;
    min-width: auto;
    margin-bottom: 5px;
  }
}
/*===============================

新人紹介

================================*/
.newface {
  padding: 100px 70px;
  background-color: #999;
}
@media screen and (max-width: 767px) {
  .newface {
    padding: 100px 10px;
  }
}
.newface ul {
  display: flex;
  flex-wrap: wrap;
}
.newface li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .newface li {
    width: 50%;
  }
}
.newface figure {
  margin: 30px;
}
@media screen and (max-width: 767px) {
  .newface figure {
    margin: 10px;
  }
}
.newface .text {
  padding: 0 0 30px;
  font-size: 2rem;
  text-align: center;
}
.newface .image {
  position: relative;
}
.newface .image .nmb {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 60px;
  padding: 5px 0;
  background-color: white;
  border-radius: 100vh;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
}
.newface .data {
  position: relative;
}
.newface .data .icon {
  position: absolute;
  display: flex;
  top: 30px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .newface .data .icon {
    top: 20px;
  }
}
.newface .data .icon img {
  width: 40px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .newface .data .icon img {
    width: 30px;
    margin-left: 3px;
  }
}
.newface .name {
  padding: 30px 0 0;
  font-size: 3.3rem;
  font-family: "Bodoni Moda SC", serif;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .newface .name {
    padding: 10px 0 0;
    font-size: 2.5rem;
  }
}
.newface .name span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .newface .name span {
    display: block;
    padding: 5px 0 0;
  }
}
.newface .size {
  padding: 10px 0 20px;
  font-size: 1.5rem;
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .newface .size {
    font-size: 1.3rem;
    font-weight: 500;
  }
}
.newface .time {
  padding: 10px 0;
  border: 1px solid white;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}
.newface .book {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  padding: 10px 0;
  background-color: white;
  color: #000;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.bannner ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .bannner ul {
    flex-wrap: wrap;
  }
}
.bannner li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .bannner li {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .price {
    padding: 30px 0 0;
  }
}
.price .ttl {
  padding: 0 0 100px;
  font-size: 15rem;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
}
@media screen and (max-width: 767px) {
  .price .ttl {
    padding: 0 0 50px;
    font-size: 10rem;
    letter-spacing: 0.15em;
    margin-right: -0.15em;
  }
}
.price__table {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 0 100px;
  font-feature-settings: "palt";
}
.price__table th {
  border: 1px solid #ccc;
  font-size: 3rem;
  padding: 20px 10px;
  font-weight: 200;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__table th {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.price__table th:nth-child(odd) {
  background: #efeeec;
}
.price__table th:nth-child(even) {
  background: #000;
  color: white;
}
.price__table td {
  border: 1px solid #ccc;
  font-size: 3.4rem;
  padding: 20px 10px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__table td {
    font-size: 2rem;
  }
}
.price__table td span {
  display: inline-block;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .price__table td span {
    font-size: 1.6rem;
  }
}
.price del {
  font-size: 75%;
  background-image: linear-gradient(#e70000, #e70000);
  background-position: 0 50%;
  background-size: 100% 3px;
  background-repeat: repeat-x;
  text-decoration: none;
  padding: 0 2px;
}
@media screen and (max-width: 767px) {
  .price del {
    font-size: 85%;
    background-size: 100% 2px;
  }
}

.prohibitions {
  max-width: 1200px;
  margin: auto;
  padding: 0 0 100px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .prohibitions {
    padding: 0 20px 100px;
  }
}
.prohibitions span {
  display: block;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .prohibitions .ttl {
    letter-spacing: 0.1em;
    margin-right: -0.1em;
  }
}

.bookapp {
  max-width: 1200px;
  margin: auto;
  padding: 0 0 100px;
}
.bookapp span {
  display: block;
  font-size: 2rem;
  font-weight: 500;
}

.tool {
  max-width: 800px;
  margin: auto;
}
.tool ul {
  display: flex;
  flex-wrap: wrap;
}
.tool li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .tool li {
    width: 50%;
  }
}
.tool p {
  margin: 10px;
  font-weight: 300;
  text-align: center;
}
.tool span {
  display: block;
  padding: 10px 0;
}
.tool img {
  display: block;
  width: 100px;
  margin: auto;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(120px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(-120px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.8s ease-in-out;
  -moz-transition: 0.8s ease-in-out;
  -o-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  transform: translateX(120px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.timing01 {
  transition-delay: 0s;
}

.timing02 {
  transition-delay: 0.2s;
}

.timing03 {
  transition-delay: 0.4s;
}

.timing04 {
  transition-delay: 0.6s;
}

.timing05 {
  transition-delay: 0.1s;
}

.timing06 {
  transition-delay: 0.12s;
}

.timing07 {
  transition-delay: 0.14s;
}

.timing08 {
  transition-delay: 0.16s;
}

/*===============================

プロフィール

================================*/
.profile h4 {
  position: relative;
  padding: 10px 0;
  border-bottom: 2px solid #eee;
  font-size: 2rem;
  font-family: "Bodoni Moda SC", serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
.profile h4:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 20%;
  height: 2px;
  content: "";
  background: #000;
}
.profile h4 span {
  font-size: 1.2rem;
  color: #999;
}
.profile__inner {
  display: flex;
  max-width: 1150px;
  margin: auto;
  padding: 50px 0 0;
}
@media screen and (max-width: 767px) {
  .profile__inner {
    flex-wrap: wrap;
    padding: 0 10px;
  }
}
.profile__inner .data_left {
  width: 60%;
  padding: 0 30px 0 0;
  border-right: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .profile__inner .data_left {
    width: 100%;
    padding: 0;
    border-right: 0;
  }
}
.profile__inner .data_right {
  flex: 1;
  padding: 0 0 0 30px;
}
@media screen and (max-width: 767px) {
  .profile__inner .data_right {
    padding: 0;
  }
}
.profile__rank01 {
  width: 260px;
  margin-top: 10px;
  padding: 5px 0;
  color: #bfad83;
  border: 1px solid #bfad83;
  font-weight: bold;
  font-family: "Bodoni Moda", serif;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .profile__rank01 {
    width: 100%;
    font-size: 1.2rem;
  }
}
.profile__rank02 {
  width: 260px;
  margin-top: 10px;
  padding: 5px 0;
  color: #aaa;
  border: 1px solid #aaa;
  font-weight: bold;
  font-family: "Bodoni Moda", serif;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .profile__rank02 {
    width: 100%;
    font-size: 1.2rem;
  }
}
.profile__rank03 {
  width: 260px;
  margin-top: 10px;
  padding: 5px 0;
  color: #4e279f;
  border: 1px solid #4e279f;
  font-weight: bold;
  font-family: "Bodoni Moda", serif;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .profile__rank03 {
    width: 100%;
    font-size: 1.2rem;
  }
}
.profile video {
  width: 100%;
  margin: 30px 0 0;
}
.profile .name {
  position: relative;
  font-size: 4rem;
  font-family: "Bodoni Moda SC", serif;
  font-weight: 400;
}
.profile .name span {
  font-size: 1.4rem;
}
.profile .name .icon {
  position: absolute;
  top: 0;
  right: 0;
}
.profile .name .icon img {
  float: left;
  width: 40px;
  margin: 0 0 0 10px;
}
.profile .size {
  padding: 10px 0;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
.profile .massage {
  padding: 20px 0 40px;
  color: #666;
  font-size: 1.3rem;
  font-weight: 300;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
}

/*
プロフィールインタビュー
================================*/
.profile_interview {
  width: 100%;
  margin: 0 0 20px;
  padding-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
}
.profile_interview .row {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .profile_interview .row {
    display: block;
    margin-bottom: 5px;
  }
}
.profile_interview .row dt {
  background-color: #f6f6f6;
  border-radius: 9999px;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0px;
  width: 260px;
  padding: 10px 15px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .profile_interview .row dt {
    width: 100%;
  }
}
.profile_interview .row dt::before {
  content: "Q.";
  display: inline;
  font-family: "Montserrat", sans-serif;
  margin-right: 4px;
  color: #d2b359;
}
.profile_interview .row dd {
  font-size: 1.4rem;
  font-weight: 300;
  flex: 1;
  padding: 10px 15px 10px;
  line-height: 1.5;
}

/*
プロフィール出勤
================================*/
@media screen and (max-width: 767px) {
  .profile_week {
    padding: 30px 10px 10px;
  }
}
.profile_week .inner {
  max-width: 1150px;
  margin: auto;
}

/*
週間出勤
================================*/
.weekly {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 50px 0 25px;
}
@media screen and (max-width: 767px) {
  .weekly {
    padding: 20px 0;
  }
}
.weekly dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.weekly dt {
  width: 14.2857142857%;
  position: relative;
  letter-spacing: 0.1rem;
  text-indent: 0.1rem;
  display: block;
  padding: 10px 0 5px 0;
  color: #000;
  font-family: "Bodoni Moda SC", serif;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}
.weekly dt + dt {
  border-left: 1px solid #ddd;
}
.weekly div {
  display: block;
  padding: 10px 0 5px 0;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
}
.weekly p {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .weekly p {
    font-size: 1.6rem;
  }
}
.weekly .time {
  padding: 20px 0;
  border-top: 1px solid #c55b77;
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .weekly .time {
    padding: 10px 0;
    font-size: 1.1rem;
  }
  .weekly .time span {
    display: block;
  }
}
.weekly .current {
  background: rgba(250, 162, 167, 0.5);
}
.weekly .month {
  vertical-align: top;
  position: relative;
  top: -0.3em;
  font-size: 1.2rem;
}
.weekly .dotw-l {
  display: inline-block;
  width: 70%;
  margin-top: 5px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.4);
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  .weekly .dotw-l {
    padding: 3px 0;
    font-size: 0.8rem;
  }
}
.weekly .dotw {
  margin-top: 5px;
  padding: 3px;
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  .weekly {
    width: 100%;
    min-width: auto;
    margin-bottom: 5px;
  }
}
/*
プロフィールスライド
================================*/
@media screen and (min-width: 0px) {
  .profile_castimg {
    margin-bottom: 24px;
  }
  .profile_castimg .body .bg {
    display: none;
  }
  .profile_castimg .noimg {
    background: #f9f9f9;
    padding: 80px 20px;
  }
  .profile_castimg .noimg p {
    text-align: center;
  }
  .profile_castimg .noimg img {
    width: 129px;
  }
  .profile_castimg .imgs {
    position: relative;
  }
  .profile_castimg .imgs .main-profile {
    display: flex;
    align-items: center;
    background-color: none;
    margin-bottom: 2px;
  }
  .profile_castimg .imgs .main-profile.slick-initialized {
    opacity: 1;
  }
  .profile_castimg .imgs .main-profile .slick-track {
    display: flex;
  }
  .profile_castimg .imgs .main-profile .slick-slide {
    height: auto !important;
    align-items: center;
  }
  .profile_castimg .imgs .main-profile li {
    background: #fff;
    display: flex;
    align-items: center;
  }
  .profile_castimg .imgs .main-profile img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }
  .profile_castimg .imgs .main-profile .slick-arrow {
    width: 72px;
    height: 72px;
    text-indent: -9999px;
    border: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }
  .profile_castimg .imgs .main-profile .slick-arrow.slick-prev {
    background: rgba(255, 255, 255, 0.3) url(../img/common/arw-prev-s-gry.svg) 43px 50% no-repeat;
    background-size: 12px 9px;
    border-radius: 50%;
    left: -35px;
  }
  .profile_castimg .imgs .main-profile .slick-arrow.slick-next {
    background: rgba(255, 255, 255, 0.3) url(../img/common/arw-next-s-gry.svg) 16px 50% no-repeat;
    background-size: 12px 9px;
    border-radius: 50%;
    right: -35px;
  }
  .profile_castimg .imgs .main-profile .slick-arrow.second {
    width: 50%;
    height: 100%;
    border-radius: 0;
    background: none;
  }
  .profile_castimg .imgs .main-profile .slick-arrow.second.slick-prev {
    left: 0;
  }
  .profile_castimg .imgs .main-profile .slick-arrow.second.slick-next {
    right: 0;
  }
  .profile_castimg .imgs .slider-main {
    position: relative;
  }
  .profile_castimg .imgs .slider-main .prev-next ul li {
    width: 25%;
    height: 100%;
    text-indent: -9999px;
    border: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }
  .profile_castimg .imgs .slider-main .prev-next .prev {
    left: 0px;
  }
  .profile_castimg .imgs .slider-main .prev-next .next {
    right: 0px;
  }
  .profile_castimg .imgs .sub {
    align-items: center;
  }
  .profile_castimg .imgs .sub.slick-initialized {
    opacity: 1;
  }
  .profile_castimg .imgs .sub li {
    cursor: pointer;
    padding: 0 1px;
    width: fit-content !important;
  }
  .profile_castimg .imgs .sub li.is-current {
    opacity: 0.7;
  }
  .profile_castimg .imgs .sub li.swiper-slide-thumb-active {
    opacity: 0.7;
  }
  .profile_castimg .imgs .sub li.swiper-slide-active {
    opacity: 0.7;
  }
  .profile_castimg .imgs .sub .slick-current img {
    opacity: 0.7;
  }
  .profile_castimg .imgs .sub img {
    width: 18vw;
  }
  .profile_castimg .imgs .sub img.is-wide {
    width: 27vw;
  }
  .profile_castimg .imgs .sub .slick-list {
    padding-right: 8vw;
  }
  .profile_castimg .imgs .sub .slick-track {
    display: flex;
    align-items: center;
  }
  .profile_castimg .imgs .count {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 100px;
    padding: 0.6em 1.2em;
    color: #fff;
    display: inline-block;
    position: absolute;
    z-index: 3;
    top: 140vw;
    bottom: auto;
    left: 10px;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    width: auto;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .profile_castimg .body {
    padding-top: 104px;
    position: relative;
    padding-bottom: 24px;
    width: 100%;
  }
  .profile_castimg .body::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
  }
  .profile_castimg .body .bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 774px;
    overflow: hidden;
  }
  .profile_castimg .body .bg img {
    width: 100vw;
    height: 774px;
    object-fit: cover;
  }
  .profile_castimg .noimg {
    padding: 100px 20px;
    margin-bottom: 0;
    margin-top: 85px;
  }
  .profile_castimg .noimg img {
    width: 155px;
  }
  .profile_castimg .imgs {
    position: relative;
    z-index: 3;
  }
  .profile_castimg .imgs .main-profile li {
    padding: 0 8px;
    background: none;
    display: block;
    width: auto;
  }
  .profile_castimg .imgs .main-profile img {
    height: 520px;
    width: auto;
  }
  .profile_castimg .imgs .main-profile .slick-arrow {
    width: 64px;
    height: 64px;
    text-indent: -9999px;
    border: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }
  .profile_castimg .imgs .main-profile .slick-arrow.slick-prev {
    background: url(../img/common/arw-prev.svg) 50% 50% no-repeat;
    background-size: contain;
    left: 20px;
  }
  .profile_castimg .imgs .main-profile .slick-arrow.slick-next {
    background: url(../img/common/arw-next.svg) 50% 50% no-repeat;
    background-size: contain;
    right: 20px;
  }
  .profile_castimg .imgs .slider-main .prev-next {
    display: none;
  }
  .profile_castimg .imgs .slider-sub {
    margin: 0 auto;
    max-width: 1145px;
    margin: 0 auto;
  }
  .profile_castimg .imgs .sub {
    padding: 0;
    margin: 16px auto 0 auto;
    opacity: 1;
  }
  .profile_castimg .imgs .sub li {
    margin-right: 5px;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0);
    padding: 0;
  }
  .profile_castimg .imgs .sub li.is-current {
    opacity: 1;
    border: 2px solid #fff;
  }
  .profile_castimg .imgs .sub li.swiper-slide-active {
    opacity: 1;
    border: 0;
  }
  .profile_castimg .imgs .sub li.swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid #fff;
  }
  .profile_castimg .imgs .sub img {
    height: auto;
    width: 67px;
  }
  .profile_castimg .imgs .sub img.is-wide {
    width: 100px;
  }
  .profile_castimg .imgs .count {
    bottom: 0px;
    left: 16px;
    z-index: 4;
    top: auto;
  }
}
.sorttbl {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  display: table;
}

.sorttbl tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}

.sorttbl th:first-child,
.sorttbl td:first-child {
  padding-left: 16px;
}

.sorttbl td,
.sorttbl th {
  padding: 8px 8px;
  display: table-cell;
  text-align: left;
  vertical-align: top;
}

.sorttbl th {
  color: #fff !important;
  background-color: #616161 !important;
}

/*--- list css ---*/
.sort-btn {
  border: none;
  display: inline-block;
  padding: 8px 16px;
  vertical-align: middle;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  background-color: #4caf50;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

ul.sortlist {
  list-style-type: none;
}

ul.sortlist li {
  padding: 7px;
  border-bottom: dotted 1px #454545;
}

.booking {
  width: 100%;
}

.booking table {
  margin: auto;
  color: white;
}

.booking td {
  font-size: 1.4rem;
  font-weight: 400;
}

.booking td.item {
  padding: 10px;
  background-color: black;
  border: 1px solid black;
  color: white;
}

.booking td.item span {
  color: red;
}

.booking td.list {
  padding: 5px 0 10px;
  font-weight: 500;
  line-height: 2;
}

input.basic {
  width: 100%;
  height: 30px;
  border: 1px solid #ddd;
}

input.small {
  width: 50%;
  height: 30px;
  border: 1px solid #ddd;
}

select.basic {
  height: 30px;
  border: 1px solid #ddd;
}

.booking-name {
  font-size: 1.8rem;
  font-weight: bold;
}

.booking-text {
  padding: 10px 0;
}

.form-sent {
  padding: 10px;
  text-align: center;
}

.form-sent input {
  padding: 20px 100px;
}

input.form {
  border-radius: 0;
  background: -moz-linear-gradient(top, #fff 0%, #eee);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
  border: 1px solid #ddd;
  color: #111;
  padding: 10px 30px;
  font-size: 1.5rem;
  font-weight: bold;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

input.form:hover {
  background: -moz-linear-gradient(top, #efefef 0%, #eee);
  background: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#eee));
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 90px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header .logo img {
  height: 60px;
}
@media screen and (max-width: 767px) {
  .header .logo img {
    height: 50px;
  }
}
.header__inner {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 10px;
  }
}
.header__nav {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  color: #000;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
}
.header__nav li {
  padding: 0 20px;
}
.header__nav a {
  color: black;
  font-size: 1.8rem;
  font-weight: 300;
  text-decoration: none;
}

.booknow {
  position: relative;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 20px;
  background-color: #000;
  color: white;
  border-radius: 100vh;
}
@media screen and (max-width: 767px) {
  .booknow {
    width: 95%;
    margin: auto;
  }
}
.booknow .left {
  padding-right: 60px;
  font-weight: 300;
}
.booknow .center {
  position: absolute;
  left: 100px;
}
.booknow .center img {
  width: 50px;
}
.booknow .right {
  flex: 1;
  padding: 3px 0 0;
  font-size: 1.4rem;
  font-weight: 300;
  text-align: center;
}
.booknow .right span,
.booknow .right a {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
  color: white;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .booknow .right span,
.booknow .right a {
    font-size: 2.2rem;
  }
}

header.scroll_nav {
  background-color: rgba(0, 0, 0, 0.9);
  transition: 1.5s;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
}

.gtranslate_wrapper {
  position: fixed;
  top: 23px;
  left: 420px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .gtranslate_wrapper {
    top: auto;
    left: auto;
    bottom: 8px;
    right: 8px;
  }
}

.footer {
  padding: 25px 0;
  background-color: #131314;
  color: white;
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0em;
  }
}
.footer small {
  text-align: center;
}

.nav_sp {
  position: fixed;
  top: 0;
  right: -1px;
  z-index: 100;
}
.nav_sp h2 {
  padding: 0 20px 40px;
  color: white;
  font-weight: normal;
}
.nav_sp h2 span {
  font-size: 1.2rem;
}
.nav_sp ul {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
.nav_sp li {
  width: 50%;
  margin: 0 0 10px;
}
.nav_sp li a {
  position: relative;
  display: block;
  width: 95%;
  margin: auto;
  padding: 10px;
  border: 1px solid #ddd;
  color: black;
  font-weight: 500;
  text-decoration: none;
}
.nav_sp i {
  position: absolute;
  top: 10px;
  right: 10px;
}
.nav_sp .logo_nav img {
  display: block;
  width: 300px;
  margin: auto;
  padding: 20px 0;
}

.hamburger_nav {
  position: fixed;
  top: 2px;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .hamburger_nav {
    position: absolute;
  }
}

.hamburger {
  display: block;
  width: 60px;
  height: 60px;
  margin-left: auto;
  position: absolute;
  z-index: 1000;
  border: none;
  top: 0px;
  right: 0px;
  background-color: black;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger.-active .hamburger__text::before {
  content: "CLOSE";
}

.hamburger__line {
  display: block;
  height: 1px;
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  background-color: #c94923;
  transition: 0.4s;
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: white;
  transition: inherit;
}

.hamburger__line:before {
  top: -6px;
}

.hamburger__line:after {
  top: 6px;
}

.hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.hamburger__text::before {
  content: "MENU";
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  color: white;
}

.nav_area {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9;
  height: 100vh;
  width: 100%;
  visibility: hidden;
  padding-top: 100px;
  transition: 0.4s;
  background-color: white;
}

.nav_area.-active {
  right: 0;
  visibility: visible;
}

.nav_book {
  width: 75%;
  max-width: 414px;
  margin: auto;
}
.nav_book ul {
  display: flex;
  flex-wrap: wrap;
}
.nav_book li {
  width: 50%;
  text-align: center;
}
.nav_book p {
  padding: 10px 10px 0;
  font-size: 1.4rem;
  font-weight: 400;
}
.nav_book span {
  display: block;
  padding: 5px 0;
  font-size: 1.6rem;
  font-weight: bold;
}

/*# sourceMappingURL=style.css.map */
