@charset "utf-8";
/*
Theme Name: cmindstyle
Version: 2.0
*/

/*----------------------------------------
■共通設定
-----------------------------------------*/




@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 767px) {
  html {
    font-size: 4.1025641026vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background-color: transparent;
  outline: 0;
  border: none;
  padding: 0;
}

.l-footer {
  background-color: #FFF;
  height: 3.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer {
    height: 4.375rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer {
    height: 96px;
  }
}

.l-header {
  background-color: #FFF;
  position: fixed;
  z-index: 999;
  height: 3.5rem;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header {
    height: 96px;
  }
}

.l-inner {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-inline: calc(15px + 1.875rem);
  }
}
@media screen and (min-width: 1024px) {
  .l-inner {
    padding-inline: 80px;
  }
}

.l-main {
  padding-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .l-main {
    padding-top: 96px;
  }
}

.c-btn {
  border-radius: 48px;
  color: #FFF;
  font-size: 1.6875rem;
  font-weight: 700;
  letter-spacing: 0.125rem;
}
@media screen and (min-width: 768px) {
  .c-btn {
    font-size: 2.25rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 1024px) {
  .c-btn {
    font-size: 2.5rem;
  }
}

.c-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}

.c-fadein.active {
  opacity: 1;
  transform: none;
}

.c-title {
  color: #FFF;
  font-size: 0.875rem;
  letter-spacing: 0.0625rem;
  margin-inline: auto;
  padding: 1.75rem 0 2.375rem;
  text-align: center;
  width: 17.5rem;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 1.375rem;
    letter-spacing: 0.1875rem;
    padding: 1.5625rem 3.125rem 2.5rem;
    width: 29.375rem;
  }
}

.c-title h2 {
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title h2 {
    font-weight: 700;
  }
}

.webp .c-title--blue {
  background: url(/lp/wp-content/uploads/heading-blue.webp) no-repeat center/contain;
}

.no-webp .c-title--blue {
  background: url(/lp/wp-content/uploads/heading-blue.png) no-repeat center/100%;
}

.webp .c-title--red {
  background: url(/lp/wp-content/uploads/heading-red.webp) no-repeat center/100%;
}

.no-webp .c-title--red {
  background: url(/lp/wp-content/uploads/heading-red.png) no-repeat center/100%;
}

.p-about {
  position: relative;
  z-index: 100;
}

.p-about:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: -1.5625rem;
  width: 100%;
}

.webp .p-about:before {
  background: url(/lp/wp-content/uploads/about-bg-sp.webp) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .webp .p-about:before {
    background: url(/lp/wp-content/uploads/about-bg.webp) repeat top center/90rem auto;
  }
}

.no-webp .p-about:before {
  background: url(/lp/wp-content/uploads/about-bg-sp.png) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .no-webp .p-about:before {
    background: url(/lp/wp-content/uploads/about-bg.png) repeat top center/90rem auto;
  }
}

.p-about__inner {
  padding-top: 1.0625rem;
  padding-bottom: 4.375rem;
  position: relative;
  z-index: 150;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding-top: 4.75rem;
    padding-bottom: 6.375rem;
  }
}

.p-about__image {
  margin-inline: auto;
  margin-top: 1.25rem;
  width: 17.3125rem;
}
@media screen and (min-width: 768px) {
  .p-about__image {
    margin-top: 3.75rem;
    width: 31.875rem;
  }
}

.p-about__image img {
  margin-left: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about__image img {
    width: 23.1875rem;
  }
}

.p-about__title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.075rem;
  margin-top: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__title {
    font-size: 1.75rem;
    letter-spacing: 0.0875rem;
    margin-top: 2.1875rem;
  }
}

.p-about__title span {
  font-size: 2.125rem;
}
@media screen and (min-width: 768px) {
  .p-about__title span {
    font-size: 3rem;
  }
}

.p-about__text {
  font-size: 0.875rem;
  letter-spacing: 0.0375rem;
  line-height: 1.75rem;
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    font-size: 1.4375rem;
    letter-spacing: 0.05125rem;
    line-height: 2.8125rem;
    margin-top: 1.875rem;
  }
}

.p-case {
  position: relative;
  z-index: 300;
}

.p-case:before {
  content: "";
  display: block;
  height: 110%;
  position: absolute;
  top: -3.125rem;
  width: 100%;
}

.webp .p-case:before {
  background: url(/lp/wp-content/uploads/case-bg-sp.webp) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .webp .p-case:before {
    background: url(/lp/wp-content/uploads/case-bg.webp) repeat top center/90rem auto;
  }
}

.no-webp .p-case:before {
  background: url(/lp/wp-content/uploads/case-bg-sp.png) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .no-webp .p-case:before {
    background: url(/lp/wp-content/uploads/case-bg.png) repeat top center/90rem auto;
  }
}

.p-case__inner {
  padding-bottom: 3.75rem;
  position: relative;
  z-index: 350;
}
@media screen and (min-width: 768px) {
  .p-case__inner {
    padding-top: 3.4375rem;
    padding-bottom: 4.375rem;
  }
}

.p-case__list {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-case__list {
    display: flex;
    justify-content: space-between;
    margin-top: 8.625rem;
  }
}

.p-case__item {
  background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(-45deg, transparent 15px, #FFF 0), linear-gradient(45deg, transparent 15px, #FFF 0);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  height: 43.625rem;
  margin-top: 1.5rem;
  margin-inline: auto;
  justify-content: center;
  max-width: 22.375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-case__item {
    background: linear-gradient(135deg, transparent 10px, #FFF 0), linear-gradient(-135deg, transparent 10px, #FFF 0), linear-gradient(-45deg, transparent 10px, #FFF 0), linear-gradient(45deg, transparent 10px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    margin-top: 0;
    margin-inline: 0;
    max-width: 23.75rem;
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1280px) {
  .p-case__item {
    background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(-45deg, transparent 15px, #FFF 0), linear-gradient(45deg, transparent 15px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    height: 48.75rem;
    max-width: 25rem;
  }
}

.p-case__item:not(:first-child) {
  margin-top: 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-case__item:not(:first-child) {
    margin-top: 0;
  }
}

.p-case__item:before {
  background-color: #FFF;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  height: 11.25rem;
  width: 11.25rem;
  left: 50%;
  transform: translateX(-50%);
  top: -4.0625rem;
}
@media screen and (min-width: 1280px) {
  .p-case__item:before {
    height: 12.5625rem;
    width: 12.5625rem;
    top: -4.6875rem;
  }
}

.p-case-item__inner {
  margin-inline: auto;
  position: relative;
  top: -2.1875rem;
  width: 19.6875rem;
}

.p-case__item-head {
  margin-inline: auto;
  width: 5.625rem;
}
@media screen and (min-width: 1280px) {
  .p-case__item-head {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-case__item-no {
  margin-inline: auto;
  margin-top: 1.5rem;
  width: 8.1875rem;
}
@media screen and (min-width: 1280px) {
  .p-case__item-no {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-case__item-smp {
  margin-top: 1.25rem;
  margin-inline: auto;
  width: 17.5625rem;
}
@media screen and (min-width: 1280px) {
  .p-case__item-smp {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-case__bottom {
  bottom: -2.8125rem;
  display: grid;
  -moz-column-gap: 3.625rem;
       column-gap: 3.625rem;
  margin-inline: auto;
  margin-top: 4.375rem;
  position: relative;
  width: 17.9375rem;
}
@media screen and (min-width: 768px) {
  .p-case__bottom {
    width: 19.8125rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-case__bottom {
    bottom: -1.875rem;
    -moz-column-gap: 5.3125rem;
         column-gap: 5.3125rem;
    margin-top: 8.75rem;
    width: 26.875rem;
  }
}

.p-case__bottom-bubble {
  color: #D70C18;
  font-weight: 500;
  grid-column: 1/3;
  grid-row: 1/2;
  padding: 0.9375rem 0 5rem;
  position: absolute;
  text-align: center;
  top: -4.0625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-case__bottom-bubble {
    font-size: max(1rem, 10px);
    padding-top: 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-case__bottom-bubble {
    font-size: 1.125rem;
    padding-top: 1rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-case__bottom-bubble {
    font-size: 1.5rem;
    padding: 1.5625rem 0 5rem;
    top: -4.6875rem;
  }
}

.webp .p-case__bottom-bubble {
  background: url(/lp/wp-content/uploads/case-bottom-bubble-sp.webp) no-repeat top center/17.5625rem auto;
}
@media screen and (min-width: 768px) {
  .webp .p-case__bottom-bubble {
    background: url(/lp/wp-content/uploads/case-bottom-bubble-sp.webp) no-repeat top center/19.4375rem auto;
  }
}
@media screen and (min-width: 1280px) {
  .webp .p-case__bottom-bubble {
    background: url(/lp/wp-content/uploads/case-bottom-bubble.webp) no-repeat top center/100% 8.6875rem;
  }
}

.no-webp .p-case__bottom-bubble {
  background: url(/lp/wp-content/uploads/case-bottom-bubble-sp.png) no-repeat top center/17.5625rem auto;
}
@media screen and (min-width: 768px) {
  .no-webp .p-case__bottom-bubble {
    background: url(/lp/wp-content/uploads/case-bottom-bubble-sp.png) no-repeat top center/19.4375rem auto;
  }
}
@media screen and (min-width: 1280px) {
  .no-webp .p-case__bottom-bubble {
    background: url(/lp/wp-content/uploads/case-bottom-bubble.png) no-repeat top center/100% 8.6875rem;
  }
}

.p-case__bottom-man {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-top: 0.625rem;
  width: 7.25rem;
}
@media screen and (min-width: 1280px) {
  .p-case__bottom-man {
    margin-top: 2.5rem;
    width: 10.875rem;
  }
}

.p-case__bottom-woman {
  grid-column: 2/3;
  grid-row: 2/3;
  width: 6.8125rem;
}
@media screen and (min-width: 1280px) {
  .p-case__bottom-woman {
    margin-top: 1.25rem;
    width: 10.25rem;
  }
}

.p-faq {
  position: relative;
  z-index: 500;
}

.p-faq:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: -3.4375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-faq:before {
    top: -5.625rem;
  }
}

.webp .p-faq:before {
  background: url(/lp/wp-content/uploads/faq-bg-sp.webp) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .webp .p-faq:before {
    background: url(/lp/wp-content/uploads/faq-bg.webp) repeat top center/90rem auto;
  }
}

.no-webp .p-faq:before {
  background: url(/lp/wp-content/uploads/faq-bg-sp.png) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .no-webp .p-faq:before {
    background: url(/lp/wp-content/uploads/faq-bg.png) repeat top center/90rem auto;
  }
}

.p-faq__inner {
  padding-bottom: 7.5rem;
  position: relative;
  z-index: 550;
}
@media screen and (min-width: 768px) {
  .p-faq__inner {
    padding-bottom: 12.1875rem;
    padding-top: 1.125rem;
  }
}

.p-faq__list {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    margin-top: 5.9375rem;
  }
}

.p-faq-item:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item:not(:first-child) {
    margin-top: 1.875rem;
  }
}

.p-faq-item__q, .p-faq-item__a {
  align-items: center;
  display: flex;
  padding: 0.3125rem 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q, .p-faq-item__a {
    padding: 0.3125rem 1.875rem 0;
  }
}

.p-faq-item__q {
  background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(-45deg, transparent 15px, #FFF 0), linear-gradient(45deg, transparent 15px, #FFF 0);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
  height: 5rem;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q {
    background: linear-gradient(135deg, transparent 5px, #FFF 0), linear-gradient(-135deg, transparent 5px, #FFF 0), linear-gradient(-45deg, transparent 5px, #FFF 0), linear-gradient(45deg, transparent 5px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1024px) {
  .p-faq-item__q {
    background: linear-gradient(135deg, transparent 10px, #FFF 0), linear-gradient(-135deg, transparent 10px, #FFF 0), linear-gradient(-45deg, transparent 10px, #FFF 0), linear-gradient(45deg, transparent 10px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1280px) {
  .p-faq-item__q {
    background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(-45deg, transparent 15px, #FFF 0), linear-gradient(45deg, transparent 15px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}

.p-faq-item__q.is-open {
  background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(0, transparent 0, #FFF 0), linear-gradient(0, transparent 0, #FFF 0);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q.is-open {
    background: linear-gradient(135deg, transparent 5px, #FFF 0), linear-gradient(-135deg, transparent 5px, #FFF 0), linear-gradient(-45deg, transparent 0, #FFF 0), linear-gradient(45deg, transparent 0, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1024px) {
  .p-faq-item__q.is-open {
    background: linear-gradient(135deg, transparent 10px, #FFF 0), linear-gradient(-135deg, transparent 10px, #FFF 0), linear-gradient(-45deg, transparent 0, #FFF 0), linear-gradient(45deg, transparent 0, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1280px) {
  .p-faq-item__q.is-open {
    background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(0, transparent 0, #FFF 0), linear-gradient(0, transparent 0, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}

.p-faq-item__a {
  background: linear-gradient(135deg, transparent 15px, #F1F1F1 0), linear-gradient(-135deg, transparent 15px, #F1F1F1 0), linear-gradient(-45deg, transparent 15px, #F1F1F1 0), linear-gradient(45deg, transparent 15px, #F1F1F1 0);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  padding-block: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__a {
    background: linear-gradient(135deg, transparent 5px, #F1F1F1 0), linear-gradient(-135deg, transparent 5px, #F1F1F1 0), linear-gradient(-45deg, transparent 5px, #F1F1F1 0), linear-gradient(45deg, transparent 5px, #F1F1F1 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    height: 6.25rem;
    padding-block: 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-faq-item__a {
    background: linear-gradient(135deg, transparent 10px, #F1F1F1 0), linear-gradient(-135deg, transparent 10px, #F1F1F1 0), linear-gradient(-45deg, transparent 10px, #F1F1F1 0), linear-gradient(45deg, transparent 10px, #F1F1F1 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    height: 6.25rem;
    padding-block: 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-faq-item__a {
    background: linear-gradient(135deg, transparent 15px, #F1F1F1 0), linear-gradient(-135deg, transparent 15px, #F1F1F1 0), linear-gradient(-45deg, transparent 15px, #F1F1F1 0), linear-gradient(45deg, transparent 15px, #F1F1F1 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}

.p-faq-item__q.is-open + .p-faq-item__a {
  background: linear-gradient(0, transparent 0, #F1F1F1 0), linear-gradient(0, transparent 0, #F1F1F1 0), linear-gradient(-45deg, transparent 15px, #F1F1F1 0), linear-gradient(45deg, transparent 15px, #F1F1F1 0);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q.is-open + .p-faq-item__a {
    background: linear-gradient(0, transparent 0, #F1F1F1 0), linear-gradient(0, transparent 0, #F1F1F1 0), linear-gradient(-45deg, transparent 5px, #F1F1F1 0), linear-gradient(45deg, transparent 5px, #F1F1F1 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1024px) {
  .p-faq-item__q.is-open + .p-faq-item__a {
    background: linear-gradient(0, transparent 0, #F1F1F1 0), linear-gradient(0, transparent 0, #F1F1F1 0), linear-gradient(-45deg, transparent 10px, #F1F1F1 0), linear-gradient(45deg, transparent 10px, #F1F1F1 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 1280px) {
  .p-faq-item__q.is-open + .p-faq-item__a {
    background: linear-gradient(0, transparent 0, #F1F1F1 0), linear-gradient(0, transparent 0, #F1F1F1 0), linear-gradient(-45deg, transparent 15px, #F1F1F1 0), linear-gradient(45deg, transparent 15px, #F1F1F1 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}

.p-faq-item__q-content {
  align-items: center;
  display: flex;
}

.p-faq-item__q-mark, .p-faq-item__a-mark {
  flex-shrink: 0;
  padding-block: 1.1875rem;
  padding-right: 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q-mark, .p-faq-item__a-mark {
    padding-block: 0.625rem;
    padding-right: 2.1875rem;
  }
}

.p-faq-item__q-mark img, .p-faq-item__a-mark img {
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q-mark img, .p-faq-item__a-mark img {
    width: 2rem;
  }
}

.p-faq-item__q-mark:after {
  background-color: #D70C18;
  border-radius: 1.5px;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1875rem;
}

.p-faq-item__a-mark {
  margin-top: -1.375rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__a-mark {
    margin-top: 0;
  }
}

.p-faq-item__q-text, .p-faq-item__a-text {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.00625rem;
  line-height: 1.3375rem;
  padding-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q-text, .p-faq-item__a-text {
    font-size: max(1.125rem, 12px);
    padding-left: 1.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-faq-item__q-text, .p-faq-item__a-text {
    font-size: max(1.125rem, 14px);
  }
}
@media screen and (min-width: 1280px) {
  .p-faq-item__q-text, .p-faq-item__a-text {
    font-size: max(1.125rem, 12px);
  }
}

.p-faq-item__q-text {
  color: #D70C18;
}

.p-faq-item__a-text {
  color: #00A6E9;
}

.p-faq-item__btn {
  cursor: pointer;
  display: block;
  position: relative;
  right: 0.6875rem;
  top: -1.25rem;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn {
    margin-right: 0.375rem;
  }
}

.p-faq-item__q.is-open .p-faq-item__btn {
  transform: translateY(-50%) rotate(-90deg);
  top: 1.25rem;
  right: 1.75rem;
}

.p-faq-item__btn:before, .p-faq-item__btn:after {
  border-radius: 20px;
  content: "";
  display: block;
  height: 1.5625rem;
  position: absolute;
  right: -1.25rem;
  width: 0.2rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn:before, .p-faq-item__btn:after {
    height: 2rem;
    right: -1.4375rem;
    width: 0.375rem;
  }
}

.p-faq-item__btn:before {
  background-color: #D70C18;
  rotate: 135deg;
  top: calc(50% - 0.8125rem);
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn:before {
    top: calc(50% - 1.25rem);
  }
}

.p-faq-item__btn:after {
  background-color: #00A6E9;
  rotate: 45deg;
  top: calc(50% + 0.25rem);
}
@media screen and (min-width: 768px) {
  .p-faq-item__btn:after {
    top: calc(50% - 0.125rem);
  }
}

.p-flow {
  position: relative;
  z-index: 400;
}

.p-flow:before {
  content: "";
  display: block;
  height: 110%;
  position: absolute;
  top: -3.125rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow:before {
    top: -4.375rem;
  }
}

.webp .p-flow:before {
  background: url(/lp/wp-content/uploads/flow-bg-sp.webp) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .webp .p-flow:before {
    background: url(/lp/wp-content/uploads/flow-bg.webp) repeat top center/90rem auto;
  }
}

.no-webp .p-flow:before {
  background: url(/lp/wp-content/uploads/flow-bg-sp.webp) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .no-webp .p-flow:before {
    background: url(/lp/wp-content/uploads/flow-bg.png) repeat top center/90rem auto;
  }
}

.p-flow__inner {
  padding-bottom: 6.25rem;
  position: relative;
  z-index: 450;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding-bottom: 11.375rem;
    padding-top: 2.1875rem;
  }
}

.p-flow__list {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    display: flex;
    justify-content: space-between;
    margin-top: 3.875rem;
  }
}

.p-flow__item {
  background: linear-gradient(135deg, transparent 20px, #FFF 0), linear-gradient(-135deg, transparent 20px, #FFF 0), linear-gradient(-45deg, transparent 20px, #FFF 0), linear-gradient(45deg, transparent 20px, #FFF 0);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  height: 21.5625rem;
  margin-top: 3.4375rem;
  margin-inline: auto;
  justify-content: space-between;
  padding: 2rem 2rem 1.625rem;
  position: relative;
  width: 22.375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item {
    background: linear-gradient(135deg, transparent 8px, #FFF 0), linear-gradient(-135deg, transparent 8px, #FFF 0), linear-gradient(-45deg, transparent 8px, #FFF 0), linear-gradient(45deg, transparent 8px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    height: 16.5rem;
    margin-top: 0;
    padding: 1.25rem 0.125rem 1.875rem;
    width: 14rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item {
    margin-inline: 0;
    padding: 1.25rem 1.125rem 1.875rem;
    width: 13.25rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-flow__item {
    background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(-45deg, transparent 15px, #FFF 0), linear-gradient(45deg, transparent 15px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    width: 14rem;
  }
}

.p-flow__item:first-child {
  margin-top: 0;
}

.p-flow__item:last-child:before, .p-flow__item:last-child:after {
  display: none;
}

.p-flow__item:before, .p-flow__item:after {
  border-radius: 20px;
  content: "";
  display: block;
  height: 1.75rem;
  position: absolute;
  transform: translateX(-50%);
  width: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item:before, .p-flow__item:after {
    bottom: auto;
    height: 1.375rem;
    width: 0.3125rem;
  }
}

.p-flow__item:before {
  background-color: #D70C18;
  bottom: -2.8125rem;
  left: calc(50% + 0.4375rem);
  rotate: 45deg;
}
@media screen and (min-width: 768px) {
  .p-flow__item:before {
    bottom: auto;
    left: auto;
    right: -1.25rem;
    rotate: 135deg;
    top: calc(50% - 0.75rem);
  }
}

.p-flow__item:after {
  background-color: #00A6E9;
  bottom: -2.5rem;
  left: calc(50% - 0.625rem);
  rotate: -45deg;
}
@media screen and (min-width: 768px) {
  .p-flow__item:after {
    bottom: auto;
    left: auto;
    right: -1.5rem;
    rotate: 45deg;
    top: calc(50% + 0.125rem);
  }
}

@media screen and (min-width: 768px) {
  .p-flow__item-no {
    padding-left: 0.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item-no {
    padding-left: 0;
  }
}

.p-flow__item-no img {
  width: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-no img {
    width: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-flow__item-no img {
    width: 2.1875rem;
  }
}

.p-flow__item-image {
  display: flex;
  height: 9.6875rem;
  align-items: center;
  margin-inline: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-flow__item-image {
    height: 10rem;
  }
}

.p-flow__item-image--entry {
  margin-bottom: 1.375rem;
  width: 8.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-image--entry {
    margin-bottom: 0;
    width: 6.4375rem;
  }
}

.p-flow__item-image--check {
  width: 8.25rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-image--check {
    width: 7rem;
  }
}

.p-flow__item-image--line {
  width: 8.875rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-image--line {
    width: 6.3125rem;
  }
}

.p-flow__item-image--submit {
  width: 8.375rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-image--submit {
    width: 5.9375rem;
  }
}

.p-flow__item-image--receive {
  width: 10.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__item-image--receive {
    width: 7.375rem;
  }
}

.p-flow__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow__item-text {
    font-size: max(1rem, 11px);
  }
}
@media screen and (min-width: 1280px) {
  .p-flow__item-text {
    font-size: 1rem;
  }
}

.p-footer {
  position: relative;
  z-index: 600;
}

.p-footer__inner {
  padding: 0.625rem 15px 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    max-width: 1440px;
    margin-inline: auto;
    padding-top: 0;
    padding-inline: 80px;
  }
}

.p-footer__logo {
  height: auto;
  margin-inline: auto;
  transition: 0.5s;
  width: 116px;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin-inline: 0;
    margin-top: 1.125rem;
    width: 176px;
  }
}

.p-footer__logo:hover {
  opacity: 0.4;
}

@media screen and (min-width: 768px) {
  .p-footer__nav {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
  }
}

.p-footer__nav-list {
  display: flex;
  font-size: 0.7625rem;
  justify-content: space-between;
  margin-inline: 0.5625rem;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-list {
    font-size: max(1.125rem, 12px);
    gap: 2.625rem;
    margin-inline: 0;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-footer__nav-list {
    font-size: max(1.125rem, 15px);
  }
}
@media screen and (min-width: 1280px) {
  .p-footer__nav-list {
    font-size: 1.125rem;
  }
}

.p-footer__nav-items {
  align-items: center;
  display: flex;
  gap: 1.375rem;
}

.p-footer__nav-link {
  transition: 0.5s;
}

.p-footer__nav-link:hover {
  opacity: 0.4;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding-inline: 14px;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    max-width: 1440px;
    margin-inline: auto;
    padding-inline: calc(15px + 1.875rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-header__inner {
    padding-inline: 80px;
  }
}

.p-header__logo {
  height: auto;
  transition: 0.5s;
  width: 116px;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 176px;
  }
}

.p-header__logo:hover {
  opacity: 0.4;
}

.p-header__nav {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-header__nav {
    display: block;
    font-size: max(1.125rem, 15px);
    font-weight: 500;
  }
}

li.sns-sp-nav {
    width: 38px;
}

ul.sns-sp-nav-area li {
    width: 60px;
    display: inline-block;
    margin: 0 10px;
}

ul.sns-sp-nav-area {
    text-align: center;
    margin-top: 40px;
    font-size: 0;
}

@media screen and (min-width: 1024px) {

}


.p-header__nav-items {
  align-items: center;
  display: flex;
  gap: 1.375rem;
}

.p-header__nav-link {
  transition: 0.5s;
}

.p-header__nav-link:hover {
  opacity: 0.4;
}

.p-header__nav-btn {
  background-color: #D70C18;
  border: 2px solid #000;
  font-size: 1.125rem;
  padding: 0.375rem 1.5625rem;
}

.p-header__nav-btn:hover {
  background-color: #00A6E9;
}

.p-header__hamburger {
  background-color: transparent;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 40px;
  height: 1.125rem;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 1024px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger span {
  display: block;
  height: 3px;
  margin-inline: auto;
  position: relative;
  transition: transform 0.3s;
}

.p-header__hamburger span:nth-of-type(1) {
  background-color: #D70C18;
  transform: translateY(-10px);
  width: 26px;
}

.p-header__hamburger span:nth-of-type(2) {
  background-color: #00A6E9;
  transform: translateY(-4px);
  width: 26px;
}

.p-header__hamburger span:nth-of-type(3) {
  color: #231815;
  font-size: 10px;
  font-weight: 700;
  width: 100%;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  transform: translateY(-6px) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  transform: translateY(-9px) rotate(-45deg);
}

.p-header__drawer {
  background-color: #FFF;
  border-top: 1px solid #EEE;
  padding-top: 0.1875rem;
  padding-right: 0.9375rem;
  position: absolute;
  top: 3.5rem;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  transition: 0.3s;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-header__drawer {
    padding-right: 0;
    top: 70px;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__drawer {
    top: 90px;
  }
}

.p-header__hamburger.is-open + .p-header__drawer {
  right: 0rem;
}

.p-header__drawer-item {
  border-bottom: 1px solid #EEE;
  margin-inline: auto;
  width: 92%;
}
@media screen and (min-width: 768px) {
  .p-header__drawer-item {
    margin-inline: calc(15px + 1.875rem);
    width: auto;
  }
}
@media screen and (min-width: 1024px) {
  .p-header__drawer-item {
    margin-inline: 80px;
  }
}

.p-header__drawer-link {
  color: #231815;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.0625rem;
  padding-block: 0.75rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-header__drawer-link {
    font-size: 1.625rem;
    padding-block: 1.5rem;
  }
}

.p-header__drawer-item:last-child .p-header__drawer-link {
  color: #D70C18;
}

.p-mv {
  height: 37.625rem;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-mv {
    height: 37.1875rem;
  }
}

.webp .p-mv {
  background: url(/lp/wp-content/uploads/mv-bg-sp.webp) no-repeat top/100% 36.875rem;
}
@media screen and (min-width: 768px) {
  .webp .p-mv {
    background: url(/lp/wp-content/uploads/mv-bg.webp) no-repeat center/100% 37.1875rem;
  }
}

.no-webp .p-mv {
  background: url(/lp/wp-content/uploads/mv-bg-sp.png) no-repeat top/100% 36.875rem;
}
@media screen and (min-width: 768px) {
  .no-webp .p-mv {
    background: url(/lp/wp-content/uploads/mv-bg.png) no-repeat center/100% 37.1875rem;
  }
}

.p-mv:before {
  background-color: rgba(0, 166, 233, 0.1);
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.p-mv__inner {
  padding-top: 2.375rem;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    padding-top: 3.625rem;
    padding-inline: 80px;
  }
}

.p-mv__head {
  margin-left: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__head {
    margin-inline: auto;
    width: 45.75rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-mv__head {
    margin-right: 18.125rem;
    width: 45.75rem;
  }
}

.p-mv__head-images {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-mv__head-images {
    justify-content: space-evenly;
  }
}

.p-mv__head-image {
  position: relative;
}

.p-mv__head-image--graph {
  left: -0.5rem;
  top: 1.625rem;
  width: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .p-mv__head-image--graph {
    left: 0.625rem;
    top: 2rem;
    width: 5.5625rem;
  }
}

.p-mv__head-image--chat {
  left: -0.5rem;
  top: 0.625rem;
  width: 5.75rem;
}
@media screen and (min-width: 768px) {
  .p-mv__head-image--chat {
    left: auto;
    top: auto;
    width: 10rem;
  }
}

.p-mv__head-image--pc {
  left: -0.5rem;
  top: 0.625rem;
  width: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__head-image--pc {
    left: auto;
    top: 0.375rem;
    width: 6.0625rem;
  }
}

.p-mv__head-image--pen {
  left: 0.5rem;
  top: 1.6875rem;
  width: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__head-image--pen {
    left: 1.75rem;
    top: 2rem;
    width: 6.25rem;
  }
}

.p-mv__head-title {
  color: #333;
  font-size: 1.3125rem;
  font-weight: 700;
  letter-spacing: 0.0875rem;
  margin-top: 1.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-mv__head-title {
    font-size: 2.75rem;
    letter-spacing: 0.125rem;
    margin-top: 1.875rem;
  }
}

.p-mv__head-title span {
  font-size: 1.9375rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-mv__head-title span {
    font-size: 4.0625rem;
  }
}

.p-mv__body {
  display: grid;
  margin-inline: auto;
  margin-top: 14.375rem;
  max-width: 1410px;
  position: absolute;
  top: 0;
  width: calc(100% - 30px);
}
@media screen and (min-width: 768px) {
  .p-mv__body {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 3.75rem;
    max-width: 1280px;
    width: calc(100% - 160px);
  }
}

.p-mv__man {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-left: 2.1875rem;
  width: 6.8125rem;
}
@media screen and (min-width: 768px) {
  .p-mv__man {
    margin-left: 0.9375rem;
    width: 11.0625rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-mv__man {
    width: 13.5625rem;
  }
}

.p-mv__btn-wrap {
  grid-column: 1/3;
  grid-row: 2/3;
  left: 50%;
  margin-inline: auto;
  position: absolute;
  text-align: center;
  top: -4.5rem;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__btn-wrap {
    margin-top: 13.125rem;
    top: 11.125rem;
    width: auto;
  }
}

.p-mv__btn {
  background-color: #D70C18;
  border: 3px solid #000;
  padding: 0.9375rem 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__btn {
    border: 3px solid #000;
    padding: 1.0625rem 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-mv__btn {
    border: 4px solid #000;
  }
}

.p-mv__btn:hover {
  background-color: #00A6E9;
}

.p-mv__women {
  grid-column: 2/3;
  grid-row: 1/2;
  margin-left: 2.625rem;
  margin-top: 1.0625rem;
  width: 6rem;
}
@media screen and (min-width: 768px) {
  .p-mv__women {
    margin-right: 3.625rem;
    margin-top: 1.875rem;
    width: 9.1875rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-mv__women {
    width: 11.6875rem;
  }
}

.p-recommend {
  position: relative;
  z-index: 200;
}

.p-recommend:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: -2rem;
  width: 100%;
}

.webp .p-recommend:before {
  background: url(/lp/wp-content/uploads/recommend-bg-sp.webp) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .webp .p-recommend:before {
    background: url(/lp/wp-content/uploads/recommend-bg.webp) repeat top center/90rem auto;
  }
}

.no-webp .p-recommend:before {
  background: url(/lp/wp-content/uploads/recommend-bg-sp.png) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .no-webp .p-recommend:before {
    background: url(/lp/wp-content/uploads/recommend-bg.png) repeat top center/90rem auto;
  }
}

.p-recommend__inner {
  padding-top: 1.1875rem;
  padding-bottom: 6.5625rem;
  position: relative;
  z-index: 250;
}
@media screen and (min-width: 768px) {
  .p-recommend__inner {
    padding-top: 4.6875rem;
    padding-bottom: 8.75rem;
  }
}

.p-recommend__list {
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__list {
    display: flex;
    justify-content: space-between;
    margin-top: 3.875rem;
  }
}

.p-recommend__item {
  background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(-45deg, transparent 15px, #FFF 0), linear-gradient(45deg, transparent 15px, #FFF 0);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  height: 22.8125rem;
  margin-top: 1.5rem;
  margin-inline: auto;
  justify-content: center;
  max-width: 22.375rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__item {
    background: linear-gradient(135deg, transparent 10px, #FFF 0), linear-gradient(-135deg, transparent 10px, #FFF 0), linear-gradient(-45deg, transparent 10px, #FFF 0), linear-gradient(45deg, transparent 10px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    height: 25.5rem;
    margin-top: 0;
    margin-inline: 0;
    max-width: 23.75rem;
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 1280px) {
  .p-recommend__item {
    background: linear-gradient(135deg, transparent 15px, #FFF 0), linear-gradient(-135deg, transparent 15px, #FFF 0), linear-gradient(-45deg, transparent 15px, #FFF 0), linear-gradient(45deg, transparent 15px, #FFF 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    max-width: 25rem;
  }
}

.p-recommend__item:first-child {
  margin-top: 0;
}

.p-recommend__item-image {
  height: 15.625rem;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

.p-recommend__item-image--think {
  left: calc(50% + 1.875rem);
  width: 14.0625rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__item-image--think {
    left: calc(50% + 1.875rem);
    width: 14.5625rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-recommend__item-image--think {
    width: 15.8125rem;
  }
}

.p-recommend__item-image--check {
  top: 0.625rem;
  width: 15.25rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__item-image--check {
    top: 0;
    width: 16.625rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-recommend__item-image--check {
    width: 17.875rem;
  }
}

.p-recommend__item-image--selfishness {
  top: -0.5rem;
  width: 18.8125rem;
}
@media screen and (min-width: 768px) {
  .p-recommend__item-image--selfishness {
    top: -1.125rem;
    width: 20.4375rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-recommend__item-image--selfishness {
    width: 21.6875rem;
  }
}


.p-register-item__hosoku {
    padding-top: 20px;
    display: block;
}

.p-recommend__item-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-recommend__item-text {
    font-size: max(1.125rem, 11px);
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-recommend__item-text {
    font-size: max(1rem, 12px);
  }
}

.p-register {
  position: relative;
}

.p-register:before {
  content: "";
  display: block;
  height: 110%;
  position: absolute;
  top: -4.375rem;
  width: 100%;
  z-index: 600;
}
@media screen and (min-width: 768px) {
  .p-register:before {
    top: -6.75rem;
  }
}

.webp .p-register:before {
  background: url(/lp/wp-content/uploads/register-bg-sp.webp) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .webp .p-register:before {
    background: url(/lp/wp-content/uploads/register-bg.webp) repeat top center/90rem auto;
  }
}

.no-webp .p-register:before {
  background: url(/lp/wp-content/uploads/register-bg-sp.png) repeat top center/24.375rem auto;
}
@media screen and (min-width: 768px) {
  .no-webp .p-register:before {
    background: url(/lp/wp-content/uploads/register-bg.png) repeat top center/90rem auto;
  }
}

.p-register__inner {
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .p-register__inner {
    padding-bottom: 5.3125rem;
  }
}

.p-register__form-wrap {
  background: linear-gradient(135deg, transparent 10px, #F5F5F5 0), linear-gradient(-135deg, transparent 10px, #F5F5F5 0), linear-gradient(-45deg, transparent 10px, #F5F5F5 0), linear-gradient(45deg, transparent 10px, #F5F5F5 0);
  background-position: top left, top right, bottom right, bottom left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 650;
}
@media screen and (min-width: 768px) {
  .p-register__form-wrap {
    background: linear-gradient(135deg, transparent 28px, #F5F5F5 0), linear-gradient(-135deg, transparent 28px, #F5F5F5 0), linear-gradient(-45deg, transparent 28px, #F5F5F5 0), linear-gradient(45deg, transparent 28px, #F5F5F5 0);
    background-position: top left, top right, bottom right, bottom left;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
}

.p-register__form {
  padding-top: 1.875rem;
  padding-bottom: 3.875rem;
}
@media screen and (min-width: 768px) {
  .p-register__form {
    padding-top: 5.625rem;
    padding-bottom: 6.5625rem;
  }
}


.wpcf7 form .wpcf7-response-output {
    margin: 2em auto 1em !important;
    padding: 0.2em 1em;
    border: 2px solid #00a0d2;
    max-width: 600px !important;
    text-align: center !important;
}

.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: #46b450;
    color: #FFF;
}

.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    opacity: 0.2;
}


.p-register__list {
  margin-top: 0.75rem;
  margin-inline: auto;
  width: 20.375rem;
}
@media screen and (min-width: 768px) {
  .p-register__list {
    margin-top: 5rem;
    width: 53rem;
  }
}
.p-register__item {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-register__item {
    margin-top: 4.0625rem;
  }
}

.p-register__item:first-child {
  margin-top: 0;
}

.p-register-item__label-name {
  font-size: 0.875rem;
  letter-spacing: 0.075rem;
}
@media screen and (min-width: 768px) {
  .p-register-item__label-name {
    font-size: max(1rem, 12px);
  }
}
@media screen and (min-width: 1024px) {
  .p-register-item__label-name {
    font-size: max(1rem, 13px);
  }
}

.p-register-item__required {
  border-radius: 6px;
  color: #D70C18;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-register-item__required {
    font-size: max(1rem, 12px);
  }
}

.p-register-item__value {
  margin-top: 0.5rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-register-item__value {
    margin-top: 0.75rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-register-item__value {
    margin-left: 0.25rem;
  }
}

.p-register-item__value--half {
  display: flex;
  justify-content: space-between;
}

.p-register-item__value input, .p-register-item__value select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: url(/lp/wp-content/uploads/register-text-box-sp.png) no-repeat center/20.375rem 100%;
  border: none;
  padding: 1.125rem 0.75rem;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-register-item__value input, .p-register-item__value select {
    background: url(/lp/wp-content/uploads/register-text-box.png) no-repeat center/52.5rem 100%;
    font-size: max(1rem, 14px);
    padding: 1.25rem 1.125rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-register-item__value input, .p-register-item__value select {
    padding: 1.375rem 1.125rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-register-item__value input, .p-register-item__value select {
    font-size: 1rem;
  }
}

.p-register-item__value input::-moz-placeholder {
  color: #E2E4E8;
}

.p-register-item__value input::placeholder {
  color: #E2E4E8;
}

.p-register-item__value--half input {
  background: url(/lp/wp-content/uploads/register-text-box-half-sp.png) no-repeat center/10rem 100%;
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .p-register-item__value--half input {
    background: url(/lp/wp-content/uploads/register-text-box-half.png) no-repeat center/25rem 100%;
    width: 25rem;
  }
}

.p-register-item__value--select:after {
  content: "";
  border-right: 2px solid #E2E4E8;
  border-bottom: 2px solid #E2E4E8;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  top: calc(50% - 0.3125rem);
  right: 2rem;
  transition: 0.3s;
  transform: translateY(-50%) rotate(45deg);
}

.p-register__privacy-policy {
  align-items: center;
  display: flex;
  font-size: 0.875rem;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-register__privacy-policy {
    font-size: 1rem;
    margin-top: 4.25rem;
  }
}

.p-register__checkbox {
  display: none;
}

.p-register__checkbox + label {
  background-color: #FFF;
  border: 1px solid #E2E4E8;
  cursor: pointer;
  height: 1.375rem;
  width: 1.375rem;
  display: block;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-register__checkbox + label {
    height: 1.875rem;
    width: 1.875rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-register__checkbox + label {
    height: 1.375rem;
    width: 1.375rem;
  }
}

.p-register__checkbox + label:before {
  content: "";
  display: block;
  height: 100%;
}

.p-register__checkbox:checked + label {
  background-color: #FFF;
}

.p-register__checkbox:checked + label:before {
  background: url(/lp/wp-content/uploads/register-privacy-policy-check.png) no-repeat center/17px 12px;
}

.p-register__privacy-policy-text {
  letter-spacing: 0.05rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-register__privacy-policy-text {
    font-size: max(1rem, 13px);
  }
}
@media screen and (min-width: 1024px) {
  .p-register__privacy-policy-text {
    font-size: max(1rem, 14px);
  }
}
@media screen and (min-width: 1280px) {
  .p-register__privacy-policy-text {
    font-size: 1rem;
  }
}

.p-register__privacy-policy-text span {
  color: #D70C18;
}

.p-register-privacy-policy__link {
  color: #D70C18;
  font-weight: 700;
  position: relative;
  transition: 0.3s;
}

.p-register-privacy-policy__link:after {
  background-color: #E81019;
  bottom: -0.125rem;
  content: "";
  height: 0.0625rem;
  left: 0;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-register-privacy-policy__link:after {
    bottom: 0;
  }
}

.p-register__btn-wrap {
  margin-top: 3.125rem;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .p-register__btn-wrap {
    margin-top: 3.25rem;
  }
}




.p-register__btn input {
    background-color: #D70C18;
    border: 3px solid #000;
    font-size: 1.375rem;
    padding: 0.75rem 6.375rem;
    border-radius: 48px;
    color: #FFF;
    font-size: 1.6875rem;
    font-weight: 700;
    letter-spacing: 0.125rem;
}


@media screen and (min-width: 768px) {
  .p-register__btn input{
    font-size: max(1.5625rem, 19px);
  }
}
@media screen and (min-width: 1280px) {
  .p-register__btn input{
    font-size: 1.5625rem;
  }
}

.p-register__btn input:hover {
  background-color: #00A6E9;
}
.wpcf7 .p-register__btn .wpcf7-submit:disabled:hover{
  background-color: #D70C18;
}


.u-color-red {
  color: #D70C18;
}

.u-color-blue {
  color: #00A6E9;
}

span.wpcf7-spinner {
    display: block;
    margin: 20px auto 0;
}


@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */





/*----------------------------------------
■thanks
-----------------------------------------*/


.p-thanks__inner {
    padding-top: 9rem;
    padding-bottom: 10rem;
    position: relative;
    z-index: 150;
}
@media screen and (min-width: 768px) {
    .p-thanks__inner {
        padding-top: 18rem;
        padding-bottom: 20rem;
    }
}

.p-thanks__text {
text-align:center;
    font-size: 0.875rem;
    letter-spacing: 0.0375rem;
    line-height: 1.75rem;
    margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
    .p-thanks__text {
        font-size: 1.4375rem;
        letter-spacing: 0.05125rem;
        line-height: 2.8125rem;
        margin-top: 1.875rem;
    }
}





/*----------------------------------------
■利用規約
-----------------------------------------*/



.p-terms__inner {
    padding-top: 1.0625rem;
    padding-bottom: 4.375rem;
    position: relative;
    z-index: 150;
}
@media screen and (min-width: 768px) {
    .p-terms__inner {
        padding-top: 4.75rem;
        padding-bottom: 6.375rem;
    }
}


.p-terms__text {
    font-size: 0.875rem;
    letter-spacing: 0.0375rem;
    line-height: 1.75rem;
    margin-top: 1.625rem;
    margin-bottom: 3rem;
}
@media screen and (min-width: 768px) {
    .p-terms__text {
        font-size: 1.4375rem;
        letter-spacing: 0.05125rem;
        line-height: 2.8125rem;
        margin-top: 1.875rem;
    }
}


.terms-box h3 {
    color: #00A6E9;
    font-size: 1.2rem;
    letter-spacing: 0.0375rem;
    line-height: 1.75rem;
    margin-top: 1.625rem;
    margin-bottom: 1.2rem;
}

@media screen and (min-width: 768px) {
.terms-box h3 {
        font-size: 2rem;
        letter-spacing: 0.05125rem;
        line-height: 2.8125rem;
        margin-top: 1.875rem;
    }

}

.terms-box h4 {
    font-size: 1.1rem;
    letter-spacing: 0.0375rem;
    line-height: 1.75rem;
    margin-top: 1.625rem;
    margin-bottom: 0.8rem;
}

@media screen and (min-width: 768px) {
.terms-box h4 {
        font-size: 1.6rem;
        letter-spacing: 0.05125rem;
        line-height: 2.8125rem;
        margin-top: 1.875rem;
    }

}

.terms-box__inner {
    margin-bottom: 0.6rem;
    padding-bottom: 0.6rem;
    border-bottom: dotted 2px #DDD;
}
.terms-box__inner:last-child {
    margin-bottom: 0rem;
    padding-bottom: 0rem;
    border-bottom: none;
}


@media screen and (min-width: 768px) {
.terms-box__inner {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
}
}



.terms-box {
    margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
.terms-box {
    margin-bottom: 6rem;
}
}


ul.terms-box-li li{
    font-size: 0.875rem;
    margin-bottom: 0.8rem;
    line-height: 1.6rem;
}

@media screen and (min-width: 768px) {
ul.terms-box-li li{
     font-size: 1.4375rem;
        letter-spacing: 0.05125rem;
        line-height: 2.8125rem;
        margin-top: 1.875rem;
}
}

.terms-box p{
    font-size: 0.875rem;
    margin-bottom: 0.6rem;
    line-height: 1.6rem;
}



@media screen and (min-width: 768px) {
.terms-box p{
     font-size: 1.4375rem;
        letter-spacing: 0.05125rem;
        line-height: 2.8125rem;
        margin-top: 1.875rem;
}
}



/* LP02
---------------------------------------------------
---------------------------------------------------
---------------------------------------------------
---------------------------------------------------
--------------------------------------------------- */
html {
  scroll-behavior: smooth;
}


.fv_hdwrap {
  background: url(/lp/wp-content/uploads/lp02/lp02_hdmainbg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  padding-top: 50px;
  width: 100vw;
}
.fv_hdwrap_toptxt {
  margin: 0 auto;
  max-width: 100%;
  width: 600px;
  padding-bottom: 10px;
}
.fv_hdwrap_mainv {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv_hdwrap_mainv_left {
  padding-right: 20px;
}
.fv_hdwrap_mainv_left_txt {
  padding-bottom: 20px;
  width: 400px;
  margin: 0 auto;
}
.fv_hdwrap_mainv_left_btn {
  width: 360px;
  margin: 0 auto;
}
.fv_hdwrap_mainv_rigth {
  width: 620px;
}

@media screen and (max-width: 768px) {
  .fv_hdwrap {
    background: url(/lp/wp-content/uploads/lp02/lp02_hdmainbgsp.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding-top: 30px;
  }
  .fv_hdwrap_toptxt {
    width: 95%;
    padding-bottom: 20px;
  }
  .fv_hdwrap_mainv {
    display: block;
    position: relative;
  }
  .fv_hdwrap_mainv_left {
    padding-right: 0px;
  }
  .fv_hdwrap_mainv_left_txt {
    padding-bottom: 0px;
    width: 70%;
    margin: 0 auto;
  }
  .fv_hdwrap_mainv_left_btn {
    width: 80%;
    position: absolute;
    top: 70%;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}
.u-color-red {
  color: #d70c18;
}

.u-color-blue {
  color: #00a6e9;
}

.sectionttwrap {
  text-align: center;
}
.sectionttwrap h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  font-size: 38px;
  font-weight: bold;
}
.sectionttwrap h2:before {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d70c18;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .sectionttwrap h2 {
    font-size: 1.6em;
    font-weight: bold;
  }
  .sectionttwrap h2:before {
    width: 50%;
    height: 5px;
  }
}
.sec_akaes {
  background: url(/lp/wp-content/uploads/lp02/lp02_bdbgwht.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
  text-align: center;
}
.sec_akaes_pic {
  width: 600px;
  margin: 0 auto;
  max-width: 100%;
}
.sec_akaes_tt {
  font-size: 30px;
  font-weight: bold;
  padding: 20px 0 15px;
}
.sec_akaes_tt span {
  font-size: 1.2em;
}
.sec_akaes_txt {
  font-size: 22px;
  width: 80vw;
  margin: 0 auto;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .sec_akaes {
    background: url(/lp/wp-content/uploads/lp02/lp02_bdbgwht.jpg);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: scroll;
    padding: 25px 0;
    text-align: center;
  }
  .sec_akaes_pic {
    width: 100%;
  }
  .sec_akaes_tt {
    font-size: 1.2em;
    padding: 20px 0;
  }
  .sec_akaes_tt span {
    font-size: 1.3em;
  }
  .sec_akaes_txt {
    font-size: 1em;
    width: 90vw;
  }
}
.sec_recommend {
  background: #d6f1fc;
  padding: 60px 0;
}
.sec_recommend .sec_recomend_list {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 760px;
  margin: 0 auto;
}
.sec_recommend .sec_recomend_list li {
  width: 30%;
}
.sec_recommend .sec_recomend_list_img {
  padding-bottom: 10px;
}
.sec_recommend .sec_recomend_list_txt {
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .sec_recommend {
    padding: 30px 0;
  }
  .sec_recommend .sec_recomend_list {
    padding-top: 20px;
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .sec_recommend .sec_recomend_list li {
    width: 100%;
  }
  .sec_recommend .sec_recomend_list li:not(:last-child) {
    padding-bottom: 20px;
  }
  .sec_recommend .sec_recomend_list_img {
    padding-bottom: 10px;
    margin: 0 auto;
    width: 60%;
  }
  .sec_recommend .sec_recomend_list_txt {
    font-weight: 800;
    font-size: 1em;
  }
}
.sec_case {
  background: url(/lp/wp-content/uploads/lp02/lp02_bdbgpnk.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0 0;
}
.sec_case_imges {
  display: flex;
  justify-content: space-between;
  width: 750px;
  margin: 0 auto;
}
.sec_case_imges li {
  width: 31%;
}
.sec_case_btmimg {
  margin: 0 auto;
  max-width: 100%;
  width: 600px;
}

@media screen and (max-width: 768px) {
  .sec_case {
    background: url(/lp/wp-content/uploads/lp02/lp02_bdbgpnk.jpg);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: scroll;
    padding: 25px 0 0;
  }
  .sec_case_imges {
    display: block;
    width: 60%;
    margin: 0 auto;
  }
  .sec_case_imges li {
    width: 100%;
  }
  .sec_case_imges li:not(:last-child) {
    padding-bottom: 20px;
  }
  .sec_case_btmimg {
    width: 90%;
  }
}
.sec_fllow {
  background: #bee9fb;
  padding: 60px 0;
}
.sec_fllow_mainimg {
  padding-top: 20px;
  margin: 0 auto;
  max-width: 100%;
  width: 1100px;
}

@media screen and (max-width: 768px) {
  .sec_fllow {
    padding: 30px 0;
  }
  .sec_fllow_mainimg {
    padding-top: 10px;
    width: 70%;
    margin: 0 auto;
  }
}
.sec_faq {
  background: url(/lp/wp-content/uploads/lp02/lp02_bdbgpnk.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
}
.sec_faq .FAQarea {
  margin: 0 auto;
  width: 900px;
  max-width: 100%;
}
.sec_faq .FAQarea .toggle {
  display: none;
}
.sec_faq .FAQarea .faq {
  position: relative;
  margin-bottom: 1rem;
}
.sec_faq .FAQarea .question,
.sec_faq .FAQarea .anser {
  transform: translateZ(0);
  transition: all 0.3s;
}
.sec_faq .FAQarea .question {
  background: #fff;
  padding: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.sec_faq .FAQarea .question .iconq {
  width: 5%;
}
.sec_faq .FAQarea .question .qtxt {
  font-size: 21px;
  font-weight: bold;
  width: 85%;
}
.sec_faq .FAQarea .question .arrow {
  width: 5%;
  transform: rotate(180deg);
}
.sec_faq .FAQarea .anser {
  max-height: 0;
  overflow: hidden;
}
.sec_faq .FAQarea .anser_inner {
  margin: 0;
  padding: 2rem 1rem 2rem;
  line-height: 1.8;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.sec_faq .FAQarea .anser_inner .icona {
  width: 5%;
}
.sec_faq .FAQarea .anser_inner .atxt {
  font-size: 21px;
  font-weight: bold;
  width: 93%;
}
.sec_faq .FAQarea .toggle:checked + .question + .anser {
  max-height: 500px;
  transition: all 1.5s;
}

.toggle:checked + .question .arrow {
  transform: rotate(0deg);
  transition: all 0.5s;
}

@media screen and (max-width: 768px) {
  .sec_faq {
    background: url(/lp/wp-content/uploads/lp02/lp02_bdbgpnk.jpg);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: scroll;
    padding: 25px 0;
  }
  .sec_faq .FAQarea {
    width: 94%;
  }
  .sec_faq .FAQarea .faq {
    margin-bottom: 0.5rem;
  }
  .sec_faq .FAQarea .question {
    background: #fff;
    padding: 0.5rem;
  }
  .sec_faq .FAQarea .question .iconq {
    width: 7%;
  }
  .sec_faq .FAQarea .question .qtxt {
    font-size: 1em;
    width: 83%;
  }
  .sec_faq .FAQarea .question .arrow {
    width: 5%;
  }
  .sec_faq .FAQarea .anser_inner {
    padding: 0.5rem;
  }
  .sec_faq .FAQarea .anser_inner .icona {
    width: 7%;
  }
  .sec_faq .FAQarea .anser_inner .atxt {
    font-size: 0.9em;
    width: 93%;
  }
}

.sec_form {
  background: url(/lp/wp-content/uploads/lp02/lp02_bdbgwht.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 0;
}
.sec_form .p-register__form-wrap {
  margin: 0 auto;
  max-width: 100%;
  width: 1000px;
}

@media screen and (max-width: 768px) {
  .sec_form {
    background: url(/lp/wp-content/uploads/lp02/lp02_bdbgwht.jpg);
    background-position: center center;
    background-repeat: repeat;
    background-size: cover;
    background-attachment: scroll;
    padding: 25px 0;
  }
  .sec_form .p-register__form-wrap {
    width: 95%;
  }
}

.lp02pc {
  display: block !important;
}

.lp02sp {
  display: none !important;
}


@media only screen and (max-width: 750px) {
  .lp02pc {
    display: none !important;
  }
  .lp02sp {
    display: block !important;
  }
  }