@charset "UTF-8";
@import url("//fonts.googleapis.com/css?family=Marcellus&subset=latin-ext");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* =======================================
CommonElements
======================================= */
body {
  position: relative;
  height: 100%;
  color: #2e2624;
  background: #f7f7f7;
  word-wrap: break-word;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, Helvetica, sans-serif;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

a {
  color: #00bcd4;
  text-decoration: none;
}

a:active,
a:hover {
  color: #0097a7;
  text-decoration: none;
}

/* ------------------------------------
common module
------------------------------------ */
.pc_non {
  display: none !important;
}
@media only screen and (max-width: 768px) {
  .pc_non {
    display: inline-block !important;
  }
}

.sp_non {
  display: inline-block !important;
}
@media only screen and (max-width: 768px) {
  .sp_non {
    display: none !important;
  }
}

.align_r {
  text-align: right !important;
}

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

.align_l {
  text-align: left !important;
}

.font_b {
  font-weight: bold !important;
}

.font_ll {
  font-size: 2rem !important;
}

.font_s {
  font-size: 1.2rem !important;
}

.font_block {
  display: inline-block;
}

.text_attention {
  color: #9D2121;
}

.text_point {
  color: #BE7B7B;
}

hr.dot {
  width: 100%;
  border: none;
  border-top: #aaa dotted 1px;
  margin: 4rem auto;
}

/* PC hover */
@media only screen and (min-width: 768px) {
  .disable:hover {
    opacity: 1 !important;
    cursor: default;
  }
}
/* ------------------------------------
badge
------------------------------------ */
.badge {
  display: inline-block;
  font-size: 1rem;
  padding: 0.1rem 0.5rem;
}
.badge.required {
  background: #BE7B7B;
  color: #fff;
}
.badge.any {
  background: #C1A293;
  color: #fff;
}

/* ------------------------------------
alert Message
------------------------------------ */
.alert_message {
  width: 98%;
  max-width: 1080px;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin: 4rem auto;
  border-radius: 0.25rem;
}
.alert_message .alert_inner::before {
  content: "!";
  color: #fff;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  text-align: center;
  position: relative;
  line-height: 2rem;
  font-weight: bold;
  margin-right: 0.5rem;
}
.alert_message.error {
  color: #9D2121;
  background-color: #F7EFEF;
}
.alert_message.error .alert_inner::before {
  background: #9D2121;
}
.alert_message.success {
  color: #0097A7;
  background-color: #DEF1F4;
}
.alert_message.success .alert_inner::before {
  background: #00bcd4;
}
.alert_message.normal {
  color: #965A3D;
  background-color: #F4F2EE;
}
.alert_message.normal .alert_inner::before {
  background: #965A3D;
}

.remodal .alert_message {
  margin-top: 0.5rem;
}

/* ------------------------------------
BUTTON
------------------------------------ */
a.btn,
.btn {
  display: block;
  position: relative;
  border-radius: 25px;
  font-size: 1.4rem;
  text-align: center;
  width: auto;
  min-width: 200px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  padding: 1rem;
  border: none;
  cursor: pointer;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, Helvetica, sans-serif;
}

.btn.move {
  color: #2e2624;
}
.btn.move::before {
  -webkit-box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-color: #f7f7f7;
  border-radius: 25px;
  top: 0;
  left: 0;
  content: "";
}
.btn.move:hover {
  -webkit-box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
  box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
}
.btn.move:hover::before {
  opacity: 0.5;
}
.btn.move:active {
  color: rgba(46, 38, 36, 0.6);
  -webkit-box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
  box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
}
.btn.move:active::before {
  opacity: 0;
}
.btn.move.next::after {
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #2e2624;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.btn.move.prev::after {
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-right: 4px solid #2e2624;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 6px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.btn.large {
  padding: 20px 0;
  width: 90%;
  max-width: 280px;
  border-radius: 40px;
}
.btn.large::before {
  border-radius: 40px;
}

.btn.login {
  color: #00bcd4;
  padding: 20px 0;
  width: 90%;
  max-width: 280px;
  border-radius: 40px;
  min-width: 80px;
}
.btn.login::before {
  -webkit-box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background-color: #f7f7f7;
  border-radius: 40px;
  top: 0;
  left: 0;
  content: "";
}
.btn.login:hover {
  -webkit-box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
  box-shadow: 1px 1px 1px rgba(46, 38, 36, 0.1), -1px -1px 1px #fff;
}
.btn.login:hover::before {
  opacity: 0.5;
}
.btn.login:active {
  color: rgba(46, 38, 36, 0.6);
  -webkit-box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
  box-shadow: inset 5px 5px 5px rgba(46, 38, 36, 0.1), inset -5px -5px 5px #fff;
}
.btn.login:active::before {
  opacity: 0;
}

@media screen and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .btn.move {
    box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
    background-color: #f7f7f7;
  }
  *::-ms-backdrop,
  .btn.login {
    box-shadow: 5px 5px 5px rgba(46, 38, 36, 0.1), -5px -5px 5px #fff;
    background-color: #f7f7f7;
  }
  *::-ms-backdrop,
  .btn.move::before {
    box-shadow: none;
  }
  *::-ms-backdrop,
  .btn.login::before {
    box-shadow: none;
  }
}
.btn.send {
  padding: 20px 0;
  width: 90%;
  max-width: 280px;
  border-radius: 40px;
  margin: 0 auto;
  font-size: 1.6rem;
  color: #fff;
  background: #00bcd4;
  -webkit-box-shadow: 1px 5px 10px -2px rgba(0, 151, 167, 0.5);
  box-shadow: 1px 5px 10px -2px rgba(0, 151, 167, 0.5);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.btn.send:hover {
  -webkit-box-shadow: 1px 1px 10px -2px rgba(0, 151, 167, 0.5);
  box-shadow: 1px 1px 10px -2px rgba(0, 151, 167, 0.5);
}
.btn.send:active {
  background: #0097A7;
  color: #00bcd4;
}

.btn.primary {
  color: #fff;
  background: #00bcd4;
  -webkit-box-shadow: 1px 5px 10px -2px rgba(0, 151, 167, 0.5);
  box-shadow: 1px 5px 10px -2px rgba(0, 151, 167, 0.5);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.btn.primary:hover {
  -webkit-box-shadow: 1px 1px 10px -2px rgba(0, 151, 167, 0.5);
  box-shadow: 1px 1px 10px -2px rgba(0, 151, 167, 0.5);
}
.btn.primary:active {
  background: #0097A7;
  color: #00bcd4;
}

.btn.min {
  padding: 0.5rem;
}

.btn.sub {
  display: inline-block;
  text-align: center;
  overflow: hidden;
  min-width: 70px;
  color: #00bcd4;
}
.btn.sub.next::after {
  display: inline-block;
  margin: 0 0.5rem;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 4px solid #00bcd4;
  content: "";
  vertical-align: middle;
  line-height: 1;
}
.btn.sub.prev::before {
  display: inline-block;
  margin: 0 0.5rem;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-right: 4px solid #00bcd4;
  content: "";
  vertical-align: middle;
  line-height: 1;
}
.btn.sub.delete {
  color: #BE7B7B;
}
.btn.sub.delete::before {
  display: inline;
  content: "× ";
}
.btn.sub.logout::before {
  display: inline;
  content: "× ";
}

/*Checkboxes styles*/
.checkbox_set input[type=checkbox] {
  display: none;
}
.checkbox_set input[type=checkbox] + label {
  cursor: pointer;
  height: 20px;
  line-height: 20px;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
.checkbox_set input[type=checkbox] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #888;
  opacity: 0.6;
  -webkit-transition: all 300ms, border-color 100ms;
  transition: all 300ms, border-color 100ms;
}
.checkbox_set input[type=checkbox]:checked + label:before {
  width: 10px;
  top: -2px;
  left: 5px;
  border-radius: 0;
  border: 2px solid #00bcd4;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ------------------------------------
form module
------------------------------------ */
*:focus {
  outline: none;
}

* {
  -webkit-tap-highlight-color: rgba(46, 38, 36, 0.1);
}

input[type=text],
input[type=url],
input[type=tel],
input[type=password],
input[type=email],
input[type=number],
textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, Helvetica, sans-serif;
  border-radius: 0;
  border: 1px solid #959595;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}
input[type=text]:focus,
input[type=url]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
textarea:focus {
  border: 1px solid #959595;
}
input[type=text]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aaa;
}
input[type=text]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
}
input[type=text]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #aaa;
}
input[type=text]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #aaa;
}
input[type=text]::placeholder,
input[type=url]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #aaa;
}

.select_wrap {
  position: relative;
  display: block;
  max-width: 100%;
  border: 1px solid #959595;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  background: #fff;
}
.select_wrap::before {
  position: absolute;
  top: 50%;
  right: 0.5em;
  padding: 0;
  width: 0;
  height: 0;
  border-top: 6px solid #666;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  content: "";
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  pointer-events: none;
}
.select_wrap select {
  padding: 1rem 2.5rem 1rem 0.5rem;
  width: 100%;
  max-width: 100%;
  outline: none;
  border: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-overflow: ellipsis;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select_wrap select::-ms-expand {
  display: none;
}

.input_wrap textarea {
  width: 100%;
  background: transparent;
}

.error dd.quantity {
  position: relative;
}
.error .error_point {
  display: block;
  width: 100%;
  position: absolute;
  margin: 0.7rem auto;
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.5rem 1rem;
  opacity: 1;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  background: rgba(157, 33, 33, 0.8);
  border-radius: 1rem;
  -webkit-box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.3);
  box-shadow: 0 5px 10px -5px rgba(46, 38, 36, 0.3);
  pointer-events: none;
  z-index: 10;
}
.error .error_point::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 10%;
  margin-left: -0.5rem;
  border: 0.5rem solid transparent;
  border-bottom: 0.5rem solid rgba(157, 33, 33, 0.8);
}
.error .error_point.min {
  width: 50px;
  height: 1.6rem;
  font-size: 1.1rem;
  margin: 0.3rem auto;
  padding: 0 0.1rem;
  overflow: hidden;
  line-height: 1.6rem;
  white-space: nowrap;
}
.error input[type=text],
.error input[type=url],
.error input[type=tel],
.error input[type=password],
.error input[type=email],
.error input[type=number],
.error textarea {
  border: 1px solid #9D2121;
  background: #F7EFEF !important;
  color: #9D2121;
}
.error input[type=text]:focus,
.error input[type=url]:focus,
.error input[type=tel]:focus,
.error input[type=password]:focus,
.error input[type=email]:focus,
.error input[type=number]:focus,
.error textarea:focus {
  border: 1px solid #9D2121;
}
.error input[type=text]:focus + .error_point,
.error input[type=url]:focus + .error_point,
.error input[type=tel]:focus + .error_point,
.error input[type=password]:focus + .error_point,
.error input[type=email]:focus + .error_point,
.error input[type=number]:focus + .error_point,
.error textarea:focus + .error_point {
  opacity: 0.5;
}
.error .select_wrap {
  border: 1px solid #9D2121;
  background: #F7EFEF !important;
  color: #9D2121;
}
.error .rad_point::before {
  background: #F7EFEF;
  border: 1px solid #9D2121;
}
.error .rad_text {
  color: #9D2121;
}
.error .error_message {
  font-size: 1rem;
  color: #9D2121;
  display: block;
  line-height: 1.4rem;
  margin: 0.2rem auto;
}

.hint_message {
  font-size: 1rem;
  color: #6A6563;
  display: block;
}

.info_message {
  font-size: 1.2rem;
  color: #88817f;
  display: block;
}

.disabled {
  opacity: 0.7;
}
.disabled input {
  pointer-events: none;
  background: #f0f0f0;
  opacity: 0.7;
}

.board.disabled {
  opacity: 1;
}
.board.disabled input {
  opacity: 1;
  border: 1px solid #f0f0f0;
  background: #f0f0f0;
}

.pass_wrap {
  position: relative;
}
.pass_wrap input {
  padding: 0.5rem 3rem 0.5rem 0.5rem;
}
.pass_wrap .icon_area {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #888;
}
.pass_wrap .icon_area .tgl_pass i::before {
  content: "\f070";
}
.pass_wrap .icon_area .tgl_pass.active i::before {
  content: "\f06e";
}

.form_area {
  margin: 0 auto 4rem;
}
.form_area dl {
  margin: 2rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .form_area dl {
    margin: 2rem auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
}
.form_area dl dt {
  width: 30%;
  padding: 1rem;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .form_area dl dt {
    width: 98%;
    margin: auto;
    padding: 0 0 1rem;
  }
}
.form_area dl dd {
  width: 70%;
}
.form_area dl dd .input_wrap {
  width: 100%;
}
.form_area dl dd .input_wrap input {
  margin: 0 auto;
  background: transparent;
  width: 100%;
  display: block;
  padding: 0.5rem;
}
.form_area dl dd .input_wrap.no_input {
  padding-top: 5px;
}
@media only screen and (max-width: 768px) {
  .form_area dl dd {
    width: 98%;
    margin: auto;
  }
}
.form_area dl.center dt,
.form_area dl.center dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.form_area.text dl,
.form_area.text p {
  padding-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .form_area.text dl,
  .form_area.text p {
    padding-bottom: 2rem;
  }
}
.form_area.text dl:first-of-type,
.form_area.text p:first-of-type {
  padding-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .form_area.text dl:first-of-type,
  .form_area.text p:first-of-type {
    padding-top: 2rem;
  }
}
.form_area.text dl dt,
.form_area.text p dt {
  padding: 0;
}
.form_area.card {
  margin: 4rem auto;
  background: #fff;
  padding: 4rem;
}
@media only screen and (max-width: 768px) {
  .form_area.card {
    padding: 2rem;
  }
}
.form_area.text.card {
  padding: 2rem 4rem;
}

.input_wrap .multi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input_wrap .multi input:not(:last-child) {
  margin-right: 0.5rem;
}

.select_multi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.select_multi div:not(:last-child) {
  margin-right: 0.5rem;
}

.rad_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100px;
  position: relative;
  padding: 0.5rem 1.6rem 0.5rem 1rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 1rem 0 0;
}

.rad_input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  z-index: -1;
}

.rad_point {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  border-radius: 100px;
  background: #00bcd4;
  position: relative;
  display: block;
}
.rad_point::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: inherit;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #ddd;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.rad_input:checked + .rad_point::before {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.rad_text {
  margin-left: 1.2rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #6A6563;
}

.rad_input:checked ~ .rad_text {
  color: #2e2624;
}

/* ------------------------------------
Layout header inside
------------------------------------ */
.header {
  background: transparent;
  position: relative;
  z-index: 100;
}
.header .inner {
  width: 98%;
  max-width: 1400px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
}
@media only screen and (max-width: 768px) {
  .header .inner {
    padding: 10px 0;
  }
}
.header .header_nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .header_nav .salon_name {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8rem;
  padding-right: 10px;
  text-align: right;
  color: #595757;
}
@media only screen and (max-width: 768px) {
  .header .header_nav .salon_name {
    display: none;
  }
}
.header .header_nav .salon_menu {
  padding: 0 10px;
}
.header .header_nav .salon_menu .salon_btn {
  width: 20px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: block;
}
.header .header_nav .salon_menu .salon_btn span {
  background-color: #666;
  position: absolute;
  border-radius: 2px;
  -webkit-transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
  width: 4px;
  height: 4px;
}
.header .header_nav .salon_menu .salon_btn span:nth-child(1) {
  top: 0;
  left: 6px;
}
.header .header_nav .salon_menu .salon_btn span:nth-child(2) {
  top: 8px;
  left: 6px;
}
.header .header_nav .salon_menu .salon_btn span:nth-child(3) {
  bottom: 0;
  left: 6px;
}
.header .header_nav .salon_menu.open .salon_btn span:nth-child(1) {
  -webkit-transform: rotate(45deg) scaleX(0.7);
  transform: rotate(45deg) scaleX(0.7);
  top: 10PX;
  left: -3px;
  width: 14px;
  height: 2px;
}
.header .header_nav .salon_menu.open .salon_btn span:nth-child(2) {
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition-duration: 50ms;
  transition-duration: 50ms;
}
.header .header_nav .salon_menu.open .salon_btn span:nth-child(3) {
  -webkit-transform: rotate(-45deg) scaleX(0.7);
  transform: rotate(-45deg) scaleX(0.7);
  top: 10PX;
  left: 3px;
  width: 14px;
  height: 2px;
}
.header .header_nav .salon_menu ul {
  display: none;
}
.header .header_nav .salon_menu.open ul {
  display: block;
  position: absolute;
  width: 260px;
  background: #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  -webkit-box-shadow: 0px -2px 10px 0px rgba(46, 38, 36, 0.1);
  box-shadow: 0px -2px 10px 0px rgba(46, 38, 36, 0.1);
  right: 3px;
  top: 30px;
}
.header .header_nav .salon_menu.open ul::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 15px;
  margin-left: -0.5rem;
  border: 0.5rem solid transparent;
  border-bottom: 0.5rem solid #fff;
}
.header .header_nav .salon_menu.open ul li {
  border-bottom: 1px dotted #d6d6d6;
  font-size: 1.4rem;
  padding: 1rem 0;
}
.header .header_nav .salon_menu.open ul li.name {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header .header_nav .salon_menu.open ul li.name {
    display: block;
    color: #595757;
    line-height: 1.8rem;
  }
}
.header .header_nav .salon_menu.open ul li:last-child {
  border-bottom: none;
}
.header .header_nav .salon_menu.open ul li a {
  width: 100%;
  height: 100%;
  display: block;
}

#agreements h1 {
  width: 98%;
  max-width: 400px;
  text-align: center;
  margin: 0 auto 2rem;
}
#agreements h1 img {
  width: 100%;
  max-width: 300px;
}
#agreements h1 span {
  display: block;
  font-size: 2.2rem;
  line-height: 2.8rem;
  margin: 1rem auto;
}

/* ------------------------------------
Layout header outside
------------------------------------ */
#login .info {
  width: 100%;
  background: #F7EFEF;
  padding: 1.4rem 0.5rem;
  position: relative;
  top: 0;
  left: 0;
}
#login .info .inner {
  width: 96%;
  max-width: 1080px;
  margin: auto;
}
#login .info h2 {
  font-size: 1.8rem;
  font-weight: 500;
  color: #BE7B7B;
}
#login .info p {
  font-size: 1.4rem;
}
#login .alert_message {
  text-align: center;
}
#login main.login_panel {
  width: 100%;
  max-width: 720px;
  margin: 10rem auto;
  padding: 0 10px;
}
#login main.login_panel h1 {
  width: 98%;
  max-width: 300px;
  text-align: center;
  margin: 0 auto 2rem;
}
#login main.login_panel h1 img {
  width: 100%;
}
#login main.login_panel h1 span {
  display: block;
  font-size: 1.2rem;
  color: #C1A293;
  margin: 0 auto 1rem;
}
#login main.login_panel .login_inner {
  padding: 2rem 0 0;
}
#login main.login_panel dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
@media only screen and (max-width: 768px) {
  #login main.login_panel dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
  }
}
#login main.login_panel dl dt {
  width: 30%;
  font-weight: bold;
  padding-top: 1rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #login main.login_panel dl dt {
    width: 90%;
    margin: auto;
    padding-top: 0;
  }
}
#login main.login_panel dl dd {
  width: 60%;
}
#login main.login_panel dl dd .input_wrap {
  width: 100%;
  max-width: initial;
}
@media only screen and (max-width: 768px) {
  #login main.login_panel dl dd {
    width: 90%;
    margin: auto;
  }
}
#login main.login_panel .input_wrap {
  margin: 0 auto 2rem;
  width: 98%;
  max-width: 360px;
}
#login main.login_panel .input_wrap input {
  margin: 0 auto;
  background: transparent;
  width: 100%;
  display: block;
  padding: 0.5rem;
}
#login main.login_panel .btn_area {
  margin: 4rem auto;
}
#login main.login_panel .btn_area.movie {
  margin: 8rem auto;
}
#login main.login_panel .btn_area .btn {
  margin: auto;
}
#login main.login_panel .btn_area .sub_link {
  margin: 4rem auto 0;
  text-align: center;
}
#login main.login_panel h2 {
  margin: 0 auto 2rem;
  text-align: center;
  color: #696362;
}
#login main.login_panel p {
  color: #696362;
  text-align: center;
}
#login main.login_panel .memo_area {
  margin: 2rem auto;
}
#login main.login_panel .memo_area p.memo {
  font-size: 1.4rem;
}

#maintenance .maintenance_message {
  margin: 4rem auto;
  text-align: center;
}
#maintenance .maintenance_message p {
  margin: 1rem auto;
}
#maintenance .maintenance_message div {
  margin: 3rem auto;
}

/* ------------------------------------
Layout main inside
------------------------------------ */
main .inner {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto 4rem;
  padding: 60px 20px 0;
}
@media only screen and (max-width: 768px) {
  main .inner {
    padding: 25px 15px 0;
  }
}
main .inner .inner_column {
  margin: 0 auto 8rem;
}
main .inner h1 {
  font-family: "Marcellus", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-size: 3.4rem;
  vertical-align: middle;
  text-align: center;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  main .inner h1 {
    font-size: 3rem;
    line-height: 3rem;
    text-align: left;
  }
}
main .inner h1 span {
  font-size: 1.2rem;
  display: block;
}
@media only screen and (max-width: 768px) {
  main .inner h1 span {
    display: inline-block;
  }
}
main .inner h2 {
  font-size: 2.1rem;
  font-weight: 500;
  padding-left: 40px;
  position: relative;
  margin: 0 auto 2rem;
}
@media only screen and (max-width: 768px) {
  main .inner h2 {
    font-size: 18px;
    line-height: 2rem;
    padding-left: 26px;
  }
}
main .inner h2::before {
  content: "";
  width: 30px;
  height: 8px;
  background: #C1A293;
  display: block;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
}
@media only screen and (max-width: 768px) {
  main .inner h2::before {
    width: 20px;
  }
}
main .inner h2 span {
  font-weight: normal;
  font-size: 1.4rem;
  display: inline-block;
}
main .inner .salon_name_area {
  margin: 0 auto 2rem;
  position: relative;
}
main .inner .salon_name_area span {
  display: block;
  font-size: 1.2rem;
  color: #6A6563;
}
main .inner .salon_name_area p {
  font-size: 1.4rem;
  color: #6A6563;
}
main .inner .message_area {
  margin: 0 auto 2rem;
  position: relative;
  color: #6A6563;
}
main .inner .message_area.wide {
  padding: 4rem 0;
  text-align: center;
}
main .inner .message_area.wide p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
main .inner .message_area p {
  font-size: 1.4rem;
}
main .inner .message_area span {
  display: inline-block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.1428571429;
}
@media only screen and (max-width: 768px) {
  main .inner .message_area span {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.1666666667;
  }
}
main .inner .message_area .checkbox_set {
  margin: 1rem auto;
  width: 100%;
}
main .inner .btn_area.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 90%;
  max-width: 640px;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  main .inner .btn_area.flex a.btn,
  main .inner .btn_area.flex .btn {
    margin-bottom: 2rem;
  }
}
main .inner .btn_area .checkbox_set {
  margin: 1rem auto;
  width: 100%;
}
main .inner .btn_area .sub_link {
  margin: 4rem auto 0;
  width: 100%;
  text-align: center;
}

.loading {
  width: 100%;
  height: 100vh;
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  background: rgba(222, 222, 222, 0.8);
  z-index: 1000;
}

.spinner {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: center;
  transform-origin: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-animation: spinner 1.2s infinite linear forwards;
  animation: spinner 1.2s infinite linear forwards;
}

@-webkit-keyframes spinner {
  0% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0.5);
    transform: translate(-50%, -50%) rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 11px 11px #C1A293, -11px -11px #C1A293, 11px -11px #C1A293, -11px 11px #C1A293;
    box-shadow: 11px 11px #C1A293, -11px -11px #C1A293, 11px -11px #C1A293, -11px 11px #C1A293;
    -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(1);
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
    transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
  }
}

@keyframes spinner {
  0% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    -webkit-transform: translate(-50%, -50%) rotate(0) scale(0.5);
    transform: translate(-50%, -50%) rotate(0) scale(0.5);
  }
  50% {
    opacity: 1;
    -webkit-box-shadow: 11px 11px #C1A293, -11px -11px #C1A293, 11px -11px #C1A293, -11px 11px #C1A293;
    box-shadow: 11px 11px #C1A293, -11px -11px #C1A293, 11px -11px #C1A293, -11px 11px #C1A293;
    -webkit-transform: translate(-50%, -50%) rotate(180deg) scale(1);
    transform: translate(-50%, -50%) rotate(180deg) scale(1);
  }
  100% {
    opacity: 0.2;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    -webkit-transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
    transform: translate(-50%, -50%) rotate(360deg) scale(0.5);
  }
}
/* ------------------------------------
Layout main inside policy
------------------------------------ */
main .inner .inbox h2 {
  font-size: 1.8rem;
  margin: 0 auto 0.5rem;
  padding-left: 0;
}
main .inner .inbox h2:before {
  content: "";
  width: 0;
  height: 0;
  background: transparent;
  display: none;
  position: absolute;
}

.inbox {
  margin: 0 auto 2rem;
  border: 1px solid #d6d6d6;
  padding: 2rem 1rem;
  height: 40vh;
  overflow: auto;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .inbox {
    padding: 1rem 0.5rem;
  }
}
.inbox.non_box {
  border: none;
  height: auto;
  overflow: auto;
  padding: 2rem 1rem 0;
}
.inbox > p {
  margin-bottom: 2rem;
}
.inbox > p + ul,
.inbox > p + ol {
  margin-top: -1rem;
}
.inbox ul.basic_ul,
.inbox ol.basic_ol {
  margin-bottom: 2rem;
}
.inbox ul.basic_ul .child_ul,
.inbox ul.basic_ul .child_ol,
.inbox ul.basic_ul .grandchild_ul,
.inbox ul.basic_ul .grandchild_ol,
.inbox ol.basic_ol .child_ul,
.inbox ol.basic_ol .child_ol,
.inbox ol.basic_ol .grandchild_ul,
.inbox ol.basic_ol .grandchild_ol {
  margin-top: 1rem;
}
.inbox ul.basic_ul .child_ul > li,
.inbox ul.basic_ul .child_ol > li,
.inbox ul.basic_ul .grandchild_ul > li,
.inbox ul.basic_ul .grandchild_ol > li,
.inbox ol.basic_ol .child_ul > li,
.inbox ol.basic_ol .child_ol > li,
.inbox ol.basic_ol .grandchild_ul > li,
.inbox ol.basic_ol .grandchild_ol > li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 2rem;
  list-style-type: none;
  font-weight: normal;
  font-size: 1.4rem;
}
.inbox ul.basic_ul .child_ul > li:before,
.inbox ul.basic_ul .child_ol > li:before,
.inbox ul.basic_ul .grandchild_ul > li:before,
.inbox ul.basic_ul .grandchild_ol > li:before,
.inbox ol.basic_ol .child_ul > li:before,
.inbox ol.basic_ol .child_ol > li:before,
.inbox ol.basic_ol .grandchild_ul > li:before,
.inbox ol.basic_ol .grandchild_ol > li:before {
  display: block;
  float: left;
  margin-left: -2rem;
  width: 2rem;
  list-style-type: none;
}
.inbox ul.basic_ul .child_ul > li:last-child,
.inbox ul.basic_ul .child_ol > li:last-child,
.inbox ul.basic_ul .grandchild_ul > li:last-child,
.inbox ul.basic_ul .grandchild_ol > li:last-child,
.inbox ol.basic_ol .child_ul > li:last-child,
.inbox ol.basic_ol .child_ol > li:last-child,
.inbox ol.basic_ol .grandchild_ul > li:last-child,
.inbox ol.basic_ol .grandchild_ol > li:last-child {
  margin-bottom: 0;
}
.inbox ul.basic_ul .child_ol,
.inbox ol.basic_ol .child_ol {
  counter-reset: child-counter;
}
.inbox ul.basic_ul .child_ol > li:before,
.inbox ol.basic_ol .child_ol > li:before {
  counter-increment: child-counter;
}
.inbox ul.basic_ul .child_ol.type_1 > li:before,
.inbox ol.basic_ol .child_ol.type_1 > li:before {
  content: counters(child-counter, "") ".";
}
.inbox ul.basic_ul .child_ol.type_p > li:before,
.inbox ol.basic_ol .child_ol.type_p > li:before {
  content: counters(child-counter, "") ")";
}
.inbox ul.basic_ul .child_ol.type_d > li:before,
.inbox ol.basic_ol .child_ol.type_d > li:before {
  content: "(" counters(child-counter, "") ")";
}
.inbox ul.basic_ul .grandchild_ol,
.inbox ol.basic_ol .grandchild_ol {
  counter-reset: grandchild-counter;
}
.inbox ul.basic_ul .grandchild_ol > li:before,
.inbox ol.basic_ol .grandchild_ol > li:before {
  counter-increment: grandchild-counter;
}
.inbox ul.basic_ul .grandchild_ol.type_1 > li:before,
.inbox ol.basic_ol .grandchild_ol.type_1 > li:before {
  content: counters(grandchild-counter, "") ".";
}
.inbox ul.basic_ul .grandchild_ol.type_d > li:before,
.inbox ol.basic_ol .grandchild_ol.type_d > li:before {
  content: "(" counters(grandchild-counter, "") ")";
}
.inbox ul.basic_ul .child_ul h3,
.inbox ol.basic_ol .child_ul h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: -1rem;
}
.inbox ul.basic_ul .grandchild_ul h3,
.inbox ol.basic_ol .grandchild_ul h3 {
  margin-left: -1.5rem;
  display: inline-block;
  font-weight: normal;
  padding-right: 0.5rem;
}
.inbox ol.basic_ol {
  counter-reset: basic-counter;
}
.inbox ol.basic_ol > li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  list-style-type: none;
}
.inbox ol.basic_ol > li:before {
  display: block;
  float: left;
  margin-left: -2rem;
  width: 2rem;
  list-style-type: none;
  content: counters(basic-counter, "") ".";
  counter-increment: basic-counter;
  font-weight: bold;
}
.inbox ol.basic_ol.type_d > li {
  padding-left: 2.5rem;
}
.inbox ol.basic_ol.type_d > li:before {
  margin-left: -2.5rem;
  content: "(" counters(basic-counter, "") ")";
}
.inbox ol.basic_ol > li:last-child {
  margin-bottom: 0;
}

#authSubmit.disabled {
  cursor: default !important;
  pointer-events: none;
  opacity: 0.3;
}