@charset "UTF-8";
body {
  font-family: "Roboto", sans-serif;
  background-color: #F5F5F5;
  color: #00001A;
  overflow-x: hidden;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.flex {
  display: flex;
}

header {
  background-color: #fff;
  height: 76px;
  margin-bottom: 97px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  header {
    height: auto;
    margin-bottom: 40px;
  }
}

header .wrapper {
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
}
@media screen and (max-width: 1199px) {
  header .wrapper {
    width: calc(100% - 32px);
    padding: 8px 0;
    align-items: center;
  }
}
header .wrapper.pc {
  display: flex;
}
@media screen and (max-width: 1199px) {
  header .wrapper.pc {
    display: none;
  }
}
header .wrapper.sp {
  display: none;
}
@media screen and (max-width: 1199px) {
  header .wrapper.sp {
    display: flex;
  }
}

header h1 {
  background: url("../img/logo2.png");
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 60px;
  width: 262px;
  margin-top: 8px;
  margin-right: 40px;
}
@media screen and (max-width: 1199px) {
  header h1 {
    margin: 0;
    width: 232px;
    height: 53px;
    background-size: contain;
  }
}

header .header-menu-button {
  position: relative;
  cursor: pointer;
  margin-top: 1px;
  width: 45px;
  height: 40px;
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  header .header-menu-button {
    display: flex;
  }
}
header .header-menu-button span:not(:last-child) {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 8px;
  height: 3px;
  background: #153667;
  width: calc(100% - 16px);
}
header .header-menu-button span:nth-of-type(1) {
  top: 0;
}
header .header-menu-button span:nth-of-type(2) {
  top: 9px;
}
header .header-menu-button span:nth-of-type(3) {
  top: 18px;
}
header .header-menu-button span:last-child {
  margin-top: auto;
  color: #153667;
  font-size: 10px;
  font-weight: bold;
}
header .header-menu-button[aria-expanded=true] span:nth-of-type(1) {
  top: 3px;
  left: 6px;
  transform: translateY(6px) rotate(-45deg);
  width: calc(100% - 12px);
}
header .header-menu-button[aria-expanded=true] span:nth-of-type(2) {
  opacity: 0;
}
header .header-menu-button[aria-expanded=true] span:nth-of-type(3) {
  top: 15px;
  left: 6px;
  transform: translateY(-6px) rotate(45deg);
  width: calc(100% - 12px);
}

header .header-menu {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 464px);
  margin-left: auto;
}
@media screen and (max-width: 1199px) {
  header .header-menu {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 0;
    padding: 32px;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 300ms;
    position: absolute;
    top: 69px;
    left: 0;
    z-index: 9;
    background-color: #153667;
  }
}

@media screen and (max-width: 1199px) {
  header .header-menu-button[aria-expanded=true] + .header-menu {
    opacity: 1;
    visibility: visible;
    height: calc(100vh - 69px);
  }
}

header nav {
  margin-top: 26px;
}
@media screen and (max-width: 1199px) {
  header nav {
    margin-top: 0;
  }
}

@media screen and (max-width: 1199px) {
  header nav ul.flex {
    flex-direction: column;
  }
}

header nav ul li {
  margin-right: 30px;
}
@media screen and (max-width: 1199px) {
  header nav ul li {
    margin-right: 0;
  }
}

header nav ul li:last-child {
  margin-right: 0;
}

header nav ul li a {
  font-size: 15px;
}
@media screen and (max-width: 1199px) {
  header nav ul li a {
    display: block;
    width: 100%;
    padding: 16px 8px;
    color: #fff;
    border-bottom: 1px solid #fff;
  }
}

header .wrapper .contact-btn {
  font-size: 12px;
  padding-bottom: 10px;
  margin-top: 18px;
  border-bottom: 1px solid #74747D;
  height: 34px;
  padding: 0 10px;
}
@media screen and (max-width: 1199px) {
  header .wrapper .contact-btn {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    padding: 16px 8px;
    font-size: 15px;
    color: #fff;
    border-color: #fff;
  }
}

header .wrapper .contact-btn:after {
  content: "↓";
  margin-left: 50px;
  margin-top: 15px;
  font-size: 20px;
}
@media screen and (max-width: 1199px) {
  header .wrapper .contact-btn:after {
    margin-top: 0;
    font-size: 18px;
  }
}

#hero {
  position: relative;
  padding: 338px 10% 331px;
}
@media screen and (max-width: 768px) {
  #hero {
    padding: 120px 32px;
  }
}
#hero::before, #hero::after {
  display: inline-block;
  content: "";
  position: absolute;
}
#hero::before {
  top: 0;
  right: 0;
  width: 85%;
  height: 76%;
  z-index: 1;
  background-image: url("../img/fv.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #hero::before {
    height: 100%;
  }
}
#hero::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 240px);
  z-index: 0;
  background-color: #153667;
}
@media screen and (max-width: 768px) {
  #hero::after {
    height: calc(100% - 60px);
  }
}

#hero .hero-wrapper {
  position: relative;
  z-index: 2;
}
#hero .hero-wrapper h2 {
  color: #fff;
  font-weight: bold;
  font-size: 58px;
  line-height: 1.38;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  #hero .hero-wrapper h2 {
    font-size: 24px;
  }
}
#hero .hero-wrapper p {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.75;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #hero .hero-wrapper p {
    font-size: 17px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  #hero .hero-wrapper p span {
    display: block;
  }
}
#hero .hero-wrapper a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid #fff;
  width: 413px;
  height: 70px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
@media screen and (max-width: 768px) {
  #hero .hero-wrapper a {
    width: 100%;
    font-size: 16px;
  }
}

.fv {
  height: 830px;
  background-color: #153667;
  text-align: right;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv {
    height: calc(100vh - 170px);
  }
}

.fv img {
  width: 85%;
  height: 100%;
  object-fit: cover;
  margin-top: -240px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .fv img {
    width: calc(100% - 24px);
    margin-top: -100px;
  }
}

.fv > div {
  text-align: left;
  position: absolute;
  top: 90px;
  left: 10%;
}
@media screen and (max-width: 768px) {
  .fv > div {
    top: -25px;
    left: 48px;
    width: calc(100% - 72px);
  }
}

.fv > div h2 {
  color: #fff;
  font-weight: bold;
  font-size: 58px;
  line-height: 1.38;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .fv > div h2 {
    font-size: 24px;
  }
}

.fv > div p {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.75;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .fv > div p {
    font-size: 18px;
    margin-bottom: 50px;
  }
}

.fv > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid #fff;
  width: 413px;
  height: 70px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv > div a {
    width: 100%;
    font-size: 16px;
  }
}

.ppa {
  background-color: #fff;
  width: 95%;
  margin-left: 5%;
  margin-top: -135px;
  padding: 75px 3% 75px 8%;
  box-shadow: -6px 10px 30px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 175px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ppa {
    width: calc(100% - 24px);
    margin: -80px 0 80px 24px;
    padding: 40px 32px;
  }
}

@media screen and (max-width: 768px) {
  .ppa .flex {
    flex-direction: column;
  }
}

.ppa .flex > img {
  width: calc(422 / 1920 * 100vw);
  max-width: 300px;
  margin-right: 10%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .ppa .flex > img {
    width: calc(100% - 72px);
    margin-right: 24px;
    display: none;
  }
}

.ppa h2 {
  font-size: 33px;
  line-height: 1.45;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .ppa h2 {
    font-size: 24px;
  }
}

.ppa h2:before {
  content: "";
  height: 1px;
  background-color: #74747D;
  width: 75px;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .ppa h2:before {
    margin-bottom: 32px;
  }
}

.ppa p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .ppa p {
    font-size: 16px;
  }
}

.ppa .flex .right-box img {
  width: 100%;
  max-width: 1752px;
}
@media screen and (max-width: 768px) {
  .ppa .flex .right-box img {
    width: 100%;
    margin-left: 0;
  }
}

.banner {
  background: url("../img/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 152px 0;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .banner {
    padding: 40px 24px;
  }
}
.banner .banner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 32px;
}
@media screen and (max-width: 768px) {
  .banner .banner-wrapper {
    flex-direction: column;
    padding: 0;
  }
}

.banner p {
  font-size: 36px;
  color: #fff;
  line-height: 1.38;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .banner p {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.banner a {
  display: block;
  box-sizing: border-box;
  border: 2px solid #fff;
  width: 412px;
  height: 96px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  text-align: center;
  line-height: 96px;
}
@media screen and (max-width: 768px) {
  .banner a {
    width: 100%;
    height: auto;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.34;
  }
}

.service {
  background-color: #fff;
  width: 95%;
  margin-right: 5%;
  padding: 145px 0 220px 0;
  box-shadow: -6px 10px 30px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 175px;
}
@media screen and (max-width: 768px) {
  .service {
    width: calc(100% - 32px);
    margin: 0 auto 80px;
    padding: 40px 0 64px;
  }
}

.service h2 {
  font-size: 32px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: right;
  width: 364px;
  margin-right: 25%;
}
@media screen and (max-width: 1199px) {
  .service h2 {
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .service h2 {
    font-size: 24px;
    width: auto;
    margin-right: 0;
    text-align: left;
  }
}

.service h2:before {
  content: "";
  height: 1px;
  background-color: #74747D;
  width: 75px;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service h2:before {
    margin-bottom: 32px;
  }
}

.service .flex:first-child {
  justify-content: center;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .service .flex:first-child {
    flex-direction: column;
    margin-bottom: 40px;
    padding: 0 16px;
  }
}

.service .flex:first-child div {
  font-size: 16px;
  color: #74747D;
  display: inline-block;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .service .flex:first-child div {
    font-size: 15px;
  }
}

.service .flex:first-child div span.hundred {
  font-size: 96px;
  font-weight: bold;
  color: #00001A;
  font-family: serif;
}
@media screen and (max-width: 768px) {
  .service .flex:first-child div span.hundred {
    font-size: 70px;
  }
}

.service .flex:first-child div span.more {
  font-size: 24px;
  color: #28283C;
}
@media screen and (max-width: 768px) {
  .service .flex:first-child div span.more {
    font-size: 20px;
    padding-left: 5px;
  }
}

.service .flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .service .flex {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .service .flex.service2 {
    flex-direction: column-reverse;
  }
}

.service1, .service2 {
  margin-bottom: 230px;
}
@media screen and (max-width: 768px) {
  .service1, .service2 {
    margin-bottom: 64px;
  }
}

.service .flex img {
  width: 40%;
  height: 540px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .service .flex img {
    width: 100%;
    height: 100px;
  }
}

.service .flex .right-box,
.service .flex .left-box {
  position: relative;
  width: 42%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .service .flex .right-box,
.service .flex .left-box {
    width: calc(100% - 32px);
  }
}
.service .flex .right-box > p,
.service .flex .left-box > p {
  margin-bottom: 38px;
}

.service .flex .right-box {
  margin-right: 8%;
}
@media screen and (max-width: 768px) {
  .service .flex .right-box {
    margin: 32px 16px 0;
  }
}

.service .flex .left-box {
  margin-left: 8%;
}
@media screen and (max-width: 768px) {
  .service .flex .left-box {
    margin: 32px 16px 0;
  }
}

.service .num {
  font-size: 120px;
  color: #153667;
  font-weight: bold;
  font-family: serif;
  position: absolute;
  top: -70px;
  right: -50px;
}
@media screen and (max-width: 1199px) {
  .service .num {
    top: -40px;
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .service .num {
    font-size: 40px;
    top: -12px;
    right: 0;
  }
}

.service .merit {
  display: none;
  font-size: 18px;
  color: #00001A;
  margin: 50px 0 15px;
}
@media screen and (max-width: 768px) {
  .service .merit {
    font-size: 16px;
    margin-top: 0;
  }
}

.service h3 {
  font-size: 30px;
  color: #00001A;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .service h3 {
    font-size: 24px;
  }
}

.service p {
  font-size: 16px;
  color: #28283C;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .service p {
    margin-bottom: 24px;
    font-size: 15px;
  }
}

.service1 .box {
  background: url("../img/service02.png") no-repeat top right;
}

.service2 .box {
  background: url("../img/service04.png") no-repeat top left;
}

.service3 .box {
  background: url("../img/service06.png") no-repeat top right;
}

.service .box {
  width: 100%;
  height: 200px;
}
@media screen and (max-width: 768px) {
  .service .box {
    background-size: cover;
  }
}

.service .box p {
  color: #28283C;
  line-height: 1.44;
  font-size: 18px;
  background-color: #fff;
  box-shadow: 5px 10px 30px 0px rgba(0, 0, 0, 0.06);
  padding: 40px 60px;
  display: inline-block;
  position: relative;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .service .box p {
    font-size: 15px;
    padding: 16px;
    position: absolute;
    top: auto;
    bottom: 8px;
    width: calc(100% - 16px);
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.95);
  }
}

.service .box p:after {
  content: "POINT";
  color: #28283C;
  font-size: 11px;
  position: absolute;
  top: 15px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .service .box p:after {
    top: 0;
    right: 0;
    padding: 4px;
    font-size: 10px;
    color: #fff;
    background-color: #153667;
  }
}

.achievement {
  background-color: #fff;
  width: 95%;
  margin-left: 5%;
  padding: 145px 0 200px 0;
  box-shadow: -6px 10px 30px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 110px;
  background: url("../img/achivement01.png") no-repeat;
  background-size: contain;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .achievement {
    width: calc(100% - 32px);
    margin: 0 auto 64px;
    padding: 100px 0 72px;
    margin-bottom: 64px;
  }
}

.achievement .wrapper {
  width: 95%;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .achievement .wrapper {
    width: 100%;
    padding: 0 16px;
  }
}

.achievement .wrapper h2 {
  font-size: 32px;
  text-align: center;
  padding-top: 180px;
  line-height: 1.5;
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .achievement .wrapper h2 {
    font-size: 20px;
    padding-top: 8px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .achievement .wrapper h2 span {
    display: block;
  }
}

.achievement .flex {
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .achievement .flex {
    gap: 32px 20px;
  }
}

.achievement .flex > div {
  width: 280px;
  height: 200px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .achievement .flex > div {
    width: calc(100% / 3 - 80px / 3);
  }
}
@media screen and (max-width: 768px) {
  .achievement .flex > div {
    width: calc(50% - 10px);
    margin: 0;
    height: 160px;
  }
}

.achievement .flex > div:last-child {
  margin-right: 0;
}

.achievement .flex > div span {
  display: inline-block;
  background-color: #153667;
  color: #fff;
  font-size: 20px;
  padding: 10px 20px;
  position: absolute;
  bottom: -10px;
  right: -10px;
}
@media screen and (max-width: 768px) {
  .achievement .flex > div span {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.achievement .flex > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow {
  background-color: #fff;
  width: 95%;
  margin-right: 5%;
  padding: 145px 0 100px 0;
  box-shadow: -6px 10px 30px 0px rgba(0, 0, 0, 0.06);
  margin-bottom: 130px;
  background: url("../img/flow01.png") no-repeat;
  background-size: contain;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .flow {
    width: 100%;
    margin: 0 0 64px;
    padding: 100px 0 50px;
  }
}

.flow .wrapper {
  width: 95%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .flow .wrapper {
    width: 100%;
    padding: 0 16px;
  }
}

.flow .wrapper h2 {
  font-size: 32px;
  text-align: center;
  padding-top: 180px;
  line-height: 1.5;
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .flow .wrapper h2 {
    font-size: 24px;
    padding: 40px 0;
    margin-bottom: 0;
    text-align: left;
  }
}

@media screen and (max-width: 1199px) {
  .flow .wrapper .flex {
    flex-direction: column;
    align-items: center;
  }
}

.flow .wrapper .flex img {
  width: 40%;
  margin-left: 5%;
  margin-right: 5%;
  object-fit: contain;
}
@media screen and (max-width: 1199px) {
  .flow .wrapper .flex img {
    display: none;
  }
}

.flow .wrapper .flex .item {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .flow .wrapper .flex .item {
    position: relative;
    width: 100%;
    padding-left: 32px;
  }
}

@media screen and (max-width: 768px) {
  .flow .wrapper .flex .item::before {
    display: block;
    content: "";
    width: 16px;
    height: 16px;
    background-color: #D9D9D9;
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 1px;
  }
}

.flow .wrapper .flex .item span {
  color: #74747D;
  font-size: 24px;
}

.flow .wrapper .flex .item h4 {
  color: #153667;
  font-size: 22px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 15px;
}

.flow .wrapper .flex .item p {
  font-size: 16px;
  color: #28283C;
  line-height: 1.5;
  letter-spacing: -0.2px;
}

.flow .wrapper .flex .right-box {
  clear: both;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .flow .wrapper .flex .right-box {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .flow .wrapper .flex .right-box {
    width: 100%;
  }
}

.flow .wrapper .flex .right-box .item:nth-child(odd) {
  float: left;
}

.flow .wrapper .flex .right-box .item:nth-child(odd) span {
  display: block;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .flow .wrapper .flex .right-box .item:nth-child(odd) span {
    text-align: left;
  }
}

.flow .wrapper .flex .right-box .item:nth-child(odd) h4 {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .flow .wrapper .flex .right-box .item:nth-child(odd) h4 {
    text-align: left;
  }
}

.flow .wrapper .flex .right-box .item:nth-child(odd) p {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .flow .wrapper .flex .right-box .item:nth-child(odd) p {
    text-align: left;
  }
}

.flow .wrapper .flex .right-box .item:nth-child(even) {
  float: right;
}

.flow .wrapper .flex .right-box .item:first-child p {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .flow .wrapper .flex .right-box .item:first-child p {
    white-space: normal;
  }
}

.flow .wrapper .flex .right-box .item:nth-child(2) {
  margin-top: 140px;
}

.flow .wrapper .flex .right-box .item:nth-child(3) {
  margin-top: 165px;
}

.flow .wrapper .flex .right-box .item:nth-child(4) {
  margin-top: 160px;
}

.flow .wrapper .flex .right-box .item:nth-child(5) {
  margin-top: 162px;
}

.flow .wrapper .flex .right-box .item:nth-child(6) {
  margin-top: 154px;
}

.flow .wrapper .flex .right-box .item:nth-child(7) {
  margin-top: 132px;
}

@media screen and (max-width: 768px) {
  .flow .wrapper .flex .right-box .item:not(:first-child) {
    margin-top: 32px;
  }
}

.flow .wrapper .flex .right-box .point {
  height: 1010px;
  width: 3px;
  background: #D9D9D9;
  position: absolute;
  top: -10px;
  left: 50%;
  clear: both;
}
@media screen and (max-width: 768px) {
  .flow .wrapper .flex .right-box .point {
    left: 8px;
    height: 100%;
  }
}

.flow .wrapper .flex .right-box .point span {
  color: #D9D9D9;
  margin-left: -6px;
  display: block;
}
@media screen and (max-width: 768px) {
  .flow .wrapper .flex .right-box .point span {
    display: none;
  }
}

.flow .wrapper .flex .right-box .point span:first-child {
  margin-top: 12px;
}

.flow .wrapper .flex .right-box .point span:nth-child(2) {
  margin-top: 126px;
}

.flow .wrapper .flex .right-box .point span:nth-child(3) {
  margin-top: 128px;
}

.flow .wrapper .flex .right-box .point span:nth-child(4) {
  margin-top: 142px;
}

.flow .wrapper .flex .right-box .point span:nth-child(5) {
  margin-top: 134px;
}

.flow .wrapper .flex .right-box .point span:nth-child(6) {
  margin-top: 134px;
}

.flow .wrapper .flex .right-box .point span:nth-child(7) {
  margin-top: 112px;
}

.faq {
  background-color: #fff;
  width: 95%;
  margin-left: 5%;
  padding: 145px 0 200px 0;
  box-shadow: -6px 10px 30px 0px rgba(0, 0, 0, 0.06);
  background: url("../img/faq01.png") no-repeat;
  background-size: contain;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .faq {
    width: calc(100% - 32px);
    margin: 0 auto 40px;
    padding: 100px 0 64px;
  }
}

.faq .wrapper {
  width: 95%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .faq .wrapper {
    width: 100%;
    padding: 0 16px;
  }
}

.faq .wrapper h2 {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .faq .wrapper h2 {
    font-size: 24px;
    margin: 16px 0 32px;
  }
}

.faq .wrapper .flex img {
  width: 40%;
  height: 500px;
  margin-left: 5%;
  margin-right: 5%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .faq .wrapper .flex img {
    display: none;
  }
}

.faq .wrapper .flex {
  padding-top: 200px;
}
@media screen and (max-width: 768px) {
  .faq .wrapper .flex {
    padding-top: 0;
    flex-direction: column;
  }
}

.faq .wrapper .flex .toggle {
  width: 100%;
}

.faq .wrapper .flex .toggle > div {
  border-bottom: 1px solid #000;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .faq .wrapper .flex .toggle > div {
    padding-top: 16px;
  }
}

.faq .wrapper .flex .toggle .question {
  font-size: 20px;
  position: relative;
  margin-bottom: 30px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .faq .wrapper .flex .toggle .question {
    font-size: 16px;
    margin-bottom: 16px;
    padding-right: 20px;
  }
}

.faq .wrapper .flex .toggle .question:before {
  content: "＋";
  position: absolute;
  right: 10px;
}

.faq .wrapper .flex .toggle .question.active:before {
  content: "－";
}

.faq .wrapper .flex .toggle .answer {
  font-size: 16px;
  display: none;
  line-height: 2;
  margin-bottom: 40px;
  margin-left: 1.2em;
  text-indent: -1.2em;
}
@media screen and (max-width: 768px) {
  .faq .wrapper .flex .toggle .answer {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
}

.solution {
  padding-top: 150px;
  background-color: #fff;
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .solution {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.solution h2 {
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .solution h2 {
    font-size: 24px;
    margin-bottom: 0;
  }
}

.solution .flex {
  width: 85%;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .solution .flex {
    width: calc(100% - 64px);
  }
}
@media screen and (max-width: 768px) {
  .solution .flex {
    width: calc(100% - 48px);
    flex-direction: column;
  }
}

.solution .flex .box {
  padding-top: 23%;
  background-position: center top !important;
  padding-left: 0;
  max-width: calc(505 / 1920 * 100vw);
}
@media screen and (max-width: 768px) {
  .solution .flex .box {
    padding-top: 160px;
    max-width: 100%;
  }
}

.solution .flex .box:first-child {
  background: url("../img/solution01.png") no-repeat left top;
  background-size: contain;
  margin-top: -18%;
}
@media screen and (max-width: 768px) {
  .solution .flex .box:first-child {
    margin-top: 0;
  }
}

.solution .flex .box:first-child > div {
  margin-left: 0;
}

.solution .flex .box:nth-child(2) {
  background: url("../img/solution02.png") no-repeat left top;
  background-size: contain;
}

.solution .flex .box:nth-child(2) > div {
  margin-left: 0;
}

.solution .flex .box:last-child {
  background: url("../img/solution03.png") no-repeat left top;
  background-size: contain;
  margin-top: -18%;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .solution .flex .box:last-child {
    margin-top: 0;
  }
}

.solution .flex .box:last-child > div {
  margin-left: 0;
}

.solution .flex .box > div {
  padding: 40px;
  background-color: #fff;
  box-shadow: -6px 10px 30px 0px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
  .solution .flex .box > div {
    padding: 24px 16px;
  }
}

.solution .flex .box > div h4 {
  font-size: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .solution .flex .box > div h4 {
    text-align: center;
  }
}

.solution .flex .box > div p {
  font-size: 16px;
  line-height: 1.55;
}

.company {
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .company {
    padding-top: 0;
    padding-bottom: 64px;
  }
}

.company .flex {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .company .flex {
    width: calc(100% - 48px);
    flex-direction: column;
    gap: 0;
  }
}

.company .flex > img {
  display: none;
  width: 40%;
  object-fit: contain;
  margin-right: 10%;
}
@media screen and (max-width: 1199px) {
  .company .flex > img {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .company .flex .right-box {
    margin-top: 16px;
    text-align: center;
  }
}

.company .flex .right-box img {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .company .flex .right-box img {
    margin-bottom: 16px;
  }
}

.company .flex .right-box h2 {
  font-size: 31px;
  line-height: 1.54;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .company .flex .right-box h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.company .flex .right-box p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .company .flex .right-box p {
    text-align: left;
  }
}

.company .flex:last-child {
  margin-top: 80px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company .flex:last-child {
    margin-top: 64px;
    flex-direction: column;
  }
}
@media screen and (max-width: 1199px) {
  .company .flex:last-child .iframe {
    width: 50%;
    position: relative;
    padding-bottom: 50%;
  }
}
@media screen and (max-width: 768px) {
  .company .flex:last-child .iframe {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .company .flex:last-child .iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.company .flex table {
  margin-right: 20%;
}
@media screen and (max-width: 768px) {
  .company .flex table {
    margin: 0 0 32px;
  }
}

.company .flex table th {
  font-size: 16px;
  color: #000;
  font-weight: normal;
  line-height: 3.1;
  width: 80px;
}
.company .flex table td {
  font-size: 16px;
  color: #000;
  padding-left: 40px;
  line-height: 3.1;
}
@media screen and (max-width: 768px) {
  .company .flex table td {
    font-size: 15px;
    padding-left: 24px;
  }
}

.company .flex table td.address {
  line-height: 30px;
}

.contact {
  background: url("../img/contact01.png") no-repeat;
  background-size: cover;
  padding-top: 90px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .contact {
    background-position: center top;
    padding: 40px 24px;
  }
}

.contact .flex {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact .flex {
    flex-direction: column;
    gap: 48px;
  }
}

.contact .flex .left-box {
  margin-left: 10%;
}
@media screen and (max-width: 768px) {
  .contact .flex .left-box {
    margin-left: 0;
  }
}

.contact .flex .left-box h2 {
  font-size: 33px;
  line-height: 1.45;
  color: #fff;
  margin-bottom: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact .flex .left-box h2 {
    font-size: 24px;
  }
}

.contact .flex .left-box h2:before {
  content: "";
  height: 1px;
  background-color: #91919B;
  width: 157px;
  display: block;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact .flex .left-box h2:before {
    width: 80px;
    margin-bottom: 24px;
  }
}

.contact .flex .left-box p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.contact .flex .left-box h2 + p {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact .flex .left-box h2 + p {
    margin-bottom: 40px;
  }
}

.contact .flex .left-box p.tel {
  font-size: 32px;
  color: #fff;
  margin-top: 15px;
  margin-bottom: 15px;
}

.contact .flex .right-box {
  margin-right: 10%;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .contact .flex .right-box {
    margin-right: 0;
    width: 100%;
  }
}

.contact .flex .right-box input[type=text],
.contact .flex .right-box input[type=email],
.contact .flex .right-box input[type=tel] {
  background-color: #fff;
  display: block;
  width: 100%;
  height: 37px;
  border-radius: 3px;
  margin-bottom: 24px;
  padding: 0 10px;
}

.contact textarea {
  background-color: #fff;
  border-radius: 3px;
  padding: 10px;
  width: 100%;
}

.contact select {
  background-color: #fff;
  width: 100%;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 24px;
  color: #777;
}

.contact .flex .right-box input[type=checkbox] {
  display: inline-block;
}

.contact .flex .right-box label {
  color: #fff;
  font-size: 16px;
}

.contact .flex .right-box input[type=submit] {
  display: block;
  width: 100%;
  background-color: #153667;
  color: #fff;
  border-radius: #fff;
  font-size: 20px;
  margin-top: 24px;
  text-align: center;
  padding: 10px 0;
}

footer {
  background-color: #fff;
}

footer .footer-menu {
  padding: 75px 5% 80px 5%;
  justify-content: space-between;
  background-color: #F1F1F1;
}
@media screen and (max-width: 768px) {
  footer .footer-menu {
    padding: 40px 16px 48px;
    flex-direction: column;
    gap: 32px;
  }
}

footer .footer-menu img {
  object-fit: contain;
  width: 200px;
}

footer .footer-menu nav {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  footer .footer-menu nav {
    flex-direction: column;
    gap: 24px;
  }
}

footer .footer-menu nav > ul > li {
  line-height: 25px;
}
@media screen and (max-width: 768px) {
  footer .footer-menu nav > ul > li {
    line-height: 1;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-menu nav > ul > li ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 4px 0 16px;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-menu nav > ul > li ul li {
    width: calc(50% - 4px);
    flex: 0 0 auto;
  }
}

footer .footer-menu nav > ul > li a {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer-menu nav > ul > li a {
    line-height: 2;
  }
}

@media screen and (max-width: 768px) {
  footer .footer-menu nav > ul > li ul li a {
    font-size: 12px;
    line-height: 1.4;
  }
}

footer .footer-menu nav > ul > li a.child-menu {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer-menu nav > ul > li a.child-menu {
    margin-left: 0;
  }
}

footer p {
  font-size: 12px;
  color: #6D6D6D;
  text-align: center;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  footer p {
    font-size: 10px;
    padding: 24px;
  }
}