@charset "UTF-8";
/* レスポンシブ設定 */
@media screen and (min-width: 541px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 540px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 800px) {
  .tb {
    display: none !important;
  }
}

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 100px;
  font-family: "heisei-kaku-gothic-std", sans-serif;
}

@media screen and (max-width: 540px) {
  body {
    padding-top: 50px;
  }
}

body section {
  padding: 80px 0;
}

@media screen and (max-width: 540px) {
  body section {
    padding: 60px 0;
  }
}

body p {
  font-style: normal;
  font-size: 18px;
  line-height: 32.5px;
}

@media screen and (max-width: 540px) {
  body p {
    font-size: 16px;
    line-height: 24px;
  }
}

@media screen and (max-width: 320px) {
  body p {
    font-size: 14px;
  }
}

body h2 {
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  margin: 0 0 50px;
  color: #014099;
}

@media screen and (max-width: 540px) {
  body h2 {
    font-size: 25px;
    margin: 0 0 40px;
  }
}

body .bold {
  font-weight: bold;
}

body .center {
  text-align: center;
}

body .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

body .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

body .container {
  margin: auto;
  max-width: 1437px;
  width: 90%;
}

body .sub-container {
  margin: auto;
  max-width: 1039px;
  width: 90%;
}

body .blue-bg {
  background-color: #E0F1FA;
}

body a {
  text-decoration: none;
}

body a.btn {
  background-color: #05AA71;
  border: 3px solid white;
  border-radius: 100px;
  max-width: 650px;
  margin: 27px auto auto;
  color: white;
  padding: 25px 0;
  display: block;
  font-size: 23px;
  text-align: center;
  position: relative;
  font-weight: bold;
  -webkit-box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.304);
          box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.304);
}

body a.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 42px;
  background-image: url(../img/tell.png);
  background-repeat: no-repeat;
  background-size: contain;
}

body a.btn::after {
  content: "";
  position: absolute;
  top: 41%;
  right: 3%;
  -webkit-transform: translateY(-41%);
          transform: translateY(-41%);
  display: inline-block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 20px 0 -10px;
}

body a.btn:hover {
  background-color: #12bc81;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -webkit-box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.25);
}

body a.btn:active {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 540px) {
  body a.btn {
    padding: 15px 0;
    font-size: 18px;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.304);
            box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.304);
    border: 2px solid white;
  }
  body a.btn::before {
    width: 25px;
    height: 27px;
  }
}

@media screen and (max-width: 360px) {
  body a.btn::after {
    top: 41%;
    right: 2%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}

header {
  background-image: url(../img/fv-pc.png);
  background-position: center;
  background-size: cover;
  height: 836px;
}

header .header-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding-left: 35px;
}

header .header-menu .header-menu__inner {
  height: 100px;
}

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

header .header-menu .header-menu__inner.flex a img {
  width: 206px;
}

header .header-menu .header-menu__inner.flex .menu-basis {
  display: none;
}

header .header-menu .header-menu__inner.flex .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin: 0 0 0 auto;
}

header .header-menu .header-menu__inner.flex .nav a {
  color: #014099;
  font-weight: bold;
  font-size: 20px;
}

header .header-menu .header-menu__inner.flex .nav a:hover {
  color: #2A5FAB;
}

header .header-menu .header-menu__inner.flex .nav a.free-consultation {
  background-color: #014099;
  height: 100px;
  width: 180px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 22px;
}

header .header-menu .header-menu__inner.flex .nav a.free-consultation:hover {
  background-color: #2A5FAB;
}

@media screen and (max-width: 1301px) {
  header .header-menu .header-menu__inner.flex .nav {
    display: none;
  }
  header .header-menu .header-menu__inner.flex .menu-basis {
    display: block;
    margin: 0 0 0 auto;
    padding-right: 23px;
    position: relative;
    z-index: 1200;
  }
}

@media screen and (max-width: 1301px) and (max-width: 540px) {
  header .header-menu .header-menu__inner.flex .menu-basis {
    padding-right: 0px;
  }
}

@media screen and (max-width: 1301px) {
  header .header-menu .header-menu__inner.flex .menu-basis .hamburger {
    width: 30px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #014099;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .hamburger span:nth-child(1) {
    top: 0;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .hamburger span:nth-child(2) {
    top: 10px;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .hamburger span:nth-child(3) {
    bottom: 0;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav {
    position: fixed;
    left: 0;
    width: 100%;
    background: #ffffff;
    display: none;
    padding: 40px 15px;
    top: 100px;
    height: calc(100vh - 100px);
  }
}

@media screen and (max-width: 1301px) and (max-width: 540px) {
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav {
    top: 50px;
  }
}

@media screen and (max-width: 1301px) {
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav ul {
    width: 100%;
    margin: 40px auto;
    text-align: left;
    list-style: none;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav ul li {
    border-top: 1px solid #BABABA;
    padding: 20px 10px;
  }
}

@media screen and (max-width: 1301px) and (max-width: 321px) {
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav ul li {
    padding: 15px 10px;
  }
}

@media screen and (max-width: 1301px) {
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav ul li:last-child {
    border-bottom: 1px solid #BABABA;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav ul li:hover {
    background-color: #eaeaea;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav ul li a {
    display: block;
    color: #014099;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  header .header-menu .header-menu__inner.flex .menu-basis .sp-nav .free-consultation {
    background-color: #014099;
    color: white;
    text-align: center;
    font-size: 18px;
    padding: 20px 0;
    font-weight: bold;
  }
  header .header-menu .header-menu__inner.flex .menu-basis.is-open .sp-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  header .header-menu .header-menu__inner.flex .menu-basis.is-open .hamburger span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  header .header-menu .header-menu__inner.flex .menu-basis.is-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  header .header-menu .header-menu__inner.flex .menu-basis.is-open .hamburger span:nth-child(3) {
    bottom: 10px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

@media screen and (max-width: 540px) {
  header .header-menu {
    padding: 5px 23px 0;
  }
  header .header-menu .header-menu__inner {
    height: 50px;
  }
  header .header-menu .header-menu__inner.flex a img {
    width: 117px;
  }
}

header .main-visual {
  max-width: 1600px;
  margin: auto;
  padding: 96px 20px 0;
}

header .main-visual .box {
  background-color: rgba(255, 255, 255, 0.786);
  border-radius: 30px;
  padding: 70px 50px;
  max-width: 760px;
}

header .main-visual .box div {
  background-color: #014099;
  display: inline;
  padding: 10px 20px;
  border-radius: 50px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
}

header .main-visual .box h1 {
  font-size: 48px;
  line-height: 62.4px;
  color: #014099;
  margin: 25px 0 25px;
}

header .main-visual .box p {
  font-size: 15px;
}

header .main-visual .box a.btn::before {
  display: none;
}

@media screen and (max-width: 540px) {
  header {
    background-image: url(../img/fv-sp.png);
    background-position: 50% 100%;
    height: 743px;
  }
  header .main-visual {
    padding: 45px 15px;
  }
  header .main-visual .box {
    background-color: rgba(255, 255, 255, 0.786);
    border-radius: 15px;
    padding: 30px 15px 35px;
  }
  header .main-visual .box div {
    padding: 10px 17px;
    font-size: 12px;
    letter-spacing: 1px;
  }
  header .main-visual .box h1 {
    font-size: 25px;
    line-height: 35.5px;
    margin: 20px 0 20px;
  }
  header .main-visual .box h1 .tight {
    letter-spacing: -0.25em;
  }
  header .main-visual .box p {
    font-size: 14px;
    line-height: 20px;
  }
  header .main-visual .box .btn {
    margin-top: 15px;
  }
}

@media screen and (max-width: 360px) {
  header .main-visual .box div {
    padding: 8px 15px;
  }
  header .main-visual .box h1 {
    font-size: 24px;
    line-height: 35px;
    margin: 15px 0 18px;
  }
  header .main-visual .box h1 .tight {
    letter-spacing: -0.3em;
  }
  header .main-visual .box p {
    line-height: 19px;
  }
  header .main-visual .box .btn {
    margin-top: 25px;
  }
  header .main-visual .box .btn::after {
    right: 1%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
  }
}

.solution {
  margin-top: -95px;
  padding: 0;
}

.solution .section-title-bg {
  padding: 0 40px;
}

.solution .section-title-bg .sub-container .section-title {
  background-color: #E0F1FA;
  border-radius: 23px 23px 0 0;
  margin: 0 auto -1px;
  padding-top: 30px;
  padding-bottom: 5px;
}

.solution .section-title-bg .sub-container .section-title h2 {
  margin: auto;
}

.solution .blue-bg {
  padding: 80px 0;
}

.solution .blue-bg .container .grid {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.solution .blue-bg .container .grid .item {
  background-color: white;
  border-radius: 20px;
  padding: 40px 30px;
  width: 694px;
}

.solution .blue-bg .container .grid .item .flex {
  margin-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.solution .blue-bg .container .grid .item .flex img {
  width: 100px;
  height: 100px;
}

.solution .blue-bg .container .grid .item .flex p {
  font-size: 25px;
  line-height: 39px;
  font-weight: bold;
}

@media screen and (max-width: 540px) {
  .solution {
    margin-top: -90px;
  }
  .solution .section-title-bg {
    padding: 0 5vw;
  }
  .solution .section-title-bg .sub-container .section-title {
    padding-top: 20px;
    padding-bottom: 5px;
    max-width: 300px;
  }
  .solution .section-title-bg .sub-container .section-title h2 {
    line-height: 32.5px;
  }
  .solution .blue-bg {
    padding: 60px 0;
  }
  .solution .blue-bg .container .grid {
    gap: 25px;
  }
  .solution .blue-bg .container .grid .item {
    border-radius: 10px;
    padding: 30px 15px;
  }
  .solution .blue-bg .container .grid .item .flex {
    gap: 15px;
    margin-bottom: 25px;
  }
  .solution .blue-bg .container .grid .item .flex img {
    width: 70px;
    height: 70px;
  }
  .solution .blue-bg .container .grid .item .flex p {
    font-size: 20px;
    line-height: 28px;
  }
}

.cta {
  background-color: #014099;
  color: white;
  font-weight: bold;
}

.cta h2 {
  color: white;
  margin-bottom: 10px;
  position: relative;
}

.cta h2 .is-mobile-break {
  display: none;
}

.cta h2::before, .cta h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 50px;
  height: 3px;
  background: white;
}

.cta h2::before {
  left: 50%;
  -webkit-transform: translateX(-340px) rotate(55deg);
          transform: translateX(-340px) rotate(55deg);
}

.cta h2::after {
  right: 50%;
  -webkit-transform: translateX(340px) rotate(-55deg);
          transform: translateX(340px) rotate(-55deg);
}

@media screen and (max-width: 660px) {
  .cta h2 {
    margin-bottom: 15px;
  }
  .cta h2 .is-mobile-break {
    display: inline;
  }
  .cta h2::before, .cta h2::after {
    width: 80px;
    height: 3px;
    top: 60%;
  }
  .cta h2::before {
    -webkit-transform: translateX(-230px) rotate(55deg);
            transform: translateX(-230px) rotate(55deg);
  }
  .cta h2::after {
    -webkit-transform: translateX(230px) rotate(-55deg);
            transform: translateX(230px) rotate(-55deg);
  }
}

@media screen and (max-width: 540px) {
  .cta h2::before, .cta h2::after {
    width: 60px;
  }
  .cta h2::before {
    -webkit-transform: translateX(-170px) rotate(55deg);
            transform: translateX(-170px) rotate(55deg);
  }
  .cta h2::after {
    -webkit-transform: translateX(170px) rotate(-55deg);
            transform: translateX(170px) rotate(-55deg);
  }
}

.reason {
  padding-bottom: 120px;
}

.reason .container .red {
  font-size: 60px;
  color: #E20000;
  padding: 0 5px;
}

.reason .container .stack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.reason .container .stack .item {
  background-color: #E0F1FA;
  border-radius: 20px;
  padding: 30px;
}

.reason .container .stack .item .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.reason .container .stack .item .flex .item_title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

.reason .container .stack .item .flex img {
  max-width: 398px;
}

.reason .container .stack .item .flex p {
  max-width: 760px;
}

@media screen and (max-width: 800px) {
  .reason .container .stack .item .flex {
    display: block;
  }
  .reason .container .stack .item .flex img {
    max-width: 800px;
    width: 100%;
    display: block;
    margin: 0 auto 40px;
  }
}

@media screen and (max-width: 540px) {
  .reason {
    padding: 65px 0 60px;
  }
  .reason .container h2 {
    line-height: 37px;
  }
  .reason .container .red {
    font-size: 40px;
    padding: 0 5px;
  }
  .reason .container .stack .item {
    border-radius: 10px;
    padding: 15px 15px 35px;
  }
  .reason .container .stack .item .flex .item_title {
    font-size: 20px;
    line-height: 28px;
  }
}

.flow {
  padding: 0px;
}

.flow .section-title-bg {
  background-color: white;
}

.flow .section-title-bg .sub-container .section-title {
  background-color: #E0F1FA;
  height: 100px;
  margin: auto auto -1px;
  padding: 25px 0 0;
  border-radius: 23px 23px 0 0;
}

.flow .section-title-bg .sub-container .section-title h2 {
  margin: 0;
}

.flow .blue-bg {
  padding: 80px 0;
}

.flow .blue-bg .container .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flow .blue-bg .container .flex .item .number {
  background-color: #014099;
  margin: auto auto 20px;
  width: 62px;
  height: 62px;
  border-radius: 500px;
  position: relative;
}

.flow .blue-bg .container .flex .item .number p {
  position: absolute;
  top: 25%;
  left: 22px;
  font-size: 25px;
  font-weight: bold;
  color: white;
}

.flow .blue-bg .container .flex .item img {
  width: 348px;
  margin-bottom: 30px;
}

.flow .blue-bg .container .flex .item .item-title {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 10px;
}

.flow .blue-bg .container .flex .item p {
  text-align: center;
}

.flow .blue-bg .container .flex .triangle {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-top: 2px solid #014099;
  border-right: 2px solid #014099;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 20px 0 -10px;
}

@media screen and (max-width: 1425px) {
  .flow .blue-bg .container .flex {
    display: block;
  }
  .flow .blue-bg .container .flex .item img {
    margin: 0 auto 40px;
    display: block;
  }
  .flow .blue-bg .container .flex .triangle {
    display: none;
  }
  .flow .blue-bg .container .flex .speechBubble {
    position: relative;
    height: 40px;
    border-bottom: 1px solid #014099;
    background-color: #E0F1FA;
    margin-bottom: 50px;
  }
  .flow .blue-bg .container .flex .speechBubble::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 20px 25px 0 25px;
    border-color: #014099 transparent transparent;
    translate: -50% 100%;
  }
  .flow .blue-bg .container .flex .speechBubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 19px 23px 0 23px;
    border-color: #E0F1FA transparent transparent;
    translate: -50% 100%;
  }
}

@media screen and (max-width: 540px) {
  .flow .section-title-bg .sub-container .section-title {
    height: 50px;
    padding: 15px 0 0;
    max-width: 300px;
  }
  .flow .blue-bg {
    padding: 60px 0;
  }
  .flow .blue-bg .container .flex .item .number p {
    top: 33%;
  }
  .flow .blue-bg .container .flex .item img {
    width: 100%;
  }
}

.voice {
  padding-top: 90px;
}

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

.voice .container .grid .item {
  background-color: white;
  padding: 40px;
  width: 694px;
  border-radius: 20px;
}

.voice .container .grid .item .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.voice .container .grid .item .flex img {
  max-width: 100px;
}

.voice .container .grid .item .flex .name {
  font-size: 20px;
  font-weight: bold;
}

.voice .container .grid .item .flex p {
  font-size: 16px;
}

.voice .container .grid .item .comment {
  font-size: 25px;
  font-weight: bold;
  color: #014099;
  margin-bottom: 15px;
}

@media screen and (max-width: 540px) {
  .voice {
    padding-top: 65px;
  }
  .voice .container .grid {
    gap: 25px;
  }
  .voice .container .grid .item {
    padding: 30px 15px;
    border-radius: 10px;
  }
  .voice .container .grid .item .flex {
    margin-bottom: 25px;
    gap: 15px;
  }
  .voice .container .grid .item .flex img {
    max-width: 70px;
  }
  .voice .container .grid .item .flex .name {
    font-size: 18px;
  }
  .voice .container .grid .item .flex p {
    font-size: 14px;
  }
  .voice .container .grid .item .comment {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 20px;
  }
}

.question .sub-container .aco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}

.question .sub-container .aco .aco-block .aco-content.content-q {
  position: relative;
  cursor: pointer;
  background-color: white;
  border: 2px solid #014099;
  border-radius: 20px;
  padding: 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.question .sub-container .aco .aco-block .aco-content.content-q::after {
  content: '';
  position: absolute;
  right: 50px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid #014099;
  border-bottom: 3px solid #014099;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.question .sub-container .aco .aco-block .aco-content.content-q.close::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}

.question .sub-container .aco .aco-block .aco-content.content-q .aco-content-right p {
  font-size: 23px;
  font-weight: bold;
}

.question .sub-container .aco .aco-block .aco-content .aco-content-left {
  background-color: #014099;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  position: relative;
}

.question .sub-container .aco .aco-block .aco-content .aco-content-left p {
  position: absolute;
  top: 20%;
  color: white;
  font-weight: bold;
  font-size: 30px;
  left: 25%;
}

.question .sub-container .aco .aco-block .aco-content.content-a {
  padding: 30px;
}

@media screen and (max-width: 540px) {
  .question .sub-container .aco {
    gap: 15px;
  }
  .question .sub-container .aco .aco-block .aco-content.content-q {
    background-color: white;
    border: 2px solid #014099;
    border-radius: 20px;
    padding: 15px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    border: 1px solid #014099;
    border-radius: 10px;
    padding: 15px 15px;
    gap: 10px;
  }
  .question .sub-container .aco .aco-block .aco-content.content-q::after {
    right: 20px;
    border-right: 2px solid #014099;
    border-bottom: 2px solid #014099;
  }
  .question .sub-container .aco .aco-block .aco-content.content-q .aco-content-right p {
    font-size: 23px;
    font-weight: bold;
  }
  .question .sub-container .aco .aco-block .aco-content.content-q .aco-content-right {
    max-width: 226px;
  }
  .question .sub-container .aco .aco-block .aco-content.content-q .aco-content-right p {
    font-size: 18px;
  }
  .question .sub-container .aco .aco-block .aco-content .aco-content-left {
    height: 34px;
    width: 34px;
  }
  .question .sub-container .aco .aco-block .aco-content .aco-content-left p {
    top: 14%;
    font-size: 20px;
    left: 25%;
  }
  .question .sub-container .aco .aco-block .aco-content.content-a {
    padding: 20px 15px;
  }
}

.reservation {
  padding-top: 90px;
}

@media screen and (max-width: 540px) {
  .reservation {
    padding-top: 60px;
  }
}

.reservation .container .center {
  margin-bottom: 60px;
}

@media screen and (max-width: 540px) {
  .reservation .container h2 {
    margin-bottom: 20px;
  }
  .reservation .container .center {
    margin-bottom: 40px;
  }
}

.reservation .container .form-area {
  background-color: white;
  padding-top: 50px;
  max-width: 800px;
  margin: auto;
}

.reservation .container .form-area iframe {
  display: block;
  width: 100%;
  height: 3555px;
  border: none;
}

@media screen and (max-width: 540px) {
  .reservation .container .form-area {
    padding-top: 0px;
  }
  .reservation .container .form-area iframe {
    height: 3850px;
  }
}

footer {
  padding: 20px 0 10px;
  background-color: #014099;
}

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

footer .flex a {
  color: #CCD9EB;
  font-size: 14px;
}

footer .flex a:hover {
  opacity: 0.7;
}

footer p {
  font-size: 12px;
  text-align: center;
  color: #809FCC;
}

main section[id] {
  scroll-margin-top: 100px;
}

main #solution, main #flow {
  scroll-margin-top: 140px;
}

@media screen and (max-width: 540px) {
  main section[id] {
    scroll-margin-top: 50px;
  }
  main #solution, main #flow {
    scroll-margin-top: 80px;
  }
}

html {
  scroll-behavior: smooth;
}

.privacy-policy .container h3 {
  color: #014099;
  font-size: 25px;
  margin-top: 70px;
  margin-bottom: 50px;
  border-bottom: 2px solid #014099;
  padding-bottom: 8px;
}

.privacy-policy .container .flex {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 540px) {
  .privacy-policy .container h3 {
    font-size: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
  }
}

.company {
  padding-bottom: 120px;
}

.company .sub-container .company-table {
  border-top: 1px solid #ddd;
}

.company .sub-container .company-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 30px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.company .sub-container .company-row dt {
  width: 260px;
  font-weight: 600;
  color: #014099;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 20px;
}

@media screen and (min-width: 730px) {
  .company .sub-container .company-row dt {
    width: 170px;
  }
}

.company .sub-container .company-row dd {
  margin: 0;
  line-height: 1.6;
  font-size: 18px;
  line-height: 22px;
}

.company .sub-container .company-row dd span {
  font-size: 14px;
  color: #717171;
}

@media screen and (max-width: 540px) {
  .company {
    padding-bottom: 80px;
    padding-top: 30px;
  }
  .company .sub-container .company-row {
    padding: 20px 0;
  }
  .company .sub-container .company-row dt {
    width: 120px;
    font-size: 16px;
  }
  .company .sub-container .company-row dd {
    font-size: 16px;
  }
  .company .sub-container .company-row dd span {
    font-size: 12px;
  }
}
/*# sourceMappingURL=style.css.map */