@charset "UTF-8";

/* Scss Document */

/* A Modern CSS Reset */

*, *::before, *::after {

  box-sizing: border-box; }



body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role="list"], ol[role="list"] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

img {
  width: 100%;
  height: auto;
  backface-visibility: hidden;
}

ul, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  outline: none;
  text-decoration: none;
}


@media screen and (min-width: 768px) {
  .u_break_sp {
    display: none;
  }
}
/*--------------------------

メディアクエリ設定

---------------------------*/

/*マップ型変数で定義*/

/*@mixinでメディアクエリを呼び出す。変数mq、初期値sm*/

/*	@include mq(sm){

	}

	@include mq(pc){

	}*/

/*--------------------------------------------------

全体設定

---------------------------------------------------*/

body {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #333333;
  overflow-x: hidden;
}

.l_container {
  width: 92%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.m_section_head {
  text-align: center;
}
/*--------------------------------------------------

ヘッダー

---------------------------------------------------*/
.l_header {
  height: 48px;
  padding: 0 12px;
  position: absolute;
  background: transparent;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .l_header {
    padding: 0 20px;
    height: 90px;
  }
}

.l_header_inner {
  height: 100%;
}

.l_header_logo {
  display: block;
  width: 80px;
  height: 100%;
  line-height: 48;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .l_header_logo {
    width: 185px;
  }
}
/*--------------------------------------------------

キービジュアル

---------------------------------------------------*/
.top_kv {
  
}

.top_kv_inner {
  position: relative;
}

.top_kv_hero {

}

.top_kv_hero > img {

}

.top_kv_cta {
  position: absolute;
  left: 50%;
  width: 75vw;
  transform: translateX(-50%);
  bottom: 5px;
  display: none;
}

@media screen and (min-width: 768px) {
  .top_kv_cta {
    width: 40vw;
    bottom: 50px;
    display: block;
  }
}

.top_kv_cta-body {

}

.top_kv_cta-link {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .top_kv_cta-link {
    transition: transform 0.3s ease;
  }
  .top_kv_cta-link:hover {
    transform: translateY(10px);
  }
}

.top_kv_cta-link > img {

}

/*--------------------------------------------------

帯ラベル

---------------------------------------------------*/
@media screen and (min-width: 768px) {
  .top_label {
    margin-top: -12px;
    position: relative;
    z-index: 1;
  }
}

/*--------------------------------------------------

メッセージ

---------------------------------------------------*/
.top_message_section {
  margin-top: 50px;
}

@media screen and (min-width: 768px) {
  .top_message_section {
    margin-top: 70px;
  }
}

.top_message_inner {

}

.top_message_img {

}

/*--------------------------------------------------

キャンペーン

---------------------------------------------------*/
.top_campaign_section {
  margin-top: 60px;
}

/*--------------------------------------------------

メリット

---------------------------------------------------*/
.top_merit_section {
  margin-top: 40px;
}

/*--------------------------------------------------

サービスの流れ

---------------------------------------------------*/
.top_flow_section {
  padding: 65px 0 90px;
  background: #F8F8F8;
}

.top_flow_inner {
  margin-top: 45px;
}

.top_flow_wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 450px;
  margin: auto;
}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper {
    max-width: unset;
    flex-direction: row;
    gap: 130px;
  }
}

.top_flow_wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper-inner {
    flex-direction: column;
    width: calc(33.3% - 130px * 2 / 3);
  }
}

.top_flow_wrapper-inner:not(:last-child):before {
  content: '';
  display: block;
  width:0;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  height:0;
  border-style:solid;
  border-width: 28px 27.5px 0 27.5px;
  border-color: #A7A7A7 transparent transparent transparent;
}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper-inner:not(:last-child):before {
    left: unset;
    bottom: unset;
    top: 50%;
    transform: translate(-50%, -50%);
    right: -55%;
    width:0;
    height:0;
    border-style:solid;
    border-width: 57.5px 0 57.5px 60px;
    border-color: transparent transparent transparent #A7A7A7;
  }
}

.top_flow_wrapper-img {
  max-width: 104px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.06);
}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper-img {
    max-width: 250px;
  }
}

.top_flow_wrapper-img > img {
  
}

.top_flow_wrapper-content {
  width: calc(100% - 104px);
}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper-content {
    width: auto;
  }
}

.top_flow_wrapper-content-head {

}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper-content-head {
    text-align: center;
  }
}

.top_flow_wrapper-content-head__inner {
  font-weight: 700;
}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper-content-head__inner {
    font-size: 24px;
  }
}

.top_flow_wrapper-text {
  margin-top: 12px;
}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper-text {
    margin-top: 20px;
  }
}

.top_flow_wrapper-text__inner {
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .top_flow_wrapper-text__inner {
    font-size: 16px;
  }
}

.top_flow_wrapper-text__link {
  color: #333;
  text-decoration: underline;
}

/*--------------------------------------------------

キャンペーン概要

---------------------------------------------------*/
.top_info_section {
  margin-top: 60px;
}

.top_info_inner {
  margin-top: 55px;
}

@media screen and (min-width: 768px) {
  .top_info_inner {
    margin-top: 80px;
  }
}

.top_info_dl {
 
}

.top_info_wrapper {
  padding: 24px 0;
  border-bottom: 1px solid #707070;
}

.top_info_wrapper:first-child {
  padding-top: 0;
}

.top_info_dt {
  font-weight: 700;
}

.top_info_dd {
  margin-top: 10px;
  line-height: 1.7;
}
/*--------------------------------------------------

よくある質問

---------------------------------------------------*/
.top_faq_section {
  margin-top: 60px;
  padding: 80px 0 90px;
  background: #F8F8F8;
}

@media screen and (min-width: 768px) {
  .top_faq_section {
    padding: 65px 0 85px;
  }
}

.top_faq_inner {
  margin-top: 55px;
}

@media screen and (min-width: 768px) {
  .top_faq_inner {
    margin-top: 80px;
  }
}

.top_faq_dl {
  
}

.top_faq_wrapper {
  padding: 24px 0;
  border-bottom: 1px solid #707070;
}

.top_faq_wrapper:first-child {
  padding-top: 0;
}

.top_faq_dt {
  font-weight: 700;
}

.top_faq_dd {
  margin-top: 10px;
  line-height: 1.7;
}

/*--------------------------------------------------

cta

---------------------------------------------------*/
.top_cta_section {
  
}

.top_cta_inner {
  position: relative;
}

.top_cta_bg {

}

.top_cta_btn {
  position: absolute;
  left: 50%;
  width: 75vw;
  transform: translateX(-50%);
  bottom: 35px;
}

@media screen and (min-width: 768px) {
  .top_cta_btn {
    width: 32vw;
    bottom: 30px;
  }
}

.top_cta_link {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .top_cta_link {
    transition: transform 0.3s ease;
  }
  .top_cta_link:hover {
    transform: translateY(10px);
  }
}

/*--------------------------------------------------

お問合せセクション

---------------------------------------------------*/
.top_contact_section {
  margin-top: 60px;
}

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

.top_contact_lead {
  margin-top: 40px;
  font-size: clamp(14px, 3.5vw, 16px);
}

@media screen and (min-width: 768px) {
  .top_contact_lead {
    margin-top: 60px;
  }
}

/*--------------------------------------------------

お問合せフォーム本体

---------------------------------------------------*/

.ly_form {

  display: block; }

  @media screen and (min-width: 768px) {

    .ly_form {

      width: 100%;

      max-width: 800px;

      margin: 2em auto; } }

  @media screen and (max-width: 767px) {

    .ly_form {

      width: 100%;

      margin: 2em auto; } }

input[type="text"],
input[type="tel"],
input[type="email"] {
  border: 1px solid #BFBFBF;
}

input::placeholder {
  color: #B8B8B8;
}

select {
  border: 1px solid #BFBFBF;
  appearance: none;
}

.top_contact_select {
  position: relative;
}

.top_contact_select::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  width:0;
  height:0;
  border-style:solid;
  border-width: 6px 5px 0 5px;
  border-color: #BFBFBF transparent transparent transparent;
}

.ly_form input[type="text"] {

  font-size: clamp(18px, 1vw, 21px);

  padding: 0.5em;

  width: 100%; }

.ly_form input[type="tel"] {

  font-size: clamp(18px, 1vw, 21px);

  padding: 0.5em;

  width: 100%; }

.ly_form input[type="email"] {

  font-size: clamp(18px, 1vw, 21px);

  padding: 0.5em;

  width: 100%; }

.ly_form select {

  font-size: clamp(18px, 1vw, 21px);

  padding: 0.5em;

  width: 100%;
}

.ly_form input[type="checkbox"] {

  width: 24px;

  height: 24px;

  vertical-align: middle; }

.ly_form input[type="radio"] {

  width: 24px;

  height: 24px;

  vertical-align: middle; }

.ly_form .el_labeltxt {

  vertical-align: middle; }

.ly_form textarea {

  width: 100%;

  padding: 0.5em;

  font-size: clamp(18px, 1vw, 21px); }



.bl_formList {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: solid 1px #BFBFBF;
  padding: 1em;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .bl_formList {

      flex-wrap: nowrap;
    }
  }

@media screen and (max-width: 767px) {
  .bl_formList {
    flex-wrap: wrap;
  }
}

.bl_formList:last-child {
  border-bottom: solid 1px #BFBFBF;
}



.el_formList_ttl {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.el_formList_ttl label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}

.el_formList_ttl span {
  background: #333;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  padding: 0 10px;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .el_formList_ttl {
    width: 40%;
  }
}

@media screen and (max-width: 767px) {
  .el_formList_ttl {
    width: 100%;
    font-size: clamp(21px, 1vw, 24px);
  }
}

.bl_formList_cont {
  width: 100%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

@media screen and (max-width: 767px) {
  .bl_formList_cont {
    margin-top: 0.8em;
  }
}

  .bl_formList_cont.bl_formList_cont__flex {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

    @media screen and (min-width: 768px) {

      .bl_formList_cont.bl_formList_cont__flex {

        flex-wrap: wrap; } }

    @media screen and (max-width: 767px) {

      .bl_formList_cont.bl_formList_cont__flex {

        flex-wrap: wrap; } }

    @media screen and (min-width: 768px) {

      .bl_formList_cont.bl_formList_cont__flex div:nth-child(n+2) {

        margin-left: 0.5em; } }



.bl_formList_contListItem {

  width: 100%;

  -ms-flex: 0 1 auto;

  flex: 0 1 auto; }



.bl_product_img {

  display: block;

  margin-top: 1em; }



/*送信ボタン*/

.ly_submit {

  display: flex;

  flex-wrap: nowrap;

  justify-content: center;

  align-items: center;

  /*確認画面用*/ }

  @media screen and (min-width: 768px) {

    .ly_submit {

      width: 100%;

      max-width: 440px;

      margin: 2em auto; } }

  @media screen and (max-width: 767px) {

    .ly_submit {

      width: 96%;

      margin: 2em auto; } }

  .ly_submit.ly_submit__confirm {

    max-width: 600px; }



.bl_submit {

  width: 100%;

  -ms-flex: 0 1 auto;

  flex: 0 1 auto; }

  .bl_submit.bl_submit__back {

    margin-right: 1em; }



.el_submit {

  display: block;

  width: 100%;

  padding: 1em 1.5em;

  border-radius: 88px;

  background: #333333;

  text-align: center;

  color: #fff;

  font-weight: 900;

  font-size: clamp(24px, 1vw, 32px);

  border-style: none;

  cursor: pointer;

  pointer-events: auto; }

  .el_submit.el_submit__back {

    background: #B1B1B1; }

  .el_submit.js-disabled {

    background: #aaa;

    pointer-events: none; }



/*--------------------------------------------------

同意チェックボックス

---------------------------------------------------*/

@media screen and (min-width: 768px) {

  .bl_agree {

    width: 100%;

    max-width: 800px;

    margin: 2em auto; } }

@media screen and (max-width: 767px) {

  .bl_agree {

    width: 96%;

    margin: 2em auto; } }



.bl_agreeInner {

  display: flex;

  flex-wrap: nowrap;

  justify-content: center;

  align-items: center; }



/*--------------------------------------------------

footer

---------------------------------------------------*/

.bl_footer {
  background: #333;
  padding: 20px 0;
  text-align: center;
  color: #fff;
}

.bl_footer small {
  font-size: clamp(12px, 1vw, 12px);
}

/*--------------------------------------------------

FVにお問合せフォーム

---------------------------------------------------*/

.ly_fv_order {
  box-shadow: 0px 0px 12px -4px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

@media screen and (min-width: 768px) {
  .ly_fv_order {
    width: 40%;
    position: absolute;
    top: 50%;
    right: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order {
    display: block;
    width: 96%;
    margin: 2em auto;
  }
}

.ly_fv_order .el_lead {
  display: none;
}

.ly_fv_order .ly_form {
  margin: 0 auto;
  background: #fff;
  padding: 0.5em 1em;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form {
    border-radius: 12px;
  }
}

.ly_fv_order .ly_form input[type="checkbox"] {
  width: 14px;
}

.ly_fv_order .ly_form input[type="radio"] {
  width: 14px;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form input[type="text"] {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form input[type="text"] {
    font-size: 1em;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form input[type="tel"] {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form input[type="tel"] {
    font-size: 1em;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form input[type="email"] {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form input[type="email"] {
    font-size: 1em;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form .el_checkbox_labeltxt {
    font-size: clamp(12px, 1vw, 14px);
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form .el_checkbox_labeltxt {
    font-size: 1em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form .el_labeltxt {
    font-size: clamp(12px, 1vw, 14px);
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form .el_labeltxt {
    font-size: 1em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form select {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form select {
    font-size: 1em;
    padding: 0.5em;
  }
}

@media screen and (min-width: 768px) {
  .ly_fv_order .ly_form textarea {
    font-size: clamp(12px, 1vw, 14px);
    padding: 0.2em;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .ly_form textarea {
    font-size: 1em;
    padding: 0.5em;
  }
}

.ly_fv_order .ly_form .el_agree_text {
  font-size: clamp(12px, 1vw, 14px);
}

@media screen and (min-width: 768px) {
  .ly_fv_order .bl_formList {
    padding: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .bl_formList {
    padding: 0.8em 0;
  }
}

.ly_fv_order .bl_formList.bl_formList__borderNone {
  border-top-style: none;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .el_formList_ttl {
    width: 36%;
    font-size: clamp(12px, 1vw, 12px);
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .el_formList_ttl {
    font-size: 1.125em;
  }
}

.ly_fv_order .bl_product_img {
  display: none;
}

.ly_fv_order .bl_formList_cont.bl_formList_cont__flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .bl_formList_cont.bl_formList_cont__flex {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .bl_formList_cont.bl_formList_cont__flex {
    flex-wrap: wrap;
  }
}

.ly_fv_order .bl_formList_cont .el_formList_cont_flexItem {
  width: 100%;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.el_formList_cont_flexItem {
  font-size: 10px;
  margin-top: 5px;
}

.ly_fv_order .bl_agree {
  margin: 1em auto 0.5em;
}

.ly_fv_order .ly_submit {
  margin: 1em auto;
}

.ly_fv_order .el_submit {
  padding: 1em 0.5em;
  font-size: clamp(14px, 1vw, 16px);
  border-style: none;
}

.ly_fv_order .el_label.el_label__caution {
  padding: 0.1em 0.2em;
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .ly_fv_order .hp_txt_small {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .ly_fv_order .hp_txt_small {
    font-size: 0.7em;
  }
}
/*--------------------------------------------------

完了画面

---------------------------------------------------*/

@media screen and (min-width: 768px) {

  .ly_thanksLead {

    width: 100%;

    max-width: 800px;

    margin: 2em auto; } }

@media screen and (max-width: 767px) {

  .ly_thanksLead {

    width: 96%;

    margin: 2em auto; } }



.bl_thanksLead {

  text-align: center;

  line-height: 1.9; }



.bl_cautionLeadBox {

  border: solid 1px #E00429;

  border-radius: 8px;

  padding: 1.5em;

  text-align: center;

  line-height: 1.9; }



@media screen and (min-width: 768px) {

  .ly_btnTop {

    width: 100%;

    max-width: 400px;

    margin: 2em auto; } }

@media screen and (max-width: 767px) {

  .ly_btnTop {

    width: 96%;

    margin: 2em auto; } }

.footer_cta {
  background: #fff;
  padding: 12px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  box-shadow: 0 -5px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .footer_cta {
    display: none;
  }
}

.footer_cta_inner {
  text-align: center;
}

.footer_cta_link {
  display: inline-block;
  width: 92%;
  max-width: 450px;
  margin: auto;
}

@media screen and (min-width: 768px) {
  .footer_cta_link {
    transition: transform 0.3s ease;
  }
  .footer_cta_link:hover {
    transform: translateY(10px);
  }
}

/**/

/*@import 'sidecont';*/



/*# sourceMappingURL=style.css.map */

