@charset "UTF-8";
/* --
common.css

 ------------------------------------
-- */
@import url(https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap);
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
main, footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  clear: both;
  display: block;
  width: 100%;
  height: 0;
  border: 0;
  margin: 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -mox-appearance: none;
  -moz-appearance: none;
}

select::-ms-expand {
  display: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*-----------------------------------

	$base

-----------------------------------*/
/* --
common.css

 ------------------------------------
-- */
/**======================================
	setting
======================================**/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  min-width: 100%;
  min-height: 100%;
}

[id=wrapper] {
  overflow: hidden;
  position: relative;
}

body {
  color: #333;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.45;
  background: #fff;
}
/* layout
-------------------------------------------------------------- */
.inner {
  width: clamp(63rem, 87.8477306003vw, 120rem);
  max-width: 89%;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bg-wave {
  background: #f5e17b;
  padding: clamp(3rem, 21.9619326501vw, 30rem) 0 clamp(4rem, 7.3206442167vw, 10rem);
  position: relative;
  z-index: 0;
}
.bg-wave::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 1920/755;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -999;
  background: #fff url("../images/bg-wave.svg") no-repeat 50% 0/100%;
}
@media screen and (max-width: 640px) {
  .bg-wave {
    padding-top: 5rem;
  }
}

/* Headline
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

/* common
-------------------------------------------------------------- */
.common__title-01 {
  font-size: clamp(3.2rem, 4.0995607613vw, 5.6rem);
  text-align: center;
  margin-bottom: clamp(3rem, 2.9282576867vw, 4rem);
  line-height: 1;
}
.flow .common__title-01 {
  margin-bottom: 5rem;
}

/* Text
-------------------------------------------------------------- */
a {
  color: #004ea2;
  text-decoration: underline;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
a img {
  opacity: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a:hover {
  color: #ea5413;
}
a:hover img {
  opacity: 0.8;
}

b {
  font-weight: 500;
}

sup {
  font-size: 1rem;
  vertical-align: top;
}

.note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.4rem;
}
.note::before {
  content: "※";
}
.note.large {
  font-size: clamp(1.6rem, 1.4641288433vw, 2rem);
}

/* Image
-------------------------------------------------------------- */
img {
  width: auto;
  height: auto;
  vertical-align: middle;
}

.image img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Btn
-------------------------------------------------------------- */
.btn-01 {
  text-align: center;
}
.btn-01 a {
  font-size: 1.6rem;
  text-decoration: none;
  background: #f5e17b;
  display: inline-block;
  width: 22.4rem;
  text-align: center;
  border-radius: 10rem;
  padding: 0.5rem;
  position: relative;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.btn-01 a::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  display: block;
  border-bottom: solid 2px #004ea2;
  border-right: solid 2px #004ea2;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 0;
  right: 1em;
  bottom: 0;
  margin: auto;
}
.btn-01 a:hover {
  background: #ea5413;
  color: #fff;
}
.btn-01 a:hover::before {
  border-color: #fff;
}
.btn-02 {
  text-align: center;
}
.btn-02 span {
  color: #f5e17b;
  font-size: clamp(1.6rem, 1.4641288433vw, 2rem);
  text-decoration: none;
  position: relative;
  padding-right: 2rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.btn-02 span::after {
  content: "";
  width: 10px;
  height: 10px;
  border: 0;
  display: block;
  border-bottom: solid 2px #f5e17b;
  border-right: solid 2px #f5e17b;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.btn-02 span:hover {
  color: #ea5413;
  cursor: pointer;
}
.btn-02 span:hover::after {
  border-color: #ea5413;
}
.btn-02 span.active::after {
  top: 50%;
  bottom: auto;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/* List
-------------------------------------------------------------- */
ul li {
  list-style: none;
}

.list-circle {
  padding-left: 2.5rem;
}
.list-circle li {
  list-style: disc;
}

.list-number {
  list-style: none;
}
.list-number li {
  font-size: clamp(1.4rem, 1.1713030747vw, 1.6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.list-note-01 {
  margin-top: 1rem;
}
.list-note-01 li {
  font-size: clamp(1.2rem, 1.0248901903vw, 1.4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.list-note-01 dfn {
  font-style: normal;
}
.list-note-01 p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-note-02 li {
  font-size: clamp(1.2rem, 1.0248901903vw, 1.4rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.list-note-02 li::before {
  content: "※";
}
.account-01 .list-note-02 {
  margin-bottom: 2rem;
}

/* Display
-------------------------------------------------------------- */
.sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .sp {
    display: block;
  }
}

@media screen and (max-width: 640px) {
  .pc {
    display: none;
  }
}

/*-----------------------------------

	$base

-----------------------------------*/
/*-----------------------------------

	$mainvisual

-----------------------------------*/
.mainvisual img {
  width: 100%;
  height: auto;
}

/*-----------------------------------

	$base

-----------------------------------*/
/*-----------------------------------

	$summary

-----------------------------------*/
.bg-sidewave {
  position: relative;
  padding-top: clamp(4.8rem, 10.2489019034vw, 14rem);
}
.bg-sidewave::before, .bg-sidewave::after {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.bg-sidewave::before {
  left: 0;
  max-width: 26rem;
  background: url("../images/bg-side-left.svg") no-repeat 0 10rem/100% auto;
}
@media screen and (max-width: 640px) {
  .bg-sidewave::before {
    max-width: 14.8rem;
    background: url("../images/bg-side-left-sp.svg") no-repeat 100% 0;
  }
}
.bg-sidewave::after {
  right: 0;
  max-width: 23rem;
  background: url("../images/bg-side-right.svg") no-repeat 100% 6rem/100% auto;
}
@media screen and (max-width: 640px) {
  .bg-sidewave::after {
    max-width: 14rem;
    background: url("../images/bg-side-right-sp.svg") no-repeat 0 0;
  }
}

.summary {
  padding: 0 0 clamp(10rem, 18.3016105417vw, 25rem);
}
.summary h2 {
  text-align: center;
  font-size: clamp(3.2rem, 4.0995607613vw, 5.6rem);
  padding-bottom: clamp(3rem, 9.5168374817vw, 13rem);
}
@media screen and (max-width: 640px) {
  .summary h2 {
    padding-bottom: 2.4rem;
  }
}
.summary__unit {
  width: 80%;
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}
.summary__unit:not(:first-child) {
  margin-top: clamp(4rem, 4.39238653vw, 6rem);
}
@media screen and (max-width: 640px) {
  .summary__unit {
    width: 83%;
  }
}
.summary__title {
  text-align: center;
}
.summary__title span {
  font-size: clamp(2rem, 1.756954612vw, 2.4rem);
  display: inline-block;
  background: #f5e17b;
  width: 88%;
  max-width: 46rem;
  padding: 0.75em;
  border-radius: 30rem;
}
@media screen and (max-width: 640px) {
  .summary__title span {
    width: 68%;
    padding: 0.5em 0;
  }
}
.summary__text {
  border: 1px solid #f5e17b;
  padding: clamp(5rem, 5.1244509517vw, 7rem) 1em clamp(3rem, 3.6603221083vw, 5rem);
  padding: 3.5em 1em 2em;
  margin: -4rem auto 0;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 640px) {
  .summary__text {
    padding: 4rem 0.5rem 3rem;
    margin-top: -2.5rem;
  }
  .kifu .summary__text {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .kifu .summary__text br {
    display: none;
  }
}
.important .summary__text {
  text-align: left;
  padding-left: clamp(1.5rem, 3.2942898975vw, 4.5rem);
  padding-right: clamp(1.5rem, 3.2942898975vw, 4.5rem);
}
@media screen and (max-width: 640px) {
  .important .summary__text {
    font-size: 1.6rem;
  }
}
.summary__text b {
  font-size: clamp(2rem, 1.756954612vw, 2.4rem);
}
@media screen and (max-width: 640px) {
  .kifu .summary__text b {
    font-size: 1.6rem;
  }
}
.summary .calculate {
  background: #FFF9DB;
  border-radius: 48px;
  padding: clamp(2rem, 2.196193265vw, 3rem) clamp(1rem, 4.39238653vw, 6rem);
  text-align: center;
}
@media screen and (max-width: 640px) {
  .summary .calculate {
    border-radius: 30px;
  }
}
.summary .calculate__title {
  font-size: clamp(2rem, 1.756954612vw, 2.4rem);
  background: #E29119;
  color: #fff;
  padding: 0.5em;
  border-radius: 100px;
  margin-bottom: clamp(1.5rem, 1.8301610542vw, 2.5rem);
}
@media screen and (max-width: 640px) {
  .summary .calculate__title {
    padding: 0.25em;
  }
}
.summary .calculate__text {
  font-size: clamp(2rem, 1.756954612vw, 2.4rem);
}
.summary .calculate__text .note {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.summary .calculate__text.example::after {
  content: "";
  display: block;
  width: 5.1rem;
  height: 2.6rem;
  margin: 2.5rem auto 1rem;
  background: url("../images/arrow-02.svg") no-repeat 0 0/100%;
}
@media screen and (max-width: 640px) {
  .summary .calculate__text.example::after {
    width: 3.1rem;
    height: 1.6rem;
    margin: 1.5rem auto 0.25rem;
  }
}
.summary .calculate__text.example b {
  display: block;
  color: #E29119;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 640px) {
  .summary .calculate__text.example b {
    font-size: 1.6rem;
  }
}
.summary .calculate__text.example .note {
  margin-top: 0.5em;
}
.summary .calculate__text.estimate ul {
  text-align: left;
  display: inline-block;
  margin-top: 0.5em;
}
.summary .calculate__text.estimate li {
  font-size: clamp(1.8rem, 2.3426061493vw, 3.2rem);
}
.summary .calculate__text.estimate li br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .summary .calculate__text.estimate li br {
    display: block;
  }
}
.summary .calculate__text.estimate .note {
  margin-top: 2em;
}
@media screen and (max-width: 640px) {
  .summary .calculate__text.estimate .note {
    text-align: left;
    width: 88%;
    margin: 1em auto 0;
  }
}
.summary .product ul {
  text-align: left;
  display: inline-block;
  margin-top: 0.5em;
}
.summary .product ul li {
  font-size: clamp(1.6rem, 1.4641288433vw, 2rem);
  font-weight: 500;
}

/*-----------------------------------

	$base

-----------------------------------*/
/*-----------------------------------

	$apply

-----------------------------------*/
.flow__title {
  background: #E29119;
  color: #fff;
  border-radius: 50rem;
  text-align: center;
  padding: 0.5em;
  margin-bottom: clamp(2rem, 1.9033674963vw, 2.6rem);
}
.flow-03 .flow__title {
  margin-bottom: clamp(1.8rem, 3.3674963397vw, 4.6rem);
}
.flow-04 .flow__title {
  margin-bottom: clamp(3.7rem, 4.2459736457vw, 5.8rem);
}
@media screen and (max-width: 640px) {
  .flow__title {
    border-radius: 0;
    position: relative;
  }
  .flow__title:hover {
    cursor: pointer;
  }
  .flow__title::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    background: url("../images/icon-plus.svg") no-repeat 0 0/cover;
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .flow__title.close::after {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.flow__title-sub {
  text-align: center;
  font-size: clamp(2rem, 1.756954612vw, 2.4rem);
  margin-bottom: clamp(1.4rem, 2.9282576867vw, 4rem);
}
.flow__title-sub::before {
  content: "〈";
}
.flow__title-sub::after {
  content: "〉";
}
.flow-01 .flow__title-sub {
  font-size: clamp(1.6rem, 1.756954612vw, 2.4rem);
}
@media screen and (max-width: 640px) {
  .ib .flow__title-sub::before, .ib .flow__title-sub::after {
    display: none;
  }
  .ib .flow__title-sub span {
    display: inline-block;
    position: relative;
    padding: 0 2rem;
  }
  .ib .flow__title-sub span::before, .ib .flow__title-sub span::after {
    content: "";
    display: block;
    width: 2rem;
    height: 4.5rem;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .ib .flow__title-sub span::before {
    left: 0;
    background: url("../images/angle.svg") no-repeat 0 0;
  }
  .ib .flow__title-sub span::after {
    right: 0;
    background: url("../images/angle.svg") no-repeat 0 0;
    -webkit-transform: rotate(-180deg) translateY(50%);
            transform: rotate(-180deg) translateY(50%);
  }
}
@media screen and (max-width: 640px) {
  .flow__drawer {
    padding: 0 1.5rem 3rem;
  }
  .flow-01 .flow__drawer {
    padding-left: 0.25em;
    padding-right: 0.25em;
  }
}
.flow__list {
  list-style: none;
  padding: 0;
}
.flow__list > li {
  background: #fff;
  padding: clamp(1rem, 3.6603221083vw, 5rem) clamp(1.4rem, 4.39238653vw, 6rem) clamp(4rem, 6.588579795vw, 9rem);
}
.flow__list > li:not(:last-child) {
  margin-bottom: clamp(11.5rem, 15.0073206442vw, 20.5rem);
  position: relative;
}
.flow__list > li:not(:last-child)::after {
  content: "";
  display: block;
  width: clamp(5.7rem, 11.7130307467vw, 16rem);
  height: clamp(3.2rem, 6.4421669107vw, 8.8rem);
  background: url("../images/arrow-02.svg") no-repeat 0 0/100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: clamp(4.7rem, 5.3440702782vw, 7.3rem) auto 0;
}
@media screen and (max-width: 640px) {
  .flow__list > li {
    padding: 0;
  }
}
.flow .flow-01 .app {
  margin-bottom: clamp(8rem, 7.3206442167vw, 10rem);
}
.flow .flow-01 .app__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  gap: 4%;
}
.flow .flow-01 .app__box {
  max-width: 30rem;
}
.flow .flow-01 .app__box .image {
  max-width: 24.5rem;
  margin: 0 auto 2.5rem;
}
.flow .flow-01 .app__box .text {
  text-align: center;
  font-size: 2rem;
}
.flow .flow-01 .app .arrow {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 10.4rem;
}
.flow .flow-01 .app .arrow img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 640px) {
  .flow .flow-01 .app__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow .flow-01 .app .arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    width: 7rem;
  }
}
.flow .flow-01 .ib__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  gap: 1.8rem 6.5%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 640px) {
  .flow .flow-01 .ib__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.flow .flow-01 .ib .image {
  max-width: 23.6rem;
}
.flow .flow-01 .ib .text {
  text-align: center;
  font-size: 2rem;
}
.flow .flow-02__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  gap: 8rem 4%;
}
.flow .flow-02__unit {
  width: 50%;
  max-width: 36rem;
  text-align: center;
}
.flow .flow-02__unit:last-child {
  position: relative;
  padding-bottom: clamp(5rem, 4.39238653vw, 6rem);
}
.flow .flow-02__unit:last-child::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-bottom: 36px solid #004ea2;
  border-top: 0;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 640px) {
  .flow .flow-02__unit:last-child::after {
    border-right-width: 15px;
    border-left-width: 15px;
    border-bottom-width: 24px;
  }
}
.flow .flow-02 .image {
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 640px) {
  .flow .flow-02__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flow .flow-02__unit {
    width: 100%;
    margin: auto;
  }
}
.flow .relation {
  background: #004ea2;
  color: #fff;
  border-radius: 22px;
  padding: 1.6rem clamp(1.6rem, 2.9282576867vw, 4rem);
}
.flow .relation .btn-02 {
  margin-top: 1rem;
}
.flow .relation__drawer {
  display: none;
  margin-top: clamp(1.6rem, 2.196193265vw, 3rem);
  padding-bottom: clamp(1.6rem, 2.9282576867vw, 4rem);
}
.flow .relation__title {
  background: #fff;
  color: #004ea2;
  text-align: center;
  font-size: clamp(1.4rem, 1.756954612vw, 2.4rem);
  padding: 0.25em;
  margin-bottom: clamp(0.8rem, 1.8301610542vw, 2.5rem);
}
@media screen and (max-width: 640px) {
  .flow .relation__title {
    padding: 0;
  }
}
.flow .relation__title-sub {
  font-size: clamp(1.6rem, 1.756954612vw, 2.4rem);
  text-align: center;
  margin-bottom: clamp(1rem, 1.0980966325vw, 1.5rem);
}
.flow .relation__title-sub::before {
  content: "〈";
}
.flow .relation__title-sub::after {
  content: "〉";
}
.flow .relation__unit {
  font-size: clamp(1.4rem, 1.1713030747vw, 1.6rem);
}
.flow .relation__unit:not(:last-child) {
  margin-bottom: clamp(2.5rem, 2.9282576867vw, 4rem);
}
.flow .relation__unit .btn-01 {
  margin-top: 2rem;
}
@media screen and (max-width: 640px) {
  .flow .relation .app .list-number .note {
    font-size: 1.2rem;
  }
}
.flow .relation .ib__wrap {
  margin-top: 2em;
}
.flow .relation .ib__wrap > p {
  color: #f5e17b;
}
.flow .relation .ib__wrap .js-trigger {
  text-decoration: underline;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.flow .relation .ib__wrap .js-trigger:hover {
  cursor: pointer;
  color: #ea5413;
}
.flow .relation .ib__box {
  display: none;
  background: #f5e17b;
  padding: 2rem;
  border-radius: 21px;
  color: #004ea2;
  margin-top: 2rem;
}
.flow .relation .ib .list-number {
  margin-top: 1em;
}
.flow .relation .ib .list-number li:not(:last-child) {
  margin-bottom: 1em;
}
.flow .flow-03__wrap {
  text-align: center;
  max-width: clamp(63rem, 68.0819912152vw, 93rem);
  margin: auto;
}
.flow .flow-03 .image {
  margin-bottom: clamp(5rem, 4.39238653vw, 6rem);
}
.flow .flow-03 .image img {
  width: 100%;
  height: auto;
}
.flow .flow-03 .image .sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .flow .flow-03 .image img {
    max-width: 20.5rem;
  }
  .flow .flow-03 .image .sp {
    display: block;
  }
  .flow .flow-03 .image .pc {
    display: none;
  }
}
.flow .flow-03 .text b {
  color: #E29119;
}
@media screen and (max-width: 1024px) {
  .flow .flow-03 .text br {
    display: none;
  }
}
.flow .flow-04__wrap {
  text-align: center;
  max-width: clamp(63rem, 68.0819912152vw, 93rem);
  margin: auto;
}
.flow .flow-04 .image {
  margin-bottom: clamp(5rem, 4.39238653vw, 6rem);
}
.flow .flow-04 .image img {
  width: 100%;
  max-width: 32rem;
}
@media screen and (max-width: 640px) {
  .flow .flow-04 .image img {
    max-width: 23.6rem;
  }
}

/*-----------------------------------

	$base

-----------------------------------*/
/*-----------------------------------

	$footer

-----------------------------------*/
.footer {
  padding-top: clamp(5.6rem, 8.4919472914vw, 11.6rem);
}
.footer__list li {
  font-size: clamp(1.4rem, 2.196193265vw, 2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.footer__list li::before {
  content: "◆";
}
.footer .copyright {
  font-size: 1.4rem;
  padding-top: clamp(5.6rem, 10.3953147877vw, 14.2rem);
  text-align: center;
}
.footer .cta {
  width: 100%;
}
.footer .cta.js-floating {
  position: fixed;
  bottom: 0;
  z-index: 999;
}
.footer .cta ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
  margin: auto;
  padding: 0;
}
.footer .cta ul img {
  width: 100%;
  height: auto;
  display: block;
}
.footer .cta ul img.sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .footer .cta ul img.sp {
    display: block;
  }
  .footer .cta ul img.pc {
    display: none;
  }
}