@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&family=Lato:wght@700&family=M+PLUS+1p:wght@500;600;700&display=swap");
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.position-rel {
  position: relative !important;
}

.position-abs {
  position: absolute !important;
}

.position-fix {
  position: fixed !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-justify {
  text-align: justify !important;
}

@media (max-width: 767px) {
  .text-center.sp-left,
  .text-right.sp-left,
  .text-justify.sp-left {
    text-align: left !important;
  }
  .text-left.sp-center,
  .text-right.sp-center,
  .text-justify.sp-center {
    text-align: center !important;
  }
  .text-left.sp-right,
  .text-center.sp-right,
  .text-justify.sp-right {
    text-align: right !important;
  }
  .text-left.sp-justify,
  .text-center.sp-justify,
  .text-right.sp-justify {
    text-align: justify !important;
  }
}
.mg-left {
  margin-left: auto;
}

.mg-right {
  margin-right: auto;
}

.mg-center {
  margin-left: auto;
  margin-right: auto;
}

.display-bl {
  display: block;
}

.display-ib {
  display: inline-block;
}

.display-in {
  display: inline;
}

ul.list > li {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-top: 0.35em;
  margin-bottom: 0.35em;
}
ul.list.space {
  margin-top: 30px;
  margin-bottom: 30px;
}
ul.list.min-space {
  margin-top: 20px;
  margin-bottom: 20px;
}
ul.list.top-space {
  margin-top: 40px;
}
ul.list.bottom-space {
  margin-bottom: 40px;
}
ul.list.no-li-space > li {
  margin-top: 0;
  margin-bottom: 0;
}
ul.list.normal > li {
  line-height: 1.625;
}
ul.list.lead > li {
  line-height: 1.75;
}
ul.list.small > li {
  font-size: 80%;
  line-height: 1.75;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
ul.list.large > li {
  font-size: 115%;
  line-height: 1.625;
}
ul.list.labeling > li {
  position: relative;
  padding-left: 1.25em;
}
ul.list.labeling > li.head {
  padding-left: 0;
}
ul.list.labeling > li.double {
  padding-left: 2.15em;
}
ul.list.labeling > li > i {
  font-style: normal;
  position: absolute;
  left: 0;
}
ul.list.bullet > li {
  position: relative;
  padding-left: 1em;
}
ul.list.bullet > li:before {
  content: "・";
  color: currentColor;
  font-size: 70%;
  position: absolute;
  left: 0;
  top: 0.35em;
}
ul.list.bullet.large > li:before {
  top: 0.5em;
}
ul.list.large-bullet > li {
  position: relative;
  padding-left: 1.25em;
}
ul.list.large-bullet > li:before {
  content: "●";
  color: currentColor;
  font-size: 70%;
  position: absolute;
  left: 0;
  top: 0.35em;
}
ul.list.large-bullet.large > eli:before {
  top: 0.5em;
}
ul.list.numbering > li {
  counter-increment: counter;
}
ul.list.numbering > li:before {
  content: counter(counter) ".";
  margin-right: 0.75rem;
}
ul.list.numbering2 > li {
  counter-increment: counter;
}
ul.list.numbering2 > li:before {
  content: "(" counter(counter) ")";
  margin-right: 0.75rem;
}
@media (max-width: 767px) {
  ul.list.space {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  ul.list.top-space {
    margin-top: 20px;
  }
  ul.list.bottom-space {
    margin-bottom: 20px;
  }
  ul.list.bullet li {
    line-height: 1.5;
  }
  ul.list.bullet.large li {
    line-height: 1.625;
  }
}

.slide-in {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.5s linear 0s;
  -webkit-transition: opacity 0.5s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.5s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.5s linear 0s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.5s linear 0s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
  -webkit-transform: scale(1.025) translateY(8vh);
  transform: scale(1.025) translateY(8vh);
}
.slide-in.show {
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.slide-in.delay1 {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.slide-in.delay2 {
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}
@media (max-width: 980px) {
  .slide-in {
    -webkit-transform: scale(1) translateY(8vh);
    transform: scale(1) translateY(8vh);
  }
}
@media (max-width: 767px) {
  .slide-in {
    -webkit-transform: scale(1) translateY(8vh);
    transform: scale(1) translateY(8vh);
  }
}

.fade-in {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
}
.fade-in.show {
  opacity: 1;
}
.fade-in.delay {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s;
  -webkit-transition: opacity 0.75s linear 1s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: opacity 0.75s linear 1s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.fade-in.delay1 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.fade-in.delay2 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}

section.space,
.container.space,
.container-fluid.space,
.content.space {
  padding-top: 80px;
  padding-bottom: 80px;
}
section.min-space,
.container.min-space,
.container-fluid.min-space,
.content.min-space {
  padding-top: 40px;
  padding-bottom: 40px;
}
section.top-space,
.container.top-space,
.container-fluid.top-space,
.content.top-space {
  padding-top: 80px;
}
section.bottom-space,
.container.bottom-space,
.container-fluid.bottom-space,
.content.bottom-space {
  padding-bottom: 80px;
}
section.min-top-space,
.container.min-top-space,
.container-fluid.min-top-space,
.content.min-top-space {
  padding-top: 40px;
}
section.min-bottom-space,
.container.min-bottom-space,
.container-fluid.min-bottom-space,
.content.min-bottom-space {
  padding-bottom: 40px;
}
section.large-top-space,
.container.large-top-space,
.container-fluid.large-top-space,
.content.large-top-space {
  padding-top: 160px;
}
section.large-bottom-space,
.container.large-bottom-space,
.container-fluid.large-bottom-space,
.content.large-bottom-space {
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  section.space,
  .container.space,
  .container-fluid.space,
  .content.space {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  section.min-space,
  .container.min-space,
  .container-fluid.min-space,
  .content.min-space {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  section.top-space,
  .container.top-space,
  .container-fluid.top-space,
  .content.top-space {
    padding-top: 48px;
  }
  section.bottom-space,
  .container.bottom-space,
  .container-fluid.bottom-space,
  .content.bottom-space {
    padding-bottom: 48px;
  }
  section.min-top-space,
  .container.min-top-space,
  .container-fluid.min-top-space,
  .content.min-top-space {
    padding-top: 24px;
  }
  section.min-bottom-space,
  .container.min-bottom-space,
  .container-fluid.min-bottom-space,
  .content.min-bottom-space {
    padding-bottom: 24px;
  }
  section.large-top-space,
  .container.large-top-space,
  .container-fluid.large-top-space,
  .content.large-top-space {
    padding-top: 64px;
  }
  section.large-bottom-space,
  .container.large-bottom-space,
  .container-fluid.large-bottom-space,
  .content.large-bottom-space {
    padding-bottom: 64px;
  }
}

.container {
  max-width: 1320px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.container.narrow {
  max-width: 1020px;
}
.container.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .container.no-padding, .container.no-padding-sp {
    padding-left: 0;
    padding-right: 0;
  }
}

.container-fluid {
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.container-fluid.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .container-fluid {
    padding-left: 16px;
    padding-right: 16px;
  }
  .container-fluid.no-padding, .container-fluid.no-padding-sp {
    padding-left: 0;
    padding-right: 0;
  }
}

.content {
  padding-left: 20px;
  padding-right: 20px;
}
.content.no-padding {
  padding-left: 0;
  padding-right: 0;
}
.container .content, .container-fluid .content {
  padding-left: 0;
  padding-right: 0;
}
.container.no-padding .content, .container-fluid.no-padding .content {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .content.no-padding, .content.no-padding-sp {
    padding-left: 0px;
    padding-right: 0px;
  }
  .container .content, .container-fluid .content {
    padding-left: 0;
    padding-right: 0;
  }
  .container.no-padding .content, .container-fluid.no-padding .content {
    padding-left: 16px;
    padding-right: 16px;
  }
  .container.no-padding-sp .content, .container-fluid.no-padding-sp .content {
    padding-left: 0;
    padding-right: 0;
  }
}

.content {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.content.narrow {
  max-width: 800px;
}

body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", YuGothicMedium, "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1rem;
}
.m-plus {
  font-family: "M PLUS 1p", sans-serif !important;
}

.lato {
  font-family: "Lato", sans-serif !important;
  font-weight: 700 !important;
}

.blue {
  color: #4C87EF !important;
}

.sky {
  color: #4CABF0 !important;
}

.yellow {
  color: #F0C24C !important;
}

.white {
  color: white !important;
}

.weight-normal {
  font-weight: 400 !important;
}

.weight-medium {
  font-weight: 500 !important;
}

.weight-bold {
  font-weight: 700 !important;
}

.weight-black {
  font-weight: 900 !important;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  margin: 0.25em 0px;
  font-weight: 700;
  line-height: 1.45em;
}
h1 > small, h2 > small, h3 > small, h4 > small, h5 > small, h6 > small {
  font-size: 60%;
  vertical-align: middle;
}
h1.min-space, h2.min-space, h3.min-space, h4.min-space, h5.min-space, h6.min-space {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
h1.top-space, h2.top-space, h3.top-space, h4.top-space, h5.top-space, h6.top-space {
  margin-top: 1.85em;
  margin-bottom: 0px;
}
h1.bottom-space, h2.bottom-space, h3.bottom-space, h4.bottom-space, h5.bottom-space, h6.bottom-space {
  margin-top: 0px;
  margin-bottom: 1.85em;
}
h1 {
  font-size: 3rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 2rem;
}
h2 strong {
  font-size: 3rem;
}
h2 strong.most {
  font-size: 4rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
  h2 strong {
    font-size: 2.5rem;
  }
  h2 strong.most {
    font-size: 3.25rem;
  }
}

h3 {
  font-size: 1.75rem;
}
@media (max-width: 767px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.5rem;
}
h4 strong {
  font-size: 2rem;
}
h4.large {
  font-size: 2rem;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1.25rem;
  }
  h4 strong {
    font-size: 1.875rem;
  }
  h4.large {
    font-size: 1.25rem;
  }
}

h5 {
  font-size: 1.25rem;
}
h5 strong {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h5 {
    font-size: 1.125rem;
  }
  h5 strong {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1.125rem;
}
h6 strong {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  h6 {
    font-size: 1.0625rem;
  }
  h6 strong {
    font-size: 1.125rem;
  }
}

p {
  font-size: 1rem;
  line-height: 1.85em;
  margin-top: 1.85em;
  margin-bottom: 1.85em;
}
p.lead-text {
  font-size: 1.125rem;
  font-weight: 500;
}
p.sub-copy {
  font-size: 1.25rem;
  font-weight: 500;
}
p.large-space {
  margin-top: 3em;
  margin-bottom: 3em;
}
p.min-space {
  margin-top: 1.15em;
  margin-bottom: 1.15em;
}
p.top-space {
  margin-top: 1.85em;
  margin-bottom: 0px;
}
p.bottom-space {
  margin-top: 0px;
  margin-bottom: 1.85em;
}
p.no-space {
  margin: 0;
}
p.small {
  font-size: 0.875rem;
}
p.large {
  font-size: 1.25rem;
}
p.bold {
  font-weight: 700;
}
@media (max-width: 767px) {
  p {
    line-height: 1.85em;
    margin-top: 1.75em;
    margin-bottom: 1.75em;
    font-size: 15px;
  }
  p.lead-text {
    font-size: 1rem;
  }
  p.sub-copy {
    font-size: 1.125rem;
  }
  p.smaller {
    font-size: 13px;
  }
  p.large {
    font-size: 1rem;
  }
}
@media (max-width: 350px) {
  p.large {
    font-size: 15px;
  }
}

span.underline {
  text-decoration: underline;
}

strong {
  font-weight: 700;
}

small {
  display: inline-block;
  font-size: 80%;
  line-height: 1.75;
}
sup, sub {
  font-size: 70%;
  letter-spacing: 0;
}
sub {
  vertical-align: baseline;
}

li, dt, dd {
  font-size: 1rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 767px) {
  li, dt, dd {
    font-size: 15px;
  }
}

ul.list {
  margin-top: 2.15em;
  margin-bottom: 2.15em;
}
ul.list li, ul.list dt, ul.list dd {
  line-height: 1.65;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-justify {
  text-align: justify !important;
}

@media (max-width: 767px) {
  .text-center.sp-left,
  .text-right.sp-left,
  .text-justify.sp-left {
    text-align: left !important;
  }
  .text-left.sp-center,
  .text-right.sp-center,
  .text-justify.sp-center {
    text-align: center !important;
  }
  .text-left.sp-right,
  .text-center.sp-right,
  .text-justify.sp-right {
    text-align: right !important;
  }
  .text-left.sp-justify,
  .text-center.sp-justify,
  .text-right.sp-justify {
    text-align: justify !important;
  }
}
.button {
  display: inline-block;
  width: auto;
  min-width: 360px;
  height: 60px;
  border-radius: 30px;
  padding: 1rem 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  vertical-align: top;
}
.button:hover {
  opacity: 0.7;
}
.button.size-large {
  min-width: 400px;
  height: 80px;
  border-radius: 40px;
  padding: 1.35rem 1rem;
  font-size: 1.75rem;
}
.button.size-small {
  min-width: 152px;
  height: 40px;
  border-radius: 20px;
  padding: 0.5rem 1rem;
  font-size: 1rem;
}
.button.primary {
  background-color: #4C87EF;
  color: white;
  border: 2px solid #4C87EF;
}
.button.secondary {
  background-color: white;
  color: #4CABF0;
  border: 2px solid #4CABF0;
}
.button.accent {
  background-color: #F0C24C;
  color: white;
  border: 2px solid #F0C24C;
}
.button.shadow {
  -webkit-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.15);
}
.button.large {
  max-width: 280px;
}
.button.medium {
  max-width: 240px;
  height: 36px;
  border-radius: 18px;
}
.button.medium:after {
  top: calc(50% - 4px);
}
.button.small {
  max-width: 200px;
  height: 36px;
  border-radius: 18px;
}
.button.small:after {
  top: calc(50% - 4px);
}
.button.arrow {
  position: relative;
}
.button.arrow::after {
  content: "";
  position: absolute;
  right: 1.75rem;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.button[disabled] {
  border: 2px solid #DDDDDD;
  background-color: #DDDDDD;
  color: #B8B8B8;
}
.button[disabled] > i {
  opacity: 0.4;
}
.button > i {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 0.5rem;
}
.button > i img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .button {
    min-width: 300px;
    height: 48px;
    border-radius: 24px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  .button.size-large {
    min-width: 300px;
    height: 56px;
    border-radius: 28px;
    padding: 1rem 1rem;
    font-size: 1.25rem;
  }
  .button.size-medium {
    min-width: 300px;
    height: 48px;
    padding: 0.75rem 0.25rem;
    font-size: 1.125rem;
  }
  .button.size-small {
    min-width: 144px;
  }
  .button.arrow::after {
    right: 1.25rem;
    top: calc(50% - 4px);
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
  }
}

.btn-circle-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #F5C387;
  text-align: center;
}
.btn-circle-arrow i {
  width: 100%;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
}

.pc {
  display: block !important;
}

.pci {
  display: inline !important;
}

.sp {
  display: none !important;
}

.spi {
  display: none !important;
}

.lpc {
  display: block !important;
}

.lpci {
  display: inline !important;
}

.tb {
  display: none !important;
}

.tbi {
  display: none !important;
}

.ltb {
  display: block !important;
}

.ltbi {
  display: inline !important;
}

.smt {
  display: none !important;
}

.smti {
  display: none !important;
}

.xsp {
  display: none !important;
}

.xspi {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .lpc {
    display: none !important;
  }
  .lpci {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  .tbi {
    display: inline !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .pci {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .spi {
    display: inline !important;
  }
}
@media screen and (max-width: 480px) {
  .ltb {
    display: none !important;
  }
  .ltbi {
    display: none !important;
  }
  .smt {
    display: block !important;
  }
  .smti {
    display: inline !important;
  }
}
@media screen and (max-width: 320px) {
  .sp.ex-xp {
    display: none !important;
  }
  .spi.ex-xp {
    display: none !important;
  }
  .ex-xp {
    display: none !important;
  }
  .xsp {
    display: block !important;
  }
  .xspi {
    display: inline !important;
  }
}
html {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

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

:focus {
  outline: 0;
}

body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
body.active-menu {
  overflow: hidden;
  height: 100vh;
}

a:hover, button:hover {
  opacity: 0.6;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}
a:hover {
  opacity: 0.6;
}
a.text-link {
  color: #4C87EF;
  text-decoration: underline;
}
a.text-link:hover {
  opacity: 0.6;
}
a.blank {
  position: relative;
}
a.blank:after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  margin-left: 2px;
  background-image: url(/assets/images/common/ic_blank.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

button, input[type=submit], input[type=reset] {
  cursor: pointer;
}

figure, picture {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  margin: 0;
}
figure img, picture img {
  width: 100%;
  height: auto;
}
figure img.auto-image, picture img.auto-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
figure figcaption, picture figcaption {
  margin-top: 0.5rem;
}
figure + figure {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  figure + figure {
    margin-top: 1.25rem;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
img.fit-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover;";
}
img.fit-image.contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
  font-family: "object-fit: contain;";
}
img.round-image {
  border-radius: 8px;
}
img.auto-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.section-title {
  margin: 40px auto;
}
.section-title h3 {
  color: #4C87EF;
  font-size: 3.5rem;
  text-align: center;
}
.section-title.s-size h3 {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .section-title {
    margin: 24px auto;
  }
  .section-title h3 {
    font-size: 2.25rem;
  }
  .section-title.s-size h3 {
    font-size: 2rem;
  }
}

.block-title {
  margin: 40px auto;
}
.block-title h4 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .block-title {
    margin: 24px auto;
  }
  .block-title h4 {
    font-size: 1.5rem;
  }
}

.slide-in {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
  -webkit-transform: translateY(60px);
  transform: translateY(60px);
}
.slide-in.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.slide-in.delay1 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.slide-in.delay2 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}

.slide-delay-in {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, opacity 0.75s linear 0.5s;
  -webkit-transition: opacity 0.75s linear 0.5s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: opacity 0.75s linear 0.5s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, opacity 0.75s linear 0.5s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.5s, opacity 0.75s linear 0.5s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}
.slide-delay-in.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.slide-delay-in.delay1 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.slide-delay-in.delay2 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}

.fade-in {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
}
.fade-in.show {
  opacity: 1;
}
.fade-in.delay {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s;
  -webkit-transition: opacity 0.75s linear 1s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: opacity 0.75s linear 1s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.fade-in.delay1 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.fade-in.delay2 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}

.fade-in-long {
  -webkit-transition: -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.75s linear 0s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  transition: transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
}
.fade-in-long.show {
  opacity: 1;
}
.fade-in-long.delay {
  -webkit-transition: -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s;
  -webkit-transition: opacity 0.75s linear 1s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: opacity 0.75s linear 1s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 1s;
  transition: transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s;
  transition: transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 1s, opacity 0.75s linear 1s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.fade-in-long.delay1 {
  -webkit-transition: -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.fade-in-long.delay2 {
  -webkit-transition: -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 4.5s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}

@media (max-width: 767px) {
  .slide-in {
    -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
    -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
    transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  .slide-in.show {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .slide-in.delay1 {
    -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
    -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
    transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
    transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
    transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  }
  .slide-in.delay2 {
    -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
    -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
    transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
    transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
    transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  }
}
.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.two-column .col-item {
  width: 49%;
}
@media (max-width: 767px) {
  .two-column.sp-full {
    display: block;
  }
  .two-column.sp-full .col-item {
    width: 100%;
  }
}

.ato-factoring-header {
  width: 100vw;
  height: 72px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: white;
}
.ato-factoring-header.top-header {
  background-color: transparent;
}
.ato-factoring-header .header-fixed-button-sp {
  display: none;
}
@media (max-width: 1120px) {
  .ato-factoring-header {
    height: 48px;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  }
  .ato-factoring-header.top-header {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .ato-factoring-header.top-header.scrolled {
    background-color: white;
    -webkit-box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  }
  .ato-factoring-header.top-header.scrolled .header-fixed-button-sp {
    display: block;
  }
  .ato-factoring-header.top-header.scrolled .afh-logo .logo-main {
    display: none;
  }
  .ato-factoring-header.top-header.scrolled .afh-logo .logo-mark {
    display: block;
  }
  .ato-factoring-header .header-fixed-button-sp {
    display: none;
    margin-right: 52px;
  }
}
.ato-factoring-header .header-inner {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  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;
}
.ato-factoring-header .header-inner.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ato-factoring-header .afh-logo {
  padding-left: 20px;
  position: relative;
  z-index: 11;
}
.ato-factoring-header .afh-logo a, .ato-factoring-header .afh-logo span {
  display: block;
  width: 240px;
}
.ato-factoring-header .afh-logo .logo-main {
  display: block;
}
.ato-factoring-header .afh-logo .logo-mark {
  display: none;
}
@media (max-width: 1120px) {
  .ato-factoring-header .afh-logo {
    padding-left: 16px;
  }
  .ato-factoring-header .afh-logo a, .ato-factoring-header .afh-logo span {
    width: 172px;
  }
}
.ato-factoring-header .afh-nav {
  width: 100%;
  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;
}
.ato-factoring-header .afh-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(100% - 20vw);
  width: max(100% - 20vw, 100% - 198px);
}
.ato-factoring-header .afh-nav ul li {
  display: inline-block;
  margin: 0px 1rem;
  font-weight: 500;
}
.ato-factoring-header .afh-nav .afh-account {
  margin-left: auto;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ato-factoring-header .afh-nav .afh-account a:first-child {
  margin-right: 1rem;
}
@media (max-width: 1120px) {
  .ato-factoring-header .afh-nav {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    background-color: white;
    -webkit-transition: opacity 0.35s ease 0s;
    transition: opacity 0.35s ease 0s;
  }
  .ato-factoring-header .afh-nav.init {
    display: block;
  }
  .ato-factoring-header .afh-nav.show {
    opacity: 1;
  }
  .ato-factoring-header .afh-nav ul {
    display: block;
    width: 100%;
    padding-top: 48px;
  }
  .ato-factoring-header .afh-nav ul li {
    display: block;
    height: auto;
    margin: 0;
    padding: 0.5rem 0px;
    border-bottom: 1px solid #C8C8C8;
  }
  .ato-factoring-header .afh-nav ul li:first-child {
    border-top: 1px solid #C8C8C8;
  }
  .ato-factoring-header .afh-nav ul li a {
    display: block;
    padding: 0.25rem 0.5rem;
  }
  .ato-factoring-header .afh-nav .afh-account {
    margin-left: 0;
    padding-right: 0;
    margin-top: 1rem;
    display: block;
    text-align: center;
  }
  .ato-factoring-header .afh-nav .afh-account a {
    display: block;
    max-width: 280px;
    margin: 1rem auto;
  }
  .ato-factoring-header .afh-nav .afh-account a:first-child {
    margin-right: auto;
  }
}
.ato-factoring-header .afh-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: 1rem;
  border: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  background-color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
}
.ato-factoring-header .afh-menu-button.active {
  position: fixed;
  z-index: 5;
}
.ato-factoring-header .afh-menu-button .btn-hamburger, .ato-factoring-header .afh-menu-button .btn-hamburger:before, .ato-factoring-header .afh-menu-button .btn-hamburger:after {
  width: 20px;
  height: 2px;
  position: absolute;
  background-color: black;
  -webkit-transition: background-color 0.35s ease 0s;
  transition: background-color 0.35s ease 0s;
}
.ato-factoring-header .afh-menu-button .btn-hamburger {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -10px;
}
.ato-factoring-header .afh-menu-button .btn-hamburger:before, .ato-factoring-header .afh-menu-button .btn-hamburger:after {
  content: "";
  left: 0;
  display: block;
  -webkit-transition: top 0.35s ease-out, transform 0.35s ease-out, background-color 0.35s ease-out;
  -webkit-transition: top 0.35s ease-out, background-color 0.35s ease-out, -webkit-transform 0.35s ease-out;
  transition: top 0.35s ease-out, background-color 0.35s ease-out, -webkit-transform 0.35s ease-out;
  transition: top 0.35s ease-out, transform 0.35s ease-out, background-color 0.35s ease-out;
  transition: top 0.35s ease-out, transform 0.35s ease-out, background-color 0.35s ease-out, -webkit-transform 0.35s ease-out;
}
.ato-factoring-header .afh-menu-button .btn-hamburger:before {
  top: -6px;
}
.ato-factoring-header .afh-menu-button .btn-hamburger:after {
  top: 6px;
}
.ato-factoring-header .afh-menu-button .btn-hamburger.active {
  background-color: transparent !important;
}
.ato-factoring-header .afh-menu-button .btn-hamburger.active:before, .ato-factoring-header .afh-menu-button .btn-hamburger.active:after {
  top: 0px;
  background-color: #4C87EF;
}
.ato-factoring-header .afh-menu-button .btn-hamburger.active:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.ato-factoring-header .afh-menu-button .btn-hamburger.active:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.ato-factoring-header .afh-menu-button .btn-label {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
@media (max-width: 1120px) {
  .ato-factoring-header .afh-menu-button {
    display: block;
  }
  .ato-factoring-header .afh-menu-button .btn-hamburger:hover {
    opacity: 1;
  }
}

.contact-banner {
  margin-top: 7.5rem;
}
@media (max-width: 767px) {
  .contact-banner {
    margin-top: 4.5rem;
  }
}

.banner-inner {
  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;
  padding: 4rem 0px;
}
.banner-inner h3, .banner-inner .banner-button {
  width: 50%;
}
.banner-inner h3 {
  font-size: 2.25rem;
}
.banner-inner .banner-button {
  text-align: center;
}
.banner-inner .banner-button > a {
  margin: 0.75rem 0px;
}
@media (max-width: 767px) {
  .banner-inner {
    display: block;
    padding: 1.5rem 0px 2.5rem;
  }
  .banner-inner h3, .banner-inner .banner-button {
    width: 100%;
  }
  .banner-inner h3 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
}

.footer-inner {
  padding: 2rem 0px 1.5rem;
  color: white;
  text-align: center;
}
.footer-inner .aff-nav ul li {
  display: inline-block;
  margin: 1rem 1.5rem;
  font-size: 0.875rem;
}
.footer-inner .aff-copyright {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .footer-inner {
    padding: 1.5rem 0px 1.25rem;
  }
  .footer-inner .aff-nav ul li {
    margin: 0.75rem 0.75rem;
  }
  .footer-inner .aff-copyright {
    margin-top: 1.5rem;
    font-size: 0.75rem;
  }
}

.top-main {
  background-image: linear-gradient(355deg, rgba(211, 239, 255, 0) 30%, rgb(211, 239, 255) 70%);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 120vw;
}
@media (max-width: 767px) {
  .top-main {
    background-size: 100% 200vh;
  }
}

.ato-factoring-main.top-main {
  margin-top: 0;
}
@media (max-width: 767px) {
  .ato-factoring-main.top-main {
    margin-top: 0;
  }
}

.afm-top {
  width: 100vw;
  padding-top: 72px;
}
@media (max-width: 767px) {
  .afm-top {
    padding-top: 48px;
  }
}

.af-top-main {
  position: relative;
}
.af-top-main .top-main-copy {
  position: absolute;
  left: 24px;
  top: 0%;
  margin-top: 5%;
}
.af-top-main .top-main-copy h2 {
  margin: 0;
  font-weight: 500;
}
.af-top-main .top-main-copy h2 span {
  display: inline-block;
  padding: 1.25rem;
  border: 4px solid #4C87EF;
  background-color: white;
  font-size: 2.5rem;
}
.af-top-main .top-main-copy h2 span:first-child {
  border-bottom: none;
}
.af-top-main .top-main-copy h2 span strong {
  font-size: 3.5rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .af-top-main .top-main-copy {
    position: relative;
    left: auto;
    top: auto;
    margin: 0px auto 0.5rem;
  }
  .af-top-main .top-main-copy h2 {
    line-height: 1.25;
  }
  .af-top-main .top-main-copy h2 span {
    padding: 0px;
    border: none;
    background-color: transparent;
    font-size: 1.25rem;
  }
  .af-top-main .top-main-copy h2 span strong {
    font-size: 1.75rem;
  }
}
.af-top-main .top-main-visual {
  width: 57.5%;
  margin-left: auto;
  padding-top: 5%;
}
.af-top-main .top-logo {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 27%;
  margin-left: 8.5%;
  width: 40%;
}
.af-top-main .top-signup {
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 37%;
  margin-left: 13%;
}
@media (max-width: 767px) {
  .af-top-main .top-main-visual {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }
  .af-top-main .top-logo {
    display: none;
  }
  .af-top-main .top-signup {
    position: static;
    top: auto;
    left: auto;
    margin-top: 1rem;
    margin-left: 0;
    text-align: center;
  }
}

.af-top-points {
  width: 100%;
  max-width: 1140px;
  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;
  margin: 40px auto 0px;
}
.af-top-points .point-item {
  width: 33.3333%;
  text-align: center;
  padding: 0rem;
  margin-bottom: 24px;
}
.af-top-points .point-item .point-inner {
  width: calc(100% - 24px);
  height: auto;
  min-height: 160px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  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;
}
.af-top-points .point-item .point-inner .text {
  font-size: 1.75rem;
}
.af-top-points .point-item .point-inner .text strong {
  font-size: 2.125rem;
}
@media (max-width: 767px) {
  .af-top-points {
    margin-top: 1.5rem;
  }
  .af-top-points .point-item {
    margin-bottom: 8px;
  }
  .af-top-points .point-item .point-inner {
    width: calc(100% - 8px);
    min-height: 80px;
    border-radius: 8px;
  }
  .af-top-points .point-item .point-inner .text {
    font-size: 0.75rem;
    line-height: 1.25;
  }
  .af-top-points .point-item .point-inner .text strong {
    font-size: 1rem;
  }
  .af-top-points .point-item .point-inner picture, .af-top-points .point-item .point-inner figure {
    display: none;
  }
}

.ato-factoring-concept {
  margin-top: -80px;
  background-image: url(/assets/images/top/bg_top_concept.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  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;
  -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: 100%;
  height: 60vw;
  min-height: 800px;
}
.ato-factoring-concept .af-concept-content h4 {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .ato-factoring-concept {
    margin-top: 0;
    background-image: url(/assets/images/top/bg_top_concept_sp.png);
    height: auto;
    min-height: 640px;
  }
  .ato-factoring-concept .af-concept-content h4 {
    font-size: 1.5rem;
  }
}

.ato-factoring-concern {
  background-color: #ECF9FF;
  position: relative;
}
.ato-factoring-concern:before, .ato-factoring-concern:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 6.25vw;
  background-size: contain;
}
.ato-factoring-concern:before {
  top: -6.25vw;
  background-image: url(/assets/images/top/bg_point_top.svg);
}
.ato-factoring-concern:after {
  bottom: -6.25vw;
  background-image: url(/assets/images/top/bg_point_bottom.svg);
}

.af-concern-points {
  padding-top: 40px;
}
.af-concern-points ul {
  position: relative;
  height: 460px;
}
.af-concern-points ul li {
  position: absolute;
  left: 50%;
  top: 0;
  padding: 1.5rem 2rem;
  background-color: #C6D4EC;
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.af-concern-points ul li:after {
  content: "";
  position: absolute;
  left: calc(50% - 12px);
  bottom: -12px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent #C6D4EC transparent transparent;
}
.af-concern-points ul li.pt1 {
  margin-left: -5%;
}
.af-concern-points ul li.pt2 {
  margin-top: 2%;
  margin-left: -34%;
}
.af-concern-points ul li.pt3 {
  margin-top: 9%;
  margin-left: -18%;
}
.af-concern-points ul li.pt4 {
  margin-top: 8%;
  margin-left: 10%;
}
.af-concern-points ul li.pt5 {
  margin-top: 17%;
  margin-left: -38%;
}
.af-concern-points ul li.pt6 {
  margin-top: 18%;
  margin-left: -2%;
}
.af-concern-points ul li.pt7 {
  margin-top: 26%;
  margin-left: -30%;
}
.af-concern-points ul li.pt8 {
  margin-top: 27%;
  margin-left: 12%;
}
@media (max-width: 1120px) {
  .af-concern-points {
    max-width: 880px;
    margin: 0px auto 2rem;
  }
  .af-concern-points ul {
    position: relative;
    height: auto;
    background-color: #C6D4EC;
    border-radius: 16px;
    padding: 1rem;
  }
  .af-concern-points ul:after {
    content: "";
    position: absolute;
    left: calc(50% - 16px);
    bottom: -16px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 32px 32px 0;
    border-color: transparent #C6D4EC transparent transparent;
  }
  .af-concern-points ul li {
    width: calc(50% - 0.125rem);
    display: inline-block;
    vertical-align: top;
    position: static;
    left: auto;
    top: auto;
    padding: 0px 0px 0px 1rem;
    background-color: transparent;
    border-radius: 0;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: left;
    position: relative;
  }
  .af-concern-points ul li:after {
    display: none;
  }
  .af-concern-points ul li:before {
    content: "・";
    position: absolute;
    left: 0;
  }
  .af-concern-points ul li.pt1, .af-concern-points ul li.pt2, .af-concern-points ul li.pt3, .af-concern-points ul li.pt4, .af-concern-points ul li.pt5, .af-concern-points ul li.pt6, .af-concern-points ul li.pt7, .af-concern-points ul li.pt8 {
    margin: 0.25rem 0px;
  }
}
@media (max-width: 767px) {
  .af-concern-points ul li {
    width: 100%;
    font-size: 1rem;
  }
}

.af-concern-contact {
  padding-bottom: 2.5rem;
}

.af-feature-points {
  margin-top: 4rem;
}
.af-feature-points ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.af-feature-points ul li {
  width: 31.5%;
}
.af-feature-points ul li:nth-child(2) {
  -webkit-transform: translateY(2.5rem);
          transform: translateY(2.5rem);
}
.af-feature-points ul li figure {
  background-color: white;
  border-radius: 12px;
  padding: 1.5rem 0px;
  text-align: center;
}
.af-feature-points ul li figure img {
  width: 100%;
  max-width: 210px;
}
.af-feature-points ul li h6 {
  margin: 0.75rem 0px;
}
@media (max-width: 767px) {
  .af-feature-points {
    margin-top: 2.5rem;
  }
  .af-feature-points ul {
    display: block;
  }
  .af-feature-points ul li {
    width: 100%;
  }
  .af-feature-points ul li:nth-child(2) {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .af-feature-points ul li figure {
    background-color: #EAF2FF;
    border-radius: 1.5rem;
    padding: 1rem 0px;
    width: 90%;
    margin: 0px auto;
  }
  .af-feature-points ul li figure img {
    width: 100%;
    max-width: 210px;
  }
  .af-feature-points ul li h6 {
    margin: 0.75rem 0px;
  }
}

.af-structure-image {
  position: relative;
}
.af-structure-image figure {
  width: 73.5%;
  margin: 2.5rem 0px 2.5rem 5%;
}
.af-structure-image .af-structure-title {
  position: absolute;
  right: 5%;
  top: 5%;
}
.af-structure-image .af-structure-title h5 {
  font-size: 2.25rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .af-structure-image figure {
    width: 100%;
    margin: 1.5rem 0px;
  }
}

.af-process-steps {
  margin-top: 4rem;
}
.af-process-steps ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.af-process-steps ul li {
  width: 25%;
}
.af-process-steps ul li figure {
  width: 90%;
  max-width: 240px;
  margin: 0px auto;
  background-color: #AEDDFF;
  border-radius: 50%;
}
.af-process-steps ul li h6 {
  font-size: 1.5rem;
  text-align: center;
  padding-bottom: 1.75rem;
  margin-top: 1.75rem;
  position: relative;
}
.af-process-steps ul li h6:after {
  content: "";
  position: absolute;
  left: calc(50% - 60px);
  bottom: 0;
  width: 120px;
  height: 2px;
  background-color: black;
}
.af-process-steps ul span.arrow {
  width: 12.5%;
  position: relative;
}
.af-process-steps ul span.arrow:before {
  content: "";
  position: absolute;
  left: calc(50% - 44px);
  top: 20%;
  width: 88px;
  height: 28px;
  background-image: url(/assets/images/top/process_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .af-process-steps {
    margin-top: 2.5rem;
  }
  .af-process-steps ul {
    display: block;
  }
  .af-process-steps ul li {
    width: 100%;
  }
  .af-process-steps ul li figure {
    width: 80%;
    max-width: 160px;
  }
  .af-process-steps ul li h6 {
    font-size: 1.25rem;
    padding-bottom: 1.25rem;
    margin-top: 1.25rem;
  }
  .af-process-steps ul span.arrow {
    display: block;
    width: 20px;
    height: 80px;
    margin: 0px auto;
    position: relative;
  }
  .af-process-steps ul span.arrow:before {
    left: 0;
    top: 0;
    width: 20px;
    height: 64px;
    background-image: url(/assets/images/top/process_arrow_sp.svg);
  }
}

.ato-factoring-main {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .ato-factoring-main {
    margin-top: 48px;
  }
}

.bg-blue {
  background-color: #ECF9FF;
}

.bg-dark-blue {
  background-color: #224F9E;
}

.bg-black-blue {
  background-color: #082F74;
}

.bg-light-gray {
  background-color: #F4F8FF;
}

.bg-clip {
  -webkit-clip-path: polygon(0 12vw, 100vw 0, 100vw calc(100% - 12vw), 0% 100%);
          clip-path: polygon(0 12vw, 100vw 0, 100vw calc(100% - 12vw), 0% 100%);
  padding-top: 10vw;
  padding-bottom: 16vw;
}
@media (max-width: 767px) {
  .bg-clip {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.color-strip {
  display: inline;
  color: white;
  padding: 0.25rem;
  background-color: #F0C24C;
}

.text-bg {
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  background-color: #F4F8FF;
}

.box {
  width: 100%;
  background-color: white;
  border-radius: 20px;
  padding: 2rem;
  -webkit-box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.12);
}
.box.gray {
  background-color: #F4F8FF;
}
.box.min-padding {
  padding: 1.25rem;
}
@media (max-width: 767px) {
  .box {
    padding: 1.25rem;
    -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.12);
  }
  .box.clear-box-sp {
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .box.no-round-box-sp {
    border-radius: 0;
  }
}

.links {
  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;
  margin: 3rem 0px 2rem;
}
.links > a, .links > button {
  width: calc(50% - 1.5rem);
  margin: 0px 0.75rem;
}
@media (max-width: 767px) {
  .links {
    margin: 1rem 0px 1rem;
  }
  .links > a, .links > button {
    width: 100%;
    margin: 0.5rem 0px;
  }
}

.link {
  text-align: center;
  margin: 3rem 0px 2rem;
}

.page-head {
  width: 100%;
  height: 240px;
  background-color: #4C87EF;
  position: relative;
  overflow: hidden;
}
.page-head .page-head-inner {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0px auto;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-head .page-head-inner h1 {
  font-size: 3rem;
  line-height: 1.75;
}
.page-head .page-head-inner h1 span {
  display: block;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .page-head .page-head-inner h1 {
    font-size: 2rem;
  }
  .page-head .page-head-inner h1 span {
    font-size: 1rem;
  }
}
.page-head figure {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: right;
}
.page-head figure img {
  width: 50%;
}
.page-head.voice-head figure {
  right: -3%;
}
.page-head.faq-head figure {
  right: 3%;
}
.page-head.fee-head figure {
  right: 5%;
}
.page-head.contact-head figure {
  right: 4%;
}
.page-head.static-head {
  height: 200px;
  background-color: #4CABF0;
}
.page-head.static-head h1 {
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
  .page-head figure img {
    width: 64%;
  }
  .page-head.voice-head figure {
    right: -20%;
  }
  .page-head.faq-head figure {
    right: -20%;
  }
  .page-head.fee-head figure {
    right: -20%;
  }
  .page-head.contact-head figure {
    right: -20%;
  }
  .page-head.static-head {
    height: 180px;
  }
  .page-head.static-head h1 {
    text-align: left;
  }
}

.color-box {
  border: 4px solid #4CABF0;
  border-radius: 1rem;
}
.color-box .color-box-head {
  color: white;
  text-align: center;
  padding: 0.5rem 0px;
  background-color: #4CABF0;
}
.color-box .color-box-body {
  padding: 0.5rem 1.5rem;
}
@media (max-width: 767px) {
  .color-box {
    border-width: 3px;
    border-radius: 1rem;
  }
  .color-box .color-box-head {
    padding: 0.25rem 0px;
    border-radius: 0.75rem 0.75rem 0px 0px;
  }
  .color-box .color-box-body {
    padding: 0.5rem 1rem;
  }
}

.line-box {
  border: 1px solid #4CABF0;
  padding: 1.75rem;
}
.line-box .box-head {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #ACACAC;
}
@media (max-width: 767px) {
  .line-box {
    padding: 1rem;
  }
}

.text-box {
  margin-bottom: 3rem;
}

dl.simple-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  border-top: 1px solid #C8C8C8;
}
dl.simple-table dt, dl.simple-table dd {
  padding: 1.5em 1rem;
  margin: 0;
  line-height: 1.75;
  border-bottom: 1px solid #C8C8C8;
}
dl.simple-table dt {
  width: 20%;
  font-weight: 700;
  background-color: #EBEFF5;
}
dl.simple-table dd {
  width: 80%;
}
dl.simple-table.table-line dt, dl.simple-table.table-line dd {
  padding: 0.25em 0 1em;
  border-bottom: 1px solid black;
}
dl.simple-table.table-line dt:last-of-type, dl.simple-table.table-line dd:last-of-type {
  border-bottom: none;
}
@media (max-width: 767px) {
  dl.simple-table {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
  }
  dl.simple-table dt, dl.simple-table dd {
    padding: 1em 0.5rem;
    font-size: 0.875rem;
  }
  dl.simple-table dt {
    width: 112px;
  }
  dl.simple-table dd {
    width: calc(100% - 112px);
  }
  dl.simple-table.table-line dt {
    border-bottom: 0;
    padding-bottom: 0;
  }
  dl.simple-table.table-line dd {
    margin-top: 0;
    padding-top: 0;
  }
}

.af-voice-list {
  margin-top: 4rem;
}
@media (max-width: 767px) {
  .af-voice-list {
    margin-top: 2.5rem;
  }
}
.af-voice-list .voice-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.af-voice-list .voice-item figure {
  width: 120px;
  height: 120px;
  background-color: #AEDDFF;
  border-radius: 50%;
}
.af-voice-list .voice-item .item-body {
  width: calc(100% - 160px);
  margin-left: auto;
}
.af-voice-list .voice-item.full {
  display: block;
  margin-bottom: 4rem;
}
.af-voice-list .voice-item.full:last-child {
  margin-bottom: 0;
}
.af-voice-list .voice-item.full figure {
  width: 120px;
  height: 120px;
  background-color: #AEDDFF;
  border-radius: 50%;
}
.af-voice-list .voice-item.full .item-body {
  width: 100%;
  margin-left: 0px;
}
.af-voice-list .voice-item.full .voice-item-head {
  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;
}
.af-voice-list .voice-item.full .voice-item-head .voice-item-head-left {
  width: 120px;
}
.af-voice-list .voice-item.full .voice-item-head .voice-item-head-right {
  width: calc(100% - 120px);
  padding-left: 1.5rem;
}
.af-voice-list .voice-item.full .voice-item-head .voice-item-head-right h6 {
  margin-bottom: 0;
}
.af-voice-list .voice-item.full .voice-item-body {
  margin-top: 1.75rem;
  padding: 1.75rem 2rem;
  background-color: #F4F8FF;
}
@media (max-width: 767px) {
  .af-voice-list .voice-item figure {
    width: 80px;
    height: 80px;
  }
  .af-voice-list .voice-item .item-body {
    width: 100%;
    margin-left: 0;
  }
  .af-voice-list .voice-item .voice-item-head {
    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;
    border-bottom: 1px solid #C8C8C8;
    padding-bottom: 1rem;
  }
  .af-voice-list .voice-item .voice-item-head .voice-item-meta {
    width: calc(100% - 80px);
    padding-left: 1rem;
  }
  .af-voice-list .voice-item.full {
    margin-bottom: 2.5rem;
  }
  .af-voice-list .voice-item.full figure {
    width: 80px;
    height: 80px;
  }
  .af-voice-list .voice-item.full .item-body {
    width: 100%;
    margin-left: 0px;
  }
  .af-voice-list .voice-item.full .voice-item-head {
    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;
  }
  .af-voice-list .voice-item.full .voice-item-head .voice-item-head-left {
    width: 80px;
  }
  .af-voice-list .voice-item.full .voice-item-head .voice-item-head-right {
    width: calc(100% - 80px);
    margin-left: 0;
    padding-left: 0;
  }
  .af-voice-list .voice-item.full .voice-item-head .voice-item-head-right .voice-item-meta {
    width: 100%;
  }
  .af-voice-list .voice-item.full .voice-item-body {
    margin-top: 1.5rem;
    padding: 0;
    background-color: transparent;
  }
}
.af-voice-list .voice-item-meta {
  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;
  border-bottom: 1px solid #C8C8C8;
  padding-bottom: 1rem;
}
.af-voice-list .voice-item-meta .category {
  display: inline-block;
  color: white;
  line-height: 1;
  background-color: #F0C24C;
  padding: 0.5rem;
}
.af-voice-list .voice-item-meta .fund-amount {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-left: auto;
}
@media (max-width: 767px) {
  .af-voice-list .voice-item-meta {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .af-voice-list .voice-item-meta .fund-amount {
    margin-left: 0;
    margin-top: 0.25rem;
    font-size: 1rem;
  }
}
.af-voice-list h6 {
  margin: 1rem 0px;
}
.af-voice-list p {
  margin: 0;
}
.faq-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.faq-nav ul li {
  width: 31%;
  margin: 1% 1.75%;
}
.faq-nav ul li:nth-child(3n+1) {
  margin-left: 0;
}
.faq-nav ul li:nth-child(3n) {
  margin-right: 0;
}
.faq-nav ul li a {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 60px;
  border-radius: 30px;
  padding: 1.1rem 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  vertical-align: top;
  background-color: white;
  color: #4CABF0;
  border: 2px solid #4CABF0;
}
@media (max-width: 767px) {
  .faq-nav ul {
    display: block;
  }
  .faq-nav ul li {
    width: 100%;
    margin: 0.5rem 0px;
  }
  .faq-nav ul li a {
    max-width: 100%;
    height: auto;
    border-radius: 0;
    padding: 0.5rem 0px 0.5rem 2rem;
    font-size: 1rem;
    text-align: left;
    border: 0;
    position: relative;
  }
  .faq-nav ul li a:before {
    content: "";
    position: absolute;
    left: 0.5rem;
    top: 0.625rem;
    width: 10px;
    height: 10px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.af-faq-list {
  border-top: 1px solid #C8C8C8;
}
.af-faq-list .faq-item {
  padding: 1.75rem 0px;
  border-bottom: 1px solid #C8C8C8;
}
.af-faq-list .faq-item .faq-item-question {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  cursor: pointer;
}
.af-faq-list .faq-item .faq-item-question:before {
  content: "Q.";
  color: #4C87EF;
  margin-right: 0.25rem;
}
.af-faq-list .faq-item .faq-item-question:after {
  content: "+";
  color: white;
  font-weight: 400;
  text-align: center;
  line-height: 24px;
  position: absolute;
  width: 24px;
  height: 24px;
  right: 0;
  background-color: #9F9F9F;
  border-radius: 50%;
}
.af-faq-list .faq-item .faq-item-question.active:after {
  content: "–";
  color: white;
  line-height: 20px;
  background-color: #4C87EF;
}
.af-faq-list .faq-item .faq-item-answer {
  display: none;
  padding-left: 1.5rem;
  padding-top: 1.5rem;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .af-faq-list .faq-item {
    padding: 1.5rem 0px;
  }
  .af-faq-list .faq-item .faq-item-question {
    font-size: 1.125rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .af-faq-list .faq-item .faq-item-question:before {
    margin-right: 0;
    position: absolute;
    left: 0;
  }
  .af-faq-list .faq-item .faq-item-question:after {
    top: 0.25rem;
  }
  .af-faq-list .faq-item .faq-item-answer {
    display: none;
    padding-left: 1.5rem;
    padding-top: 1rem;
    line-height: 1.65;
  }
}

.fee-price {
  font-size: 1.25rem;
}
.fee-price strong {
  font-size: 3rem;
  margin: 0px 0.25rem;
}
@media (max-width: 767px) {
  .fee-price {
    font-size: 1rem;
  }
  .fee-price strong {
    font-size: 2.5rem;
  }
}

.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 1rem 0px;
}
.form-item.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.form-item input[type=text],
.form-item input[type=email],
.form-item input[type=tel],
.form-item input[type=submit],
.form-item textarea,
.form-item select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-item input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}
.form-item select::-ms-expand {
  display: none;
}
.form-item input[type=text],
.form-item input[type=email],
.form-item input[type=tel],
.form-item textarea,
.form-item select {
  margin: 0;
  padding: 0.625rem 0.75rem;
  font-size: 1rem;
  line-height: 1;
  border-radius: 0.25rem;
  border: none;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.16);
          box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.16);
}
.form-item input[type=text].error,
.form-item input[type=email].error,
.form-item input[type=tel].error,
.form-item textarea.error,
.form-item select.error {
  border-color: #EE0000;
}
.form-item input[type=submit] {
  border: none;
  line-height: 1;
}
.form-item .form-item-name {
  width: 25%;
  line-height: 1.25;
  margin: 0;
  padding: 0.625rem 0;
}
.form-item .blank {
  width: 25%;
}
.form-item .form-item-input,
.form-item .form-item-select,
.form-item .form-item-checkbox,
.form-item .form-item-data {
  display: block;
  width: 75%;
}
.form-item .form-item-input input[type=text],
.form-item .form-item-input input[type=email],
.form-item .form-item-input input[type=tel],
.form-item .form-item-input textarea,
.form-item .form-item-input select,
.form-item .form-item-select input[type=text],
.form-item .form-item-select input[type=email],
.form-item .form-item-select input[type=tel],
.form-item .form-item-select textarea,
.form-item .form-item-select select,
.form-item .form-item-checkbox input[type=text],
.form-item .form-item-checkbox input[type=email],
.form-item .form-item-checkbox input[type=tel],
.form-item .form-item-checkbox textarea,
.form-item .form-item-checkbox select,
.form-item .form-item-data input[type=text],
.form-item .form-item-data input[type=email],
.form-item .form-item-data input[type=tel],
.form-item .form-item-data textarea,
.form-item .form-item-data select {
  width: 100%;
}
.form-item .form-item-input.double,
.form-item .form-item-select.double,
.form-item .form-item-checkbox.double,
.form-item .form-item-data.double {
  width: calc(37.5% - 1rem);
}
.form-item .form-item-input.middle,
.form-item .form-item-select.middle,
.form-item .form-item-checkbox.middle,
.form-item .form-item-data.middle {
  width: 51.25%;
}
@media (max-width: 767px) {
  .form-item .form-item-name {
    width: 100%;
  }
  .form-item .blank {
    width: 100%;
  }
  .form-item .form-item-input,
  .form-item .form-item-select,
  .form-item .form-item-checkbox,
  .form-item .form-item-data {
    display: block;
    width: 100%;
  }
  .form-item .form-item-input input[type=text],
  .form-item .form-item-input input[type=email],
  .form-item .form-item-input input[type=tel],
  .form-item .form-item-input textarea,
  .form-item .form-item-input select,
  .form-item .form-item-select input[type=text],
  .form-item .form-item-select input[type=email],
  .form-item .form-item-select input[type=tel],
  .form-item .form-item-select textarea,
  .form-item .form-item-select select,
  .form-item .form-item-checkbox input[type=text],
  .form-item .form-item-checkbox input[type=email],
  .form-item .form-item-checkbox input[type=tel],
  .form-item .form-item-checkbox textarea,
  .form-item .form-item-checkbox select,
  .form-item .form-item-data input[type=text],
  .form-item .form-item-data input[type=email],
  .form-item .form-item-data input[type=tel],
  .form-item .form-item-data textarea,
  .form-item .form-item-data select {
    width: 100%;
  }
  .form-item .form-item-input.middle,
  .form-item .form-item-select.middle,
  .form-item .form-item-checkbox.middle,
  .form-item .form-item-data.middle {
    width: 100%;
  }
}
.form-item .form-item-select {
  position: relative;
}
.form-item .form-item-select:after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 1rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: black transparent transparent transparent;
}
.form-item .form-item-checkbox {
  position: relative;
}
.form-item .form-item-checkbox input[type=checkbox] {
  visibility: hidden;
  width: 0;
  height: 0;
  position: absolute;
}
.form-item .form-item-checkbox input[type=checkbox] + .checkbox {
  position: relative;
  padding-left: 35px;
  line-height: 30px;
}
.form-item .form-item-checkbox input[type=checkbox] + .checkbox:before, .form-item .form-item-checkbox input[type=checkbox] + .checkbox:after {
  content: "";
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form-item .form-item-checkbox input[type=checkbox] + .checkbox:before {
  top: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: white;
  border-radius: 0.25rem;
  border: none;
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.16);
          box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.16);
}
.form-item .form-item-checkbox input[type=checkbox] + .checkbox:after {
  left: 4px;
  top: 7px;
  width: 16px;
  height: 8px;
  border-left: 4px solid #DDDDDD;
  border-bottom: 4px solid #DDDDDD;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.form-item .form-item-checkbox input[type=checkbox]:checked + .checkbox:before {
  background-color: #4C87EF;
}
.form-item .form-item-checkbox input[type=checkbox]:checked + .checkbox:after {
  border-left-color: white;
  border-bottom-color: white;
}
.form-item .form-item-checkbox input[type=checkbox].error + .checkbox:before {
  border-color: #EE0000;
}
.form-item .form-item-data {
  line-height: 1.25;
  margin: 0;
  padding: 0.625rem 0;
  border-bottom: 1px solid #C8C8C8;
}

.contact-form .form-content {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
}
.contact-form h5:nth-of-type(n+2) {
  margin-top: 2.5rem;
}
.contact-form .form-item input[type=text],
.contact-form .form-item input[type=email],
.contact-form .form-item input[type=tel],
.contact-form .form-item textarea,
.contact-form .form-item select {
  background-color: #EEF1F7;
}
.contact-form .form-item input[type=text].error,
.contact-form .form-item input[type=email].error,
.contact-form .form-item input[type=tel].error,
.contact-form .form-item textarea.error,
.contact-form .form-item select.error {
  border-color: #EE0000;
}
.contact-form .form-item textarea {
  line-height: 1.8;
}
.contact-form .form-item-checkbox input[type=checkbox] + .checkbox:before {
  background-color: #EEF1F7;
}
.contact-form .agreement-check {
  width: 88%;
  max-width: 440px;
  margin: 2rem auto;
  background-color: #F4F8FF;
  padding: 1rem 0.5rem;
  text-align: center;
}
.contact-form .agreement-check .form-item-checkbox input[type=checkbox] + .checkbox:before {
  background-color: white;
}
.contact-form .agreement-check .form-item-checkbox input[type=checkbox]:checked + .checkbox:before {
  background-color: #4C87EF;
}
@media (max-width: 767px) {
  .contact-form .agreement-check {
    width: 100%;
    padding: 0.25rem 0.25rem;
  }
}

.error-section {
  width: 100%;
  height: calc(100vh - 72px);
  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;
}
.error-section .error-inner {
  text-align: center;
}
.error-section .error-inner img.error-title {
  width: 90%;
  max-width: 460px;
  height: auto;
}