@charset "UTF-8";
/* =====================================================
  1.0 - Foundation
===================================================== */
/*
  Base
-----------------------------------------------------*/
:root {
  --mainfont: "Zen Maru Gothic", sans-serif;
  --notosans: "Noto Sans JP", sans-serif;
  --color-text: #4D4D4D;
}

/* =====================================================
  2.0 - Layout
===================================================== */
/*
  Header
-----------------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 960px) {
  .header {
    background: #fff;
  }
}
body.is-scrolled .header {
  background: rgba(255, 255, 255, 0.9);
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
}
@media screen and (min-width: 960px) {
  .header_inner {
    padding: 20px 2.9166666667%;
  }
}

.header_logo {
  margin: 0;
  width: 156px;
}
@media screen and (min-width: 960px) {
  .header_logo {
    width: 203px;
  }
}
.header_logo img {
  display: block;
}

/* Button */
.button-hamburger {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  margin: auto 0;
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* IE非対応 */
}
@media screen and (min-width: 960px) {
  .button-hamburger {
    display: none;
  }
}

.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 2px;
  margin: auto;
  background-color: #000000;
}
.hamburger:before, .hamburger:after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: inherit;
  content: "";
}
.hamburger:before {
  top: -8px;
}
.hamburger:after {
  top: 8px;
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  cardlist
-----------------------------------------------------*/
.voiceItem {
  --voiceColor: #4A69B8;
  --wp-column-gap: 0px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .voiceItem {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}
@media screen and (min-width: 960px) {
  .voiceItem {
    --wp-column-gap: 60px;
  }
}
.voiceItem h3 {
  font-weight: bold;
  font-size: 20px;
  font-family: var(--mainfont);
  margin-bottom: 20px;
  color: var(--voiceColor);
}
.voiceItem > .wp-block-column:nth-child(2) {
  -ms-flex-preferred-size: calc(100% - 220px) !important;
      flex-basis: calc(100% - 220px) !important;
  padding-top: 40px;
}
.voiceItem._red {
  --voiceColor: #FF5858;
}

.voiceItem_image {
  line-height: 2;
  font-size: 14px;
  -ms-flex-preferred-size: 180px !important;
      flex-basis: 180px !important;
}
@media screen and (min-width: 960px) {
  .voiceItem_image {
    -ms-flex-preferred-size: calc(100% - 648px) !important;
        flex-basis: calc(100% - 648px) !important;
  }
}
@media screen and (max-width: 959px) {
  .voiceItem_image {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.voiceItem_image figure {
  width: 180px;
}
@media screen and (min-width: 960px) {
  .voiceItem_image figure {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 960px) {
  .voiceItem_image p {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    max-width: 180px;
  }
}

.voiceItem_ballon + * {
  margin-top: 48px;
}
@media screen and (min-width: 960px) {
  .voiceItem_ballon {
    margin-top: 30px;
  }
  .voiceItem_ballon + * {
    margin-top: 48px;
  }
}
.voiceItem_ballon.has-border.-border01 {
  padding: 0 !important;
  border: none !important;
}

.voiceItem_text {
  padding: 20px;
  border: 2px solid var(--voiceColor);
  border-radius: 20px;
  line-height: 2;
  position: relative;
  background: #fff;
}
.voiceItem_text p:last-child {
  margin-bottom: 0;
}
.voiceItem_text::before, .voiceItem_text::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  -webkit-clip-path: polygon(0 100%, 0 0, 100% 0);
          clip-path: polygon(0 100%, 0 0, 100% 0);
  background: #fff;
  top: calc(100% - 1px);
  z-index: 12;
  left: 27px;
}
.voiceItem_text::after {
  width: 24px;
  height: 24px;
  background: var(--voiceColor);
  top: calc(100% + 1px);
  left: 25px;
  z-index: -2;
}

/*
  borderTitleBox
-----------------------------------------------------*/
.borderTitleBox {
  margin-top: 40px;
  max-width: 648px;
  margin-right: auto;
  margin-left: auto;
  background: #F2F2F2;
  padding: 20px 30px;
  border-radius: 20px;
}
.borderTitleBox h3 {
  text-align: center;
  font-size: 20px;
  font-family: var(--mainfont);
}
.borderTitleBox h3::after {
  content: "";
  display: block;
  height: 3px;
  width: 130px;
  background: #ff9432;
  margin: 4px auto 0;
}

/*
  heading
-----------------------------------------------------*/
.heading._sec._round {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  font-family: var(--mainfont);
}
@media screen and (min-width: 960px) {
  .heading._sec._round {
    font-size: 24px;
  }
}
.heading._sec._round .heading_text {
  display: inline-block;
  padding: 10px 30px;
  background: #FF9432;
  border-radius: 28px;
}
.heading._sec._round._green .heading_text {
  background: #00BFA5;
}
.heading._sec._round._blue .heading_text {
  background: #4A69B8;
}
.heading._sec._round._yellow .heading_text {
  background: #FFCB44;
}
.heading._sec._round._red .heading_text {
  background: #FF5858;
}
.heading._balloon .heading_text {
  position: relative;
  display: inline-block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.heading._balloon .heading_text::before, .heading._balloon .heading_text::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  -webkit-transform: rotate(66deg);
      -ms-transform: rotate(66deg);
          transform: rotate(66deg);
}
.heading._balloon .heading_text::after {
  -webkit-transform: rotate(-66deg);
      -ms-transform: rotate(-66deg);
          transform: rotate(-66deg);
}

.trouble_list {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trouble_list > div {
  -ms-flex-preferred-size: calc(30% - 10px) !important;
      flex-basis: calc(30% - 10px) !important;
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.78;
  font-family: var(--mainfont);
}

/*
  MV
-----------------------------------------------------*/
.lpMv {
  background-color: #effed4 !important;
  padding-top: 0 !important;
  position: relative;
}
@media screen and (min-width: 960px) {
  .lpMv {
    padding-bottom: 97px !important;
  }
}

.lpMv_header {
  height: 100px;
  background: url(../img/lp/header_bg.svg) repeat-x bottom center/auto 228px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0 !important;
}

.lpMv_copy {
  margin-bottom: 0 !important;
  background: #fff;
  letter-spacing: 0.2em;
  font-size: 13px;
  color: var(--color-text);
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-align: center;
}

.lpMv_card {
  margin-top: 40px;
  background: #fff;
  border-radius: 30px;
  -webkit-filter: drop-shadow(0px 11px 15px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 11px 15px rgba(0, 0, 0, 0.25));
  padding: 30px 17px;
  width: 268px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  margin-bottom: 0 !important;
  z-index: 1;
}
.lpMv_card .is-style-section_ttl {
  text-align: center;
  border-top: 1px solid #ccc;
  padding-top: 17px;
  font-size: 1.049375rem;
  margin: 0;
}

@media screen and (min-width: 960px) {
  .lpMv_logo {
    width: 194px;
    margin: 0 auto 23px;
  }
}

.lpMv_ballon {
  position: absolute;
  color: #fff;
  width: 120px;
  height: 80px;
  background: url(../img/lp/mv_ballon.svg) no-repeat center/contain;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-size: 15px;
  line-height: 1.3333333333;
  font-weight: bold;
  padding-top: 10px;
  top: -20px;
  left: -35px;
}

.lpMv_floatcard {
  position: absolute;
  bottom: -220px;
  margin: 0;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  left: 50%;
  width: 290px;
}
@media screen and (min-width: 960px) {
  .lpMv_floatcard {
    left: calc(50% + 23px);
    bottom: -50px;
    width: 508px;
    -webkit-filter: drop-shadow(0px 11px 15px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0px 11px 15px rgba(0, 0, 0, 0.25));
    max-width: 568px;
  }
}

.lpMv_flowlist {
  margin-top: 90px;
  width: 100vw;
  margin-left: calc(50% - 50vw) !important;
}
.lpMv_flowlist > .wp-block-group__inner-container {
  width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 10px;
}

.lpMv_flowItem {
  width: 2109px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.lpMv_flowItem .wp-block-columns {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}
@media screen and (max-width: 959px) {
  .lpMv_flowItem .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    -ms-flex-preferred-size: 33.3% !important;
        flex-basis: 33.3% !important;
  }
}
.lpMv_flowItem * {
  --wp-column-gap: 0px;
  margin: 0;
}
.lpMv_flowItem .wp-block-columns {
  --wp-column-gap: 10px;
}

@media screen and (min-width: 960px) {
  .lpMv_bgPic {
    position: absolute;
    z-index: -1;
  }
}
@media screen and (max-width: 959px) {
  .lpMv_bgPic._pic1 {
    height: 410px;
    height: 109.3333333333vw;
  }
  .lpMv_bgPic._pic1 img {
    width: auto;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    left: 50%;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  .lpMv_bgPic._pic1 {
    width: 602px;
    top: 133px;
    left: calc(50% - 50px);
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media screen and (min-width: 960px) {
  .lpMv_bgPic._pic2 {
    width: 369px;
    right: calc(50% - 164px);
    top: 137px;
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@media screen and (max-width: 959px) {
  .lpMv_bgPic._pic2 {
    margin-top: -100px;
    position: relative;
    z-index: 1;
    height: 99.2vw;
  }
  .lpMv_bgPic._pic2 img {
    width: auto;
    height: 100%;
    max-width: none;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.lpMv_bgPic._sp {
  height: 676px;
}
.lpMv_bgPic._sp img {
  width: auto;
  max-width: none;
  height: 100%;
}
@media screen and (max-width: 575px) {
  .lpMv_bgPic._sp img {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/*
  Lead
-----------------------------------------------------*/
.lpLead {
  padding: 20px 0 !important;
}
@media screen and (max-width: 959px) {
  .lpLead {
    padding: 20px 20px 0 32px !important;
  }
}

.lpLead_content {
  margin: 0 !important;
}
@media screen and (max-width: 959px) {
  .lpLead_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto !important;
  }
}

.lpLead_heading {
  text-align: left;
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 32px;
  color: #4A69B8;
  margin-bottom: 0 !important;
}
.lpLead_heading .heading_text {
  display: inline-block;
  position: relative;
}
.lpLead_heading .heading_text::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 280px;
  height: 15px;
  background: url(../img/lp/lead_wave.svg) no-repeat bottom left/auto 100%;
}

.lpLead_subheading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 0;
  line-height: 1.2;
}
.lpLead_subheading span {
  display: inline-block;
  background: #fff;
  padding: 5px 10px;
  color: #4A69B8;
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 20px;
}

.lpLead_img {
  position: absolute;
  width: 247px;
  bottom: -20px;
  right: calc(50% + 68px);
  margin: 0 !important;
}
@media screen and (max-width: 959px) {
  .lpLead_img {
    position: relative;
    bottom: 0;
    right: auto;
    left: -30px;
  }
}

.lpLead_list {
  margin-top: 60px;
}
@media screen and (min-width: 960px) {
  .lpLead_list {
    --wp-column-gap: 32px;
    margin-inline: -36px;
    gap: 40px var(--wp-column-gap) !important;
  }
}
.lpLead_list figure {
  margin-bottom: 20px;
}
.lpLead_list figure img {
  width: 100% !important;
}

/*
  About
-----------------------------------------------------*/
.lpAbout_header {
  height: 330px;
  margin-top: 255px !important;
  position: relative;
  background: url(../img/lp/about_headerbg.jpg) no-repeat center/cover;
}
.lpAbout_logo {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 270px;
}

.lpAbout_secheading {
  position: relative;
  margin-top: -32px;
}
.lpAbout_heading {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (min-width: 960px) {
  .lpAbout_heading {
    position: absolute;
    top: 29px;
    right: 348px;
    line-height: 1.875;
  }
}
.lpAbout_heading span {
  color: #FF9432;
}

.lpAbout_imgwrapper {
  position: relative;
  margin-top: 60px;
}

.lpAbout_img {
  display: block;
}
@media screen and (min-width: 960px) {
  .lpAbout_img._main {
    width: 475px;
    margin-right: 0;
    margin-left: auto;
  }
}
.lpAbout_img._music {
  margin-top: -50px;
}
@media screen and (min-width: 960px) {
  .lpAbout_img._music {
    width: 346px;
    position: absolute;
    bottom: 0;
    right: 390px;
  }
}

.lpAbout_ballon {
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 18px;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (min-width: 960px) {
  .lpAbout_ballon {
    font-size: 20px;
    margin-bottom: 32px;
  }
}
.lpAbout_ballon strong {
  color: #FF9432;
}
.lpAbout_ballon .heading_text {
  text-align: center;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  margin: 0 23px !important;
}
@media screen and (max-width: 959px) {
  .lpAbout_ballon .heading_text {
    margin-left: -60px !important;
  }
}
.lpAbout_ballon.heading._balloon .heading_text::before, .lpAbout_ballon.heading._balloon .heading_text::after {
  background: #FF9432;
  width: 80px;
}
@media screen and (min-width: 960px) {
  .lpAbout_ballon.heading._balloon .heading_text::before {
    -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
            transform: rotate(60deg);
  }
}
@media screen and (max-width: 959px) {
  .lpAbout_ballon.heading._balloon .heading_text::before {
    position: relative;
    left: 30px;
  }
}
@media screen and (min-width: 960px) {
  .lpAbout_ballon.heading._balloon .heading_text::after {
    -webkit-transform: rotate(-60deg);
        -ms-transform: rotate(-60deg);
            transform: rotate(-60deg);
  }
}
@media screen and (max-width: 959px) {
  .lpAbout_ballon.heading._balloon .heading_text::after {
    position: relative;
    right: 30px;
  }
}

.lpAbout_cardList {
  max-width: 750px;
  position: relative;
  margin: 84px auto 30px;
}
.lpAbout_cardList::before {
  content: "";
  display: block;
  width: 226px;
  height: 256px;
  background: url(../img/lp/about_illust.png) no-repeat center bottom/contain;
  position: absolute;
  right: 10px;
  top: -57px;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .lpAbout_cardList::before {
    background: url(../img/lp/about_illust_sp.png) no-repeat center bottom/contain;
    width: 135px;
    height: 224px;
    top: -30px;
  }
}

.lpAbout_subheading {
  text-align: center;
  font-family: var(--mainfont);
  font-weight: bold;
  margin-top: 30px;
  font-size: 22px;
}
@media screen and (min-width: 960px) {
  .lpAbout_subheading {
    font-size: 28px;
  }
}
.lpAbout_subheading strong {
  color: #FF9432;
  font-size: 1.7857142857em;
}

.lpAbout_list {
  line-height: 2;
  font-size: 16px;
  max-width: 648px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
.lpAbout_list .heading {
  text-align: center;
  font-family: var(--mainfont);
  color: #FF9432;
  font-size: 24px;
  font-weight: bold;
}
.lpAbout_list .wp-block-image {
  margin-bottom: 0;
}
.lpAbout_list p {
  margin-bottom: 0;
}

.lpAbout_support {
  --wp-column-gap: 18px;
  margin-top: 20px;
  max-width: 520px;
  border-radius: 20px;
  padding: 20px;
  margin-inline: auto;
  background: #f2f2f2;
  font-size: 16px;
  font-family: var(--mainfont);
  font-weight: bold;
}
.lpAbout_support .heading._sec._round {
  text-align: left;
  font-size: 14px;
}
.lpAbout_support .heading._sec._round .heading_text {
  padding: 6px 16px;
  background: #f4ba44;
}
@media screen and (max-width: 959px) {
  .lpAbout_support figure {
    width: 150px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.lpAbout_features {
  --wp-column-gap: 40px;
  margin-top: 30px;
  max-width: 720px;
  margin-inline: auto;
}

.lpAbout_featuresItem {
  background: #FF9432;
  border-radius: 20px;
  padding: 15px 20px;
  text-align: center;
  color: #fff;
  font-family: var(--mainfont);
  font-size: 20px;
  font-weight: bold;
  --swl-fz--large: 24px;
}
.lpAbout_featuresItem strong {
  font-size: 1.5em;
}
.lpAbout_featuresItem p {
  margin-bottom: 0;
}
.lpAbout_featuresItem._green {
  background: #00C092;
}

.lpAbout_copy {
  position: relative;
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 18px;
  line-height: 2;
  max-width: 600px;
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .lpAbout_copy {
    padding: 30px;
    font-size: 20px;
  }
}
.lpAbout_copy strong {
  font-size: 1.5em !important;
}
.lpAbout_copy .swl-fz {
  font-size: 30px;
  color: #FF9432;
  --swl-fz--large: 30px;
}
.lpAbout_copy .swl-fz::after {
  content: "";
  display: block;
  width: 280px;
  height: 15px;
  background: url(../img/lp/about_copy_wave.svg) no-repeat center/auto 100%;
  margin: 0 auto;
}
.lpAbout_copy p {
  margin-bottom: 0;
}
.lpAbout_copy::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 40px;
  background: var(--yellow-pale, #FFFCC0);
  -webkit-filter: blur(32px);
          filter: blur(32px);
  text-align: center;
  z-index: -1;
}

.lpAbout_bonusList {
  --wp-column-gap: 80px;
  margin-top: 110px;
  margin-inline: auto;
  max-width: 506px;
}

.lpAbout_bonusItem {
  border-radius: 20px;
  background: var(--white, #FFF);
  -webkit-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 26px 16px;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  font-family: var(--mainfont);
}
@media screen and (max-width: 959px) {
  .lpAbout_bonusItem.wp-block-column {
    max-width: 220px;
    margin-right: auto !important;
    margin-left: auto !important;
  }
}
.lpAbout_bonusItem figure {
  width: 80px;
  margin: 0 auto 20px;
}
.lpAbout_bonusItem .badge {
  width: 97px;
  height: 97px;
  color: #fff;
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 25px;
  background: url(../img/lp/icon_badge.svg) no-repeat center/contain;
  position: absolute;
  top: -50px;
  left: -50px;
}

.lpAbout_featureBox {
  text-align: center;
  font-weight: bold;
  color: var(--mainfont);
  font-size: 20px;
  padding-top: 42px;
}
@media screen and (min-width: 960px) {
  .lpAbout_featureBox {
    padding-top: 42px;
    padding-bottom: 40px;
  }
}
.lpAbout_featureBox h3 span {
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 53px;
  position: relative;
}
.lpAbout_featureBox h3 span::before {
  content: "";
  display: block;
  width: 38px;
  height: 53px;
  background: url(../img/lp/icon_file.png) no-repeat center/contain;
  position: absolute;
  top: -18px;
  left: -7px;
}
.lpAbout_featureBox h3 span::after {
  content: "";
  display: block;
  height: 3px;
  width: 140px;
  background: #ff9432;
}
.lpAbout_featureBox h3::after {
  content: none;
}
.lpAbout_featureBox .wp-block-columns {
  margin-bottom: 20px;
}

.lpAbout_year {
  max-width: 420px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.lpAbout_release {
  margin-top: 40px;
  padding-top: 130px !important;
  padding-bottom: 60px !important;
  background: url(../img/lp/lp_cta_bg_sp.png) no-repeat center top 30px/auto 190px, #00C092;
}
@media screen and (min-width: 960px) {
  .lpAbout_release {
    background: url(../img/lp/lp_cta_bg.png) no-repeat center/auto 180px, #00C092;
  }
}

.lpAbout_releaseSubtitle {
  width: 240px;
  margin-bottom: 0;
  margin-right: auto;
  margin-left: auto;
}

.lpAbout_releaseBox {
  background: #fff;
  max-width: 456px;
  margin: 0 auto;
  border-radius: 20px;
  background: var(--white, #FFF);
  -webkit-box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 1px 20px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 20px 10px;
  text-align: center;
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 24px;
  color: #4A69B8;
}
.lpAbout_releaseBox .wp-block-columns {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
@media screen and (min-width: 960px) {
  .lpAbout_releaseBox .wp-block-columns {
    --wp-column-gap: 10px;
  }
}
@media screen and (max-width: 959px) {
  .lpAbout_releaseBox {
    padding-top: 35px;
    font-size: 20px;
  }
  .lpAbout_releaseBox .wp-block-group__inner-container .wp-block-columns {
    display: grid;
    grid-template-columns: 1fr 70px;
    --wp-column-gap: 0 ;
  }
}
@media screen and (max-width: 959px) {
  .lpAbout_releaseBox .wp-block-column {
    -ms-flex-preferred-size: calc(100% - 70px) !important;
        flex-basis: calc(100% - 70px) !important;
  }
  .lpAbout_releaseBox .wp-block-column:last-child {
    -ms-flex-preferred-size: 70px !important;
        flex-basis: 70px !important;
  }
}
@media screen and (min-width: 960px) {
  .lpAbout_releaseBox {
    max-width: 456px;
    padding: 40px 30px;
  }
}
.lpAbout_releaseBox .wp-block-columns {
  margin-bottom: 0;
}
.lpAbout_releaseBox p {
  margin-bottom: 0 !important;
}
.lpAbout_releaseBox .is-style-section_ttl {
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .lpAbout_releaseBox .is-style-section_ttl {
    font-size: 28px;
  }
}
.lpAbout_releaseBox .is-style-section_ttl strong {
  font-size: 1.5454545455em;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .lpAbout_releaseBox .is-style-section_ttl strong {
    font-size: 1.5714285714em;
  }
}
.lpAbout_releaseBox::before {
  content: "";
  width: 75px;
  height: 75px;
  background: url(../img/lp/icon_badge_yellow.svg) no-repeat center/contain;
  position: absolute;
  top: -20px;
  left: -20px;
}
@media screen and (min-width: 960px) {
  .lpAbout_releaseBox::before {
    width: 97px;
    height: 97px;
    top: -50px;
    left: -50px;
  }
}

.lpAbout_releaseTitle {
  width: 215px;
  margin: 0 !important;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -70px);
      -ms-transform: translate(-50%, -70px);
          transform: translate(-50%, -70px);
}
@media screen and (min-width: 960px) {
  .lpAbout_releaseTitle {
    width: 280px;
    -webkit-transform: translate(-50%, -90px);
        -ms-transform: translate(-50%, -90px);
            transform: translate(-50%, -90px);
  }
}

.lpAbout_movie {
  max-width: 648px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
.lpAbout_movie iframe {
  height: 100%;
}

/*
  Contents
-----------------------------------------------------*/
.lpContents {
  margin-top: 0;
}

.lpContents_subheading {
  font-family: var(--mainfont);
  font-size: 20px;
  font-weight: bold;
}
.lpContents_subheading strong {
  font-size: 1.7em;
}
.lpContents_subheading::after {
  content: "";
  display: block;
  width: 275px;
  height: 3px;
  background: #FF9432;
  border-radius: 100rem;
}

@media screen and (min-width: 960px) {
  .lpContents_body {
    margin-top: 94px !important;
    --wp-column-gap: 48px;
  }
}

.lpContents_list {
  font-family: var(--mainfont);
  background: #f2f2f2;
  border-radius: 20px;
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  padding: 30px 32px;
  margin-top: 70px;
}
@media screen and (max-width: 959px) {
  .lpContents_list {
    padding: 30px 20px;
    margin-top: 50px;
  }
  .lpContents_list + * {
    margin-top: 120px;
  }
}
.lpContents_list::before {
  content: "";
  display: block;
  width: 88px;
  height: 59px;
  background: url(../img/lp/contents_icon01.svg) no-repeat center/contain;
  position: absolute;
  top: -33px;
  left: 35px;
}
.lpContents_list li {
  font-weight: bold;
  font-size: 16px;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .lpContents_list li {
    font-size: 20px;
  }
}
.lpContents_list li::before {
  content: "●";
  color: #a8a8a8;
}
.lpContents_list li strong {
  color: #FF5858;
}
.lpContents_list._success {
  background: #ceffaf;
  margin-top: 148px;
}
.lpContents_list._success::before {
  background: url(../img/lp/contents_icon02.svg) no-repeat center/contain;
  top: -33px;
  left: 35px;
  width: 65px;
  height: 64px;
  left: auto;
  right: -17px;
}
.lpContents_list._success::after {
  content: "";
  display: block;
  position: absolute;
  width: 50px;
  height: 100px;
  background: url(../img/lp/contents_arrow.svg) no-repeat center/contain;
  bottom: calc(100% + 20px);
  left: calc(50% - 25px);
}
.lpContents_list._success li {
  padding-left: 32px;
  position: relative;
}
.lpContents_list._success li strong {
  color: inherit;
  background: #ffcb44;
}
.lpContents_list._success li::before {
  content: "";
  width: 22px;
  height: 24px;
  background: url(../img/lp/icon_checkmark.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
}

.lpContents_note {
  margin-top: 60px;
  padding-top: 40px;
  max-width: 992px;
  margin-inline: auto;
  border-top: 1px solid #A8A8A8;
  line-height: 2;
}
.lpContents_note > .wp-block-group__inner-container {
  max-width: 648px;
  margin-inline: auto;
}
.lpContents_note a {
  color: inherit;
  text-decoration: underline;
  font-size: 18px;
}

/*
  Effect
-----------------------------------------------------*/
.lpEffect_header {
  position: relative;
  height: 330px;
  background: url(../img/lp/effect_bg.jpg) no-repeat center/cover !important;
  margin-top: 100px !important;
}
.lpEffect_header > .swell-block-fullWide__inner {
  position: static;
}

@media screen and (min-width: 960px) {
  .lpEffect_img {
    margin: 84px auto 60px;
    max-width: 900px;
  }
}
@media screen and (max-width: 959px) {
  .lpEffect_img {
    height: 117.6vw;
    position: relative;
    left: -16vw;
    margin-top: 50px;
  }
  .lpEffect_img img {
    height: 100% !important;
    width: auto !important;
    max-width: none;
  }
}

.lpEffect_heading {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0 !important;
}
@media screen and (max-width: 959px) {
  .lpEffect_heading {
    width: 90%;
  }
}

.lpEffect_maincopy {
  font-family: var(--mainfont);
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  margin-bottom: 32px;
}
.lpEffect_maincopy .red {
  color: #FF5858;
}
.lpEffect_maincopy .blue {
  color: #4A69B8;
}
.lpEffect_maincopy .orange {
  color: #FF9432;
}

.lpEffect_voice {
  margin-bottom: 100px;
  padding-bottom: 28px !important;
}
@media screen and (max-width: 960px) and (min-width: 576px) {
  .lpEffect_voice {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 960px) {
  .lpEffect_voice {
    margin-bottom: 150px;
    padding-top: 60px !important;
  }
}
.lpEffect_voice::after {
  content: "";
  display: block;
  background: inherit;
  height: 60px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
@media screen and (min-width: 960px) {
  .lpEffect_voice::after {
    height: 115px;
  }
}

.lpEffect_voiceList {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 50px !important;
  max-width: 980px;
  margin-inline: auto;
}
@media screen and (min-width: 960px) {
  .lpEffect_voiceList {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lpEffect_voiceItem {
  font-family: var(--mainfont);
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8;
}
.lpEffect_voiceItem p {
  margin-bottom: 0;
}
.lpEffect_voiceItem strong {
  border-bottom: 3px solid #FF9432;
}
.lpEffect_voiceItem > .wp-block-columns {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}
.lpEffect_voiceItem figure {
  margin-bottom: 0;
}

.lpEffect_copy {
  text-align: center;
  font-family: var(--mainfont);
  font-size: 28px;
  font-weight: bold;
  color: #FF5858;
}

@media screen and (min-width: 960px) {
  .lpEffect_image {
    max-width: 726px;
    margin-right: auto;
    margin-left: auto;
  }
}

/*
  Voice
-----------------------------------------------------*/
.lpVoice_heading {
  margin-top: 120px;
  margin-bottom: 38px;
}

.lpVoice_item + * {
  margin-top: 66px;
}
/*
  Lesson
-----------------------------------------------------*/
.lpLesson {
  position: relative;
  padding-bottom: 2em;
  padding-bottom: 2em;
}
@media screen and (min-width: 960px) {
  .lpLesson {
    padding-bottom: 200px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: url(../img/lp/lesson_bg01.jpg) no-repeat bottom 109px right calc(50% + 433px)/346px auto, url(../img/lp/lesson_bg02.jpg) no-repeat bottom 100px left calc(50% + 383px)/323px auto;
  }
}

.lpLesson_heading {
  font-size: 24px;
  text-align: center;
  margin-top: 120px;
  font-weight: bold;
  font-family: var(--mainfont);
}
.lpLesson_heading strong {
  font-size: 1.4166666667em;
  color: #FF9432;
}

.lpLesson_img {
  max-width: 480px;
  margin: 26px auto;
}

.lpLesson_price {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto;
  background: #FFCB44;
  border-radius: 20px;
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 22px;
  padding: 5px 20px;
}
@media screen and (min-width: 960px) {
  .lpLesson_price {
    font-size: 40px;
    padding: 10px 40px;
    margin: 40px auto 70px;
  }
}

.lpLesson_message {
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 20px;
  text-align: center;
  line-height: 2;
}
.lpLesson_message strong {
  color: #FF9432;
}
.lpLesson_message .u-fz-l {
  color: #ff5858;
  font-size: 1.2em;
}

/*
  Message
-----------------------------------------------------*/
.lpMessage {
  background: url(../img/lp/message_bg.png) repeat-x left bottom 160px/auto 215px, #FFF5DD !important;
}
@media screen and (max-width: 959px) {
  .lpMessage {
    margin-top: 0 !important;
    background: url(../img/lp/message_bg.png) repeat-x left bottom 100px/auto 215px, #FFF5DD !important;
  }
}

.lpMessage_heading {
  margin-bottom: 40px;
}

.lpMessage_content {
  max-width: 648px;
  margin-inline: auto;
  line-height: 2;
}

.lpMessage_img {
  max-width: 288px;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .lpMessage_img {
    margin-top: 60px;
  }
}

/*
  Sample
-----------------------------------------------------*/
.lpSample {
  margin-top: 120px;
}
@media screen and (max-width: 959px) {
  .lpSample {
    padding-bottom: 4em;
  }
}

.lpSample_heading._sub {
  text-align: center;
  font-size: 20px;
  font-family: var(--mainfont);
  margin-bottom: 7px;
}
.lpSample_heading._sub::after {
  content: "";
  display: block;
  height: 3px;
  width: 90px;
  background: #ff9432;
  margin: 4px auto 0;
}
.lpSample_listbox .lpSample_heading._sub::after {
  width: 140px;
}

.lpSample_subheading {
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 20px;
}

.lpSample_text {
  line-height: 2;
}

.lpSample_card {
  width: 166px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .lpSample_card {
    margin-right: 0;
  }
}

.lpSample_listbox {
  margin-top: 40px;
  max-width: 648px;
  margin-right: auto;
  margin-left: auto;
  background: #d0ddff;
  padding: 20px 20px;
  border-radius: 20px;
}
@media screen and (min-width: 960px) {
  .lpSample_listbox {
    padding: 20px 30px;
  }
}

.lpSample_step .swell-block-step__item {
  padding-left: 90px !important;
  padding-bottom: 0 !important;
}
@media screen and (min-width: 960px) {
  .lpSample_step .swell-block-step__item {
    padding-left: 100px !important;
  }
}
.lpSample_step .swell-block-step__item:before {
  content: none;
}
.lpSample_step .swell-block-step__number {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/lp/step_bg.svg) no-repeat center/88px 28px, transparent !important;
  color: #4A69B8 !important;
  border-right-width: 0;
  font-size: 16px;
  font-weight: bold;
  width: 55px;
  padding: 5px 13px 5px 10px;
  height: auto;
  top: 10px;
  left: 0;
}
@media screen and (min-width: 960px) {
  .lpSample_step .swell-block-step__number {
    width: 82px;
  }
}
.lpSample_step .swell-block-step__number::after {
  content: "";
  display: block;
}
.lpSample_step .swell-block-step__number .__label {
  font-size: inherit;
}
.lpSample_step .swell-block-step__number:after {
  content: "0" counter(step);
  font-size: inherit;
}
.lpSample_step .swell-block-step__item > .swell-block-step__title {
  font-size: 16px !important;
  font-weight: 400 !important;
}

.lpSample_button a {
  background: #fff;
  border: 1px solid #4A69B8;
  color: #4a69b8;
  font-weight: bold;
  font-size: 16px;
  padding: 5px 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.lpSample_button a::before {
  content: "";
  display: block;
  background: url(../img/lp/icon_play.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 959px) {
  .lpSample_box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

/*
  CTA
-----------------------------------------------------*/
.lpCta_wrapper {
  margin-top: 120px;
}

.post_content > :first-child.lpCta {
  margin-top: 123px !important;
}

div.lpCta {
  margin-top: 123px !important;
}
@media screen and (max-width: 960px) and (min-width: 576px) {
  div.lpCta {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.lpCta {
  position: relative;
  background-color: #FF9432 !important;
  padding-top: 50px !important;
  padding-bottom: 0 !important;
  color: #fff;
}
.lpCta::before {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background: url(../img/lp/cta_wave.svg) repeat-x bottom center/auto 23px;
  position: absolute;
  top: -22px;
  left: 0;
}
@media screen and (min-width: 960px) {
  .lpCta::after {
    content: "";
    display: block;
    width: 146px;
    height: 287px;
    background: url(../img/lp/cta_bg_point02.svg) no-repeat center/contain;
    top: -30px;
    left: calc(50% + 340px);
    position: absolute;
  }
}
.lpCta._cta1 {
  margin-top: 145px !important;
  padding-top: 21px !important;
}
.lpCta._cta1 .lpCta_subcopy {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .lpCta._cta1 .wp-block-column {
    display: contents;
  }
  .lpCta._cta1 .wp-block-column .lpCta_subcopy {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin: 0 auto;
    font-weight: bold;
  }
  .lpCta._cta1 .wp-block-column .wp-block-image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .lpCta._cta1 .wp-block-column .lpCta_maincopy {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.lpCta._cta2 .lpCta_maincopy .u-fz-s {
  font-size: 26px !important;
}

h2.lpCta_heading {
  position: absolute;
  background: none;
  background: url(../img/lp/cta_heading_bg.svg) no-repeat center/100% auto;
  width: 300px;
  height: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-family: var(--mainfont);
  font-size: 20px;
  margin: 0 !important;
  top: -45px;
  text-align: center;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media screen and (min-width: 960px) {
  h2.lpCta_heading {
    width: 387px;
    height: 94px;
    font-size: 24px;
    top: -55px;
  }
}
h2.lpCta_heading::before {
  content: none !important;
  display: none !important;
  border: none;
}

.lpCta_image {
  position: relative;
}
@media screen and (min-width: 960px) {
  .lpCta_image::before {
    content: "";
    display: block;
    width: 102px;
    height: 185px;
    background: url(../img/lp/cta_bg_point01.svg) no-repeat center/contain;
    position: absolute;
    left: -40px;
    top: 140px;
  }
}

.lpCta_button {
  width: 397px;
  -webkit-filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  z-index: 1;
  bottom: calc(100% + 44px);
}
@media screen and (max-width: 959px) {
  .lpCta_button {
    bottom: calc(100% + 30px);
    width: 90.6666666667%;
    max-width: 340px;
  }
}
@media screen and (min-width: 960px) {
  .lpCta._cta1 .lpCta_button {
    bottom: calc(100% + 44px);
  }
}

.lpCta_bottom {
  background: url(../img/lp/lp_cta_bg_sp.png) no-repeat center/auto 140px, #00C092;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw) !important;
  margin-bottom: 0 !important;
  margin-top: 120px !important;
  padding-top: 40px;
  padding-bottom: 90px;
  font-size: 34px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
  .lpCta_bottom {
    font-size: 37px;
    margin-top: 20px !important;
    min-height: 200px;
    background: url(../img/lp/lp_cta_bg.png) no-repeat center/auto 180px, #00C092;
    padding-bottom: 30px;
  }
}
.lpCta_bottom span {
  font-size: 27px;
}
@media screen and (min-width: 960px) {
  .lpCta_bottom span {
    font-size: 0.8108108108em;
  }
}
.lpCta_bottom span.swl-fz {
  font-size: 0.6470588235em !important;
}
@media screen and (max-width: 959px) {
  .lpCta_bottom span.swl-fz {
    font-size: 0.6470588235em !important;
  }
}
@media screen and (min-width: 960px) {
  .lpCta._cta1 .lpCta_bottom {
    margin-top: 50px !important;
  }
}
@media screen and (min-width: 960px) {
  .lpCta._cta2 .lpCta_bottom {
    margin-top: -39px !important;
  }
}

.lpCta_message {
  color: #ff5858;
  font-weight: bold;
  background: #ffe861;
  padding: 5px 10px;
  text-align: center;
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
      -ms-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  margin-bottom: 0 !important;
  width: calc(100% - 70px);
  line-height: 2;
  font-size: 16px;
}
@media screen and (min-width: 960px) {
  .lpCta_message {
    width: 100%;
    max-width: 946px;
  }
}

.lpCta_maincopy {
  font-weight: 900;
  font-size: 38px;
  line-height: 1.28;
}
@media screen and (max-width: 959px) {
  .lpCta_maincopy {
    font-size: 29px;
  }
}
.lpCta_maincopy .u-fz-s {
  font-size: 32px !important;
}
@media screen and (max-width: 959px) {
  .lpCta_maincopy .u-fz-s {
    font-size: 0.7586206897em !important;
  }
}
.lpCta_maincopy .u-fz-xs {
  font-size: 26px !important;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 959px) {
  .lpCta_maincopy .u-fz-xs {
    font-size: 0.8275862069em !important;
  }
}
@media screen and (min-width: 960px) {
  .lpCta._cta1 .lpCta_maincopy {
    font-size: 42px;
  }
}

.lpCta_subcopy {
  font-family: var(--mainfont);
  font-size: 20px;
  margin-bottom: 0;
}
.lpCta._cta1 .lpCta_subcopy {
  background: #fff;
  display: inline-block;
  font-size: 13px;
  color: var(--color-text);
  padding: 5px 20px;
  border-radius: 100rem;
  letter-spacing: 0.2em;
  font-family: var(--notosans);
  text-align: center;
}
@media screen and (min-width: 960px) {
  .lpCta._cta1 .lpCta_subcopy {
    min-width: 393px;
  }
}
@media screen and (max-width: 959px) {
  .lpCta._cta1 .lpCta_subcopy {
    border-radius: 30px;
  }
}

.lpCta_borderTitleBox {
  color: var(--color-text);
  max-width: 470px;
  margin-bottom: 174px !important;
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .lpCta_borderTitleBox {
    margin-top: -140px;
  }
}

.lpFixCta {
  position: fixed;
  bottom: 0;
  right: 0;
  -webkit-filter: drop-shadow(-4px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(-4px 4px 4px rgba(0, 0, 0, 0.25));
  z-index: 100;
}
@media screen and (max-width: 959px) {
  .lpFixCta {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .lpFixCta img {
    position: relative;
    height: 100%;
    width: auto;
    max-width: none;
  }
  .lpFixCta .wp-block-image {
    height: 186px;
  }
}
@media screen and (min-width: 960px) {
  .lpFixCta {
    width: 318px;
  }
}
.lpFixCta * {
  margin-bottom: 0 !important;
}

/*
  Footer
-----------------------------------------------------*/
.lpFooter {
  padding-top: 100px !important;
  padding-bottom: 260px !important;
  background: url(../img/lp/header_bg.svg) repeat-x bottom center/auto 214px;
  text-align: center;
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 13px;
  letter-spacing: 0.26em;
}
@media screen and (min-width: 960px) {
  .lpFooter {
    padding-top: 130px !important;
  }
}

/*
  page
-----------------------------------------------------*/
#lp-content {
  font-family: var(--notosans);
}
#lp-content *:last-child {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  #lp-content {
    --swl-fw_inner_pad: 20px;
  }
}

.lpRecommend_subheading {
  font-weight: bold;
  font-family: var(--mainfont);
  margin-top: 125px;
  margin-bottom: 10px;
  font-size: 17px;
}
@media screen and (min-width: 960px) {
  .lpRecommend_subheading {
    font-size: 20px;
  }
}

.lpRecommend_list {
  text-align: center;
  font-weight: bold;
  font-family: var(--mainfont);
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  margin-bottom: 100px;
  --wp-column-gap: 40px;
}
@media screen and (max-width: 959px) {
  .lpRecommend_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    --wp-column-gap: 10px 20px;
  }
}

.lpProfile {
  position: relative;
  margin-top: 140px;
  line-height: 2;
}
@media screen and (min-width: 960px) {
  .lpProfile {
    padding-top: 59px !important;
    padding-bottom: 59px !important;
  }
}
.lpProfile::before, .lpProfile::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background: url(../img/lp/profile_wave.svg) repeat-x bottom center/auto 23px;
  position: absolute;
  top: -22px;
  left: 0;
}
.lpProfile::after {
  content: "";
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  top: 100%;
}
.lpProfile .has-border.-border03 {
  padding: 10px;
  border: 1px solid #A8A8A8 !important;
  border-radius: 10px;
  font-size: 14px;
}

.lpProfile_heading {
  margin-bottom: 20px;
}
.lpProfile_heading.heading._sec._round .heading_text {
  padding: 4px 30px;
}

.lpProfile_content {
  line-height: 2;
  padding-left: 20px;
  padding-right: 20px;
  --wp-column-gap: 40px;
}
@media screen and (min-width: 960px) {
  .lpProfile_content {
    --wp-column-gap: 100px;
    padding-left: 0;
    padding-right: 0;
  }
}
.lpProfile_content .wp-block-image {
  position: relative;
  max-width: 230px;
}
@media screen and (max-width: 959px) {
  .lpProfile_content .wp-block-image {
    margin: 0 auto;
  }
}
.lpProfile_content .wp-block-image::before {
  content: "";
  display: block;
  width: 254px;
  height: 220px;
  background: url(../img/lp/profile_deco.svg) no-repeat center/contain;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.lpProfile_name {
  font-size: 13px;
  margin-bottom: 24px;
}
.lpProfile_name strong {
  font-weight: bold;
  font-family: var(--mainfont);
  font-size: 20px;
}

@media screen and (min-width: 960px) {
  .sp-db {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp-db._concept {
    display: none !important;
  }
}

.pc-db {
  display: none;
}
@media screen and (min-width: 960px) {
  .pc-db {
    display: block;
  }
}

/*
  Visually Hidden
*/
.u-visuallyHidden:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
}