<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*----------------------------------------------------
  basic
----------------------------------------------------*/
/*@media (min-width: 960px) {
}*/
/*@media only screen and (max-width: 768px) {
}*/
/*----------------------------------------------------
  sec-opn
----------------------------------------------------*/
.opening__bg {
  position: relative;
  width: 100%;
  padding-top: 40%;
  background: #57dcb9;
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  z-index: 0;
  overflow: hidden;
}
.opening__ttl {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%) translateX(-5%);
  -webkit-transform: translateY(-50%) translateX(-5%);
  display: inline-block;
  min-width: 35%;
  text-align: center;
  background: #FFF;
  transform: rotate(-5deg);
  transform-origin: -50% 0;
  z-index: 1;
}
.opening__ttl h1 {
  padding: 15px 30px;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #28be78;
  border: 5px solid;
  -o-border-image: linear-gradient(to right, #28d99d 0%, #e4cf73 52%, #ff89ff 100%);
     border-image: linear-gradient(to right, #28d99d 0%, #e4cf73 52%, #ff89ff 100%);
  border-image-slice: 1;
}
.opening__ttl h1 span {
  font-size: 30px;
  display: block;
  margin-top: 15px;
}
.opening__img {
  position: absolute;
  bottom: 0;
  right: 20%;
  transform: translateY(0) translateX(20%);
  -webkit-transform: translateY(0) translateX(20%);
  width: 50%;
}
.opening__img img {
  width: 100%;
}

@media (min-width: 769px) and (max-width: 1499px) {
  .opening__ttl h1 {
    font-size: 40px;
    font-size: 2.6666666667vw !important;
  }
  .opening__ttl h1 span {
    font-size: 30px;
    font-size: 2vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .opening__bg {
    padding-top: 75%;
  }
  .opening__ttl {
    top: 20%;
    left: 20px;
    transform-origin: -20% 0;
    min-width: 60%;
  }
  .opening__ttl h1 {
    padding: 12px 20px;
    font-size: 23px;
    font-size: 6.1333333333vw !important;
    letter-spacing: 2px;
    border: 3px solid;
    -o-border-image: linear-gradient(to right, #28d99d 0%, #e4cf73 52%, #ff89ff 100%);
       border-image: linear-gradient(to right, #28d99d 0%, #e4cf73 52%, #ff89ff 100%);
    border-image-slice: 1;
  }
  .opening__ttl h1 span {
    font-size: 20px;
    font-size: 5.3333333333vw !important;
    margin-top: 10px;
  }
  .opening__img {
    width: 80%;
  }
}
/*----------------------------------------------------
  flow-heading
----------------------------------------------------*/
.flow-heading {
  padding: 0;
}
.flow-heading__bg {
  padding: 120px 6.777vw 0;
  position: relative;
  text-align: center;
}
.flow-heading__ttl {
  position: relative;
  display: inline-block;
  min-width: 300px;
  padding: 12px 20px 12px 22px;
  color: #FFF;
  background: #28be78;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.2rem;
  transform: rotate(-5deg);
  transform-origin: 100% 100%;
  margin-bottom: 50px;
}
.flow-heading__ttl img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%) translateX(75%);
  -webkit-transform: translateY(-100%) translateX(75%);
  width: 75px;
}
.flow-heading p {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 40px;
}
.flow-heading__modal {
  text-align: center;
}
.flow-heading__modal a {
  display: inline-block;
}

.modal-trigger {
  position: relative;
  background: #FFF;
  color: #28be78;
  border: 3px solid #28be78;
  display: inline-block;
  min-width: 300px;
  padding: 20px 10px;
  border-radius: 10px 0px 10px 10px;
  box-shadow: 10px 10px 0px 0 rgba(40, 190, 120, 0.5);
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.15rem;
  font-weight: 700;
}
.modal-trigger:hover {
  color: #28be78;
  box-shadow: none;
  transform: translate(0, 10px);
}
.modal-trigger:last-of-type {
  margin-right: 0;
}
.modal-trigger img {
  width: 100%;
  height: auto;
}

/* これが無いとモーダルウィンドウ表示の際に余白が出る */
* {
  margin: 0;
  padding: 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 10000;
}
.modal__bg {
  position: absolute;
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.modal__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: scroll; /* はみ出た部分はスクロールさせる */
  /* スクロールさせたい時は「%」で高さを指定
  指定をしないと「overflow:scroll」が利かない */
  height: 60%;
  width: 50%; /* これが無いと「overflow:scroll」が利かない */
  max-width: 960px;
  background: white;
  padding: 50px;
  text-align: center;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
}
.modal__inner::-webkit-scrollbar {
  display: none; /* Chrome, Safari 対応 */
}
.modal__inner p {
  text-align: center;
  padding: 1rem 1.5rem;
  background: #000050;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2rem;
  margin-bottom: 50px;
}
.modal__inner__img {
  display: flex;
  flex-wrap: wrap;
}
.modal__inner__img .inner-imgset {
  width: 50%;
  padding: 0 15px;
}
.modal__inner__img .inner-imgset img {
  width: 100%;
  margin-bottom: 10px;
}
.modal__inner__img .inner-imgset p {
  color: #000050;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.modal__inner__close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
  background: #28be78;
  border-radius: 0px 0px 0px 50%;
}
.modal__inner__close i {
  font-size: 32px;
  color: #FFF;
}

@media only screen and (max-width: 768px) {
  .flow-heading {
    padding: 0;
  }
  .flow-heading__bg {
    padding: 60px 20px;
  }
  .flow-heading__ttl {
    min-width: 200px;
    padding: 10px 15px 10px 17px;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  .flow-heading__ttl img {
    width: 50px;
  }
  .flow-heading p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .modal-trigger {
    width: 90%;
    padding: 15px 10px;
  }
  .modal__inner {
    width: 90%;
    padding: 20px;
  }
  .modal__inner__img {
    display: block;
  }
  .modal__inner__img .inner-imgset {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .modal__inner__img .inner-imgset:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .modal__inner__img .inner-imgset img {
    width: 90%;
    display: inline-block;
    margin-bottom: 0;
  }
  .modal__inner__img .inner-imgset p {
    margin-bottom: 0;
  }
  .modal__inner__close i {
    font-size: 21px;
  }
}
/*----------------------------------------------------
  step01
----------------------------------------------------*/
.step01 {
  padding: 0;
}
.step01__bg {
  padding: 120px 0 0;
  position: relative;
}
.step01__bg::before {
  content: "";
  position: absolute;
  top: 60px;
  right: 0;
  width: 80%;
  height: 70%;
  background: rgba(40, 217, 157, 0.5);
  background: linear-gradient(to right, rgba(40, 217, 157, 0.5) 0%, rgba(228, 207, 115, 0.5) 50%, rgba(255, 137, 255, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="rgba(40, 217, 157, .5)", endColorstr="rgba(255, 137, 255, .5)",GradientType=1);
}
.step01__outline {
  position: relative;
  width: 75%;
  padding: 40px 12vw 60px 10vw;
  background: #f0be32;
  display: flex;
  flex-wrap: wrap;
}
.step01__outline__left {
  width: 15%;
}
.step01__outline__left img {
  width: 100%;
  margin-top: -70px;
}
.step01__outline__right {
  width: 85%;
  max-width: 600px;
  padding-left: 30px;
}
.step01__outline__right h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFF;
  padding-bottom: 15px;
  border-bottom: 2px solid #FFF;
  margin-bottom: 30px;
}
.step01__outline__right .step01-right__box {
  margin-bottom: 30px;
}
.step01__outline__right .step01-right__box__ttl {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.step01__outline__right .step01-right__box__ttl img {
  width: 30px;
  margin-right: 10px;
}
.step01__outline__right .step01-right__box__ttl p {
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 1px;
}
.step01__outline__right .step01-right__box__btn {
  display: flex;
}
.step01__outline__right .step01-right__box__btn a {
  width: 50%;
  padding: 12px 50px 12px 45px;
  font-size: 14px;
}
.step01__outline__right .step01-right__box__btn a:nth-of-type(2) {
  margin-left: 10px;
}
.step01__outline__right .step01-right__arrow {
  text-align: center;
  margin-bottom: 20px;
}
.step01__outline__right .step01-right__arrow span {
  display: inline-block;
  width: 25px;
  height: 40px;
  background: url(../img/car/arrow-down.svg) no-repeat center;
  background-size: contain;
}
.step01__outline__right .step01-right__btn {
  width: 100%;
  position: relative;
  display: inline-block;
  padding: 15px 60px 15px 50px;
  border: 2px solid #ff89ff;
  border-radius: 30px;
  background: #ff89ff;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
  transition: 0.5s;
  letter-spacing: 1px;
  color: #FFF;
}
.step01__outline__right .step01-right__btn::before {
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  position: absolute;
  text-rendering: auto;
  font-size: 18px;
  line-height: 1;
  transition: 0.3s;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  margin: auto;
  color: #FFF;
}
.step01__outline__right .step01-right__btn:hover {
  border-color: #ff89ff;
  background: #FFF;
  color: #ff89ff;
}
.step01__outline__right .step01-right__btn:hover::before {
  background: transparent;
  color: #ff89ff;
  right: 12px;
}
.step01__outline .step01-deco-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(65%);
  -webkit-transform: translateY(-50%) translateX(65%);
  width: 35%;
}
.step01__outline .step01-deco-img img {
  width: 100%;
}
.step01__outline .step01-deco-item01 {
  position: absolute;
  bottom: 0;
  left: 5vw;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  width: 12%;
  max-width: 150px;
}
.step01__outline .step01-deco-item01 img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .step01 {
    padding: 0;
  }
  .step01__bg {
    padding: 60px 0 40px;
    position: relative;
  }
  .step01__bg::before {
    content: none;
  }
  .step01__outline {
    position: relative;
    width: 100%;
    padding: 40px 20px 60px 20px;
  }
  .step01__outline__left {
    width: 25%;
  }
  .step01__outline__left img {
    width: 100%;
    margin-top: -70px;
    margin-bottom: 20px;
  }
  .step01__outline__right {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .step01__outline__right h3 {
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFF;
    margin-bottom: 20px;
  }
  .step01__outline__right .step01-right__box__ttl {
    margin-bottom: 10px;
  }
  .step01__outline__right .step01-right__box__ttl img {
    width: 25px;
  }
  .step01__outline__right .step01-right__box__ttl p {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 1px;
  }
  .step01__outline__right .step01-right__box__btn {
    flex-wrap: wrap;
  }
  .step01__outline__right .step01-right__box__btn a {
    width: 100%;
    font-size: 13px;
  }
  .step01__outline__right .step01-right__box__btn a:nth-of-type(2) {
    margin-left: 0;
    margin-top: 15px;
  }
  .step01__outline__right .step01-right__arrow {
    margin-bottom: 20px;
  }
  .step01__outline__right .step01-right__arrow span {
    width: 20px;
    height: 34px;
  }
  .step01__outline__right .step01-right__btn {
    padding: 12px 50px 12px 45px;
    border: 2px solid #ff89ff;
    font-size: 16px;
  }
  .step01__outline__right .step01-right__btn::before {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    font-size: 16px;
  }
  .step01__outline .step01-deco-img {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
  .step01__outline .step01-deco-item01 {
    bottom: auto;
    left: auto;
    top: 0;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 20%;
  }
}
/*----------------------------------------------------
  step02
----------------------------------------------------*/
.step02 {
  padding: 0;
}
.step02__bg {
  padding: 120px 0 0;
  position: relative;
}
.step02__outline {
  position: relative;
  width: 75%;
  margin: 0 auto;
  padding: 30px 12vw 30px 10vw;
  background: #57dcb9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.step02__outline__left {
  width: 15%;
}
.step02__outline__left img {
  width: 100%;
  margin-top: -70px;
}
.step02__outline__right {
  max-width: 600px;
  padding-left: 30px;
}
.step02__outline__right h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFF;
}

@media only screen and (max-width: 768px) {
  .step02 {
    padding: 0;
  }
  .step02__bg {
    padding: 40px 0;
    position: relative;
  }
  .step02__bg::before {
    content: none;
  }
  .step02__outline {
    position: relative;
    width: 100%;
    padding: 30px 20px;
    justify-content: flex-start;
  }
  .step02__outline__left {
    width: 25%;
  }
  .step02__outline__left img {
    width: 100%;
    margin-top: -70px;
    margin-bottom: 20px;
  }
  .step02__outline__right {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .step02__outline__right h3 {
    font-size: 20px;
  }
}
/*----------------------------------------------------
  step03
----------------------------------------------------*/
.step03 {
  padding: 0;
}
.step03__bg {
  padding: 120px 0 0;
  position: relative;
}
.step03__outline {
  position: relative;
  width: 75%;
  margin-left: auto;
  padding: 40px 12vw 60px 10vw;
  background: #28be78;
  display: flex;
  flex-wrap: wrap;
}
.step03__outline__left {
  width: 15%;
}
.step03__outline__left img {
  width: 100%;
  margin-top: -70px;
}
.step03__outline__right {
  width: 85%;
  max-width: 600px;
  padding-left: 30px;
}
.step03__outline__right h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFF;
  padding-bottom: 15px;
  border-bottom: 2px solid #FFF;
  margin-bottom: 30px;
}
.step03__outline__right .step03-right__box {
  margin-bottom: 30px;
}
.step03__outline__right .step03-right__box__ttl {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.step03__outline__right .step03-right__box__ttl img {
  width: 30px;
  margin-right: 10px;
}
.step03__outline__right .step03-right__box__ttl p {
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  letter-spacing: 1px;
}
.step03__outline__right .step03-right__box__btn {
  display: flex;
}
.step03__outline__right .step03-right__box__btn a {
  width: 50%;
  padding: 12px 50px 12px 45px;
  font-size: 14px;
}
.step03__outline__right .step03-right__box__btn a:nth-of-type(2) {
  margin-left: 10px;
}
.step03__outline__right .step03-right__txt__flex {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.step03__outline__right .step03-right__txt__flex img {
  height: 40px;
  margin-right: 15px;
}
.step03__outline__right .step03-right__txt__flex p {
  color: #FFF;
  font-weight: 600;
  letter-spacing: 2px;
}
.step03__outline__right .step03-right__txt__arrow {
  text-align: center;
  margin: 20px 0;
}
.step03__outline__right .step03-right__txt__arrow span {
  display: inline-block;
  width: 25px;
  height: 40px;
  background: url(../img/car/arrow-down.svg) no-repeat center;
  background-size: contain;
}
.step03__outline__right .step03-right__txt h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #FFF;
  padding: 15px 30px;
  background: #000050;
  text-align: center;
}
.step03__outline__right .step03-right__txt p {
  font-size: 13px;
  font-weight: 600;
  color: #FFF;
  margin-top: 5px;
}
.step03__outline__right .step03-right__arrow {
  text-align: center;
  margin-bottom: 20px;
}
.step03__outline__right .step03-right__arrow span {
  display: inline-block;
  width: 25px;
  height: 45px;
  background: url(../img/car/arrow-down.svg) no-repeat center;
  background-size: contain;
}
.step03__outline .step03-deco-img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(-65%);
  -webkit-transform: translateY(-50%) translateX(-65%);
  width: 35%;
}
.step03__outline .step03-deco-img img {
  width: 100%;
}
.step03__outline .step03-deco-img img:nth-child(2) {
  margin-top: 10px;
  margin-left: -30px;
}
.step03__outline .step03-deco-item01 {
  position: absolute;
  top: 0;
  right: 10vw;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 12%;
  max-width: 150px;
}
.step03__outline .step03-deco-item01 img {
  width: 100%;
}
.step03__outline .step03-deco-item02 {
  position: absolute;
  bottom: 0;
  right: 12vw;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  width: 12%;
  max-width: 150px;
}
.step03__outline .step03-deco-item02 img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .step03 {
    padding: 0;
  }
  .step03__bg {
    padding: 40px 0;
    position: relative;
  }
  .step03__bg::before {
    content: none;
  }
  .step03__outline {
    position: relative;
    width: 100%;
    padding: 40px 20px 60px 20px;
  }
  .step03__outline__left {
    width: 25%;
  }
  .step03__outline__left img {
    width: 100%;
    margin-top: -70px;
    margin-bottom: 20px;
  }
  .step03__outline__right {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .step03__outline__right h3 {
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFF;
    margin-bottom: 20px;
  }
  .step03__outline__right .step03-right__box__ttl {
    margin-bottom: 10px;
  }
  .step03__outline__right .step03-right__box__ttl img {
    width: 25px;
  }
  .step03__outline__right .step03-right__box__ttl p {
    font-size: 16px;
    font-weight: 600;
    color: #FFF;
    letter-spacing: 1px;
  }
  .step03__outline__right .step03-right__box__btn {
    flex-wrap: wrap;
  }
  .step03__outline__right .step03-right__box__btn a {
    width: 100%;
    font-size: 13px;
  }
  .step03__outline__right .step03-right__box__btn a:nth-of-type(2) {
    margin-left: 0;
    margin-top: 15px;
  }
  .step03__outline__right .step03-right__txt__flex {
    margin-bottom: 15px;
  }
  .step03__outline__right .step03-right__txt__flex img {
    height: 27px;
    margin-right: 10px;
  }
  .step03__outline__right .step03-right__txt__flex p {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .step03__outline__right .step03-right__txt__arrow {
    text-align: center;
    margin: 15px 0;
  }
  .step03__outline__right .step03-right__txt__arrow span {
    width: 20px;
    height: 34px;
  }
  .step03__outline__right .step03-right__txt h4 {
    font-size: 18px;
    letter-spacing: 1px;
    padding: 15px 30px;
  }
  .step03__outline .step03-deco-img {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
  .step03__outline .step03-deco-img img {
    width: 100%;
  }
  .step03__outline .step03-deco-img img:nth-child(2) {
    margin-top: 10px;
    margin-left: 0;
  }
  .step03__outline .step03-deco-item01 {
    display: none;
  }
  .step03__outline .step03-deco-item02 {
    bottom: auto;
    left: auto;
    top: 0;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 22%;
  }
}
/*----------------------------------------------------
  step04
----------------------------------------------------*/
.step04 {
  padding: 0;
}
.step04__bg {
  padding: 120px 0 0;
  position: relative;
}
.step04__outline {
  position: relative;
  width: 75%;
  padding: 40px 12vw 60px 10vw;
  background: #64cd50;
  display: flex;
  flex-wrap: wrap;
}
.step04__outline__left {
  width: 15%;
}
.step04__outline__left img {
  width: 100%;
  margin-top: -70px;
}
.step04__outline__right {
  width: 85%;
  max-width: 600px;
  padding-left: 30px;
}
.step04__outline__right h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFF;
  padding-bottom: 15px;
  border-bottom: 2px solid #FFF;
  margin-bottom: 30px;
}
.step04__outline__right .step04-right__txt__flex {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.step04__outline__right .step04-right__txt__flex img {
  height: 40px;
  margin-right: 15px;
}
.step04__outline__right .step04-right__txt__flex p {
  color: #FFF;
  font-weight: 600;
  letter-spacing: 2px;
}
.step04__outline__right .step04-right__txt__arrow {
  text-align: center;
  margin: 20px 0;
}
.step04__outline__right .step04-right__txt__arrow span {
  display: inline-block;
  width: 25px;
  height: 40px;
  background: url(../img/car/arrow-down.svg) no-repeat center;
  background-size: contain;
}
.step04__outline__right .step04-right__txt h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #FFF;
  padding: 15px 30px;
  background: #000050;
  text-align: center;
}
.step04__outline .step04-deco-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(65%);
  -webkit-transform: translateY(-50%) translateX(65%);
  width: 35%;
}
.step04__outline .step04-deco-img img {
  width: 100%;
}
.step04__outline .step04-deco-item01 {
  position: absolute;
  bottom: 0;
  left: 10vw;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  width: 27%;
  max-width: 250px;
}
.step04__outline .step04-deco-item01 img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .step04 {
    padding: 0;
  }
  .step04__bg {
    padding: 40px 0;
    position: relative;
  }
  .step04__bg::before {
    content: none;
  }
  .step04__outline {
    position: relative;
    width: 100%;
    padding: 40px 20px 60px 20px;
  }
  .step04__outline__left {
    width: 25%;
  }
  .step04__outline__left img {
    width: 100%;
    margin-top: -70px;
    margin-bottom: 20px;
  }
  .step04__outline__right {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .step04__outline__right h3 {
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFF;
    margin-bottom: 20px;
  }
  .step04__outline__right .step04-right__txt__flex {
    margin-bottom: 15px;
  }
  .step04__outline__right .step04-right__txt__flex img {
    height: 27px;
    margin-right: 10px;
  }
  .step04__outline__right .step04-right__txt__flex p {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .step04__outline__right .step04-right__txt__arrow {
    text-align: center;
    margin: 15px 0;
  }
  .step04__outline__right .step04-right__txt__arrow span {
    width: 20px;
    height: 34px;
  }
  .step04__outline__right .step04-right__txt h4 {
    font-size: 18px;
    letter-spacing: 1px;
    padding: 15px 30px;
  }
  .step04__outline .step04-deco-img {
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 20px;
  }
  .step04__outline .step04-deco-item01 {
    bottom: auto;
    left: auto;
    top: 0;
    right: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 40%;
  }
}
/*----------------------------------------------------
  step05
----------------------------------------------------*/
.step05 {
  padding: 0;
}
.step05__bg {
  padding: 120px 0 0;
  position: relative;
}
.step05__outline {
  position: relative;
  width: 75%;
  margin-left: auto;
  padding: 30px 12vw 30px 10vw;
  background: #f0be32;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.step05__outline__left {
  width: 15%;
}
.step05__outline__left img {
  width: 100%;
  margin-top: -70px;
}
.step05__outline__right {
  width: 85%;
  max-width: 600px;
  padding-left: 30px;
}
.step05__outline__right h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFF;
}

@media only screen and (max-width: 768px) {
  .step05 {
    padding: 0;
  }
  .step05__bg {
    padding: 40px 0;
    position: relative;
  }
  .step05__bg::before {
    content: none;
  }
  .step05__outline {
    position: relative;
    width: 100%;
    padding: 30px 20px;
  }
  .step05__outline__left {
    width: 25%;
  }
  .step05__outline__left img {
    width: 100%;
    margin-top: -70px;
    margin-bottom: 20px;
  }
  .step05__outline__right {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .step05__outline__right h3 {
    font-size: 20px;
  }
}
/*----------------------------------------------------
  step06
----------------------------------------------------*/
.step06 {
  padding: 0;
}
.step06__bg {
  padding: 120px 0 0;
  position: relative;
}
.step06__outline {
  position: relative;
  width: 75%;
  padding: 40px 12vw 60px 10vw;
  background: #28be78;
  display: flex;
  flex-wrap: wrap;
}
.step06__outline__left {
  width: 15%;
}
.step06__outline__left img {
  width: 100%;
  margin-top: -70px;
}
.step06__outline__right {
  width: 85%;
  max-width: 600px;
  padding-left: 30px;
}
.step06__outline__right h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #FFF;
  padding-bottom: 15px;
  border-bottom: 2px solid #FFF;
  margin-bottom: 30px;
}
.step06__outline__right .step06-right__txt h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.8;
  color: #FFF;
  padding: 15px 30px;
  background: #000050;
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .step06 {
    padding: 0;
  }
  .step06__bg {
    padding: 40px 0;
    position: relative;
  }
  .step06__outline {
    position: relative;
    width: 100%;
    padding: 40px 20px 60px 20px;
  }
  .step06__outline__left {
    width: 25%;
  }
  .step06__outline__left img {
    width: 100%;
    margin-top: -70px;
    margin-bottom: 20px;
  }
  .step06__outline__right {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }
  .step06__outline__right h3 {
    font-size: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #FFF;
    margin-bottom: 20px;
  }
  .step06__outline__right .step06-right__txt h4 {
    font-size: 18px;
    letter-spacing: 1px;
    padding: 15px 30px;
  }
}
/*----------------------------------------------------
  end
----------------------------------------------------*/
.end {
  padding: 0;
}
.end__bg {
  padding: 160px 6.777vw;
  position: relative;
}
.end__contents {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 12vw;
  background: #ff89ff;
}
.end__contents h3 {
  font-size: 30px;
  font-size: 3vw;
  font-weight: 600;
  letter-spacing: 5px;
  color: #FFF;
  text-align: center;
}
.end__contents .end-deco-item01 {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 20%;
}
.end__contents .end-deco-item01 img {
  width: 100%;
}
.end__contents .end-deco-item02 {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%) translateX(-10%);
  -webkit-transform: translateY(-50%) translateX(-10%);
  width: 22%;
}
.end__contents .end-deco-item02 img {
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .end {
    padding: 0;
  }
  .end__bg {
    padding: 60px 20px;
  }
  .end__contents {
    padding: 30px 20px 0;
  }
  .end__contents h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }
  .end__contents .end-deco-item01 {
    position: relative;
    bottom: 0;
    right: auto;
    width: 50%;
    margin: 0 auto;
  }
  .end__contents .end-deco-item02 {
    position: absolute;
    top: 0;
    left: 15px;
    transform: translateY(-65%) translateX(0);
    -webkit-transform: translateY(-65%) translateX(0);
    width: 27%;
  }
}/*# sourceMappingURL=twotype.css.map */</pre></body></html>