@charset "UTF-8";
:root {
  --fv_base: 1280;
}
@media (max-width: 767px) {
  :root {
    --fv_base: 390;
  }
}

/* リセット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: 1120px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    width: 390px;
    padding: 0 min(5.13%, 20px);
  }
}

/* セクションタイトル
------------------------------*/
.c-sec-ttl--center {
  text-align: center;
}

.c-sec-ttl__en {
  display: block;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, #112E76 0%, #B9CDFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 767px) {
  .c-sec-ttl__en {
    font-size: 1.6rem;
  }
}

.c-sec-ttl__ja {
  display: block;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .c-sec-ttl__ja strong {
    font-size: 4rem;
  }
}
@media (max-width: 767px) {
  .c-sec-ttl__ja {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}

/* CTAボタン 
------------------------------*/
.c-cta-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18.75em;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, #F4A000 0%, #F65353 100%);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-size: min(3.2rem, 2.8571428571vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  position: relative;
}
.c-cta-button::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_user.webp) no-repeat center center/contain;
  width: 1.25em;
  aspect-ratio: 80/80;
  margin-right: 0.5em;
  transition: all 0.3s;
}
.c-cta-button span {
  transition: all 0.3s;
}
@media (hover: hover) {
  .c-cta-button:hover {
    color: #F4A000;
    opacity: 1;
  }
  .c-cta-button:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 8px;
  }
  .c-cta-button:hover::before {
    background: url(../img/icon_user_orange.webp) no-repeat center center/contain;
    z-index: 2;
  }
  .c-cta-button:hover span {
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .c-cta-button {
    width: 100%;
    max-width: 360px;
    font-size: 1.6rem;
    padding: 1.25em 0;
  }
  .c-cta-button::before {
    width: 2em;
  }
}

/* 英語・数字フォント
------------------------------*/
.u-text-en {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}

/*------------------------------
header
3------------------------------*/
header {
  padding: 10px 0;
}
@media (max-width: 767px) {
  header {
    padding: 14px 0;
  }
}

.header__inner {
  width: auto;
  padding: 0 40px;
  max-width: 100%;
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 24px;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 200px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 160px;
  }
}

.header__button {
  width: 280px;
}
.header__button a {
  display: inline-block;
  width: 100%;
  background: linear-gradient(180deg, #F4A000 0%, #F65353 100%);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  padding: 1.375em 0;
  position: relative;
  transition: all 0.3s;
}
@media (hover: hover) {
  .header__button a:hover {
    color: #F4A000;
    opacity: 1;
  }
  .header__button a:hover::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 8px;
  }
  .header__button a:hover::before {
    background: url(../img/icon_user_orange.webp) no-repeat center center/contain;
    z-index: 2;
  }
  .header__button a:hover span {
    position: relative;
    z-index: 2;
  }
}
@media (max-width: 767px) {
  .header__button {
    display: none;
  }
}

/*------------------------------
fv
------------------------------*/
.fv {
  position: relative;
  aspect-ratio: 1280/720;
  width: 100%;
  max-height: 720px;
  z-index: 100;
  overflow: hidden;
}
.fv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #112E76;
  -webkit-clip-path: polygon(0 0, 100% 0, max(71%, 100% - 280.14px) 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, max(71%, 100% - 280.14px) 100%, 0% 100%);
  width: 75.5%;
  height: 100%;
}
.fv::after {
  content: "";
  position: absolute;
  background: url(../img/fv_dec.webp) no-repeat center center/100%;
  aspect-ratio: 1196/1672;
  right: 0%;
  top: 45%;
  transform: translate(0%, -50%);
  width: 47%;
  height: auto;
}
@media (max-width: 767px) {
  .fv {
    aspect-ratio: unset;
    max-height: unset;
  }
  .fv::before {
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 57%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 57%, 0% 100%);
  }
  .fv::after {
    content: "";
    position: absolute;
    background: url(../img/fv_dec_sp.webp) no-repeat center center/100%;
    transform: translate(0%, -100%);
    aspect-ratio: 444/810;
    width: 57%;
    right: 0%;
    top: 100%;
  }
}

@media (min-width: 768px) {
  .fv__inner {
    width: 1200px;
    max-width: 94%;
  }
}
@media (max-width: 767px) {
  .fv__inner {
    width: 100%;
  }
}

.fv__content {
  position: relative;
  padding-top: min(112px, 8.75vw);
}
@media (max-width: 767px) {
  .fv__content {
    padding-top: 21%;
    padding-bottom: 64%;
    z-index: 100;
  }
}

.fv__copy span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(4.8rem, 100vw * 48 / var(--fv_base));
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.05em;
  background: #fff;
  color: #112E76;
  padding: 0 0.3em;
  height: 1.3lh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv__copy span strong {
  font-size: min(6.4rem, 100vw * 64 / var(--fv_base));
  font-family: "Oswald", sans-serif;
}
.fv__copy span:nth-child(2) {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .fv__copy span {
    font-size: min(2.4rem, 6.1538461538vw);
    font-size: 6.1538461538vw;
    padding: 8px;
    height: 1.5lh;
    align-items: flex-end;
    padding: 0 0.3em 0.2em;
  }
  .fv__copy span:nth-child(2) {
    margin-top: 2%;
  }
  .fv__copy span strong {
    font-size: min(4rem, 10.2564102564vw);
    font-size: 10.2564102564vw;
    line-height: 1;
  }
}

.fv__subtext {
  margin-top: 1.3em;
  font-size: min(2.4rem, 100vw * 24 / var(--fv_base));
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
  color: #fff;
}
@media (max-width: 767px) {
  .fv__subtext {
    font-size: min(1.6rem, 4.1025641026vw);
    font-size: 4.1025641026vw;
    line-height: 2;
  }
}

.fv__button {
  margin-top: 3%;
}
.fv__button a {
  margin: unset;
}
@media (min-width: 768px) {
  .fv__button a {
    font-size: min(3.2rem, 100vw * 32 / var(--fv_base));
  }
}
@media (max-width: 767px) {
  .fv__button {
    margin-top: 12%;
  }
  .fv__button a {
    font-size: min(1.6rem, 4.1025641026vw);
    font-size: 4.1025641026vw;
    max-width: unset;
  }
}

.fv__tags {
  width: 60%;
  margin-top: 2.4%;
  display: flex;
  flex-wrap: wrap;
}
.fv__tags li {
  font-size: min(2rem, 100vw * 20 / var(--fv_base));
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 0.6em 0.8em;
  margin: 0.9em 0.75em;
  margin-left: 0;
  margin-top: 0;
}
@media (max-width: 767px) {
  .fv__tags {
    width: 75%;
    margin-top: 11.4%;
  }
  .fv__tags li {
    font-size: min(1.4rem, 3.5897435897vw);
    font-size: 3.5897435897vw;
    margin: 0.5em 0.75em;
    margin-left: 0;
    margin-top: 0;
    padding: 0.8em 0.3em;
    border-width: 2px;
  }
}

/*------------------------------
advantage
------------------------------*/
.advantage {
  background: #F4F7FF;
  padding: 125px 0;
  position: relative;
}
.advantage::before {
  content: "";
  position: absolute;
  background: url(../img/dec1.webp) no-repeat center center/100%;
  transform: translate(0%, -31%);
  aspect-ratio: 1393/1382;
  width: 54%;
  left: 0%;
  top: 0%;
}
@media (max-width: 767px) {
  .advantage {
    padding: 80px 0;
    overflow: hidden;
  }
  .advantage::before {
    width: 65%;
  }
}

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

.advantage__item {
  width: calc(33.3% - 16px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  position: relative;
  padding: 68px 10px 55px;
}
.advantage__item:nth-child(n+2) {
  margin-left: 24px;
}
@media (max-width: 767px) {
  .advantage__item {
    width: 100%;
    padding: 64px 10px 24px;
    padding: 18% 2% 5%;
  }
  .advantage__item:nth-child(n+2) {
    margin-top: 60px;
    margin-left: 0;
    padding-top: 8%;
  }
}

.advantage__number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3;
  letter-spacing: 0.04em;
  text-align: center;
  color: #112E76;
  font-family: "Oswald", sans-serif;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  width: 3em;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.advantage__number span {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .advantage__number span {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -25%);
  }
}

.advantage__tag {
  position: absolute;
  top: 16px;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: min(1.6rem, 1.6927083333vw);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: #F4A000;
  padding: 5px 12px;
  display: flex;
  align-items: center;
}
.advantage__tag::before {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_crown.webp) no-repeat center center/contain;
  width: 24px;
  aspect-ratio: 48/48;
  margin-right: 8px;
}
@media (max-width: 767px) {
  .advantage__tag {
    font-size: 1.4rem;
  }
}

.advantage__icon {
  width: min(144px, 12.8571428571vw);
  margin: 0 auto;
}
@media (max-width: 767px) {
  .advantage__icon {
    width: 36%;
    z-index: 10;
    position: relative;
  }
}

.advantage__point {
  margin-top: 32px;
  font-size: min(2.4rem, 1.953125vw);
  font-weight: 700;
  text-align: center;
  color: #112E76;
}
@media (max-width: 767px) {
  .advantage__point {
    font-size: min(2.4rem, 6.1538461538vw);
    margin-top: 1em;
  }
}

.advantage__description {
  font-size: min(1.6rem, 1.6927083333vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  .advantage__description {
    font-size: min(1.5rem, 3.8461538462vw);
    margin-top: 0.4em;
  }
}

.advantage__cta {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .advantage__cta {
    margin-top: 48px;
  }
}

/*------------------------------
flow
------------------------------*/
.flow {
  padding-top: 18%;
  position: relative;
  z-index: 100;
}
.flow::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/flow_top-img.webp) no-repeat center center/contain;
  width: 100%;
  aspect-ratio: 2560/688;
}
.flow::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(17, 46, 118, 0.8);
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 0);
  width: 100%;
  aspect-ratio: 1280/111;
}
@media (max-width: 767px) {
  .flow {
    padding-top: 33%;
  }
  .flow::before {
    background: url(../img/flow_top-img_sp.webp) no-repeat center center/contain;
    aspect-ratio: 780/336;
  }
  .flow::after {
    aspect-ratio: 1280/171;
  }
}

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

.flow__item {
  background: #F4F7FF;
  border-left: 16px solid #F4A000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 3% 2.2%;
  display: flex;
  align-items: center;
}
.flow__item:nth-child(n+2) {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .flow__item {
    border-left: 8px solid #F4A000;
    padding: 6% 4%;
    padding-right: 3%;
    align-items: flex-start;
  }
}

.flow__meta {
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .flow__meta {
    display: block;
    width: 64px;
    text-align: center;
  }
}

.flow__number {
  font-size: min(4rem, 3.5714285714vw);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Oswald", sans-serif;
  color: #112E76;
}
@media (max-width: 767px) {
  .flow__number {
    font-size: min(2.4rem, 6.1538461538vw);
    line-height: 1;
    margin-bottom: 10%;
  }
}

.flow__icon {
  width: min(100px, 8.9285714286vw);
}
@media (max-width: 767px) {
  .flow__icon {
    width: 64px;
  }
}

.flow__content {
  margin-left: 4.85%;
  align-self: flex-start;
}
@media (max-width: 767px) {
  .flow__content {
    margin-left: 7%;
  }
}

.flow__label {
  font-size: min(3.2rem, 2.8571428571vw);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #112E76;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .flow__label {
    font-size: 2rem;
  }
}

.flow__description {
  font-size: min(1.6rem, 1.8229166667vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .flow__description {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }
}

/*------------------------------
comparison
------------------------------*/
.comparison {
  padding: 125px 0 140px;
  position: relative;
}
.comparison::after {
  content: "MACHINE FREAK";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-1.7%, 5%);
  letter-spacing: 0.04em;
  font-size: min(14.4rem, 12.8571428571vw);
  font-weight: 600;
  background: linear-gradient(90deg, #112E76 0%, #B9CDFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.1;
  font-family: "Oswald", sans-serif;
}
.comparison::before {
  content: "";
  position: absolute;
  background: url(../img/dec1.webp) no-repeat center center/100%;
  transform: translate(0%, -31%) scale(-1, 1);
  aspect-ratio: 1393/1382;
  width: 54%;
  right: 0%;
  top: 0%;
}
.comparison .inner {
  position: relative;
  z-index: 100;
}
@media (max-width: 767px) {
  .comparison {
    padding: 80px 0;
    overflow: hidden;
  }
  .comparison::before {
    transform: translate(0%, -24%) scale(-1, 1);
    width: 61%;
  }
  .comparison::after {
    font-size: min(6.4rem, 16.4102564103vw);
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .comparison__table-wrap {
    overflow: scroll;
    overflow-y: hidden;
    width: calc(100% + min(5.13vw, 20px) + max(0px, (100vw - 390px) / 2));
  }
}

.comparison__table {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .comparison__table {
    margin-top: 11%;
    width: 640px;
  }
}

.comparison__cta {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .comparison__cta {
    margin-top: 14%;
  }
}

/*------------------------------
features
------------------------------*/
.features {
  padding: 144px 0;
  background: #F4F7FF;
}
@media (max-width: 767px) {
  .features {
    padding: 80px 0;
  }
}

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

.features__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.features__item:nth-child(2n) {
  flex-direction: row-reverse;
}
.features__item:nth-child(n+2) {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .features__item {
    display: block;
  }
  .features__item:nth-child(n+2) {
    margin-top: 40px;
  }
}

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

.features__number {
  font-size: min(9.6rem, 8.5714285714vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, #112E76 0%, #B9CDFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "Oswald", sans-serif;
  margin-top: -0.1em;
  margin-bottom: 0.2em;
}
@media (max-width: 767px) {
  .features__number {
    font-size: 4.8rem;
  }
}

.features__title {
  display: inline;
  font-size: min(3.2rem, 2.8571428571vw);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(transparent 80%, #F4A000 20%);
  color: #112E76;
}
@media (max-width: 767px) {
  .features__title {
    font-size: min(2.4rem, 6.1538461538vw);
    margin-top: 16px;
    letter-spacing: 0.01em;
  }
}

.features__description {
  margin-top: 1em;
  font-size: min(1.6rem, 1.8229166667vw);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .features__description {
    margin-top: 0.6em;
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.features__image {
  width: 60%;
}
@media (max-width: 767px) {
  .features__image {
    width: 100%;
    margin-top: 24px;
  }
}

/*------------------------------
cta01
------------------------------*/
.cta01 {
  background: linear-gradient(90deg, #112E76 0%, #B9CDFF 100%);
  padding: min(40px, 3.5714285714vw);
  position: relative;
  z-index: 100;
}

.cta01__container {
  background: #fff;
  padding-top: min(40px, 3.5714285714vw);
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .cta01__container {
    max-width: 400px;
  }
}

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

.cta01__content {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 4.6%;
  position: relative;
  padding: 0 3.3% min(40px, 3.5714285714vw);
}
@media (max-width: 767px) {
  .cta01__content {
    padding-bottom: 32%;
  }
}

.cta01__image {
  width: 32%;
  position: absolute;
  bottom: 0;
  left: 3%;
}

.cta01__body {
  width: 63%;
  margin-left: auto;
}
@media (max-width: 767px) {
  .cta01__body {
    width: 100%;
  }
}

.cta01__heading {
  display: inline-block;
  font-size: min(4rem, 3.5714285714vw);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #112E76;
  background: linear-gradient(transparent 80%, #F4A000 20%);
}
.cta01__heading strong {
  font-size: min(5.6rem, 5vw);
  font-family: "Oswald", sans-serif;
}
@media (max-width: 767px) {
  .cta01__heading {
    font-size: min(2rem, 5.1282051282vw);
  }
}

.cta01__text {
  margin-top: 24px;
  font-size: min(2.4rem, 2.1428571429vw);
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .cta01__text {
    font-size: min(1.6rem, 4.1025641026vw);
  }
}

.cta01__button {
  margin-top: 40px;
}
.cta01__button a {
  width: 100%;
}

/*------------------------------
case
------------------------------*/
.case {
  padding: 125px 0;
  position: relative;
}
.case::before {
  content: "";
  position: absolute;
  background: url(../img/dec1.webp) no-repeat center center/100%;
  transform: translate(0%, -31%);
  aspect-ratio: 1393/1382;
  width: 54%;
  left: 0%;
  top: 0%;
}
@media (max-width: 767px) {
  .case {
    padding: 80px 0;
  }
  .case::before {
    transform: translate(0%, -16%);
    width: 60%;
  }
}

.case__list {
  margin-top: 5%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .case__list {
    margin-top: 11%;
    display: block;
  }
}

.case__item {
  width: 30.7%;
  border: 1px solid #C5C5C5;
  padding: 1.3%;
}
.case__item:not(:nth-child(3n)) {
  margin-right: 3.9%;
}
.case__item:nth-child(n+4) {
  margin-top: 3.9%;
}
@media (max-width: 999px) {
  .case__item {
    width: 48.05%;
  }
  .case__item:nth-child(2n) {
    margin-left: 3.9%;
  }
  .case__item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .case__item:nth-child(n+3) {
    margin-top: 3.9%;
  }
}
@media (max-width: 767px) {
  .case__item {
    width: 100%;
    padding: 4%;
  }
  .case__item:nth-child(n+2) {
    margin-top: 16px;
    margin-left: 0;
  }
}

.case__thumbnail {
  position: relative;
}
.case__thumbnail img {
  aspect-ratio: 312/180;
  -o-object-fit: cover;
     object-fit: cover;
}

.case__label {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px;
  background: #112E76;
  border: 1px solid #C5C5C5;
  color: #fff;
}

.case__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #112E76;
  letter-spacing: 0.04em;
  margin-top: 0.7em;
  height: 48px;
}
@media (max-width: 767px) {
  .case__title {
    height: auto;
    margin-top: 0.5em;
  }
}

.case__info {
  margin-top: 3%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.case__info dt:nth-of-type(n + 2), .case__info dd:nth-of-type(n + 2) {
  margin-top: 1%;
}
.case__info dt {
  width: 70px;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: #F4A000;
  border: 1px solid #C5C5C5;
  text-align: center;
  padding: 0.3em 0;
}
.case__info dd {
  width: calc(100% - 70px);
  padding-left: 16px;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

/*------------------------------
faq
------------------------------*/
.faq {
  background: #F4F7FF;
  padding: 144px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 80px 0;
  }
}

.faq__list {
  margin-top: 3%;
}
@media (max-width: 767px) {
  .faq__list {
    margin-top: 11%;
  }
}

.faq__item {
  font-size: min(2.4rem, 2.1428571429vw);
  font-weight: 700;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .faq__item {
    font-size: 1.3rem;
    letter-spacing: 0.01em;
  }
}

.faq__q {
  background: #fff;
  padding: 1.9em 5.3em;
  position: relative;
}
.faq__q::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.67em;
  transform: translateY(-50%);
  background: url(../img/icon_Q.webp) no-repeat center center/contain;
  width: 2.33em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .faq__q {
    padding: 1.15em 4.9em;
    padding-right: 11%;
  }
  .faq__q::before {
    left: 1.27em;
  }
}

.faq__icon {
  cursor: pointer;
  width: 34px;
  aspect-ratio: 1/1;
  position: absolute;
  right: 3.5%;
  top: 50%;
  transform: translateY(-50%);
}
.faq__icon.is-open .faq__bar2 {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__bars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__bar1 {
  width: 16px;
  height: 2px;
  background: #112E76;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__bar2 {
  width: 2px;
  height: 16px;
  background: #112E76;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}

.faq__a {
  display: none;
  background: #112E76;
  padding: 1.8em 5.3em;
  padding-right: 1.8em;
  color: #fff;
  position: relative;
}
.faq__a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.67em;
  transform: translateY(-50%);
  background: url(../img/icon_A.webp) no-repeat center center/contain;
  width: 2.33em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .faq__a {
    padding: 1.25em 4.9em;
    padding-right: 11%;
  }
  .faq__a::before {
    left: 1.27em;
  }
}

/*------------------------------
cta02
------------------------------*/
.cta02 {
  background: #112E76;
  padding: 140px 0;
  position: relative;
}
.cta02::before {
  content: "";
  position: absolute;
  background: url(../img/dec2.webp) no-repeat center center/100%;
  transform: translate(0%, 0%);
  aspect-ratio: 1364/952;
  width: 54%;
  right: 0%;
  top: 0%;
  max-width: 692px;
}
@media (max-width: 767px) {
  .cta02 {
    padding: 65px 0;
  }
  .cta02::before {
    width: 66%;
  }
}

.cta02__message {
  font-size: min(3.2rem, 2.8571428571vw);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}
.cta02__message strong {
  font-size: min(4rem, 3.5714285714vw);
  color: #F4A000;
}
@media (max-width: 767px) {
  .cta02__message {
    font-size: min(1.6rem, 4.1025641026vw);
  }
  .cta02__message strong {
    font-size: min(2.4rem, 6.1538461538vw);
  }
}

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

/*------------------------------
footer
------------------------------*/
footer {
  padding: 78px 0;
}
@media (max-width: 767px) {
  footer {
    padding: 32px 0;
  }
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__content {
    display: block;
  }
}

.footer__logo {
  width: 278px;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 200px;
    margin: 0 auto;
  }
}

.footer__copyright {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 1.5em;
    font-size: 1rem;
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */