@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
}

body img {
  max-height: none;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }
  html,
  body {
    margin: 0;
  }
  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
  .wow {
    visibility: visible !important;
  }
}

/* GENERAL
 * ----------------------------------------------- */
body {
  color: #333;
  font-family: "source-han-sans-simplified-c", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
body section {
  font-family: "source-han-sans-simplified-c", sans-serif;
}

/* FONT
 * ----------------------------------------------- */
.ft-min {
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;/*700*/
  font-feature-settings: "palt";
}

.ft-hansans {
  font-family: "source-han-sans-simplified-c", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.ft-futara {
  font-family: "futura-pt", sans-serif;
  font-weight: 400;/*700*/
  font-style: normal;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}


/* HELPERS
 * ----------------------------------------------- */
a {
  color: #333;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.mgT50 {
  margin-top: 50px;
}
.align-items-center {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.container {
  overflow: hidden;
}

.img {
  display: block;
  max-width: 100%;
}

body {
  position: static !important;
  top: auto !important;
}
.trans {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}
.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
}
.flex-md {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-md-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-md-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.align-items-center-md {
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.order1 {
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}
.order2 {
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

/* RESPONSIVE
 * ----------------------------------------------- */
.md {
    display: block !important;
}
.sm {
    display: none !important;
}
@media only screen and (max-width: 767px) {
  .md {
      display: none !important;
  }
  .sm {
      display: block !important;
  }
  body {
      font-size: 12px;
      line-height: 1.67;
  }
  .container {
      min-width: 320px;
  }
  .img {
      width: 100%;
  }
}

/* PAGES
 * ----------------------------------------------- */
/* SECTION KEYVISUAL
 * ----------------------------------------------- */
.section-keyvisual {
  position: relative;
  background: #f1f1f1;
}
.section-keyvisual .wrapper {
  width: 1400px;
  margin: 0 auto;
}
.section-keyvisual img {
  display: block;
  width: 100%;
}
.btn-main {
  position: absolute;
  bottom: -78px;
  left: 0;
  right: 0;
  z-index: 60;
}
.btn-cont {
  z-index: 60;
}
.btn-form.tryit {
  position: absolute;
  bottom: -90px;
  left: 0;
  right: 0;
  width: 60%;
}
.btn-form.tryit img {
  width: 100%;
}
.btn-form {
  position: relative;
  width: 720px;
  height: 159px;
  margin: 0 auto;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.btn-form.fixed {
  height: 125px;
}
.btn-form img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  display: block;
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}
.btn-form:hover img:nth-of-type(2) {
  opacity: 0;
}

@media only screen and (max-width: 767px) {
	.section-keyvisual .wrapper {
	  width: 100%;
	}
	.btn-main {
	  position: absolute;
	  bottom: -50px;
	}
	.btn-form {
	  width: 100%;
	  height: 120px;
	}
	.btn-form img {
	  position: absolute;
	  top: 55%;
	  width: 96%;
	}
	.btn-form.fixed {
	  height: 100px;
	}
	.btn-form.fixed img {
	  top: 50%;
	}
	.btn-form.tryit {
	  bottom: 25px;
	  width: 94%;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* SECTION ABOUT
 * ----------------------------------------------- */
.section-about {
  padding: 130px 0;
}
.section-about .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-about img {
  width: 100%;
}
.section-about .about-ttl {
  text-align: center;
}
.section-about h2 {
  display: inline-block;
  font-size: 60px;
  font-weight: bold;
  text-align: center;
  line-height: 1.1;
  border-bottom: 2px solid #fd5278;
  margin-bottom: 40px;
  padding: 1.3rem 0;
}
.section-about h3 {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 60px;
}
.section-about .aboutBox {
  margin-bottom: 70px;
}
.section-about .aboutBox .box1 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-about .aboutBox .box1 .pic1 {
  width: 48%;
}
.section-about .aboutBox .box1 .pic2 {
  width: 45%;
  margin-top: 100px;
}
.section-about .aboutBox .box1 .pic3 {
  width: 55%;
  margin-left: 60px;
}
.section-about .aboutBox picture img {
  width: 100%;
}
.section-about .aboutBox .box1 .txt {
  font-size: 42px;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.3;
  width: 34%;
  margin-top: 100px;
}
.section-about .about-aderans {
  background: #fff;
  padding: 25px;
  border: solid 18px;
  border-image: linear-gradient(to right, #d0b8d4, #fdc5dd, #fee4eb) 1;
}
.section-about p.tab{
  width: 260px;
  border-bottom: 30px solid #d0b8d4;
  border-right: 20px solid transparent;
}
.section-about .about-aderans .adeBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-about .about-aderans .adeBox ul {
  width: 50%;
}
.section-about .about-aderans .adeBox picture {
  width: 45%;
}
.section-about .about-aderans .adeBox .ttl {
  display: inline-block;
  font-size: 38px;
  font-weight: bold;
  border-bottom: solid 5px #fd7b95;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.section-about .about-aderans .adeBox .txt {
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
	.section-about {
	  padding: 80px 4% 120px;
	}
	.section-about .wrapper {
	  width: 100%;
	}
	.section-about h2 {
	  font-size: 39px;
	  padding: 20px 0;
	}
	.section-about h3 {
	  font-size: 18px;
	}
	.section-about .aboutBox {
	  margin-bottom: 140px;
	}
	.section-about .aboutBox .ttl {
	  font-size: 25px;
	  padding: 8px 0 10px 8px;
	  margin-bottom: 20px;
	}
	.section-about .aboutBox ul {
	  width: 100%;
	  margin-bottom: 30px;
	}
	.section-about .aboutBox picture {
	  width: 100%;
	}
	.section-about .aboutBox .box1 .pic1 {
	  width: 100%;
	}
	.section-about .aboutBox .box1 .pic2 {
	  width: 100%;
	  margin-top: 50px;
	}
	.section-about .aboutBox .box1 .pic3 {
	  width: 100%;
	  margin-left: 0;
	  margin-top: 50px;
	}
	.section-about .about-aderans {
	  padding: 30px;
	}
	.section-about .about-aderans .adeBox ul {
	  width: 100%;
	}
	.section-about .about-aderans .adeBox picture {
	  width: 100%;
	  margin-bottom: 15px;
	}
	.section-about .aboutBox .box1 .txt {
	  font-size: 50px;
	  text-align: center;
	  line-height: 1.2;
	  width: 100%;
	  margin-top: 50px;
	}

}

/* PAGES
 * ----------------------------------------------- */
/* SECTION RECOMMEND
 * ----------------------------------------------- */
.section-recommend {
  background: url("../../img/lp/wig/ladies/recommend-bg.jpg") no-repeat;
  padding: 80px 0 100px;
}
.section-recommend .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-recommend .recommend-ttl {
  text-align: center;
}
.section-recommend .recommend-ttl h2 {
  position: relative;
  display: inline-block;
  font-size: 54px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid #333;
  color: #333;
}
.section-recommend h2::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-45deg);
  height: 25px;
  width: 30px;
  border-right: 3px solid #333;
  background-color: #ebfaff;
}
.section-recommend h2::before {
  margin-right: 1rem;
}
.section-recommend h2::after {
  margin-left: 1rem;
}
.section-recommend .recoBox {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.section-recommend .recoBox ul {
  width: 32%;
}
.section-recommend .recoBox img {
  width: 100%;
}
.section-recommend .recoBox .txt {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  width: 90%;
  margin-left: 25px;
}

@media only screen and (max-width: 767px) {
	.section-recommend {
	  height: auto;
	  padding: 60px 4% 80px;
	}
	.section-recommend h2 {
	  font-size: 40px;
	}
	.section-recommend .wrapper {
	  width: 100%;
	}
	.section-recommend .recoBox ul {
	  width: 100%;
	  text-align: center;
	  margin-bottom: 40px;
	}
	.section-recommend .recoBox img {
	  width: 90%;
	}
	.section-recommend .recoBox .img::after {
	  top: 40px;
	  right: 0;
	  width: 96%;
	}
	.section-recommend .recoBox .txt {
	  font-size: 22px;
	  margin-left: 20px;
	}
	.section-recommend .recoBox .mgT50 {
	  margin-top: 0;
	}
	.section-recommend .recommend-ttl h2 {
	  font-size: 46px;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* POINT
 * ----------------------------------------------- */
.section-point {
  position: relative;
  text-align: center;
  padding-top: 36px;
  background-image: linear-gradient(180deg, rgba(242, 235, 253, 1), rgba(255, 255, 255, 1) 100%, rgba(246, 231, 248, 1) 30%, rgba(249, 236, 244, 1) 70%);
}
.section-point::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 41px solid #fff;
  border-bottom: 0;
}
.section-point::after {
  content: url("../../img/lp/common/problem_arrow.png");
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
}
.section-point .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-point h2 {
  position: relative;
  display: inline-block;
  background: #3f557a;
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.2;
  margin: 30px 35px;
  padding: 15px 40px 18px 40px;
}
.section-point h2::before,
.section-point h2::after {
 content: '';
 position: absolute;
 width: 0px;
 height: 0px;
 top: 0px;
 border: unset;
}
.section-point h2::after{
 border-top: 52px solid transparent;
 border-bottom: 52px solid transparent;
 border-left: 30px solid #3f557a;
 position: absolute;
 right: -30px;
 left:unset;
}
.section-point h2::before{
 border-top: 52px solid transparent;
 border-bottom: 52px solid transparent;
 border-right: 30px solid #3f557a;
 position: absolute;
 left: -30px;
 right:unset;
}
.section-point .box {
  position: relative;
}
.section-point .box img {
 margin-bottom: -7px;
}
.section-point .box ul {
  position: absolute;
  bottom: 21%;
  right: 12%;
  color: #333;
}
.section-point .box ul .txt1 {
  font-size: 36px;
  margin-bottom: 5px;
}
.section-point .box ul .txt1 span {
  font-size: 46px;
  background: linear-gradient(transparent 70%, #fef501 70%);
}
.section-point .box ul .txt2 {
  font-size: 30px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
	.section-point {
	  padding: 36px 0 80px;
	}
	.section-point .wrapper {
	  width: 100%;
	  padding: 0;
	}
	.section-point h2 {
	  font-size: 36px;
	  margin: 30px 0;
	  padding: 17px 20px 20px 20px;
	}
	.section-point h2::after{
	 border-top: 40px solid transparent;
	 border-bottom: 40px solid transparent;
	}
	.section-point h2::before{
	 border-top: 40px solid transparent;
	 border-bottom: 40px solid transparent;
	}
	.section-point img {
	  width: 100%;
	}
	.section-point .box ul {
	  bottom: 25%;
	  left: 31%;
	  text-align: left;
	  width: 100%;
	}
	.section-point .box ul .txt1 {
	  font-size: 20px;
	}
	.section-point .box ul .txt1 span {
	  font-size: 30px;
	}
	.section-point .box ul .txt2 {
	  font-size: 20px;
	  line-height: 1.6;
	  width: 60%;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* STYLES
 * ----------------------------------------------- */
.section-style {
  background: #fdf4e5;
  text-align: center;
  padding: 10px 0 100px;
}
.section-style .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-style h2 {
  font-size: 70px;
  line-height: 1.2;
  margin: 30px 0;
}
.section-style h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}
.section-style .styleBox {
  position: relative;
  background: url("../../img/lp/bg_style.jpg") no-repeat 0 220px;
  background-size: contain;
}
.section-style .styleBox ul {
  position: absolute;
  top: -30px;
  left: 16%;
  text-align: left;
  border-left: solid 3px #333;
  margin-top: 0;
  padding-left: 20px;
}
.section-style .styleBox .ttl {
  font-size: 36px;
  font-weight: bold;
  font-style: italic;
  color: #b80314;
}
.section-style .styleBox .ttl span {
  display: inline-block;
  font-size: 56px;
  margin-top: -30px;
  padding-left: 3px	;
}
.section-style .styleBox .txt {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}
.section-style .styleBox .txt::before {
  content: url(../img/ico_check_style.png);
  padding-right: 10px;
}
.section-style .styleBox picture {
  margin-top: 80px;
}

@media only screen and (max-width: 767px) {
	.section-style {
	  padding: 38px 0 90px;
	}
	.section-style .wrapper {
	  width: 100%;
	  padding: 0 4%;
	}
	.section-style h2 {
	  font-size: 60px;
	}
	.section-style .styleBox ul {
	  left: 8%;
	}
	.section-style .styleBox picture {
	  width: 100%;
	  padding-top: 0;
	  margin-top: 40px;
	}
	.section-style .styleBox picture img {
	  width: 100%;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* SERVICE
 * ----------------------------------------------- */
.section-service {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 100px 0 160px;
}
.section-service::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #eeeae2;
  clip-path: polygon(0 0.10%, 20% 0px, 85% 100%, 0px 100%);
  z-index: -1;
}
.section-service .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-service .serviceBox {
  width: 100%;
}
.section-service .serviceBox .main {
  width: 100%;
}
.section-service .serviceBox .main img {
  width: 100%;
}
.section-service .serviceBox .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 70px;
}
.section-service .serviceBox .box ul {
  width: 30%;
}
.section-service .serviceBox .box .img img {
  width: 100%;
}
.section-service .serviceBox .box .ttl {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 8px;
  height: 90px;
}
.section-service .serviceBox .box .img {
  margin-bottom: 20px;
}
.section-service .serviceBox .box .txt {
  font-size: 16px;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
	.section-service {
	  padding: 90px 0 120px;
	}
	.section-service .wrapper {
	  width: 100%;
	  padding: 0 4%;
	}
	.section-service .serviceBox .box {
	  margin-top: 60px;
	}
	.section-service .serviceBox .box ul {
	  width: 100%;
	  margin-bottom: 60px;
	}
	.section-service .serviceBox .box .ico {
	  margin-bottom: 5px;
	}
	.section-service .serviceBox .box .ttl {
	  font-size: 30px;
	  line-height: 1.3;
	  height: auto;
	  margin-bottom: 5px;
	  padding: 0 0 15px;
	}
	.section-service .serviceBox .box .img {
	  margin-bottom: 10px;
	}
	.section-service .serviceBox .box .txt {
	  font-size: 18px;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* FLOW
 * ----------------------------------------------- */
.section-flow {
  background: #f9f3ed;
  text-align: center;
  padding: 90px 0 60px;
}
.section-flow .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-flow h2 {
  position: relative;
  display: inline-block;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 1.6rem;
  border-bottom: 3px solid #000;
  margin-bottom: 80px;
}
.section-flow h2::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translateX(-50%) skew(-45deg);
  height: 25px;
  width: 30px;
  border-right: 3px solid #000;
  background-color: #f9f3ed;
}
.section-flow .flowBox {
  position: relative;
  margin-bottom: 100px;
}
.section-flow .flowBox .ico {
  position: absolute;
  top: -60px;
  left: 30px;
}
.section-flow .flowBox .box {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 12px;
  padding: 40px 50px;
  width: 100%;
}
.section-flow .flowBox .box.sec {
  padding: 0 50px 40px;
}
.section-flow .flowBox .box picture {
  background: #fff;
  border-radius: 12px;
  width: 40%;
}
.section-flow .flowBox .box picture img {
  width: 100%;
}
.section-flow .flowBox .box ul {
  text-align: left;
  padding-left: 50px;
  width: 55%;
}
.section-flow .flowBox .box .ttl {
  font-size: 20px;
  font-weight: bold;
}
.section-flow .flowBox .box .tel {
  font-size: 40px;
  letter-spacing: 0;
  color: #f25b84;
  margin: 5px 0 30px;
}
.section-flow .flowBox .box .tel::before {
  content: url("../../img/lp/common/ico_phone.png") ;
  padding-right: 10px;
}
.section-flow .flowBox .box .btnbox .btn {
  display: block;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
  color: #fff;
  background: #f25b84;
  border-radius: 80px;
  padding: 18px 18px 18px 25px;
  width: 300px;
  transition: 0.4s;
}
.section-flow .flowBox .box .btnbox .btn::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 20px;
  background-image: url("../../img/lp/common/ico_yoyaku_arrow.png") ;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-left: 20px;
  transition: 0.4s;
}
.section-flow .flowBox .box .btnbox .btn:hover {
  background: #333;
  transition: 0.4s;
}
.section-flow .flowBox .box .ttl2 {
  font-size: 26px;
  font-weight: bold;
  color: #9c744f;
  margin-bottom: 30px;
}
.section-flow .flowBox .box .subttl {
  font-size: 20px;
  font-weight: bold;
  color: #9c744f;
  margin-bottom: 20px;
}
.section-flow .flowBox .box .subttl::before {
  content: '▸';
  padding-right: 3px;
}
.section-flow .flowBox .box .txt {
  font-size: 17px;
  line-height: 1.8;
}

@media only screen and (max-width: 767px) {
	.section-flow {
	  padding: 70px 0 40px;
	}
	.section-flow .wrapper {
	  width: 100%;
	  padding: 0 4%;
	}
	.section-flow h2 {
	  font-size: 46px;
	}
	.section-flow h3 {
	  font-size: 26px;
	  margin: 20px 0 40px;
	  padding: 25px;
	}
	.section-flow .flowBox ul {
	  width: 45%;
	  margin-bottom: 30px;
	  padding-bottom: 25px;
	}
	.section-flow .flowBox .img {
	  width: 70%;
	  margin: 0 auto;
	  padding: 10px 0;
	}
	.section-flow .flowBox .img img {
	  width: 100%;
	  text-align: center;
	}
	.section-flow .flowBox .txt {
	  font-size: 16px;
	}
	.section-flow .flowBox ul:nth-child(2)::after {
	  content:'';
	  background: none;
	}
	.section-flow .flowBox .ttl {
	  font-size: 20px;
	  padding: 6px 0 0;
	}
	.section-flow .flowBox .box {
	  padding: 30px;
	}
	.section-flow .flowBox .box picture {
	  width: 100%;
	  margin-bottom: 10px;
	}
	.section-flow .flowBox .box ul {
	  padding-left: 0;
	  width: 100%;
	}
	.section-flow .flowBox .ico {
	  left: 15px;
	}
	.section-flow .flowBox .box .btnbox .btn {
	  width: 100%;
	}
	.section-flow .flowBox .box .tel {
	  font-size: 36px;
	  margin: 0 0 30px;
	}
	.section-flow .flowBox .box .subttl {
	  margin-bottom: 10px;
	}
	.section-flow .flowBox .box.sec {
	  padding: 0 30px 0;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* FAQ
 * ----------------------------------------------- */
.section-faq {
  text-align: center;
  padding: 80px 0;
}
.section-faq .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-faq h2 {
  font-size: 70px;
  font-weight: bold;
  margin-bottom: 60px;
}

/*アコーディオン全体*/
.section-faq .accordion-area {
  text-align: left;
  letter-spacing: 0.05em;
  list-style: none;
  width: 100%;
  max-width: 1080px;
  margin:0 auto;
}
.section-faq .accordion-area li {
  color: #000;
  margin: 10px 0;
}
.section-faq .title {
  position: relative;
  background: #fff;
  font-size: 26px;
  font-weight: bold;
  border-bottom: solid 1px #000;
  cursor: pointer;
  padding: 20px 0 20px 5px;
  transition: all .5s ease;
}
.section-faq .title span {
  color: #f25b84;
  font-size: 32px;
}
.section-faq .answer {
  color: #8b735c;
  font-size: 32px;
}
/*アイコンの＋と×*/
.section-faq .title::before,
.section-faq .title::after {
  position: absolute;
  content:'';
  width: 20px;
  height: 3px;
  background-color: #f25b84;
}
.section-faq .title::after{
  top:48%;
  right: 30px;
  transform: rotate(0deg);
}
.section-faq .title::before{
  color: #f25b84;
  top:48%;
  right: 30px;
  transform: rotate(90deg);
}
.section-faq .title.close::before{
  transform: rotate(45deg);
}
.section-faq .title.close::after{
  transform: rotate(-45deg);
}
.section-faq .box {
  display: none;
  margin-bottom: 20px;
  padding: 20px 0 20px 6px;
  font-size: 19px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
	.section-faq .wrapper {
	  width: 100%;
	  padding: 0 4%;
	}
	.section-faq h2 {
	  font-size: 60px;
	  margin-bottom: 40px;
	}
	.section-faq .title {
	  padding: 20px 60px 20px 10px;
	  line-height: 1.3;
	}
	.section-faq .box {
	  padding: 6% 5% 7% 4%;
	  line-height:1.5;
	}
	.section-faq .title::after{
	  right: 20px;
	}
	.section-faq .title::before{
	  right: 20px;
	}
}

/* PAGES
 * ----------------------------------------------- */
/* TRY-IT
 * ----------------------------------------------- */
.section-tryit {
  background: url("../../img/lp/wig/ladies/trial-bg.jpg") no-repeat;
  text-align: center;
  padding: 60px 0 180px;
}
.section-tryit .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-tryit h2 {
  color: #44372a;
  font-size: 58px;
  font-weight: bold;
  margin-bottom: 30px;
}
.section-tryit h2 span {
  color: #b80314;
  font-size: 80px;
  font-weight: normal;
  letter-spacing: -0.1em;
}
.section-tryit h3 {
  background: #dc1443;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.1em;
  height: 60px;
  letter-spacing: .5px;
  line-height: 60px;
  padding: 0 160px;
  position: relative;
  text-align: center;
}
.section-tryit h3::before, .section-tryit h3::after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.section-tryit h3::before {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 30px 0px 30px 15px;
  left: 0;
  top: 0;
}
.section-tryit h3::after {
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 30px 15px 30px 0px;
  right: 0;
  top: 0;
}
.section-tryit .tryitBox {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 0 15px #ead2d8;
}
.section-tryit .tryitBox .circle {
  position: absolute;
  top: 30%;
  right: -100px;
}
.section-tryit .tryitBox .cont {
  background: #fff;
  padding: 30px 30px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  border-radius: 15px;
}
.section-tryit .tryitBox .cont picture {
  width: 46%;
}
.section-tryit .tryitBox .cont picture img {
  width: 100%;
}
.section-tryit .tryitBox .cont ul {
  width: 50%;
  text-align: left;
}
.section-tryit .tryitBox .cont .txt {
  font-size: 24px;
  line-height: 1.6;
}
.section-tryit .tryitBox .cont .btn .btn-try {
  position: relative;
  display: inline-block;
  background: #b80314;
  color: #fff;
  border: solid 5px #000;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: 25px 30px;
  transition: 0.4s;
  width: 100%;
  border-radius: 12px;
}
.section-tryit .tryitBox .cont .btn .btn-try:hover {
  background: #000;
  color: #fcff00;
  transition: 0.4s;
}
.section-tryit .tryitBox .cont .btn .btn-try::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 25px;
  background: url("../../img/lp/common/ico_mail.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 8px;
}
.section-tryit .tryitBox .cont .btn .btn-try::after {
  content:'';
  display: inline-block;
  background: url("../../img/lp/common/ico_yoyaku_arrow.png") no-repeat;
  width: 10px;
  height: 16px;
  background-size: contain;
  vertical-align: middle;
  margin-left: 30px;
}

@media only screen and (max-width: 767px) {
	.section-tryit {
	  padding: 70px 0 90px;
	}
	.section-tryit .wrapper {
	  width: 100%;
	  padding: 0 4%;
	}
	.section-tryit h2 {
	  font-size: 36px;
	  line-height: 1.1;
	  width: 100%;
	  margin-bottom: 10px;
	  padding: 20px 0 25px;
	}
	.section-tryit h2 span {
	  font-size: 50px;
	}
	.section-tryit .tryitBox {
	  padding: 30px 20px 50px;
	}
	.section-tryit .tryitBox .cont {
	  padding: 50px 20px;
	}
	.section-tryit .tryitBox .cont picture {
	  width: 100%;
	  margin-bottom: 15px;
	}
	.section-tryit .tryitBox .cont ul {
	  width: 100%;
	}
	.section-tryit .tryitBox .circle {
	  right: 20px;
	  font-size: 32px;
	  line-height: 1.1;
	  width: 120px;
	  height: 120px;
	  padding-top: 24px;
	}
	.section-tryit .tryitBox .cont .txt {
	  font-size: 20px;
	  line-height: 1.6;
	  margin-bottom: 40px;
	}
	.section-tryit .tryitBox .cont .btn .btn-try {
	  font-size: 22px;
	  padding: 20px;
	}
	.section-tryit .tryitBox .cont .btn .btn-try::before {
	  content: '';
	  display: inline-block;
	  width: 26px;
	  height: 25px;
	  background: url("../../img/lp/common/ico_mail.png") no-repeat;
	  background-size: contain;
	  vertical-align: middle;
	  margin-right: 10px;
	}
	.section-tryit .tryitBox .cont .btn .btn-try::after {
	  content:'';
	  display: inline-block;
	  background: url("../../img/lp/common/ico_yoyaku_arrow.png") no-repeat;
	  width: 10px;
	  height: 16px;
	  background-size: contain;
	  vertical-align: middle;
	  margin-left: 30px;
	}
	.section-tryit h3 {
	  width: 90%;
	  padding: 0;
	}
	.section-tryit .tryitBox {
	  padding: 30px 10px 60px;
	}
	.section-tryit .tryitBox .circle {
	  display: none;
	}
	.section-tryit .tryitBox .cont {
	  padding: 30px 30px 40px;
	  width: 100%;
	}
}


/* PAGES
 * ----------------------------------------------- */
/* LOCATION
 * ----------------------------------------------- */
.section-location {
  text-align: center;
  padding: 80px 0 100px;
}
.section-location .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.section-location h2 {
  font-size: 70px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 60px;
}
.section-location .box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 30px;
}
.section-location .box .imgBox {
  width: 48%;
}
.section-location .box .imgBox img {
  width: 100%;
}
.section-location .box .txtBox {
  width: 48%;
  text-align: left;
  letter-spacing: 0.05em;
}
.section-location .box .txtBox .ttl {
  font-size: 30px;
  line-height: 1.1;
  font-weight: bold;
  border-bottom: solid 3px #000;
  padding-bottom: 15px;
}
.section-location .box .txtBox .add {
  position: relative;
  font-size: 20px;
  line-height: 1.4;
  margin: 30px 0 10px;
  padding-left: 30px;
}
.section-location .box .txtBox .add::before {
  content: url(../../img/lp/common/ico_add.png);
  position: absolute;
  top: 1px;
  left: 0;
}
.section-location .box .txtBox .tel {
  position: relative;
  font-size: 20px;
  line-height: 1.4;
  padding-left: 30px;
}
.section-location .box .txtBox .tel::before {
  content: url(../../img/lp/common/ico_tel.png);
  position: absolute;
  top: 3px;
  left: 3px;
}
.section-location .box .txtBox .open {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 35px;
}

@media screen and (max-width: 768px) {
	.section-location .wrapper {
	  width: 100%;
	  padding: 0 4%;
	}
	.section-location h2 {
	  font-size: 54px;
	  margin-bottom: 40px;
	}
	.section-location .box {
	  width: 100%;
	  margin-bottom: 10px;
	}
	.section-location .box .imgBox {
	  margin-bottom: 30px;
	  width: 100%;
	}
	.section-location .box .imgBox img {
	  width: 100%;
	}
	.section-location .box .txtBox {
	  width: 100%;
	}
	.section-location .box .txtBox .ttl {
	  font-size: 28px;
	}
}

/*
 * ----------------------------------------------- */
/* FOOTER
 * ----------------------------------------------- */
.footer-site {
  font-family: "source-han-sans-simplified-c", sans-serif;
  background: #333;
  color: #fff;
  padding: 80px 0;
  margin-top: 150px;
}
.footer-site .wrapper {
  width: 1080px;
  margin: 0 auto;
}
.footer-site .footer-logo img {
  width: 244px;
  margin-bottom: 50px;
}
.footer-site .footer-link {
  display: flex;
  font-size: 16px;
  text-align: left;
}
.footer-site .footer-nav a:link,
.footer-site .footer-nav a:hover,
.footer-site .footer-nav a:visited,
.footer-site .footer-nav a:active {
  color: #fff;
}
.footer-site .footer-nav .ico {
  position: relative;
  margin-right: 70px;
}
.footer-site .footer-nav .ico-img {
}
.footer-site .footer-nav .ico-img::after {
  content: url(../../img/lp/common/ico_link.png);
  padding-left: 7px;
}
.footer-site .footer-nav .ico-img2::after {
  content: url(../../img/lp/common/ico_link.png);
  padding-left: 7px;
}
.footer-site .copyright {
  font-size: 14px;
  text-align: right;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
	.footer-site {
	  padding: 80px 0 40px;
	}
	.footer-site .wrapper {
	  width: 100%;
	  padding: 0 4%;
	}
	.footer-site .footer-logo img {
	  margin-bottom: 40px;
	}
	.footer-site .footer-nav .ico {
	  margin-right: 0;
	  line-height: 2;
	  width: 100%;
	}
	.footer-site .footer-nav .ico-img {
	}
	.footer-site .footer-link {
	  flex-wrap: wrap;
	}
	.footer-site .copyright {
	  margin-top: 50px;
	}
}

/*
 * ----------------------------------------------- */
/* gototop
 * ----------------------------------------------- */
.gototop {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.8);
  width: 100%;
  z-index: 70;
}
.gototop img {
  width: 70%;
  z-index: 99;
  opacity: 1;
}

@media only screen and (max-width: 767px) {
	  .gototop {
	      right: 0;
	      width: 100%;
	      text-align: center;
	  }
	  .gototop img {
	      width: 94%;
	  }
}

/* reCAPTCHAを見えない位置に移動 */
.grecaptcha-badge {
  bottom: -100px !important;
}
