html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media screen and (max-width: 750px) {
  html {
    scroll-padding-top: 50px;
  }
}

body {
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .container {
    max-width: 100%;
    padding: 0 4% 0 4%;
  }
}

.section {
  padding: 80px 0 80px;
}
@media screen and (max-width: 750px) {
  .section {
    padding: 40px 0 40px;
  }
}

.section-title {
  font-size: 28px;
  color: rgb(51, 51, 51);
  font-weight: 700;
  text-align: center;
  padding-bottom: 18px;
  margin-bottom: 8px;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .section-title {
    font-size: 17px;
    font-weight: 600;
    padding-bottom: 7.5px;
    margin-bottom: 5px;
    line-height: 1.5;
  }
}
.section-title-border-bottom {
  border-bottom: 2px solid #161737;
}
@media screen and (max-width: 750px) {
  .section-title-border-bottom {
    border-bottom: 1px solid #161737;
  }
}

.title-description {
  font-size: 16px;
  color: rgb(204, 0, 0);
  line-height: 2;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .title-description {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
  }
}

br.pc {
  display: block;
}
@media screen and (max-width: 750px) {
  br.pc {
    display: none;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 750px) {
  br.sp {
    display: block;
  }
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  border-radius: 6px;
  transition: opacity 0.3s;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .btn {
    font-size: 12px;
    font-weight: 500;
    border-radius: 3px;
  }
}
.btn:hover {
  opacity: 0.9;
}
.btn-primary {
  background: #003399;
  color: #fff;
}
.btn-orange {
  background: #ed9b0c;
  color: #fff;
}
.btn-blue {
  background: #2f4eb2;
  color: #fff;
}
.btn-red {
  background: #cc0000;
  color: #fff;
}
.btn-shadow {
  box-shadow: 0px 5px 0px 0px rgba(17, 22, 42, 0.004);
}

.header {
  width: 100%;
  height: 120px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
@media screen and (max-width: 750px) {
  .header {
    height: 50px;
  }
}
.header .header-logo {
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 70px;
}
@media screen and (max-width: 750px) {
  .header .header-logo {
    height: 50px;
  }
}
.header .header-logo .logo {
  float: left;
}
.header .header-logo .logo img {
  width: 382px;
  height: 30px;
}
@media screen and (max-width: 750px) {
  .header .header-logo .logo img {
    width: 210px;
    height: auto;
    object-fit: contain;
  }
}
.header .header-logo .header-cta {
  float: right;
}
@media screen and (max-width: 750px) {
  .header .header-logo .header-cta {
    display: none;
  }
}
.header .header-logo .btn {
  height: 36px;
  border-radius: 6px;
  width: 200px;
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
  font-size: 18px;
  font-weight: 500;
  color: rgb(255, 255, 255);
}
.header .header-logo .btn:hover {
  background-color: #cc0000;
  box-sizing: border-box;
}
.header .header-menu {
  background-color: rgb(21, 43, 81);
  width: 100%;
  height: 50px;
}
@media screen and (max-width: 750px) {
  .header .header-menu {
    display: none;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .header-inner {
    padding: 0 20px;
  }
}
.header-logo img {
  height: 40px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .header-nav {
    display: none;
  }
}
.header-menu {
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
}
.header-menu-inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .header-menu-inner {
    padding: 0 20px;
  }
}
.header-menu li {
  width: 14.2857142857%;
  height: 100%;
  display: block;
}
.header-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
  padding: 0 10px;
  color: #fff;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-menu li a:hover {
  color: #ffcc66;
  background: rgb(0, 0, 0);
}

.sp-menu {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp-menu {
    display: block;
  }
}

#nav {
  display: none;
}
@media screen and (max-width: 750px) {
  #nav {
    display: block;
    position: absolute;
    height: 78vh;
    width: 100%;
    left: 0;
    top: -78vh;
    background: #333;
    transition: 0.7s;
    z-index: 5500;
  }
}
#nav ul {
  padding-top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  border-bottom: 0.5px #999999 solid;
}
#nav ul li {
  list-style-type: none;
  border-right: 0.5px #999999 solid;
  border-bottom: 0.5px #999999 solid;
  text-align: left;
  padding: 19px 15px 19px 15px;
  width: calc((100% - 1px) / 2);
  box-sizing: border-box;
}
#nav ul li a {
  text-align: left;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
}
#nav ul li:first-child {
  border-top: 0.5px #999999 solid;
}
#nav ul li:nth-child(2) {
  border-top: 0.5px #999999 solid;
}
#nav ul li:nth-child(even) {
  border-right: 0;
}
#nav ul li:last-child {
  border-bottom: 0;
}
#nav ul li:last-child(2) {
  border-bottom: 0;
}

#hamburger {
  display: none;
  position: absolute;
  top: 16.5px;
  right: 15px;
  width: 24px;
  height: 13.5px;
  transition: 1s;
}
@media screen and (max-width: 750px) {
  #hamburger {
    display: block;
  }
}

.inner_line {
  display: block;
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: 1s;
  z-index: 6000;
}

#line1 {
  top: 0;
}

#line2 {
  top: 50%;
  bottom: 50%;
  margin: auto;
}

#line3 {
  bottom: 0px;
}

.in {
  transform: translateY(100%);
}

.line_1,
.line_3 {
  background: #000000;
}

.line_1 {
  transform: translateY(10.5px) rotate(-45deg);
  top: 0;
  background: #fff;
}

.line_2 {
  opacity: 0;
}

.line_3 {
  transform: translateY(0px) rotate(45deg);
  bottom: 0;
  background: #fff;
}

.hero {
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .hero {
    overflow: inherit;
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 610px;
  background: url("../img/hero-main.jpg") no-repeat center/cover;
}
@media screen and (max-width: 750px) {
  .hero-content {
    height: auto;
    background: none;
  }
}
.hero-main {
  height: 480px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 750px) {
  .hero-main {
    height: auto;
  }
}
.hero-main::before {
  display: block;
  content: "";
  background-image: -moz-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  background-image: -webkit-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  background-image: -ms-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  position: absolute;
  right: 40.3%;
  top: 0;
  width: 47%;
  height: 610px;
  transform: skewX(-15deg);
}
@media screen and (max-width: 750px) {
  .hero-main::before {
    display: none;
  }
}
.hero-main-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 30px 20px 0;
  width: 100%;
  box-sizing: border-box;
  height: 480px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 750px) {
  .hero-main-inner {
    padding: 13.5px 4% 0;
    height: auto;
    min-height: 377.5px;
    background: url("../img/hero-main-sp.jpg") no-repeat center/cover;
  }
}
.hero-main-inner-btns-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .hero-main-inner-btns-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 2.1%;
    padding: 24px 0 20px;
    position: relative;
  }
}
.hero-main-inner-btns-sp .btn-item {
  width: 31.9333333333%;
}
.hero-main-inner-btns-sp .btn-item .btn-description {
  font-size: 12px;
  color: rgb(255, 204, 102);
  text-align: center;
  margin-bottom: 11px;
  font-weight: 500;
}
.hero-main-inner .btn {
  position: relative;
  z-index: 5;
  height: 64px;
  width: 290px;
  box-shadow: 0px 5px 0px 0px rgb(17, 22, 42);
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .hero-main-inner .btn {
    width: 100%;
    height: 35px;
  }
}
.hero-main-inner .btn:hover {
  background-color: #142562;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.hero-head {
  display: flex;
  flex-direction: row;
  height: 32px;
  gap: 11px;
  margin-bottom: 21px;
}
@media screen and (max-width: 750px) {
  .hero-head {
    flex-direction: column;
    row-gap: 4.5px;
  }
}
.hero-head-item {
  border-radius: 6px;
  background-color: rgb(39, 69, 120);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 8px;
  font-size: 16px;
  color: rgb(255, 204, 102);
}
@media screen and (max-width: 750px) {
  .hero-head-item {
    height: 20px;
    width: fit-content;
    font-size: 10px;
  }
}
.hero-subtext {
  font-size: 30px;
  color: rgb(255, 255, 255);
  text-align: left;
  margin-bottom: 26px;
}
@media screen and (max-width: 750px) {
  .hero-subtext {
    font-size: 15px;
    margin-bottom: 14px;
  }
}
.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.hero-title .title01 {
  font-size: 44px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-align: left;
  width: 100%;
  display: block;
  margin-bottom: 11px;
}
@media screen and (max-width: 750px) {
  .hero-title .title01 {
    font-size: 22px;
    margin-bottom: 11px;
  }
}
.hero-title .title02 {
  font-size: 48px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-align: left;
  width: 100%;
  display: block;
}
@media screen and (max-width: 750px) {
  .hero-title .title02 {
    font-size: 24px;
  }
}
.hero-title .title02 span {
  color: #ffcc66;
  font-size: 98px;
  padding-right: 7px;
  line-height: 1;
  color: rgb(255, 204, 102);
  font-weight: bold;
  -moz-transform: matrix(1.14, 0, 0, 1.140000031, 0, 0);
  -webkit-transform: matrix(1.14, 0, 0, 1.140000031, 0, 0);
  -ms-transform: matrix(1.14, 0, 0, 1.140000031, 0, 0);
  font-family: "arial", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 750px) {
  .hero-title .title02 span {
    font-size: 49.5px;
  }
}
@media screen and (max-width: 750px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 6px;
  }
}
.hero-bottom {
  display: flex;
}
@media screen and (max-width: 750px) {
  .hero-bottom {
    flex-direction: column;
  }
}
.hero-description {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 2.5;
  text-align: left;
}
@media screen and (max-width: 1000px) {
  .hero-description {
    font-size: 13px;
    line-height: 2;
  }
}
@media screen and (max-width: 750px) {
  .hero-description {
    font-size: 11px;
    line-height: 2;
  }
}
.hero-reason {
  width: 100%;
  padding-right: 40px;
  max-width: 531px;
  padding-top: 42px;
}
@media screen and (max-width: 750px) {
  .hero-reason {
    display: none;
  }
}
.hero-reason h3 {
  font-size: 24px;
  color: rgb(255, 204, 102);
  font-weight: bold;
  text-align: center;
  margin-bottom: 13px;
}
.hero-reason .hero-reason-grid {
  display: flex;
  justify-content: space-between;
  height: 80px;
  margin-bottom: 13px;
}
.hero-reason .hero-reason-grid .item {
  width: 33.333%;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 80px;
}
.hero-reason .hero-reason-grid .item .text {
  height: 100%;
  display: flex;
  font-size: 17px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1.5;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-reason .hero-reason-grid .item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  transform: skewX(-15deg);
  background-image: -moz-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  background-image: -webkit-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  background-image: -ms-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
}
.hero-actions {
  width: 100%;
  margin: 0 auto;
  background-image: -moz-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  background-image: -webkit-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  background-image: -ms-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
}
.hero-actions-inner-pc {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 45px;
  padding: 32px 0 36px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .hero-actions-inner-pc {
    display: none;
  }
}
.hero-actions .btn {
  position: relative;
  z-index: 5;
  height: 64px;
  width: 290px;
  box-shadow: 0px 5px 0px 0px rgb(17, 22, 42);
  align-items: center;
  display: flex;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .hero-actions .btn {
    width: calc((100% - 30px) / 3);
    height: 35px;
    min-width: 105px;
  }
}
.hero-actions .btn:hover {
  background-color: #142562;
  border: 1px solid #fff;
  box-sizing: border-box;
}
.hero-sp-block {
  display: none;
}
@media screen and (max-width: 750px) {
  .hero-sp-block {
    background-image: url(../img/hero-sp.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    display: block;
    position: relative;
    height: 222.5px;
    min-height: 222.5px;
    width: 100%;
  }
}
.hero-sp-block-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 222.5px;
  width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 750/445;
  object-fit: cover;
}
.hero-sp-block-reason {
  width: 100%;
  height: 72.5px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(21, 43, 81, 0.749);
}
.hero-sp-block-reason h3 {
  text-align: center;
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgb(255, 204, 102);
  font-weight: 600;
}
.hero-sp-block-reason .hero-reason-grid {
  display: flex;
  justify-content: space-between;
  height: 40px;
  margin-bottom: 13px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .hero-sp-block-reason .hero-reason-grid {
    justify-content: center;
    height: 38px;
  }
}
.hero-sp-block-reason .hero-reason-grid .item {
  width: 33.333%;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 40px;
}
.hero-sp-block-reason .hero-reason-grid .item .text {
  height: 100%;
  display: flex;
  font-size: 10px;
  color: rgb(255, 255, 255);
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
}
.hero-sp-block-reason .hero-reason-grid .item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 105%;
  z-index: -1;
  transform: skewX(-15deg);
  background-image: -moz-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  background-image: -webkit-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  background-image: -ms-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
}

.recommend-section {
  padding-top: 70px;
  padding-bottom: 0px;
}
@media screen and (max-width: 750px) {
  .recommend-section {
    padding-top: 26px;
  }
}

.recommend-grid {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .recommend-grid {
    flex-direction: column;
  }
}
.recommend-grid .recommend-item {
  width: 31.6666666667%;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .recommend-grid .recommend-item {
    width: 100%;
  }
}
.recommend-grid .recommend-item .recommend-image {
  padding: 10px;
}
@media screen and (max-width: 750px) {
  .recommend-grid .recommend-item .recommend-image {
    padding: 10px 0 10px 0;
    width: 62px;
  }
}
.recommend-grid .recommend-item .department {
  background-image: -moz-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  background-image: -webkit-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  background-image: -ms-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  width: 100%;
  height: 35px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
  .recommend-grid .recommend-item .department {
    font-size: 12px;
    height: 28px;
  }
}
.recommend-grid .recommend-item h3 {
  font-size: 18px;
  color: rgb(51, 51, 51);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .recommend-grid .recommend-item h3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 750px) {
  .recommend-grid .recommend-item ul {
    max-width: 84%;
    margin: 0 auto;
    width: 100%;
  }
}
.recommend-grid .recommend-item ul li {
  font-size: 15px;
  color: rgb(51, 51, 51);
  text-align: left;
  padding-left: 20px;
  position: relative;
  margin-bottom: 19px;
}
@media screen and (max-width: 750px) {
  .recommend-grid .recommend-item ul li {
    font-size: 13px;
    margin-bottom: 13.5px;
    padding-left: 15px;
  }
}
.recommend-grid .recommend-item ul li::before {
  display: block;
  content: "";
  background-color: rgb(7, 79, 151);
  position: absolute;
  width: 12px;
  height: 4px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .recommend-grid .recommend-item ul li::before {
    width: 9px;
    height: 3px;
  }
}

.issue-section {
  padding-top: 60px;
}
@media screen and (max-width: 750px) {
  .issue-section {
    padding-top: 27px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 750px) {
  .issue-section .section-title-border-bottom {
    padding-bottom: 13.5px;
    margin-bottom: 12px;
  }
}

.issue-bg {
  padding-top: 80px;
  background: url(../img/issue-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  min-height: 525px;
  width: 100%;
  position: relative;
  margin-bottom: 146px;
}
@media screen and (max-width: 750px) {
  .issue-bg {
    padding-top: 30px;
    background: url(../img/issue-bg-sp.png);
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
    min-height: 768px;
    margin-bottom: 75px;
  }
}
.issue-bg .issue-worries {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -154px;
}
@media screen and (max-width: 750px) {
  .issue-bg .issue-worries {
    width: 89.5px;
    bottom: -88px;
  }
}

.issue-grid {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}
@media screen and (max-width: 750px) {
  .issue-grid {
    padding-top: 0;
    flex-direction: column;
  }
}
.issue-grid .issue-item {
  width: 31.6666666667%;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .issue-grid .issue-item {
    max-width: 84%;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 15px;
  }
}
.issue-grid .issue-item h3 {
  font-size: 20px;
  color: rgb(7, 79, 151);
  font-weight: 700;
  text-align: left;
  padding-left: 31px;
  position: relative;
  margin-bottom: 6px;
}
@media screen and (max-width: 750px) {
  .issue-grid .issue-item h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 13px;
    padding-left: 24px;
  }
}
.issue-grid .issue-item h3::before {
  display: block;
  content: "";
  background-image: url(../img/issue-check-icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .issue-grid .issue-item h3::before {
    width: 15px;
    height: 15px;
  }
}
.issue-grid .issue-item .issue-content {
  font-size: 15px;
  color: rgb(0, 0, 0);
  line-height: 1.5;
  text-align: left;
  margin-bottom: 19px;
}
@media screen and (max-width: 750px) {
  .issue-grid .issue-item .issue-content {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
  }
}
.issue-grid .issue-item ul li {
  font-size: 15px;
  color: rgb(51, 51, 51);
  text-align: left;
  padding-left: 20px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .issue-grid .issue-item ul li {
    font-size: 13px;
    margin-bottom: 13px;
    padding-left: 15px;
  }
}
.issue-grid .issue-item ul li::before {
  display: block;
  content: "";
  background-color: rgb(7, 79, 151);
  position: absolute;
  width: 12px;
  height: 4px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .issue-grid .issue-item ul li::before {
    width: 9px;
    height: 3px;
  }
}

.issue-result {
  padding-top: 29px;
}
.issue-result h3 {
  font-size: 24px;
  color: rgb(7, 79, 151);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .issue-result h3 {
    font-size: 15px;
    margin-bottom: 7px;
  }
}
.issue-result-content {
  font-size: 16px;
  color: rgb(51, 51, 51);
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .issue-result-content {
    font-size: 13px;
  }
}

.reason-section {
  padding-top: 0;
  padding-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .reason-section {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .reason-section .section-title-border-bottom {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}

.reason-grid {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
@media screen and (max-width: 750px) {
  .reason-grid {
    padding-top: 0;
    flex-direction: column;
    justify-content: center;
    row-gap: 20px;
    margin-bottom: 42px;
  }
}
.reason-grid .reason-item {
  width: 48.75%;
  text-align: center;
  border-radius: 20px;
  background-color: rgb(246, 248, 252);
  height: 450px;
  padding: 33px 32px 32px;
}
@media screen and (max-width: 750px) {
  .reason-grid .reason-item {
    width: 100%;
    padding: 40px 32px 28px;
    height: 340px;
  }
}
.reason-grid .reason-item h3 {
  font-size: 24px;
  color: rgb(7, 79, 151);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 750px) {
  .reason-grid .reason-item h3 {
    font-size: 18px;
    margin-bottom: 8.5px;
  }
}
.reason-grid .reason-item .reason-content {
  font-size: 16px;
  color: rgb(51, 51, 51);
  line-height: 2;
  text-align: center;
  margin-bottom: 34px;
}
@media screen and (max-width: 750px) {
  .reason-grid .reason-item .reason-content {
    font-size: 13px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 750px) {
  .reason-grid .reason-item img {
    height: 104px;
  }
}

.strength-section {
  padding-bottom: 24px;
  padding-top: 0;
}
.strength-section .section-title-wide {
  width: 100%;
  background-image: -moz-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  background-image: -webkit-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  background-image: -ms-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  height: 100px;
  font-size: 28px;
  color: rgb(255, 204, 102);
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .strength-section .section-title-wide {
    font-size: 17px;
    font-weight: 600;
    height: 50px;
  }
}
.strength-section .strength-wrapper {
  padding-bottom: 36px;
  max-height: 420px;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 750px) {
  .strength-section .strength-wrapper {
    max-height: inherit;
    height: auto;
  }
}
.strength-section .strength-wrapper .strength-bg {
  position: absolute;
  background-image: url(../img/strength-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 26px;
  top: 0;
  left: 0;
  width: 100%;
  height: 72vh;
  max-height: 350px;
}
@media screen and (max-width: 750px) {
  .strength-section .strength-wrapper .strength-bg {
    position: relative;
    padding-top: 10px;
    background-image: url(../img/strength-bg-sp.jpg);
    min-height: 570px;
    max-height: 100vh;
  }
}
.strength-section .title-description {
  font-size: 16px;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 28px;
}
@media screen and (max-width: 750px) {
  .strength-section .title-description {
    font-size: 13px;
    line-height: 2;
    font-weight: 500;
    margin-bottom: 20px;
  }
}
.strength-section .strength-grid {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .strength-section .strength-grid {
    flex-direction: column;
    row-gap: 20px;
  }
}
.strength-section .strength-grid .strength-item {
  padding: 28px 25px 25px;
  width: 31.6666666667%;
  text-align: center;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  height: 300px;
  box-shadow: 0px 0px 20px 0px rgba(86, 107, 128, 0.5);
}
@media screen and (max-width: 750px) {
  .strength-section .strength-grid .strength-item {
    width: 100%;
    padding: 13px 22.5px 20px;
    height: 158px;
  }
}
.strength-section .strength-grid .strength-item h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
@media screen and (max-width: 750px) {
  .strength-section .strength-grid .strength-item h3 {
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 750px) {
  .strength-section .strength-grid .strength-item h3 img {
    width: 40px;
    height: 40px;
  }
}
.strength-section .strength-grid .strength-item h3 .title-text {
  font-size: 20px;
  color: rgb(51, 51, 51);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .strength-section .strength-grid .strength-item h3 .title-text {
    font-size: 16px;
  }
}
.strength-section .strength-grid .strength-item .strength-content {
  font-size: 16px;
  color: rgb(51, 51, 51);
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .strength-section .strength-grid .strength-item .strength-content {
    font-size: 13px;
  }
}

.support-section {
  padding-top: 20px;
  padding-bottom: 80px;
}
@media screen and (max-width: 750px) {
  .support-section {
    padding-bottom: 40px;
    padding-top: 0;
  }
}
@media screen and (max-width: 750px) {
  .support-section .section-title-border-bottom {
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
}
.support-section .btn {
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  background-color: rgb(237, 155, 12);
  width: 435px;
  height: 76px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  text-align: center;
  box-shadow: 0px 5px 0px 0px rgb(17, 22, 42);
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .support-section .btn {
    font-size: 15px;
    width: 100%;
    height: 60px;
  }
}
.support-section .btn::after {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #ffffff;
  border-right: 0;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .support-section .btn::after {
    width: 18px;
    height: 14px;
    right: 16px;
  }
}
.support-section .btn:hover {
  background-color: #142562;
  border: 1px solid rgb(17, 22, 42);
  box-sizing: border-box;
  opacity: 1;
}

.support-image-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .support-image-sp {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 0;
  }
}

.support-grid {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .support-grid {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.support-grid .support-item {
  min-width: 308px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .support-grid .support-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.support-grid .support-item .title-block {
  background-image: url(../img/support-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 269px;
  width: 308px;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .support-grid .support-item .title-block {
    min-width: 153px;
    width: 153px;
    height: 135px;
  }
}
.support-grid .support-item .title-block-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 41px;
}
.support-grid .support-item .title-block .support-number {
  font-size: 24px;
  color: rgb(7, 79, 151);
  font-weight: bold;
  text-align: center;
  margin-bottom: 18px;
}
.support-grid .support-item .title-block .support-group {
  font-size: 18px;
  color: rgb(51, 51, 51);
  text-align: center;
  margin-bottom: 13px;
}
.support-grid .support-item .title-block h3 {
  font-size: 24px;
  color: rgb(7, 79, 151);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .support-grid .support-item .title-block {
    display: none;
  }
}
.support-grid .support-item .support-description {
  font-size: 16px;
  color: rgb(51, 51, 51);
  line-height: 2;
  text-align: center;
  margin-bottom: 37px;
}
@media screen and (max-width: 750px) {
  .support-grid .support-item .support-description {
    text-align: left;
    font-size: 13px;
    margin-bottom: 27px;
    max-width: 84%;
    margin: 0 auto;
    width: 100%;
    padding-left: 25px;
    position: relative;
  }
}
.support-grid .support-item .support-description .number {
  display: none;
}
@media screen and (max-width: 750px) {
  .support-grid .support-item .support-description .number {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: rgb(7, 79, 151);
    font-weight: 700;
  }
}
.support-grid .support-item:last-child .title-block h3 {
  line-height: 1.3;
}
.support-grid .support-item:first-child,
.support-grid .support-item:last-child {
  padding-top: 70px;
}
@media screen and (max-width: 750px) {
  .support-grid .support-item:first-child,
  .support-grid .support-item:last-child {
    padding-top: 0;
  }
}

.case-section {
  background-color: #f6f8fc;
  padding: 70px 0 0;
}
@media screen and (max-width: 750px) {
  .case-section {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 750px) {
  .case-section .section-title-border-bottom {
    margin-bottom: 14px;
  }
}
.case-section .title-description {
  padding-bottom: 26px;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .case-section .title-description {
    padding-bottom: 20px;
  }
}

.case-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  row-gap: 12.5px;
}
@media screen and (max-width: 750px) {
  .case-grid {
    row-gap: 12.5px;
    margin-bottom: 13px;
  }
}
.case-grid .case-item {
  width: 23.4375%;
  text-align: center;
  border-width: 1px;
  border-color: rgb(7, 79, 151);
  border-style: solid;
  background-color: rgb(255, 255, 255);
  width: 223px;
}
@media screen and (max-width: 750px) {
  .case-grid .case-item {
    width: 48%;
  }
}
.case-grid .case-item h3 {
  font-size: 15px;
  color: rgb(255, 255, 255);
  text-align: center;
  background-color: rgb(7, 79, 151);
  width: 100%;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .case-grid .case-item h3 {
    font-size: 11px;
    font-weight: 500;
    height: 25px;
  }
}
.case-grid .case-item .case-description {
  padding: 12px;
  font-size: 15px;
  color: rgb(51, 51, 51);
  line-height: 1.5;
  text-align: center;
  height: 65px;
}
@media screen and (max-width: 750px) {
  .case-grid .case-item .case-description {
    font-size: 11px;
    font-weight: 500;
    height: 48px;
    padding: 10px;
  }
}

.swiper {
  padding: 30px 0 50px;
  margin-bottom: 28px;
}
@media screen and (max-width: 750px) {
  .swiper {
    padding: 15px 0 45px;
    margin-bottom: 10px;
  }
}

.swiper-slide {
  width: 878px;
}
@media screen and (max-width: 750px) {
  .swiper-slide {
    width: 100%;
  }
}
.swiper-slide .slide-item {
  display: flex;
  background-color: rgb(255, 255, 255);
  padding: 0 37px;
  gap: 40px;
  box-shadow: 0px 0px 20px 0px rgba(205, 227, 250, 0.5);
  min-height: 550px;
}
@media screen and (max-width: 750px) {
  .swiper-slide .slide-item {
    width: 89.4%;
    padding: 0 5.3%;
    flex-direction: column;
    margin: 0 auto;
    gap: 0;
    min-height: 730px;
  }
}
.swiper-slide .block-l,
.swiper-slide .block-r {
  width: 50%;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-l,
  .swiper-slide .block-r {
    width: 100%;
  }
}
.swiper-slide .block-l {
  position: relative;
  padding: 52px 0 20px;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-l {
    padding: 26px 0 18px;
  }
}
.swiper-slide .block-l .achievement-product {
  background-color: rgb(51, 51, 51);
  position: absolute;
  left: 0;
  top: 0;
  width: 155px;
  height: 27px;
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-l .achievement-product {
    width: 100px;
    height: 17.5px;
    font-size: 9px;
    margin-bottom: 13.5px;
  }
}
.swiper-slide .block-l h3 {
  font-size: 24px;
  color: rgb(51, 51, 51);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-l h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    min-height: 46px;
  }
}
.swiper-slide .block-l .company-name {
  font-size: 18px;
  color: rgb(7, 79, 151);
  text-align: left;
  margin-bottom: 11px;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-l .company-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
  }
}
.swiper-slide .block-l .industry {
  font-size: 15px;
  color: rgb(7, 79, 151);
  line-height: 1.5;
  text-align: left;
  margin-bottom: 22px;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-l .industry {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
  }
}
.swiper-slide .block-l .achievement-image {
  width: 400px;
  height: auto;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-l .achievement-image {
    width: 100%;
  }
}
.swiper-slide .block-r {
  padding: 57px 0 20px;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-r {
    padding: 0 0 37.5px;
  }
}
.swiper-slide .block-r h4 {
  font-size: 16px;
  color: rgb(7, 79, 151);
  text-align: left;
  border-bottom: 1px solid #074f97;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-r h4 {
    font-size: 13px;
    font-weight: 500;
    padding-bottom: 7px;
    margin-bottom: 8px;
  }
}
.swiper-slide .block-r .achievement-content {
  font-size: 15px;
  color: rgb(51, 51, 51);
  line-height: 1.5;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-r .achievement-content {
    margin-bottom: 15px;
    font-size: 12px;
    line-height: 2;
  }
}
.swiper-slide .block-r .achievement-content-block {
  display: flex;
  flex-direction: row;
  gap: 9px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-r .achievement-content-block {
    gap: 6px;
  }
}
.swiper-slide .block-r .achievement-content-block .product-item {
  border-width: 1px;
  border-color: rgb(102, 102, 102);
  border-style: solid;
  background-color: rgb(255, 255, 255);
  font-size: 13px;
  text-align: center;
  height: 24px;
  border-radius: 12px;
  padding: 4px 12px;
  white-space: nowrap;
}
@media screen and (max-width: 750px) {
  .swiper-slide .block-r .achievement-content-block .product-item {
    font-size: 10.5px;
    height: 20px;
    padding: 4px 11px;
  }
}

.swiper-pagination-bullet {
  background: #666666;
  border-radius: 0;
  height: 12px;
  width: 12px;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #074f97;
}

.swiper-button-prev {
  left: 14.2%;
  right: auto;
}
@media screen and (max-width: 750px) {
  .swiper-button-prev {
    left: 0;
  }
}

.swiper-button-next {
  right: 14.2%;
  left: auto;
}
@media screen and (max-width: 750px) {
  .swiper-button-next {
    right: 0;
  }
}

.swiper-button-prev,
.swiper-button-next {
  height: 28px;
  width: 22px;
}
@media screen and (max-width: 750px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
    background-color: rgba(134, 145, 157, 0.702);
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 28px;
  margin: auto;
  width: 22px;
}
@media screen and (max-width: 750px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    height: 14px;
    width: 11px;
  }
}

.swiper-button-prev::after {
  background-image: url(../img/arrow-prev.png);
}

.swiper-button-next::after {
  background-image: url(../img/arrow-next.png);
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.cta-block {
  padding: 0 0 78px;
}
@media screen and (max-width: 750px) {
  .cta-block {
    padding: 0 0 40px;
  }
}
.cta-block .section-title {
  font-size: 24px;
  color: rgb(7, 79, 151);
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .cta-block .section-title {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 0;
  }
}
.cta-block .title-description {
  font-size: 16px;
  color: rgb(51, 51, 51);
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 32px;
}
@media screen and (max-width: 750px) {
  .cta-block .title-description {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 22px;
  }
}
.cta-block .btn {
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0px 5px 0px 0px rgba(17, 22, 42, 0.004);
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0px 5px 0px 0px rgba(17, 22, 42, 0.004);
  width: 435px;
  height: 76px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s;
  box-shadow: 0px 5px 0px 0px rgb(17, 22, 42);
}
@media screen and (max-width: 750px) {
  .cta-block .btn {
    font-size: 15px;
    width: 100%;
    height: 60px;
  }
}
.cta-block .btn::after {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #ffffff;
  border-right: 0;
  right: 24px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cta-block .btn:hover {
  background-color: #142562;
  box-sizing: border-box;
  opacity: 1;
}

@media screen and (max-width: 750px) {
  .point-section {
    padding-bottom: 32px;
  }
}
.point-section .cta-block {
  padding-bottom: 10px;
}
.point-section .btn {
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0px 5px 0px 0px rgba(17, 22, 42, 0.004);
  width: 435px;
  height: 76px;
  margin: 0 auto;
  font-weight: 400;
  box-shadow: 0px 5px 0px 0px rgb(17, 22, 42);
}
@media screen and (max-width: 750px) {
  .point-section .btn {
    font-size: 15px;
    width: 100%;
    height: 60px;
  }
}

.check-content h3 {
  font-size: 18px;
  color: rgb(51, 51, 51);
  text-align: center;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .check-content h3 {
    font-size: 15px;
  }
}
.check-content table.check-table {
  width: 100%;
  min-width: 960px;
}
.check-content table.check-table tr {
  display: flex;
  width: 100%;
}
.check-content table.check-table tr th {
  background-color: rgb(137, 144, 156);
  width: 25%;
  height: 63px;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 750px) {
  .check-content table.check-table tr th {
    height: 46px;
    font-size: 10px;
  }
}
.check-content table.check-table tr th:nth-child(2) {
  background: #152b51;
}
.check-content table.check-table tr th:nth-child(3),
.check-content table.check-table tr th:nth-child(4) {
  background: #074f97;
}
.check-content table.check-table tr td {
  width: 25%;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgb(215, 216, 218);
  border-bottom: 1px solid rgb(215, 216, 218);
  font-size: 20px;
  color: rgb(7, 79, 151);
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .check-content table.check-table tr td {
    height: 40px;
    font-size: 12px;
  }
}
.check-content table.check-table tr td:first-child {
  font-size: 15px;
  color: rgb(51, 51, 51);
  line-height: 3.4;
  text-align: center;
  background: #f8fafc;
}
.check-content table.check-table tr td:nth-child(2) {
  background: #dbe9f6;
}
.check-content table.check-table tr td:last-child {
  border-right: 1px solid rgb(215, 216, 218);
}
.check-content .table-wrap {
  overflow-x: inherit;
}
@media screen and (max-width: 750px) {
  .check-content .table-wrap {
    overflow-x: scroll;
  }
}
.check-content .table-note {
  padding: 20px 0 26px;
  font-size: 15px;
  color: rgb(51, 51, 51);
  text-align: left;
}
@media screen and (max-width: 750px) {
  .check-content .table-note {
    line-height: 1.5;
    font-size: 12px;
    padding: 20px 0 9px;
  }
}

.btn-title {
  font-size: 18px;
  color: rgb(204, 0, 0);
  line-height: 1.5;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 500;
}
@media screen and (max-width: 750px) {
  .btn-title {
    line-height: 1.5;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
  }
}

.circle {
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  border: 1px solid #074f97;
  border-radius: 50%;
  content: "";
}

.cost-section {
  padding-bottom: 10px;
  padding-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .cost-section {
    padding-top: 0;
  }
}
.cost-section .cost-title-wide {
  width: 100%;
  background-image: -moz-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  background-image: -webkit-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  background-image: -ms-linear-gradient(180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 35%, rgb(9, 41, 98) 100%);
  height: 100px;
  font-size: 28px;
  color: rgb(255, 204, 102);
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-title-wide {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    height: 85px;
  }
}
.cost-section .cost-bg {
  background-image: url(../img/cost-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 24px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-bg {
    background-image: url(../img/cost-bg-sp.jpg);
    padding-top: 13px;
  }
}
.cost-section .title-description {
  font-size: 16px;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 30px;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .cost-section .title-description {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
}
.cost-section .cost-grid {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid {
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 20px;
  }
}
.cost-section .cost-grid .cost-item {
  padding: 32px 25px 18px;
  width: 31.25%;
  text-align: center;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  height: 370px;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item {
    width: 100%;
    padding: 20px 0 15px;
    border-radius: 10px;
    height: auto;
  }
}
.cost-section .cost-grid .cost-item h3 {
  font-size: 20px;
  color: rgb(204, 0, 0);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item h3 {
    font-size: 16px;
  }
}
.cost-section .cost-grid .cost-item .cost-image {
  height: 119px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item .cost-image {
    height: 84px;
  }
}
.cost-section .cost-grid .cost-item .cost-image img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin: 0 auto;
  display: block;
}
.cost-section .cost-grid .cost-item h4 {
  font-size: 20px;
  color: rgb(7, 79, 151);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 14px;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item h4 {
    font-weight: 600;
    font-size: 15px;
  }
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item ul {
    max-width: 84%;
    margin: 0 auto;
    width: 100%;
  }
}
.cost-section .cost-grid .cost-item ul li {
  font-size: 15px;
  color: rgb(51, 51, 51);
  text-align: left;
  padding-left: 20px;
  position: relative;
  margin-bottom: 18px;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item ul li {
    padding-left: 15px;
    margin-bottom: 11px;
  }
}
.cost-section .cost-grid .cost-item ul li::before {
  display: block;
  content: "";
  background-color: rgb(7, 79, 151);
  position: absolute;
  width: 12px;
  height: 4px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item ul li::before {
    width: 9px;
    height: 3px;
  }
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item:last-child .cost-image {
    height: 100%;
    width: auto;
    object-fit: cover;
    padding: 10px 0;
  }
}
@media screen and (max-width: 750px) {
  .cost-section .cost-grid .cost-item:last-child .cost-image img {
    height: 100%;
    width: auto;
    object-fit: cover;
  }
}
.cost-section .cost-factor {
  background-color: rgba(9, 41, 98, 0.651);
  width: 100%;
  height: 230px;
  padding: 40px 0 46px;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-factor {
    padding: 24px 0 40px;
    height: auto;
  }
}
.cost-section .cost-factor h3 {
  font-size: 20px;
  color: rgb(255, 204, 102);
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-factor h3 {
    font-size: 15px;
    font-weight: 600;
  }
}
.cost-section .cost-factor-block {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-factor-block {
    gap: 20px;
    row-gap: 15px;
  }
}
.cost-section .cost-factor-block .factor-item {
  border-width: 1px;
  border-color: rgb(238, 242, 245);
  border-style: solid;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px 12px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .cost-section .cost-factor-block .factor-item {
    font-size: 12px;
    font-weight: 400;
    padding: 9px 9px;
  }
}

.process-section {
  background: #f6f8fc;
  padding-bottom: 70px;
  padding-top: 70px;
}
@media screen and (max-width: 750px) {
  .process-section {
    padding-bottom: 0;
    padding-top: 22px;
  }
}
.process-section .section-title {
  margin-bottom: 0;
  padding-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .process-section .section-title {
    font-size: 17px;
    font-weight: 600;
  }
}
.process-section .title-description {
  font-size: 16px;
  color: rgb(51, 51, 51);
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .process-section .title-description {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 18px;
  }
}

.process-grid {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .process-grid {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
}
.process-grid .process-item {
  width: 20.78125%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 750px) {
  .process-grid .process-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 750px) {
  .process-grid .process-item-block-l {
    width: 88px;
    position: relative;
  }
}
.process-grid .process-item-block-l::after {
  display: none;
}
@media screen and (max-width: 750px) {
  .process-grid .process-item-block-l::after {
    content: "";
    display: block;
    width: 20px;
    height: 14px;
    background-image: url(../img/flow-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: auto;
    right: 0;
    left: 0;
    margin: auto;
    bottom: 0;
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 750px) {
  .process-grid .process-item-block-r {
    width: 175px;
  }
}
.process-grid .process-item::after {
  content: "";
  display: block;
  width: 54px;
  height: 14px;
  background-image: url(../img/flow-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 102px;
  right: -54px;
}
@media screen and (max-width: 750px) {
  .process-grid .process-item::after {
    display: none;
  }
}
.process-grid .process-item .process-number {
  font-size: 18px;
  color: rgb(7, 79, 151);
  text-align: center;
  margin-bottom: 19px;
}
@media screen and (max-width: 750px) {
  .process-grid .process-item .process-number {
    font-size: 15px;
    margin-bottom: 12px;
  }
}
.process-grid .process-item .process-image {
  width: 130px;
  height: 130px;
  margin: 0 auto;
  margin-bottom: 24px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .process-grid .process-item .process-image {
    width: 73px;
    height: 73px;
  }
  .process-grid .process-item .process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.process-grid .process-item h3 {
  padding: 0 0 18px;
  font-size: 18px;
  color: rgb(204, 0, 0);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .process-grid .process-item h3 {
    font-size: 15px;
    text-align: left;
    padding: 0 0 14px;
  }
}
.process-grid .process-item .process-time {
  font-size: 16px;
  color: rgb(51, 51, 51);
  margin-bottom: 10px;
}
@media screen and (max-width: 750px) {
  .process-grid .process-item .process-time {
    font-size: 13px;
    margin-bottom: 12px;
    text-align: left;
  }
}
.process-grid .process-item ul li {
  font-size: 16px;
  color: rgb(51, 51, 51);
  text-align: left;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .process-grid .process-item ul li {
    font-size: 13px;
  }
}
.process-grid .process-item:last-child::after {
  display: none;
}
.process-grid .process-item:last-child .process-item-block-l::after {
  display: none;
}

.faq-section {
  padding: 70px 0 10px;
}
@media screen and (max-width: 750px) {
  .faq-section {
    padding: 40px 0 10px;
  }
}
.faq-section .section-title {
  margin-bottom: -8px;
}
.faq-section .title-description {
  font-size: 16px;
  color: rgb(51, 51, 51);
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .faq-section .title-description {
    margin-bottom: 25px;
  }
}

.faq-wrapper .accordion-content {
  display: none;
}
.faq-wrapper .accordion-header {
  background-color: rgb(7, 79, 151);
  height: 82px;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 750px) {
  .faq-wrapper .accordion-header {
    height: auto;
    padding: 17px 50px 17px 40px;
    min-height: 70px;
    align-items: flex-start;
  }
}
.faq-wrapper .accordion-header .ttl-q {
  font-size: 34px;
  color: rgb(153, 153, 153);
  line-height: 1.2;
  text-align: left;
  padding-right: 14px;
}
@media screen and (max-width: 750px) {
  .faq-wrapper .accordion-header .ttl-q {
    font-size: 25.5px;
    position: absolute;
    margin: auto;
    left: 14px;
  }
}
.faq-wrapper .accordion-header .question {
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .faq-wrapper .accordion-header .question {
    font-size: 14px;
    line-height: 1.5;
  }
}
.faq-wrapper .accordion-header::before,
.faq-wrapper .accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 40px;
  bottom: 0;
  width: 22px;
  height: 2px;
  margin: auto;
  background: #999999;
}
@media screen and (max-width: 750px) {
  .faq-wrapper .accordion-header::before,
  .faq-wrapper .accordion-header::after {
    top: 0;
    bottom: 0;
    margin: auto;
    right: 14px;
    width: 13px;
  }
}
.faq-wrapper .accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.faq-wrapper .accordion-header.active::after {
  transform: rotate(0deg);
  transition: transform 0.3s;
}
.faq-wrapper .accordion-content {
  background-color: #fff;
  padding: 12px 45px 10px 60px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 750px) {
  .faq-wrapper .accordion-content {
    padding: 22px 12px 8px 20px;
  }
}
.faq-wrapper .accordion-content .ttl-a {
  font-size: 34px;
  color: rgb(153, 153, 153);
  line-height: 1.2;
  text-align: left;
  padding-right: 14px;
  position: absolute;
  margin: auto;
  left: 14px;
}
@media screen and (max-width: 750px) {
  .faq-wrapper .accordion-content .ttl-a {
    font-size: 25.5px;
    position: absolute;
    margin: auto;
    left: 14px;
  }
}
.faq-wrapper .accordion-content .answer {
  font-size: 16px;
  color: rgb(0, 0, 0);
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .faq-wrapper .accordion-content .answer {
    font-size: 13px;
    line-height: 2;
    height: auto;
    padding: 0 12px 8px 20px;
    font-weight: 500;
  }
}
.faq-wrapper .accordion-content {
  display: none;
}

.cta-bottom-section {
  margin-bottom: 0;
  padding-bottom: 0;
}
.cta-bottom-section .cta-bottom-bg {
  background-image: url(../img/cta-bottom-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 67px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-bg {
    background-image: url(../img/cta-bottom-bg-sp.jpg);
    padding-top: 34px;
    padding-bottom: 24px;
  }
}
.cta-bottom-section .section-title {
  width: 100%;
  font-size: 36px;
  color: rgb(255, 204, 102);
  font-weight: 700;
  text-align: left;
  padding-bottom: 0;
  margin-bottom: 34px;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .section-title {
    font-size: 18px;
    text-align: center;
    margin-bottom: 13px;
  }
}
.cta-bottom-section .title-description {
  font-size: 20px;
  color: rgb(255, 255, 255);
  line-height: 2;
  text-align: left;
  margin-bottom: 36px;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .title-description {
    text-align: center;
    font-size: 15px;
    margin-bottom: 16px;
  }
}
.cta-bottom-section .cta-bottom-actions {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions {
    border-radius: 10px;
    margin-bottom: 24px;
  }
}
.cta-bottom-section .cta-bottom-actions::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: -moz-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  background-image: -webkit-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  background-image: -ms-linear-gradient(-180deg, rgb(3, 12, 55) 0%, rgb(25, 32, 95) 43%, rgb(13, 59, 145) 100%);
  opacity: 0.8;
  position: absolute;
  left: 0;
  top: 0;
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner {
  position: relative;
  z-index: 5;
  display: block;
  padding: 28px 60px 50px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner {
    padding: 24px 40px 10px;
  }
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner h3 {
  font-size: 24px;
  color: rgb(255, 204, 102);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner h3 {
    font-size: 16px;
    margin-bottom: 26.5px;
  }
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid {
    flex-direction: column;
  }
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item {
  width: 32%;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item {
    width: 100%;
    padding-bottom: 26px;
  }
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .cta-description-pc {
  font-size: 15px;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 26px;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .cta-description-pc {
    display: none;
  }
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .cta-description-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .cta-description-sp {
    display: block;
    font-size: 15px;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 17px;
  }
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .btn {
  height: 64px;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  margin: 0 auto;
  transition: all 0.3s;
  box-shadow: 0px 5px 0px 0px rgb(17, 22, 42);
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .btn {
    height: 50px;
    max-width: 225px;
  }
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .btn:hover {
  background-color: #142562;
  border: 1px solid #fff;
  box-sizing: border-box;
  opacity: 0.9;
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .btn .pc-text {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .btn .pc-text {
    display: none;
  }
}
.cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .btn .sp-text {
  display: none;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-actions .cta-bottom-actions-inner .cta-bottom-grid .cta-bottom-item .btn .sp-text {
    display: block;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
  }
}
.cta-bottom-section .cta-bottom-block {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-block {
    flex-direction: column;
  }
}
.cta-bottom-section .cta-bottom-block .cta-bottom-block-title {
  font-size: 24px;
  color: rgb(255, 255, 255);
  line-height: 1.5;
  text-align: left;
  padding-right: 90px;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-block .cta-bottom-block-title {
    font-size: 15px;
    padding-right: 0;
    margin-bottom: 20px;
  }
}
.cta-bottom-section .cta-bottom-block ul li {
  font-size: 15px;
  color: rgb(204, 204, 204);
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .cta-bottom-section .cta-bottom-block ul li {
    font-size: 12px;
  }
}

.footer {
  background: #222222;
  padding: 22px 0 40px;
}
@media screen and (max-width: 750px) {
  .footer {
    padding: 0;
  }
}
.footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .footer-inner {
    padding: 0 0;
  }
}
.footer ul.footer-menu {
  margin-bottom: 28px;
  display: flex;
  gap: 21px;
  flex-wrap: wrap;
}
@media screen and (max-width: 750px) {
  .footer ul.footer-menu {
    gap: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 750px) {
  .footer ul.footer-menu li.menu-list {
    height: 36.5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 50%;
    border-right: 0.5px #999999 solid;
    border-bottom: 0.5px #999999 solid;
  }
  .footer ul.footer-menu li.menu-list li:first-child {
    border-top: 0.5px #999999 solid;
  }
  .footer ul.footer-menu li.menu-list li:nth-child(2) {
    border-top: 0.5px #999999 solid;
  }
  .footer ul.footer-menu li.menu-list li:nth-child(even) {
    border-right: 0;
  }
  .footer ul.footer-menu li.menu-list li:last-child {
    border-bottom: 0;
  }
  .footer ul.footer-menu li.menu-list li:last-child(2) {
    border-bottom: 0;
  }
}
.footer ul.footer-menu li.menu-list a {
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-align: left;
  white-space: nowrap;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  .footer ul.footer-menu li.menu-list a {
    padding: 14.5px 15px 14.5px 15px;
    font-size: 9px;
  }
}
.footer ul.footer-menu li.menu-list a.blank {
  padding-right: 14px;
  position: relative;
}
.footer ul.footer-menu li.menu-list a.blank::after {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  background-image: url(../img/blank-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  background-position: center;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
@media screen and (max-width: 750px) {
  .footer ul.footer-menu li.menu-list a.blank::after {
    width: 7.5px;
    height: 7.5px;
  }
}
.footer .copyright {
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-align: left;
}
@media screen and (max-width: 750px) {
  .footer .copyright {
    height: 36.5px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 10px;
    padding: 14.5px 15px;
  }
}/*# sourceMappingURL=style.css.map */