@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    width: 400px;
    padding: 0 min(10px, 2.6666666667vw);
  }
}

/* タイトル
------------------------------*/
.c-section-title {
  font-size: min(5.5rem, 4.5833333333vw);
  font-weight: 800;
  line-height: 1.4545454545;
  text-align: center;
}
@media (max-width: 767px) {
  .c-section-title {
    font-size: min(2.5rem, 6.6666666667vw);
  }
}

/* テキスト色
------------------------------*/
.u-text-pink {
  color: #e3007f;
}

/* 見出し
------------------------------*/
.c-bubble-lead {
  text-align: center;
}

.c-bubble-lead__balloon {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 4rem;
  font-size: min(40px, 3.3333333333vw);
  font-weight: 600;
  line-height: 1.4333333333;
  position: relative;
  padding: 0 1.5em;
}
.c-bubble-lead__balloon::after {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 70%);
  background: url(../img/img_bubble.png) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 1234/194;
}
.c-bubble-lead__balloon span {
  font-weight: 800;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .c-bubble-lead__balloon {
    padding: 0 0.5em;
    font-size: 2.1rem;
    font-feature-settings: "palt";
  }
}

.c-bubble-lead__text {
  display: inline-block;
  font-size: 4rem;
  font-weight: 800;
  line-height: 2;
  margin-top: 1.8em;
}
@media (max-width: 767px) {
  .c-bubble-lead__text {
    font-size: 2.4rem;
  }
}

/* 電話番号
------------------------------*/
.c-tel-number {
  display: flex;
  justify-content: center;
  color: #e3007f;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-tel-number::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_tel.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 229/185;
  margin-right: 0.5em;
}

/* LINEボタン
------------------------------*/
.c-line-button {
  display: inline-block;
  background: #00c04b;
  border-radius: 0.8em;
  padding: 15px 1.4em;
  color: #fff;
  position: relative;
  border: 1px solid #00c04b;
  transition: all 0.3s;
}
.c-line-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 1/1;
}
@media (hover: hover) {
  .c-line-button:hover {
    background: #fff;
    color: #00c04b;
  }
}

/*------------------------------
header
------------------------------*/
header {
  padding: 10px 0;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .header__content {
    padding-right: 5%;
  }
}
@media (max-width: 767px) {
  .header__content {
    padding: 0 5%;
    padding-right: 9%;
  }
}

.header__logo {
  width: 228px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 90px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__tel p {
  font-size: min(1.84rem, 1.8229166667vw);
  font-weight: 600;
  line-height: 1.7222222222;
  color: #e3007f;
}
.header__tel a {
  font-size: min(4rem, 3.3333333333vw);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .header__tel a {
    background: #e3007f;
  }
  .header__tel a::after {
    background: url(../img/icon_arrow_pink.png) no-repeat center center/contain;
  }
}

.header__line {
  margin-left: 8.3%;
}
.header__line p {
  font-size: min(1.6rem, 1.5625vw);
  font-weight: 600;
  line-height: 1.75;
  color: #00c04b;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.header__line a {
  width: 100%;
  font-size: min(2.5rem, 2.0833333333vw);
  font-weight: 400;
  border-radius: 20px;
  white-space: nowrap;
  padding: 0.3em 3em;
  padding-left: 1em;
}
@media (max-width: 767px) {
  .header__line a {
    background: #00c04b;
  }
  .header__line a::after {
    background: url(../img/icon_arrow.png) no-repeat center center/contain;
  }
}

.header__button a {
  display: inline-block;
  width: auto;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7857142857;
  border-radius: 9px;
  color: #fff;
  padding: 0 2.2em;
  padding-left: 1em;
  position: relative;
}
.header__button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 11px;
  aspect-ratio: 1/1;
}

/*------------------------------
fv
------------------------------*/
.fv__inner {
  position: relative;
}

.fv__content {
  background: #fadc46;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .fv__content {
    padding: 5px 0;
    position: relative;
  }
}

.fv__button {
  position: absolute;
  background: url(../img/fv_button.png) no-repeat center center/100%;
  aspect-ratio: 1/1;
  width: 20%;
  right: 14%;
  top: 75%;
  transform: translate(50%, -50%);
}

.fv__images {
  width: 100%;
  overflow: hidden;
  background: #fadc46;
}
@media (max-width: 767px) {
  .fv__images {
    padding-top: 10px;
  }
}

/*------------------------------
features
------------------------------*/
.features {
  background: #fadc46;
  padding: 36px 0 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .features {
    padding: 30px 0;
  }
}

@media (min-width: 768px) {
  .features__header h2 span {
    position: relative;
  }
  .features__header h2 span::before {
    content: "";
    position: absolute;
    top: 50%;
    background: url(../img/dec3.png) no-repeat center center/100%;
    aspect-ratio: 2078/273;
    width: 160%;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
  }
}

.features__heading {
  display: flex;
  justify-content: center;
  margin-top: 7.5%;
  text-align: center;
  font-size: min(3.6rem, 3vw);
  font-weight: 800;
  line-height: 2.3333333333;
}
@media (max-width: 767px) {
  .features__heading {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .features__heading1 {
    position: relative;
    line-height: 2;
    width: 190px;
    margin: 11% auto 0;
  }
  .features__heading1::before {
    content: "";
    position: absolute;
    background: url(../img/dec1.png) no-repeat center center/100%;
    aspect-ratio: 318/224;
    width: 41%;
    left: 0%;
    top: 75%;
    transform: translate(-110%, -50%);
  }
  .features__heading1::after {
    content: "";
    position: absolute;
    background: url(../img/dec2.png) no-repeat center center/100%;
    aspect-ratio: 234/292;
    width: 33%;
    right: 0;
    top: 20%;
    transform: translate(130%, -50%);
  }
}

.features__heading-img {
  width: 85%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .features__heading-img {
    width: 100%;
  }
}

.features__heading-word {
  display: inline-block;
  font-size: min(4rem, 3.007518797vw);
  background: #fff;
  border: 1px solid #000;
  border-radius: 0.5em;
  padding: 0 1.5em;
}
.features__heading-word:nth-child(n+2) {
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .features__heading-word {
    font-size: 2.4rem;
    padding: 0 0.5em;
    width: 100%;
  }
  .features__heading-word:nth-child(n+2) {
    margin-left: 0;
    margin-top: 10px;
  }
}

.features__heading-more {
  align-self: flex-end;
  transform: translateX(10%);
}
@media (max-width: 767px) {
  .features__heading-more {
    position: absolute;
    bottom: 0%;
    right: 0%;
    transform: translate(120%, -10%);
    font-size: min(2rem, 5.3333333333vw);
  }
}

.features__list {
  display: flex;
  flex-wrap: wrap;
  width: 88%;
  margin: 0% auto 0;
}
.features__list li {
  width: 31.3%;
  font-size: min(4rem, 3.3333333333vw);
  font-weight: 800;
  line-height: 1.25;
  color: #e3007f;
  text-align: center;
  border: 1px solid #e3007f;
  border-radius: 20px;
  background: #fff;
  padding: 0.7em 0;
}
@media (min-width: 768px) {
  .features__list li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
  .features__list li:nth-child(n+4) {
    margin-top: 3%;
  }
}
@media (max-width: 767px) {
  .features__list {
    width: 100%;
  }
  .features__list li {
    width: 48%;
    border-radius: 4px;
    font-size: 2rem;
    padding: 0.3em 0;
  }
  .features__list li:nth-child(2n) {
    margin-left: 4%;
  }
  .features__list li:nth-child(n+3) {
    margin-top: 15px;
  }
}

.features__message {
  font-size: min(5rem, 4.1666666667vw);
  line-height: 1.6;
  font-weight: 800;
  text-align: center;
  margin-top: 4.5%;
}
@media (max-width: 767px) {
  .features__message {
    font-size: 2.5rem;
  }
}

/*------------------------------
reason
------------------------------*/
.reason {
  padding: min(130px, 10.8333333333vw) 0;
}

.reason__lead {
  width: 450px;
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .reason__lead {
    max-width: 80%;
  }
}

.reason__message {
  font-size: min(3rem, 2.5vw);
  font-weight: 400;
  line-height: 1.6666666667;
  text-align: center;
  margin-top: 0.5em;
}
.reason__message span {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .reason__message {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.reason__list {
  max-width: 860px;
  margin: 0 auto;
  margin-top: min(40px, 3.3333333333vw);
}
@media (max-width: 767px) {
  .reason__list {
    padding: 0 5%;
  }
}

.reason__item {
  border: 1px solid #000;
  border-radius: 20px;
  padding: 3.4%;
  display: flex;
  align-items: center;
  font-size: min(2.6rem, 2.1666666667vw);
  font-weight: 600;
  line-height: 1.5;
}
.reason__item:nth-child(n+2) {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .reason__item {
    display: block;
    font-size: 2rem;
    text-align: center;
    padding: 6% 0;
    border-radius: 7px;
  }
  .reason__item:nth-child(n+2) {
    margin-top: 25px;
  }
}

.reason__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.625em;
  height: 1.625em;
  border-radius: 50%;
  border: 1px solid #000;
  font-size: min(4rem, 3.3333333333vw);
  font-weight: 800;
  line-height: 1.75;
  margin-right: min(45px, 3.75vw);
}
@media (max-width: 767px) {
  .reason__number {
    font-size: 2rem;
    margin: 0 auto;
  }
}

/*------------------------------
concept
------------------------------*/
.concept {
  background: #f9dd4a;
  padding: min(90px, 7.5vw) 0;
}
@media (max-width: 767px) {
  .concept {
    padding: 50px 0;
  }
}

.concept__heading {
  font-size: min(5rem, 4.1666666667vw);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 767px) {
  .concept__heading {
    font-size: 2.5rem;
  }
}

.concept__copy {
  width: 54%;
  margin: 0 auto;
  font-size: min(5rem, 4.1666666667vw);
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  margin-top: 4%;
}
@media (max-width: 767px) {
  .concept__copy {
    width: 80%;
    font-size: 2.5rem;
  }
}

.concept__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8% auto 0;
  width: 800px;
  max-width: 80%;
}
@media (max-width: 767px) {
  .concept__content {
    min-width: 90%;
  }
}

.concept__image {
  width: 44%;
}
@media (max-width: 767px) {
  .concept__image {
    width: 40%;
  }
}

.concpet__body-word {
  display: flex;
  flex-direction: column;
}
.concpet__body-word span {
  font-size: min(4.8rem, 4vw);
  font-weight: 800;
  background: #e3007f;
  border: 5px solid #fff;
  border-radius: 29px;
  color: #fff;
  padding: 0.7em 0.2em;
  text-align: center;
}
.concpet__body-word span:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .concpet__body-word span {
    font-size: 2rem;
    border-radius: 11px;
  }
  .concpet__body-word span:nth-child(n+2) {
    margin-top: 5px;
  }
}

.concept__message {
  font-size: min(4.5rem, 3.75vw);
  font-weight: 800;
  line-height: 1.4222222222;
  text-align: center;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .concept__message {
    font-size: 2rem;
  }
}

/*------------------------------
usp
------------------------------*/
.usp01__header {
  padding: 50px 0;
}

.usp01__introduction {
  font-size: min(4rem, 3.3333333333vw);
  font-weight: 500;
  line-height: 2.35;
  text-align: center;
}
.usp01__introduction img {
  width: 85%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .usp01__introduction {
    font-size: 1.6rem;
  }
}

.usp01__text--sm {
  font-size: min(2.4rem, 2vw);
}
@media (max-width: 767px) {
  .usp01__text--sm {
    font-size: min(1.6rem, 4.2666666667vw);
    margin-top: 1em;
    display: block;
  }
}

.usp01__content {
  background: #f9dd4a;
  padding: 70px 0 10px;
}
@media (max-width: 767px) {
  .usp01__content {
    padding: 50px 0 10px;
  }
}

.usp01__lead span {
  font-size: min(2.6rem, 2.1666666667vw);
}
.usp01__lead p {
  font-size: min(5rem, 4.1666666667vw);
}
@media (max-width: 767px) {
  .usp01__lead span {
    font-size: 2.3rem;
  }
  .usp01__lead p {
    font-size: 3rem;
  }
}

.usp01__heading {
  margin: 0% auto 0;
  width: 71%;
}
@media (max-width: 767px) {
  .usp01__heading {
    width: 90%;
    margin: 0 auto;
    margin: 17% auto 0;
  }
}

/*------------------------------
pricing
------------------------------*/
.pricing {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .pricing {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .pricing__inner {
    padding: 0;
  }
}

.pricing__header {
  text-align: center;
}

.pricing__header-image {
  text-align: center;
}
.pricing__header-image img {
  width: 50%;
}
@media (max-width: 767px) {
  .pricing__header-image img {
    width: 80%;
  }
}

.pricing__heading {
  font-size: min(2.8rem, 2.3333333333vw);
  font-weight: 600;
  line-height: 1.5357142857;
  text-align: center;
}
.pricing__heading strong {
  display: inline-block;
  font-size: min(5.6rem, 4.6666666667vw);
  font-weight: 800;
  color: #e3007f;
  background: linear-gradient(transparent 60%, #ffff00 60%);
  padding-right: 0.7em;
  position: relative;
  padding-bottom: 0.1em;
}
.pricing__heading strong::after {
  content: "満載";
  position: absolute;
  bottom: 15%;
  right: 0;
  font-size: min(2.8rem, 2.3333333333vw);
  font-weight: 600;
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  .pricing__heading {
    margin-top: 1em;
    font-size: min(1.7rem, 4.5333333333vw);
  }
  .pricing__heading strong {
    font-size: min(2.8rem, 7.4666666667vw);
  }
  .pricing__heading strong::after {
    font-size: min(1.4rem, 3.7333333333vw);
  }
}

.pricing__items {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .pricing__items {
    margin-top: 19%;
  }
}

.pricing__item:nth-child(n+2) {
  margin-top: 15%;
}
@media (max-width: 767px) {
  .pricing__item:nth-child(n+2) {
    margin-top: 5%;
  }
}

.pricing__label {
  font-size: min(4rem, 3.3333333333vw);
  font-weight: 600;
  line-height: 2.5;
  color: #fff;
  text-align: center;
  background: #e3007f;
}
@media (max-width: 767px) {
  .pricing__label {
    font-size: 1.8rem;
    line-height: 2;
  }
}

.pricing__label--sm {
  display: block;
  font-size: min(3rem, 2.5vw);
}
@media (max-width: 767px) {
  .pricing__label--sm {
    font-size: 1.2rem;
  }
}

.pricing__content {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (min-width: 768px) {
  .pricing__content.pat1 {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .pricing__content {
    margin-top: 20px;
    padding: 0 5%;
    font-feature-settings: "palt";
  }
  .pricing__content.pat1 {
    margin-top: 85px;
  }
}

.pricing__image {
  width: 48%;
}
.pricing__image img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
.pricing__image.dec {
  position: relative;
}
.pricing__image.dec::after {
  content: "";
  position: absolute;
  background: url(../img/dec4.png) no-repeat center center/100%;
  aspect-ratio: 21/194;
  height: 100px;
  right: 0%;
  top: -40px;
  transform: translate(0%, -100%);
}
@media (max-width: 767px) {
  .pricing__image {
    width: 40%;
  }
  .pricing__image img {
    width: 100%;
  }
  .pricing__image.dec::after {
    top: -42px;
    transform: translate(700%, -50%);
    height: 50px;
  }
}

.pricing__body {
  width: 50%;
}
@media (max-width: 767px) {
  .pricing__body {
    width: 55%;
  }
}

.pricing__list li {
  font-size: min(2.5rem, 2.0833333333vw);
  font-weight: 500;
  line-height: 2.16;
}
.pricing__list li:first-child {
  margin-top: calc((1lh - 1em) / -2);
}
@media (max-width: 767px) {
  .pricing__list li {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}

.pricing__price {
  margin-top: 14%;
  font-size: min(2.8rem, 2.3333333333vw);
  font-weight: 600;
  line-height: 1.5357142857;
  color: #e3007f;
  position: relative;
}
.pricing__price::before {
  content: "";
  position: absolute;
  top: 0%;
  left: 20%;
  background: #e3007f;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 1.5em;
  aspect-ratio: 60/30;
  transform: translateY(-220%);
}
.pricing__price.no-pse {
  margin-top: 0;
}
.pricing__price.no-pse::before {
  display: none;
}
@media (max-width: 767px) {
  .pricing__price {
    font-size: 1.4rem;
  }
  .pricing__price::before {
    left: 15%;
    transform: translateY(-160%);
  }
}

.pricing__value {
  font-size: min(3rem, 2.5vw);
  font-weight: 800;
  background: linear-gradient(transparent 60%, #ffff00 60%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.pricing__value strong {
  font-size: min(6.5rem, 5.4166666667vw);
  letter-spacing: 0.1em;
}
.pricing__value.pat1 {
  margin-left: 2em;
}
@media (max-width: 767px) {
  .pricing__value {
    font-size: min(1.1rem, 2.9333333333vw);
  }
  .pricing__value strong {
    font-size: min(2.4rem, 6.4vw);
  }
}

.pricing__note {
  font-size: min(2.5rem, 2.0833333333vw);
  font-weight: 500;
  line-height: 2.16;
  color: #000;
}
@media (max-width: 767px) {
  .pricing__note {
    font-size: 1.2rem;
  }
}

/*------------------------------
usp02
------------------------------*/
.usp02 {
  padding: min(100px, 8.3333333333vw) 0;
  background: #fadc46;
}
@media (max-width: 767px) {
  .usp02 {
    padding: 60px 0;
  }
}

.usp02__lead {
  width: 73%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .usp02__lead {
    width: 90%;
  }
}

.usp02__image {
  width: 73%;
  margin: 0 auto;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .usp02__image {
    width: 90%;
    margin-top: 5px;
  }
}

.usp02__heading {
  width: 63.4%;
  margin: 0 auto;
  margin-top: min(70px, 5.8333333333vw);
}
@media (max-width: 767px) {
  .usp02__heading {
    width: 55%;
  }
}

.usp02__text {
  font-size: min(2.5rem, 2.0833333333vw);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-top: min(50px, 4.1666666667vw);
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .usp02__text {
    font-size: 1.6rem;
    text-align: left;
    padding: 0 4%;
    margin-top: 1.5em;
  }
}

.usp02__message {
  font-size: min(5rem, 4.1666666667vw);
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
  margin-top: min(40px, 3.3333333333vw);
}
@media (max-width: 767px) {
  .usp02__message {
    font-size: min(2.2rem, 5.8666666667vw);
    margin-top: 2em;
  }
}

/*------------------------------
promise
------------------------------*/
.promise {
  padding: min(60px, 5vw) 0;
}
@media (max-width: 767px) {
  .promise {
    padding: 50px 0;
  }
}

.promise__title {
  width: 40%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .promise__title {
    width: 70%;
  }
}

.promise__list {
  margin-top: min(50px, 4.1666666667vw);
}
@media (max-width: 767px) {
  .promise__list {
    padding: 0 5%;
    margin-top: 8%;
  }
}

.promise__item:nth-child(n+2) {
  margin-top: min(80px, 6.6666666667vw);
}
@media (max-width: 767px) {
  .promise__item:nth-child(n+2) {
    margin-top: 22%;
  }
}

.promise__image {
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .promise__image {
    width: 90%;
  }
}

.promise__heaidng {
  font-size: min(3.5rem, 2.9166666667vw);
  font-weight: 800;
  line-height: 1.2857142857;
  text-align: center;
  color: #e3007f;
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  .promise__heaidng {
    font-size: 2.2rem;
  }
}

.promise__description {
  font-size: min(2rem, 1.6666666667vw);
  font-weight: 400;
  line-height: 2;
  text-align: center;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .promise__description {
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.5;
    margin-top: 0.2em;
  }
}

/*------------------------------
usp03
------------------------------*/
.usp03 {
  padding: min(100px, 8.3333333333vw) 0;
  background: #fadc46;
}
@media (max-width: 767px) {
  .usp03 {
    padding: 50px 0;
  }
}

.usp03__lead {
  width: min(450px, 37.5vw);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .usp03__lead {
    width: 64%;
  }
}

.usp03__image {
  width: 70%;
  margin: 0 auto;
  margin-top: min(50px, 4.1666666667vw);
}
@media (max-width: 767px) {
  .usp03__image {
    width: 85%;
  }
}

.usp03__heading {
  width: 41.6%;
  margin: 0 auto;
  margin-top: min(60px, 5vw);
}
@media (max-width: 767px) {
  .usp03__heading {
    width: 70%;
  }
}

.usp03__text {
  font-size: min(2.5rem, 2.0833333333vw);
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-top: 2em;
}
@media (max-width: 767px) {
  .usp03__text {
    font-size: 1.6rem;
    text-align: left;
  }
}

.usp03__message {
  font-size: min(4.3rem, 3.5833333333vw);
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
  margin-top: 1.5em;
}
@media (max-width: 767px) {
  .usp03__message {
    font-size: min(2.5rem, 6.6666666667vw);
    margin-top: 1em;
    line-height: 1.5;
  }
}

/*------------------------------
case
------------------------------*/
.case {
  padding: min(100px, 8.3333333333vw) 0;
}
@media (max-width: 767px) {
  .case {
    padding: 50px 0;
  }
}

.case__copy {
  max-width: 1020px;
  margin: 0 auto;
  margin-top: min(80px, 6.6666666667vw);
  display: flex;
  justify-content: space-between;
}
.case__copy span {
  font-size: min(4.5rem, 3.75vw);
  color: #fff;
  border: 1px solid #000;
  background: #e3007f;
  padding: 0.8em 0;
  border-radius: 0.6em;
  width: 11em;
  text-align: center;
}
@media (max-width: 767px) {
  .case__copy span {
    font-size: min(2.4rem, 6.4vw);
    text-align: center;
    width: 48%;
    padding: 0.5em 0;
  }
}

.case__list {
  margin-top: min(90px, 7.5vw);
}
@media (max-width: 767px) {
  .case__list {
    margin-top: 15%;
  }
}

.case__item:nth-child(n+2) {
  margin-top: min(160px, 13.3333333333vw);
}

.case__label {
  font-size: min(3.5rem, 2.9166666667vw);
  font-weight: 600;
  line-height: 1.2285714286;
  text-align: center;
}
@media (max-width: 767px) {
  .case__label {
    font-size: 2rem;
  }
}

.case__images {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .case__images {
    margin-top: 3%;
  }
}

.case__image {
  width: 44%;
}
.case__image:first-child {
  position: relative;
}
.case__image:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translate(100%, -50%);
  background: #000;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: min(35px, 2.9166666667vw);
  aspect-ratio: 35/90;
}

/*------------------------------
step
------------------------------*/
.step {
  background: #fadc46;
  padding: min(100px, 8.3333333333vw) 0 min(300px, 25vw);
}
@media (max-width: 767px) {
  .step {
    padding: 50px 0;
  }
}

.step__list {
  margin-top: 5%;
}

.step__item:nth-child(n+2) {
  margin-top: 3%;
}

.step__box {
  border: 1px solid #000;
  background: #fff;
  padding: 5%;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .step__box {
    padding: 10% 5%;
    border-radius: 7px;
    border-width: 2px;
  }
}

.step__label {
  width: 23%;
  margin-top: 2%;
}

.step__content {
  width: 68%;
}
@media (max-width: 767px) {
  .step__content {
    width: 70%;
  }
}

.step__heading {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: min(4.5rem, 3.75vw);
  font-weight: 800;
  line-height: 1.7777777778;
}
@media (max-width: 767px) {
  .step__heading {
    font-size: 1.7rem;
  }
}

.step__tel {
  margin-top: 5%;
}
.step__tel p {
  font-size: min(2.8rem, 2.3333333333vw);
  font-weight: 600;
}
.step__tel a {
  font-size: min(6rem, 5vw);
  font-weight: 900;
  justify-content: flex-start;
  background: linear-gradient(transparent 60%, #ffff00 60%);
  letter-spacing: 0.1em;
  margin-top: 0.2em;
  padding-bottom: 0.1em;
}
@media (max-width: 767px) {
  .step__tel p {
    font-size: 1.2rem;
  }
  .step__tel a {
    font-size: 2rem;
  }
}

.step__line {
  margin-top: 5%;
}
.step__line p {
  font-size: min(2.8rem, 2.3333333333vw);
  font-weight: 600;
  line-height: 1.7857142857;
  color: #00c04b;
}
.step__line a {
  display: inline-block;
  width: 10em;
  background: #00c04b;
  border-radius: 30px;
  font-size: min(4.5rem, 3.75vw);
  font-weight: 500;
  line-height: 1.1777777778;
  padding: 10px 5%;
  color: #fff;
  position: relative;
}
.step__line a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: url(../img/icon_arrow.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .step__line {
    margin-top: 10%;
  }
  .step__line p {
    font-size: 1.2rem;
    font-size: min(1.2rem, 3.2vw);
  }
  .step__line a {
    font-size: 2rem;
    width: 9em;
    padding: 0.2em 0.9em;
    font-size: min(2rem, 5.3333333333vw);
  }
}

.step__description {
  font-size: min(3.5rem, 2.9166666667vw);
  font-weight: 600;
  line-height: 1.3714285714;
  text-align: center;
  margin-top: 1em;
}
@media (max-width: 767px) {
  .step__description {
    font-size: 2rem;
  }
}

.step__body p {
  font-size: min(2.8rem, 2.3333333333vw);
  font-weight: 600;
  line-height: 1.5714285714;
}
@media (max-width: 767px) {
  .step__body p {
    font-size: 1.6rem;
  }
}

.step__text {
  margin-top: 3%;
}

.step__favour {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 7%;
}
.step__favour span {
  width: 28%;
  display: inline-block;
  font-size: min(4rem, 3.3333333333vw);
  font-weight: 800;
  background: #e3007f;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 0.6em 0;
  color: #fff;
  text-align: center;
}
.step__favour p {
  width: 67%;
}
@media (max-width: 767px) {
  .step__favour {
    display: block;
  }
  .step__favour span {
    width: 80px;
    font-size: 2rem;
    padding: 5px;
    text-align: center;
  }
  .step__favour p {
    width: 100%;
    font-size: 1.4rem;
  }
}

.step__message {
  font-size: min(4rem, 3.3333333333vw);
  font-weight: 800;
  line-height: 1.25;
  color: #e3007f;
  margin-top: 5%;
}
@media (max-width: 767px) {
  .step__message {
    font-size: 1.6rem;
  }
}

/*------------------------------
faq
------------------------------*/
.faq {
  padding-top: min(160px, 13.3333333333vw);
}

.faq__list {
  margin-top: min(55px, 4.5833333333vw);
}

.faq__item {
  background: #fadc46;
  padding: 4.6%;
}
.faq__item:nth-child(n+2) {
  margin-top: min(50px, 4.1666666667vw);
}
@media (max-width: 767px) {
  .faq__item {
    padding: 3.5% 5%;
  }
  .faq__item:nth-child(n+2) {
    margin-top: 8%;
  }
}

@media (max-width: 767px) {
  .faq__q[class]::before,
.faq__a[class]::before {
    width: 25px;
    flex-shrink: 0;
  }
}

.faq__q {
  font-size: min(3.5rem, 2.9166666667vw);
  font-weight: 600;
  line-height: 2;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 2em;
  cursor: pointer;
}
.faq__q::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_q.png) no-repeat center center/contain;
  width: min(70px, 5.8333333333vw);
  aspect-ratio: 1/1;
  margin-right: min(50px, 4.1666666667vw);
}
.faq__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/icon_toggle.png) no-repeat center center/contain;
  width: min(40px, 3.3333333333vw);
  aspect-ratio: 69/60;
  transition: all 0.5s;
}
.faq__q.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 767px) {
  .faq__q {
    font-size: 1.6rem;
  }
  .faq__q::before {
    width: 25px;
  }
}

.faq__a {
  font-size: min(2.5rem, 2.0833333333vw);
  font-weight: 400;
  line-height: 1.6;
  display: flex;
  align-items: center;
  margin-top: 30px;
  display: none;
}
.faq__a::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_a.png) no-repeat center center/contain;
  width: min(70px, 5.8333333333vw);
  aspect-ratio: 1/1;
  margin-right: min(50px, 4.1666666667vw);
}
.faq__a p {
  width: calc(100% - min(70px, 5.8333333333vw));
}
@media (max-width: 767px) {
  .faq__a {
    font-size: 1.4rem;
    align-items: flex-start;
    margin-top: 1em;
  }
  .faq__a::before {
    width: 25px;
  }
}

/*------------------------------
company
------------------------------*/
.company {
  padding: min(140px, 11.6666666667vw) 0;
}

.company__info {
  border-top: 1px solid #000;
  max-width: 920px;
  margin: 0 auto;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.company__info dt, .company__info dd {
  padding: 30px 0;
  border-bottom: 1px solid #000;
}
.company__info dt {
  font-size: min(2.8rem, 2.3333333333vw);
  width: 23%;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1em;
}
.company__info dd {
  font-size: min(2.7rem, 2.25vw);
  font-weight: 400;
  width: 77%;
  padding-left: 7%;
}
@media (max-width: 767px) {
  .company__info {
    line-height: 1.4;
  }
  .company__info dt, .company__info dd {
    padding: 10px 0;
  }
  .company__info dt {
    font-size: 1.4rem;
    width: 26%;
    padding-left: 0.5em;
  }
  .company__info dd {
    font-size: 1.2rem;
    width: 74%;
    padding-left: 2em;
  }
}

/*------------------------------
cta
------------------------------*/
.cta {
  background: #fadc46;
  padding: 100px 0 50px;
}
@media (max-width: 767px) {
  .cta {
    padding: 50px 0;
  }
}

.cta__logo {
  width: 65%;
  margin: 0 auto;
}

.cta__tel {
  margin-top: 5%;
}
.cta__tel p {
  font-size: min(3.5rem, 2.9166666667vw);
  font-weight: 500;
  line-height: 1.2;
  color: #e3007f;
  text-align: center;
}
.cta__tel a {
  font-size: min(9.6rem, 8vw);
  font-weight: 900;
  line-height: 1.1979166667;
  margin: 0.3em auto 0;
  background: linear-gradient(transparent 60%, #fff 60%);
}
@media (max-width: 767px) {
  .cta__tel p {
    font-size: min(1.7rem, 4.5333333333vw);
  }
  .cta__tel a {
    font-size: min(3.1rem, 8.2666666667vw);
    margin: 0.6em auto 0;
  }
}

.cta__line {
  width: 65%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5%;
  position: relative;
}
@media (max-width: 767px) {
  .cta__line {
    width: 80%;
    margin-top: 17%;
  }
  .cta__line p {
    position: absolute;
    color: #e3007f;
    top: -1em;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: min(1.3rem, 3.4666666667vw);
    font-weight: 600;
    width: 100%;
    text-align: center;
  }
}

.cta__text {
  width: 60%;
}

.cta__code {
  width: 35%;
}

.cta__license {
  font-size: min(2rem, 1.6666666667vw);
  font-weight: 300;
  line-height: 2;
  text-align: center;
  margin-top: 5%;
}
@media (max-width: 767px) {
  .cta__license {
    font-size: 1.2rem;
  }
}

/*------------------------------
footer
------------------------------*/
.footer__copyright {
  font-size: min(2rem, 1.6666666667vw);
  font-weight: 400;
  line-height: 4;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: min(1.2rem, 3.2vw);
  }
}

/*------------------------------
float
------------------------------*/
.float {
  position: fixed;
  bottom: 0;
  display: flex;
  width: 100%;
  opacity: 1;
  transition: all 0.3s;
}
.float a {
  width: 50%;
  font-size: 1.1rem;
  padding: 2em 0;
  border: 3px solid;
  text-align: center;
}
.float a:nth-child(1) {
  color: #e3007f;
  border-color: #e3007f;
  background: #fff;
}
.float a:nth-child(2) {
  border-color: #e3007f;
  border-color: #00c04b;
  background: #00c04b;
  color: #fff;
}
.float.act {
  opacity: 0;
  pointer-events: none;
}

/*------------------------------
alider
------------------------------*/
.scrollCon { /* スライダー領域サイズ */
  overflow: hidden;
  visibility: hidden;
  top: 0%;
  left: 0%;
  width: 110%;
  margin-left: 50%;
  transform: translateX(-50%);
  position: relative;
  aspect-ratio: 2020/400;
}
@media (max-width: 767px) {
  .scrollCon {
    width: 125%;
  }
}

.scrollItem { /* 基本はこの指定で使う */
  display: flex;
  max-width: unset;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  left: 0%;
  justify-content: space-between;
}

.scroll-c { /*  1つのサイズ、アイテム間の余白など設定*/
  max-width: unset;
  -o-object-fit: cover;
     object-fit: cover;
  width: 16.6666666667%; /* 6枚組のスライダーの例 */
  padding: 0 0.5%; /* 余白はpaddingなどで指定する */
}
/*# sourceMappingURL=style.css.map */