@charset "UTF-8";
/*============================================================
	Base
============================================================*/
html,
body {
  width: 100%;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  html,
  body {
    min-height: 100vh;
  }
}

html {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
     -moz-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #000;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 3.7333333333vw;
    -webkit-text-size-adjust: 100%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 1.2vw;
  }
}
html * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  letter-spacing: 0.1em;
}

body {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}
@media only screen and (max-width: 767px) {
  body.fixed {
    height: -webkit-fill-available;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

img {
  width: 100%;
  height: auto;
}
img[src$=".svg"] {
  max-width: 100%;
}

a,
a * {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #000;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:hover img {
  opacity: 0.75;
}

header,
main,
section,
footer {
  width: 100%;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
     -moz-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  min-height: 1px;
}

section {
  padding: 5.5555555556rem 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 4.2857142857rem 0;
  }
}

p {
  line-height: 1.8;
  text-align: justify;
}

/*============================================================
	Commmon
============================================================*/
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.inner {
  width: 80vw;
  max-width: 1200px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}
.inner .container {
  width: 83.3333333333%;
  max-width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .inner .container {
    width: 100%;
    max-width: 100%;
  }
}

strong {
  color: #FF3D52;
  font-weight: 600;
}

/*  scroll hint
-------------------------------------------------*/
@-webkit-keyframes scroll-hint-animation {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-40%, -50%);
            transform: translate(-40%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@keyframes scroll-hint-animation {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    -webkit-transform: translate(-40%, -50%);
            transform: translate(-40%, -50%);
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.scroll-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.7142857143rem;
  background: rgba(11, 48, 142, 0.5);
  color: #fff;
  font-weight: 600;
  display: none;
  -webkit-animation: scroll-hint-animation 2s infinite ease;
          animation: scroll-hint-animation 2s infinite ease;
  white-space: nowrap;
}
.scroll-hint--show {
  display: block;
}

/*  logo
-------------------------------------------------*/
.logo {
  display: inline-block;
  line-height: 1;
  margin-right: 0.3em;
  width: 16.6666666667rem;
}
@media only screen and (max-width: 767px) {
  .logo {
    width: 12.5rem;
  }
}

/*  bg
-------------------------------------------------*/
.shade {
  position: relative;
}
.shade::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 11.1111111111rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#E6E6E6), to(#fff));
  background: -webkit-linear-gradient(#E6E6E6, #fff);
  background: linear-gradient(#E6E6E6, #fff);
  left: 0;
  top: 0;
  z-index: -1;
}
.shade .inner {
  position: relative;
  z-index: 2;
}

.yellow {
  background: #FFF052;
  position: relative;
}
.yellow::before, .yellow::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}
.yellow::before {
  border-color: rgba(255, 255, 255, 0.3) transparent transparent transparent;
  left: 0;
  top: 0;
}
.yellow::after {
  border-color: transparent transparent rgba(255, 255, 255, 0.3) transparent;
  right: 0;
  bottom: 0;
}
.yellow .inner {
  position: relative;
  z-index: 2;
}

.mix {
  background: #0B308E;
  position: relative;
}
.mix::before, .mix::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
}
.mix::before {
  width: 100%;
  height: 100%;
  background: #FFF052;
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
          clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.mix::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent rgba(255, 255, 255, 0.3) transparent;
}
.mix .inner {
  position: relative;
  z-index: 2;
}
.mix .inner h2 {
  color: #fff;
}

/*  hedings
-------------------------------------------------*/
h2 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  color: #0B308E;
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 1.7142857143rem;
    margin-bottom: 2.1428571429rem;
    line-height: 1.4;
  }
}

/*  inquiries
-------------------------------------------------*/
.inquiries {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .inquiries {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media print, screen and (min-width: 768px) {
  .inquiries .tel_wrap {
    margin: 0 auto 2.7777777778rem;
  }
}
.inquiries .tel_wrap span {
  display: block;
  width: 33.3333333333rem;
  height: 2.7777777778rem;
  line-height: 2.7777777778rem;
  border-radius: 1.3888888889rem;
  background: #0094DE;
  color: #fff;
  font-size: 1.3333333333rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  .inquiries .tel_wrap span {
    width: 21.4285714286rem;
    height: 1.7857142857rem;
    line-height: 1.7857142857rem;
    border-radius: 0.8928571429rem;
    font-size: 0.8571428571rem;
    margin-bottom: 0.7142857143rem;
  }
}
@media only screen and (max-width: 767px) {
  .inquiries .tel_wrap {
    margin-bottom: 1.7857142857rem;
  }
}
@media print, screen and (min-width: 768px) {
  .inquiries ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
       -moz-box-orient: horizontal;
       -moz-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .inquiries ul li:first-child {
    margin-left: 1.6666666667rem;
  }
}

.tel {
  color: #0094DE;
  font-weight: 600;
  letter-spacing: 0;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .tel {
    font-size: 4rem;
    padding-left: 5.5555555556rem;
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  .tel {
    font-size: 2.5714285714rem;
    padding-left: 3.5714285714rem;
  }
}
.tel::before {
  position: absolute;
  content: "";
  width: 4.4444444444rem;
  height: 2.9444444444rem;
  background: url(../img/icon-freedial.svg) no-repeat center left/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .tel::before {
    width: 2.8571428571rem;
    height: 1.8928571429rem;
  }
}
.tel + small {
  display: block;
  text-align: center;
  font-size: 1.7777777778rem;
  margin-top: 1.1111111111rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .tel + small {
    font-size: 1.1428571429rem;
    margin-top: 0.7142857143rem;
  }
}

.btn,
.line {
  display: block;
  width: 25rem;
  height: 5rem;
  line-height: 5rem;
  border-radius: 2.5rem;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .btn,
  .line {
    width: 21.4285714286rem;
    height: 4.2857142857rem;
    line-height: 4.2857142857rem;
    border-radius: 2.1428571429rem;
    font-size: 1.5rem;
  }
}
.btn::before, .btn::after,
.line::before,
.line::after {
  position: absolute;
  content: "";
  top: 50%;
}
.btn::before,
.line::before {
  width: 2.2222222222rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  .btn::before,
  .line::before {
    width: 1.8928571429rem;
    left: 1.4285714286rem;
  }
}
.btn::after,
.line::after {
  width: 0.8333333333rem;
  height: 0.8333333333rem;
  border-bottom: solid 0.125rem #fff;
  border-right: solid 0.125rem #fff;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  right: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  .btn::after,
  .line::after {
    width: 0.7142857143rem;
    height: 0.7142857143rem;
    border-bottom-width: 0.1071428571rem;
    border-right-width: 0.1071428571rem;
    right: 1.4285714286rem;
  }
}

.btn {
  background: #FF3D52;
}
@media only screen and (max-width: 767px) {
  .btn {
    margin-bottom: 1.7857142857rem;
  }
}
.btn::before {
  background: url(../img/icon-mail.svg) no-repeat center left/contain;
  height: 1.5277777778rem;
}
@media only screen and (max-width: 767px) {
  .btn::before {
    height: 1.3214285714rem;
  }
}

.line {
  background: #00B900;
}
.line::before {
  background: url(../img/icon-line.svg) no-repeat center left/contain;
  height: 2.1666666667rem;
}
@media only screen and (max-width: 767px) {
  .line::before {
    height: 1.8214285714rem;
  }
}

/*  form
-------------------------------------------------*/
#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
}

#mfp_overlay_background {
  background: #000;
  display: none;
  z-index: 10000;
}

#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}
#mfp_overlay #mfp_overlay_inner {
  background: #fff;
  padding: 5.5555555556rem;
  margin: auto;
  width: 66.6666666667vw;
  max-width: 1000px;
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner {
    padding: 1.7857142857rem;
    width: 86.6666666667%;
    max-width: 86.6666666667vw;
  }
}
#mfp_overlay #mfp_overlay_inner h4 {
  color: #0B308E;
  font-size: 1.6666666667rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner h4 {
    font-size: 1.2857142857rem;
  }
}
#mfp_overlay #mfp_overlay_inner table {
  width: 100%;
}
#mfp_overlay #mfp_overlay_inner table tr {
  border-bottom: solid 1px #0B308E;
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner table tr {
    display: block;
  }
}
#mfp_overlay #mfp_overlay_inner table th,
#mfp_overlay #mfp_overlay_inner table td {
  padding: 1.1111111111rem 0;
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner table th,
  #mfp_overlay #mfp_overlay_inner table td {
    width: 100%;
    padding: 0.7142857143rem 0;
    display: list-item;
    list-style: none;
  }
}
@media print, screen and (min-width: 768px) {
  #mfp_overlay #mfp_overlay_inner table th {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  #mfp_overlay #mfp_overlay_inner table th {
    padding: 0.7142857143rem 0 0;
  }
}
@media print, screen and (min-width: 768px) {
  #mfp_overlay #mfp_overlay_inner table td {
    width: 70%;
  }
}

#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}

#mfp_loading {
  z-index: 20001;
  position: absolute;
  display: none;
  width: 2.2222222222rem;
  height: 2.2222222222rem;
  background-image: url(../img/loading.svg);
}

input,
select,
textarea {
  text-align: left;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  color: #000;
  padding: 0.5555555556rem;
  height: 2.7777777778rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.2777777778rem;
  border: solid 1px #ccc;
  background: #f2f2f2;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #0B308E;
  outline: none;
}
input.problem,
select.problem,
textarea.problem {
  background: #FFD8DC;
}

input {
  width: 100%;
}
input[type=number] {
  text-align: left !important;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
input[type=checkbox] {
  display: none;
}
input.half {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  input.half {
    width: 70%;
  }
}

select {
  width: 100%;
  padding: 0.5555555556rem 1.9444444444rem 0.5555555556rem 0.5555555556rem;
}

label {
  position: relative;
  display: block;
}
label.select {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  label.select {
    width: 70%;
  }
}
label.select::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #999 transparent transparent transparent;
  border-width: 0.5555555556rem 0.4166666667rem 0 0.4166666667rem;
  top: 1.1111111111rem;
  right: 0.5555555556rem;
}
label span {
  position: relative;
  padding-left: 1.6666666667rem;
}
label span::before {
  position: absolute;
  content: "";
  width: 1.1111111111rem;
  height: 1.1111111111rem;
  border: solid 1px #000;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
label input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  width: 0.8333333333rem;
  height: 0.5555555556rem;
  border-left: solid 3px #0094DE;
  border-bottom: solid 3px #0094DE;
  left: 0.1111111111rem;
  bottom: 0.5555555556rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

textarea {
  width: 100% !important;
  min-height: 11.1111111111rem;
}

button {
  display: inline-block;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  width: 15.5555555556rem;
  height: 3.1111111111rem;
  line-height: 3.1111111111rem;
  border-radius: 1.5555555556rem;
  text-align: center;
  font-size: 1.0888888889rem;
  font-weight: 600;
  position: relative;
}
button::after {
  position: absolute;
  content: "";
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  width: 0.5rem;
  height: 0.5rem;
  right: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}
button::-moz-focus-inner {
  border: 0;
}
button[disabled] {
  background: #ccc !important;
  cursor: default;
}
button#submit_btn {
  background: #0094DE;
}
button#mfp_button_send {
  background: #FF3D52;
}
button#mfp_button_cancel {
  background: #999;
  width: 10rem;
  margin-right: 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  button#mfp_button_cancel {
    margin-right: 0.7142857143rem;
  }
}
button#mfp_button_cancel::after {
  display: none;
}

/*============================================================
	Layout
============================================================*/
/*  header
-------------------------------------------------*/
header {
  position: fixed;
  left: 0;
  top: 0;
  padding: 1.6666666667rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  z-index: 1000;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 1.4285714286rem 1.0714285714rem;
  }
}
header h1 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  header h1 .logo {
    width: 10.7142857143rem;
  }
}
header h1 span {
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  header h1 span {
    font-size: 0.7857142857rem;
  }
}
header ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header ul li:not(:last-child) {
  margin-right: 1.6666666667rem;
}
header ul li .tel {
  font-size: 2rem;
  padding-left: 2.7777777778rem;
}
header ul li .tel::before {
  width: 2.2222222222rem;
  height: 1.4722222222rem;
}
header ul li .tel + small {
  text-align: right;
  font-size: 0.8888888889rem;
  margin-top: 0.5555555556rem;
  letter-spacing: 0.1em;
}
header ul li .btn {
  width: 16.6666666667rem;
  height: 3.3333333333rem;
  line-height: 3.3333333333rem;
  border-radius: 1.6666666667rem;
  color: #fff;
  font-size: 1.1666666667rem;
}
header ul li .btn::before {
  width: 1.5rem;
  height: 1rem;
  left: 1.3888888889rem;
}
header ul li .btn::after {
  width: 0.5555555556rem;
  height: 0.5555555556rem;
  border-bottom-width: 0.0833333333rem;
  border-right-width: 0.0833333333rem;
  right: 1.3888888889rem;
}
header ul li .hamburger {
  display: block;
  width: 2.7777777778rem;
  height: 1.6111111111rem;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 767px) {
  header ul li .hamburger {
    width: 1.7857142857rem;
    height: 1.0357142857rem;
  }
}
header ul li .hamburger span {
  position: absolute;
  width: 100%;
  height: 0.1666666667rem;
  background: #0B308E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  header ul li .hamburger span {
    height: 0.1071428571rem;
  }
}
header ul li .hamburger span:first-child {
  top: 0;
}
header ul li .hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
header ul li .hamburger span:last-child {
  bottom: 0;
}
header ul li .hamburger.active span:first-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
header ul li .hamburger.active span:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
header ul li .hamburger.active span:last-child {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

nav {
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav.open {
  opacity: 1;
  visibility: visible;
}
nav > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  nav > ul {
    padding-bottom: 2.8571428571rem;
  }
}
nav > ul > li:not(:last-child) {
  margin-bottom: 2em;
}
nav > ul > li a {
  color: #0B308E;
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  nav > ul > li a {
    font-size: 1.2857142857rem;
  }
}

/*  mv
-------------------------------------------------*/
#mv {
  position: relative;
  padding: 2.2222222222rem 0 3.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #mv {
    padding: 14.1071428571rem 0 10.7142857143rem;
  }
}
#mv::before, #mv::after {
  position: absolute;
  content: "";
}
#mv::before {
  width: 100%;
  height: 26.1111111111rem;
  background: #0094DE;
  left: 0;
  top: 0;
  z-index: -2;
}
@media only screen and (max-width: 767px) {
  #mv::before {
    height: 29.6428571429rem;
  }
}
#mv::after {
  width: 50vw;
  height: 12.2222222222rem;
  background: rgba(255, 255, 255, 0.8);
  left: 0;
  top: 13.8888888889rem;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #mv::after {
    width: 100%;
    height: 6.0714285714rem;
    top: 8.5714285714rem;
  }
}
#mv figure {
  width: 46.6666666667%;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  #mv figure {
    width: 89.3333333333vw;
  }
}
#mv .inner {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
  #mv .inner {
    padding: 2.2222222222rem 0 3.3333333333rem;
  }
  #mv .inner::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.8);
    border-width: 12.2222222222rem 0 0 5.5555555556rem;
    top: 13.8888888889rem;
    left: 50%;
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  #mv .inner {
    padding: 1.7857142857rem 0 2.1428571429rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#mv .inner h2 {
  color: #fff;
  text-align: left;
  padding-left: 7.2222222222rem;
  padding-top: 1.6666666667rem;
  position: relative;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #mv .inner h2 {
    padding-left: 4.6428571429rem;
    padding-top: 1.0714285714rem;
    font-size: 1.2857142857rem;
    line-height: 1;
  }
}
#mv .inner h2::before {
  position: absolute;
  content: "";
  width: 5.5555555556rem;
  height: 7.5555555556rem;
  background: url(../img/icon-watch.svg) no-repeat center left/contain;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  #mv .inner h2::before {
    width: 3.5714285714rem;
    height: 4.8571428571rem;
  }
}
#mv .inner h2 strong {
  color: #FFF052;
  font-size: 3.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner h2 strong {
    font-size: 2.1428571429rem;
  }
}
#mv .inner .ttl {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 7.2222222222rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner .ttl {
    font-size: 1.2857142857rem;
    margin-top: 2.8571428571rem;
  }
}
#mv .inner .ttl .logo {
  width: 16.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner .ttl .logo {
    width: 11.7857142857rem;
  }
}
#mv .inner .commission {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 6.6666666667rem;
  padding-top: 3.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission {
    padding-top: 2.1428571429rem;
    margin-top: 26.7857142857rem;
  }
}
#mv .inner .commission span {
  position: absolute;
  display: block;
  width: 22.2222222222rem;
  height: 2.7777777778rem;
  line-height: 2.7777777778rem;
  border-radius: 1.3888888889rem;
  background: #FF3D52;
  color: #fff;
  font-size: 1.6666666667rem;
  font-weight: 500;
  text-align: center;
  top: 0;
  left: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission span {
    width: 14.2857142857rem;
    height: 1.7857142857rem;
    line-height: 1.7857142857rem;
    border-radius: 0.8928571429rem;
    font-size: 1.0714285714rem;
    left: 1.7857142857rem;
  }
}
#mv .inner .commission span::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #FF3D52 transparent transparent transparent;
  border-width: 1.6666666667rem 1.1111111111rem 0 0;
  top: 2.7777777778rem;
  left: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission span::after {
    border-width: 1.0714285714rem 0.7142857143rem 0 0;
    top: 1.7857142857rem;
    left: 1.7857142857rem;
  }
}
#mv .inner .commission p {
  color: #FF3D52;
  font-size: 4.4444444444rem;
  font-weight: 800;
  line-height: 0.8;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission p {
    font-size: 2.8571428571rem;
  }
}
#mv .inner .commission p::after {
  position: absolute;
  content: "";
  width: 105%;
  height: 1.3888888889rem;
  background: rgba(255, 240, 82, 0.5);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -0.5555555556rem;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission p::after {
    height: 0.8928571429rem;
    bottom: -0.3571428571rem;
  }
}
#mv .inner .commission p strong {
  font-size: 8.3333333333rem;
  font-weight: 800;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission p strong {
    font-size: 5.3571428571rem;
  }
}
#mv .inner .commission p small {
  font-size: 2.6666666667rem;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission p small {
    font-size: 1.7142857143rem;
  }
}
#mv .inner .commission ul {
  margin-left: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission ul {
    margin-left: 1.0714285714rem;
  }
}
#mv .inner .commission ul li {
  line-height: 1.25;
  margin-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 767px) {
  #mv .inner .commission ul li {
    font-size: 0.8571428571rem;
  }
}
#mv .inner .commission ul li::before {
  content: "※";
}
#mv .inner .commission ul li:not(:last-child) {
  margin-bottom: 0.5em;
}

/*  かけサポとは
-------------------------------------------------*/
#definition {
  position: relative;
}
#definition::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #0B308E transparent transparent transparent;
  border-width: 3.3333333333rem 5.5555555556rem 0 5.5555555556rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -1.6666666667rem;
  z-index: 2;
}
#definition p {
  text-align: center;
}
#definition p:first-of-type {
  font-weight: 600;
  font-size: 1.3333333333rem;
  text-decoration: underline;
  margin-bottom: 0.5em;
}
#definition p strong {
  font-size: 1.3333333333rem;
}

#merit::before {
  border-width: 27.7777777778rem 16.6666666667rem 0 0;
}
@media only screen and (max-width: 767px) {
  #merit::before {
    border-width: 17.8571428571rem 10.7142857143rem 0 0;
  }
}
#merit::after {
  border-width: 0 0 27.7777777778rem 16.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #merit::after {
    border-width: 0 0 17.8571428571rem 10.7142857143rem;
  }
}
@media print, screen and (min-width: 768px) {
  #merit .inner {
    width: 60vw;
    max-width: 900px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#merit .inner h3 {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  line-height: 0.8;
}
@media print, screen and (min-width: 768px) {
  #merit .inner h3 {
    font-size: 8.3333333333rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
@media only screen and (max-width: 767px) {
  #merit .inner h3 {
    font-size: 5.3571428571rem;
    text-align: center;
    margin-bottom: 2.1428571429rem;
  }
}
#merit .inner ol {
  counter-reset: merit;
}
@media print, screen and (min-width: 768px) {
  #merit .inner ol {
    padding: 0.5555555556rem 0;
    width: 38.8888888889rem;
  }
}
@media only screen and (max-width: 767px) {
  #merit .inner ol {
    padding-left: 1.4285714286rem;
  }
}
#merit .inner ol li {
  background: #fff;
  font-weight: 600;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  #merit .inner ol li {
    height: 3.3333333333rem;
    line-height: 3.3333333333rem;
    padding-left: 3.3333333333rem;
    font-size: 1.3333333333rem;
    border-radius: 0 0 1.6666666667rem 0;
  }
}
@media only screen and (max-width: 767px) {
  #merit .inner ol li {
    padding: 0.7142857143rem 0.7142857143rem 0.7142857143rem 2.1428571429rem;
    border-radius: 1.0714285714rem 0 1.0714285714rem 0;
    font-size: 1.0714285714rem;
    line-height: 1.4;
  }
}
#merit .inner ol li:not(:last-child) {
  margin-bottom: 2.2222222222rem;
}
@media only screen and (max-width: 767px) {
  #merit .inner ol li:not(:last-child) {
    margin-bottom: 1.4285714286rem;
  }
}
#merit .inner ol li::before, #merit .inner ol li::after {
  position: absolute;
  width: 4.4444444444rem;
  height: 4.4444444444rem;
  left: -2.2222222222rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  #merit .inner ol li::before, #merit .inner ol li::after {
    width: 2.8571428571rem;
    height: 2.8571428571rem;
    left: -1.4285714286rem;
  }
}
#merit .inner ol li::before {
  content: "";
  background: #0B308E;
  border-radius: 2.2222222222rem;
}
@media only screen and (max-width: 767px) {
  #merit .inner ol li::before {
    border-radius: 1.4285714286rem;
  }
}
#merit .inner ol li::after {
  line-height: 4.4444444444rem;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  counter-increment: merit;
  content: counter(merit, decimal-leading-zero);
}
@media only screen and (max-width: 767px) {
  #merit .inner ol li::after {
    line-height: 2.8571428571rem;
    font-size: 1.2857142857rem;
  }
}

/*  ファクタリングの仕組み
-------------------------------------------------*/
#structure::after {
  border-width: 0 0 27.7777777778rem 16.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #structure::after {
    border-width: 0 0 35.7142857143rem 10.7142857143rem;
  }
}
#structure .inner .container > p {
  font-size: 1.3333333333rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #structure .inner .container > p {
    font-size: 1.0714285714rem;
    margin-bottom: 2.1428571429rem;
  }
}
#structure .inner .container > p strong {
  color: #FFF052;
}
#structure .inner .container .structure_box {
  background: #fff;
  padding: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #structure .inner .container .structure_box {
    padding: 1.0714285714rem;
  }
}
#structure .inner .container .structure_box:not(:last-child) {
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #structure .inner .container .structure_box:not(:last-child) {
    margin-bottom: 2.1428571429rem;
  }
}
#structure .inner .container .structure_box dl dt {
  font-size: 2rem;
  font-weight: 600;
  color: #0B308E;
  text-align: center;
  padding-bottom: 1.6666666667rem;
  margin-bottom: 1.6666666667rem;
  border-bottom: solid 0.1666666667rem #0B308E;
}
@media only screen and (max-width: 767px) {
  #structure .inner .container .structure_box dl dt {
    font-size: 1.7142857143rem;
    padding-bottom: 1.0714285714rem;
    margin-bottom: 1.0714285714rem;
    border-bottom-width: 0.1071428571rem;
  }
}
#structure .inner .container .structure_box dl dd {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #structure .inner .container .structure_box dl dd {
    margin-bottom: 1.0714285714rem;
  }
}

/*  まずはお気軽にご相談ください
-------------------------------------------------*/
@media only screen and (max-width: 767px) {
  .inquiry {
    padding-bottom: 0;
  }
}
.inquiry .inner {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .inquiry .inner {
    padding-bottom: 7.8571428571rem;
  }
}
.inquiry .inner::before, .inquiry .inner::after {
  position: absolute;
  content: "";
  bottom: 7.7777777778rem;
}
@media only screen and (max-width: 767px) {
  .inquiry .inner::before, .inquiry .inner::after {
    bottom: 0;
  }
}
.inquiry .inner::before {
  background: url(../img/icon-woman.svg) no-repeat left bottom/contain;
  width: 10.2777777778rem;
  height: 9.2777777778rem;
  left: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  .inquiry .inner::before {
    width: 6.6071428571rem;
    height: 5.9642857143rem;
    left: 0.8928571429rem;
  }
}
.inquiry .inner::after {
  background: url(../img/icon-man.svg) no-repeat right bottom/contain;
  width: 8.6111111111rem;
  height: 10.4444444444rem;
  right: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  .inquiry .inner::after {
    width: 5.5357142857rem;
    height: 6.7142857143rem;
    right: 0.8928571429rem;
  }
}

/*  比べてください
-------------------------------------------------*/
#comparison .inner p {
  text-align: center;
  margin-bottom: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #comparison .inner p {
    margin-bottom: 0.5357142857rem;
  }
}
#comparison .inner p span {
  color: #FF3D52;
  font-size: 1.6666666667rem;
  font-weight: 600;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #comparison .inner p span {
    font-size: 1.2857142857rem;
  }
}
#comparison .inner p span::before, #comparison .inner p span::after {
  position: absolute;
  content: "";
  width: 0.2777777778rem;
  height: 2.7777777778rem;
  background: #FF3D52;
  top: 50%;
}
@media only screen and (max-width: 767px) {
  #comparison .inner p span::before, #comparison .inner p span::after {
    width: 0.1785714286rem;
    height: 1.7857142857rem;
  }
}
#comparison .inner p span::before {
  left: -1.6666666667rem;
  -webkit-transform: translateY(-50%) rotate(-30deg);
          transform: translateY(-50%) rotate(-30deg);
}
@media only screen and (max-width: 767px) {
  #comparison .inner p span::before {
    left: -1.0714285714rem;
  }
}
#comparison .inner p span::after {
  right: -1.6666666667rem;
  -webkit-transform: translateY(-50%) rotate(30deg);
          transform: translateY(-50%) rotate(30deg);
}
@media only screen and (max-width: 767px) {
  #comparison .inner p span::after {
    right: -1.0714285714rem;
  }
}
#comparison .inner h2 {
  line-height: 1.6;
  margin-bottom: 5.5555555556rem;
}
@media only screen and (max-width: 767px) {
  #comparison .inner h2 {
    margin-bottom: 3.9285714286rem;
  }
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_scroll {
    overflow-x: scroll;
    padding-top: 1.7857142857rem;
    position: relative;
  }
}
#comparison .inner .table_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
     -moz-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap {
    width: 180%;
  }
}
#comparison .inner .table_wrap .table {
  width: 25%;
  background: #E6E6E6;
  padding: 1.1111111111rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
     -moz-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table {
    padding: 0.7142857143rem;
    width: 24.1666666667%;
  }
}
#comparison .inner .table_wrap .table ul {
  width: 100%;
}
#comparison .inner .table_wrap .table ul li {
  height: 4.7222222222rem;
  line-height: 4.7222222222rem;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table ul li {
    height: 3.0357142857rem;
    line-height: 3.0357142857rem;
    font-size: 0.8571428571rem;
  }
}
#comparison .inner .table_wrap .table ul li:not(:last-child) {
  border-bottom: solid 2px #ccc;
}
#comparison .inner .table_wrap .table:first-child ul li {
  font-weight: 500;
}
#comparison .inner .table_wrap .table:nth-child(2) {
  background: #FFF052;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table:nth-child(2) {
    width: 27.5%;
  }
}
#comparison .inner .table_wrap .table:nth-child(2)::before, #comparison .inner .table_wrap .table:nth-child(2)::after {
  position: absolute;
  content: "";
  top: -2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table:nth-child(2)::before, #comparison .inner .table_wrap .table:nth-child(2)::after {
    top: -1.7857142857rem;
  }
}
#comparison .inner .table_wrap .table:nth-child(2)::before {
  width: 100%;
  height: 2.7777777778rem;
  left: 0;
  background: #FFF052;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table:nth-child(2)::before {
    height: 1.7857142857rem;
  }
}
#comparison .inner .table_wrap .table:nth-child(2)::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #FBB03B transparent;
  border-width: 0 0 2.7777777778rem 1.1111111111rem;
  left: -1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table:nth-child(2)::after {
    border-width: 0 0 1.7857142857rem 0.7142857143rem;
    left: -0.7142857143rem;
  }
}
#comparison .inner .table_wrap .table:nth-child(2) h3 {
  position: absolute;
  top: -0.8333333333rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table:nth-child(2) h3 {
    width: 10.7142857143rem;
    top: -0.5357142857rem;
  }
}
#comparison .inner .table_wrap .table:nth-child(2) ul li {
  font-size: 1.3333333333rem;
  font-weight: 600;
  color: #FF3D52;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table:nth-child(2) ul li {
    font-size: 1.0714285714rem;
  }
}
#comparison .inner .table_wrap .table:not(:first-child) h3 {
  font-size: 1.3333333333rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table:not(:first-child) h3 {
    font-size: 1.0714285714rem;
    margin-bottom: 0.7142857143rem;
  }
}
#comparison .inner .table_wrap .table:not(:first-child) ul {
  background: #fff;
  padding: 0 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  #comparison .inner .table_wrap .table:not(:first-child) ul {
    padding: 0 0.7142857143rem;
  }
}

/*  6つのPOINT
-------------------------------------------------*/
#point::before {
  border-width: 16.6666666667rem 16.6666666667rem 0 0;
}
@media only screen and (max-width: 767px) {
  #point::before {
    border-width: 35.7142857143rem 10.7142857143rem 0 0;
  }
}
#point::after {
  border-width: 0 0 16.6666666667rem 16.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #point::after {
    border-width: 0 0 35.7142857143rem 10.7142857143rem;
  }
}
#point .inner h2 strong {
  font-size: 3.3333333333rem;
}
#point .inner ol {
  counter-reset: point;
  display: grid;
  grid-template-columns: repeat(3, 31.6666666667%);
  gap: 1.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #point .inner ol {
    grid-template-columns: repeat(2, 42vw);
    gap: 0.7142857143rem;
  }
}
#point .inner ol li {
  background: #fff;
  padding: 1.6666666667rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #point .inner ol li {
    padding: 1.0714285714rem;
  }
}
#point .inner ol li::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #FF3D52 transparent transparent transparent;
  border-width: 5.5555555556rem 5.5555555556rem 0 0;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  #point .inner ol li::before {
    border-width: 3.5714285714rem 3.5714285714rem 0 0;
  }
}
#point .inner ol li::after {
  position: absolute;
  counter-increment: point;
  content: counter(point, decimal-leading-zero);
  color: #FFF052;
  font-size: 1.6666666667rem;
  font-weight: 600;
  top: 0.5555555556rem;
  left: 0.5555555556rem;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  #point .inner ol li::after {
    font-size: 1.0714285714rem;
    top: 0.3571428571rem;
    left: 0.3571428571rem;
  }
}
#point .inner ol li h3 {
  color: #0B308E;
  font-size: 1.3333333333rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  #point .inner ol li h3 {
    font-size: 1.0714285714rem;
  }
}
#point .inner ol li figure {
  width: 5.5555555556rem;
  margin: 1.6666666667rem 0;
}
@media only screen and (max-width: 767px) {
  #point .inner ol li figure {
    width: 2.8571428571rem;
    margin: 1.0714285714rem 0;
  }
}
#point .inner ol li p {
  font-size: 0.8888888889rem;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
     -moz-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  #point .inner ol li p {
    text-align: justify;
  }
  #point .inner ol li p br {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  #point .inner ol li:not(:nth-child(4)) h3 {
    margin: 0.7em 0;
  }
}
@media only screen and (max-width: 767px) {
  #point .inner ol li:not(:nth-child(3)):not(:nth-child(4)):not(:nth-child(6)) h3 {
    margin: 0.7em 0;
  }
}

/*  お客様の声
-------------------------------------------------*/
#voice::after {
  border-width: 0 0 16.6666666667rem 16.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #voice::after {
    border-width: 0 0 46.4285714286rem 10.7142857143rem;
  }
}
#voice .inner .container ul li {
  background: #fff;
  padding: 1.6666666667rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 767px) {
  #voice .inner .container ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.0714285714rem;
  }
}
#voice .inner .container ul li:not(:last-child) {
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #voice .inner .container ul li:not(:last-child) {
    margin-bottom: 2.1428571429rem;
  }
}
#voice .inner .container ul li figure {
  width: 9.4444444444rem;
}
@media only screen and (max-width: 767px) {
  #voice .inner .container ul li figure {
    width: 10.7142857143rem;
    margin-bottom: 1.0714285714rem;
  }
}
@media print, screen and (min-width: 768px) {
  #voice .inner .container ul li dl {
    width: 41.1111111111rem;
  }
}
#voice .inner .container ul li dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 1.1111111111rem;
  margin-bottom: 1.1111111111rem;
  border-bottom: solid 2px #0B308E;
}
@media only screen and (max-width: 767px) {
  #voice .inner .container ul li dl dt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0.7142857143rem;
    margin-bottom: 0.7142857143rem;
  }
}
#voice .inner .container ul li dl dt p {
  color: #0B308E;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #voice .inner .container ul li dl dt p:first-child {
    margin-bottom: 1em;
  }
}
#voice .inner .container ul li dl dt p span {
  font-size: 1.3333333333rem;
}
@media only screen and (max-width: 767px) {
  #voice .inner .container ul li dl dt p span {
    font-size: 1.0714285714rem;
  }
}
#voice .inner .container ul li dl dt p span strong {
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  #voice .inner .container ul li dl dt p span strong {
    font-size: 1.7142857143rem;
  }
}
#voice .inner .container ul li dl dd {
  font-size: 0.8888888889rem;
  line-height: 1.8;
  text-align: justify;
}
/*  ご利用の流れ
-------------------------------------------------*/
#flow .inner ol {
  counter-reset: flow;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #flow .inner ol {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#flow .inner ol > li {
  width: 28.3333333333%;
  background: #fff;
  border: solid 1px #0B308E;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #flow .inner ol > li {
    width: 85%;
  }
}
#flow .inner ol > li::before, #flow .inner ol > li::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}
#flow .inner ol > li::before {
  border-color: #0B308E transparent transparent transparent;
  border-width: 5.5555555556rem 5.5555555556rem 0 0;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 767px) {
  #flow .inner ol > li:not(:last-child) {
    margin-bottom: 3.2142857143rem;
  }
}
@media print, screen and (min-width: 768px) {
  #flow .inner ol > li:not(:last-child)::after {
    border-color: transparent transparent transparent #0B308E;
    border-width: 1.6666666667rem 0 1.6666666667rem 1.6666666667rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -3.3333333333rem;
  }
}
@media only screen and (max-width: 767px) {
  #flow .inner ol > li:not(:last-child)::after {
    border-color: #0B308E transparent transparent transparent;
    border-width: 1.0714285714rem 1.0714285714rem 0 1.0714285714rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -2.1428571429rem;
  }
}
#flow .inner ol > li .wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.7777777778rem 1.6666666667rem 1.6666666667rem;
  position: relative;
}
#flow .inner ol > li .wrap::before {
  position: absolute;
  content: "STEP";
  color: #FFF052;
  font-weight: 500;
  top: 0.5555555556rem;
  left: 0.5555555556rem;
}
#flow .inner ol > li .wrap::after {
  position: absolute;
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  text-align: center;
  color: #FFF052;
  font-size: 1.3333333333rem;
  font-weight: 600;
  top: 1.6666666667rem;
  left: 0.8333333333rem;
  letter-spacing: 0;
}
#flow .inner ol > li .wrap h3 {
  font-size: 1.3333333333rem;
  font-weight: 600;
  color: #0B308E;
}
#flow .inner ol > li .wrap figure {
  width: 5.5555555556rem;
  margin: 1.6666666667rem 0;
}
#flow .inner ol > li .wrap p {
  font-size: 0.8888888889rem;
  text-align: center;
}
#flow .inner ol > li .wrap .inquiries ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.1111111111rem;
}
#flow .inner ol > li .wrap .inquiries ul li:first-child {
  margin: 1.1111111111rem 0;
}
#flow .inner ol > li .wrap .inquiries ul li .btn,
#flow .inner ol > li .wrap .inquiries ul li .line {
  width: 15.5555555556rem;
  height: 3.1111111111rem;
  line-height: 3.1111111111rem;
  border-radius: 1.5555555556rem;
  font-size: 1.0888888889rem;
}
#flow .inner ol > li .wrap .inquiries ul li .btn::before,
#flow .inner ol > li .wrap .inquiries ul li .line::before {
  width: 1.3888888889rem;
  left: 1rem;
}
#flow .inner ol > li .wrap .inquiries ul li .btn::after,
#flow .inner ol > li .wrap .inquiries ul li .line::after {
  width: 0.5rem;
  height: 0.5rem;
  right: 1rem;
}
#flow .inner ol > li .wrap .inquiries ul li .btn::before {
  height: 0.9444444444rem;
}
#flow .inner ol > li .wrap .inquiries ul li .btn::before {
  height: 1.3333333333rem;
}
#flow .inner ol > li .wrap .inquiries .tel_wrap {
  margin: 0;
}
#flow .inner ol > li .wrap .inquiries .tel_wrap .tel {
  font-size: 1.8666666667rem;
  padding-left: 2.5rem;
}
#flow .inner ol > li .wrap .inquiries .tel_wrap .tel::before {
  width: 2.0555555556rem;
  height: 1.3333333333rem;
}
#flow .inner ol > li .wrap .inquiries .tel_wrap .tel + small {
  font-size: 0.8333333333rem;
  margin-top: 0.2777777778rem;
}
#flow .inner ol > li .wrap > small {
  display: block;
  margin-top: 1.1111111111rem;
  font-size: 0.7222222222rem;
  font-weight: 500;
  color: #FF3D52;
}
#flow .inner > p {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-top: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #flow .inner > p {
    font-size: 1.7142857143rem;
    margin-top: 2.1428571429rem;
  }
}

/*  よくある質問
-------------------------------------------------*/
#faq::before {
  border-width: 16.6666666667rem 16.6666666667rem 0 0;
}
@media only screen and (max-width: 767px) {
  #faq::before {
    border-width: 35.7142857143rem 10.7142857143rem 0 0;
  }
}
#faq::after {
  border-width: 0 0 16.6666666667rem 16.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #faq::after {
    border-width: 0 0 35.7142857143rem 10.7142857143rem;
  }
}
#faq .inner .container dl dt {
  background: #fff;
  height: 4.4444444444rem;
  line-height: 4.4444444444rem;
  border-radius: 2.2222222222rem 2.2222222222rem 0 0;
  color: #0B308E;
  font-size: 1.3333333333rem;
  font-weight: 500;
  padding-left: 1.6666666667rem;
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #faq .inner .container dl dt {
    position: relative;
    height: 5.7142857143rem;
    border-radius: 2.8571428571rem 2.8571428571rem 0 0;
  }
  #faq .inner .container dl dt span {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 1.0714285714rem;
    font-size: 1.0714285714rem;
    line-height: 1.4;
  }
}
#faq .inner .container dl dt::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #0B308E transparent transparent transparent;
  border-width: 0.8333333333rem 0.5555555556rem 0 0.5555555556rem;
  right: 1.6666666667rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#faq .inner .container dl dt.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
#faq .inner .container dl dd {
  display: none;
  background: rgba(255, 255, 255, 0.8);
  padding: 2.7777777778rem;
  border-radius: 0 0 2.2222222222rem 2.2222222222rem;
  text-align: justify;
  line-height: 1.8;
}
@media only screen and (max-width: 767px) {
  #faq .inner .container dl dd {
    padding: 1.7857142857rem;
    border-radius: 0 0 2.8571428571rem 2.8571428571rem;
  }
}
#faq .inner .container dl:not(:last-child) {
  margin-bottom: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #faq .inner .container dl:not(:last-child) {
    margin-bottom: 2.1428571429rem;
  }
}

/*  お申込み・ご相談フォーム
-------------------------------------------------*/
#contact::after {
  border-width: 0 0 16.6666666667rem 16.6666666667rem;
}
@media only screen and (max-width: 767px) {
  #contact::after {
    border-width: 0 0 46.4285714286rem 10.7142857143rem;
  }
}
#contact .inner .container form {
  background: #fff;
  padding: 5.5555555556rem;
}
@media only screen and (max-width: 767px) {
  #contact .inner .container form {
    padding: 1.7857142857rem;
  }
}
@media print, screen and (min-width: 768px) {
  #contact .inner .container form dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#contact .inner .container form dl:not(:last-of-type) {
  padding-bottom: 1.1111111111rem;
  margin-bottom: 1.1111111111rem;
  border-bottom: solid 1px #0B308E;
}
@media only screen and (max-width: 767px) {
  #contact .inner .container form dl:not(:last-of-type) {
    padding-bottom: 1.0714285714rem;
    margin-bottom: 1.0714285714rem;
  }
}
#contact .inner .container form dl dt {
  font-weight: 500;
}
@media print, screen and (min-width: 768px) {
  #contact .inner .container form dl dt {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  #contact .inner .container form dl dt {
    margin-bottom: 0.7142857143rem;
  }
}
#contact .inner .container form dl dt span {
  padding-left: 2.7777777778rem;
  position: relative;
}
#contact .inner .container form dl dt span::before {
  position: absolute;
  padding: 0.2777777778rem;
  color: #fff;
  font-size: 0.7777777778rem;
  font-weight: 400;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#contact .inner .container form dl dt span.required::before {
  content: "必須";
  background: #FF3D52;
}
#contact .inner .container form dl dt span.option::before {
  content: "任意";
  background: #0B308E;
}
@media print, screen and (min-width: 768px) {
  #contact .inner .container form dl dd {
    width: 70%;
  }
}
#contact .inner .container form dl dd .mfp_err {
  color: #FF3D52;
  margin-top: 0.5em;
  font-size: 90%;
}
#contact .inner .container form .agree {
  padding-top: 2.7777777778rem;
  text-align: center;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  #contact .inner .container form .agree {
    padding-top: 1.7857142857rem;
  }
}
#contact .inner .container form .agree a {
  color: #0094DE;
  text-decoration: underline;
}

#mfp_warning {
  padding: 1em;
  color: #FF3D52;
  background: #fff;
}

.mfp_buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
     -moz-box-orient: horizontal;
     -moz-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-top: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  .mfp_buttons {
    padding-top: 1.7857142857rem;
  }
}

/*  thanks
-------------------------------------------------*/
#thanks {
  background: #0B308E;
}
#thanks h2 {
  color: #fff;
}
#thanks p {
  color: #fff;
  text-align: center;
}
#thanks p small {
  display: block;
  color: #FFF052;
}

/*  privacy
-------------------------------------------------*/
#privacy {
  background: #0B308E;
}
#privacy .inner h2 {
  color: #fff;
}
#privacy .inner .container {
  background: #fff;
  padding: 2.7777777778rem;
}
@media only screen and (max-width: 767px) {
  #privacy .inner .container {
    padding: 1.7857142857rem;
  }
}
#privacy .inner .container p {
  font-size: 0.8888888889rem;
}
#privacy .inner .container ol {
  counter-reset: privacy;
}
#privacy .inner .container ol li {
  margin-top: 1.6666666667rem;
}
#privacy .inner .container ol li h3 {
  font-size: 1.3333333333rem;
  font-weight: 500;
  counter-increment: privacy;
  margin-bottom: 0.5555555556rem;
  margin-left: 1.9em;
  text-indent: -1.9em;
  line-height: 1.4;
}
#privacy .inner .container ol li h3::before {
  content: "（" counter(privacy) "）";
}
#privacy .inner .container ol li ul {
  margin-left: 1em;
}
#privacy .inner .container ol li ul li {
  font-size: 0.8888888889rem;
  line-height: 1.4;
  margin-top: 0.5555555556rem;
  margin-left: 0.5em;
  text-indent: -0.5em;
}
#privacy .inner .container ol li ul li::before {
  content: "・";
}

/*  footer
-------------------------------------------------*/
footer #company {
  padding: 2.7777777778rem 0;
}
@media only screen and (max-width: 767px) {
  footer #company {
    padding: 2.1428571429rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  footer #company .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
footer #company .container .data dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.1111111111rem;
}
@media only screen and (max-width: 767px) {
  footer #company .container .data dl {
    margin-top: 0.7142857143rem;
  }
}
footer #company .container .data dl dt {
  width: 7em;
}
@media print, screen and (min-width: 768px) {
  footer #company .container .data dl dd a {
    pointer-events: none;
  }
}
footer #company .container .map {
  width: 40%;
  height: 0;
  overflow: hidden;
  position: relative;
  padding-top: 20%;
}
@media only screen and (max-width: 767px) {
  footer #company .container .map {
    width: 100%;
    margin-top: 2.1428571429rem;
    padding-top: 50%;
  }
}
footer #company .container .map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
footer .copy {
  padding: 1.6666666667rem 0;
  background: #E6E6E6;
  text-align: center;
  font-size: 0.7777777778rem;
}
@media only screen and (max-width: 767px) {
  footer .copy {
    padding: 1.0714285714rem 0;
  }
}