:root {
  --max: 1100px;
}

.spb {
  display: none;
}
@media screen and (max-width: 767px) {
  .spb {
    display: block;
  }
}

.pcb {
  display: block;
}
@media screen and (max-width: 767px) {
  .pcb {
    display: none;
  }
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.28px;
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 26px;
  }
}
.section-title:after {
  content: "";
  width: 40px;
  height: 3px;
  background: #fff;
  display: block;
  margin: 10px auto 0;
  border-radius: 100px;
}

.section-title-color-w {
  color: #fff;
}
.section-title-color-w span {
  color: #FFFF03;
}

.section-title-color-b:after {
  background: #333;
}
.section-title-color-b span {
  color: #0166C6;
}

.btn {
  position: relative;
  text-decoration: none;
  background: #F7712B;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #F7712B;
  box-sizing: border-box;
  transition: all 0.4s;
}
.btn:hover {
  background: #fff;
  color: #F7712B;
}
.btn:hover .btn-arrow::before, .btn:hover .btn-arrow::after {
  background: #F7712B;
}

.btn-arrow {
  position: absolute;
  display: inline-block;
  width: 9px;
  height: 17px;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn-arrow {
    width: 6px;
    height: 12px;
  }
}
.btn-arrow::before, .btn-arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2.5px);
  right: 0;
  width: 12.2px;
  height: 5px;
  border-radius: 9999px;
  background: #fff;
  transform-origin: calc(100% - 2.5px) 50%;
  transition: all 0.4s;
}
.btn-arrow::before {
  transform: rotate(56.3deg);
}
.btn-arrow::after {
  transform: rotate(-56.3deg);
}

.btn-short {
  font-size: 20px;
  width: 250px;
  letter-spacing: 0.6px;
  padding: 10px 0;
  border-width: 3px;
}
@media screen and (max-width: 767px) {
  .btn-short {
    border-radius: 0;
    padding: 16px 10px;
    font-size: 14px;
    width: auto;
  }
}

.btn-fv {
  font-size: 26px;
  padding: 16px 0 20px;
  border-color: #fff;
}
@media screen and (max-width: 767px) {
  .btn-fv {
    margin: 0 40px;
    font-size: 18px;
    padding: 8px 0 10px;
  }
}
.btn-fv:hover {
  border-color: #F7712B;
}

.btn-cta {
  font-size: 26px;
  padding: 16px 0 20px;
  border-color: #fff;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .btn-cta {
    width: calc(100% - 40px);
    font-size: 20px;
  }
}
.btn-cta:hover {
  border-color: #F7712B;
}

.btn-caption {
  font-size: 18px;
  color: #F7712B;
  text-align: center;
  line-height: 1;
  margin-top: 40px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .btn-caption {
    margin-top: 20px;
    font-size: 14px;
  }
}
.btn-caption:before, .btn-caption:after {
  content: "";
  width: 2px;
  height: 1.25em;
  background: #F7712B;
  display: inline-block;
  position: relative;
  top: 7px;
}
.btn-caption:before {
  transform: rotate(-30deg);
  margin-right: 15px;
}
.btn-caption:after {
  transform: rotate(30deg);
  margin-left: 5px;
}
.btn-caption.btn-caption-w {
  color: #fff;
}
.btn-caption.btn-caption-w:before, .btn-caption.btn-caption-w:after {
  background: #fff;
}

.icon-opener {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 16px;
  height: 3px;
  background: #0166C6;
  position: relative;
}
@media screen and (max-width: 767px) {
  .icon-opener {
    height: 2px;
  }
}
.icon-opener::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  transition: all 0.4s;
}

.js-open .icon-opener::before {
  transform: rotate(0deg);
}

.cards {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .cards {
    display: block;
  }
  .cards li {
    width: calc(100% - 40px);
    margin: 20px auto 0;
  }
  .cards li:first-child {
    margin-top: 0;
  }
}
.cards h3 {
  font-size: 20px;
  background: #0166C6;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .cards h3 {
    font-size: 16px;
    padding: 8px 0 10px;
  }
}
.cards figure img {
  width: 100%;
}

.card-type01 {
  padding: 10px 10px 30px;
  width: calc((100% - 40px) / 3);
  background: #fff;
}
.card-type01 h3 {
  background: #0A4176;
  padding: 4px 0 5px;
}

.card-type02 {
  width: calc((100% - 48px) / 4);
  border: 2px solid #0166C6;
  background: #EBF4FF;
}
.card-type02 h3 {
  color: #0166C6;
  background: none;
}
@media screen and (max-width: 767px) {
  .card-type02 h3 {
    font-size: 20px;
  }
}
.card-type02 h3.l1 {
  padding-top: 0.75em;
}
.card-type02 p {
  padding: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .card-type02 p {
    padding: 0 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  .card-type02 figure {
    margin: 10px -2px 0;
  }
}

.card-type03 {
  width: calc((100% - 40px) / 3);
  background: #fff;
}
.card-type03 h3 {
  padding: 4px 0 5px;
}
.card-type03 span {
  color: #FFFF03;
}

.card-type04 {
  width: calc((100% - 40px) / 3);
  background: #EBF4FF;
}
.card-type04 h3 {
  font-size: 18px;
  padding: 4px 0 5px;
}
.card-type04 span {
  color: #FFFF03;
}

.card-type05 {
  width: calc((100% - 20px) / 2);
  background: #EBF4FF;
}
.card-type05 h3 {
  font-size: 18px;
  padding: 4px 0 5px;
}
.card-type05 span {
  color: #FFFF03;
}
.card-type05 figure {
  max-height: 126px;
}
.card-type05 figure img {
  height: 100%;
  width: auto;
}

.card-type06 {
  padding: 10px;
  width: calc((100% - 40px) / 3);
  background: #EBF4FF;
}
.card-type06 h3 {
  background: #0166C6;
  padding: 4px 0 5px;
}
.card-type06 p {
  text-align: left;
}

@media screen and (max-width: 767px) {
  li.card-type03, li.card-type04, li.card-type05 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }
  li.card-type03 figure,
  li.card-type03 h3, li.card-type04 figure,
  li.card-type04 h3, li.card-type05 figure,
  li.card-type05 h3 {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
  }
  li.card-type03 figure img,
  li.card-type03 h3 img, li.card-type04 figure img,
  li.card-type04 h3 img, li.card-type05 figure img,
  li.card-type05 h3 img {
    width: 100%;
    height: auto;
  }
  li.card-type03 h3, li.card-type04 h3, li.card-type05 h3 {
    padding: 18px 0 20px;
  }
  li.card-type03 {
    width: calc(100% - 40px);
  }
}
header {
  background: #fff;
}

.main-header {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 0 10px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .main-header {
    margin-left: 20px;
    width: calc(100% - 20px);
    padding: 0;
  }
  .main-header h1 {
    width: 137px;
  }
  .main-header h1 img {
    width: 100%;
  }
}

.sub-header {
  background: #0A4176;
  color: #fff;
  padding: 13px 0;
}
.sub-header h2 {
  font-size: 24px;
  letter-spacing: 0.96px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sub-header h2 {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}

footer {
  background: #181717;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
}

.footer-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.footer-inner .logo {
  width: 100%;
  max-width: 282px;
}
@media screen and (max-width: 767px) {
  .footer-inner .logo {
    max-width: 213px;
    margin: 0 auto;
  }
  .footer-inner .logo img {
    width: 100%;
  }
}

.footer-middle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .footer-middle {
    margin-top: 20px;
    display: block;
  }
}
.footer-middle .icon-mark {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .footer-middle .icon-mark {
    justify-content: center;
    margin-top: 25px;
  }
}
.footer-middle .site-name {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer-middle .site-name {
    width: 17em;
    margin: 0 auto;
    text-align: center;
  }
}
.footer-middle .site-name-caption {
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.88px;
}
@media screen and (max-width: 767px) {
  .footer-middle .site-name-caption {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
}
.footer-middle h3 {
  background: #fff;
  color: #333333;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.72px;
  padding-top: 2px;
  margin-top: 14px;
}
@media screen and (max-width: 767px) {
  .footer-middle h3 {
    font-size: 16px;
    letter-spacing: 0.64px;
    margin-top: 8px;
  }
}

.footer-bottom {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    display: block;
  }
}
.footer-bottom .copy {
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.56px;
}
@media screen and (max-width: 767px) {
  .footer-bottom .copy {
    text-align: center;
    padding-top: 10px;
    font-size: 12px;
  }
}
.footer-bottom .site-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer-bottom .site-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    text-align: center;
    width: 17em;
    margin: 0 auto;
  }
  .footer-bottom .site-links li {
    flex: 0 0 50%;
    margin-bottom: 10px;
  }
}
.footer-bottom .site-links a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .footer-bottom .site-links a {
    font-size: 14px;
  }
}
.footer-bottom .site-links a:hover {
  text-decoration: underline;
}

html, body {
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

.txt-en {
  font-family: "Rubik", sans-serif;
}

section {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  section {
    margin-top: 60px;
  }
}

.fv {
  margin-top: 0;
  background: radial-gradient(62.5% 192.5% at 43.1% 64.28%, #03A4EC 0%, #005DC0 55%);
  clip-path: polygon(0 0, 100% 0, 100% 92.5%, 50% 100%, 0 92.5%);
}
@media screen and (max-width: 767px) {
  .fv {
    clip-path: polygon(0 0, 100% 0, 100% 92.5%, 50% 95%, 0 92.5%);
  }
}

.fv-wrapper {
  position: relative;
}
.fv-wrapper::before, .fv-wrapper::after {
  content: "";
  display: block;
  width: 748px;
  height: 371px;
  position: absolute;
  z-index: 0;
}
.fv-wrapper::before {
  background: url(../images/header-bg-dot-top.png) no-repeat 0 0;
  top: 0;
  left: 0;
}
.fv-wrapper::after {
  background: url(../images/header-bg-dot-bottom.png) no-repeat 0 0;
  bottom: 0;
  right: 0;
}

.fv-inner {
  background: url(../images/header-bg-top_layer.png) no-repeat 50% 50%;
  background-size: cover;
}

.fv-content {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fv-top {
  display: flex;
  justify-content: center;
  gap: 20px;
  background: url(../images/header-bg-img.png) no-repeat 10% 100%;
  background-size: 40%;
  padding-bottom: 225px;
}
@media screen and (max-width: 767px) {
  .fv-top {
    display: block;
    background: url(../images/header-bg-img@2x.png) no-repeat;
    background-position: 50% 100%;
    background-size: auto 210px;
  }
}

.fv-ribbon {
  width: 353px;
  height: 293px;
}
.fv-ribbon img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv-ribbon {
    width: 100%;
    height: auto;
  }
}

.fv-title {
  color: #fff;
}
.fv-title h2 {
  font-size: 26px;
  text-align: center;
  margin: 25px 0 60px;
  padding: 9px 0;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
@media screen and (max-width: 767px) {
  .fv-title h2 {
    font-size: 18px;
    margin: 15px 20px 30px;
  }
}

.fv-caption {
  font-size: 81px;
  font-weight: 700;
  line-height: 1.13;
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .fv-caption {
    text-align: center;
    font-size: 47px;
    margin-top: 15px;
  }
}
.fv-caption span {
  color: #FFFF03;
  display: block;
  margin-bottom: 9px;
}
.fv-caption em {
  font-style: normal;
  font-size: 54px;
}
@media screen and (max-width: 767px) {
  .fv-caption em {
    font-size: 35px;
  }
}

.fv-banner {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .fv-banner {
    margin-bottom: 50px;
  }
}
.fv-banner img {
  position: relative;
  left: -14px;
  width: calc(100% + 14px);
  max-width: 1114px;
}
@media screen and (max-width: 767px) {
  .fv-banner img {
    left: 0;
    width: calc(100% - 30px);
    margin: 0 20px 0 10px;
  }
}

.fv-service-feature {
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .fv-service-feature {
    margin-top: 50px;
    padding-bottom: 45%;
  }
}

@media screen and (max-width: 767px) {
  .merit {
    margin-top: 0;
  }
}
.merit-caption {
  text-align: center;
  font-weight: 500;
  margin-top: 15px;
  letter-spacing: 0.64px;
}

.multicloud {
  background: #EBF4FF;
  padding: 100px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.88px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .multicloud {
    padding: 60px 0;
    font-size: 16px;
  }
}
.multicloud:before, .multicloud:after {
  content: "";
  display: block;
  width: 551px;
  height: 394px;
  position: absolute;
  z-index: 0;
  background: url(../images/multicloud-bg.png) no-repeat;
}
@media screen and (max-width: 767px) {
  .multicloud:before, .multicloud:after {
    background-size: 50%;
  }
}
.multicloud:before {
  top: 0;
  left: -20%;
}
.multicloud:after {
  bottom: 0;
  right: -20%;
  transform: scale(-100%, -100%);
}
.multicloud p {
  margin-bottom: 20px;
  line-height: 1.7;
}
.multicloud p:last-child {
  margin-bottom: 0;
}
.multicloud span {
  color: #0166C6;
}

.alibaba-info {
  background: #FFF;
  padding-bottom: 125px;
  clip-path: polygon(0 0, 100% 0, 100% 92.5%, 50% 100%, 0 92.5%);
}
@media screen and (max-width: 767px) {
  .alibaba-info {
    clip-path: polygon(0 0, 100% 0, 100% 92.5%, 50% 97%, 0 92.5%);
  }
}

.alibaba-info-caption {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .alibaba-info-caption {
    margin-bottom: 10px;
  }
}
.alibaba-info-caption span {
  display: inline-block;
  background: #333;
  color: #fff;
  font-size: 18px;
  padding: 3px 12px 5px;
  margin: 0 5px 20px 0;
}
@media screen and (max-width: 767px) {
  .alibaba-info-caption span {
    margin-bottom: 0;
  }
}

.alibaba-info-main_read {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #0166C6;
  letter-spacing: 1.2px;
  line-height: 1.7;
  font-weight: 500;
  width: 100%;
  max-width: 490px;
  border: 3px solid #0166C6;
  margin: 0 auto 15px;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .alibaba-info-main_read {
    font-size: 16px;
    width: calc(100% - 40px);
  }
}
.alibaba-info-main_read img {
  padding-right: 9px;
}

.alibaba-info-caution {
  font-size: 14px;
  color: #A8A8A8;
  font-size: 14px;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .alibaba-info-caution {
    line-height: 1.2;
    width: calc(100% - 40px);
    text-indent: -1em;
    padding-left: 1em;
  }
}

.alibaba-info-about {
  width: 100%;
  max-width: var(--max);
  margin: 75px auto 0;
  padding: 0 60px 30px;
  text-align: center;
  background: linear-gradient(93deg, #005DC0 29.29%, #03A4EC 88.33%);
  position: relative;
}
@media screen and (max-width: 767px) {
  .alibaba-info-about {
    width: calc(100% - 40px);
    padding: 0 20px 30px;
    margin-top: 50px;
  }
}
.alibaba-info-about::before, .alibaba-info-about::after {
  content: "";
  display: block;
  width: 748px;
  height: 350px;
  position: absolute;
  z-index: 0;
}
.alibaba-info-about::before {
  background: url(../images/header-bg-dot-top.png) no-repeat 0 0;
  top: 0;
  left: 0;
  background-size: 85%;
}
@media screen and (max-width: 767px) {
  .alibaba-info-about::before {
    background-size: 40%;
  }
}
.alibaba-info-about::after {
  background: url(../images/header-bg-dot-bottom.png) no-repeat 100% 100%;
  bottom: 0;
  right: 0;
  background-size: 60%;
}
@media screen and (max-width: 767px) {
  .alibaba-info-about::after {
    background-size: 40%;
    background-position: 100% 100%;
  }
}
.alibaba-info-about h3 {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 8px 10px 10px;
  letter-spacing: 0.88px;
  font-size: 22px;
  position: relative;
  top: -25px;
}
@media screen and (max-width: 767px) {
  .alibaba-info-about h3 {
    font-size: 16px;
  }
}
.alibaba-info-about h3:after {
  content: "";
  display: block;
  width: 32px;
  aspect-ratio: 1/0.5;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: #333;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.alibaba-info-about p {
  margin-top: 15px;
  color: #fff;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.64px;
}

.alibaba-info-about-inner {
  background: #fff;
  padding: 30px 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .alibaba-info-about-inner {
    padding: 20px 10px;
  }
  .alibaba-info-about-inner h4 {
    width: 100%;
    max-width: 174px;
    margin: 0 auto;
  }
  .alibaba-info-about-inner h4 img {
    width: 100%;
  }
}
.alibaba-info-about-inner ul {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .alibaba-info-about-inner ul {
    display: block;
    margin-top: 10px;
  }
  .alibaba-info-about-inner ul li {
    margin-top: 10px;
  }
  .alibaba-info-about-inner ul li:first-child {
    margin-top: 0;
  }
}
.alibaba-info-about-inner ul img {
  width: 100%;
}

.service {
  background: #EBF4FF;
  margin-top: -125px;
  padding: 225px 0 100px;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 165px 0 60px;
  }
}

.service-caption {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-align: center;
  margin-bottom: 9px;
}
@media screen and (max-width: 767px) {
  .service-caption {
    font-size: 16px;
  }
}

.setvice-read {
  letter-spacing: 0.64px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

.service-caution {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.56px;
  margin: 20px auto 0;
  width: 100%;
  max-width: 950px;
}
@media screen and (max-width: 767px) {
  .service-caution {
    width: calc(100% - 40px);
  }
  .service-caution li {
    text-indent: -1em;
    padding-left: 1em;
  }
}

.options {
  background: #EBF4FF;
  margin-top: 0;
}
.options .section-title {
  margin-left: -10px;
  margin-right: -10px;
  letter-spacing: 0.6px;
}

.options-inner {
  padding-top: 100px;
  background: #fff;
  max-width: calc((100vw - 1100px) / 2 + 1100px);
  margin: 0 0 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .options-inner {
    padding: 60px 20px 40px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

.options-content {
  padding: 0 0 100px;
  margin: 0 auto 0 0;
  max-width: var(--max);
}
@media screen and (max-width: 767px) {
  .options-content {
    padding-bottom: 0;
  }
}
.options-content h2 {
  font-size: 26px;
}
@media screen and (max-width: 767px) {
  .options-content h2 {
    font-size: 20px;
  }
}
.options-content h2::after {
  display: none;
}

.options-caption {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .options-caption {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.options-content-inner {
  max-width: 900px;
  margin: 0 auto;
}

.options-cat {
  font-size: 18px;
  color: #0166C6;
  letter-spacing: 0.72px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .options-cat {
    gap: 5px;
    font-size: 13px;
    width: calc(100% + 20px);
    margin-left: -10px;
  }
}
.options-cat li {
  border: 2px solid #0166C6;
  width: calc((100% - 40px) / 3);
  padding: 10px 0 12px;
}
@media screen and (max-width: 767px) {
  .options-cat li {
    width: calc((100% - 20px) / 3);
    padding: 5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.options-caution {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.56px;
  margin: 15px auto 0;
  width: 100%;
  max-width: 775px;
  color: #A8A8A8;
}
@media screen and (max-width: 767px) {
  .options-caution {
    text-indent: -1em;
    padding-left: 1em;
  }
}

.option-list {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .option-list {
    margin-top: 40px;
  }
}

.option-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.88px;
  color: #fff;
  display: inline-block;
  background: #0A4176;
  padding: 4px 30px 6px 16px;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  .option-title {
    font-size: 16px;
    margin-left: -20px;
  }
}

.option-read {
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 20px 0 30px;
}
@media screen and (max-width: 767px) {
  .option-read {
    margin-bottom: 20px;
    text-align: center;
  }
}
.option-read::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background: #333;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .option-read::before {
    display: none;
  }
}

.option-info {
  font-size: 14px;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .option-info {
    margin-top: 20px;
  }
}
.option-info li {
  list-style: square;
  margin-left: 2em;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .option-info li {
    margin-top: 7px;
  }
}
.option-info li:first-child {
  margin-top: 0;
}

.flow {
  background: linear-gradient(93deg, #005DC0 29.29%, #03A4EC 88.33%);
  padding: 200px 0 100px;
  margin-top: -100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow {
    margin-top: -40px;
    padding: 90px 20px 60px;
  }
}
.flow:before, .flow:after {
  content: "";
  display: block;
  width: 748px;
  height: 371px;
  position: absolute;
  z-index: 0;
}
.flow::before {
  background: url(../images/header-bg-dot-top.png) no-repeat 0 0;
  top: 0;
  left: 0;
}
.flow::after {
  background: url(../images/header-bg-dot-bottom.png) no-repeat 0 0;
  bottom: 0;
  right: 0;
}

.flow-img img {
  width: 100%;
}

.flow-content {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.flow-caution {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.56px;
  width: 100%;
  max-width: 875px;
  margin: 35px auto 0;
}
.flow-caution li {
  list-style: square;
  margin-left: 2em;
}
@media screen and (max-width: 767px) {
  .flow-caution li {
    margin-left: 1em;
  }
}
.flow-caution li.no-style,
.flow-caution li li {
  list-style: none;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .flow-caution li.no-style,
  .flow-caution li li {
    text-indent: -1.3em;
    margin-left: 1.3em;
  }
}

.faq {
  background: #EBF4FF;
  margin-top: 0;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
}

.faq-content {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.faq-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .faq-box {
    width: calc(100% - 40px);
    margin: 0 auto 20px;
  }
}
.faq-box.faq-end {
  margin-bottom: 0;
}
.faq-box dt {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.8px;
  position: relative;
  padding-right: 2em;
}
@media screen and (max-width: 767px) {
  .faq-box dt {
    font-size: 16px;
    text-indent: -2em;
    padding-left: 2em;
  }
}
.faq-box dt .icon-opener {
  position: absolute;
  right: 0.5em;
  top: 50%;
}
.faq-box dd {
  letter-spacing: 0.64px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #d7d7d7;
  display: none;
}
@media screen and (max-width: 767px) {
  .faq-box dd {
    font-size: 14px;
  }
}
.faq-box span {
  color: #0166C6;
  padding-right: 9px;
}

.reason-support-banner {
  margin: 100px auto 0;
  width: 100%;
  max-width: var(--max);
}
.reason-support-banner img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason-support-banner {
    margin-top: 60px;
    width: calc(100% - 40px);
  }
}

.contact {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-bottom: 60px;
  }
}

.contact-read {
  text-align: center;
  margin-bottom: 39px;
}/*# sourceMappingURL=style.css.map */