@charset "UTF-8";
/*--------------------------------------------------
common
--------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&display=swap");
html {
  font-size: 10px;
  line-height: 2;
}

body {
  color: #000;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  font-weight: 400;
  background-color: #fff;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

a {
  color: #000;
  border-bottom: 1px solid #000;
}

a:hover {
  color: #e1858a;
}

.btn {
  padding: 0.875em;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
  border: none;
  border-radius: 1.5em;
  background: #e1858a;
  display: inline-block;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .btn {
    font-size: 1.8rem;
  }
}

@media print, screen and (min-width: 768px) {
  .btn {
    font-size: 2.4rem;
  }
}

.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 1.5em;
  background: #f6c9cb;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  display: block;
  -webkit-transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn:hover {
  color: #fff;
}

.btn.hover {
  cursor: pointer;
}

.btn.hover::before {
  opacity: 1;
}

.btn .btn_txt {
  position: relative;
}

.btn.btn_downArrow {
  padding-right: 2.3em;
  position: relative;
}

.btn.btn_downArrow::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-0.45em) rotate(45deg);
          transform: translateY(-0.45em) rotate(45deg);
}

@media only screen and (max-width: 767px) {
  .btn.btn_downArrow::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}

@media print, screen and (min-width: 768px) {
  .btn.btn_downArrow::after {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
}

.btn.btn_submit {
  padding-right: 2.3em;
  position: relative;
}

.btn.btn_submit::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  display: block;
  position: absolute;
  top: 50%;
  right: 1.25em;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-0.375em) rotate(-45deg);
          transform: translateY(-0.375em) rotate(-45deg);
}

@media only screen and (max-width: 767px) {
  .btn.btn_submit::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}

@media print, screen and (min-width: 768px) {
  .btn.btn_submit::after {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
}

.btn.btn_back {
  padding-left: 2.3em;
  position: relative;
  background: #f3f3f3;
}

.btn.btn_back::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  display: block;
  position: absolute;
  top: 50%;
  left: 1.25em;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: translateY(-0.375em) rotate(135deg);
          transform: translateY(-0.375em) rotate(135deg);
}

@media only screen and (max-width: 767px) {
  .btn.btn_back::after {
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}

@media print, screen and (min-width: 768px) {
  .btn.btn_back::after {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
}

.fadein {
  opacity: 0;
}

.fadein.scrollin {
  opacity: 1;
}

/*--------------------------------------------------
body.lp
--------------------------------------------------*/
.lp {
  /* .heroArea */
  /* .problem */
  /* .intro */
  /* /.intro */
  /* .offer */
  /* /.offer */
  /* .salon */
  /* /.salon */
  /* .support */
  /* /.support */
  /* .company */
  /* /.company */
  /* .staffMessage */
  /* .entry */
  /* .footer */
}

.lp .heroArea .heroArea_border_top {
  margin-left: auto;
  margin-right: auto;
  height: 12px;
  background: #e1858a;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_border_top {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_border_top {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_border_top {
    margin-bottom: 36px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_border_top {
    margin-bottom: 90px;
  }
}

.lp .heroArea .heroArea_block {
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_block {
    background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(40%, #fff), color-stop(40%, #f1f1f1), to(#f1f1f1));
    background: linear-gradient(90deg, #fff 0%, #fff 40%, #f1f1f1 40%, #f1f1f1 100%);
  }
}

.lp .heroArea .heroArea_block .heroArea_mainImgArea {
  width: 60%;
  margin-left: 40%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_block .heroArea_mainImgArea .mainImg {
    width: 200%;
    margin-left: 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_block .heroArea_mainImgArea .mainImg {
    width: 100%;
    min-width: 800px;
    max-width: 1152px;
  }
}

.lp .heroArea .heroArea_block .heroArea_mainTxtArea {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}

.lp .heroArea .heroArea_block .heroArea_mainTxtArea .heroArea_mainTxtArea_inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_block .heroArea_mainTxtArea .heroArea_mainTxtArea_inner {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_block .heroArea_mainTxtArea .heroArea_mainTxtArea_inner {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_block .heroArea_mainTxtArea .heroArea_mainTxtArea_inner .titleImg {
    width: 60vw;
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_block .heroArea_mainTxtArea .heroArea_mainTxtArea_inner .titleImg {
    width: 29.795vw;
    min-width: 407px;
    max-width: 512px;
    margin-bottom: 112px;
  }
}

.lp .heroArea .heroArea_block .heroArea_mainTxtArea .heroArea_mainTxtArea_inner .heroArea_mainTxt {
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_block .heroArea_mainTxtArea .heroArea_mainTxtArea_inner .heroArea_mainTxt {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_block .heroArea_mainTxtArea .heroArea_mainTxtArea_inner .heroArea_mainTxt {
    font-size: 1.4rem;
  }
}

.lp .heroArea .heroArea_block .heroArea_copyImgArea {
  width: 100%;
  position: absolute;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_block .heroArea_copyImgArea {
    top: -10px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_block .heroArea_copyImgArea {
    top: -20px;
  }
}

.lp .heroArea .heroArea_block .heroArea_copyImgArea .heroArea_copyImgArea_inner {
  margin-left: auto;
  margin-right: auto;
  text-align: right;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_block .heroArea_copyImgArea .heroArea_copyImgArea_inner {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_block .heroArea_copyImgArea .heroArea_copyImgArea_inner {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_block .heroArea_copyImgArea .heroArea_copyImgArea_inner .copyImg {
    height: 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_block .heroArea_copyImgArea .heroArea_copyImgArea_inner .copyImg {
    height: 42px;
  }
}

.lp .heroArea .heroArea_border_bottom {
  width: calc(60% - 12px);
  height: 12px;
  margin-left: calc(40% + 12px);
  background: #f6c9cb;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_border_bottom {
    margin-bottom: 48px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_border_bottom {
    margin-bottom: 108px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .problem {
    margin-bottom: 48px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem {
    margin-bottom: 120px;
  }
}

.lp .problem .problem_icon {
  display: block;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_icon {
    width: 45px;
    margin: 0 auto -22.5px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_icon {
    width: 90px;
    margin: 0 auto -45px;
  }
}

.lp .problem .problem_bg {
  background: #f3f3f3;
}

.lp .problem .problem_inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner {
    padding: 46.5px 0 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner {
    padding: 81px 0 30px;
  }
}

.lp .problem .problem_inner .problem_title {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner .problem_title {
    margin-bottom: 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_title {
    margin-bottom: 36px;
  }
}

.lp .problem .problem_inner .problem_title .title_subTxt {
  text-align: center;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner .problem_title .title_subTxt {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_title .title_subTxt {
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
  }
}

.lp .problem .problem_inner .problem_title .title_mainTxt {
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.2em;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner .problem_title .title_mainTxt {
    font-size: 1.8rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_title .title_mainTxt {
    font-size: 2.4rem;
  }
}

.lp .problem .problem_inner .problem_title .title_mainTxt::before {
  content: "";
  width: 100%;
  height: 0.4em;
  background: #f6c9cb;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.lp .problem .problem_inner .problem_title .title_mainTxt span {
  position: relative;
}

.lp .problem .problem_inner .problem_voice {
  margin-left: auto;
  margin-right: auto;
  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: 767px) {
  .lp .problem .problem_inner .problem_voice {
    width: 300px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_voice {
    width: 600px;
  }
}

.lp .problem .problem_inner .problem_voice > li {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner .problem_voice > li {
    width: calc((100% - 24px) / 3);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_voice > li {
    width: 164px;
  }
}

.lp .problem .problem_inner .problem_voice > li::before {
  content: "";
  display: block;
  padding-top: 100%;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner .problem_voice > li:nth-child(1), .lp .problem .problem_inner .problem_voice > li:nth-child(3) {
    margin-top: 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_voice > li:nth-child(1), .lp .problem .problem_inner .problem_voice > li:nth-child(3) {
    margin-top: 48px;
  }
}

.lp .problem .problem_inner .problem_voice > li .balloon {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.lp .problem .problem_inner .problem_voice > li .txt {
  width: 100%;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner .problem_voice > li .txt {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_voice > li .txt {
    font-size: 2rem;
  }
}

.lp .problem .problem_inner .problem_client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lp .problem .problem_inner .problem_client .txt {
  line-height: 1.25;
  letter-spacing: 0.2em;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner .problem_client .txt {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_client .txt {
    font-size: 2.4rem;
  }
}

.lp .problem .problem_inner .problem_client .txt.left {
  text-align: right;
}

.lp .problem .problem_inner .problem_client .txt.right {
  text-align: left;
}

.lp .problem .problem_inner .problem_client .client_img {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

@media only screen and (max-width: 767px) {
  .lp .problem .problem_inner .problem_client .client_img {
    width: 48px;
    margin: 0 12px 0 0;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .problem .problem_inner .problem_client .client_img {
    width: 99px;
    margin: 0 24px 0 6px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .intro {
    margin-bottom: 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro {
    margin-bottom: 120px;
  }
}

.lp .intro .intro_inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

.lp .intro .intro_inner .intro_title {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_title {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 720px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_title .title_img {
    width: 80px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_title .title_img {
    width: 187px;
  }
}

.lp .intro .intro_inner .intro_title .title_txt {
  line-height: 1.75;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_title .title_txt {
    margin-left: 12px;
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_title .title_txt {
    margin-left: 36px;
    font-size: 2.4rem;
  }
}

.lp .intro .intro_inner .intro_title .title_txt .mainTxt {
  font-weight: 500;
}

.lp .intro .intro_inner .intro_title .title_txt .mainTxt strong {
  color: #fff;
  display: inline-block;
  position: relative;
}

.lp .intro .intro_inner .intro_title .title_txt .mainTxt strong::before {
  content: "";
  width: 100%;
  height: calc(100% - 0.4em);
  background: #e1858a;
  display: block;
  position: absolute;
  bottom: 0.2em;
  left: -0.05em;
  z-index: -1;
}

.lp .intro .intro_inner .intro_content {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content {
    max-width: 480px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content {
    max-width: 780px;
  }
}

.lp .intro .intro_inner .intro_content .content_imgArea {
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_imgArea {
    width: 42%;
    padding-top: 42%;
    overflow: hidden;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_imgArea {
    width: calc(100% - 392px + 12px);
  }
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_imgArea .content_img {
    width: 150%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_imgArea .content_img {
    width: 100%;
  }
}

.lp .intro .intro_inner .intro_content .content_list {
  background: #f6c9cb;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_list {
    width: calc(58% + 12px);
    margin: 36px 0 0 calc(42% - 12px);
    padding: 24px 0 24px 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_list {
    width: 392px;
    margin: 60px 0 0 calc(100% - 392px);
    padding: 60px 0 60px 30px;
  }
}

.lp .intro .intro_inner .intro_content .content_list > li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_list > li + li {
    margin-top: 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_list > li + li {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_icon {
    width: 36px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_icon {
    width: 72px;
  }
}

.lp .intro .intro_inner .intro_content .content_list > li .list_icon::before {
  content: "";
  -webkit-transform: rotate(-45deg) translate(40%, -40%);
          transform: rotate(-45deg) translate(40%, -40%);
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_icon::before {
    width: 19px;
    height: 12px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_icon::before {
    width: 38px;
    height: 24px;
    border-left: 6px solid #fff;
    border-bottom: 6px solid #fff;
  }
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_txtArea {
    width: calc(100% - 36px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_txtArea {
    width: calc(100% - 72px);
  }
}

.lp .intro .intro_inner .intro_content .content_list > li .list_txtArea .list_txt {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_txtArea .list_txt + .list_txt {
    margin-top: 4px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_txtArea .list_txt + .list_txt {
    margin-top: 8px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_txtArea .list_txt.main {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_txtArea .list_txt.main {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_txtArea .list_txt.sub {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .intro .intro_inner .intro_content .content_list > li .list_txtArea .list_txt.sub {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 767px) {
  .lp .offer {
    margin-bottom: 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer {
    margin-bottom: 120px;
  }
}

.lp .offer .offer_inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

.lp .offer .offer_inner .offer_title {
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_title {
    max-width: 480px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_title {
    max-width: 780px;
  }
}

.lp .offer .offer_inner .offer_title .title_client {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_title .title_client {
    width: 100%;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_title .title_client {
    width: 660px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_title .title_client .title_img {
    width: 42px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_title .title_client .title_img {
    width: 85px;
  }
}

.lp .offer .offer_inner .offer_title .title_client .title_txt {
  text-align: right;
  line-height: 1.75;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_title .title_client .title_txt {
    margin-right: 6px;
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_title .title_client .title_txt {
    margin-right: 18px;
    font-size: 2.4rem;
  }
}

.lp .offer .offer_inner .offer_title .title_staff {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_title .title_staff {
    width: 100%;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_title .title_staff {
    width: 720px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_title .title_staff .title_img {
    width: 70px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_title .title_staff .title_img {
    width: 140px;
  }
}

.lp .offer .offer_inner .offer_title .title_staff .title_txt {
  line-height: 1.75;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_title .title_staff .title_txt {
    margin-left: 12px;
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_title .title_staff .title_txt {
    margin-left: 36px;
    font-size: 2.4rem;
  }
}

.lp .offer .offer_inner .offer_title .title_staff .title_txt .mainTxt {
  font-weight: 500;
}

.lp .offer .offer_inner .offer_title .title_staff .title_txt .mainTxt strong {
  color: #fff;
  display: inline-block;
  position: relative;
}

.lp .offer .offer_inner .offer_title .title_staff .title_txt .mainTxt strong::before {
  content: "";
  width: 100%;
  height: calc(100% - 0.4em);
  background: #e1858a;
  display: block;
  position: absolute;
  bottom: 0.2em;
  left: -0.05em;
  z-index: -1;
}

.lp .offer .offer_inner .offer_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list {
    max-width: 480px;
    margin: 0 auto 72px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list {
    max-width: 780px;
    margin: 0 auto 90px;
  }
}

.lp .offer .offer_inner .offer_list > li {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list > li {
    margin-left: 12px;
    padding: 12px 0;
    border: 2px solid #e1858a;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list > li {
    margin-left: 30px;
    padding: 24px 0;
    border: 4px solid #e1858a;
  }
}

.lp .offer .offer_inner .offer_list > li:first-child {
  margin-left: 0;
}

.lp .offer .offer_inner .offer_list > li .list_name {
  margin-right: -0.2em;
  color: #e1858a;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list > li .list_name {
    margin-bottom: 6px;
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list > li .list_name {
    margin-bottom: 18px;
    font-size: 1.8rem;
  }
}

.lp .offer .offer_inner .offer_list > li .list_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list > li .list_point {
    height: 50px;
    margin-bottom: 3px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list > li .list_point {
    height: 84px;
    margin-bottom: 14px;
  }
}

.lp .offer .offer_inner .offer_list > li .list_point .list_point_txt {
  color: #e1858a;
  font-weight: 500;
}

.lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.oneLine {
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.oneLine {
    font-size: 3rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.oneLine {
    font-size: 6rem;
  }
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.oneLine > .num {
    font-size: 4.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.oneLine > .num {
    font-size: 8.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.oneLine > .small {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.oneLine > .small {
    font-size: 2.4rem;
  }
}

.lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.twoLines {
  line-height: 1.25;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.twoLines {
    font-size: 2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list > li .list_point .list_point_txt.twoLines {
    font-size: 3.2rem;
  }
}

.lp .offer .offer_inner .offer_list > li .list_txt {
  margin-right: -0.2em;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_list > li .list_txt {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_list > li .list_txt {
    font-size: 1.6rem;
  }
}

.lp .offer .offer_inner .offer_cta {
  background: #f6c9cb;
  position: relative;
  -webkit-box-shadow: 12px 12px 0 #f3f3f3;
          box-shadow: 12px 12px 0 #f3f3f3;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta {
    max-width: 480px;
    margin: 0 auto;
    padding: 48px 0 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta {
    max-width: 780px;
    margin: 0 auto;
    padding: 30px 0;
  }
}

.lp .offer .offer_inner .offer_cta .cta_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner {
  text-align: center;
  font-weight: 500;
  position: relative;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner {
    margin: 0 auto calc(24px - 0.5em);
    font-size: 2rem;
    line-height: 2.5rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner {
    margin: 0 auto calc(30px - 0.5em);
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
}

.lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner::before, .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner::after {
  content: "";
  width: 3px;
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner::before, .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner::after {
    height: calc(100% - 6px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner::before, .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner::after {
    height: calc(100% - 12px);
  }
}

.lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner::before {
  left: -12px;
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner::after {
  right: -12px;
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner strong {
  font-weight: inherit;
  display: inline-block;
  position: relative;
}

.lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner strong::before {
  content: "";
  width: calc(100% - 0.2em);
  background: #e1858a;
  display: block;
  position: absolute;
  left: -0.05em;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner strong::before {
    height: calc(100% - 1.2em);
    bottom: 0.1em;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner strong::before {
    height: calc(100% - 1.55em);
    bottom: 0.2em;
  }
}

.lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner strong span {
  position: relative;
}

.lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner strong em {
  letter-spacing: 0;
  margin-right: 0.1em;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner strong em {
    font-size: 2.8rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta .cta_title .cta_title_inner strong em {
    font-size: 4.2rem;
  }
}

.lp .offer .offer_inner .offer_cta .cta_txt {
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta .cta_txt {
    margin: 0 auto calc(24px - 0.25em);
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta .cta_txt {
    margin: 0 auto calc(30px - 0.25em);
    font-size: 1.6rem;
  }
}

.lp .offer .offer_inner .offer_cta .cta_btnArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta .cta_btnArea {
    margin: 0 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta .cta_btnArea {
    margin: 0 30px;
  }
}

.lp .offer .offer_inner .offer_cta .cta_btnArea .btn {
  width: 100%;
  max-width: 532px;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta .cta_btnArea .btn {
    border: 2px solid #fff;
    border-radius: calc(1.5em + 2px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta .cta_btnArea .btn {
    padding-right: 0.875em;
    border: 4px solid #fff;
    border-radius: calc(1.5em + 4px);
  }
}

.lp .offer .offer_inner .offer_cta .cta_icon {
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .lp .offer .offer_inner .offer_cta .cta_icon {
    width: 72px;
    top: -36px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .offer .offer_inner .offer_cta .cta_icon {
    width: 131px;
    top: -30px;
    left: 30px;
  }
}

.lp .salon {
  background: #f3f3f3;
}

.lp .salon .salon_inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner {
    width: calc(100% - 24px);
    padding: 36px 0;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .salon .salon_inner {
    width: calc(100% - 60px);
    padding: 42px 0;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .salon .salon_inner {
    width: 960px;
    padding: 60px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_title {
    margin-bottom: 24px;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .salon .salon_inner .salon_title {
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .salon .salon_inner .salon_title {
    width: 280px;
    margin-top: 18px;
  }
}

.lp .salon .salon_inner .salon_title .title_subTxt {
  margin: -0.5em 0 0;
  letter-spacing: 0.2em;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_title .title_subTxt {
    font-size: 1.2rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .salon .salon_inner .salon_title .title_subTxt {
    font-size: 1.4rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .salon .salon_inner .salon_title .title_subTxt {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .salon .salon_inner .salon_title .title_subTxt .hidden_sp {
    display: none;
  }
}

.lp .salon .salon_inner .salon_title .title_mainTxt {
  margin: 0 0 -0.3em;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_title .title_mainTxt {
    font-size: 1.6rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .salon .salon_inner .salon_title .title_mainTxt {
    font-size: 2.4rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .salon .salon_inner .salon_title .title_mainTxt {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_point {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .salon .salon_inner .salon_point {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .salon .salon_inner .salon_point {
    width: 650px;
    margin-left: 30px;
  }
}

.lp .salon .salon_inner .salon_point > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_point > li {
    margin-bottom: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .salon .salon_inner .salon_point > li {
    margin-bottom: 30px;
  }
}

.lp .salon .salon_inner .salon_point > li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_point > li .point_icon {
    width: 45px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .salon .salon_inner .salon_point > li .point_icon {
    width: 90px;
  }
}

.lp .salon .salon_inner .salon_point > li .point_txt {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_point > li .point_txt {
    width: calc(100% - 57px);
    margin-left: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .salon .salon_inner .salon_point > li .point_txt {
    width: calc(100% - 120px);
    margin-left: 30px;
  }
}

.lp .salon .salon_inner .salon_point > li .point_txt .txt_subTxt {
  letter-spacing: 0.2em;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_point > li .point_txt .txt_subTxt {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .salon .salon_inner .salon_point > li .point_txt .txt_subTxt {
    font-size: 1.8rem;
  }
}

.lp .salon .salon_inner .salon_point > li .point_txt .txt_mainTxt {
  letter-spacing: 0.2em;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .lp .salon .salon_inner .salon_point > li .point_txt .txt_mainTxt {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .salon .salon_inner .salon_point > li .point_txt .txt_mainTxt {
    font-size: 2.4rem;
  }
}

.lp .support {
  background: #fff;
}

.lp .support .support_inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner {
    width: calc(100% - 24px);
    padding: 36px 0;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .support .support_inner {
    width: calc(100% - 60px);
    padding: 42px 0;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .support .support_inner {
    width: 960px;
    padding: 60px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_title {
    margin-bottom: 24px;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .support .support_inner .support_title {
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .support .support_inner .support_title {
    width: 280px;
    margin-top: 18px;
  }
}

.lp .support .support_inner .support_title .title_subTxt {
  margin: -0.5em 0 0;
  letter-spacing: 0.2em;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_title .title_subTxt {
    font-size: 1.2rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .support .support_inner .support_title .title_subTxt {
    font-size: 1.4rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .support .support_inner .support_title .title_subTxt {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .support .support_inner .support_title .title_subTxt .hidden_sp {
    display: none;
  }
}

.lp .support .support_inner .support_title .title_mainTxt {
  margin: 0 0 -0.3em;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_title .title_mainTxt {
    font-size: 1.6rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .support .support_inner .support_title .title_mainTxt {
    font-size: 2.4rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .support .support_inner .support_title .title_mainTxt {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_point {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1020px) {
  .lp .support .support_inner .support_point {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}

@media print, screen and (min-width: 1021px) {
  .lp .support .support_inner .support_point {
    width: 650px;
    margin-left: 30px;
  }
}

.lp .support .support_inner .support_point > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_point > li {
    margin-bottom: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .support .support_inner .support_point > li {
    margin-bottom: 30px;
  }
}

.lp .support .support_inner .support_point > li:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_point > li .point_icon {
    width: 45px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .support .support_inner .support_point > li .point_icon {
    width: 90px;
  }
}

.lp .support .support_inner .support_point > li .point_txt {
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_point > li .point_txt {
    width: calc(100% - 57px);
    margin-left: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .support .support_inner .support_point > li .point_txt {
    width: calc(100% - 120px);
    margin-left: 30px;
  }
}

.lp .support .support_inner .support_point > li .point_txt .txt_subTxt {
  letter-spacing: 0.2em;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_point > li .point_txt .txt_subTxt {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .support .support_inner .support_point > li .point_txt .txt_subTxt {
    font-size: 1.8rem;
  }
}

.lp .support .support_inner .support_point > li .point_txt .txt_mainTxt {
  letter-spacing: 0.2em;
  line-height: 2;
}

@media only screen and (max-width: 767px) {
  .lp .support .support_inner .support_point > li .point_txt .txt_mainTxt {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .support .support_inner .support_point > li .point_txt .txt_mainTxt {
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .lp .company {
    margin-bottom: 48px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .company {
    margin-bottom: 150px;
  }
}

.lp .company .company_inner {
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #000;
}

@media only screen and (max-width: 767px) {
  .lp .company .company_inner {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .company .company_inner {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .company .company_inner {
    padding: 12px;
    max-width: 480px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .company .company_inner {
    padding: 30px 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .company .company_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (max-width: 767px) {
  .lp .company .company_txt .name {
    margin-bottom: 12px;
    font-size: 1.4rem;
    text-align: center;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .company .company_txt .name {
    margin-right: 60px;
    font-size: 1.8rem;
    line-height: 1.5;
    white-space: nowrap;
  }
}

@media only screen and (max-width: 767px) {
  .lp .company .company_txt .txt {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .company .company_txt .txt {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 767px) {
  .lp .staffMessage {
    margin-bottom: 48px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .staffMessage {
    margin-bottom: 150px;
  }
}

.lp .staffMessage .staffMessage_inner {
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 767px) {
  .lp .staffMessage .staffMessage_inner {
    width: calc(100% - 24px);
    max-width: 480px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .staffMessage .staffMessage_inner {
    width: calc(100% - 60px);
    max-width: 780px;
  }
}

.lp .staffMessage .staffMessage_inner .staffMessage_img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@media only screen and (max-width: 767px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_img {
    width: 60px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_img {
    width: 129px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_txt {
    width: calc(100% - 72px);
    margin-left: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_txt {
    width: calc(100% - 189px);
    margin-left: 60px;
  }
}

.lp .staffMessage .staffMessage_inner .staffMessage_txt .title {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.2em;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_txt .title {
    margin-bottom: 12px;
    padding-bottom: 18px;
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_txt .title {
    margin-bottom: 24px;
    padding-bottom: 30px;
    font-size: 2.4rem;
  }
}

.lp .staffMessage .staffMessage_inner .staffMessage_txt .title::after {
  content: "";
  width: 72px;
  background: #e1858a;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}

@media only screen and (max-width: 767px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_txt .title::after {
    height: 2px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_txt .title::after {
    height: 4px;
  }
}

.lp .staffMessage .staffMessage_inner .staffMessage_txt .txt {
  line-height: 2;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 767px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_txt .txt {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .staffMessage .staffMessage_inner .staffMessage_txt .txt {
    font-size: 1.6rem;
  }
}

.lp .staffMessage .staffMessage_inner .staffMessage_txt .txt strong {
  font-weight: 500;
}

.lp .entry .entry_inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_inner {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_inner {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_inner {
    margin-bottom: 90px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_inner {
    margin-bottom: 150px;
  }
}

.lp .entry .enrty_title {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .entry .enrty_title {
    max-width: 192px;
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .enrty_title {
    max-width: 370px;
    margin-bottom: 90px;
  }
}

.lp .entry .enrty_title .title_img {
  width: 100%;
}

.lp .entry .mw_wp_form_input {
  width: 100%;
}

.lp .entry .entry_table {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_table {
    width: 100%;
    margin-bottom: 48px;
    display: block;
  }
  .lp .entry .entry_table > tbody, .lp .entry .entry_table > tbody > tr,
  .lp .entry .entry_table > tbody > tr > th,
  .lp .entry .entry_table > tbody > tr > td {
    width: 100%;
    display: block;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_table {
    margin-bottom: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_table > tbody > tr:first-child > th {
    padding-top: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_table > tbody > tr:first-child > th {
    padding-top: 16px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_table > tbody > tr:first-child > td {
    padding-top: 0px;
  }
}

.lp .entry .entry_table > tbody > tr > th,
.lp .entry .entry_table > tbody > tr > td {
  font-weight: 400;
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_table > tbody > tr > th,
  .lp .entry .entry_table > tbody > tr > td {
    vertical-align: top;
  }
}

.lp .entry .entry_table > tbody > tr > th {
  line-height: 1;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_table > tbody > tr > th {
    font-size: 1.4rem;
    padding-top: 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_table > tbody > tr > th {
    font-size: 1.6rem;
    padding: 46px 60px 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_table > tbody > tr > td {
    font-size: 1.4rem;
    padding-top: 0;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_table > tbody > tr > td {
    font-size: 1.6rem;
    padding-top: 30px;
  }
}

.lp .entry .entry_table input[type="text"],
.lp .entry .entry_table input[type="email"] {
  width: 400px;
  max-width: 100%;
  padding: 12px 0;
  font-size: inherit;
  line-height: 1;
  letter-spacing: 0.1em;
  border: none;
  border-bottom: 1px solid #999;
  background: transparent;
}

.lp .entry .entry_table input[type="text"]::-webkit-input-placeholder,
.lp .entry .entry_table input[type="email"]::-webkit-input-placeholder {
  color: #999;
  letter-spacing: 0.1em;
}

.lp .entry .entry_table input[type="text"]:-ms-input-placeholder,
.lp .entry .entry_table input[type="email"]:-ms-input-placeholder {
  color: #999;
  letter-spacing: 0.1em;
}

.lp .entry .entry_table input[type="text"]::-ms-input-placeholder,
.lp .entry .entry_table input[type="email"]::-ms-input-placeholder {
  color: #999;
  letter-spacing: 0.1em;
}

.lp .entry .entry_table input[type="text"]::placeholder,
.lp .entry .entry_table input[type="email"]::placeholder {
  color: #999;
  letter-spacing: 0.1em;
}

.lp .entry .entry_table input[type="text"]:focus,
.lp .entry .entry_table input[type="email"]:focus {
  outline: none;
  border-bottom: 1px solid #e1858a;
}

.lp .entry .entry_table textarea {
  width: 400px;
  max-width: 100%;
  margin-top: 12px;
  padding: 12px;
  font-size: inherit;
  line-height: 1.25;
  letter-spacing: 0.1em;
  border: none;
  border: 1px solid #999;
  background: transparent;
}

.lp .entry .entry_table textarea::-webkit-input-placeholder {
  color: #999;
  letter-spacing: 0.1em;
}

.lp .entry .entry_table textarea:-ms-input-placeholder {
  color: #999;
  letter-spacing: 0.1em;
}

.lp .entry .entry_table textarea::-ms-input-placeholder {
  color: #999;
  letter-spacing: 0.1em;
}

.lp .entry .entry_table textarea::placeholder {
  color: #999;
  letter-spacing: 0.1em;
}

.lp .entry .entry_table textarea:focus {
  outline: none;
  background: #fff;
  border: 1px solid #e1858a;
}

.lp .entry .entry_table .mwform-radio-field.horizontal-item {
  line-height: 1;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_table .mwform-radio-field.horizontal-item {
    margin: 1em 1em 0 0;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_table .mwform-radio-field.horizontal-item {
    margin: 0.5em 30px 0 0;
  }
}

.lp .entry .entry_table .mwform-radio-field.horizontal-item label {
  cursor: pointer;
}

.lp .entry .entry_table .mwform-radio-field.horizontal-item label input[type="radio"] {
  display: none;
}

.lp .entry .entry_table .mwform-radio-field.horizontal-item label .mwform-radio-field-text {
  height: 2em;
  color: #000;
  font-family: "Noto Sans JP", "メイリオ", sans-serif;
  font-weight: 400;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.lp .entry .entry_table .mwform-radio-field.horizontal-item label .mwform-radio-field-text::before {
  content: "";
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
  border: 1px solid #999;
  border-radius: 1em;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.lp .entry .entry_table .mwform-radio-field.horizontal-item label input[type="radio"]:checked + .mwform-radio-field-text::after {
  content: "";
  width: 1em;
  height: 1em;
  background: #e1858a;
  border-radius: 0.5em;
  display: block;
  position: absolute;
  left: 0.5em;
  top: 0.5em;
}

.lp .entry .entry_btnArea {
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_btnArea {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_btnArea .btn {
    width: 300px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_btnArea .btn {
    width: 420px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .entry .entry_btnArea .btn + .btn {
    margin-top: 1em;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .entry_btnArea .btn + .btn {
    margin-left: 30px;
  }
}

.lp .entry .entry_btnArea .btn.btn_submit {
  padding-left: 2.3em;
}

.lp .entry .entry_btnArea .btn.btn_back {
  padding-right: 2.3em;
}

.lp .footer .footer_inner {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .footer .footer_inner {
    width: calc(100% - 24px);
  }
}

@media print, screen and (min-width: 768px) {
  .lp .footer .footer_inner {
    width: calc(100% - 60px);
    max-width: 960px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .footer .footer_inner {
    padding-bottom: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .footer .footer_inner {
    padding-bottom: 30px;
  }
}

.lp .footer .privacy {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lp .footer .privacy {
    margin-bottom: 24px;
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .footer .privacy {
    margin-bottom: 42px;
    font-size: 1.4rem;
  }
}

.lp .footer .privacy a {
  color: #000;
  border: none;
}

.lp .footer .privacy a:hover {
  color: #000;
}

.lp .footer .copyright {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lp .footer .copyright {
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .footer .copyright {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------
body.lp.confirm
--------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .lp.confirm .mainSection {
    padding-top: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.confirm .mainSection {
    padding-top: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .lp.confirm .entry .enrty_title {
    margin-bottom: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.confirm .entry .enrty_title {
    margin-bottom: 30px;
  }
}

.lp.confirm .entry .confirm_txt {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lp.confirm .entry .confirm_txt {
    margin-bottom: 24px;
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.confirm .entry .confirm_txt {
    margin-bottom: 60px;
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.confirm .entry .entry_table > tbody > tr:first-child > th {
    padding-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .lp.confirm .entry .entry_table > tbody > tr > th {
    padding-top: 12px;
    text-align: center;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.confirm .entry .entry_table > tbody > tr > th {
    padding-top: 30px;
    line-height: 2;
  }
}

@media only screen and (max-width: 767px) {
  .lp.confirm .entry .entry_table > tbody > tr > td {
    padding-top: 6px;
    text-align: center;
    line-height: 1.25;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.confirm .entry .entry_btnArea .btn + .btn {
    margin-left: 0;
    margin-right: 30px;
  }
  .lp.confirm .entry .entry_btnArea .btn.btn_submit {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .lp.confirm .entry .entry_btnArea .btn.btn_back {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

/*--------------------------------------------------
body.lp.finish
--------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .lp.finish .mainSection {
    padding-top: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.finish .mainSection {
    padding-top: 90px;
  }
}

.lp.finish .entry .finish_title {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lp.finish .entry .finish_title {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.finish .entry .finish_title {
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
}

.lp.finish .entry .finish_txt {
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .lp.finish .entry .finish_txt {
    margin-bottom: 24px;
    font-size: 1.2rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp.finish .entry .finish_txt {
    margin-bottom: 60px;
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=page-new_open.css.map */