/********************************************************************
* Theme Name: tbs
* Author: Tomonori Mizuno
* Version: 1.0
********************************************************************/

/**********************************************************
 Basic
**********************************************************/

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック",sans-serif;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.6;
  color: #333333;
  text-align: left;
  background-color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

hr {
  border-top: 1px solid #eeeeee;
  border-bottom: none;
  margin: 40px 0;
}

.dark-hr {
  border-top: 1px solid #303030;
  border-bottom: none;
  margin: 12px 0;
}

ul {
  list-style-type: none;
  margin: 0;
}

ol {
  list-style-type: disc;
  padding-left: 15px;
}

a {
  text-decoration: none;
  transition: all  0.3s 4ease;
}

a:hover {
  z-index: 100;
  opacity: 0.6;
}

a {
  color: inherit;
}

.colored-link {
  color: #007bff !important;
  text-decoration: underline;
}

img {
  margin: 0;
  display: inline-block;
  max-width: 100%;
}

video {
  width: 100%;
  height: auto;
}


@media (max-width: 767px) {

  img {
    margin: 0 auto;
  }

}

/**********************************************************
 Font, text
**********************************************************/

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: normal;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin: 0
}

.common-title {
  color: #d65050;
  font-size: 22px;
  font-weight: bold;
}

.title-line {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  line-height: normal;
  padding-bottom: 10px;
}

.title-line:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 50px;
  height: 1px;
  margin-left: -25px;
  background-color: #d65050;
}

.title-line-left {
  text-align: left;
  border-bottom: 1px solid #d65050;
  border-left: 4px solid #d65050;
  margin: 40px 0 20px 0;
  padding-left: 10px;
}

.title-line-left:first-of-type {
  margin: 0 0 20px 0;
}

.error-msg {
  font-size: 14px;
  color: #ff0000;
}

.required {
  width: 66px;
  padding: 3px 5px;
  background-color: #ff0000;
  color: #fff;
  font-size: 11px;
  text-align: center;
  box-sizing: border-box;
}

.text-bold {
  font-weight: bold;
}

.text-center {
  text-align: center !important;
}

@media (max-width: 767px) {

  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    margin-bottom: 10px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

}

/**********************************************************
 Table
**********************************************************/

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 1.4;
  margin: 20px auto;
  width: 100%;
}

th {
  padding: 10px;
  font-weight: bold;
  vertical-align: middle;
}

td {
  padding: 10px;
  text-align: left;
  vertical-align: middle;
}

table.visible {
  border: 1px solid #cccccc;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 2;
  margin: 30px auto;
  width: 100%;
}

table.visible th {
  padding: 5px 10px;
  font-weight: normal;
  border:1px solid #cccccc;
  vertical-align: middle;
  background: #efefef;
}

table.visible td {
  padding: 5px 10px;
  border: 1px solid #cccccc;
  text-align: left;
  vertical-align: middle;
}

.table-wrap {
  width: 100%;
  height: auto;
  overflow: auto;
}

@media (max-width: 767px) {

  table.visible {
    margin: 15px auto !important;
    font-size: 13px;
    line-height: 1.5;
  }

  .table-responsive tr {
    border-bottom: 1px solid #1a1a1a;
  }

  .table-responsive td {
    padding: 5px 10px;
  }

}

/**********************************************************
 Form
**********************************************************/

input[type=submit],
button[type=button] {
  height: 30px;
  display:inline-block;
  border: none;
  text-align: center;
  padding: 5px 20px;
  outline: none;
  cursor: pointer;
}

.sidebar_area form {
  max-width: 300px;
  margin: 0 auto;
}

input {
  border: 1px solid #cccccc;
  outline: none;
  padding: 5px;
  height: 30px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=file] {
  width: 100%;
  height: 30px;
}

input[type=radio] {
  height: auto;
  margin: 0 5px 0 0;
  vertical-align: middle;
}

input[type=checkbox] {
  vertical-align: middle !important;
  height: initial;
}

select {
  color: #443f3f;
  width: 220px;
  height: 30px;
  text-align-last: center;
  border: none;
  outline: none !important;
}

textarea {
  width: 100%;
  min-height: 80px;
  border: 1px solid #cccccc;
  margin-top: 10px;
}

label {
  display: inline-block;
  width: auto;
}

.btn {
  height: 30px;
  display:inline-block;
  border: none;
  text-align: center;
  padding: 5px 20px;
  outline: none;
  cursor: pointer;
}

.btn-circle {
  width: 35px;
  height: 35px;
  background: #d65050;
  border-radius: 50%;
  padding: 0 !important;
  border: none;
  vertical-align: middle;
}

.btn:hover,
.btn-circle:hover {
  opacity: 0.6;
}

.btn-pink {
  background-color: #d65050;
  color: #ffffff;
}

.btn-black {
  background: #333333 !important;
  color: #ffffff;
}

.btn-white {
  background-color: #ffffff;
  color: #333333;
}

.btn-gray {
  background-color: #cccccc;
  color: #333333;
}

.btn-red {
  background: red !important;
  color: #ffffff;
}

.btn-contact {
  width: 100%;
  color: #d65050;
  background: #ffffff;
  border: 1px solid #d65050;
  border-radius: 5px;
  padding: 5px 0;
}

.btn-reservation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media (max-width: 767px) {

  input[type=text], input[type=password], input[type=email], input[type=file], select, textarea {
    border-radius: 0;
  }

  input[type=submit], input[type=button] {
    -webkit-appearance: none;
    border-radius: 0;
  }

  #tenpo_apply input[type=text], #tenpo_apply input[type=email], #tenpo_apply input[type=file] {
    width: 100%;
  }

  #contact input[type=text], #contact input[type=email], #contact textarea {
    width: 100%;
  }

}

/**********************************************************
* Cmb
**********************************************************/

.cmb-container {
  margin-bottom: 40px;
  position: relative;
}

#salon_schedule_day_of_the_week input[name="submit-cmb"],
#salon_schedule_days input[name="submit-cmb"] {
  position: absolute;
  bottom: 41px;
  left: 75px;
}

input[name="submit-cmb"] {
  background: #d65050;
  color: #ffffff;
}

.cmb-remove-field-row {
  padding: 15px 0 !important;
}

.cmb-repeat-group-field {
  border-bottom: none !important;
}

.cmb-multicheck-toggle {
  display: none;
}

#week_group_repeat .inside,
#day_group_repeat .inside {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 10px;
}

#week_group_repeat .inside .cmb-row,
#day_group_repeat .inside .cmb-row {
  width: 140px;
}

#week_group_repeat .inside .cmb-remove-field-row,
#day_group_repeat .inside .cmb-remove-field-row {
  width: auto;
}

.cmb2-wrap input:not([type="hidden"]) + input,
.cmb2-wrap input:not([type="hidden"]) + .button-secondary,
.cmb2-wrap input:not([type="hidden"]) + select {
  margin-left: 5px !important;
}

#week_group_repeat .cmb-row,
#day_group_repeat .cmb-row {
  display: block;
}

#week_group_repeat .cmb-row .cmb-th,
#week_group_repeat .cmb-row .cmb-td,
#day_group_repeat .cmb-row .cmb-th,
#day_group_repeat .cmb-row .cmb-td {
  width: 100%;
}

.cmb2-metabox .cmbhandle:before {
  display: none !important;
}

.cmb-th {
  width: auto !important;
  padding: 15px 0 0 0 !important;
}

.cmb-th label {
  padding: 0 !important;
}

.cmb-td {
  width: 100% !important;
  padding: 0 0 15px 0 !important;
}

.cmb2_select {
  border: 1px solid #cccccc;
  width: auto;
  height: 30px;
}

.cmb-remove-field-row {
  margin: 0 !important;
}

.cmb2-wrap input[type=checkbox] {
  margin: 10px 5px 9px 0 !important;
  padding: 0;
}

.cmb-type-group .cmb-repeat-group-field {
  padding: 0 !important;
  margin: 0 !important;
}

.cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row {
  top: 4px !important;
}

#cmb2-metabox-salon_schedule_default {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/**********************************************************
 Layout, container
**********************************************************/

main {
  margin-top: 67.39px;
  flex: 1;
}

section:first-of-type {
  padding-top: 30px;
}

section {
  padding-bottom: 40px;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 15px;
  background-color: transparent;
}

.ll-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: transparent;
}

.l-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: transparent;
}

.m-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: transparent;
}

.s-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: transparent;
}

@media (max-width: 767px) {

  section {
    padding-bottom: 20px;
  }

}

/**********************************************************
 Header
**********************************************************/

#header {
  position: fixed;
  top: 0;
  z-index: 9998;
  width: 100%;
  background-color: #ffffff;
  color: #333333;
  border-bottom: 1px solid #ebebeb;
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  padding: 10px;
  position: relative;
}

.main-logo {
  max-height: 40px;
}

#header #search-header form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

#header #search-header select,
#header #search-header input {
  height: 35px;
  width: 120px;
  border-radius: 100px 100px 100px 100px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding-top: 0 10px 0 0;
  border: none;
}

#header #search-header input {
  text-align: center;
}

#header .header-icon {
  width: 20px;
  height: 20px;
}

.header-icon-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

#icon-user {
  fill: #333333;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

#icon-globe {
  fill: #333333;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#icon-dollar {
  fill: #333333;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

#icon-toggle {
  fill: #333333;
  width: 22px;
  height: 22px;
  cursor: pointer;
}

#modal-dollar input[type=radio]{
  display: none;
}

@media screen and (max-width: 960px) {

  #header {
    height: 70px;
  }

  #header h1 {
    margin-left: 40px;
  }

  #header .container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  #logo {
    margin: 0 auto;
  }

}

/**********************************************************
 Navigation
**********************************************************/

.toggle {
  display: none;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.menu-item {
  display: inline-block;
  list-style: none;
  margin: 0 20px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.header-icon-area li {
  margin: 0 10px;
}

@media screen and (max-width: 960px) {

  .menu-item {
    margin: 0 10px;
  }

}

@media screen and (max-width: 767px) {

  .navbar {
    display: none;
  }

  .header-icon-area li {
    margin: 0 4px;
  }

}

/**********************************************************
 Other firstview
**********************************************************/

.otherpage-top {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eeeeee;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 200px;
  padding: 0 15px;
  margin: 80px 0 60px 0;
}

.otherpage-top h2 {
  color: #333333;
  margin: 0;
}

@media (max-width: 767px) {

  .otherpage-top {
    min-height: 160px;
    margin-bottom: 20px;
  }

  .apply-top {
    margin-bottom: 20px;
  }

}

/**********************************************************
 Footer
**********************************************************/

#footer {
  background: #f9f9f9;
}

#footer section {
  padding: 60px 0 0 0;
}

#footer-menu .container {
  padding-bottom: 0;
}

#footer h2 {
  font-size: 16px;
  font-weight: bold;
}

#footer-menu p {
  font-size: 12px;
  padding: 10px 5px;
}

.footer-logo {
  width: auto;
  height: 40px;
}

.copyright {
  margin-top: 40px;
  font-size: 9px;
  text-align: center;
}

@media (max-width: 767px) {

  #footer section {
    padding: 20px 15px;
  }

  .footer-link td {
    padding: 5px;
  }

  #footer-menu .container {
    padding-bottom: 20px;
    display: block;
  }

  #footer-menu .container .footer-logo img {
    display: block;
    margin: 35px auto;
  }

  #footer-menu .container .footer-link {
    margin: 0 auto;
    font-size: 13px;
  }

}

/**********************************************************
 Comment
**********************************************************/

#comments .row {
  margin-bottom: 20px;
}

.comment {
  margin: 20px 0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.comment .title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.star-rating {
  display: flex;
  justify-content: flex-start;
  width: 200px;
}

.star {
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.2s;
}

.star.active {
  color: gold;
}

.comment-form {
  margin-top: 40px;
}

/**********************************************************
 Pagination
**********************************************************/

.nav-links {
  margin-top: 20px;
}

.paging-number {
  display: flex;
  text-align: center;
  font-weight: bold;
  justify-content: center;
}

.paging-number li {
  width: 30px;
  height: 30px;
  line-height: 30px;
  box-sizing: border-box;
  border: 1px #1a1a1a solid;
  background-color: #FFF;
  color: #000;
  margin-right: 10px;
  font-size: 14px;
}

.paging-number span {
  color: #ffffff;
}

/**********************************************************
* Slider with carousel
**********************************************************/

.slider-container {
  margin: auto;
  text-align: center;
}

.main-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  border: 1px solid #cccccc;
}

.main-slider .main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-slider img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thumbnail-carousel {
  display: flex;
  align-items: center;
  margin-top: 10px;
  overflow: hidden;
}

.thumbnail {
  margin: 0 ;
  width: 25%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  transition: border 0.3s;
  border: 2px solid transparent;
  min-width: 100px;
}

.thumbnail.active {
  border: 2px solid #007bff;
}

.prev,
.next {
  position: absolute;
  width: 25px !important;
  height: 50px !important;
  border-radius: 0 100% 100% 0% / 50%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: 99;
  color: #ffffff !important;
  background: #009fdd;
  font-weight: bold;
  font-size: 16px !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: none;
  cursor: pointer;
}

.next {
  justify-content: flex-end;
  padding-right: 5px;
  border-radius: 100% 0 0 100% / 50%;
  right: 0;
}

.prev {
  padding-left: 5px;
  left: 0;
}

.prev:disabled,
.next:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/**********************************************************
 Carousel slider
**********************************************************/

.list-box {
  position: relative;
  width: 100%;
}

.slider-frame {
  width: 97%;
  margin: 30px auto;
  overflow: hidden;
}

.slider-frame .slider {
  list-style: none;
  display: flex;
  transition: 0.5s;
  padding-left: 0;
}

.slider-frame .slider li {
  height: 100%;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-prev {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 16px;
  fill: #cccccc;
}

.slider-next {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 16px;
  fill: #0036a9;
}

.slider .item {
  position: relative;
  padding: 2px 2px 4px;
  display: table-cell !important;
  vertical-align: top;
  width: 300px;
  height: 300px;
  float: none;
  background: transparent;
  margin: 0 5px;
}

.slider .item img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 280/175;
  object-fit: cover;
  border-radius: 10px;
}

.slider .item h3 {
  font-weight: bold;
  font-size: 12px;
  margin: 10px 0;
}

.slider .item p {
  margin: 0 0 10px 0;
  line-height: 1.3;
  font-size: 13px;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word;
}

.slider .item .clamp-3 {
  line-height: 1.6;
}

.slider .item p.charge {
  font-size: 0.8rem;
  color: #FF6600;
}

.slider .item p.charge em {
  font-style: normal;
  font-size: 1.1rem;
}

.slider .item p.title {
  font-size: 0.75rem;
}

.slider .item p.campaign_name {
  position: relative;
  color: #fff;
  font-weight: bold;
  background-color: #ff914d;
  height: 32px;
  overflow: hidden;
  text-overflow: ellipsis; 
}

.slider .item p.campaign_name:before, .slider .item p.campaign_name:after {
  background: #ff914d;
  position: absolute;
}

.slider .item p.campaign_name:before {
  content: "...";
  top: 0.91rem;
  padding: 0 1px;
  right: 4px;
}

.slider .item p.campaign_name:after {
  content: "";
  height: 100%;
  width: 100%;
}

@media (max-width: 991px) {

  .slider-frame {
    width: 92%;
  }

}

/**********************************************************
 Top
**********************************************************/

#top #search-header {
  padding: 15px;
}

#search-form-area form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

#search-form-area select,
#search-form-area input {
  height: 35px;
  width: 120px;
  border-radius: 100px 100px 100px 100px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  padding-top: 0 10px 0 0;
  border: none;
}

#search-form-area input {
  text-align: center;
}

#top #firstview {
  color: #ffffff;
  margin: 0 0 60px 0;
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  padding: 0;
}

#top #firstview .simple-slider {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

#top #firstview .simple-slider img {
  flex: 0 0 100%;
  height: 100%;
  object-fit: cover;
}

#top #firstview .text-area {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}

#top #firstview .prev,
#top #firstview .next {
  background: none;
}

#top #firstview .fa-left,
#top #firstview .fa-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  fill: #ffffff;
  cursor: pointer;
}

#top #firstview .fa-left:hover,
#top #firstview .fa-right:hover {
  fill: #cccccc;
}

#top #firstview .prev {
  left: 0;
}

#top #firstview .next {
  right: 0;
}

#top #firstview .container {
  max-width: 1000px;
  padding: 20px;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}

#top #firstview h1 {
  font-size: 40px;
  font-weight: bold;
}

#top #firstview p {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}

#top-rated-salons {
  background: #f9f9f9;
  padding-top: 80px;
}

#popular-experiences {
  padding-top: 80px;
}

@media (max-width: 767px) {

  #search-form-area form {
    display: block;
  }

  #search-form-area select,
  #search-form-area input {
    display: block;
    margin: 0 auto 5px auto;
    width: 60%;
  }

  #top #firstview h1 {
    font-size: 24px;
  }

}

/**********************************************************
 Salon archive
**********************************************************/

#salons .container {
  width: 90%;
  max-width: initial;
}

#salon-archive select {
  border: 1px solid #eeeeee;
}

/**********************************************************
 Salon
**********************************************************/

#salon-headline {
  padding-bottom: 20px;
}

#salon-headline .first {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

#salon-headline h1 {
  margin-bottom: 0;
}

#salon-headline #favorite {
  text-align: center;
}

#salon-headline #favorite svg {
  margin: 0 auto;
}

#salon-headline .icon-heart {
  fill: #ffffff;
  stroke: #d65050;
  stroke-width: 20px;
  stroke-linejoin: round;
  width: 30px;
}

#salon-headline .favorite {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  color: #cccccc;
  cursor: pointer;
  line-height: 1;
}

#salon-headline .second {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
}

#salon-headline .second p {
  text-align: center;
  line-height: 1;
}

#salon-headline .second .title {
  font-size: 18px;
  font-weight: bold;
}

#salon-headline .second .star {
  font-size: 14px;
  color: #333333;
}

.salon-information-area {
  margin: 0 0 40px 0;
}

.salon-information-area img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.image-map-area {
  margin-top: 40px;
}

.salon-information {
  margin-top: 0;
}

.salon-information th,
.salon-information td {
  vertical-align: top;
}

#salon-about .fa-home {
  width: 15px;
}

#salon-about .fa-map-marker {
  width: 12px;
}

#salon-about .fa-clock-o {
  width: 15px;
}

#salon-about .fa-globe {
  width: 15px;
}

#salon-about .fa-jpy {
  width: 12px;
}

#salon-about .fa-pencil {
  width: 15px;
}

.offer {
  border-bottom: 1px solid #cccccc;
}

.offer h3 {
  font-size: 16px;
  font-weight: bold;
}

.offer .col-3 {
  display: flex;
  align-items: center;
}

.hair-type,
.hair-length {
  border: 1px solid #cccccc;
  width: 200px;
  height: 30px;
  margin-bottom: 5px;
}

.number-of-customer {
  border: 1px solid #cccccc;
  margin-bottom: 10px;
  width: 60px;
  height: 30px;
}

#salon-menu .menu {
  border-bottom: 1px solid #cccccc;
  padding: 15px 0;
}

#salon-menu .menu .col-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

#salon-menu .accordion-content  form:last-of-type .menu {
  border-bottom: none;
}

#salon-menu h3 {
  font-size: 16px;
  font-weight: bold;
}

#salon-menu table {
  margin: 0;
}

#salon-menu th,
#salon-menu td {
  padding: 0 0 10px 0;
}

#salon-menu th {
  width: 50%;
}

.salon-price {
  text-decoration: line-through;
}

#salon-menu .tbs-price,
#salon-menu .tbs-currency {
  font-size: 24px;
  font-weight: bold;
}

#salon-staff .row {
  border-bottom: 1px solid #cccccc;
  padding: 20px 15px;
  margin-bottom: 10px;
}

#salon-staff .row h3 {
  font-weight: bold;
}

#salon-staff .row:last-of-type {
  border-bottom: 0;
}

#salon-staff img {
  width: 150px;
  object-fit: cover;
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
}

#salon-staff table {
  margin-top: 0;
}

#salon-staff th {
  width: 20%;
}

#salon-staff th,
#salon-staff td {
  padding: 2px 0px;
}

#salon-product .title-line {
  font-size: 32px;
  margin: 30px 0 10px 0;
}

#salon-review .title-line {
  font-size: 32px;
  margin: 30px 0 10px 0;
}

/**********************************************************
 Experience
**********************************************************/

#experience-headline {
  background: #f4f4f4;
  margin-bottom: 40px;
}

#experience-headline h1 {
  font-size: 24px;
  text-align: left;
}

#experience-headline table {
  margin: 10px 0;
  border-bottom: 1px solid #cccccc;
}

#experience-headline th,
#experience-headline td {
  padding: 0;
}

#experience-headline th {
  width: 40%;
}

#experience-headline td {
  text-align: right;
}

#experience-headline .tbs-price,
#experience-headline .tbs-currency,
#experience-reservation .tbs-price,
#experience-reservation .tbs-currency {
  font-size: 24px;
  font-weight: bold;
}

#experience-information .row {
  margin-top: 40px;
}

#experience-information .col-4 p {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  line-height: 1;
}

#experience-information ul {
  list-style-type: disc;
  list-style-position: inside;
}

#experience-information .fa-checkbox {
  width: 25px;
  fill: #333333;
  margin-right: 5px;
  vertical-align: middle;
}

#experience-information .fa-clock-o {
  width: 20px;
  fill: #333333;
  margin-right: 5px;
  vertical-align: middle;
}

.experience-body h2 {
  margin: 20px 0;
}

.experience-body img {
  margin: 20px 0;
}

#experience-reservation {
  background: #f4f4f4;
  padding-top: 40px;
  text-align: center;
}

#experience-reservation .container {
  max-width: 400px;
}

#experience-reservation .btn-pink {
  padding: 15px 30px;
  height: auto;
}

#related-experience {
  padding-top: 40px;
}

#related-experience img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

#related-experience .col-liq-4 {
  position: relative;
}

/**********************************************************
 Reservation
**********************************************************/

.menu-information .row {
  margin-bottom: 15px;
}

.menu-information .col-liq-9 {
  font-weight: bold;
}

#reservation .reservation-asr {
  margin: 0;
}

#reservation .reservation-asr td {
  text-align: left;
}

#reservation .reservation-asr td input {
  margin: 0;
}

#reservation .button-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

#reservation .fa-left,
#reservation .fa-right {
  width: 10px;
  fill: #ffffff;
}

.reservation-above-table .col-liq-6 {
  padding: 0;
}

.reservation-above-table input[type=text] {
  background: ivory;
}

#reset_calendar {
  margin: 0 0 0 auto;
}

#reservation button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25px;
  gap: 5px;
}

#reservation .visible input[type=checkbox] {
  display: none;
}

#reservation td {
  text-align: center;
  padding: 5px;
}

#reservation .reservation-mark {
  cursor: pointer;
}

.reservation-mark.selected {
  background-color: rgb(255, 192, 203);
}

#reservation .fa-circle {
  width: 20px;
  fill: #ff0000;
  vertical-align: middle;
}

#reservation .fa-xmark {
  width: 20px;
  fill: #333333;
  vertical-align: middle;
}

#reservation .request-number {
  font-weight: bold;
  color: #ffffff;
}

.inactive-mask {
  display: none !important;
}

#reservation .form__dl {
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0;
}

#card-element {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fafafa;
  transition: border 0.3s ease;
}

/**********************************************************
 Salon dashboard
**********************************************************/

.cmb2-schedule-table {
  width: 100%;
}

.cmb2-schedule-table th,
.cmb2-schedule-table td {
  text-align: center !important;
}

.cmb2-checkbox-list.no-select-all.cmb2-list {
  padding: 0;
}

.cmb2_textarea {
  width: 100% !important;
}

.salon-asr {
  margin-top: 40px;
}

#salon-dashboard input[type=text],
#salon-dashboard input[type=email],
#salon-dashboard input[type=password] {
  max-width: 400px;
}

#salon-dashboard .salon-plan .btn {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 40px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
}

/**********************************************************
 My page
**********************************************************/

#mypage .col-liq-2 h2 {
  margin-bottom: 30px;
}

#mypage .col-liq-2 p {
  margin-bottom: 10px;
}

#mypage .favorite-list table {
  margin: 40px 0;
}

#mypage .favorite-list tr {
  border-bottom: 1px solid #eeeeee;
}

#mypage .favorite-list td:first-of-type {
  padding-left: 0;
}

#mypage .favorite-list td:last-of-type {
  text-align: right;
  padding-right: 0;
}

#mypage .favorite-list img {
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/**********************************************************
 Salon sign up
**********************************************************/

.plan-box {
  border-radius: 20px;
  padding: 15px 5px;
  color: #ffffff;
  margin-bottom: 15px;
}

.plan-box h3 {
  text-align: center;
  border-bottom: 1px solid #ffffff;
}

.plan-box .monthly {
  font-size: 45px;
  text-align: center;
}

.plan-box .monthly span {
  font-size: 14px;
}

.plan-box table {
  margin: 0;
}

.plan-box td {
  padding: 5px;
  font-size: 12px !important;
}

#salon-signup .Nail {
  background: coral;
}

#salon-signup .Entry {
  background: #3b82f6;
}

#salon-signup .Standard {
  background: #10b981;
}

#salon-signup .Premium {
  background: #fbbf24;
}

#input h3 {
  margin-bottom: 20px;
}

#input p {
  margin-bottom: 20px;
}

#input input {
  margin-top: 5px;
}

.agreement-area {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 40px 0;
  line-height: 1.6;
  color: red;
  font-weight: bold;
}

/**********************************************************
 Sign up
**********************************************************/

#signup input {
  margin: 10px 0 20px 0;
}

#signup select {
  width: auto;
  background: #ffffff;
  border: 1px solid #cccccc;
  margin: 10px 0 20px 0;
}

/**********************************************************
 Sign in
**********************************************************/

#user_login_container {
  text-align: center;
}

#user_login_container h2 {
  margin-bottom: 20px;
}

#user_login_container label {
  display: block;
}

#user_login_container form {
  margin: 0 auto;
  padding: 15px;
}

#user_login_container input[type=text],
#user_login_container input[type=password] {
  text-align: left;
  margin-bottom: 20px;
  width: 250px;
}

#user_login_container .login-submit {
  margin-top: 10px;
}

#wp-submit {
  background: #333333 !important;
  color: #ffffff;
}

/**********************************************************
 About Us
**********************************************************/

#about section {
  padding: 60px 0;
}

#about .container {
  max-width: 830px;
}

#about .container h2 {
  margin-bottom: 40px;
}

#about p {
  margin-bottom: 40px;
}

#about #story {
  background: #f9f9f9;
}

#about #faq {
  background: #ffffff;
}

#about #faq .q {
  margin: 0 0 20px 0;
  font-weight: bold;
  cursor: pointer;
}

#about #faq .q .down {
  width: 14px;
}

#about #faq .a {
  margin: 0;
  padding: 15px;
  background: #f9f9f9;
  display: none;
}

#about #faq ol {
  list-style-type: decimal;
  margin-left: 15px;
}

#about #contact {
  background: #f9f9f9;
}

/**********************************************************
 Terms & Privacy
**********************************************************/

#terms h3 {
  margin: 40px 0 15px 0;
}

#terms p {
  margin-bottom: 15px;
}

#terms ul {
  list-style-type: decimal;
}

/**********************************************************
 Contact
**********************************************************/

#contact input,
#contact textarea {
  margin-top: 10px;
}

/**********************************************************
 Misc
**********************************************************/

/***** Title width search form *****/
.title-with-search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/***** Seal *****/

.seal {
  display: inline-block;
  background: #ebebeb;
  font-size: 12px;
  padding: 0 10px;
  border-radius: 20px;
}

.new-seal {
  position: absolute;
  top: 5px;
  left: 5px;
  background: yellow;
  font-size: 12px;
  font-weight: bold;
}

/***** Border Radius *****/

.border-radius {
  border-radius: 10px;
}

/***** bold title *****/

.bold-title {
  font-weight: bold;
}

/***** Error *****/

.error-box {
  color: red;
  margin-bottom: 20px;
}

/***** Reader *****/

.clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  width: 100%;
}

.clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/**********************************************************　　　　　
 モーダル
***********************************************************/

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background: rgba(0, 0, 0, 0.6);
}

.modal-dialog {
  width: 500px;
  height: auto;
  margin: 30px auto;
}

.modal-header {
  padding: 10px 12px;
  font-weight: 600;
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 128, 232, 0.45);
  box-shadow: 0 3px 9px rgba(0, 128, 232, 0.45);
  overflow-y: auto;
  height: auto;
}

.modal-header .close {
  margin-top: 4px !important;
  float: right;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: none;
  filter: alpha(opacity=100);
  opacity: 1;
}

.modal-body {
  padding: 20px 10px;
}

.modal-body .btn-white {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 40px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  font-size: 14px;
}

.method-select ul {
  text-align: center;
}

.method-select ul li {
  display: inline-block;
  width: 48%;
  margin: 0 .5%;
}

.method-select ul li a {
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 3px auto;
  padding: 16px 0;
  font-size: 1.2rem;
  color: #444;
  line-height: 2.0rem;
  text-align: center;
  background: linear-gradient(#fff, #e9e9e9);
}

.method-select ul li a i {
  font-size: 1.6rem;
  line-height: 2.0rem;
  padding-right: .5rem;
  color: #0036a9;
}

.method-select ul li a:hover {
  background: linear-gradient(#fff, #fff);
  box-shadow: none;
}

.method-select ul li a:active {
  color: #fff;
  background: #0036a9;
  box-shadow: none;
}

.method-select ul li a:active i {
  color: #fff;
}

#iconsModal {
  z-index: 100000;
}

#iconsModal figure {
  margin: 0 0 15px;
  text-align: center;
}

#iconsModal figure figcaption {
  margin: 5px 0 0;
  font-size: 0.8rem;
}

#iconsModal figure img {
  width: 40px;
  height: auto;
}

@media (min-width: 768px) {

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 128, 232, 0.45);
    box-shadow: 0 5px 15px rgba(0, 128, 232, 0.45);
  }

}

@media (max-width: 767px) {

  .method-select ul {
    text-align: center;
  }

  .method-select ul li {
    display: block;
    width: auto;
    margin: 10px auto;
  }

}

/***** Plan font *****/

.entry-font {
  color: #3b82f6;
}

.standard-font {
  color: #10b981;
}

.premium-font {
  color: #fbbf24;
}

/***** Favorite heart *****/

.slider .item .icon-heart {
  position: absolute;
  z-index: 1000;
  fill: #ffffff;
  top: 10px;
  right: 5px;
  stroke: #d65050;
  stroke-width: 20px;
  stroke-linejoin: round;
  cursor: pointer;
  width: 30px;
}

/***** Price badge *****/

.price-badge {
  position: absolute;
  left: 15px;
  top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  width: 60px;
  height: 60px;
  background: #40403e;
  border-radius: 40px;
  line-height: 1;
  color: #ffffff;
  padding: 5px;
  font-size: 13px;
}

/***** Dashboard menus *****/

#salon-dashboard .col-liq-2 p {
  margin-bottom: 10px;
}

.active-menu {
  font-weight: bold !important;
}

/***** Reservation status *****/

.reservation-status-badge {
  display: inline-block;
  text-align: center;
  padding: 5px 10px;
  line-height: 1.6;
}

.reserved {
  background: green;
  color: #ffffff;
}

.requested {
  background: pink;
}

.canceled {
  background: #cccccc;
}

.refunded {
  background: orange;
  color: #ffffff;
}

.declined {
  background: red;
  color: #ffffff;
}

.waitlist {
  background: #eeeeee;
}

.completed {
  background: #007bff;
  color: #ffffff;
}

.noshow {
  background: #333333;
  color: #ffffff;
}

/***** Icons *****/

.icons {
  display: flex !important;
  justify-content: space-between;
}

.icons-right, .icons-left {
  width: 50%;
}

.icon {
  display: flex;
  align-items: center;
}

.icon .icon-area {
  text-align: center;
  width: 30px;
}

@media (max-width: 767px) {

  .regular-box {
    padding: 10px;
  }

  .pickup-tag {
    font-size: 11px;
  }

  .icon {
    line-height: 1.2;
    margin: 0.75em 0;
  }

  .menu-title h4 {
    width: 70%;
  }

}

/**********************************************************
 Responsive
**********************************************************/

/***** Display *****/

@media (min-width: 992px) {
  .pchd-m {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .sphd-m {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .pchd {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .sphd {
    display: none !important;
  }
}

/***** Grid *****/

.row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.column-reverse {
  flex-direction: column-revese;
}

.left-item {
  order: -1;
}

.right-item {
  order: 1;
}

.col-2,
.col-liq-2 {
  width: 16.66666%;
  padding: 0 10px;
}
.col-3,
.col-liq-3 {
  width: 25%;
  padding: 0 10px;
}

.col-4,
.col-liq-4 {
  width: 33.3333%;
  padding: 0 10px;
}

.col-5,
.col-liq-5 {
  width: 41.6666%;
  padding: 0 10px;
}

.col-6,
.col-liq-6 {
  width: 50%;
  padding: 0 10px;
}

.col-7,
.col-liq-7 {
  width: 58.3333%;
  padding: 0 10px;
}

.col-8,
.col-liq-8 {
  width: 66.6666%;
  padding: 0 10px;
}

.col-9,
.col-liq-9 {
  width: 75%;
  padding: 0 10px;
}

.col-10,
.col-liq-10 {
  width: 80%;
  padding: 0 10px;
}

@media (max-width: 991px) {

  .result-count {
    justify-content: center !important;
    gap: 10px;
  }

}

@media (max-width: 767px) {

  .column-reverse {
    flex-direction: column-revese;
  }

  .left-item {
    order: 1;
  }

  .right-item {
    order: -1;
  }

  .col-liq-2,
  .col-liq-3,
  .col-liq-4,
  .col-liq-5,
  .col-liq-6,
  .col-liq-7,
  .col-liq-8,
  .col-liq-9,
  .col-liq-10 {
    width: 100%;
  }

}
