@charset "UTF-8";
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none;
  }
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  color: #444;
  font-size: 0;
  font-family: "BIZ UDPGothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
}

.sec_inner {
  width: 100%;
  max-width: 1335px;
  padding: 0 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sec_inner {
    padding: 0 20px;
  }
}

a {
  color: #444;
  text-decoration: none;
}
a:focus {
  outline: 1px dotted #444;
}

.page_path {
  background: #F8F8F8;
  padding: 10px 0;
}
.page_path .inner {
  width: 100%;
  max-width: 1275px;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
}
.page_path ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 31px;
}
.page_path ul li {
  color: #000;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}
.page_path ul li:not(:last-child) {
  position: relative;
}
.page_path ul li:not(:last-child)::before {
  content: "";
  width: 4px;
  height: 8px;
  background-image: url(/assets/images/inv/common/icon_breadcrumbs.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page_path ul li:not(:last-child) a {
  color: #000;
  text-decoration: underline;
}

#page .container main {
  max-width: none;
}

#contents {
  line-height: 1.5;
  max-width: none;
}

.hdg2 {
  color: #2E8208;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 33px;
}
@media (max-width: 767px) {
  .hdg2 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
}

.num {
  font-size: 4.4rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.12em;
}

.underline {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.show {
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}

.fade {
  -webkit-animation: fadeInleft 1s ease forwards;
          animation: fadeInleft 1s ease forwards;
}

@-webkit-keyframes fadeInleft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInleft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.modal {
  background: rgba(255, 255, 255, 0.93);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 90dvh;
  max-width: 1044px;
  width: 90%;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal_head {
  background-color: #2E8208;
  padding: 80px 80px 50px;
  position: relative;
}
@media screen and (min-width: 1126px) {
  .modal_head {
    padding: 40px 80px 20px;
  }
}
@media (max-width: 767px) {
  .modal_head {
    padding: 20px 20px 25px;
  }
}
.modal_head_title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .modal_head_title {
    font-size: 1.6rem;
  }
}
.modal_head_text {
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #ffffff;
  color: #2E8208;
  line-height: 1.5;
  letter-spacing: 0.12em;
  padding: 15px 20px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .modal_head_text {
    font-size: 1.2rem;
    padding: 7px 10px;
  }
}
.modal_head_close_button {
  position: absolute;
  border: none;
  top: 26px;
  right: 32px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #444444;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
}
@media screen and (min-width: 1126px) {
  .modal_head_close_button {
    top: 8px;
  }
}
@media (max-width: 767px) {
  .modal_head_close_button {
    top: 15px;
    right: 15px;
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }
}
.modal_head_close_button img {
  display: block;
  width: 22px;
}
@media (max-width: 767px) {
  .modal_head_close_button img {
    width: 12px;
  }
}
.modal_content {
  padding: 30px 80px 80px;
  background-color: #FBF7EF;
  overflow-y: auto;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (min-width: 1126px) {
  .modal_content {
    padding: 15px 80px 30px;
  }
}
@media (max-width: 767px) {
  .modal_content {
    padding: 15px 40px 40px;
  }
}
.modal_content_tag {
  display: inline-block;
  color: #ffffff;
  background-color: #2E8208;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  padding: 2px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  min-width: 122px;
  text-align: center;
}
@media (max-width: 767px) {
  .modal_content_tag {
    font-size: 1.2rem;
  }
}
.modal_content_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  .modal_content_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.modal_content_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 288px;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .modal_content_item {
    padding: 10px;
    display: block;
  }
}
.modal_content_item + .modal_content_item {
  border-left: dashed 1px #444444;
}
@media (max-width: 767px) {
  .modal_content_item + .modal_content_item {
    border-left: none;
    border-top: dashed 1px #444444;
  }
}
.modal_content_item_title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #2E8208;
  text-align: center;
  font-family: "Inter", sans-serif;
}
@media (max-width: 767px) {
  .modal_content_item_title {
    font-size: 1.4rem;
  }
}
.modal_content_item_subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: #2E8208;
  margin-bottom: 14px;
  text-align: center;
  font-family: "Inter", sans-serif;
}
@media (max-width: 767px) {
  .modal_content_item_subtitle {
    font-size: 1rem;
  }
}
.modal_content_item_text {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  max-width: 248px;
  margin: 0 auto 14px;
}
.modal_content_item_image {
  border-radius: 8px;
  max-width: 248px;
  margin: auto auto 0;
  overflow: hidden;
}
.modal_content_item_image img {
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .modal#modal01 .modal_content {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .modal#modal01 .modal_content_item_text {
    text-align: left;
  }
}
@media screen and (min-width: 1126px) {
  .modal#modal02 .modal_head, .modal#modal03 .modal_head {
    padding: 20px 80px 10px;
  }
}
.modal#modal02 .modal_content, .modal#modal03 .modal_content {
  padding-top: 40px;
}
@media screen and (min-width: 1126px) {
  .modal#modal02 .modal_content, .modal#modal03 .modal_content {
    padding-top: 15px;
  }
}
.modal#modal02 .modal_content_tag02, .modal#modal03 .modal_content_tag02 {
  color: #ffffff;
  background-color: #2E8208;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  padding: 2px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto 20px;
  max-width: 234px;
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .modal#modal02 .modal_content_tag02, .modal#modal03 .modal_content_tag02 {
    font-size: 1.2rem;
  }
}
.modal#modal02 .modal_content_tag02.tag_red, .modal#modal03 .modal_content_tag02.tag_red {
  background-color: #CD3819;
}
.modal#modal02 .modal_content_flex02, .modal#modal03 .modal_content_flex02 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.modal#modal02 .modal_content_item_image, .modal#modal03 .modal_content_item_image {
  max-width: 100%;
}
.modal#modal02 .modal_content_item02 .title02, .modal#modal03 .modal_content_item02 .title02 {
  font-size: 2rem;
  margin-bottom: 14px;
}
@media (max-width: 767px) {
  .modal#modal02 .modal_content_item02 .title02, .modal#modal03 .modal_content_item02 .title02 {
    font-size: 1rem;
  }
}
.modal#modal02 .modal_content_item02 .title02.red, .modal#modal03 .modal_content_item02 .title02.red {
  color: #CD3819;
}
.modal#modal02 .modal_content_title, .modal#modal03 .modal_content_title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: center;
  font-family: "Inter", sans-serif;
  margin: 50px 0 40px;
}
@media (max-width: 767px) {
  .modal#modal02 .modal_content_title, .modal#modal03 .modal_content_title {
    font-size: 1.2rem;
    margin: 25px 0 20px;
  }
}
.modal#modal02 .modal_content_note, .modal#modal03 .modal_content_note {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.12em;
  padding-left: 10px;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .modal#modal02 .modal_content_note, .modal#modal03 .modal_content_note {
    margin-top: 25px;
  }
}
.modal#modal03 .modal_content_flex02 + .modal_content_tag02 {
  margin-top: 52px;
}
@media (max-width: 767px) {
  .modal#modal03 .modal_content_flex02 + .modal_content_tag02 {
    margin-top: 25px;
  }
}

/* ---------------------------

ビジネスモデル

--------------------------- */
.model .hdg1 {
  color: #FFF;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}
@media (max-width: 767px) {
  .model .hdg1 {
    font-size: 1.6rem;
  }
}
.model .hdg1_wrap {
  background: #2E8208;
  padding: 53px 0;
}
@media (max-width: 767px) {
  .model .hdg1_wrap {
    padding: 26px 0;
  }
}
.model section #anc01::before,
.model section #anc02::before,
.model section #anc03::before {
  content: "";
  display: block;
  height: 110px;
  margin-top: -110px;
  visibility: hidden;
  pointer-events: none;
}
@media (max-width: 767px) {
  .model section #anc01::before,
  .model section #anc02::before,
  .model section #anc03::before {
    height: 80px;
    margin-top: -80px;
  }
}
.model section + section {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .model section + section {
    margin-top: 40px;
  }
}
.model section.sec01 {
  background: #FBF7EF;
  padding: 60px 0 83px;
}
@media (max-width: 767px) {
  .model section.sec01 {
    padding: 32px 0 43px;
  }
}
.model section.sec01 .title {
  color: #2E8208;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-bottom: 11px;
}
@media (max-width: 767px) {
  .model section.sec01 .title {
    font-size: 2.4rem;
  }
}
.model section.sec01 .text {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 2;
  margin-bottom: 49px;
}
@media (max-width: 767px) {
  .model section.sec01 .text {
    margin-bottom: 25px;
  }
}
.model section.sec01 img {
  display: block;
  max-width: 1253px;
  width: 100%;
  margin: 0 auto;
}
.model section.sec02 .table_wrap {
  overflow-x: auto;
}
.model section.sec02 table {
  min-width: 1150px;
  margin: 0 auto;
}
.model section.sec02 table tr:first-child th {
  font-weight: 700;
  border-right: 1px solid #D6D6D6;
  text-align: center;
  height: 72px;
}
.model section.sec02 table tr:first-child th:first-child {
  width: 311px;
}
.model section.sec02 table tr:first-child th:nth-child(2) {
  width: 169px;
}
.model section.sec02 table tr:first-child th:nth-child(3) {
  width: 485px;
}
.model section.sec02 table tr:first-child th:last-child {
  border: none;
  width: 185px;
}
.model section.sec02 table tr:first-child th:not(:first-child) {
  border-bottom: 1px solid #D6D6D6;
}
.model section.sec02 table tr:not(:first-child) th {
  border-right: 1px solid #FFF;
  border-top: 1px solid #FFF;
}
.model section.sec02 table tr:nth-child(3) td:nth-child(4) {
  padding: 8px 20px;
}
.model section.sec02 table tr th {
  color: #FFF;
  font-size: 1.6rem;
  vertical-align: middle;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.model section.sec02 table tr th.color01 {
  background: #737373;
}
.model section.sec02 table tr th.color02 {
  background: #70AD47;
}
.model section.sec02 table tr th.color03 {
  background: #F16125;
  width: 174px;
}
.model section.sec02 table tr th.color04 {
  background: #F99C1C;
}
.model section.sec02 table tr th.color05 {
  background: #FBC104;
}
.model section.sec02 table tr th.color06 {
  background: #48ABC8;
}
.model section.sec02 table tr td {
  font-size: 1.6rem;
  border-right: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
  vertical-align: middle;
  padding: 20px;
}
.model section.sec02 table a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  position: relative;
}
.model section.sec02 table a::before {
  content: "";
  width: 7px;
  height: 10px;
  background-image: url(/assets/images/_resource/shared/icons/icon-btn-arrow-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.model section.sec03 .bg.white {
  margin-bottom: 40px;
}
.model section.sec03 .bg .text_wrap .text {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  line-height: 2;
}
.model section.sec03 .bg .text_wrap .underline {
  font-weight: 700;
  -webkit-text-decoration-color: #70AD47;
          text-decoration-color: #70AD47;
}
.model section.sec03 .bg .text_wrap.orange .cat {
  color: #F99C1C;
  border-color: #F99C1C;
}
.model section.sec03 .bg .text_wrap.orange .underline {
  -webkit-text-decoration-color: #F99C1C;
          text-decoration-color: #F99C1C;
}
.model section.sec03 .bg .text_wrap.blue .cat {
  color: #48ABC8;
  border-color: #48ABC8;
}
.model section.sec03 .bg .text_wrap.blue .underline {
  -webkit-text-decoration-color: #48ABC8;
          text-decoration-color: #48ABC8;
}
.model section.sec03 .bg .text_flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-bottom: 1px solid #D6D6D6;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 1125px) {
  .model section.sec03 .bg .text_flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.model section.sec03 .bg .text_flex_text01 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.model section.sec03 .bg .text_flex .cat {
  color: #70AD47;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid #70AD47;
  border-radius: 50px;
  padding: 4px 14px;
}
.model section.sec03 .bg.gray {
  background: #F8F8F8;
  padding: 50px 0;
}
.model section.sec03 .bg.gray .step_wrap.green .step01 .step_bg {
  padding-bottom: 31px;
}
.model section.sec03 .bg.gray .step_wrap.green .step01 .step_text01 {
  margin-bottom: 30px;
}
.model section.sec03 .bg.gray .step_wrap.green .step01 .step_detail + .step_detail {
  margin-top: 40px;
}
.model section.sec03 .bg.gray .step_wrap.green .step01 .step_data_text03 {
  margin-top: -7px;
}
.model section.sec03 .bg.gray .step_wrap.green .step02 .step_bg {
  background: rgba(112, 173, 71, 0.13);
  padding-bottom: 10px;
}
.model section.sec03 .bg.gray .step_wrap.green .step02 .step_bg_text01 {
  background: #70AD47;
}
.model section.sec03 .bg.gray .step_wrap.green .step02 .step_text01 {
  margin-bottom: 10px;
}
.model section.sec03 .bg.gray .step_wrap.green .step02 .underline {
  -webkit-text-decoration-color: #70AD47;
          text-decoration-color: #70AD47;
}
.model section.sec03 .bg.gray .step_wrap.green .step03 .step_bg {
  padding-bottom: 10px;
}
.model section.sec03 .bg.gray .step_wrap.green .step03 .step_text02 {
  margin-bottom: 20px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_title {
  background: -webkit-gradient(linear, left top, right top, from(rgba(249, 156, 28, 0.18)), color-stop(15%, rgba(249, 156, 28, 0.45)), color-stop(49%, rgb(249, 156, 28)));
  background: -webkit-linear-gradient(left, rgba(249, 156, 28, 0.18) 0%, rgba(249, 156, 28, 0.45) 15%, rgb(249, 156, 28) 49%);
  background: linear-gradient(to right, rgba(249, 156, 28, 0.18) 0%, rgba(249, 156, 28, 0.45) 15%, rgb(249, 156, 28) 49%);
}
.model section.sec03 .bg.gray .step_wrap.orange .step_title::after {
  border-left-color: #F99C1C;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_bg {
  background: rgba(235, 150, 36, 0.13);
  margin-bottom: 25px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_bg_top img {
  max-height: 150px;
  height: 100%;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_img {
  gap: 20px;
  margin-bottom: 25px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_img_left, .model section.sec03 .bg.gray .step_wrap.orange .step_img_center, .model section.sec03 .bg.gray .step_wrap.orange .step_img_right {
  max-width: 70px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_text01 {
  color: #F99C1C;
  -webkit-text-decoration-color: #F99C1C;
          text-decoration-color: #F99C1C;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_text02.no_border {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_text03 {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-align: center;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_text04 {
  color: #F99C1C;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 15px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_kind {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-top: 10px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_kind_left, .model section.sec03 .bg.gray .step_wrap.orange .step_kind_right {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_kind_right {
  color: #F99C1C;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_cat_wrap {
  text-align: center;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_cat_wrap + .step_cat_wrap {
  margin-top: 20px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_detail + .step_detail {
  margin-top: 20px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_data_text02 {
  color: #F99C1C;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_data_text03 {
  margin-top: -7px;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_data_text02, .model section.sec03 .bg.gray .step_wrap.orange .step_data_text03 {
  text-align: center;
}
.model section.sec03 .bg.gray .step_wrap.orange .step_link {
  background: #F99C1C;
  border: 1px solid #F99C1C;
}
.model section.sec03 .bg.gray .step_wrap.orange .underline {
  -webkit-text-decoration-color: #F99C1C;
          text-decoration-color: #F99C1C;
}
.model section.sec03 .bg.gray .step_wrap.blue .step_title {
  background: -webkit-gradient(linear, left top, right top, from(rgba(72, 171, 200, 0.18)), color-stop(15%, rgba(72, 171, 200, 0.45)), color-stop(55%, rgb(72, 171, 200)));
  background: -webkit-linear-gradient(left, rgba(72, 171, 200, 0.18) 0%, rgba(72, 171, 200, 0.45) 15%, rgb(72, 171, 200) 55%);
  background: linear-gradient(to right, rgba(72, 171, 200, 0.18) 0%, rgba(72, 171, 200, 0.45) 15%, rgb(72, 171, 200) 55%);
}
.model section.sec03 .bg.gray .step_wrap.blue .step_title::after {
  border-left-color: #48ABC8;
}
.model section.sec03 .bg.gray .step_wrap.blue .step_title:first-child {
  max-width: 636px;
  width: 100%;
  padding-left: 0;
}
@media screen and (max-width: 1125px) {
  .model section.sec03 .bg.gray .step_wrap.blue .step_title:first-child {
    max-width: none;
    padding-left: 26px;
    width: calc(100% - 26px);
  }
}
.model section.sec03 .bg.gray .step_wrap.blue .step_title:last-child {
  width: calc(100% - 663px);
  padding: 11px 52px 12px 0;
}
@media screen and (max-width: 1125px) {
  .model section.sec03 .bg.gray .step_wrap.blue .step_title:last-child {
    width: calc(100% - 26px);
    padding-right: 0;
  }
}
.model section.sec03 .bg.gray .step_wrap.blue .step_box {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1125px) {
  .model section.sec03 .bg.gray .step_wrap.blue .step_box {
    width: 100%;
  }
}
.model section.sec03 .bg.gray .step_wrap.blue .step_box.step02 .step_bg {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.model section.sec03 .bg.gray .step_wrap.blue .step_bg {
  background: rgba(72, 171, 200, 0.13);
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .model section.sec03 .bg.gray .step_wrap.blue .step_bg {
    max-height: none;
  }
}
.model section.sec03 .bg.gray .step_wrap.blue .step_bg_text02 {
  font-size: 1.6rem;
}
.model section.sec03 .bg.gray .step_wrap.blue .step_text01 {
  color: #48ABC8;
  -webkit-text-decoration-color: #48ABC8;
          text-decoration-color: #48ABC8;
  margin-bottom: 25px;
}
.model section.sec03 .bg.gray .step_wrap.blue .step_list.list02 li::before {
  background: #48ABC8;
}
.model section.sec03 .bg.gray .step_wrap.blue .step_link {
  background: #48ABC8;
  border: 1px solid #48ABC8;
}
.model section.sec03 .bg.gray .step_wrap.blue .underline {
  font-weight: 700;
  -webkit-text-decoration-color: #48ABC8;
          text-decoration-color: #48ABC8;
}
.model section.sec03 .bg.gray .step_title {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc((100% - 26px) / 3);
  min-height: 52px;
  padding: 11px 0 12px 26px;
  position: relative;
  border: 1px solid #FFF;
  background: -webkit-gradient(linear, left top, right top, from(rgba(112, 173, 71, 0.18)), color-stop(13%, rgba(112, 173, 71, 0.45)), color-stop(61%, rgb(112, 173, 71)));
  background: -webkit-linear-gradient(left, rgba(112, 173, 71, 0.18) 0%, rgba(112, 173, 71, 0.45) 13%, rgb(112, 173, 71) 61%);
  background: linear-gradient(to right, rgba(112, 173, 71, 0.18) 0%, rgba(112, 173, 71, 0.45) 13%, rgb(112, 173, 71) 61%);
  opacity: 0;
}
.model section.sec03 .bg.gray .step_title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 27px solid #FFF;
  z-index: 1;
}
@media (max-width: 767px) {
  .model section.sec03 .bg.gray .step_title::before {
    right: -27px;
  }
}
.model section.sec03 .bg.gray .step_title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 26px solid #70AD47;
  z-index: 2;
}
@media (max-width: 767px) {
  .model section.sec03 .bg.gray .step_title::after {
    right: -25px;
  }
}
.model section.sec03 .bg.gray .step_title:first-child {
  z-index: 10;
}
.model section.sec03 .bg.gray .step_title:nth-child(2) {
  z-index: 9;
}
.model section.sec03 .bg.gray .step_title.is_sp {
  display: none;
}
@media screen and (max-width: 1125px) {
  .model section.sec03 .bg.gray .step_title.is_sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    padding: 7px 0 7px 26px;
    width: calc(100% - 26px);
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
    opacity: 0;
  }
}
.model section.sec03 .bg.gray .step_title_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 39px;
}
.model section.sec03 .bg.gray .step_title_wrap.is_pc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1125px) {
  .model section.sec03 .bg.gray .step_title_wrap.is_pc {
    display: none;
  }
}
.model section.sec03 .bg.gray .step_box {
  background: #FFF;
  border: 2px solid #D6D6D6;
  border-radius: 8px;
  width: calc((100% - 40px) / 3);
  padding: 40px 30px;
  opacity: 0;
}
@media screen and (max-width: 1125px) {
  .model section.sec03 .bg.gray .step_box {
    width: 100%;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  }
}
.model section.sec03 .bg.gray .step_box_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
@media screen and (max-width: 1125px) {
  .model section.sec03 .bg.gray .step_box_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.model section.sec03 .bg.gray .step_bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  background: #E9E9E9;
  padding: 20px;
  margin-bottom: 20px;
}
.model section.sec03 .bg.gray .step_bg_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.model section.sec03 .bg.gray .step_bg_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.model section.sec03 .bg.gray .step_bg_wrap img {
  display: block;
  max-width: 110px;
  margin: 0 auto;
}
.model section.sec03 .bg.gray .step_bg_text01 {
  color: #FFF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  background: #444;
  border-radius: 50px;
  padding: 2px 20px;
}
@media (max-width: 767px) {
  .model section.sec03 .bg.gray .step_bg_text01 {
    font-size: 1.3rem;
  }
}
.model section.sec03 .bg.gray .step_bg_text02 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}
.model section.sec03 .bg.gray .step_detail + .step_detail {
  margin-top: 25px;
  text-align: center;
}
.model section.sec03 .bg.gray .step_detail + .step_detail .step_data_text01 {
  margin-bottom: 10px;
}
.model section.sec03 .bg.gray .step_text01 {
  color: #70AD47;
  font-size: 2.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: underline;
  -webkit-text-decoration-color: #70AD47;
          text-decoration-color: #70AD47;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  text-align: center;
  margin-bottom: 15px;
}
.model section.sec03 .bg.gray .step_text02 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #D6D6D6;
  padding-bottom: 6px;
  margin-bottom: 15px;
  text-align: center;
}
.model section.sec03 .bg.gray .step_data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.model section.sec03 .bg.gray .step_data img {
  display: block;
  max-width: 110px;
}
.model section.sec03 .bg.gray .step_data_detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.model section.sec03 .bg.gray .step_data_text01 {
  display: inline-block;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: #70AD47;
  border-radius: 50px;
  padding: 2px 15px;
}
.model section.sec03 .bg.gray .step_data_text02 {
  color: #70AD47;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.model section.sec03 .bg.gray .step_data_text03 {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
.model section.sec03 .bg.gray .step_text03 {
  font-size: 1rem;
  text-align: center;
  margin-top: 15px;
}
.model section.sec03 .bg.gray .step_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.model section.sec03 .bg.gray .step_img_left, .model section.sec03 .bg.gray .step_img_right {
  max-width: 168px;
}
.model section.sec03 .bg.gray .step_link {
  color: #FFF;
  font-family: "BIZ UDPGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  display: block;
  max-width: 255px;
  width: 100%;
  background: #70AD47;
  border: 1px solid #70AD47;
  border-radius: 50px;
  text-align: center;
  padding: 11px 25px;
  margin: 20px auto 0;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.model section.sec03 .bg.gray .step_link:hover {
  opacity: 0.75;
}
.model section.sec03 .bg.gray .step_link:focus {
  outline: 1px dotted #444;
}
.model section.sec03 .bg.gray .step_link::before {
  content: "";
  width: 7px;
  height: 10px;
  background-image: url(/assets/images/_resource/shared/icons/icon-btn-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.model section.sec03 .bg.gray .step_link.blank::before {
  width: 11px;
  height: 11px;
  background-image: url(/inv/assets/images/outer-link-white.png);
}
.model section.sec03 .bg.gray .step_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.model section.sec03 .bg.gray .step_list li {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  padding-left: 13px;
  position: relative;
}
.model section.sec03 .bg.gray .step_list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #F99C1C;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}
.model section.sec03 .bg.gray .step_list.list01 {
  margin-top: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.model section.sec03 .bg.gray .step_list.list01 li:last-child {
  padding-left: 0;
}
.model section.sec03 .bg.gray .step_list.list01 li:last-child::before {
  content: none;
}
@media (max-width: 767px) {
  .model section.sec03 .bg.gray .step_list.list01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.model section.sec03 .bg.gray .step_list.list01 + .step_text01 {
  margin-top: 25px;
}
.model section.sec03 .bg.gray .step_list.list02 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.model section.sec03 .bg.gray + .bg.white {
  margin-top: 63px;
}
@media (min-width: 768px) {
  .model section.sec04 .hdg2 {
    margin-bottom: 64px;
  }
}
.model section.sec04 picture {
  display: block;
  max-width: 1099px;
  width: 100%;
  margin: 0 auto;
}
.model section.sec04 .link_wrap {
  margin-top: 119px;
}
@media (max-width: 767px) {
  .model section.sec04 .link_wrap {
    margin-top: 80px;
  }
}
.model section.sec04 .link_text {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.model section.sec04 .link_text::before, .model section.sec04 .link_text::after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  background: #F6F0F0;
}
.model section.sec04 .link_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
.model section.sec04 .link_list a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  max-width: 300px;
  width: 100%;
  border: 1px solid #2E8208;
  border-radius: 50px;
  padding: 15px 25px;
  text-align: center;
  position: relative;
}
@media (max-width: 767px) {
  .model section.sec04 .link_list a {
    font-size: 1.4rem;
    padding: 10px 25px;
  }
}
.model section.sec04 .link_list a::before {
  content: "";
  background-image: url(/assets/images/inv/common/icon_arrow_link.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 7px;
  height: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
}