@charset "UTF-8";
:root {
  --in-sine:cubic-bezier(0.47, 0, 0.745, 0.715);
  --in-sine-r:cubic-bezier(0.255, 0.285, 0.53, 1);
  --out-sine:cubic-bezier(0.39, 0.575, 0.565, 1);
  --out-sine-r:cubic-bezier(0.435, 0, 0.61, 0.425);
  --in-out-sine:cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --in-out-sine-r:cubic-bezier(0.45, 0.05, 0.555, 0.95);
  --in-quad:cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --in-quad-r:cubic-bezier(0.32, 0.47, 0.45, 0.915);
  --out-quad:cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --out-quad-r:cubic-bezier(0.55, 0.06, 0.75, 0.54);
  --in-out-quad:cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --in-out-quad-r:cubic-bezier(0.485, 0.045, 0.545, 0.97);
  --in-cubic:cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --in-cubic-r:cubic-bezier(0.325, 0.81, 0.45, 0.945);
  --out-cubic:cubic-bezier(0.215, 0.61, 0.355, 1);
  --out-cubic-r:cubic-bezier(0.645, 0, 0.785, 0.39);
  --in-out-cubic:cubic-bezier(0.645, 0.045, 0.355, 1);
  --in-out-cubic-r:cubic-bezier(0.645, 0, 0.355, 0.955);
  --in-quart:cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --in-quart-r:cubic-bezier(0.315, 0.78, 0.105, 0.97);
  --out-quart:cubic-bezier(0.165, 0.84, 0.44, 1);
  --out-quart-r:cubic-bezier(0.56, 0, 0.835, 0.16);
  --in-out-quart:cubic-bezier(0.77, 0, 0.175, 1);
  --in-out-quart-r:cubic-bezier(0.825, 0, 0.23, 1);
  --in-quint:cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --in-quint-r:cubic-bezier(0.145, 0.94, 0.245, 0.95);
  --out-quint:cubic-bezier(0.23, 1, 0.32, 1);
  --out-quint-r:cubic-bezier(0.68, 0, 0.77, 0);
  --in-out-quint:cubic-bezier(0.86, 0, 0.07, 1);
  --in-out-quint-r:cubic-bezier(0.93, 0, 0.14, 1);
  --in-expo:cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --in-expo-r:cubic-bezier(0.205, 0.965, 0.05, 0.95);
  --out-expo:cubic-bezier(0.19, 1, 0.22, 1);
  --out-expo-r:cubic-bezier(0.78, 0, 0.81, 0);
  --in-out-expo:cubic-bezier(1, 0, 0, 1);
  --in-out-expo-r:cubic-bezier(1, 0, 0, 1);
  --in-circ:cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --in-circ-r:cubic-bezier(0.02, 0.665, 0.4, 0.96);
  --out-circ:cubic-bezier(0.075, 0.82, 0.165, 1);
  --out-circ-r:cubic-bezier(0.835, 0, 0.925, 0.18);
  --in-out-circ:cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --in-out-circ-r:cubic-bezier(0.85, 0.14, 0.215, 0.865);
  --in-back:cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --in-back-r:cubic-bezier(0.265, 0.955, 0.4, 1.28);
  --out-back:cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --out-back-r:cubic-bezier(0.68, -0.275, 0.825, 0.115);
  --in-out-back:cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --in-out-back-r:cubic-bezier(0.735, -0.55, 0.32, 1.55);
}

/*
 * color settings
 */
/*
 * normalize
 */
* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
*:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 112px;
}

@media screen and (max-width: 860px) {
  html {
    scroll-padding-top: 52px;
  }
}
body {
  margin: 0;
  font-family: roboto, "Noto Sans JP", sans-serif;
  background-color: #f9f9f9;
  line-height: 1;
  color: #333;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

main {
  display: block;
}

a {
  background-color: transparent;
}

b, strong {
  font-weight: bolder;
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
}

a {
  text-decoration: none;
  color: currentColor;
}
a img {
  outline: 0;
  border: none;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

/*
 * module
 */
.section_header {
  text-align: center;
  font-size: 2.5rem;
  line-height: 130%;
  color: #333;
}
.section_header:after {
  content: "";
  width: 160px;
  height: 2px;
  background-color: #36a2f5;
  display: block;
  margin: 1.375rem auto 0;
}

.section_header-type-2 {
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 1.75rem;
  color: #333;
  border-left: 3px solid #36a2f5;
}

.section_header_txt {
  margin-top: 44px;
  font-size: 1.25rem;
  line-height: 1.8;
  text-align: center;
  color: #333;
}
.section_header_txt.black {
  color: #333;
}

@media screen and (max-width: 860px) {
  .section_header {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .section_header:after {
    width: 34%;
  }
  .section_header-type-2 {
    font-size: 1.4rem;
  }
  .section_header_txt {
    margin-top: 1em;
    font-size: 1rem;
    text-align: left;
    line-height: 1.6;
  }
}
.module_column {
  margin-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.module_column.column_2 {
  gap: 0 36px;
}
.module_column.column_3 {
  gap: 0 26px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.module_column.column_3 .img img {
  border-radius: 8px 8px 0 0;
}
.module_column.column_3 h3 {
  margin-top: 1rem;
  padding: 0 16px;
  font-size: 1.375rem;
  line-height: 1.45;
  color: #333;
}
.module_column.column_3 .txt_mein {
  margin-top: 1rem;
  padding: 0 16px 16px;
  font-size: 1rem;
  line-height: 1.69;
}
.module_column.column_4 {
  gap: 0 12px;
}
.module_column.column_5 {
  gap: 16px 18px;
}
.module_column.column_5 li {
  width: 18.6%;
}
.module_column.flexwrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.module_column.support_list h3 {
  margin: 22px 16px 0;
  font-size: 1.375rem;
  line-height: 1.45;
  color: #333;
}
.module_column.support_list .txt_mein {
  margin: 16px;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.69;
}
.module_column .contents {
  width: 50%;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  background-color: #fff;
}
.module_column .contents_normal {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: rgba(255, 255, 255, 0);
}

@media screen and (max-width: 860px) {
  .module_column {
    margin-top: 1.8em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module_column.column_2 {
    gap: 16px 0;
  }
  .module_column.column_2 .contents:first-child {
    margin-top: 0;
  }
  .module_column .contents {
    width: 100%;
  }
  .module_column .contents h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .module_column .contents .txt_mein {
    margin-top: 0.6em;
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.module_point {
  padding: 34px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  background-color: #fff;
}
.module_point h2 {
  max-width: 100%;
  margin: 0 auto 1em;
  font-size: 1.875rem;
  color: #36a2f5;
  text-align: center;
}
.module_point h2 span {
  padding-bottom: 0.35em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0%, #36a2f5));
  background: linear-gradient(transparent 95%, #36a2f5 0%);
}
.module_point .module_column {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module_point .module_column .contents .img {
  width: 504px;
}
.module_point .module_column .contents .txt {
  font-size: 1rem;
  line-height: 2;
}

.module_form {
  /*
  .form-field {
    margin-top: 16px;
    background: #fff;
    position: relative;
    z-index: 0;
    display: block;
    &:first-child {
      margin-top: 32px;
    }
    &.checkbox {
      margin-top: 22px;
      .checkbox_area {
        display: flex;
        align-items: center;
        gap: 0 8px;
        cursor: pointer;
        .checkbox_input {
          margin: 0;
          padding: 0;
          width: 0;
          opacity: 0;
          box-sizing: border-box;
          position: absolute;
          left: 0;
          top: 0;
        }
        .checkbox_dummy {
            position: relative;
            top: 0;
            left: 0;
            display: block;
            width: 18px;
            height: 18px;
            border: solid 1px #c8c8c8;
            background: #FFFFFF;
            border-radius: 5px;
        }
        .checkbox_input:checked + .checkbox_dummy::before {
          content: "";
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: url(../img/icon_check_active.svg) no-repeat center;
          background-size: contain;
        }
        .txt {
          font-size: 0.875rem;
          &.fwb {
            font-weight: bold;
          }
        }
      }
    }
  }
  */
}
.module_form .form-field.company {
  border-radius: 4px 4px 0 0;
}
.module_form .column_2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 8px 0 0;
  padding: 0;
  gap: 8px;
}
.module_form .column_2.mt-16 {
  margin-top: 16px;
}
.module_form .column_2 .form-field, .module_form .column_2 .form-field.checkbox {
  width: calc(50% - 4px);
  margin: 0 !important;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.module_form .column_2 .form-field .txt, .module_form .column_2 .form-field.checkbox .txt {
  font-size: 0.875rem;
  line-height: 1.14;
}
.module_form .field-label {
  cursor: text;
}
.module_form .field-label .title {
  font-size: 0.8125rem;
  font-weight: 700;
}
.module_form .field-label .title span {
  font-weight: 400;
  color: #ff001e;
  margin-left: 3px;
}
.module_form .field-label input {
  border-radius: 0;
  margin-top: -7px;
  width: 100%;
}
.module_form .field-label input::-webkit-input-placeholder {
  color: #adadad;
}
.module_form .field-label input::-moz-placeholder {
  color: #adadad;
}
.module_form .field-label input:-ms-input-placeholder {
  color: #adadad;
}
.module_form .field-label input::-ms-input-placeholder {
  color: #adadad;
}
.module_form .field-label input::placeholder {
  color: #adadad;
}
.module_form .field-label input[type=text], .module_form .field-label input[type=tel], .module_form .field-label select, .module_form .field-label textarea {
  margin-top: 6px;
  border: 1px solid #c8c8c8;
  border-radius: 3px;
  background-color: #fff;
  font-size: 0.9375rem;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 16px;
  max-width: 100%;
  height: 36px;
  -webkit-transition: border-color 0.1s linear;
  transition: border-color 0.1s linear;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}
.module_form .field-label input[type=tel] {
  max-width: 65px;
  padding: 0;
}
.module_form .field-label input[type=tel]::-webkit-input-placeholder {
  text-align: center;
}
.module_form .field-label input[type=tel]::-moz-placeholder {
  text-align: center;
}
.module_form .field-label input[type=tel]:-ms-input-placeholder {
  text-align: center;
}
.module_form .field-label input[type=tel]::-ms-input-placeholder {
  text-align: center;
}
.module_form .field-label input[type=tel]::placeholder {
  text-align: center;
}
.module_form .field-label select {
  width: 231px;
  color: #adadad;
  padding: 0 14px;
}
.module_form .field-label textarea {
  width: 100%;
  min-height: 78px;
  padding-top: 7px;
}
.module_form .field-label textarea::-webkit-input-placeholder {
  color: #adadad;
}
.module_form .field-label textarea::-moz-placeholder {
  color: #adadad;
}
.module_form .field-label textarea:-ms-input-placeholder {
  color: #adadad;
}
.module_form .field-label textarea::-ms-input-placeholder {
  color: #adadad;
}
.module_form .field-label textarea::placeholder {
  color: #adadad;
}
.module_form .field-label .c-input-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.module_form .field-label .c-input-tel .c-input-tel__item {
  margin-right: 18px;
  position: relative;
}
.module_form .field-label .c-input-tel .c-input-tel__item::after {
  content: "-";
  display: block;
  color: #adadad;
  position: absolute;
  right: -11px;
  top: 50%;
  -webkit-transform: translate(0%, -20%);
          transform: translate(0%, -20%);
}
.module_form .field-label .c-input-tel .c-input-tel__item:last-child::after {
  display: none;
}
.module_form button {
  margin-top: 16px;
  width: 100%;
  border: none;
}

.txt_form_attention {
  max-width: 480px;
  margin: 12px 0 0;
  line-height: 1.4;
  font-size: 0.625rem;
  color: #8d8d8d;
}
.txt_form_attention a {
  text-decoration: underline;
}

@media screen and (max-width: 860px) {
  .module_point {
    padding: 22px;
  }
  .module_point .module_column .contents .img {
    width: auto;
  }
  .module_point .module_column .contents .txt {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .module_point h2 {
    font-size: 1.5rem;
  }
  .module_point h2 span {
    padding-bottom: 0.3em;
    line-height: 1.7;
  }
}
/*
 * container settings
 */
.m-top0 {
  margin-top: 0 !important;
}

.container {
  width: 100%;
  max-width: 1116px;
  margin: 0 auto;
  padding: 0;
}

.page-section {
  padding-top: 88px;
}

@media screen and (max-width: 860px) {
  .container {
    max-width: 375px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-section {
    padding-top: 44px;
  }
}
[class*=hide-until-], [class*=show-from-], .site-nav {
  display: none;
}

@media (max-width: 860px) {
  .hide-until-tablet {
    display: block;
  }
}
@media (min-width: 980px) {
  .show-from-desktop {
    display: block;
  }
}
/*
 * cta
 */
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #262626;
  padding: 12px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: inherit;
  min-height: 60px;
}
.button.cta_form-1 {
  background-color: #ffd600;
}
.button.cta_form-2 {
  color: #fff;
  background-color: #36a2f5;
}
.button.cta_form-2 path {
  fill: #fff;
}
.button:hover {
  opacity: 0.8;
}
.button .txt {
  width: 100%;
  padding: 0 0.5em;
  text-align: center;
  line-height: 1.2;
}

@media screen and (max-width: 860px) {
  .button {
    font-size: 1.1rem;
  }
  .button .txt {
    line-height: 1.2;
  }
}
.section-cta {
  background-color: #36a2f5;
  margin: 88px 0 0;
  padding: 32px 0;
}
.section-cta.fv {
  margin-top: 0;
  padding: 12px 0;
}
.section-cta.fv h3 {
  font-size: 1.125rem;
}
.section-cta.fv .button {
  margin-top: 8px;
}
.section-cta.fv .tel {
  margin-top: 10px;
}
.section-cta.fv .tel .txt_num {
  gap: 0 8px;
}
.section-cta.fv .tel .txt_num .icon {
  width: 56px;
}
.section-cta.fv .tel .txt_num .txt {
  font-size: 2rem;
}
.section-cta.fv .tel .txt_time {
  font-size: 0.8125rem;
  padding-left: 0.7rem;
}
.section-cta.fv .module_column {
  max-width: 1240px;
}
.section-cta.fv .module_column .contents {
  padding: 12px;
}
.section-cta h2 {
  margin: 0 auto 2.125rem;
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.section-cta h2 span {
  padding-bottom: 0.35em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(95%, transparent), color-stop(0%, #36a2f5));
  background: linear-gradient(transparent 95%, #36a2f5 0%);
}
.section-cta h3 {
  font-size: 1.625rem;
  line-height: 1.42;
  text-align: center;
  position: relative;
}
.section-cta h3.row_2 {
  padding: 1rem 0;
}
.section-cta p {
  text-align: center;
}
.section-cta p .button {
  min-width: 340px;
  margin-top: 22px;
}
.section-cta .tel {
  margin-top: 23px;
}
.section-cta .tel .txt_num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 9px;
}
.section-cta .tel .txt_num .icon {
  width: 68px;
}
.section-cta .tel .txt_num .txt {
  font-size: 2.4375rem;
  font-weight: bold;
}
.section-cta .tel .txt_time {
  margin-top: 4px;
  padding-left: 0.4rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: bold;
}
.section-cta .module_column {
  max-width: 1116px;
  margin: 0 auto;
}
.section-cta .module_column .contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  padding: 30px 0;
  border-radius: 8px;
  background-color: #fff;
}

@media screen and (max-width: 860px) {
  .section-cta {
    margin-top: 44px;
    padding: 20px 0;
  }
  .section-cta.fv h3 {
    font-size: 1rem;
  }
  .section-cta.fv .module_column {
    gap: 12px 0;
  }
  .section-cta .module_column {
    max-width: 375px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-cta .module_column .contents {
    width: 100%;
    padding: 20px;
  }
  .section-cta .module_column .contents .tel {
    margin-top: 12px;
  }
  .section-cta .module_column .contents .tel .txt_num {
    gap: 0 8px;
  }
  .section-cta .module_column .contents .tel .txt_num .icon {
    width: 36px;
  }
  .section-cta .module_column .contents .tel .txt_num .txt {
    font-size: 1.6rem;
  }
  .section-cta .module_column .contents .tel .txt_time {
    padding-left: 0.6rem;
    font-size: 0.7rem;
  }
  .section-cta h2 {
    margin-bottom: 1.2rem;
    padding: 0 22px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .section-cta h2 span {
    padding-bottom: 0.3em;
    line-height: 1.7;
  }
  .section-cta h3 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .section-cta h3.row_2 {
    padding: 0;
  }
  .section-cta p .button {
    width: 100%;
    min-width: auto;
    max-width: 288px;
    margin-top: 12px;
  }
}
/*
 * site-header
 */
.home .site-header {
  max-width: 1240px;
  margin: 88px auto 0;
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
.home .site-header .site-logo img {
  max-width: 289px;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  top: -3px;
}
.home .site-header .header-container {
  min-height: 112px;
  padding: 0 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}

.site-header .site-nav_pc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-header .site-nav_pc ul {
  list-style-type: none;
  padding: 0;
  font-weight: 700;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.site-header .cvr_pc {
  list-style-type: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 10px;
}
.site-header .cvr_pc .btn a {
  height: 44px;
  padding: 0 1em;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1.125rem;
  font-weight: bold;
}
.site-header .cvr_pc .btn.contact a {
  background-color: #36a2f5;
  color: #fff;
}
.site-header .cvr_pc .btn.document_request a {
  background-color: #ffd600;
}
.site-header .menu-trigger {
  display: none;
}

@media (min-width: 861px) and (max-width: 1240px) {
  .home .site-header .site-logo {
    width: 140px;
  }
  .site-header .cvr_pc {
    margin-left: 16px;
  }
  .site-header .cvr_pc .btn a {
    min-width: 120px;
    font-size: 0.875rem;
  }
  .site-header .site-nav_pc ul {
    gap: 0 12px;
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 860px) {
  .menu-trigger path {
    fill: #fff;
  }
  .header-cover .menu-trigger path {
    fill: #36a2f5;
  }
  .home .site-header {
    min-height: auto;
    margin: 0;
    padding: 12px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .home .site-header .header-container {
    min-height: auto;
  }
  .site-header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.3s var(--out-cubic);
    transition: all 0.3s var(--out-cubic);
    z-index: -1;
  }
  .site-header .site-nav_pc, .site-header .cvr_pc {
    display: none;
  }
  .site-header .menu-trigger {
    display: block;
  }
  .site-header .site-logo, .site-header .menu-trigger {
    z-index: 1;
  }
  body.header-cover .site-header:before {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  body.home:not(.header-cover) .site-header .site-logo {
    opacity: 0;
  }
  body.page-register .site-header, body.page-thanks .site-header {
    position: static;
  }
  .header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 20px;
  }
  .site-logo {
    max-width: 220px;
  }
  .site-logo a {
    display: block;
  }
  .site-logo__img {
    display: block;
  }
  .site-logo img {
    display: block;
    min-width: 100%;
  }
  .site-logo__img.img-1 {
    width: 172px;
  }
  .menu-close-button {
    margin: 20px 15px 40px;
    float: right;
  }
  .menu-close-button path {
    fill: #36a2f5;
  }
  .site-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: background-color 0.3s var(--out-cubic) 0.3s, -webkit-transform 0.1s linear 0.6s;
    transition: background-color 0.3s var(--out-cubic) 0.3s, -webkit-transform 0.1s linear 0.6s;
    transition: background-color 0.3s var(--out-cubic) 0.3s, transform 0.1s linear 0.6s;
    transition: background-color 0.3s var(--out-cubic) 0.3s, transform 0.1s linear 0.6s, -webkit-transform 0.1s linear 0.6s;
  }
  body.show-menu .site-nav {
    pointer-events: auto;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-transition: background-color 0.3s var(--out-cubic);
    transition: background-color 0.3s var(--out-cubic);
  }
  body.show-menu .site-nav .site-nav__container {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition: all 0.3s var(--out-cubic) 0.3s;
    transition: all 0.3s var(--out-cubic) 0.3s;
    overflow-y: scroll;
  }
  .site-nav__container {
    background-color: #fff;
    width: 100%;
    max-width: 300px;
    height: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s var(--out-cubic);
    transition: all 0.3s var(--out-cubic);
  }
  .site-nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    clear: both;
    border-top: 1px solid #ccc;
    font-weight: bold;
  }
  .site-nav .menu li {
    border-bottom: 1px solid #ccc;
  }
  .site-nav .menu a {
    display: block;
    padding: 20px;
    font-size: 0.875rem;
    line-height: 1.4;
  }
  .site-nav .cta {
    padding: 40px 22px;
  }
  .site-nav .cta__container {
    margin: 0;
  }
}
/*
 * section-introduction
 */
.section-introduction {
  background-image: url(../img/bg_hero.min.jpg);
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  position: relative;
  /*
  .intro_side-bar {
    display: flex;
    align-items: center;
    width: 384px;
    height: 728px;
    padding: 34px 22px 22px;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 2px 2px 16px 0 rgba(0, 0, 0, 0.06);
    .side-bar_title {
      font-size: 1.5rem;
      text-align: center;
      margin-bottom: 12px;
      position: relative;
      &::before {
        min-width: 235px;
        content: '無料見積り・資料請求';
        padding: .6em 1em;
        font-size: 0.9375rem;
        border-radius: 4px;
        background-color: $cvr-color;
        position: absolute;
        left: 50%;
        top: -64px;
        transform: translate(-50%, 0%);
      }
      &::after {
        content: '';
        width: 18px;
        height: 14px;
        background-image: url(../img/icon_form_fukidashi.svg);
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: -36px;
        left: 50%;
        transform: translate(-50%, 0%);
      }
    }
    .side-bar_other-txt {
      font-size: 0.875rem;
      line-height: 1.43;
      color: #8d8d8d;
    }
    .module_form {
      margin-top: 12px;
    }
  }
  */
}
.section-introduction .intro {
  min-height: 770px;
  padding-top: 35px;
}
.section-introduction .intro .hero_title {
  line-height: 1.36;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}
.section-introduction .intro_logo {
  position: absolute;
  left: 34px;
  top: 28px;
}
.section-introduction .intro_logo img {
  max-width: 416px;
  width: 100%;
  height: auto;
  display: block;
}
.section-introduction .intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  padding: 52px 0 24px;
}
.section-introduction .intro_main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-introduction .intro_main .hero_catch {
  margin-top: 74px;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 138%;
  color: #fff;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_catch {
    margin-top: 0;
    font-size: 0.7rem;
  }
}
.section-introduction .intro_main .hero_catch span {
  padding: 12px 56px 12px 0;
  display: inline-block;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_catch span {
    padding-right: 8px;
  }
}
.section-introduction .intro_main .hero_catch::before {
  content: "";
  background: -webkit-gradient(linear, left top, right top, color-stop(-0.35%, #1295DB), to(#35D4F0));
  background: linear-gradient(90deg, #1295DB -0.35%, #35D4F0 100%);
  width: 150%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
  z-index: 0;
  -webkit-transform: skewX(-22.7deg);
          transform: skewX(-22.7deg);
}
.section-introduction .intro_main .hero_title {
  font-size: 2.75rem;
  margin-top: 48px;
}
.section-introduction .intro_main .hero_title span {
  color: #F5A236;
}
.section-introduction .intro_main .hero_category--base {
  margin: 2rem 0 0;
  max-width: 64.1935483871%;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_category--base {
    margin-top: 1.2rem;
    padding-bottom: 12px;
    max-width: calc(100vw - 40px);
    width: 335px;
    position: relative;
    overflow: scroll;
  }
}
.section-introduction .intro_main .hero_category {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  gap: 12px;
  font-size: 0.8125rem;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_category {
    width: 1000px;
    gap: 8px;
  }
}
.section-introduction .intro_main .hero_category li {
  background-color: #fff;
  border-radius: 5px;
  padding: 0 10px;
  height: 31px;
  color: #666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_category li {
    height: 26px;
    font-size: 0.7rem;
  }
}
.section-introduction .intro_main .hero_point {
  margin-top: 1.375rem;
  padding: 0;
  max-width: 64.1935483871%;
  list-style: none;
  counter-reset: number 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8em 1em;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_point {
    max-width: 100%;
    gap: 0.6em;
  }
}
.section-introduction .intro_main .hero_point li {
  border: solid 1px #36a2f5;
  padding: 8px 1.2em 8px 13px;
  width: 390px;
  min-height: 72px;
  line-height: 1.3;
  border-radius: 999px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6em;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_point li {
    padding: 0.2em 1em 0.2em 0.4em;
    min-height: auto;
    width: 100%;
  }
}
.section-introduction .intro_main .hero_point li:first-child {
  margin-top: 0;
}
.section-introduction .intro_main .hero_point li:before {
  counter-increment: number 1;
  content: counter(number);
  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;
  width: 39px;
  height: 39px;
  border-radius: 39px;
  background-color: #36a2f5;
  font-weight: bold;
  color: #fff;
  font-size: 1.5625rem;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_point li:before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.1rem;
  }
}
.section-introduction .intro_main .hero_point li .small {
  margin-right: 0.5rem;
  font-size: 1rem;
  line-height: 1.8rem;
  vertical-align: middle;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_point li .small {
    font-size: 0.6rem;
    line-height: normal;
  }
}
.section-introduction .intro_main .hero_point li strong {
  font-size: 1.5rem;
  line-height: 1.8rem;
  color: #36a2f5;
  vertical-align: middle;
}
@media screen and (max-width: 860px) {
  .section-introduction .intro_main .hero_point li strong {
    font-size: 1rem;
  }
}

@supports (background-image: url(../img/bg_hero.min.webp)) {
  .section-introduction {
    background-image: url(../img/bg_hero.min.webp);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
    position: relative;
  }
}
@media (min-width: 861px) and (max-width: 1365px) {
  .section-introduction {
    padding: 0 34px;
  }
  .section-introduction .intro_main .hero_point li {
    width: 100%;
  }
  .section-introduction .intro_main .hero_catch::after {
    width: 100%;
    left: -98px;
  }
}
@media screen and (max-width: 860px) {
  .section-introduction {
    background-repeat: no-repeat;
    background-position: 57% 0;
    background-size: cover;
  }
  .section-introduction .intro {
    min-height: auto;
    padding: 56px 20px 20px;
  }
  .section-introduction .intro_logo {
    width: 220px;
    height: auto;
    top: 12px;
    left: 18px;
    gap: 0 12px;
  }
  .section-introduction .intro {
    max-width: 375px;
    margin: 0 auto;
    padding: 72px 20px 20px;
  }
  .section-introduction .intro_main {
    position: relative;
  }
  .section-introduction .intro_main .hero_title {
    margin-top: 1rem;
    line-height: 1.3;
    font-size: 1.6rem;
  }
  .section-introduction .intro_side-bar {
    display: none;
  }
}
/*
 * section-future
 */
.section-future h2 {
  font-size: 1.875rem;
  line-height: 1.27;
  text-align: center;
}
.section-future h2 .mum {
  margin-right: 0.5rem;
  color: #36a2f5;
}
.section-future .module_column {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section-future .module_column .contents {
  width: calc(50% - 19px);
  padding: 34px 22px;
}
.section-future .module_column .contents.invoice {
  width: 100%;
  margin-top: 34px;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}
.section-future .module_column .contents.invoice .module_column {
  margin-top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-future .module_column .contents.invoice .module_column .contents {
  padding: 0;
}
.section-future .module_column .contents.invoice .module_column .contents.left {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
}
.section-future .module_column .contents.invoice .module_column .contents.left h2 {
  text-align: left;
}
.section-future .module_column .contents.invoice .module_column .contents.left .txt {
  margin-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.67;
}
.section-future .module_column .contents.invoice .module_column .contents .img {
  margin-top: 0;
}
.section-future .module_column .contents .img {
  margin-top: 34px;
}
.section-future .module_column .contents .img img {
  border-radius: 8px;
}
.section-future .module_column .contents h3 {
  display: inline-block;
  margin: 22px 12px 0;
  padding-bottom: 10px;
  font-size: 1.25rem;
  color: #36a2f5;
  border-bottom: 2px solid #36a2f5;
}
.section-future .module_column .contents .list {
  list-style-type: none;
  margin: 22px 12px 0;
  padding: 0;
}
.section-future .module_column .contents .list li {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 16px;
}
.section-future .module_column .contents .list li.mt-44 {
  margin-top: 44px;
}
.section-future .module_column .contents .list li .num {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  background-color: #36a2f5;
  font-size: 1.687rem;
  color: #fff;
  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;
}
.section-future .module_column .contents .list li .txt {
  max-width: 86%;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}
.section-future .module_column .contents .list li .txt .small {
  font-size: 1rem;
}

@media (min-width: 861px) and (max-width: 1365px) {
  .section-future .module_column .contents .merit_table .row_case {
    max-width: 19.9%;
  }
  .section-future .module_column .contents .merit_table .td {
    max-width: 100%;
  }
  .section-future .module_column .contents .merit_table .row_point {
    width: 34.5%;
  }
  .section-future .module_column .contents .merit_table .row_point .th {
    width: 100%;
  }
}
@media screen and (max-width: 860px) {
  .section-future .section_header {
    font-size: 1.5rem;
  }
  .section-future .module_column .contents {
    width: 100%;
  }
  .section-future .module_column .contents.invoice {
    margin-top: 22px;
  }
  .section-future .module_column .contents.invoice .module_column .contents.left .txt {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .section-future .module_column .contents h2 {
    padding: 0;
    font-size: 1.3rem;
  }
  .section-future .module_column .contents .img {
    margin-top: 1.5em;
  }
  .section-future .module_column .contents .list li {
    gap: 0 0.5rem;
  }
  .section-future .module_column .contents .list li.mt-44 {
    margin-top: 16px;
  }
  .section-future .module_column .contents .list li .num {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    font-size: 1rem;
  }
  .section-future .module_column .contents .list li .txt {
    width: 86%;
    font-size: 1rem;
    line-height: 1.3;
  }
  .section-future .module_column .contents .list li .txt .small {
    font-size: 0.8rem;
  }
  .section-future .module_column .contents .merit_table_wrap {
    width: 100%;
    padding: 0 20px 6px 0;
    overflow-x: scroll;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table {
    margin-top: 1.5em;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_point {
    padding-top: 56px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_point .th {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 200px;
    height: 56px;
    margin-top: 8px;
    font-size: 1rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_point .th .small {
    padding-top: 0.3rem;
    font-size: 0.8rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case {
    margin-left: 8px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case.ma {
    margin-left: 12px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case.ma::before {
    content: "";
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    position: absolute;
    z-index: -1;
    left: -4px;
    top: -4px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case .th {
    font-size: 1.2rem;
    height: 56px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .row_case .td {
    width: 188px;
    height: 56px;
    margin-top: 8px;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .td .icon {
    font-size: 1.5rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .td.ma_point .icon_arrow {
    font-size: 1.2rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table .td .txt {
    font-size: 0.7rem;
  }
  .section-future .module_column .contents .merit_table_wrap .merit_table + .txt_attention {
    width: 100vw;
  }
  .section-future .module_merit .module_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 16px 0;
  }
  .section-future .module_merit .module_column .contents .h2_sub {
    font-size: 0.9rem;
  }
  .section-future .module_merit .module_column .contents h2 {
    font-size: 1.3rem;
  }
  .section-future .module_merit .module_column .contents .txt {
    font-size: 1rem;
    line-height: 1.6;
  }
  .section-future .module_merit .module_column .contents .img .notice {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  .section-future .merit_cta h2 {
    font-size: 1.5rem;
  }
  .section-future .merit_cta .merit_list li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 1.6em;
    padding: 1em 1.6em;
    gap: 0.4em 0;
  }
  .section-future .merit_cta .merit_list li:first-child {
    margin-top: 1.2rem;
  }
  .section-future .merit_cta .merit_list li .merit_list_num .txt {
    font-size: 0.7rem;
  }
  .section-future .merit_cta .merit_list li .merit_list_num .mun {
    width: 1.6rem;
    height: 1.6rem;
    line-height: 1.6rem;
    font-size: 1rem;
  }
  .section-future .merit_cta .merit_list li .merit_list_txt {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  .section-future .merit_cta .txt_trouble_question {
    margin-top: 1.2rem;
    padding: 1.2rem 0 2.6rem;
    font-size: 1rem;
    line-height: 1.3;
    background-position: 50% 90%;
    background-size: auto 58%;
  }
  .section-future .merit_cta .txt_trouble_answer {
    margin-top: 1.2rem;
    padding: 1rem;
  }
  .section-future .merit_cta .txt_trouble_answer .txt {
    font-size: 1rem;
    line-height: 1.9;
  }
  .section-future .merit_cta .txt_trouble_answer .img {
    width: 32%;
  }
}
/*
 * section-service
 */
.section-service .container .section_header .small {
  font-size: 1.375rem;
}
.section-service .container > .inner {
  margin-top: 66px;
}
.section-service .container > .inner .txt_header_sub {
  margin-top: 22px;
  font-size: 1.125rem;
  line-height: 1.67;
}
.section-service .container > .inner .img_wide {
  margin-top: 44px;
}
.section-service .container > .inner .img_wide.mt-16 {
  margin-top: 16px;
}
.section-service .container > .inner .img_wide.mt-34 {
  margin-top: 34px;
}
.section-service .container > .inner .implementation_company {
  margin-top: 66px;
  padding: 32px 34px;
  border-radius: 8px;
  border: solid 1px #dbdbdb;
  position: relative;
}
.section-service .container > .inner .implementation_company.mt-56 {
  margin-top: 56px;
}
.section-service .container > .inner .implementation_company h2 {
  min-width: 52%;
  padding: 0 0.6em;
  font-size: 1.625rem;
  color: #36a2f5;
  text-align: center;
  background-color: #f9f9f9;
  position: absolute;
  top: -0.8rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section-service .container > .inner .implementation_company .module_column {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.section-service .container > .inner .option_service .contents {
  padding: 34px 22px;
}
.section-service .container > .inner .option_service .contents .txt_mein {
  margin-top: 22px;
  font-size: 1.125rem;
  line-height: 1.67;
}

@media screen and (max-width: 860px) {
  .section-service .container .section_header .small {
    font-size: 1rem;
  }
  .section-service .container > .inner {
    margin-top: 44px;
  }
  .section-service .container > .inner .txt_header_sub {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .section-service .container > .inner .img_wide {
    margin-top: 22px;
  }
  .section-service .container > .inner .img_wide.mt-16 {
    margin-top: 8px;
  }
  .section-service .container > .inner .img_wide.mt-34 {
    margin-top: 22px;
  }
  .section-service .container > .inner .implementation_company {
    margin-top: 44px;
    padding: 3em 22px 22px;
  }
  .section-service .container > .inner .implementation_company h2 {
    width: 18rem;
    line-height: 1.2;
    font-size: 1.2rem;
  }
  .section-service .container > .inner .implementation_company .module_column {
    -webkit-box-orient: unset;
    -webkit-box-direction: unset;
        -ms-flex-direction: unset;
            flex-direction: unset;
    gap: 4px;
  }
  .section-service .container > .inner .implementation_company .module_column li {
    width: 49%;
  }
  .section-service .container > .inner .option_service .contents {
    padding: 22px;
  }
  .section-service .container > .inner .option_service .contents .txt_mein {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
/*
 * section-implementation
 */
/*
.section-implementation {
  .implementation_voice {
    margin-top: 118px;
    .contents {
      position: relative;
      .txt_fukidashi {
        width: 100%;
        padding: 12px 16px;
        line-height: 1.2;
        font-size: 1.25rem;
        color: #fff;
        background-color: $accent-color;
        border-radius: 4px;
        position: absolute;
        top: -52px;
        z-index: 10;
        &::after {
          content: '';
          width: 29px;
          height: 16px;
          background-image: url(../img/icon_implementation_list.svg);
          background-repeat: no-repeat;
          background-size: contain;
          position: absolute;
          left: 39px;
          bottom: -14px;
        }
      }
      .inner {
        .company_prof {
          display: flex;
          align-items: center;
          gap: 0 33px;
          padding: 22px 16px 0;
          .txt {
            .name {
              font-size: 1.1875rem;
              font-weight: bold;
            }
            .cat {
              margin-top: 0.5rem;
              font-size: 0.9375rem;
              line-height: 1.2;
            }
          }
        }
        .txt_mein {
          margin-top: 22px;
          font-size: 0.875rem;
          line-height: 1.71;
        }
      }
    }
  }
  .implementation_company {
    margin-top: 66px;
    padding: 32px 34px;
    border-radius: 8px;
    border: solid 1px #dbdbdb;
    position: relative;
    h2 {
      min-width: 52%;
      padding: 0 .6em;
      font-size: 1.625rem;
      color: $accent-color;
      text-align: center;
      background-color: $base-color;
      position: absolute;
      top: -.8rem;
      left: 50%;
      transform: translateX(-50%);
    }
    .module_column {
      margin: 0;
      padding: 0;
      list-style-type: none;
      gap: 16px 12px;
      li {
        display: flex;
        align-items: center;
        // justify-content: space-between;
        // gap: 0 10px;
        width: calc(25% - 9px);
        padding: 5px;
        background-color: #fff;
        border-radius: 99px;
        .icon {
          width: 46px;
        }
        .txt {
          width: 100%;
          .name {
            font-size: 1.0625rem;
            font-weight: bold;
            text-align: center;
            line-height: 1.1;
            .small {
              display: inline-block;
              font-size: 0.8125rem;
            }
          }
        }
      }
    }
  }
}

@media screen and (max-width: 860px) {
  .section-implementation {
    .module_column {
      margin-top: 44px;
      // gap: unset;
      .contents {
        margin-top: calc(3.3em + 16px);
        &:first-child {
          margin-top: 3.3em;
        }
        .txt_fukidashi {
          font-size: .9rem;
          line-height: 1.3;
        }
        .inner {
          .company_prof {
            padding: 16px 16px 0;
            gap: 0 1rem;
            .img {
              width: 60px;
            }
            .txt {
              .name {
                font-size: 1.1rem;
              }
              .cat {
                font-size: .7rem;
              }
            }
          }
          h3 {
            font-size: 1.2rem;
            line-height: 1.3;
          }
          .txt_mein {
            margin-top: 0.8em;
            font-size: 0.9rem;
            line-height: 1.6;
          }
        }
      }
    }
    .implementation_company {
      padding: 3em 22px 22px;
      h2 {
        width: 18rem;
        line-height: 1.2;
        font-size: 1.2rem;
      }
      .module_column {
        flex-direction: unset;
        gap: 4px;
        li {
          width: 49%;
          .icon {
            width: 30px;
          }
          .txt {
            .name {
              font-size: .8rem;
              .small {
                font-size: 0.6rem;
              }
            }
          }
        }
      }
    }
  }
}
*/
/*
 * section-implementation-support
 */
.section-implementation-support .support_list {
  gap: 0 12px;
}
.section-implementation-support .support_list .contents {
  padding: 16px;
  position: relative;
}
.section-implementation-support .support_list .contents .inner .num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 37px;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 4px;
  background-color: #36a2f5;
}
.section-implementation-support .support_list .contents .inner h3 {
  margin-top: 12px;
  font-size: 1.375rem;
  text-align: center;
}
.section-implementation-support .support_list .contents .inner .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 12px;
}
.section-implementation-support .support_list .contents .inner .txt_mein {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
}
.section-implementation-support .support_list .contents .inner .txt_mein .small {
  font-size: 0.6rem;
}
.section-implementation-support .support_list .contents .icon_arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 10;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.section-implementation-support .support_list .contents .icon_arrow path {
  fill: #36a2f5;
}
.section-implementation-support .support_list .contents:last-child .icon_arrow {
  display: none;
}

@media screen and (max-width: 860px) {
  .section-implementation-support .support_list {
    gap: 16px 0;
  }
  .section-implementation-support .support_list .contents .inner .num {
    height: 1.6rem;
    font-size: 0.8rem;
  }
  .section-implementation-support .support_list .contents .inner h3 {
    font-size: 1.1rem;
  }
  .section-implementation-support .support_list .contents .inner .img img {
    width: 72px;
  }
  .section-implementation-support .support_list .contents .icon_arrow {
    width: 20px;
    margin-left: -10px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    left: 50%;
    top: auto;
    bottom: -34px;
  }
}
/*
 * section-qa
 */
.section-qa a {
  color: #36a2f5;
  text-decoration: underline;
}
.section-qa .section-qa_list {
  max-width: 880px;
  margin: 12px auto 0;
  padding: 22px;
  border-radius: 8px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  background-color: #fff;
}
.section-qa .section-qa_list.first {
  margin-top: 44px;
}
.section-qa .section-qa_list .toggle {
  display: none;
}
.section-qa .section-qa_list .title, .section-qa .section-qa_list .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section-qa .section-qa_list .title {
  padding-right: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.6em;
  line-height: 2rem;
  font-size: 1.375rem;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
.section-qa .section-qa_list .title .icon_q {
  font-size: 1.875rem;
  color: #36a2f5;
  font-family: roboto;
  font-weight: normal;
}
.section-qa .section-qa_list .title::after, .section-qa .section-qa_list .title::before {
  content: "";
  position: absolute;
  right: 9px;
  top: calc(50% - 9px);
  width: 2px;
  height: 18px;
  background-color: #36a2f5;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.section-qa .section-qa_list .title::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.section-qa .section-qa_list .content {
  max-height: 0;
  overflow: hidden;
}
.section-qa .section-qa_list .content p {
  margin-top: 0.875em;
  padding-left: 2.7em;
  font-size: 1rem;
  line-height: 1.71;
}
.section-qa .section-qa_list .content p .underline {
  font-weight: bold;
  color: #36a2f5;
}
.section-qa .section-qa_list .content p .small {
  display: inline-block;
  font-size: 0.875rem;
}
.section-qa .section-qa_list .toggle:checked + .title + .content {
  max-height: 500px;
  -webkit-transition: all 1.2s;
  transition: all 1.2s;
}
.section-qa .section-qa_list .toggle:checked + .title::before {
  -webkit-transform: rotate(90deg) !important;
          transform: rotate(90deg) !important;
}

@media screen and (max-width: 860px) {
  .section-qa .container {
    max-width: 375px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section-qa .section-qa_list {
    padding: 16px;
  }
  .section-qa .section-qa_list .title {
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .section-qa .section-qa_list .title .icon_q {
    font-size: 1.7rem;
  }
  .section-qa .section-qa_list .content p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.5em 0 0 2.6em;
    padding: 0;
  }
  .section-qa .section-qa_list .content p .small {
    font-size: 0.7rem;
  }
}
/*
 * section-contact
 */
.section-contact .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  max-width: 880px;
  margin: 66px auto 0;
  padding: 0;
  gap: 0 11px;
}
.section-contact .step li {
  width: 33.33%;
  padding-bottom: 12px;
  font-size: 1.125rem;
  color: #c7c7c7;
  border-bottom: 3px solid #c7c7c7;
}
.section-contact .step li.current {
  font-weight: bold;
  color: #fa8290;
  border-color: #fa8290;
}
.section-contact .module_form {
  max-width: 880px;
  margin: 0 auto;
}
.section-contact .module_form .module_column {
  margin-top: 34px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-contact .module_form .module_column.last {
  margin-top: 22px;
}
.section-contact .module_form .module_column .contents {
  width: 100%;
  padding: 34px 150px;
}
.section-contact .module_form .module_column .contents .section_header-type-2 {
  margin-bottom: 22px;
  padding: 0.25rem 0 0.25rem 0.75rem;
  font-size: 1.125rem;
  border-color: #82befa;
}
.section-contact .module_form .module_column .contents .section_header-type-2.required {
  border-color: #fa8290;
}
.section-contact .module_form .module_column .contents .field-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-contact .module_form .module_column .contents .field-label .title {
  min-width: 160px;
  padding-top: 9px;
}
.section-contact .module_form .module_column .contents .field-label .column_2 {
  gap: 14px 12px;
}
.section-contact .module_form .module_column .contents .field-label .column_2 .form-field.checkbox {
  min-width: 44%;
  width: auto;
}
.section-contact .module_form .module_column .contents .field-label input[type=text], .section-contact .module_form .module_column .contents .field-label input[type=tel], .section-contact .module_form .module_column .contents .field-label select, .section-contact .module_form .module_column .contents .field-label textarea {
  margin-top: 0;
}
.section-contact .module_form .module_column .contents .field-label .input_wrap {
  width: 100%;
}
.section-contact .module_form .module_column .contents .field-label .input_wrap .notice {
  margin-top: 8px;
  font-size: 0.75rem;
  color: #adadad;
}
.section-contact .module_form .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 35px;
  background-color: transparent;
}
.section-contact .module_form .button {
  max-width: 340px;
  margin: 35px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-contact .txt_form_attention {
  max-width: 580px;
  margin: 22px auto 0;
}

@media screen and (max-width: 860px) {
  .section-contact .step {
    margin-top: 44px;
  }
  .section-contact .step li {
    padding-bottom: 0.5rem;
    font-size: 0.7rem;
  }
  .section-contact .module_form .module_column .contents {
    padding: 20px;
  }
  .section-contact .module_form .module_column .contents .section_header-type-2 {
    padding: 0.2rem 0 0.2rem 0.75rem;
    font-size: 1rem;
  }
  .section-contact .module_form .module_column .contents .field-label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px 0;
  }
  .section-contact .module_form .module_column .contents .field-label .title {
    width: 100px;
    padding-top: 0;
  }
  .section-contact .module_form .module_column .contents .button {
    width: 100%;
  }
}
/*
 * site-footer
 */
.site-footer {
  max-width: 1116px;
  margin: 0 auto;
  padding: 66px 0;
}
.site-footer .inner .txt_copy {
  font-size: 0.875rem;
  color: #666;
  text-align: center;
}

@media screen and (max-width: 860px) {
  .site-footer {
    padding: 34px 20px;
  }
  .site-footer .logo {
    width: 100px;
    margin: 0 auto;
  }
  .site-footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/*
 * page-register
 */
body.page-register, body.page-thanks {
  background-color: #fff;
}
body.page-register .site-logo, body.page-thanks .site-logo {
  max-width: 196px;
}
body.page-register .site-footer .inner .txt_copy, body.page-thanks .site-footer .inner .txt_copy {
  color: #333;
}

body.page-register .site-header, body.page-thanks .site-header {
  padding: 40px 0;
}

.page-register .page-section, .page-thanks .page-section {
  padding: 60px 0;
  scroll-margin: 0;
}

.page-register .header-container, .page-thanks .header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-register .container, .page-thanks .container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-register .site-footer, .page-thanks .site-footer {
  padding: 0;
}
.page-register .site-footer .inner, .page-thanks .site-footer .inner {
  margin: 0.8em 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-register .site-footer .inner .txt_copy, .page-thanks .site-footer .inner .txt_copy {
  margin-top: 0;
}

.page-register.mail p {
  margin-top: 1em;
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
}
.page-register.mail p.error_messe {
  color: red;
}
.page-register.mail .formTable {
  width: 100%;
  margin: 1rem auto 0;
  border-collapse: collapse;
}
.page-register.mail .formTable td, .page-register.mail .formTable th {
  border: 1px solid #c8c8c8;
  padding: 10px;
}
.page-register.mail .formTable th {
  width: 30%;
  font-weight: normal;
  background: #f0f0f0;
  text-align: left;
}
.page-register.mail .button_form {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 8px;
}
.page-register.mail .button_form input {
  width: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-register.mail .button_form input.cta_form-1 {
  margin-left: 2.5%;
}
.page-register .form_wrap {
  width: 298px;
  margin: 0 auto;
}
.page-register .form_wrap .form_title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (min-width: 861px) and (max-width: 1365px) {
  .page-register .page-section, .page-thanks .page-section {
    padding: 60px 0;
    scroll-margin: 120px 0;
  }
}
@media screen and (max-width: 860px) {
  body.page-register .site-header, body.page-thanks .site-header {
    padding: 12px 0;
  }
  .page-register .page-section, .page-thanks .page-section {
    padding: 40px 0;
    scroll-margin: 80px 0;
  }
  .page-register.mail .formTable {
    margin: 1rem auto 0;
  }
  .page-register.mail .formTable th, .page-register.mail .formTable td {
    width: auto;
    display: block;
  }
  .page-register.mail .formTable th {
    width: auto;
    margin-top: 0.6rem;
    border-bottom: 0;
    display: block;
  }
}
/*
 * thanks
 */
.section-thanks {
  padding-top: 40px;
}
.section-thanks .thanks__header {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}
.section-thanks .thanks__content p {
  margin-top: 1em;
  line-height: 1.6;
  text-align: center;
  font-size: 1rem;
}
.section-thanks .thanks__content a {
  text-decoration: underline;
}
.section-thanks .thanks__content a:hover {
  color: #36a2f5;
}
.section-thanks .thanks__action {
  padding-top: 40px;
  text-align: center;
}
.section-thanks .thanks__action .button {
  min-width: 300px;
}

.section-cta-fv {
  background: -webkit-gradient(linear, left top, right top, color-stop(-0.35%, #1295DB), to(#35D4F0));
  background: linear-gradient(90deg, #1295DB -0.35%, #35D4F0 100%);
  padding: 10px 20px;
}
.section-cta-fv--wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 53px;
  position: relative;
}
@media screen and (max-width: 860px) {
  .section-cta-fv--wrap {
    text-align: center;
    display: block;
  }
}
.section-cta-fv h2 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 145.8333333333%;
  color: #fff;
}
@media screen and (max-width: 860px) {
  .section-cta-fv h2 {
    font-size: 1rem;
  }
}
.section-cta-fv .button.cta_form-1 {
  width: 540px;
  font-size: 1.25rem;
}
@media screen and (max-width: 860px) {
  .section-cta-fv .button.cta_form-1 {
    margin: 12px auto 0;
    padding-left: 42px;
    padding-right: 42px;
    max-width: 375px;
    width: 100%;
    font-size: 1.1rem;
  }
}

.section-cta-basic {
  background: rgba(0, 179, 250, 0.25);
  margin: 88px 0 0;
  padding: 52px 20px 50px;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .section-cta-basic {
    padding: 20px;
  }
}
.section-cta-basic h2 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 143.75%;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .section-cta-basic h2 {
    font-size: 1rem;
  }
}
.section-cta-basic h2 + * {
  margin-top: 34px;
}
@media screen and (max-width: 860px) {
  .section-cta-basic h2 + * {
    margin-top: 12px;
  }
}
.section-cta-basic h2 + .read {
  margin-top: 22px;
}
@media screen and (max-width: 860px) {
  .section-cta-basic h2 + .read {
    margin-top: 12px;
  }
}
.section-cta-basic .read {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 180%;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .section-cta-basic .read {
    font-size: 1rem;
  }
}
.section-cta-basic .read + * {
  margin-top: 34px;
}
@media screen and (max-width: 860px) {
  .section-cta-basic .read + * {
    margin-top: 12px;
  }
}
.section-cta-basic ul {
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  max-width: 1024px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px 8px;
}
.section-cta-basic ul + * {
  margin-top: 34px;
}
@media screen and (max-width: 860px) {
  .section-cta-basic ul + * {
    margin-top: 12px;
  }
}
.section-cta-basic li {
  background: -webkit-gradient(linear, left top, right top, color-stop(-0.35%, #1295DB), to(#35D4F0));
  background: linear-gradient(90deg, #1295DB -0.35%, #35D4F0 100%);
  border-radius: 5px;
  list-style: none;
  margin: 0;
  padding: 12px 34px;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 145.4545454545%;
  color: #fff;
}
@media screen and (max-width: 860px) {
  .section-cta-basic li {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}
.section-cta-basic .button.cta_form-1 {
  padding-left: 42px;
  padding-right: 42px;
}
@media screen and (max-width: 860px) {
  .section-cta-basic .button.cta_form-1 {
    max-width: 375px;
    width: 100%;
  }
}
.section-cta-basic.section-cta-price .button.cta_form-1 {
  max-width: 340px;
  width: 100%;
  position: relative;
}
.section-cta-basic.section-cta-price .button.cta_form-1 svg {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translate3d(0, -50%, 0);
          transform: translate3d(0, -50%, 0);
}

.container-youtube {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}
@media (max-width: 860px) {
  .container-youtube {
    max-width: 375px;
  }
}

.youtube {
  padding-bottom: 56.25%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.page-section.section-about {
  margin-top: 66px;
  padding-top: 0;
}

.section-about .module_column {
  margin-top: 0;
}
.section-about .contents_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.section-about h2 {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 129%;
  color: #36a2f5;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
@media (max-width: 860px) {
  .section-about h2 {
    font-size: 1.5rem;
  }
}
.section-about h2 + * {
  margin-top: 1.375rem;
}
.section-about p {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 167%;
}
@media (max-width: 860px) {
  .section-about p {
    font-size: 1rem;
  }
}

@media (max-width: 860px) {
  .section-point5 h2 {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 375px;
  }
}
.section-point5 h2 + * {
  margin-top: 66px;
}
@media (max-width: 860px) {
  .section-point5 h2 + * {
    margin-top: 22px;
  }
}
.section-point5--point {
  font-style: normal;
  font-weight: 700;
  font-size: 1.375rem;
  color: #36a2f5;
  vertical-align: middle;
}
@media (max-width: 860px) {
  .section-point5--point {
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
.section-point5--point + * {
  margin-top: 12px;
}
.section-point5--point span {
  margin-left: 8px;
  background: #36A2F5;
  border-radius: 99px;
  width: 2.75rem;
  height: 2.75rem;
  font-style: normal;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 44px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 860px) {
  .section-point5--point span {
    width: 1.4rem;
    height: 1.4rem;
    font-size: 1rem;
    line-height: 1.4rem;
  }
}
.section-point5 h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 114%;
}
@media (max-width: 860px) {
  .section-point5 h3 {
    font-size: 1.4rem;
  }
}
.section-point5 h3 + * {
  margin-top: 22px;
}
.section-point5--read {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 167%;
}
@media (max-width: 860px) {
  .section-point5--read {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.section-point5 .container + .container {
  margin-top: 56px;
}
@media (max-width: 860px) {
  .section-point5 .container + .container {
    margin-top: 28px;
  }
}
.section-point5 .module_column .contents_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 860px) {
  .section-point5 .module_column .contents_text {
    display: block;
  }
}
@media (max-width: 860px) {
  .section-point5 .module_column.column_4.section-point5--occupation {
    gap: 12px 0;
  }
}
.section-point5--occupation .contents {
  padding: 16px;
}
.section-point5--occupation .contents h3 {
  background: #F5A236;
}
.section-point5--occupation .contents:nth-child(2) h3 {
  background: #36A2F5;
}
.section-point5--occupation .contents:nth-child(3) h3 {
  background: #5ACC3D;
}
.section-point5--occupation .contents:nth-child(4) h3 {
  background: #0a0d65;
}
.section-point5--occupation .contents:nth-child(5) h3 {
  background: #ff5555;
}
.section-point5--occupation h3 {
  border-radius: 5px;
  padding: 6px 10px 4px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 133%;
  color: #FFFFFF;
  text-align: center;
  display: block;
}
.section-point5--occupation ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: block;
}
.section-point5--occupation li {
  padding-left: 1.2em;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 167%;
  position: relative;
}
@media (max-width: 860px) {
  .section-point5--occupation li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.section-point5--occupation li::before {
  content: "";
  background: #333;
  width: 3px;
  height: 3px;
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0.5em;
}

.section-worries {
  background: -webkit-gradient(linear, left top, left bottom, from(#1295DB), to(#35D4F0));
  background: linear-gradient(180deg, #1295DB 0%, #35D4F0 100%);
  padding-bottom: 44px;
}
.section-worries .section_header {
  color: #fff;
}
.section-worries .section_header::after {
  background-color: #fff;
}
.section-worries .section_header_txt {
  color: #fff;
}
.section-worries--strong {
  margin-top: 34px;
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 161.7647058824%;
  text-align: center;
  color: #fff;
}
@media (max-width: 860px) {
  .section-worries--strong {
    font-size: 1.2rem;
  }
}
.section-worries--strong span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-color: #fff;
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
}
@media (max-width: 860px) {
  .section-worries--strong span {
    text-underline-offset: 2px;
  }
}
@media (max-width: 860px) {
  .section-worries .module_column.column_3 {
    gap: 12px 0;
  }
}
.section-worries h3.section-worries--point, .section-worries--point {
  margin-top: 25px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 133.3333333333%;
  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;
  gap: 0 16px;
  min-height: 3rem;
}
.section-worries h3.section-worries--point span, .section-worries--point span {
  background: #36A2F5;
  border-radius: 99px;
  width: 2.75rem;
  height: 2.75rem;
  font-style: normal;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.75rem;
  color: #fff;
  text-align: center;
  display: block;
}
.section-worries--picture {
  padding: 1rem;
  text-align: center;
}
.section-worries--picture img {
  max-width: 240px;
  width: 100%;
  height: auto;
}
.section-worries--btm-arrow {
  margin-top: -1px;
  text-align: center;
}
.section-worries--btm-arrow img {
  margin: 0 auto;
  max-width: 100%;
  width: 22.125rem;
  height: auto;
  display: block;
}
@media (max-width: 860px) {
  .section-worries--btm-arrow img {
    width: 160px;
  }
}

.page-section.section-case {
  margin-top: 44px;
  padding-top: 0;
}

@media screen and (max-width: 860px) {
  .section-case .module_column.column_3 {
    gap: 12px 0;
  }
}
.section-case .contents {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: rgba(255, 255, 255, 0);
}
.section-case .contents a {
  display: block;
}
.section-case .contents a > * {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.section-case .contents a:hover > * {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.section-case h3.section-case--fukidashi {
  background: #36A2F5;
  border-radius: 4px;
  margin: 0 0 8px;
  min-height: 92px;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 120%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 860px) {
  .section-case h3.section-case--fukidashi {
    padding: 10px;
    min-height: auto;
    font-size: 1rem;
  }
}
.section-case h3.section-case--fukidashi::after {
  content: "";
  border-style: solid solid none;
  border-width: 16px 15px 0;
  border-color: #36A2F5 transparent;
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  bottom: -12px;
  left: 29px;
}
.section-case img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
}
.section-case .inner {
  background-color: #fff;
  border-radius: 0 0 8px 8px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.03);
  padding: 22px 16px;
}
.section-case--organization {
  font-weight: 400;
  font-size: 0.8125rem;
  line-height: 161.5384615385%;
}
.section-case--num {
  margin-top: 12px;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 160%;
  color: #36A2F5;
}
.section-case--num .small {
  font-weight: 400;
  font-size: 10px;
}
.section-case--text {
  margin-top: 12px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 168.75%;
}

.section-flow .contents {
  position: relative;
}
.section-flow .contents::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 35px 32px;
  border-color: transparent transparent transparent #007bff;
  display: block;
  position: absolute;
  top: 50%;
  right: -29px;
  z-index: 1;
}
@media (max-width: 860px) {
  .section-flow .contents::after {
    border-width: 22px 22px 0 22px;
    border-color: #007bff transparent transparent transparent;
    top: auto;
    right: auto;
    bottom: -18px;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@media (max-width: 860px) {
  .section-flow .module_column.column_3 {
    gap: 12px 0;
  }
}
.section-flow .module_column.column_3 .contents:last-child::after {
  display: none;
}
.section-flow .inner {
  padding: 16px;
}
.section-flow .num {
  background: #36A2F5;
  border-radius: 4px;
  padding: 10px 0px;
  width: 100%;
  height: 48px;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 133.3333333333%;
  color: #fff;
  text-align: center;
  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;
}
@media (max-width: 860px) {
  .section-flow .num {
    padding: 6px 10px 4px;
    height: auto;
  }
}
.section-flow h3 {
  margin-top: 12px;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 145.4545454545%;
  text-align: center;
}
.section-flow .img {
  margin-top: 22px;
  text-align: center;
}
.section-flow .img img {
  margin: 0 auto;
  width: 124px;
  height: 124px;
  display: block;
}
.section-flow .txt_mein {
  margin-top: 22px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 150%;
}

@media (max-width: 860px) {
  .section-download .module_column.column_3 {
    gap: 12px 0;
  }
}
.section-download .inner {
  padding: 22px 16px;
}
.section-download img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
.section-download a {
  color: #36A2F5;
}
.section-download a:hover {
  text-decoration-line: none;
}
.section-download a::before {
  margin-right: 8px;
  content: "";
  background: url(../img/icon_download_pdf.min.svg) no-repeat 0 0;
  background-size: 23px 28px;
  width: 23px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
}
.section-download .text {
  min-height: 3.6rem;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 140%;
  display: block;
}
@media (max-width: 860px) {
  .section-download .text {
    min-height: 1rem;
    font-size: 1rem;
  }
}
.section-download .link {
  margin-top: 16px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 162.5%;
}/*# sourceMappingURL=style.css.map */