/* =========================================================
 Foundation
========================================================= */
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.js-inView.is-show {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-duration: 1.2s;
          transition-duration: 1.2s;
  -webkit-transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
          transition-timing-function: cubic-bezier(0.24, 1, 0.32, 1);
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.js-inView-fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.js-inView-fadeInLeft {
  opacity: 0;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.js-inView-fadeInRight {
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.js-inView-fadeInRightUp {
  opacity: 0;
  -webkit-transform: translate(50px, -50px);
          transform: translate(50px, -50px);
}

.js-inView-zoomIn {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
}

/* =========================================================
 Object
========================================================= */
/* ---------------------------------------------------------
 Component
--------------------------------------------------------- */
select::-ms-expand {
  display: none;
}

.c-global-button {
  cursor: pointer;
  display: none;
  -webkit-transition-duration: 3s;
          transition-duration: 3s;
  position: fixed;
  bottom: 60px;
  width: 144px;
  height: 144px;
  background: #fa9cb8;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  z-index: 999;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  right: 30px;
  border: solid 2px #fff;
}

.c-global-button :hover {
  -webkit-box-shadow: 0 0 10px #000;
          box-shadow: 0 0 10px #000;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  color: #fff;
}

/* ---------------------------------------------------------
 Project
--------------------------------------------------------- */
.l-main__lp {
  font-family: YuGothic, -apple-system, BlinkMacSystemFont, "Noto Sans Japanese", Verdana, Meiryo, sans-serif;
  line-height: 1.77778;
  font-size: 18px;
  color: #222222 !important;
  background: #fff;
  font-weight: bold;
}

.l-main__lp * {
  font-weight: bold !important;
}

.l-main__lp p {
  line-height: inherit;
}

.l-main__lp ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-main__lp .c-container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

.l-main__lp .u-sp-block {
  display: none;
}

.l-main__lp .u-pc-block {
  display: block;
}

.l-main__lp .c-lp-btn,
.l-main__lp .c-lp-btn--medium,
.l-main__lp .c-lp-btn--large {
  width: 280px;
  position: relative;
  display: block;
  background: #d0191e;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  color: #fff;
  margin-top: 34px;
  display: block;
  border: solid 1px #c81116;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.l-main__lp .c-lp-btn:before, .l-main__lp .c-lp-btn:after,
.l-main__lp .c-lp-btn--medium:before,
.l-main__lp .c-lp-btn--medium:after,
.l-main__lp .c-lp-btn--large:before,
.l-main__lp .c-lp-btn--large:after {
  content: "";
  background: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  height: 2px;
  width: 20px;
}

.l-main__lp .c-lp-btn:after,
.l-main__lp .c-lp-btn--medium:after,
.l-main__lp .c-lp-btn--large:after {
  width: 10px;
  -webkit-transform: rotateZ(30deg);
  transform: rotateZ(30deg);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.l-main__lp .c-lp-btn:hover,
.l-main__lp .c-lp-btn--medium:hover,
.l-main__lp .c-lp-btn--large:hover {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  color: #c81116;
  background: #fff;
}

.l-main__lp .c-lp-btn:hover:before, .l-main__lp .c-lp-btn:hover:after,
.l-main__lp .c-lp-btn--medium:hover:before,
.l-main__lp .c-lp-btn--medium:hover:after,
.l-main__lp .c-lp-btn--large:hover:before,
.l-main__lp .c-lp-btn--large:hover:after {
  background: #c81116;
}

.l-main__lp .c-lp-btn.animation,
.l-main__lp .animation.c-lp-btn--medium,
.l-main__lp .animation.c-lp-btn--large {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.l-main__lp .c-lp-btn.c-animation,
.l-main__lp .c-animation.c-lp-btn--medium,
.l-main__lp .c-animation.c-lp-btn--large {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.l-main__lp .c-lp-tlt,
.l-main__lp .c-lp-tlt--white {
  text-align: center;
}

.l-main__lp .c-lp-tlt > span,
.l-main__lp .c-lp-tlt--white > span {
  margin-top: 15px;
  display: block;
  font-size: 20px;
}

.l-main__lp .c-lp-tlt > span > span,
.l-main__lp .c-lp-tlt--white > span > span {
  color: #c81116;
}

.l-main__lp .c-lp-btn--medium {
  width: 360px;
  line-height: 80px;
  font-size: 21px;
  margin-left: auto;
  margin-top: 0 !important;
}

.l-main__lp .c-lp-btn--large {
  width: 540px;
  line-height: 80px;
  font-size: 21px;
  margin-left: auto;
  margin-right: auto;
}

.l-main__lp .c-lp-btn--large:before {
  width: 33px;
}

.l-main__lp .c-lp-btn--large:after {
  width: 20px;
}

.l-main__lp .c-global-button {
  background: #218de8;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  opacity: 1;
}

.l-main__lp .c-global-button:hover {
  color: #fff;
  opacity: 0.8;
}

.l-main__lp .p-mv {
  overflow: hidden;
  position: relative;
}

.l-main__lp .p-mv__btn {
  margin-top: -55px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.l-main__lp .p-mv__box {
  margin-top: 5px;
  margin-left: 34%;
  margin-right: 0;
  padding: 20px 22px;
  font-size: 16px;
  line-height: 1.5;
  width: 500px;
  border: solid 3px #cfdade;
  background: rgba(255, 255, 255, 0.5);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.l-main__lp .p-mv__box-cap {
  text-align: right;
  margin-top: 1%;
  position: relative;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  width: 68%;
  margin-left: auto;
}

.l-main__lp .p-mv__box-cap:before {
  top: 16px;
  content: "";
  position: absolute;
  left: calc(100% - 90px);
  height: calc(100% - 32px);
  background: rgba(255, 255, 255, 0.7);
  width: 200%;
  z-index: 1;
}

.l-main__lp .p-mv__box-cap p {
  position: relative;
  z-index: 1;
}

.l-main__lp .p-mv__bg {
  width: 100%;
}

.l-main__lp .p-mv__tlt {
  width: 53%;
  margin-left: auto;
  text-align: right;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.l-main__lp .p-mv__content {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  left: 0;
  position: absolute;
}

.l-main__lp .p-mv .c-container {
  padding: 0;
}

.l-main__lp .p-mv .text-center {
  text-align: right;
}

.l-main__lp .p-mv .color {
  color: #c91217;
}

.l-main__lp .p-offline {
  overflow: hidden;
  color: #fff;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, color-stop(53%, #a6e2f9), color-stop(47%, #218de8));
  background: linear-gradient(to right, #a6e2f9 53%, #218de8 47%);
}

.l-main__lp .p-offline__tlt {
  margin-left: -39px;
}

.l-main__lp .p-offline__tlt-right {
  margin-left: 112px;
  font-size: 22px;
  line-height: 1.5;
}

.l-main__lp .p-offline__txt {
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
}

.l-main__lp .p-offline__txt img {
  margin-left: -7px;
  margin-top: -8px;
}

.l-main__lp .p-offline__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.l-main__lp .p-offline__captionitem {
  width: 48%;
  margin-right: 30px;
  font-size: 22px;
  margin-top: 27px;
  color: #333;
}

.l-main__lp .p-offline__captionitem__head {
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  background: #fff;
}

.l-main__lp .p-offline__captionitem__head + p {
  color: #333;
  font-size: 20px;
}

.l-main__lp .p-offline__captionitem__body {
  margin-left: -13px;
}

.l-main__lp .p-offline__captionitem__txt {
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
  text-align: center;
}

.l-main__lp .p-offline__item {
  position: relative;
  padding-left: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.l-main__lp .p-offline__item::before {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 4px;
  content: "";
  width: 13px;
  height: 13px;
  border: solid 1px #fff;
  background: rgba(255, 255, 255, 0.5);
}

.l-main__lp .p-offline__item::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 0px;
  background: url(/salon_premium/2020autumn/images/icon.png) top left no-repeat;
  width: 20px;
  height: 20px;
  z-index: 1;
}

.l-main__lp .p-offline__list {
  margin-top: 26px;
  line-height: 1.6;
  font-size: 20px;
  padding-left: 20px;
}

.l-main__lp .p-offline__box {
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
  background: #218de8;
  margin-left: 45px;
  padding-left: 25px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}

.l-main__lp .p-offline__box::before {
  height: 100%;
  width: 150%;
  display: block;
  content: "";
  background: #218de8;
  position: absolute;
  left: 100%;
  top: 0;
}

.l-main__lp .p-offline__note {
  font-size: 15px;
  margin-top: 7px;
  padding-left: 50px;
  padding-top: 20px;
  color: #333;
}

.l-main__lp .p-offline__note a {
  color: #333;
}

.l-main__lp .p-offline__note a:hover {
  color: #d30209;
}

.l-main__lp .p-offline__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-main__lp .p-offline__left {
  padding-bottom: 42px;
  padding-top: 50px;
  width: 63.99%;
  background: #a6e2f9;
  -webkit-transform: skew(-20deg);
          transform: skew(-20deg);
}

.l-main__lp .p-offline__left > * {
  -webkit-transform: skew(20deg);
          transform: skew(20deg);
}

.l-main__lp .p-offline__right {
  padding-bottom: 50px;
  padding-top: 56px;
  margin-left: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-main__lp .p-offline .c-container {
  padding: 0;
}

.l-main__lp .p-speaker {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  background: url(/salon_premium/2021spring/images/bgspeaker.jpg) top left no-repeat;
}

.l-main__lp .p-speaker__list {
  margin-top: 55px;
}

.l-main__lp .p-speaker__item {
  position: relative;
  max-width: calc(100% - 50px);
  margin-left: auto;
  background: #defcf9;
  margin-bottom: 60px;
  padding-top: 45px;
  padding-bottom: 50px;
}

.l-main__lp .p-speaker__item:nth-child(2n) {
  margin-left: 0;
  margin-right: auto;
}

.l-main__lp .p-speaker__item:nth-child(2n):before {
  right: 100%;
  left: auto;
}

.l-main__lp .p-speaker__item:nth-child(2n) .p-speaker-item {
  padding-left: 20px;
}

.l-main__lp .p-speaker__item:nth-child(2n) .p-speaker-item__img {
  right: -50px;
  left: auto;
}

.l-main__lp .p-speaker__item:nth-child(2n-1) .p-speaker-item {
  margin-left: auto;
}

.l-main__lp .p-speaker__item:last-child {
  margin-bottom: 0;
}

.l-main__lp .p-speaker__item:before {
  height: 100%;
  content: "";
  position: absolute;
  left: 100%;
  width: 100%;
  background: #defcf9;
  top: 0;
}

.l-main__lp .p-speaker .p-speaker-item {
  padding-left: 28px;
  width: 50%;
}

.l-main__lp .p-speaker .p-speaker-item__img {
  position: absolute;
  top: 0;
  left: -50px;
}

.l-main__lp .p-speaker .p-speaker-item__cap {
  display: block;
  border-bottom: solid 2px #cdd6da;
  padding-bottom: 5px;
  margin-top: 8px;
  margin-bottom: 5px;
}

.l-main__lp .p-speaker .p-speaker-item__tlt {
  font-size: 22px;
  line-height: 1.36364;
  text-indent: -10px;
}

.l-main__lp .p-speaker .p-speaker-item__txt {
  margin-left: -10px;
  font-size: 17px;
}

.l-main__lp .p-speaker .p-speaker-item__txt span {
  display: inline-block;
  margin-left: 10px;
}

.l-main__lp .p-speaker .p-speaker-item__red {
  margin-bottom: -8px;
  margin-top: 5px;
  color: #d0191e;
}

.l-main__lp .p-speaker .p-speaker-item .c-lp-btn {
  margin-left: auto;
  margin-right: auto;
}

.l-main__lp .p-voice {
  background: url(/salon_premium/2020autumn/images/voice___bg.jpg) bottom center no-repeat;
  background-size: 100%;
  padding-top: 180px;
  padding-bottom: 150px;
}

.l-main__lp .p-voice__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 55px -20px 0;
}

.l-main__lp .p-voice__item {
  padding: 0 20px;
  width: 33.33333%;
}

.l-main__lp .p-voice .p-voice-item {
  background: #fff;
  height: 100%;
}

.l-main__lp .p-voice .p-voice-item__header {
  padding: 0 40px;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #7ac1fd;
  color: #fff;
}

.l-main__lp .p-voice .p-voice-item__body {
  line-height: 1.88889;
  padding: 30px 34px 43px;
}

.l-main__lp .p-voice .p-voice-item__tlt {
  width: 100%;
  letter-spacing: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.l-main__lp .p-voice .p-voice-item__tlt picture {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.l-main__lp .p-voice .p-voice-item__tlt img {
  margin-right: 40px;
}

.l-main__lp .p-access {
  background: #defcf9;
  padding-top: 107px;
  padding-bottom: 120px;
}

.l-main__lp .p-access__map {
  margin-top: 60px;
}

.l-main__lp .p-access__map img {
  width: 100%;
}

.l-main__lp .p-access__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.l-main__lp .p-access__btn a {
  margin: 0 15px;
  width: 350px;
  color: #fff;
  background: #d0191e;
  border-color: #d0191e;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  padding: 10px 20px;
  text-decoration: none;
}

.l-main__lp .p-access__info {
  margin-top: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-main__lp .p-access .p-access-info {
  width: 34%;
}

.l-main__lp .p-access .p-access-info:first-child {
  width: 66%;
}

.l-main__lp .p-access .p-access-info__tlt {
  font-size: 22px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 10px;
}

.l-main__lp .p-access .p-access-info__tlt:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#218de8), to(#81d8fa));
  background: linear-gradient(to right, #218de8, #81d8fa);
}

.l-main__lp .p-access .p-access-info__txt p {
  margin-bottom: 0;
}

.l-main__lp .p-access .c-container {
  padding: 0 25px;
}

.l-main__lp .p-qa {
  padding-top: 110px;
  padding-bottom: 120px;
}

.l-main__lp .p-qa__list {
  margin-top: 50px;
}

.l-main__lp .p-qa .p-qa-item {
  margin-bottom: 60px;
}

.l-main__lp .p-qa .p-qa-item__q {
  padding: 15px 0;
  font-size: 22px;
  line-height: 1.36364;
  background: url(/salon_premium/2021spring/images/q.png) top left no-repeat #218de8;
  padding-left: 128px;
  color: #fff;
  letter-spacing: 3.74px;
}

.l-main__lp .p-qa .p-qa-item__a {
  background: #defcf9;
  padding: 32px 20px 35px 100px;
  position: relative;
}

.l-main__lp .p-qa .p-qa-item__a:before {
  content: "";
  position: absolute;
  top: 36px;
  left: 40px;
  width: 28px;
  height: 28px;
  background: url(/salon_premium/2021spring/images/a.png) center center no-repeat;
}

.l-main__lp .p-qa .p-qa-item__a a {
  color: #c81116;
}

.l-main__lp .p-qa .p-qa-item__a a:hover {
  text-decoration: none;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.l-main__lp .p-qa .p-qa-item__list {
  margin-top: 15px;
  font-size: 16px;
}

.l-main__lp .p-qa .p-qa-item:last-child {
  margin-bottom: 0;
}

.l-main__lp .p-form {
  padding-bottom: 100px;
  background: #defcf9;
  padding-top: 110px;
}

.l-main__lp .p-form__box {
  margin-top: 55px;
  background: #a6e2f9;
  color: #222222;
  padding: 40px 50px 43px;
  line-height: 1.88889;
}

.l-main__lp .p-form__box-footer {
  background: #fff;
  text-align: right;
  padding: 15px 50px;
}

.l-main__lp .p-form__box-footer a {
  color: #c91217;
  display: inline-block;
  margin-left: auto;
}

.l-main__lp .p-form__box-footer a:hover {
  text-decoration: none;
}

.l-main__lp .p-form__box-btn {
  margin-top: 58px;
}

.l-main__lp .p-form__tlt {
  text-align: center;
  margin-top: 150px;
}

.l-main__lp .p-form__cap {
  text-align: center;
  font-size: 20px;
  margin-top: 18px;
}

.l-main__lp .p-form__cap span {
  margin-left: 10px;
}

.l-main__lp .p-form .p-lp-form {
  font-size: 20px;
}

.l-main__lp .p-form .p-lp-form .p-list-input {
  margin-top: 60px;
}

.l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item {
  margin-bottom: 37px;
}

.l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item.mgb60 {
  margin-bottom: 60px;
}

.l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item.mgb77 {
  margin-bottom: 77px;
}

.l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item .text-center {
  font-size: 18px;
  text-align: center;
}

.l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item .text-center .c-input__checkbox + label {
  padding-left: 50px;
}

.l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item .text-center .u-break-line {
  display: none;
}

.l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -20px;
}

.l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-col2 .p-list-input-item {
  width: 50%;
  padding: 0 20px;
}

.l-main__lp .p-form .p-lp-form .p-list-input .c-input__text {
  height: 70px;
  background: #fff;
  border: solid 1px #999999;
  width: 100%;
  border-radius: 5px;
}

.l-main__lp .p-form .p-lp-form .p-list-input .c-label__text {
  display: block;
  margin-bottom: 8px;
  position: relative;
}

.l-main__lp .p-form .p-lp-form .p-list-input .c-label__text.-select:before {
  z-index: 3;
  font-family: "FontAwesome";
  font-weight: 900;
  content: "\f106";
  font-size: 25px;
  font-size: 2.5rem;
  color: #565656;
  position: absolute;
  margin: auto;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  text-align: center;
  top: 57px;
  left: 20px;
}

.l-main__lp .p-form .p-lp-form .p-item__checkbox {
  padding: 30px 40px;
  border-top: solid 2px #d9e3e7;
}

.l-main__lp .p-form .p-lp-form .p-item__checkbox:nth-child(2n-1) {
  background: #fbfdfe;
  border-top: solid 2px #e6e8e9;
}

.l-main__lp .p-form .p-lp-form .p-item__checkbox:last-child {
  border-bottom: solid 2px #e6e8e9;
}

.l-main__lp .p-form .p-lp-form .p-item__checkbox .p-form__small {
  padding-left: 0;
}

.l-main__lp .p-form .p-lp-form .p-item__checkbox .u-sp-block {
  margin-right: 8px;
  display: inline-block;
}

.l-main__lp .p-form .p-lp-form .c-label__checkbox {
  display: block;
}

.l-main__lp .p-form .p-lp-form .c-label__checkbox .u-break-line {
  padding-left: 10px;
}

.l-main__lp .p-form .p-lp-form .c-input__checkbox {
  position: absolute;
  opacity: 0;
}

.l-main__lp .p-form .p-lp-form .c-input__checkbox:checked + label:before {
  background: #c81116;
}

.l-main__lp .p-form .p-lp-form .c-input__checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  background: white;
  width: 2px;
  height: 2px;
  -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-main__lp .p-form .p-lp-form .c-input__checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}

.l-main__lp .p-form .p-lp-form .c-input__checkbox:disabled + label:before {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #ddd;
}

.l-main__lp .p-form .p-lp-form .c-input__checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  padding-left: 65px;
}

.l-main__lp .p-form .p-lp-form .c-input__checkbox + label:before {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  vertical-align: text-top;
  height: 26px;
  width: 26px;
  background: #fff;
  border-radius: 5px;
  border: solid 2px #e6e8e9;
}

.l-main__lp .p-form .p-lp-form .c-input__text.-select {
  padding-left: 6rem;
}

.l-main__lp .p-form .p-lp-form .color {
  color: #c91217;
  position: relative;
  top: 2px;
  display: inline-block;
  margin-left: 8px;
  font-size: 16px;
  margin-right: 8px;
}

.l-main__lp .p-form .p-form-list-check {
  margin-top: 22px;
}

.l-main__lp .p-form .p-list-personal .c-label__data {
  height: 70px;
  line-height: 70px;
  margin-bottom: 30px;
}

.l-main__lp .p-form .p-list-personal .c-label__text {
  font-size: 20px;
  margin-bottom: 8px;
}

.c-input__radio {
  display: inline-block;
}

.c-input__radio + .c-input__radio {
  margin-left: 20px;
}

.c-input__radio input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.c-input__radio input[type="radio"] + .c-label__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.c-input__radio input[type="radio"] + .c-label__radio:before {
  content: "";
  background: #f4f4f4;
  border-radius: 100%;
  border: 1px solid #b4b4b4;
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: -0.2em;
  margin-right: 1em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.c-input__radio input[type="radio"]:checked + .c-label__radio:before {
  background-color: #c81116;
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
  box-shadow: inset 0 0 0 4px #f4f4f4;
}

.c-input__radio input[type="radio"]:focus + .c-label__radio:before {
  outline: none;
  border-color: #c81116;
}

.c-input__radio input[type="radio"]:disabled + .rc-label__radio:before {
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
  box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}

.c-input__radio input[type="radio"] + .c-label__radio:empty:before {
  margin-right: 0;
}

.l-main__lp .p-message {
  margin-bottom: 100px;
}

.l-main__lp .p-message .p-message-box {
  width: 84%;
  margin: 0 auto;
}

.l-main__lp .p-message .br-sp {
  display: none;
}

.l-main__lp .p-message .br-pc {
  display: block;
}

.p-information {
  background: #defcf9;
  padding: 50px 0;
}

.p-information__inner {
  border-left: 2px solid #218de8;
  border-right: 2px solid #81d8fa;
  background: #fff;
  padding: 20px 20px;
  position: relative;
}

.p-information__inner::before, .p-information__inner::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#218de8), to(#81d8fa));
  background: linear-gradient(left, #218de8, #81d8fa);
  position: absolute;
  left: 0;
}

.p-information__inner::before {
  top: 0;
}

.p-information__inner::after {
  bottom: 0;
}

.p-information__head {
  font-size: 24px;
}

.p-information__body {
  margin-top: 10px;
}

.p-information__body p {
  text-align: center;
}

.p-information__body ul {
  margin-top: 15px;
  font-size: 16px;
  text-indent: -1em;
  padding-left: 1em;
}

/* ---------------------------------------------------------
 Utility
--------------------------------------------------------- */

@media only screen and (max-width: 1460px) {
  .l-main__lp .p-mv .text-center img {
    width: 80%;
  }
}

@media only screen and (max-width: 1400px) {
  .l-main__lp .p-mv__box-cap {
    width: 56%;
    margin-top: 0%;
    margin-right: 11%;
  }
  .l-main__lp .p-mv__tlt {
    margin-right: 8%;
  }
  .l-main__lp .p-mv__tlt img {
    width: 90%;
  }
}

@media only screen and (max-width: 1300px) {
  .l-main__lp .p-mv .c-container {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 1160px) and (min-width: 769px) {
  .l-main__lp .p-mv__btn {
    margin-top: -40px;
  }
  .l-main__lp .p-mv .c-container {
    width: 80%;
  }
  .l-main__lp .p-offline__tlt {
    margin-left: 0;
  }
  .l-main__lp .p-offline__tlt img {
    width: 90%;
  }
  .l-main__lp .p-offline__box {
    width: 80%;
  }
  .l-main__lp .p-offline__note {
    padding-left: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .l-main__lp .p-offline {
    background: none;
  }
  .l-main__lp .p-offline__tlt {
    margin-left: 0;
    text-align: center;
  }
  .l-main__lp .p-offline__tlt-right {
    margin-left: 0;
    text-align: center;
    font-size: 4.8vw;
  }
  .l-main__lp .p-offline__caption {
    padding: 0 6.66667vw;
    margin-left: 3vw;
  }
  .l-main__lp .p-offline__list {
    padding: 0 6.66667vw;
  }
  .l-main__lp .p-offline__box {
    width: 90%;
    margin-left: auto;
  }
  .l-main__lp .p-offline__content {
    display: block;
  }
  .l-main__lp .p-offline__left > * {
    -webkit-transform: skew(0);
            transform: skew(0);
  }
  .l-main__lp .p-offline__left {
    width: 100%;
    -webkit-transform: skew(0);
            transform: skew(0);
  }
  .l-main__lp .p-offline__right {
    background: #218de8;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 768px) {
  .l-main__lp .p-voice .p-voice-item__tlt {
    line-height: 1.2;
  }
  .l-main__lp .p-voice .p-voice-item__tlt span > span {
    font-size: 14px;
    letter-spacing: 0;
  }
  .p-information__body p {
    text-align: left;
  }
}

@media only screen and (device-width: 768px) {
  .l-main__lp .c-lp-btn--medium {
    margin-bottom: -30px;
  }
  .l-main__lp .p-mv__box {
    margin-bottom: 55px;
  }
  .l-main__lp .p-offline__tlt-right {
    font-size: 4.5vw;
  }
  .l-main__lp .p-offline__txt {
    width: 65%;
    text-align: center;
    margin-left: 9%;
    font-size: 20px;
  }
  .l-main__lp .p-offline__note {
    width: 500px;
    margin: 20px auto 0;
    padding: 0;
    text-align: center;
  }
  .l-main__lp .p-offline__left {
    padding: 30px 0;
  }
  .l-main__lp .p-offline__right {
    padding: 30px 0;
  }
  .l-main__lp .p-speaker .p-speaker-item {
    margin: 4vw auto 0;
  }
}

@media only screen and (max-width: 800px) {
  .l-main__lp .c-lp-btn,
  .l-main__lp .c-lp-btn--medium,
  .l-main__lp .c-lp-btn--large {
    width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
  .l-main__lp .p-mv__box-cap {
    margin-top: 8%;
    width: 60%;
    margin-left: auto;
  }
  .l-main__lp .p-mv__tlt img {
    width: 100%;
  }
  .l-main__lp .p-mv .c-container {
    padding: 0 15px;
  }
  .l-main__lp .p-offline__txt img {
    margin-left: -10px;
    margin-top: -10px;
  }
  .l-main__lp .p-speaker__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding-left: 6.66667vw;
    padding-right: 6.66667vw;
    padding-top: 0;
    margin-bottom: 0;
  }
  .l-main__lp .p-speaker__item:nth-child(2n) {
    margin-bottom: 0;
    padding-bottom: 13.33333vw;
    background: #defcf9;
    width: 100%;
    max-width: 100%;
  }
  .l-main__lp .p-speaker__item:nth-child(2n) .p-speaker-item {
    padding-left: 0;
  }
  .l-main__lp .p-speaker__item:nth-child(2n) .p-speaker-item__img {
    position: relative;
    right: 0;
  }
  .l-main__lp .p-speaker__item:nth-child(2n-1) {
    padding-top: 0;
    padding-bottom: 13.33333vw;
    background: none;
    width: 100%;
    max-width: 100%;
  }
  .l-main__lp .p-speaker__item:nth-child(2n-1) .p-speaker-item .p-speaker-item {
    width: 100%;
    padding: 0;
  }
  .l-main__lp .p-speaker__item:nth-child(5) .p-speaker-item__txt {
    font-size: 3.33333vw;
  }
  .l-main__lp .p-speaker .p-speaker-item {
    width: 100%;
    margin-top: 4vw;
    padding: 0;
  }
  .l-main__lp .p-speaker .p-speaker-item__img {
    position: relative;
    left: 0;
    text-align: center;
    top: 0;
  }
  .l-main__lp .p-speaker .p-speaker-item__cap {
    margin-top: 2vw;
    font-size: 3.73333vw;
    margin-bottom: 2vw;
  }
  .l-main__lp .p-speaker .p-speaker-item__tlt {
    font-size: 4vw;
  }
  .l-main__lp .p-speaker .p-speaker-item__tlt + p {
    font-size: 3.73333vw;
  }
  .l-main__lp .p-speaker .p-speaker-item__txt {
    font-size: 3.46667vw;
  }
  .l-main__lp .p-speaker .c-container {
    padding: 0 !important;
  }
  .l-main__lp .p-voice .p-voice-item__header {
    padding: 0 20px;
  }
  .l-main__lp .p-voice .p-voice-item__tlt img {
    margin-right: 8px;
  }
  .l-main__lp .p-access__info {
    display: block;
  }
  .l-main__lp .p-access .p-access-info {
    width: 100% !important;
  }
  .l-main__lp .p-access .p-access-info__tlt:before {
    width: 100%;
    height: 0.53333vw;
  }
}

@media only screen and (max-width: 750px) {
  .c-global-button {
    width: 90px;
    height: 90px;
    font-size: 12px;
    right: 5px;
    bottom: 17vw;
  }
  .l-main__lp .c-container {
    padding: 0 4vw;
  }
  .l-main__lp .u-sp-block {
    display: block;
  }
  .l-main__lp .u-pc-block {
    display: none;
  }
  .l-main__lp .c-lp-tlt,
  .l-main__lp .c-lp-tlt--white {
    max-width: 68%;
    margin-left: auto;
    margin-right: auto;
  }
  .l-main__lp .c-lp-tlt > span,
  .l-main__lp .c-lp-tlt--white > span {
    font-size: 3.73333vw;
    margin-top: 1.86667vw;
  }
  .l-main__lp .p-mv {
    padding-bottom: 11.6vw;
  }
  .l-main__lp .p-mv__btn {
    margin-top: 4.53333vw;
    display: block;
    width: 100%;
    border-radius: 0;
  }
  .l-main__lp .p-mv__btn .c-lp-btn--medium {
    height: 16vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 4.26667vw;
    width: 100%;
    border-radius: 0;
  }
  .l-main__lp .p-mv__box {
    display: block;
    margin-top: 0.8vw;
    font-size: 3.46667vw;
    padding: 0;
    margin-left: auto;
    width: 55%;
    border: none;
    background: none;
  }
  .l-main__lp .p-mv__box-cap:before {
    display: none;
  }
  .l-main__lp .p-mv__box-cap {
    margin-right: 2vw;
  }
  .l-main__lp .p-mv__tlt {
    padding-right: 4vw;
    width: 67%;
  }
  .l-main__lp .p-mv__content {
    bottom: 0;
    top: unset;
    -webkit-transform: none;
            transform: none;
  }
  .l-main__lp .p-mv .c-container {
    padding: 0;
  }
  .l-main__lp .p-offline__tlt {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .l-main__lp .p-offline__txt {
    margin-left: -6%;
  }
  .l-main__lp .p-offline__txt img {
    margin-left: -3%;
  }
  .l-main__lp .p-offline__caption {
    display: block;
    margin: 0;
  }
  .l-main__lp .p-offline__captionitem {
    width: 100%;
    margin-top: 4vw;
  }
  .l-main__lp .p-offline__captionitem ~ .l-main__lp .p-offline__captionitem {
    margin-top: 4vw;
  }
  .l-main__lp .p-offline__captionitem__body {
    text-align: center;
  }
  .l-main__lp .p-offline__item {
    padding-left: 5.6vw;
    font-size: 3.46667vw;
  }
  .l-main__lp .p-offline__list {
    margin-top: 4.66667vw;
  }
  .l-main__lp .p-offline__box {
    padding-left: 2em;
  }
  .l-main__lp .p-offline__note {
    font-size: 3.2vw;
    padding-left: 14.26667vw;
    padding: 3vw 6.66667vw 0;
  }
  .l-main__lp .p-offline__left {
    padding: 6.66667vw 0;
  }
  .l-main__lp .p-offline__right {
    padding-top: 5.6vw;
    padding-bottom: 6.66667vw;
  }
  .l-main__lp .p-speaker {
    background-size: 100% auto;
    padding-top: 14.66667vw;
  }
  .l-main__lp .p-speaker__list {
    margin-top: 8.8vw;
  }
  .l-main__lp .p-speaker .p-speaker-item__cap {
    margin-top: 3.06667vw;
    left: 4px;
    padding-bottom: 1.06667vw;
  }
  .l-main__lp .p-speaker .p-speaker-item__txt {
    line-height: 1.84615;
  }
  .l-main__lp .p-speaker .p-speaker-item .c-lp-btn,
  .l-main__lp .p-speaker .p-speaker-item .c-lp-btn--medium,
  .l-main__lp .p-speaker .p-speaker-item .c-lp-btn--large {
    line-height: 10.66667vw;
    font-size: 3.73333vw;
    margin-top: 5.6vw;
  }
  .l-main__lp .p-voice {
    padding-bottom: 26.4vw;
    padding-top: 14.66667vw;
  }
  .l-main__lp .p-voice__list {
    display: block;
    margin: 9.06667vw 0 0 0;
  }
  .l-main__lp .p-voice__item {
    width: 100%;
    padding: 0 2.66667vw;
  }
  .l-main__lp .p-voice .p-voice-item {
    margin-bottom: 8vw;
  }
  .l-main__lp .p-voice .p-voice-item__header {
    height: 12vw;
    background: #7ac1fd;
    padding: 0 6.4vw;
    position: relative;
  }
  .l-main__lp .p-voice .p-voice-item__header span {
    position: absolute;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    top: 0;
  }
  .l-main__lp .p-voice .p-voice-item__body {
    background: #defcf9;
    padding: 4.13333vw 6.66667vw 5.6vw;
    line-height: 1.57143;
  }
  .l-main__lp .p-voice .p-voice-item__body p {
    font-size: 3.73333vw;
  }
  .l-main__lp .p-voice .p-voice-item__tlt img {
    max-width: 9%;
  }
  .l-main__lp .p-access {
    padding-bottom: 12vw;
    padding-top: 14.66667vw;
  }
  .l-main__lp .p-access__map {
    margin-top: 8.8vw;
  }
  .l-main__lp .p-access__btn {
    display: block;
    margin-top: 5.33333vw;
  }
  .l-main__lp .p-access__btn a {
    padding: 0;
    text-align: center;
    line-height: 10.66667vw;
    font-size: 3.73333vw;
    margin-top: 5.6vw;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
  }
  .l-main__lp .p-access__info {
    margin-top: 9.33333vw;
    font-size: 3.73333vw;
    padding-left: 3.2vw;
    padding-right: 3.2vw;
    margin-top: _ge-vw(6.6);
  }
  .l-main__lp .p-access .p-access-info:first-child {
    padding-bottom: 6.66667vw;
  }
  .l-main__lp .p-access .p-access-info__tlt {
    margin-bottom: 2.66667vw;
    font-size: 3.73333vw;
    padding-bottom: 2vw;
  }
  .l-main__lp .p-access .p-access-info__txt p {
    line-height: 1.5;
    margin-bottom: 5.6vw;
  }
  .l-main__lp .p-qa {
    padding-bottom: 13.33333vw;
    padding-top: 14.66667vw;
  }
  .l-main__lp .p-qa__list {
    margin-top: 8.93333vw;
  }
  .l-main__lp .p-qa .p-qa-item {
    padding: 0 2.66667vw;
    margin-bottom: 8vw;
  }
  .l-main__lp .p-qa .p-qa-item__q {
    padding: 2.8vw 2.66667vw 2.53333vw 18.8vw;
    background: #218de8;
    position: relative;
    letter-spacing: 1.7px;
    font-size: 4vw;
  }
  .l-main__lp .p-qa .p-qa-item__q:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 20.5%;
    background: url(/salon_premium/2021spring/images/q@2x.png) top left no-repeat;
    background-size: 100%;
    height: 12vw;
    content: "";
  }
  .l-main__lp .p-qa .p-qa-item__a {
    font-size: 3.73333vw;
    line-height: 1.57143;
    padding: 4vw 5.73333vw 5.86667vw 14.8vw;
  }
  .l-main__lp .p-qa .p-qa-item__a:before {
    background: url(/salon_premium/2021spring/images/a@2x.png) no-repeat;
    background-size: 100%;
    top: 5.6vw;
    left: 5.33333vw;
    width: 4.93333vw;
    height: 5.33333vw;
  }
  .l-main__lp .p-qa .p-qa-item__list {
    font-size: 3.73333vw;
  }
  .l-main__lp .p-form {
    padding-bottom: 14.66667vw;
  }
  .l-main__lp .p-form__box {
    margin-top: 8.93333vw;
    font-size: 3.73333vw;
    line-height: 1.57143;
    margin-left: 2.66667vw;
    margin-right: 2.66667vw;
    padding: 5.33333vw 6.66667vw 5.73333vw;
  }
  .l-main__lp .p-form__box-footer {
    margin-left: 2.66667vw;
    margin-right: 2.66667vw;
    font-size: 3.73333vw;
    padding: 2.53333vw 8vw 2.53333vw 2.66667vw;
  }
  .l-main__lp .p-form__box-btn {
    margin-top: 5.73333vw;
    margin-left: 2.66667vw;
    margin-right: 2.66667vw;
  }
  .l-main__lp .p-form__box-btn .c-lp-btn--large {
    line-height: 13.33333vw;
    font-size: 3.73333vw;
    letter-spacing: 0.2em;
    width: 100%;
    padding-right: 6vw;
  }
  .l-main__lp .p-form__box-btn .c-lp-btn--large:before {
    width: 6.66667vw;
  }
  .l-main__lp .p-form__box-btn .c-lp-btn--large:after {
    width: 4.66667vw;
  }
  .l-main__lp .p-form__tlt {
    margin-top: 13.06667vw;
  }
  .l-main__lp .p-form__cap {
    font-size: 3.46667vw;
    margin-top: 3.73333vw;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input {
    padding: 0 6.66667vw;
    margin-top: 12vw;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item.mgb60 {
    margin-bottom: 4.93333vw;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item.mgb77 {
    margin-bottom: 9.33333vw;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item .text-center {
    text-align: left;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item .text-center .c-input__checkbox + label {
    display: block;
    padding-left: 10.66667vw;
    font-size: 3.46667vw;
    padding-right: 2.66667vw;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item .text-center .c-input__checkbox + label:before {
    left: 0;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item .text-center .c-input__checkbox + label:checked + label:after {
    top: 50%;
    left: 8px;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-item .text-center .u-break-line {
    display: block;
    padding-left: 14px;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-col2 {
    margin: 0 -2.66667vw;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .p-list-input-col2 .p-list-input-item {
    padding: 0 2.66667vw;
    margin-bottom: 6.66667vw;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .c-input__text {
    height: 12vw;
    border-radius: 1.33333vw;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .c-label__text {
    font-size: 3.73333vw;
    line-height: 1.42857;
  }
  .l-main__lp .p-form .p-lp-form .p-list-input .c-label__text.-select:before {
    top: 14vw;
    left: 3vw;
    display: none;
  }
  .l-main__lp .p-form .p-lp-form .p-item__checkbox {
    padding: 0;
  }
  .l-main__lp .p-form .p-lp-form .p-item__checkbox--disabled {
    padding: 4vw 4vw 4vw 18vw;
    font-size: 4vw;
    line-height: 1.6;
  }
  .l-main__lp .p-form .p-lp-form .p-item__checkbox .u-sp-block {
    display: block;
    font-size: 3.73333vw;
  }
  .l-main__lp .p-form .p-lp-form .c-input__checkbox:checked + label:after {
    left: 8.6vw;
  }
  .l-main__lp .p-form .p-lp-form .c-input__checkbox:checked + .checknote::after {
    left: 8.6px;
  }
  .l-main__lp .p-form .p-lp-form .c-input__checkbox + label {
    font-size: 4vw;
    line-height: 1.6;
    padding: 4vw 4vw 4vw 18vw;
  }
  .l-main__lp .p-form .p-lp-form .c-input__checkbox + label:before {
    left: 6.66667vw;
  }
  .l-main__lp .p-form .p-lp-form .c-input__text.-select {
    background-position: 4%;
    background-size: 5%;
    padding-left: 4rem;
    background: url(/salon_premium/2021spring/images/chevron-down-solid.svg) #fff no-repeat;
    background-size: 16px;
    background-position: center left 10px;
  }
  .l-main__lp .p-form .p-lp-form input,
  .l-main__lp .p-form .p-lp-form textarea,
  .l-main__lp .p-form .p-lp-form select {
    font-size: 13px;
  }
  .l-main__lp .p-form .p-form-list-check {
    margin-top: 3.46667vw;
  }
  .l-main__lp .p-form .p-form-block__button .c-lp-btn--large {
    line-height: 13.33333vw;
    width: 87%;
    margin-top: 5.33333vw;
    font-size: 4.26667vw;
  }
  .l-main__lp .p-form .p-list-personal {
    margin-top: 12vw;
    padding: 0 6.66667vw;
  }
  .l-main__lp .p-form .p-list-personal .c-label__data {
    line-height: 1.42857;
    height: auto;
    padding: 10px 0 20px;
    margin-bottom: 20px;
  }
  .l-main__lp .p-form .p-list-personal .c-label__text,
  .l-main__lp .p-form .p-list-personal .c-label__data {
    font-size: 3.73333vw;
  }
  .l-main__lp .p-form .c-container.u-sp-form {
    padding: 0 !important;
  }
  .c-input__radio {
    font-size: 3.73333vw;
    line-height: 1.42857;
  }
  .c-input__radio + .c-input__radio {
    margin-left: 3vw;
  }
  .p-information {
    padding: 6vw 0;
  }
  .p-information__head {
    font-size: 4.5vw;
    max-width: 100%;
  }
  .p-information__body p {
    font-size: 3.73333vw;
  }
  .p-information__body ul {
    font-size: 3.46667vw;
  }
}

@media only screen and (max-width: 425px) {
  .l-main__lp .p-mv__box-cap {
    margin-top: 3% !important;
  }
  .l-main__lp .p-mv__tlt {
    margin-right: 0%;
  }
  .l-main__lp .p-mv .text-center img {
    width: 100%;
  }
  .l-main__lp .p-offline__txt img {
    margin-top: -4px !important;
  }
  .l-main__lp .p-voice .p-voice-item__tlt {
    font-size: 4vw;
    display: block;
    margin-left: 0;
  }
  .l-main__lp .p-voice .p-voice-item__tlt span > span {
    display: contents;
  }
  .l-main__lp .p-message {
    margin-bottom: 14.66667vw;
    font-size: 3.73333vw;
  }
  .l-main__lp .p-message .p-message-box {
    width: 100%;
    padding: 0 2.66667vw;
  }
  .l-main__lp .p-message .br-sp {
    display: block;
  }
  .l-main__lp .p-message .br-pc {
    display: none;
  }
}

@media only screen and (device-width: 800px) {
  .l-main__lp .p-mv__tlt {
    width: 70%;
    margin-right: -3%;
    margin-bottom: 22%;
  }
}
