@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*
色に関して記述しているファイル
色に関して、ここで宣言をしたものを利用する様にする

例：
color: $color-font-white;
*/
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.yokihi {
  background-image: url("./../../../assets/imgs/logo-yokihi.png");
  background-size: contain;
  background-repeat: no-repeat;
}

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

@media screen and (max-width: 897px) {
  .flex-wrap {
    display: block;
  }
}

body {
  position: relative;
  color: #0B0630;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

.section {
  width: 100%;
  position: relative;
  margin: 40px auto 0;
}

.section > .container {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  margin-top: 0;
  margin-bottom: 40px;
  padding: 0 16px;
}

.section-title > .container > .page-ttl {
  font-size: 48px;
  font-weight: 100;
  line-height: 180%;
}

@media screen and (max-width: 897px) {
  .section-title > .container > .page-ttl {
    font-size: 24px;
    letter-spacing: -0.1em;
    margin-bottom: 16px;
  }
}

.section-faq > .container > .questions > .question,
.section-faq > .container > .questions > .answer {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 897px) {
  .section-faq > .container > .questions > .question,
  .section-faq > .container > .questions > .answer {
    position: relative;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.section-faq > .container > .questions > .question > .left,
.section-faq > .container > .questions > .answer > .left {
  position: relative;
  border-radius: 50%;
  width: 57px;
  height: 57px;
  margin-right: 22px;
}

@media screen and (max-width: 897px) {
  .section-faq > .container > .questions > .question > .left,
  .section-faq > .container > .questions > .answer > .left {
    position: absolute;
    top: 16px;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 33px;
    height: 33px;
  }
}

.section-faq > .container > .questions > .question > .left > .text,
.section-faq > .container > .questions > .answer > .left > .text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 32px;
  font-weight: 700;
}

@media screen and (max-width: 897px) {
  .section-faq > .container > .questions > .question > .left > .text,
  .section-faq > .container > .questions > .answer > .left > .text {
    font-size: 18px;
  }
}

.section-faq > .container > .questions > .question > .right,
.section-faq > .container > .questions > .answer > .right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
}

.section-faq > .container > .questions > .question > .right strong,
.section-faq > .container > .questions > .answer > .right strong {
  font-weight: normal;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #FCD4E5));
  background: -webkit-linear-gradient(transparent 0%, #FCD4E5 0%);
  background: linear-gradient(transparent 0%, #FCD4E5 0%);
}

@media screen and (max-width: 897px) {
  .section-faq > .container > .questions > .question > .right,
  .section-faq > .container > .questions > .answer > .right {
    padding-left: 40px;
  }
}

.section-faq > .container > .questions > .question {
  margin: 26px auto 29px;
}

.section-faq > .container > .questions > .question > .left {
  background-color: #FCD4E5;
}

.section-faq > .container > .questions > .question > .left > .text {
  -webkit-transform: translate(-50%, -50%) translateY(-4px);
  transform: translate(-50%, -50%) translateY(-4px);
}

.section-faq > .container > .questions > .question > .right {
  font-size: 20px;
}

.section-faq > .container > .questions > .answer {
  border-bottom: 1px solid #FBAACC;
  padding-bottom: 29px;
}

.section-faq > .container > .questions > .answer > .left {
  background-color: #FDFFFF;
  border: 1px solid #FBAACC;
}

.section-faq > .container > .questions > .answer > .left > .text {
  -webkit-transform: translate(-50%, -50%) translateY(-3px);
  transform: translate(-50%, -50%) translateY(-3px);
}

.section-faq > .container > .questions > .answer > .right p {
  font-size: 14px;
  font-weight: 300;
}

.section-faq > .container > .questions > .answer > .right p strong {
  font-weight: normal;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #FCD4E5));
  background: -webkit-linear-gradient(transparent 0%, #FCD4E5 0%);
  background: linear-gradient(transparent 0%, #FCD4E5 0%);
}

.section-faq > .container > .questions > .answer > .right a {
  text-decoration: underline;
  color: #DA2772;
}

.section-faq > .container > .questions > .answer > .right span {
  font-weight: 400;
}

.section-faq > .container > .btn {
  margin-top: 40px;
}

.section-faq > .container > .btn > .link {
  position: relative;
  background-color: #FF65A5;
  max-width: 700px;
  margin: auto;
  padding: 30px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  white-space: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 897px) {
  .section-faq > .container > .btn > .link {
    max-width: 480px;
    padding: 20px 26px;
  }
}

@media screen and (max-width: 640px) {
  .section-faq > .container > .btn > .link {
    max-width: 302px;
    margin: 0 auto;
  }
}

.section-faq > .container > .btn > .link > .txt {
  font-weight: 700;
  font-size: 32px;
  color: #FFFFFF;
  text-align: left;
}

@media screen and (max-width: 897px) {
  .section-faq > .container > .btn > .link > .txt {
    font-size: 20px;
  }
}

.section-faq > .container > .btn > .link > .txt > .small {
  font-size: 14px;
  display: block;
}

@media screen and (max-width: 897px) {
  .section-faq > .container > .btn > .link > .txt > .small {
    font-size: 11px;
  }
}

.section-faq > .container > .btn > .link > .icon {
  fill: none;
  stroke: #FFFFFF;
  width: 85px;
  height: 12px;
  margin-left: 24px;
}

.section-faq > .container > .btn > .link:before {
  content: '';
  position: absolute;
  top: -1px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-color: #FDFFFF;
  border: 2px solid #FBAACC;
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}

.section-faq > .container > .btn > .link:hover > .txt {
  color: #F277AB;
  z-index: 2;
}

.section-faq > .container > .btn > .link:hover > .icon {
  stroke: #FBAACC;
  z-index: 2;
}

.section-faq > .container > .btn > .link:hover:before {
  -webkit-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.section-faq > .container > .btn.back > .link {
  max-width: 240px;
  margin: auto;
  padding: 20px 25px;
}

.section-faq > .container > .btn.back > .link > .txt {
  font-size: 20px;
}

.section-banner {
  background-image: url("./../../../assets/imgs/lp/post1/bg_conversion.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  padding: 61px 16px 55px;
}

@media screen and (max-width: 640px) {
  .section-banner {
    background-image: url("./../../../assets/imgs/lp/post1/bg_conversion_sp.jpg");
    background-position: top right;
    margin-bottom: 40px;
    padding: 30px 36px;
  }
}

.section-banner > .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-banner > .container > .content {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .left {
    max-width: 400px;
    margin: auto;
  }
}

.section-banner > .container > .content > .left > .copy {
  display: block;
  width: 270px;
  height: 66px;
  color: #0B0630;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .left > .copy {
    margin-bottom: 16px;
  }
}

.section-banner > .container > .content > .left > .yokihi {
  width: 289px;
  height: 85px;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .left > .yokihi {
    width: 143px;
    height: 41px;
    margin-bottom: 16px;
  }
}

.section-banner > .container > .content > .btn {
  margin-left: auto;
}

.section-banner > .container > .content > .btn > .link {
  padding: 30px 71px;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .btn > .link {
    max-width: 400px;
    margin: auto;
  }
}

.section-banner > .container > .content > .btn > .link > .txt {
  font-size: 32px;
}

@media screen and (max-width: 897px) {
  .section-banner > .container > .content > .btn > .link > .txt {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .section-banner > .container > .content > .btn > .link {
    padding: 20px 24px;
  }
}
