@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: "Dela Gothic One", sans-serif;
  font-weight: 400;
  line-height: normal;
}
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: 1000px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 375px;
  }
}

/* 縁取り文字
------------------------------*/
.u-stroke {
  text-align: center;
  position: relative;
  -webkit-text-stroke: 5px #f8eac5;
}
.u-stroke span { /* 複製文字(stroke無し)を上に重ねる*/
  position: absolute;
  -webkit-text-stroke: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .u-stroke {
    -webkit-text-stroke: 3px #f8eac5;
  }
}

/* 丸で囲った文字
------------------------------*/
.u-round {
  position: relative;
}
.u-round::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f8eac5;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.u-round span {
  color: #0081cc;
  position: relative;
}

/* テキスト色
------------------------------*/
.u-text-red {
  color: #db432b !important;
}

.u-text-bk {
  color: #000 !important;
}

.u-text-blue {
  color: #0081cc !important;
}

/* テキスト装飾
------------------------------*/
.u-text-box {
  display: inline-block;
  background: #000;
  padding: 0.1em 0.2em;
  line-height: 1;
}

/*------------------------------
fv
------------------------------*/
.fv {
  position: relative;
}
.fv a {
  position: absolute;
  top: 88.5%;
  left: 48.5%;
  transform: translate(-50%, -50%);
  width: 48%;
}
@media (hover: hover) {
  .fv a:hover {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .fv a {
    top: 88.8%;
    left: 48.5%;
    width: 96%;
  }
}

/*------------------------------
problem
------------------------------*/
.problem {
  background: #4b938f;
  padding-top: 32px;
}

.problem__subtitle {
  width: 45%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .problem__subtitle {
    width: 224px;
  }
}

.problem__heading {
  font-size: min(5rem, 5.2083333333vw);
  line-height: 1.2;
  letter-spacing: 2.5px;
  text-align: center;
  margin-top: 0.2em;
}
@media (max-width: 767px) {
  .problem__heading {
    font-size: min(3rem, 8vw);
  }
}

.problem__content {
  display: flex;
  justify-content: space-between;
  width: min(1000px, 73.2064421669vw);
  margin: 3% auto 0;
}
@media (max-width: 767px) {
  .problem__content {
    display: block;
    width: 100%;
  }
}

.problem__block {
  width: 48%;
}
@media (min-width: 768px) {
  .problem__block:nth-child(1) {
    transform: translateX(-10%);
  }
  .problem__block:nth-child(1) .problem__list li:nth-child(2n-1) {
    transform: translateX(-2%);
  }
  .problem__block:nth-child(1) .problem__list li:nth-child(2n) {
    transform: translateX(5%);
  }
  .problem__block:nth-child(2) {
    transform: translateX(10%);
  }
  .problem__block:nth-child(2) .problem__list li:nth-child(2n-1) {
    transform: translateX(5%);
  }
  .problem__block:nth-child(2) .problem__list li:nth-child(2n) {
    transform: translateX(-2%);
  }
}
@media (max-width: 767px) {
  .problem__block {
    width: 100%;
  }
  .problem__block:nth-child(2) {
    margin-top: 20px;
  }
}

.problem__label {
  width: 72%;
  max-width: 363px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .problem__label {
    width: 230px;
  }
}

.problem__list {
  margin-top: 20px;
}
.problem__list li {
  font-size: min(2.2rem, 1.6105417277vw);
  line-height: 2.0454545455;
  letter-spacing: 1.1px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.problem__list li::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translate(-50%, 100%);
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 17px;
  aspect-ratio: 17/10;
}
.problem__list li:nth-child(n+2) {
  margin-top: 5%;
}
@media (max-width: 767px) {
  .problem__list {
    margin-top: 4%;
  }
  .problem__list li {
    font-size: min(1.6rem, 4.2666666667vw);
    border-radius: 5px;
  }
  .problem__list li:nth-child(n+2) {
    margin-top: 3.5%;
  }
}

.problem__list01 li {
  background: #dfbf84;
}
.problem__list01 li::after {
  background: #dfbf84;
}

.problem__list02 li {
  background: #fff;
}
.problem__list02 li::after {
  background: #fff;
}

.problem__image {
  width: 68%;
  margin: 0 auto;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .problem__image {
    width: 100%;
  }
}

/*------------------------------
fail
------------------------------*/
.fail {
  background: url(../img/bg2.webp) no-repeat center center/cover;
  padding: 76px 0 60px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .fail {
    padding: 30px 0;
  }
}

@media (min-width: 768px) {
  .fail__inner {
    width: 1115px;
  }
}

.fail__heading {
  font-size: min(6rem, 6.5104166667vw);
  letter-spacing: 3px;
  color: #f8eac5;
  text-align: center;
}
.fail__heading img {
  display: block;
  width: 71%;
  margin: 0 auto;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .fail__heading {
    font-size: min(3rem, 8vw);
    letter-spacing: 1.5px;
    width: calc(100% + 2em);
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .fail__heading img {
    width: 65%;
  }
}

.fail__list {
  margin-top: 2%;
  display: flex;
  padding: 0 2%;
}
@media (max-width: 767px) {
  .fail__list {
    display: block;
    margin-top: 4%;
  }
}

.fail__item {
  width: 29.8333333333%;
  position: relative;
}
.fail__item:nth-child(n+2) {
  margin-left: 5.2%;
}
.fail__item:nth-child(1) .fail__image img {
  transform: rotate(2deg);
}
.fail__item:nth-child(2) .fail__image img {
  transform: rotate(-2deg);
}
.fail__item:nth-child(2) .fail__label {
  transform: translate(-35%, -10%) rotate(-2deg);
}
.fail__item:nth-child(3) .fail__image img {
  transform: rotate(2deg);
}
.fail__item:nth-child(3) .fail__label {
  transform: translate(-35%, -10%) rotate(2deg);
}
@media (min-width: 768px) {
  .fail__item:nth-child(1) {
    transform: rotate(-2deg);
  }
  .fail__item:nth-child(2) {
    transform: translateY(7%) rotate(2deg);
  }
  .fail__item:nth-child(3) {
    transform: translateX(13%) rotate(-2deg);
  }
}
@media (max-width: 767px) {
  .fail__item {
    width: 100%;
  }
  .fail__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 12%;
  }
  .fail__item:nth-child(1) {
    transform: rotate(-2deg);
  }
  .fail__item:nth-child(2) {
    transform: rotate(2deg);
  }
  .fail__item:nth-child(3) {
    transform: rotate(-2deg);
  }
}

.fail__content {
  padding: 20px;
  background: url(../img/bg1.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .fail__content {
    display: flex;
    justify-content: space-between;
    padding: 6% 2%;
    padding-left: 12%;
  }
}

.fail__label {
  width: 25.9%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-35%, -10%);
  z-index: 10;
}
@media (max-width: 767px) {
  .fail__label {
    width: 20%;
    transform: translate(-15%, -10%);
  }
}

@media (max-width: 767px) {
  .fail__image {
    width: 58%;
  }
}

.fail__text {
  font-size: min(1.6rem, 1.2903225806vw);
  font-weight: 700;
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}
@media (min-width: 768px) {
  .fail__text {
    height: 2lh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5em;
  }
}
@media (max-width: 767px) {
  .fail__text {
    width: 37%;
    font-size: min(1.6rem, 4.2666666667vw);
    margin-top: 0;
    line-height: 1.5;
  }
}

.fail__result {
  background: url(../img/fail_result-bg.webp) no-repeat center center/cover;
  padding: 20px 1%;
  text-align: center;
}
@media (max-width: 767px) {
  .fail__result {
    padding: 10px 1%;
  }
}

.fail__result-label {
  font-size: min(2.5rem, 2.0161290323vw);
  display: flex;
  justify-content: center;
}
.fail__result-label p:first-child {
  margin-right: 1em;
}
.fail__result-label p::before {
  width: 1.6em;
}
@media (max-width: 767px) {
  .fail__result-label {
    font-size: 2rem;
  }
}

.fail__result-text {
  font-size: min(2.5rem, 2.0161290323vw);
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-top: 1em;
  color: #f8eac5;
}
@media (max-width: 767px) {
  .fail__result-text {
    font-size: 2rem;
    margin-top: 0.3em;
  }
}

/*------------------------------
consequences
------------------------------*/
.consequences {
  background: url(../img/fail_result-bg.webp) no-repeat center center/cover;
  padding-bottom: 63px;
}
@media (max-width: 767px) {
  .consequences {
    padding-bottom: 43px;
  }
}

.consequences__text {
  position: relative;
  font-size: min(3rem, 2.6041666667vw);
  line-height: 1.3333333333;
  color: #f8eac5;
  text-align: center;
}
.consequences__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  -webkit-clip-path: polygon(100% 1%, 0 0, 50% 100%);
          clip-path: polygon(100% 1%, 0 0, 50% 100%);
  width: min(738px, 73.8vw);
  aspect-ratio: 738/120;
}
.consequences__text span {
  display: inline-block;
  position: relative;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .consequences__text {
    font-size: min(2rem, 5.3333333333vw);
  }
  .consequences__text::before {
    width: 106%;
    max-width: 360px;
    aspect-ratio: 365/96;
  }
  .consequences__text span {
    padding-top: 3%;
  }
}

@media (min-width: 768px) {
  .consequences__inner {
    width: 1140px;
  }
}

.consequences__list {
  display: flex;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .consequences__list {
    margin-top: 50px;
    display: block;
  }
}

.consequences__item {
  width: 30.9666666667%;
}
.consequences__item:nth-child(n+2) {
  margin-left: 3.5%;
}
@media (max-width: 767px) {
  .consequences__item {
    width: 100%;
  }
  .consequences__item:nth-child(n+2) {
    margin-top: 15px;
    margin-left: 0;
  }
}

.consequences__box {
  font-size: min(3rem, 2.6041666667vw);
  line-height: 1.3333333333;
  color: #f8eac5;
  text-align: center;
  padding: 5.5%;
}
.consequences__box p {
  margin-top: 20px;
  height: 2lh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .consequences__box {
    font-size: min(2.3rem, 6.1333333333vw);
    padding: 6.5% 6% 3%;
  }
  .consequences__box p {
    margin-top: 0.6em;
  }
}

.consequences__box1 {
  background: url(../img/consequences__box-bg1.webp) no-repeat center center/cover;
  position: relative;
}
.consequences__box1::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background: url(../img/consequences__arrow.webp) no-repeat center center/contain;
  width: 72px;
  aspect-ratio: 72/26;
}
@media (max-width: 767px) {
  .consequences__box1::after {
    width: 18%;
    transform: translate(-50%, 100%);
    bottom: 1px;
  }
}

.consequences__box2 {
  padding: 13.9% 5.5% 5.5%;
  background: #000;
}
@media (max-width: 767px) {
  .consequences__box2 {
    padding: 10% 6% 2.5%;
  }
}

.consequences__message {
  margin-top: 0.8em;
  font-size: min(4rem, 3.90625vw);
  line-height: 1.25;
  color: #000;
  text-align: center;
}
@media (max-width: 767px) {
  .consequences__message {
    font-size: 2.5rem;
  }
}

/*------------------------------
strengths
------------------------------*/
.strengths {
  position: relative;
}
.strengths::after {
  content: "";
  position: absolute;
  background: url(../img/dec1.webp) no-repeat center center/100%;
  aspect-ratio: 541/66;
  width: 20%;
  max-width: 275px;
  left: 50%;
  top: 0%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .strengths::after {
    width: 45%;
    max-width: 170px;
  }
}

.strengths__header {
  background: url(../img/strengths_bg.webp) no-repeat center center/cover;
  padding: 4% 0;
  position: relative;
}
.strengths__header::after {
  content: "さらに";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 70%);
  background: #000;
  -webkit-clip-path: polygon(100% 1%, 0 0, 50% 100%);
          clip-path: polygon(100% 1%, 0 0, 50% 100%);
  width: 275px;
  aspect-ratio: 275/100;
  font-size: 3rem;
  line-height: 1.3333333333;
  color: #f8eac5;
  text-align: center;
  padding-top: 0.8%;
}
@media (max-width: 767px) {
  .strengths__header {
    padding: 10% 0 56%;
    background: url(../img/strengths_bg_sp.webp) no-repeat center bottom/cover;
  }
  .strengths__header::after {
    font-size: 2rem;
    width: 180px;
    aspect-ratio: 180/66;
    padding-top: 15px;
  }
}

@media (max-width: 767px) {
  .strengths__lead {
    transform: scale(1.1);
  }
}

.strengths__heading {
  font-size: min(5.5rem, 4.4vw);
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #f8eac5;
  text-align: center;
}
.strengths__heading p {
  display: inline-block;
}
.strengths__heading strong {
  font-size: min(6.5rem, 5.2vw);
}
@media (max-width: 767px) {
  .strengths__heading {
    font-size: 2.7rem;
    width: calc(100% + 1em);
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .strengths__heading strong {
    font-size: 3.1rem;
  }
}

.strengths__synergy {
  display: flex;
  justify-content: space-between;
  width: 82%;
  margin: 1% auto 0;
}
@media (max-width: 767px) {
  .strengths__synergy {
    width: 100%;
  }
}

.strengths__synergy-item {
  background: url(../img/strengths_synergy.webp) no-repeat center center/cover;
  aspect-ratio: 370/228;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45%;
  font-size: min(2rem, 1.953125vw);
  line-height: 1.4;
  letter-spacing: 1px;
  text-align: center;
}
.strengths__synergy-item strong {
  display: block;
  font-size: min(4rem, 3.90625vw);
  color: #0081cc;
}
.strengths__synergy-item:first-child {
  position: relative;
}
.strengths__synergy-item:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11.5%;
  transform: translate(50%, -50%);
  background: url(../img/img_batu.webp) no-repeat center center/contain;
  width: min(48px, 4.8vw);
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .strengths__synergy-item {
    background: url(../img/strengths_synergy_sp.webp) no-repeat center center/cover;
    font-size: 1.3rem;
    line-height: 1.1538461538;
    aspect-ratio: 150/138;
  }
  .strengths__synergy-item strong {
    font-size: 2.3rem;
    line-height: 1.0869565217;
  }
}

.strengths__content {
  background: url(../img/bg1.webp) no-repeat center center/cover;
  padding: 65px 0 42px;
}
@media (max-width: 767px) {
  .strengths__content {
    padding: 50px 0 32px;
  }
}

.strengths__list {
  display: flex;
  justify-content: space-between;
}
.strengths__list li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14%;
  font-size: min(2.7rem, 2.4324324324vw);
  line-height: 1.3333333333;
  color: #f8eac5;
  text-align: center;
  background: url(../img/bg2.webp) no-repeat center center/cover;
  aspect-ratio: 146/473;
  position: relative;
  letter-spacing: 0.05em;
}
.strengths__list li::after {
  content: "";
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/icon_check.webp) no-repeat center center/contain;
  width: 1.48em;
  aspect-ratio: 89/83;
}
.strengths__list li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #f8eac5;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
.strengths__list li:nth-child(2n-1) {
  transform: rotate(-2deg);
}
.strengths__list li:nth-child(2n) {
  transform: translateY(2%) rotate(2deg);
}
.strengths__list li span {
  writing-mode: vertical-rl;
  margin-top: 43%;
}
.strengths__list li span.large {
  transform: scale(1.2);
}
@media (max-width: 767px) {
  .strengths__list {
    flex-wrap: wrap;
    width: 84%;
    margin: 0 auto;
  }
  .strengths__list li {
    width: 28%;
    font-size: min(1.6rem, 4.2666666667vw);
    aspect-ratio: 146/506;
  }
  .strengths__list li::after {
    top: 6%;
  }
  .strengths__list li:nth-child(n+4) {
    margin-top: 7%;
  }
}

.strengths__highlight {
  margin-top: 22px;
  font-size: 4rem;
  letter-spacing: 2px;
  text-align: center;
}
.strengths__highlight img {
  display: block;
  width: 370px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .strengths__highlight {
    font-size: min(2.3rem, 6.1333333333vw);
    margin-top: 5%;
  }
  .strengths__highlight img {
    width: 67%;
  }
}

/*------------------------------
cta
------------------------------*/
.cta {
  background: url(../img/cta_bg.webp) no-repeat center center/cover;
  padding: 4% 0;
  position: relative;
}
@media (max-width: 767px) {
  .cta {
    background: url(../img/cta_bg_sp.webp) no-repeat center center/cover;
    padding: 10% 0;
  }
}

.cta__heading {
  font-size: min(4rem, 2.9282576867vw);
  line-height: 1.25;
  letter-spacing: 2px;
  -webkit-text-stroke: 5px #fff;
  color: #0081cc;
}
@media (max-width: 767px) {
  .cta__heading {
    font-size: min(3rem, 8vw);
  }
}

.cta__message {
  font-size: min(1.8rem, 1.317715959vw);
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 0.6em;
  -webkit-text-stroke: 3px #fff;
}
@media (max-width: 767px) {
  .cta__message {
    font-size: min(1.4rem, 3.7333333333vw);
    text-align: left;
    margin-top: 1em;
    margin-left: 7%;
    line-height: 1.6;
  }
}

.cta__button {
  margin: -20px auto 0;
  width: 65%;
  display: block;
  transform: translateX(-4%);
}
@media (max-width: 767px) {
  .cta__button {
    margin: 3% auto 0;
    width: 100%;
    display: block;
    transform: scale(1.05);
    transform-origin: right center;
  }
}

/*------------------------------
case
------------------------------*/
.case {
  background: url(../img/case_bg.webp) no-repeat center center/cover;
  padding: 45px 0 80px;
}
@media (max-width: 767px) {
  .case {
    padding: 40px 0 46px;
  }
}

.case__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 4rem;
  line-height: 1.4;
  letter-spacing: 2.5px;
  text-align: center;
  padding: 20px 0;
  position: relative;
}
.case__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/img_diamond.webp) no-repeat center center/contain;
  width: 36%;
  aspect-ratio: 382/34;
}
.case__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background: url(../img/img_diamond.webp) no-repeat center center/contain;
  width: 36%;
  aspect-ratio: 382/34;
}
.case__title strong {
  font-size: 5rem;
  color: #db432b;
}
@media (max-width: 767px) {
  .case__title {
    font-size: min(3rem, 8vw);
    line-height: 1.3;
  }
  .case__title::before, .case__title::after {
    width: 52%;
  }
  .case__title strong {
    font-size: min(3.5rem, 9.3333333333vw);
  }
}

.case__list {
  margin-top: 4%;
}
@media (min-width: 768px) {
  .case__list {
    margin-left: 50%;
    transform: translateX(-50%);
    width: min(1000px, 83.3333333333vw);
  }
}
@media (max-width: 767px) {
  .case__list {
    margin-top: 6%;
    padding-left: 7%;
  }
}

.case__item {
  background: url(../img/bg1.webp) no-repeat center center/cover;
  border: 3px solid #510605;
  padding: 2% 4% 3% 7%;
  position: relative;
}
.case__item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -11px;
  transform: translate(-50%, -50%);
  background: url(../img/img_ribbon.webp) no-repeat center center/contain;
  width: 12%;
  aspect-ratio: 243/112;
}
.case__item:nth-child(n+2) {
  margin-top: 3%;
}
.case__item:nth-child(2n-1) {
  transform: translateX(-2%) rotate(-1deg);
}
.case__item:nth-child(2n) {
  transform: translateX(2%) rotate(1deg);
}
@media (max-width: 767px) {
  .case__item {
    padding: 4%;
    padding-left: 12%;
  }
  .case__item::after {
    width: 56px;
    left: -8px;
  }
  .case__item:nth-child(2n) {
    transform: translateX(-2%) rotate(1deg);
  }
}

.case__heading {
  font-size: 3.2rem;
  letter-spacing: 1.6px;
  color: #db432b;
}
@media (max-width: 767px) {
  .case__heading {
    font-size: min(2.2rem, 5.8666666667vw);
    letter-spacing: 0.01em;
    line-height: 1.3636363636;
  }
}

.case__label {
  margin-top: 0.6%;
  position: relative;
}
.case__label::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/img_dots2.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 1338/28;
}
.case__label span {
  display: inline-block;
  font-size: 1.6rem;
  color: #f8eac5;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  background: #510605;
  padding: 0.2em 0.8em;
  position: relative;
}
@media (max-width: 767px) {
  .case__label {
    margin-top: 3%;
  }
  .case__label::before {
    display: none;
  }
  .case__label span {
    font-size: min(1.4rem, 3.7333333333vw);
  }
}

.case__message {
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  margin-top: 0.7em;
  padding-left: 0.4em;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .case__message {
    margin-top: 0.1em;
    letter-spacing: 0.01em;
    padding-left: 0;
    line-height: 1.6;
  }
}

/*------------------------------
reason
------------------------------*/
.reason {
  padding: 145px 0 88px;
  background: url(../img/bg2.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .reason {
    padding: 75px 0 43px;
  }
}

.reason__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  padding: 15px 0;
  border-top: 2px solid #f8eac5;
  border-bottom: 2px solid #f8eac5;
  position: relative;
}
.reason__title::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/img_star.webp) no-repeat center center/contain;
  width: 255px;
  aspect-ratio: 509/110;
}
.reason__title img {
  display: block;
  width: 320px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .reason__title {
    padding: 1em 0;
  }
  .reason__title::before {
    top: -18%;
    width: 113px;
  }
  .reason__title img {
    width: 217px;
    margin-top: 10px;
  }
}

.reason__subtitle {
  font-size: 4rem;
  letter-spacing: 2px;
  color: #f8eac5;
  padding: 0 0.4em;
}
@media (max-width: 767px) {
  .reason__subtitle {
    font-size: min(2.3rem, 6.1333333333vw);
    letter-spacing: normal;
    padding: 0;
  }
}

.reason__list {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .reason__list {
    margin-top: 30px;
  }
}

.reason__item {
  background: #f8eac5;
  border: 15px solid #db432b;
  position: relative;
  padding: 3.4% 7% 3.4% 11%;
  padding: 0;
  padding-left: 10%;
  aspect-ratio: 998/190;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reason__item:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .reason__item {
    border: 8px solid #db432b;
    padding: 4% 3%;
    padding-bottom: 1%;
  }
  .reason__item:nth-child(n+2) {
    margin-top: 3%;
  }
  .reason__item:nth-child(4) {
    padding-bottom: 5%;
  }
}

.reason__number {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.7rem;
  letter-spacing: 0.1em;
  color: #f8eac5;
  text-align: center;
  line-height: 1;
}
.reason__number::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  background: #db432b;
  -webkit-clip-path: polygon(100% 0, 0 0, 2% 90%);
          clip-path: polygon(100% 0, 0 0, 2% 90%);
  width: 132px;
  aspect-ratio: 132/140;
}
.reason__number span {
  position: relative;
}
.reason__number strong {
  display: block;
  font-size: 3.6rem;
}
@media (max-width: 767px) {
  .reason__number {
    font-size: 1.3rem;
  }
  .reason__number::before {
    top: -1px;
    left: -1px;
    width: 50px;
  }
  .reason__number strong {
    font-size: 1.8rem;
  }
  .reason__number span {
    transform: translate(-10%, -10%);
    display: block;
  }
}

.reason__icon {
  width: 100px;
}
@media (max-width: 767px) {
  .reason__icon {
    width: 50px;
  }
}

.reason__description {
  width: calc(100% - 120px);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #510605;
  font-family: "Noto Sans JP", sans-serif;
}
.reason__description strong {
  font-size: 3rem;
  color: #0081cc;
  font-family: "Dela Gothic One", sans-serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  .reason__description {
    width: calc(100% - 60px);
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    font-feature-settings: "palt";
  }
  .reason__description strong {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }
}

/*------------------------------
comparison
------------------------------*/
.comparison {
  background: #4b938f;
  padding: 65px 0 85px;
}
@media (max-width: 767px) {
  .comparison {
    padding: 35px 0;
    overflow: hidden;
  }
}

.comparison__lead {
  width: 57%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .comparison__lead {
    width: 100%;
  }
}

.comparison__title {
  font-size: min(5rem, 4.5572916667vw);
  line-height: 1.2;
  text-align: center;
  letter-spacing: 2.5px;
}
@media (max-width: 767px) {
  .comparison__title {
    font-size: min(3rem, 8vw);
  }
}

.comparison__table {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .comparison__table {
    overflow: scroll;
    overflow-y: hidden;
    width: calc(100% + max(5vw, (100vw - 375px) / 2));
    position: relative;
    scrollbar-width: none;
  }
  .comparison__table ::-webkit-scrollbar {
    display: none;
  }
  .comparison__table img {
    width: 630px;
    max-width: unset;
  }
}

.comparison__table-wrap {
  position: relative;
}
.comparison__table-wrap span {
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44%;
  background: rgba(0, 0, 0, 0.5);
  aspect-ratio: 150/100;
  border-radius: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 2%;
}
.comparison__table-wrap span::after {
  content: "";
  position: absolute;
  background: url(../img/icon_scroll.webp) no-repeat center center/100%;
  aspect-ratio: 72/102;
  width: 23%;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  -webkit-animation: 2s ease-in scrolls infinite;
          animation: 2s ease-in scrolls infinite;
}

@-webkit-keyframes scrolls {
  0% {
    transform: translate(-100%, -50%);
  }
  75% {
    transform: translate(0%, -50%);
  }
  100% {
    transform: translate(0%, -50%);
  }
}

@keyframes scrolls {
  0% {
    transform: translate(-100%, -50%);
  }
  75% {
    transform: translate(0%, -50%);
  }
  100% {
    transform: translate(0%, -50%);
  }
}
/*------------------------------
flow
------------------------------*/
.flow__content {
  padding: 70px 0 50px;
  background: url(../img/bg1.webp) no-repeat center center/cover;
  position: relative;
}
.flow__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background: #510605;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 250px;
  aspect-ratio: 250/50;
}
@media (max-width: 767px) {
  .flow__content {
    padding: 30px 0 40px;
  }
  .flow__content::after {
    width: 165px;
    aspect-ratio: 250/60;
    transform: translate(-50%, 70%);
  }
}

.flow__title {
  font-size: 4rem;
  letter-spacing: 2.5px;
  text-align: center;
}
.flow__title strong {
  font-size: 5rem;
  color: #db432b;
}
@media (max-width: 767px) {
  .flow__title {
    font-size: min(3rem, 8vw);
    letter-spacing: 0.01em;
    line-height: 1.3;
  }
  .flow__title strong {
    font-size: min(3.5rem, 9.3333333333vw);
  }
}

.flow__list {
  margin-top: 2%;
  display: flex;
}
@media (max-width: 767px) {
  .flow__list {
    margin-top: 10px;
    display: block;
  }
}

.flow__item {
  width: calc(16.6% - 16.6666666667px);
  background: url(../img/bg2.webp) no-repeat center center/cover;
  padding: 5.5% 1.5% 1.5%;
  position: relative;
}
.flow__item:nth-child(n+2) {
  margin-left: 20px;
}
.flow__item:nth-child(n+2)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -21px;
  transform: translateY(-50%);
  background: #510605;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 20px;
  aspect-ratio: 20/100;
}
@media (max-width: 767px) {
  .flow__item {
    width: 100%;
    padding: 24px 14px 14px 14px;
  }
  .flow__item:nth-child(n+2) {
    margin-left: 0;
    margin-top: 20px;
  }
  .flow__item:nth-child(n+2)::before {
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
            clip-path: polygon(50% 100%, 0 0, 100% 0);
    width: 100px;
    aspect-ratio: 100/20;
  }
}

.flow__number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 66.6%;
  margin: 0 auto;
  margin-bottom: -80px;
  font-size: min(1.6rem, 1.3020833333vw);
  text-align: center;
  color: #510605;
  background: #f8eac5;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 1.25em;
  line-height: 1;
}
.flow__number strong {
  display: block;
  line-height: 1;
  font-size: min(4rem, 3.125vw);
}
@media (max-width: 767px) {
  .flow__number {
    width: 60px;
    font-size: 1rem;
    padding: 10px;
  }
  .flow__number strong {
    font-size: 2.5rem;
  }
}

.flow__text {
  background: #f8eac5;
  height: 100%;
  padding: 52.5% 0 20.5%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(3rem, 2.6041666667vw);
  line-height: 1.3333333333;
  color: #0081cc;
  letter-spacing: 1.5px;
}
.flow__text p {
  writing-mode: vertical-rl;
  text-align: center;
}
@media (max-width: 767px) {
  .flow__text {
    font-size: min(2.3rem, 6.1333333333vw);
    padding: 14% 0 7%;
  }
  .flow__text p {
    writing-mode: unset;
    z-index: 10;
  }
}

.flow__text--lg {
  font-size: min(4rem, 3.90625vw);
}
@media (max-width: 767px) {
  .flow__text--lg {
    font-size: 2.3rem;
  }
}

.flow__bottom {
  background: url(../img/flow_bg2.webp) no-repeat center center/cover;
  padding-top: 37px;
}
@media (max-width: 767px) {
  .flow__bottom {
    padding: 45px 0 30px;
    background: url(../img/flow_bg2_sp.webp) no-repeat center center/cover;
  }
}

@media (min-width: 768px) {
  .flow__message {
    width: min(1200px, 87.8477306003vw);
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

/*------------------------------
step
------------------------------*/
.steps {
  padding: 80px 0 100px;
  background: url(../img/bg2.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .steps {
    padding: 30px 0 50px;
  }
}

.step__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1.2em;
  font-size: 4rem;
  letter-spacing: 1.2px;
  color: #f8eac5;
  text-align: left;
  position: relative;
}
.step__title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/img_flower.webp) no-repeat center center/contain;
  width: 0.9em;
  aspect-ratio: 1/1;
}
.step__title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url(../img/img_flower.webp) no-repeat center center/contain;
  width: 0.9em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .step__title {
    font-size: 2.6rem;
  }
}

.step__list {
  margin-top: 2%;
}
@media (max-width: 767px) {
  .step__list {
    margin-top: 12%;
  }
}

.step__item {
  background: url(../img/bg1.webp) no-repeat center center/cover;
  border: 5px solid #510605;
  padding: 2% 1.4%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
.step__item::after {
  content: "";
  position: absolute;
  background: #510605;
  aspect-ratio: 136/35;
  transform: translate(-50%, 100%);
  left: 50%;
  bottom: -5px;
  width: 13%;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.step__item:nth-child(n+2) {
  margin-top: 3%;
}
.step__item:last-child::after {
  display: none;
}
@media (max-width: 767px) {
  .step__item {
    flex-direction: column-reverse;
    position: relative;
    margin-left: 7%;
    padding: 6% 4%;
  }
  .step__item::after {
    width: 40%;
  }
  .step__item:nth-child(n+2) {
    margin-top: 10%;
  }
}

.step__number {
  width: 50px;
}
@media (max-width: 767px) {
  .step__number {
    position: absolute;
    top: -25px;
    left: -25px;
  }
}

.step__content {
  width: 75%;
  padding-right: 2%;
}
@media (max-width: 767px) {
  .step__content {
    width: 100%;
    margin-top: 5%;
    padding-right: 0;
  }
}

.step__heading {
  font-size: 3.2rem;
  color: #510605;
  padding-bottom: 11px;
  position: relative;
}
.step__heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/img_dots2.webp) repeat-x left center/auto 7px;
  width: 100%;
  aspect-ratio: 3066/20;
}
@media (max-width: 767px) {
  .step__heading {
    text-align: center;
    font-size: min(2.5rem, 6.6666666667vw);
    line-height: 1.2;
    padding-bottom: 0.6em;
  }
  .step__heading::after {
    background: url(../img/img_dots2_sp.webp) no-repeat center center/100%;
    aspect-ratio: 550/10;
  }
}

.step__description {
  margin-top: 0.8em;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 700;
  color: #510605;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .step__description {
    font-size: min(1.6rem, 4.2666666667vw);
    font-feature-settings: "palt";
  }
}

.step__image {
  width: 17%;
}
@media (max-width: 767px) {
  .step__image {
    width: 100%;
  }
}

.step__button {
  width: 90%;
  margin: 3% auto 0;
}
@media (max-width: 767px) {
  .step__button {
    width: 100%;
    margin: 2% auto 0;
    transform: scale(1.05);
    transform-origin: right center;
  }
}

/*------------------------------
faq
------------------------------*/
.faq {
  padding: 60px 0 85px;
  background: #e0c35b;
}
@media (max-width: 767px) {
  .faq {
    padding: 30px 0;
  }
}

.faq__title {
  font-size: 4rem;
  line-height: normal;
  color: #510605;
  letter-spacing: 1.2px;
  text-align: center;
}
@media (max-width: 767px) {
  .faq__title {
    font-size: min(3rem, 8vw);
  }
}

.faq__list {
  margin-top: 2%;
}

.faq__item:nth-child(n+2) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .faq__item:nth-child(n+2) {
    margin-top: 3%;
  }
}

.faq__q {
  font-size: 2.5rem;
  color: #f8eac5;
  letter-spacing: 0.04em;
  background: #510605;
  padding: 0.7em 80px;
  position: relative;
}
.faq__q::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: url(../img/icon_q.webp) no-repeat center center/contain;
  width: 50px;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .faq__q {
    padding: 4% 1%;
    padding-left: 18%;
    font-size: 2rem;
    line-height: 1.2;
  }
  .faq__q::before {
    width: 12%;
  }
}

.faq__a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  color: #510605;
  font-family: "Noto Sans JP", sans-serif;
  background: #f8eac5;
  position: relative;
  padding: 1.3em 80px;
  padding-right: 10px;
}
.faq__a::before {
  content: "";
  position: absolute;
  top: 2.2em;
  left: 10px;
  transform: translateY(-50%);
  background: url(../img/icon_a.webp) no-repeat center center/contain;
  aspect-ratio: 1/1;
  width: 50px;
}
.faq__a strong {
  font-weight: 900;
}
@media (max-width: 767px) {
  .faq__a {
    padding: 4%;
    padding-left: 20%;
    line-height: 1.6;
  }
  .faq__a::before {
    width: 12%;
    top: 0.5em;
    transform: unset;
  }
}

/*------------------------------
origin
------------------------------*/
.origin {
  padding: 75px 0 84px;
  background: url(../img/origin_bg.webp) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .origin {
    padding: 40px 0 50px;
  }
}

.origin__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 4rem;
  line-height: 1.25;
  letter-spacing: 1.2px;
  color: #f8eac5;
  text-align: center;
  position: relative;
  padding: 0.7em 1.6em;
}
.origin__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/img_dots.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 1070/18;
}
.origin__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(../img/img_dots.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 1070/18;
}
.origin__title strong {
  display: inline-block;
  color: #db432b;
  margin: 0 0.2em;
}
@media (max-width: 767px) {
  .origin__title {
    font-size: min(3rem, 8vw);
    padding: 0.7em 0;
  }
  .origin__title::before, .origin__title::after {
    background-position: left center;
    background-size: 100% auto;
  }
}

.origin__message {
  margin-top: 3%;
  font-size: min(2rem, 2.34375vw);
  line-height: 2;
  color: #f8eac5;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 767px) {
  .origin__message {
    font-size: min(1.6rem, 4.2666666667vw);
    margin-top: 20px;
    line-height: 1.9;
  }
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #000;
  padding: 25px 0;
}
@media (max-width: 767px) {
  footer {
    padding: 15px 0;
  }
}

.footer__management {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  letter-spacing: 1.4px;
  text-align: center;
}

@media (min-width: 768px) {
  #reason1 {
    aspect-ratio: 1000/1031;
    position: relative;
    overflow: hidden;
    margin-top: 3%;
  }
  #reason1 .reason__list {
    margin-top: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1031px;
  }
}
@media (max-width: 767px) {
  #reason1 {
    aspect-ratio: 337/752;
    position: relative;
    overflow: hidden;
    width: 337px;
    max-width: 100%;
    margin: 5% auto 0;
  }
  #reason1 .reason__list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 0;
    aspect-ratio: inherit;
    width: 337px;
  }
}
/*# sourceMappingURL=style.css.map */