@charset "UTF-8";
/* aタグ設定
------------------------------------- */
a:hover, .alpha {
  opacity: 0.75;
}

a {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem; /* =14px */
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

ul {
  list-style: none;
}

/* レスポンシブ設定
------------------------------------- */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
#wrapper {
  overflow: hidden;
}

header {
  width: 100%;
  position: fixed;
  top: 50px;
  z-index: 100;
}
@media screen and (max-width: 1440px) {
  header {
    top: 10px;
    padding: 0 0 0 10px;
  }
}
header.on .inner .logo .nomal {
  display: none;
}
header.on .inner .logo .white {
  display: block;
}
header .inner {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .inner .logo {
  max-width: 178px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  header .inner .logo {
    max-width: 143px;
    position: relative;
    z-index: 100;
  }
}
header .inner .logo .white {
  display: none;
}
header .inner .logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1440px) {
  header .inner .document-link {
    position: relative;
    background-color: rgb(255, 236, 63);
    border-radius: 50px;
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    flex: 0 0 auto;
    width: 90px;
    height: 30px;
    padding-left: 10px;
    color: rgb(25, 54, 147);
    font-size: 1.2rem;
    margin-left: auto;
    margin-right: 10px;
    box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
    z-index: 100;
    font-weight: 700;
  }
  header .inner .document-link span {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: rgb(255, 201, 63);
  }
  header .inner .document-link span img {
    display: block;
    width: 6px;
    height: auto;
  }
}
header .inner .menu {
  display: none;
}
@media screen and (max-width: 1440px) {
  header .inner .menu {
    position: relative;
    width: 50px;
    height: 30px;
    border-radius: 50px 0 0 50px;
    background-color: #193693;
    gap: 6px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
    position: relative;
    z-index: 100;
  }
  header .inner .menu::before {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    top: 10px;
    transform: rotate(0);
    transition: 0.3s;
    background-color: #fff;
  }
  header .inner .menu::after {
    position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    bottom: 10px;
    transform: rotate(0);
    transition: 0.3s;
    background-color: #fff;
  }
  header .inner .menu.on::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    top: 14px;
    transform: rotate(45deg);
    background-color: #fff;
  }
  header .inner .menu.on::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    bottom: 14px;
    transform: rotate(-45deg);
    background-color: #fff;
  }
}
@media screen and (max-width: 1440px) {
  header .inner nav {
    width: 100%;
    height: 100vh;
    position: fixed;
    padding: 80px 20px 20px;
    top: 0;
    left: 100%;
    transition: 0.5s;
    display: block;
    background: url(../images/menu_bg_sp.png), #193693;
    background-position: top right, top center;
    background-repeat: no-repeat, no-repeat;
    z-index: 90;
  }
}
@media screen and (max-width: 1440px) {
  header .inner nav.on {
    left: 0;
  }
}
header .inner nav ul {
  display: flex;
  align-items: center;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
  border-radius: 50px;
}
@media screen and (max-width: 1440px) {
  header .inner nav ul {
    flex-direction: column;
    align-items: flex-start;
    box-shadow: initial;
  }
}
@media screen and (max-width: 1440px) {
  header .inner nav ul li {
    width: 100%;
  }
}
header .inner nav ul li:first-child a {
  border-radius: 50px 0 0 50px;
  padding-left: 30px;
}
@media screen and (max-width: 1440px) {
  header .inner nav ul li:first-child a {
    padding: 20px;
  }
}
header .inner nav ul li:last-child a {
  position: relative;
  background-color: rgb(255, 236, 63);
  border-radius: 0 50px 50px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: 155px;
  height: 58px;
  padding-left: 35px;
  color: rgb(25, 54, 147);
  font-weight: 700;
}
@media screen and (max-width: 1440px) {
  header .inner nav ul li:last-child a {
    display: none;
  }
}
header .inner nav ul li:last-child a span {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-color: rgb(255, 201, 63);
}
header .inner nav ul li:last-child a span img {
  display: block;
  width: 12px;
  height: auto;
}
header .inner nav ul li a {
  display: block;
  background-color: #fff;
  line-height: 1.4;
  padding: 19px 15px;
  color: rgb(24, 23, 23);
  font-weight: 500;
}
@media screen and (max-width: 1440px) {
  header .inner nav ul li a {
    display: inline-block;
    width: 100%;
    padding: 20px;
    background-color: initial;
    color: #fff;
  }
}

.bottom-link {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #E4EDF8;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
@media screen and (max-width: 1440px) {
  .bottom-link {
    padding: 10px;
  }
}
.bottom-link .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 74px;
  font-size: 2.2rem;
  background-color: rgb(255, 236, 63);
  border-radius: 50px;
  color: rgb(25, 54, 147);
}
@media screen and (max-width: 1440px) {
  .bottom-link .btn {
    width: 300px;
    height: 50px;
    font-size: 1.8rem;
    padding-right: 50px;
  }
}
.bottom-link .btn img {
  position: absolute;
  width: 92px;
  height: auto;
  top: -10px;
  left: -10px;
}
@media screen and (max-width: 1440px) {
  .bottom-link .btn img {
    display: none;
  }
}
.bottom-link .btn span {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  border-radius: 100px;
  background-color: rgb(255, 201, 63);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1440px) {
  .bottom-link .btn span {
    width: 45px;
    height: 45px;
  }
}
.bottom-link .btn span img {
  display: block;
  position: relative;
  width: 15px;
  height: auto;
  top: initial;
  left: initial;
}
@media screen and (max-width: 1440px) {
  .bottom-link .btn span img {
    width: 12px;
  }
}

.fv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    background-color: #fff;
  }
}
.fv img {
  width: 100%;
  height: auto;
}
.fv .bg-left {
  position: absolute;
  width: 53.8541666667vw;
  height: auto;
  top: -8.5416666667vw;
  left: -4.3229166667vw;
}
@media screen and (max-width: 768px) {
  .fv .bg-left {
    width: 131.7333333333vw;
    top: -22.9333333333vw;
    left: -10.9333333333vw;
  }
}
.fv .bg-right {
  position: absolute;
  width: 63.9583333333vw;
  height: auto;
  top: 9.0104166667vw;
  right: -19.0104166667vw;
}
.fv .inner {
  position: relative;
  padding-top: 8.5416666667vw;
  padding-bottom: 2.34375vw;
  height: calc(785 / 1920 * 100vw);
}
@media screen and (max-width: 768px) {
  .fv .inner {
    padding-top: calc(320 / 375 * 100vw);
    padding-bottom: 8vw;
    height: initial;
  }
}
.fv .inner .content {
  position: relative;
  z-index: 30;
  width: calc(1100 / 1920 * 100vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .fv .inner .content {
    width: calc(348 / 375 * 100vw);
    flex-direction: column-reverse;
    margin: calc(-75 / 375 * 100vw) auto 0;
  }
}
.fv .inner .content .txt-box .txt01 {
  width: 24.7395833333vw;
  height: auto;
  margin: 0 auto 0.7291666667vw;
}
@media screen and (max-width: 768px) {
  .fv .inner .content .txt-box .txt01 {
    width: 91.2vw;
    margin: 0 auto 2.6666666667vw;
  }
}
.fv .inner .content .txt-box .txt02 {
  width: 24.6875vw;
  height: auto;
  margin: 0 auto 0.15625vw;
}
@media screen and (max-width: 768px) {
  .fv .inner .content .txt-box .txt02 {
    width: 85.6vw;
    margin: 0 auto 0.5333333333vw;
  }
}
.fv .inner .content .txt-box .txt03 {
  width: 14.9479166667vw;
  height: auto;
  margin: 0 auto 1.5625vw;
}
@media screen and (max-width: 768px) {
  .fv .inner .content .txt-box .txt03 {
    width: 54.6666666667vw;
    margin: 0 auto 2.6666666667vw;
  }
}
.fv .inner .content .txt-box .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fv .inner .content .txt-box .btn .btn-txt {
  position: relative;
  z-index: 10;
  width: 21.5104166667vw;
  height: auto;
  margin: 0 auto -1.71875vw;
}
@media screen and (max-width: 768px) {
  .fv .inner .content .txt-box .btn .btn-txt {
    width: 79.2vw;
    margin: 0 auto -5.3333333333vw;
  }
}
.fv .inner .content .txt-box .btn .btn-img {
  position: relative;
  z-index: 1;
  width: 29.21875vw;
  padding-left: 1.5625vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv .inner .content .txt-box .btn .btn-img {
    width: 90.4vw;
    margin: 0 auto;
  }
}
.fv .inner .fv-img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: calc(300 / 1920 * 100vw);
  width: calc(795 / 1920 * 100vw);
  height: auto;
  margin-top: 0;
  margin-left: -16.6666666667vw;
}
@media screen and (max-width: 768px) {
  .fv .inner .fv-img {
    width: calc(352 / 375 * 100vw);
    right: 0;
  }
}
.fv .inner .tag {
  position: absolute;
  z-index: 20;
  width: 5.2083333333vw;
  height: auto;
  bottom: calc(10 / 1920 * 100vw);
  right: calc(427 / 1920 * 100vw);
}

section {
  background-color: #F7FBFF;
}

.trading-companies {
  position: relative;
  padding-top: 30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .trading-companies {
    padding: 10px 0;
  }
}
.trading-companies .inner {
  display: flex;
  width: 200%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .trading-companies .inner {
    width: 600%;
  }
}
.trading-companies .inner .slider {
  flex: 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.trading-companies .inner .slider:first-child {
  animation: loop 100s -50s linear infinite;
}
.trading-companies .inner .slider:last-child {
  animation: loop2 100s linear infinite;
}
.trading-companies .inner .slider li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.trading-companies p {
  margin-top: 20px;
  text-align: center;
  color: #BABABA;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.sec01 {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background-image: url(../images/sec01-bg03.webp);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sec01 {
    padding: 50px 0 70px;
    overflow: initial;
    background-image: initial;
  }
}
.sec01 .bg-left {
  position: absolute;
  width: 1034px;
  height: auto;
  top: 60px;
  left: -493px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec01 .bg-left {
    width: 131.7333333333vw;
    top: -8vw;
    left: -91.7333333333vw;
  }
}
.sec01 .bg-right {
  position: absolute;
  width: 1034px;
  height: auto;
  top: -180px;
  right: -613px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec01 .bg-right {
    width: 131.7333333333vw;
    top: initial;
    bottom: -65.3333333333vw;
    left: -73.0666666667vw;
  }
}
.sec01 .inner {
  position: relative;
  z-index: 10;
}
.sec01 .inner .ttl-box {
  text-align: center;
  color: rgb(25, 54, 147);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ttl-box {
    margin-bottom: 25px;
  }
}
.sec01 .inner .ttl-box .sub-ttl {
  font-size: 2.1rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec01 .inner .ttl-box .sub-ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ttl-box .sub-ttl {
    font-size: 1.4rem;
  }
}
.sec01 .inner .ttl-box .sub-ttl span {
  font-size: 1rem;
  vertical-align: top;
}
.sec01 .inner .ttl-box .ttl {
  font-size: 3.9rem;
  line-height: 1.4;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec01 .inner .ttl-box .ttl {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ttl-box .ttl {
    font-size: 2.4rem;
  }
}
.sec01 .inner .list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list {
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
  }
}
.sec01 .inner .list li {
  max-width: 346px;
  width: 100%;
  height: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 40px;
  padding: 14px 10px 25px;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list li {
    flex-direction: row;
    justify-content: flex-start;
    padding: 10px 20px;
    height: auto;
    border-radius: 20px;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list li .img {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list li:nth-child(1) img {
    width: 80px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list li:nth-child(2) img {
    width: 86px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list li:nth-child(3) img {
    width: 98px;
    height: auto;
  }
}
.sec01 .inner .list li p {
  text-align: center;
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.4;
  color: rgb(25, 54, 147);
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec01 .inner .list li p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list li p {
    text-align: start;
    font-size: 1.8rem;
  }
}
.sec01 .inner .list li p span {
  color: #B67008;
  font-size: 2.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec01 .inner .list li p span {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list li p span {
    font-size: 2.2rem;
  }
}
.sec01 .inner .list-asterisk {
  max-width: 1100px;
  margin: 0 auto;
  text-align: end;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.4;
  color: rgb(25, 54, 147);
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .list-asterisk {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}
.sec01 .inner .ttl-01 {
  max-width: 939px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ttl-01 {
    width: 89.0666666667vw;
    height: auto;
  }
}
.sec01 .inner .ttl-01 img {
  width: 100%;
  height: auto;
}
.sec01 .inner .ai-service {
  max-width: 1184px;
  width: 100%;
  height: auto;
  margin: -70px auto 60px;
  padding-left: 12px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec01 .inner .ai-service {
    margin-top: -10px;
  }
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ai-service {
    width: 98.6666666667vw;
    margin: -1.3333333333vw auto 16vw;
    padding: 0;
  }
}
.sec01 .inner .ai-service img {
  width: 100%;
  height: auto;
}
.sec01 .inner .ttl-02 {
  max-width: 1070px;
  width: 100%;
  height: auto;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ttl-02 {
    width: 89.6vw;
    margin: 0 auto 5.3333333333vw;
  }
}
.sec01 .inner .utilization {
  max-width: 1028px;
  height: auto;
  margin: 0 auto;
  padding-left: 35px;
  margin-bottom: 43px;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .utilization {
    width: 100%;
    padding: 0;
    margin-bottom: 18.6666666667vw;
  }
}
.sec01 .inner .ttl-03 {
  text-align: center;
  color: rgb(25, 54, 147);
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ttl-03 {
    font-size: 1.6rem;
  }
}
.sec01 .inner .ttl-03-img {
  max-width: 899px;
  width: 100%;
  height: auto;
  margin: -42px auto 50px;
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ttl-03-img {
    width: 98.1333333333vw;
    margin: -13.3333333333vw auto 0;
    padding: 0;
  }
}
.sec01 .inner .ttl-04 {
  margin: 0 auto 50px;
  max-width: 833px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec01 .inner .ttl-04 {
    width: 91.4666666667vw;
    margin: 6.6666666667vw auto;
  }
}
.sec01 .inner .ttl-04-img {
  max-width: 1160px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.sec02 {
  background-color: #fff;
  background-image: url(../images/sec02-bg.webp);
  background-position: top;
  background-size: cover;
}
.sec02 .inner {
  position: relative;
  width: 100%;
  height: 33.8541666667vw;
  padding-bottom: 2.0833333333vw;
  display: flex;
  flex-direction: column;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .sec02 .inner {
    width: 100%;
    height: auto;
  }
}
.sec02 .inner .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 78.3854166667vw;
  height: auto;
}
.sec02 .inner .bg img {
  width: 100%;
  height: auto;
}
.sec02 .inner .img {
  width: 55.8333333333vw;
  height: auto;
  margin-top: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sec02 .inner .img {
    width: 95.2vw;
    margin-top: 0;
  }
}
.sec02 .inner .img img {
  width: 100%;
  height: auto;
}
.sec02 .inner .txt {
  position: absolute;
  top: 50%;
  left: 21.5625vw;
  transform: translateY(-50%);
  width: 32.8125vw;
  height: auto;
  min-width: 300px;
}
@media screen and (max-width: 768px) {
  .sec02 .inner .txt {
    position: relative;
    transform: initial;
    width: 95.2vw;
    min-width: initial;
    left: initial;
    margin: -5.3333333333vw auto 0;
  }
}
.sec02 .inner .txt img {
  width: 100%;
  height: auto;
}

.sec02 .movie-content{
  margin: 50px auto 0;
  padding: 0 20px 170px;
}
.sec02 .movie-content .movie-frame{
  max-width: 922px;
  width: 100%;
  height: auto;
  aspect-ratio: 922/562;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  background-color: #D9D9D9;
  margin: 0 auto;
  font-size: 40px;
  box-shadow: 8px 8px 30px 0px rgba(189,198,228,0.74);
}

@media screen and (max-width: 768px) {
  .sec02 .movie-content{
    margin-top: 0;
    padding-bottom: 20px;
  }
  .sec02 .movie-content .movie-frame{
    width: 100%;
    aspect-ratio: 312/164;
    font-size: 17px;
    border-radius: 11px;
  }
}

.sec03 {
  background-color: #FAFAFA;
  padding: 80px 20px 100px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec03 {
    padding: 40px 0 50px;
  }
}
.sec03 .img-bg-bottom {
  position: absolute;
  max-width: 1034px;
  width: 100%;
  height: auto;
  left: -200px;
  bottom: -310px;
  z-index: 1;
}
.sec03 .img-bg-bottom img {
  width: 100%;
  height: auto;
}
.sec03 .inner .ttl {
  max-width: 925px;
  width: 100%;
  height: auto;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .sec03 .inner .ttl {
    width: 97.0666666667vw;
    margin-bottom: 6.6666666667vw;
  }
}
.sec03 .inner .ttl img {
  display: block;
}
.sec03 .inner .plan {
  position: relative;
  z-index: 80;
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto 180px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec03 .inner .plan {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .sec03 .inner .plan {
    width: 89.8666666667vw;
    margin-bottom: 24vw;
  }
}
.sec03 .inner .plan img {
  display: block;
}
.sec03 .inner .ttl02 {
  text-align: center;
  font-size: 3.3rem;
  line-height: 1.4;
  font-weight: 700;
  color: rgb(25, 54, 147);
}
@media screen and (max-width: 768px) {
  .sec03 .inner .ttl02 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}
.sec03 .inner .ttl02-img {
  position: relative;
  max-width: 1160px;
  width: 100%;
  height: auto;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .sec03 .inner .ttl02-img {
    width: 98.4vw;
    margin-bottom: 8vw;
  }
}
.sec03 .inner .ttl02-img img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 90;
}
.sec03 .inner .ttl02-img .img-bg {
  position: absolute;
  top: -530px;
  right: -750px;
  max-width: 1034px;
  width: 100%;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec03 .inner .ttl02-img .img-bg {
    width: 131.7333333333vw;
    top: -106.6666666667vw;
    left: 32.2666666667vw;
    right: initial;
  }
}
.sec03 .inner .ttl02-img .img-bg img {
  width: 100%;
  height: auto;
}
.sec03 .inner .step-box {
  position: relative;
  z-index: 90;
  max-width: 1100px;
  width: 100%;
  height: auto;
  background-color: #DCEAFA;
  border-radius: 30px;
  margin: 0 auto;
  padding: 35px 20px 40px;
}
@media screen and (max-width: 768px) {
  .sec03 .inner .step-box {
    max-width: initial;
    width: 89.3333333333vw;
    padding: 10.6666666667vw 2.6666666667vw 8vw 5.3333333333vw;
  }
}

.sec03 .inner .step-box .img{
  position: absolute;
  right: -391px;
  bottom: -100px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .sec03 .inner .step-box .img{
    width: 600px;
    right: -300px;
  }
}
@media screen and (max-width: 768px) {
  .sec03 .inner .step-box .img{
    position: absolute;
    width: 238px;
    height: auto;
    right: calc(-20 / 375 * 100vw);
    bottom: -50px;
  }
}




.sec03 .inner .step-box .ttl03 {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 342px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec03 .inner .step-box .ttl03 {
    max-width: initial;
    width: 64.8vw;
    top: -2.6666666667vw;
  }
}
.sec03 .inner .step-box .sub-ttl {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .sec03 .inner .step-box .sub-ttl {
    text-align: start;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}
.sec03 .inner .step-box .step-img {
  max-width: 957px;
  width: 100%;
  height: auto;
  margin: 0 auto 10px;
}
@media screen and (max-width: 768px) {
  .sec03 .inner .step-box .step-img {
    margin-bottom: 20px;
  }
}
.sec03 .inner .step-box .txt {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.7;
  color: rgb(25, 54, 147);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sec03 .inner .step-box .txt {
    font-size: 2.2rem;
    font-weight: 700;
  }
}

.sec04 {
  background-color: #FAFAFA;
}
.sec04 .inner {
  position: relative;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec04 .inner {
    padding-bottom: 31.2vw;
  }
}
.sec04 .inner .bg {
  width: 72.3958333333vw;
  height: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sec04 .inner .bg {
    width: 100%;
  }
}
.sec04 .inner .bg img {
  width: 100%;
  height: auto;
}
.sec04 .inner .bg02 {
  position: absolute;
  top: 3.4895833333vw;
  left: 0;
  width: 91.7708333333vw;
  height: auto;
}
.sec04 .inner .bg02 img {
  width: 100%;
  height: auto;
}
.sec04 .inner .box {
  position: absolute;
  top: 50%;
  left: 13.1770833333vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sec04 .inner .box {
    width: 92vw;
    top: 9.8666666667vw;
    right: 0;
    left: initial;
    transform: initial;
    background-color: #fff;
    padding-bottom: 5.3333333333vw;
  }
}
.sec04 .inner .box .box-inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec04 .inner .box .box-inner {
    width: 100%;
  }
}
.sec04 .inner .box .box-inner .bg02-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec04 .inner .box .box-inner .bg02-sp {
    display: block;
    width: 100%;
    height: auto;
  }
  .sec04 .inner .box .box-inner .bg02-sp img {
    width: 100%;
    height: auto;
  }
}
.sec04 .inner .box .box-inner .ttl {
  width: 25.5208333333vw;
  height: auto;
  margin-bottom: 1.5625vw;
}
@media screen and (max-width: 768px) {
  .sec04 .inner .box .box-inner .ttl {
    width: 79.7333333333vw;
    margin: 0 auto 1.3333333333vw;
  }
}
.sec04 .inner .box .box-inner .ttl img {
  width: 100%;
  height: auto;
}
.sec04 .inner .box .box-inner p {
  font-size: 0.9375vw;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 0.5208333333vw;
}
@media screen and (max-width: 768px) {
  .sec04 .inner .box .box-inner p {
    width: 79.7333333333vw;
    font-size: 3.7333333333vw;
    margin: 0 auto;
  }
}
.sec04 .inner .box .box-inner .btn {
  display: block;
  width: 28.8541666667vw;
  height: auto;
  margin-left: -1.0416666667vw;
}
@media screen and (max-width: 768px) {
  .sec04 .inner .box .box-inner .btn {
    width: 90.4vw;
  }
}
.sec04 .inner .box .box-inner .btn img {
  display: block;
  width: 100%;
  height: auto;
}
.sec04 .inner .box .box-inner .tag01 {
  position: absolute;
  width: 8.2291666667vw;
  height: auto;
  top: -3.90625vw;
  right: -8.8541666667vw;
}
@media screen and (max-width: 768px) {
  .sec04 .inner .box .box-inner .tag01 {
    width: 25.0666666667vw;
    top: -5.0666666667vw;
    left: 12.5333333333vw;
    right: initial;
  }
}
.sec04 .inner .box .box-inner .tag01 img {
  width: 100%;
  height: auto;
}
.sec04 .inner .box .box-inner .tag02 {
  position: absolute;
  width: 8.2291666667vw;
  height: auto;
  top: 1.8229166667vw;
  right: -13.9583333333vw;
}
@media screen and (max-width: 768px) {
  .sec04 .inner .box .box-inner .tag02 {
    width: 25.0666666667vw;
    top: 11.4666666667vw;
    left: -3.7333333333vw;
    right: initial;
  }
}
.sec04 .inner .box .box-inner .tag02 img {
  width: 100%;
  height: auto;
}

.sec05 {
  padding: 80px 20px;
  background-color: #FAFAFA;
}
@media screen and (max-width: 768px) {
  .sec05 {
    padding: 40px 5.3333333333vw;
  }
}
.sec05 .inner {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
}
.sec05 .inner .ttl {
  text-align: center;
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: 700;
  color: rgb(25, 54, 147);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .ttl {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.sec05 .inner .box01 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 125px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box01 {
    flex-direction: column;
    margin: 0;
  }
}
.sec05 .inner .box01 .txt-box {
  max-width: 540px;
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box01 .txt-box {
    margin-bottom: 50px;
  }
}
.sec05 .inner .box01 .txt-box .sub-ttl {
  font-size: 2.6rem;
  line-height: 1.6;
  color: rgb(25, 54, 147);
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec05 .inner .box01 .txt-box .sub-ttl {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box01 .txt-box .sub-ttl {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
}
.sec05 .inner .box01 .txt-box .sub-ttl img {
  width: 100%;
  max-width: 397px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box01 .txt-box .sub-ttl img {
    max-width: initial;
    width: 68.8vw;
  }
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box01 .txt-box .img {
    width: 100%;
    margin: 0 auto;
  }
  .sec05 .inner .box01 .txt-box .img img {
    width: 100%;
    height: auto;
  }
}
.sec05 .inner .box01 .txt-box .txt {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box01 .txt-box .txt {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
}
.sec05 .inner .box01 .txt-box .txt02 {
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box01 .txt-box .txt02 {
    font-size: 1.2rem;
  }
}
.sec05 .inner .box01 .img {
  max-width: 661px;
  width: 100%;
  height: auto;
  margin-right: -40px;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box01 .img {
    margin: 0;
  }
}
.sec05 .inner .box01 .img img {
  width: 100%;
  height: auto;
}
.sec05 .inner .box02 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box02 {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box02 .img {
    width: 82.6666666667vw;
    height: auto;
    margin: 0 auto 20px;
  }
  .sec05 .inner .box02 .img img {
    width: 100%;
    height: auto;
  }
}
.sec05 .inner .box02 .txt-box {
  max-width: 540px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box02 .txt-box {
    max-width: initial;
  }
}
.sec05 .inner .box02 .txt-box .sub-ttl {
  max-width: 515px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box02 .txt-box .sub-ttl {
    max-width: initial;
    width: 89.6vw;
    margin-bottom: 20px;
  }
}
.sec05 .inner .box02 .txt-box .sub-ttl img {
  width: 100%;
  height: auto;
}
.sec05 .inner .box02 .txt-box .txt {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec05 .inner .box02 .txt-box .txt {
    font-size: 1.4rem;
  }
}

.sec06 {
  position: relative;
  padding: 100px 20px;
  background-image: url(../images/sec06-bg.webp);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .sec06 {
    padding: 40px 20px;
    background-image: url(../images/sp-sec06-bg.webp);
  }
}
.sec06 .img-bg {
  position: absolute;
  max-width: 1034px;
  width: 100%;
  height: auto;
  transform: rotate(-6.42deg);
  top: -430px;
  right: -470px;
}
@media screen and (max-width: 768px) {
  .sec06 .img-bg {
    display: none;
  }
}
.sec06 .img-bg img {
  width: 100%;
  height: auto;
}
.sec06 .inner img {
  width: 100%;
  height: auto;
}
.sec06 .inner .ttl {
  max-width: 818px;
  width: 100%;
  height: auto;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .sec06 .inner .ttl {
    max-width: initial;
    width: 77.8666666667vw;
    margin-bottom: 20px;
  }
}
.sec06 .inner .txt {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  color: rgb(25, 54, 147);
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .sec06 .inner .txt {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
}
.sec06 .inner .txt span {
  font-weight: 700;
  color: #B67008;
}
.sec06 .inner .img {
  max-width: 906px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .sec06 .inner .img {
    max-width: initial;
    width: 94.1333333333vw;
    margin-bottom: 20px;
  }
}

.sec07 {
  padding: 0 20px 120px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec07 {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec07 {
    padding: 0 20px 30px;
  }
}
.sec07 .inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.sec07 .inner .ttl {
  text-align: center;
  font-size: 3.9rem;
  font-weight: 700;
  line-height: 1.4;
  color: rgb(25, 54, 147);
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .sec07 .inner .ttl {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}
.sec07 .inner ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .sec07 .inner ul {
    flex-direction: column;
  }
}
.sec07 .inner ul li {
  position: relative;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
  display: flex;
  align-items: center;
  gap: 20px;
  width: calc(50% - 15px);
  min-height: 200px;
  padding: 0 10px 0 30px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sec07 .inner ul li {
    width: 100%;
    flex-direction: column;
    padding: 5.3333333333vw 4vw;
    gap: 2.6666666667vw;
  }
}
.sec07 .inner ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  border-right: 16px solid transparent;
  border-bottom: 16px solid #193693;
  transform: rotate(90deg);
  height: 0;
  width: 0;
}
@media screen and (max-width: 768px) {
  .sec07 .inner ul li::before {
    border-right: 4.2666666667vw solid transparent;
    border-bottom: 4.2666666667vw solid #193693;
  }
}
.sec07 .inner ul li .img {
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .sec07 .inner ul li .img {
    width: 110px;
    height: auto;
  }
  .sec07 .inner ul li .img img {
    width: 100%;
    height: auto;
  }
}
.sec07 .inner ul li .txt h3 {
  margin-bottom: 9px;
}
@media screen and (max-width: 768px) {
  .sec07 .inner ul li .txt h3 {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 16px;
  }
}
.sec07 .inner ul li .txt p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec07 .inner ul li .txt p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sec07 .inner ul li .txt p {
    font-size: 1.5rem;
  }
}

.sec08 {
  padding: 120px 20px 150px;
  background-color: #F1F8FB;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec08 {
    padding-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .sec08 {
    padding: 60px 0px;
  }
}
.sec08 .inner .ttl {
  text-align: center;
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: 700;
  color: rgb(25, 54, 147);
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .ttl {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}
.sec08 .inner .ttl span {
  margin-bottom: 10px;
  font-size: 2.1rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .ttl span {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.sec08 .inner .img {
  position: relative;
  max-width: 1141px;
  width: 100%;
  height: auto;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .img {
    width: 97.8666666667vw;
    margin: 0 auto 25px;
  }
}
.sec08 .inner .img p {
  position: absolute;
  font-size: 10rem;
  line-height: 1.4;
  text-align: end;
  letter-spacing: 0.04em;
  color: #fff;
  font-weight: 700;
  right: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .sec08 .inner .img p {
    font-size: 8.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .sec08 .inner .img p {
    font-size: 13.3333333333vw;
    right: 13.3333333333vw;
  }
}
.sec08 .inner .img p span {
  font-size: 5.4rem;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .sec08 .inner .img p span {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 768px) {
  .sec08 .inner .img p span {
    font-size: 7.2vw;
  }
}
.sec08 .inner .img p.count01 {
  top: 10%;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .img p.count01 {
    top: 15%;
  }
}
.sec08 .inner .img p.count02 {
  top: 33%;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .img p.count02 {
    top: 40%;
  }
}
.sec08 .inner .img p.count03 {
  top: 55%;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .img p.count03 {
    top: 65%;
  }
}
.sec08 .inner .img p.count04 {
  top: 79%;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .img p.count04 {
    top: 90%;
  }
}
.sec08 .inner .txt01 {
  max-width: 889px;
  width: 100%;
  height: auto;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .txt01 {
    width: 89.8666666667vw;
    margin: 0 auto 25px;
  }
}
.sec08 .inner .certification {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 50px 10px;
  display: flex;
  align-items: center;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
}
@media screen and (max-width: 768px) {
  .sec08 .inner .certification {
    width: 89.8666666667vw;
    flex-direction: column;
    padding: 15px;
  }
}
.sec08 .inner .certification .certification-img {
  display: block;
  max-width: 380px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .certification .certification-img {
    max-width: initial;
    width: 60vw;
  }
}
.sec08 .inner .certification .certification-img img {
  width: 100%;
  height: auto;
}
.sec08 .inner .certification .txt-box h3 {
  max-width: 561px;
  width: 100%;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .certification .txt-box h3 {
    max-width: initial;
    width: 80.8vw;
    height: auto;
  }
  .sec08 .inner .certification .txt-box h3 img {
    width: 100%;
    height: auto;
  }
}
.sec08 .inner .certification .txt-box p {
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .sec08 .inner .certification .txt-box p {
    font-size: 1.3rem;
  }
}

.sec09 {
  position: relative;
  padding: 100px 20px 100px;
  background-image: url(../images/sec09-bg.webp);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec09 {
    padding: 50px 20px;
  }
}
.sec09 .img-bg-top {
  max-width: 1034px;
  width: 100%;
  height: auto;
  position: absolute;
  top: -144px;
  right: -529px;
}
@media screen and (max-width: 768px) {
  .sec09 .img-bg-top {
    width: 131.7333333333vw;
    top: -8vw;
    right: -56vw;
  }
}
.sec09 .img-bg-top img {
  width: 100%;
  height: auto;
}
.sec09 .img-bg-bottom {
  max-width: 1034px;
  width: 100%;
  height: auto;
  position: absolute;
  left: -364px;
  bottom: -323px;
}
@media screen and (max-width: 768px) {
  .sec09 .img-bg-bottom {
    width: 131.7333333333vw;
    bottom: -45.8666666667vw;
    left: -58.6666666667vw;
  }
}
.sec09 .img-bg-bottom img {
  width: 100%;
  height: auto;
}
.sec09 .inner {
  position: relative;
  z-index: 90;
}
.sec09 .inner .ttl {
  text-align: center;
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: 700;
  color: rgb(25, 54, 147);
  margin-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .sec09 .inner .ttl {
    font-size: 2.4rem;
    margin-bottom: 38px;
  }
}
.sec09 .inner .box {
  max-width: 1720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 52px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec09 .inner .box {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box02 {
    flex-direction: column-reverse;
  }
}
.sec09 .inner .box h3 {
  margin-bottom: 30px;
}
.sec09 .inner .box h3 img {
  width: 100%;
  height: auto;
}
.sec09 .inner .box:nth-child(2) {
  justify-content: flex-start;
  margin-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box:nth-child(2) {
    margin-bottom: 30px;
  }
}
.sec09 .inner .box:nth-child(2) h3 {
  max-width: 575px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box:nth-child(2) h3 {
    max-width: 329px;
  }
}
.sec09 .inner .box:nth-child(3) {
  justify-content: flex-end;
}
.sec09 .inner .box:nth-child(3) h3 {
  max-width: 551px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box:nth-child(3) h3 {
    max-width: 315px;
  }
}
.sec09 .inner .box .movie {
  width: 50%;
  aspect-ratio: 86/44;
  background-color: #ccc;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box .movie {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box h3 {
    margin-bottom: 10px;
  }
}
.sec09 .inner .box h3 img {
  width: 100%;
  height: auto;
}
.sec09 .inner .box .txt-box {
  max-width: 600px;
  width: 100%;
}
.sec09 .inner .box .txt-box .txt-contents {
  padding: 30px;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box .txt-box .txt-contents {
    padding: 15px;
    border-radius: 10px;
  }
}
.sec09 .inner .box .txt-box .txt-contents span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgb(25, 54, 147);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 4px 20px;
  border-radius: 10px;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box .txt-box .txt-contents span {
    font-size: 1rem;
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 5px;
  }
}
.sec09 .inner .box .txt-box .txt-contents p {
  font-size: 1.8rem;
  line-height: 1.6;
  padding-left: 1em;
  text-indent: -1em;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec09 .inner .box .txt-box .txt-contents p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .sec09 .inner .box .txt-box .txt-contents p {
    font-size: 1rem;
  }
}

.sec10 {
  padding: 120px 20px;
}
@media screen and (max-width: 768px) {
  .sec10 {
    padding: 40px 20px;
  }
}
.sec10 .inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
.sec10 .inner h2 {
  color: rgb(25, 54, 147);
  text-align: center;
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .sec10 .inner h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
}
.sec10 .inner ul {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 42px;
}
@media screen and (max-width: 768px) {
  .sec10 .inner ul {
    padding-left: 21px;
    gap: 20px;
  }
}
.sec10 .inner ul::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 40px;
  display: block;
  width: 2px;
  height: 80%;
  background: linear-gradient(rgb(0, 60, 255), rgb(81, 212, 180));
}
@media screen and (max-width: 768px) {
  .sec10 .inner ul::before {
    top: 50px;
    left: 19px;
  }
}
.sec10 .inner ul li {
  position: relative;
  z-index: 80;
  width: 100%;
  background-color: #fff;
  padding: 40px 35px 40px 75px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 12px 12px 20px rgba(189, 198, 228, 0.5);
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec10 .inner ul li {
    padding: 40px 30px 40px 50px;
  }
}
@media screen and (max-width: 768px) {
  .sec10 .inner ul li {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 20px 40px;
    gap: 10px;
  }
}
.sec10 .inner ul li:nth-child(2) .step {
  background-color: #247FDE;
}
.sec10 .inner ul li:nth-child(2) h3 {
  color: #247FDE;
}
.sec10 .inner ul li:nth-child(3) .step {
  background-color: #3BAAC9;
}
.sec10 .inner ul li:nth-child(3) h3 {
  color: #3BAAC9;
}
.sec10 .inner ul li:nth-child(4) .step {
  background-color: #51D4B5;
}
.sec10 .inner ul li:nth-child(4) h3 {
  color: #51D4B5;
}
.sec10 .inner ul li .step {
  position: absolute;
  z-index: 90;
  top: 50%;
  left: -42px;
  transform: translateY(-50%);
  font-family: "Hind", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 84px;
  height: 84px;
  background-color: #193693;
  border-radius: 50px;
  text-align: center;
  font-size: 2.1rem;
  font-weight: 600;
  color: #fff;
  padding-top: 15px;
  line-height: 0.5;
}
@media screen and (max-width: 768px) {
  .sec10 .inner ul li .step {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    left: -21px;
    padding-top: 10px;
  }
}
.sec10 .inner ul li .step span {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .sec10 .inner ul li .step span {
    font-size: 2.4rem;
  }
}
.sec10 .inner ul li h3 {
  color: rgb(25, 54, 147);
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec10 .inner ul li h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .sec10 .inner ul li h3 {
    font-size: 2.4rem;
  }
}
.sec10 .inner ul li p {
  max-width: 645px;
  width: 100%;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .sec10 .inner ul li p {
    max-width: 400px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .sec10 .inner ul li p {
    font-size: 1.4rem;
  }
}

.sec11 {
  position: relative;
  padding-bottom: 88px;
}
@media screen and (max-width: 768px) {
  .sec11 {
    padding: 40px 0 40px;
  }
}
.sec11 .img-bg {
  max-width: 1034px;
  width: 100%;
  height: auto;
  position: absolute;
  top: -20px;
  left: -300px;
}
@media screen and (max-width: 768px) {
  .sec11 .img-bg {
    display: none;
  }
}
.sec11 .img-bg img {
  width: 100%;
  height: auto;
}
.sec11 .inner .ttl {
  max-width: 155px;
  width: 100%;
  height: auto;
  margin: 0 auto 45px;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .ttl {
    max-width: 97px;
    margin-bottom: 25px;
  }
}
.sec11 .inner .ttl img {
  width: 100%;
  height: auto;
}
.sec11 .inner .swiper-container {
  position: relative;
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 278px;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide {
    padding-top: 208px;
  }
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .bg-img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgb(235, 241, 249);
  z-index: -1;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .bg-img {
    aspect-ratio: initial;
    height: 312px;
  }
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box {
  position: relative;
  width: calc(100% - 60px);
  height: auto;
  aspect-ratio: 465/378;
  background-color: #fff;
  padding: 30px;
  border-bottom: 2px solid rgb(25, 54, 147);
  margin: 0 auto;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
}
@media screen and (min-width: 650px) and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box {
    width: 56vw;
    aspect-ratio: initial;
  }
}
@media screen and (max-width: 649px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box {
    width: 78.6666666667vw;
    aspect-ratio: initial;
  }
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .post {
  font-size: 1.4rem;
  line-height: 1.4;
  color: rgb(25, 54, 147);
  font-weight: 700;
  margin-bottom: 10px;
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .name {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: rgb(25, 54, 147);
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .name {
    line-height: 1;
  }
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .name span {
  font-size: 1.8rem;
  line-height: 1.4;
  vertical-align: bottom;
  margin-left: 22px;
  color: linear-gradient(rgb(81, 212, 180), rgb(0, 60, 255));
  display: inline-block;
  background: linear-gradient(90deg, rgb(0, 60, 255), rgb(81, 212, 180));
  background: -webkit-linear-gradient(0deg, rgb(0, 60, 255), rgb(81, 212, 180));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .name span {
    margin-left: 0;
    margin-top: -1em;
  }
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .btn {
    display: block;
    position: absolute;
    top: 50px;
    right: 20px;
    background: initial;
    transform: rotate(180deg);
    transition: 0.3s;
  }
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .btn.open {
    transform: rotate(0deg);
  }
}
@media screen and (min-width: 769px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .txt-contents {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .txt-contents {
    display: none;
  }
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .txt-contents .qualification {
  color: #181717;
  font-size: 1.6rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .txt-contents .qualification {
    font-size: 1.4rem;
  }
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .txt-contents .qualification span {
  color: rgb(25, 54, 147);
}
.sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .txt-contents .txt {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #181717;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-wrapper .swiper-slide .txt-box .txt-contents .txt {
    font-size: 1.4rem;
  }
}
.sec11 .inner .swiper-container .swiper-button-prev,
.sec11 .inner .swiper-container .swiper-button-next {
  position: absolute;
  top: 316px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  width: 66px;
  border-radius: 100px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-button-prev,
  .sec11 .inner .swiper-container .swiper-button-next {
    top: 135px;
    height: 42px;
    width: 42px;
  }
}
.sec11 .inner .swiper-container .swiper-button-prev img,
.sec11 .inner .swiper-container .swiper-button-next img {
  width: 16px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec11 .inner .swiper-container .swiper-button-prev img,
  .sec11 .inner .swiper-container .swiper-button-next img {
    width: 10px;
    height: auto;
  }
}
.sec11 .inner .swiper-container .swiper-button-next {
  transform: rotate(180deg);
}
.sec11 .bottom-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
}
.sec11 .bottom-img img {
  width: 100%;
  height: auto;
}

.faq {
  padding: 0 20px 120px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 60px 20px;
  }
}
.faq .inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .faq .inner {
    padding-top: 0;
  }
}
.faq .inner h2 {
  text-align: center;
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 44px;
  color: rgb(25, 54, 147);
}
@media screen and (max-width: 768px) {
  .faq .inner h2 {
    font-size: 2.4rem;
    margin-bottom: 28px;
  }
}
.faq .inner .accordion_box {
  background-color: #F4F3F3;
  margin-bottom: 2px;
}
.faq .inner .accordion_box:last-child {
  margin-bottom: 0;
}
.faq .inner .accordion_box .accordion {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: rgb(25, 54, 147);
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  gap: 20px;
  filter: brightness(1);
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .faq .inner .accordion_box .accordion {
    padding: 20px 12px;
    font-size: 1.4rem;
    gap: 1em;
  }
}
.faq .inner .accordion_box .accordion span {
  font-size: 3.3rem;
  line-height: 0.9;
  font-weight: 600;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .faq .inner .accordion_box .accordion span {
    font-size: 2.4rem;
    margin-right: 0;
  }
}
.faq .inner .accordion_box .accordion .btn {
  flex: 0 0 auto;
  margin-left: auto;
  width: 40px;
  height: 40px;
  transform: rotate(180deg);
  transition: 0.3s;
}
.faq .inner .accordion_box .accordion.open .btn {
  transform: rotate(0deg);
}
.faq .inner .accordion_box .accordion:hover {
  filter: brightness(1.4);
}
.faq .inner .accordion_box .accordion_content {
  display: none;
  padding: 0 22px 20px;
}
@media screen and (max-width: 768px) {
  .faq .inner .accordion_box .accordion_content {
    padding: 0 20px 10px;
  }
}
.faq .inner .accordion_box .accordion_content .p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}

.contact {
  width: 100%;
}
.contact .inner {
  width: 100%;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .contact .inner {
    padding-bottom: 60px;
  }
}
.contact .inner .bg-img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: auto;
}
.contact .inner .bg-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 387px;
}
@media screen and (max-width: 768px) {
  .contact .inner .bg-img img {
    min-height: 192px;
  }
}
.contact .inner .contents {
  padding: 0 20px;
  margin-top: -80px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents {
    margin-top: -50px;
  }
}
.contact .inner .contents .contents-inner {
  max-width: 1100px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background-color: #fff;
  padding: 60px 50px 73px;
  border-radius: 60px;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner {
    padding: 30px 10px;
    border-radius: 20px;
  }
}
.contact .inner .contents .contents-inner .top-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 27px;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .top-box {
    margin-bottom: 20px;
  }
}
.contact .inner .contents .contents-inner .top-box .ttl-box .ttl {
  max-width: 610px;
  width: 100%;
  height: auto;
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .top-box .ttl-box .ttl {
    max-width: 315px;
    margin: 0 auto 10px;
  }
}
.contact .inner .contents .contents-inner .top-box .ttl-box .ttl img {
  width: 100%;
  height: auto;
}
.contact .inner .contents .contents-inner .top-box .ttl-box .sub-ttl {
  max-width: 566px;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .top-box .ttl-box .sub-ttl {
    max-width: initial;
    font-size: 1.4rem;
    text-align: justify;
  }
}
.contact .inner .contents .contents-inner .top-box .img {
  margin-top: -33px;
  margin-left: -22px;
}
.contact .inner .contents .contents-inner .mid-ttl {
  font-size: 3.9rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: rgb(25, 54, 147);
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .mid-ttl {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}
.contact .inner .contents .contents-inner .form-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box {
    flex-direction: column;
  }
}
.contact .inner .contents .contents-inner .form-box .document-content {
  position: relative;
  max-width: 435px;
  width: 100%;
  padding: 20px;
  border: 2px solid #E4EDF8;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .document-content {
    max-width: initial;
    padding: 15px;
  }
}
.contact .inner .contents .contents-inner .form-box .document-content .img {
  z-index: 40;
  position: absolute;
  right: -7px;
  bottom: -18px;
  max-width: 129px;
  width: 100%;
  height: auto;
}
.contact .inner .contents .contents-inner .form-box .document-content .img-left{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 165px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .document-content .img {
    display: none;
  }
  .contact .inner .contents .contents-inner .form-box .document-content .img-left{
    width: 155px;
  }
}
.contact .inner .contents .contents-inner .form-box .document-content .img img {
  width: 100%;
  height: auto;
}
.contact .inner .contents .contents-inner .form-box .document-content h3 {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 700;
  padding-left: 133px;
  margin-bottom: 20px;
  color: rgb(25, 54, 147);
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .document-content h3 {
    font-size: 1.8rem;
    padding-left: 110px;
    letter-spacing: 0.04em;
  }
}
.contact .inner .contents .contents-inner .form-box .document-content .document-txt {
  position: relative;
  z-index: 30;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #F4F3F3;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .document-content .document-txt {
    padding: 10px;
  }
}
.contact .inner .contents .contents-inner .form-box .document-content .document-txt p {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact .inner .contents .contents-inner .form-box .document-content .document-txt p span {
  width: 10px;
  height: 3px;
  display: block;
  margin-right: 10px;
  background: linear-gradient(rgb(81, 212, 180), rgb(0, 60, 255));
}
.contact .inner .contents .contents-inner .form-box .form-content {
  max-width: 535px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .form-content {
    max-width: initial;
  }
}
.contact .inner .contents .contents-inner .form-box .form-content form dl input {
  padding: 5px 10px;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl textarea {
  padding: 10px;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl .hissu {
  margin-bottom: 5px;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl .hissu p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl .hissu p::before {
  width: -moz-fit-content;
  width: fit-content;
  content: "必須";
  display: block;
  padding: 0 5px 2px 5px;
  background-color: rgb(25, 54, 147);
  color: #fff;
  font-size: 1.2rem;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl .name_inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl .name_inputs div {
  width: calc(50% - 10px);
}
.contact .inner .contents .contents-inner .form-box .form-content form dl .name_inputs div p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .form-content form dl .name_inputs div p {
    font-size: 1.2rem;
  }
}
.contact .inner .contents .contents-inner .form-box .form-content form dl .name_inputs div input {
  width: 100%;
  height: 50px;
  background: rgb(228, 237, 248);
}
.contact .inner .contents .contents-inner .form-box .form-content form dl dd {
  margin-bottom: 40px;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl dd input {
  width: 100%;
  height: 50px;
  background: rgb(228, 237, 248);
}
.contact .inner .contents .contents-inner .form-box .form-content form dl dd textarea {
  width: 100%;
  height: 50px;
  background: rgb(228, 237, 248);
}

.contact .inner .contents .contents-inner .form-box .form-content form dl dd input.invalid,
.contact .inner .contents .contents-inner .form-box .form-content form dl dd textarea.invalid {
  background: #F2D8D4;
  border: 2px solid #D7170A;
}

.contact .inner .contents .contents-inner .form-box .form-content form dl .name_inputs div p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl p.variable_error_msg,
.contact .inner .contents .contents-inner .form-box .form-content form dl .name_inputs p.variable_error_msg {
  color: #D7170A;
  font-size: 12px;
  line-height: 19px;
  margin-top: 6px;
  margin-bottom: 31px;
  visibility: hidden;
}
.contact .inner .contents .contents-inner .form-box .form-content form dl input.invalid ~ .variable_error_msg,
.contact .inner .contents .contents-inner .form-box .form-content form dl textarea.invalid ~ .variable_error_msg {
  visibility: visible;
}

.contact .inner .contents .contents-inner .form-box .form-content form .privacy_policy {
  color: rgb(25, 54, 147);
  text-decoration: underline;
  text-align: center;
  font-size: 1.6rem;
  margin: 45px 0 30px;
}
.contact .inner .contents .contents-inner .form-box .form-content form .privacy_policy.privacy_policy_vd{
  line-height: 1.6;
  text-decoration: none;
  text-align: left;
  text-indent: -32px;
  padding-left: 38px;
}
.contact .inner .contents .contents-inner .form-box .form-content form .privacy_policy.privacy_policy_vd .privacy_policy_checkbox{
  width: 18px;
  height: 18px;
  vertical-align: middle;
}
.contact .inner .contents .contents-inner .form-box .form-content form .privacy_policy.privacy_policy_vd .service_contact_privacy_link{
  text-decoration: underline;
}
.contact .inner .contents .contents-inner .form-box .form-content form .privacy_policy.privacy_policy_vd .service_contact_privacy_link:hover{
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .form-content form .privacy_policy {
    margin: 30px 0;
  }
}
.contact .inner .contents .contents-inner .form-box .form-content form #download_btn {
  position: relative;
  max-width: 400px;
  width: 100%;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: calc(40px + 1em);
  padding-right: 80px;
  background-color: #193693;
  border-radius: 100px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 auto;
  box-shadow: 5px 12px 20px rgba(189, 198, 228, 0.5);
}
.contact .inner .contents .contents-inner .form-box .form-content form #download_btn:disabled {
  background-color: #BABABA;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .contact .inner .contents .contents-inner .form-box .form-content form #download_btn {
    padding-left: 20px;
    padding-right: 60px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .form-content form #download_btn {
    max-width: 300px;
    height: 50px;
    padding: 0 46px 0 calc(13px + 1em);
    font-size: 1.4rem;
    text-align: center;
  }
}
.contact .inner .contents .contents-inner .form-box .form-content form #download_btn span {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 70px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3F57A1;
  border-radius: 100px;
}
.contact .inner .contents .contents-inner .form-box .form-content form #download_btn:disabled span {
  background-color: #717273;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .contact .inner .contents .contents-inner .form-box .form-content form #download_btn span {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .form-content form #download_btn span {
    width: 46px;
    height: 46px;
    right: 3px;
  }
}
.contact .inner .contents .contents-inner .form-box .form-content form #download_btn span img {
  width: 17px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .form-content form #download_btn span img {
    width: 11px;
  }
}
.contact .inner .contents .contents-inner .form-box .form-content .asterisk {
  text-align: center;
  margin-top: 25px;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .contact .inner .contents .contents-inner .form-box .form-content .asterisk {
    text-align: start;
    font-size: 1.2rem;
  }
}

/*
.company-about{
	padding: 160px 0;
	background-color: #FFFFFF;
	.inner{
		max-width: 650px;
		width: 100%;
		margin: 0 auto;
		.ttl{
			text-align: center;
			font-size: 3.9rem;
			line-height: 1.4;
			font-weight: 700;
			margin-bottom: 40px;
			color: $blue-txt-color;
		}
		table{
			width: 100%;
			font-size: 1.6rem;
			line-height: 1.6;
			font-weight: 700;
			tr{
				&:last-child{
					th,td{
						padding-bottom: 0;
					}
				}
				th{
					width: 183px;
					text-align: start;
					vertical-align: top;
					color: $blue-txt-color;
					padding-bottom: 30px;
				}
				td{
					padding-bottom: 30px;
					line-height: 1.6;
					font-weight: 500;
				}
			}
		}
	}
}
*/
footer {
  background-color: #193693;
  padding-top: 50px;
}
footer img {
  width: 100%;
  height: auto;
}
footer .logo {
  max-width: 267px;
  width: 100%;
  height: auto;
  margin: 0 auto 37px;
}
footer .img {
  max-width: 326px;
  width: 100%;
  height: auto;
  margin: 0 auto 35px;
}
footer ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  footer ul {
    max-width: 335px;
    padding: 0 20px;
    margin: 0 auto 30px;
    flex-wrap: wrap;
    gap: 20px 50px;
  }
}
@media screen and (max-width: 768px) {
  footer ul li {
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer ul li a {
  font-size: 1.6;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
}
footer .copyright {
  padding: 20px 0;
  border-top: 1px solid rgba(184, 208, 220, 0.3);
}
footer .copyright p {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight: 500;
  color: #fff;
}/*# sourceMappingURL=base.css.map */