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

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

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

a:hover {
  color: #f376b7;
}

.btn {
  padding: 0.875em;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 1.25;
  border: none;
  border-radius: 1.5em;
  background: -webkit-gradient(linear, left top, right top, from(#f089e5), to(#f56285));
  background: linear-gradient(to right, #f089e5, #f56285);
  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: #f56285;
  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: #999;
}

.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;
  }
}

/*--------------------------------------------------
body.lp
--------------------------------------------------*/
.lp {
  /* .heroArea */
  /* .point */
  /* .step */
  /* .entry */
  /* .company */
  /* .footer */
}

.lp .heroArea {
  position: relative;
}

.lp .heroArea .heroArea_bg {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_bg {
    width: 100%;
    padding: 9% 0;
  }
}

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

.lp .heroArea .heroArea_bg .bg_img {
  width: 100%;
}

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

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_title {
    top: 8%;
  }
}

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

.lp .heroArea .heroArea_title .title_inner {
  margin-left: auto;
  margin-right: auto;
}

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

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_title .title_inner {
    width: calc(100% - 120px);
    max-width: 1140px;
  }
}

.lp .heroArea .heroArea_title .title_inner .title_img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_title .title_inner .title_img {
    max-width: 600px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_title .title_inner .title_img {
    max-width: 783px;
  }
}

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

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_lady {
    bottom: 6%;
  }
}

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

.lp .heroArea .heroArea_lady .lady_inner {
  width: calc(100% - 24px);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_lady .lady_inner {
    max-width: 1080px;
  }
}

.lp .heroArea .heroArea_lady .lady_inner .lady_img {
  width: 33.194%;
  position: absolute;
  right: 0;
  bottom: 0;
}

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

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_btnArea {
    bottom: 19%;
  }
}

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

.lp .heroArea .heroArea_btnArea .btnArea_inner {
  margin-left: auto;
  margin-right: auto;
}

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

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_btnArea .btnArea_inner {
    width: calc(100% - 120px);
    max-width: 1140px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .heroArea .heroArea_btnArea .btnArea_inner .btn {
    font-size: 1.4rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .heroArea .heroArea_btnArea .btnArea_inner .btn {
    padding-left: 2.3em;
    width: 420px;
  }
}

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

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

.lp .point .point_inner {
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  position: relative;
}

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

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

@media only screen and (max-width: 767px) {
  .lp .point .point_inner {
    margin-bottom: 48px;
    padding: 30px 24px;
  }
}

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

.lp .point .point_title {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .point .point_title {
    max-width: 315px;
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .point .point_title {
    max-width: 630px;
    margin-bottom: 90px;
  }
}

.lp .point .point_title .title_img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .lp .point .point_list > li {
    margin-top: 30px;
    padding: 3px 0 0 60px;
    background: top left /48px no-repeat;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .point .point_list > li {
    margin-top: 90px;
    padding: 12px 0 0 122px;
    background: top left /86px no-repeat;
  }
}

.lp .point .point_list > li:nth-of-type(1) {
  margin-top: 0;
  background-image: url("../images/agent_nail/point_list_num_1.png");
}

.lp .point .point_list > li:nth-of-type(2) {
  background-image: url("../images/agent_nail/point_list_num_2.png");
}

.lp .point .point_list > li:nth-of-type(3) {
  background-image: url("../images/agent_nail/point_list_num_3.png");
}

.lp .point .point_list > li .list_title {
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .lp .point .point_list > li .list_title {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .point .point_list > li .list_title {
    margin-bottom: 1.7rem;
    font-size: 2.4rem;
  }
}

.lp .point .point_list > li .list_title .strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, transparent), color-stop(20%, #c3e1fb), color-stop(85%, #c3e1fb), color-stop(85%, transparent));
  background: linear-gradient(transparent 20%, #c3e1fb 20%, #c3e1fb 85%, transparent 85%);
}

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

@media print, screen and (min-width: 768px) {
  .lp .point .point_list > li .list_txt {
    font-size: 1.4rem;
  }
}

.lp .point .point_staff {
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .lp .point .point_staff {
    width: 75.75px;
    bottom: -72px;
    left: -6px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}

@media print, screen and (min-width: 768px) and (max-width: 1099px) {
  .lp .point .point_staff {
    width: 102px;
    bottom: -30px;
    right: -24px;
  }
}

@media print, screen and (min-width: 1100px) {
  .lp .point .point_staff {
    width: 151.5px;
    bottom: -30px;
    right: -60px;
  }
}

.lp .point .point_btnArea {
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .lp .point .point_btnArea .btn {
    padding-left: 2.3em;
    width: 420px;
  }
}

.lp .step .step_inner {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.lp .step .step_title {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 767px) {
  .lp .step .step_title {
    max-width: 232.75px;
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .step .step_title {
    max-width: 465.5px;
    margin-bottom: 90px;
  }
}

.lp .step .step_title .title_img {
  width: 100%;
}

.lp .step .step_table {
  margin-left: auto;
  margin-right: auto;
  vertical-align: middle;
}

.lp .step .step_table > tbody > tr:first-child > td {
  padding-top: 0;
}

.lp .step .step_table > tbody > tr:first-child > td.table_num {
  background: url(../images/agent_nail/step_table_line.png) center bottom/3px 50% no-repeat;
}

.lp .step .step_table > tbody > tr:last-child > td.table_num {
  background: url(../images/agent_nail/step_table_line.png) center top/3px 50% no-repeat;
}

.lp .step .step_table td {
  font-weight: 100;
}

@media only screen and (max-width: 767px) {
  .lp .step .step_table td {
    padding-top: 24px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .step .step_table td {
    padding-top: 60px;
  }
}

.lp .step .step_table .table_title {
  text-align: right;
  line-height: 1.5;
  white-space: nowrap;
}

@media only screen and (max-width: 767px) {
  .lp .step .step_table .table_title {
    font-size: 1.6rem;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .step .step_table .table_title {
    font-size: 3rem;
  }
}

.lp .step .step_table .table_num {
  background: url(../images/agent_nail/step_table_line.png) center bottom/3px 100% no-repeat;
}

@media only screen and (max-width: 767px) {
  .lp .step .step_table .table_num {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .step .step_table .table_num {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .lp .step .step_table .table_num .num_img {
    width: 48px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .step .step_table .table_num .num_img {
    width: 86px;
  }
}

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

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

.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: 121.75px;
    margin-bottom: 30px;
  }
}

@media print, screen and (min-width: 768px) {
  .lp .entry .enrty_title {
    max-width: 243.5px;
    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: 100;
}

@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;
  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 #f376b7;
}

.lp .entry .entry_table textarea {
  width: 400px;
  max-width: 100%;
  margin-top: 12px;
  padding: 12px;
  font-size: inherit;
  line-height: 1.25;
  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 #f376b7;
}

.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: 100;
  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: #f376b7;
  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 .company .company_inner {
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}

@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 {
    margin-bottom: 48px;
    padding: 24px;
  }
}

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

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

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

@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;
  }
}

.lp .company .company_address {
  text-align: center;
}

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

@media print, screen and (min-width: 768px) {
  .lp .company .company_address {
    padding-top: 30px;
    border-top: 1px solid #000;
    font-size: 1.4rem;
  }
}

.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-agent_nail.css.map */