@charset "UTF-8";
button {
   font-size: 200px;
  font-family: inherit;
}

.site-header {
  position: relative;
  height: 73px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999;
  background: #FFF;
}
.site-header > .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin-left: 13px;
}
.site-header > .logo > a img {
  height: 50px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.site-header > .logo > a img:hover {
  opacity: 0.7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.site-header > .hamburger {
  display: none;
}
@media (max-width: 1200px) {
  .site-header > .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    top: 40px;
    right: 20px;
  }
  .site-header > .hamburger > .menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .site-header > .hamburger > .close {
    position: absolute;
    top: -2px;
    left: 4px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.site-header > .hamburger.open > .menu {
  opacity: 0;
  visibility: hidden;
}
.site-header > .hamburger.open > .close {
  opacity: 1;
  visibility: visible;
}
.site-header > .hamburger-menu {
  display: none;
}
@media (max-width: 1200px) {
  .site-header > .hamburger-menu {
    display: block;
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background-color: white;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner {
    padding: 80px;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  .site-header > .hamburger-menu > .hamburger-menu-inner {
    padding: 40px;
  }
}
@media (max-width: 1200px) {
  .site-header > .hamburger-menu > .hamburger-menu-inner > .image-logo a {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > .image-logo a:hover {
    opacity: 0.7;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > .image-logo img {
    width: 240px;
    vertical-align: bottom;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul {
    padding: 32px 0;
    list-style-type: none;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul > li {
    padding-top: 24px;
    font-size: 42px;
    font-weight: bold;
  }
}
@media (max-width: 1200px) and (max-width: 767px) {
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul > li {
    font-size: 36px;
    white-space: nowrap;
  }
}
@media (max-width: 1200px) {
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul > li > a {
    display: inline-block;
    height: 100%;
    color: #57a5a8;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    text-decoration: none;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul > li > a:hover {
    opacity: 0.7;
  }
}
.site-header > .hamburger.open ~ .hamburger-menu {
  left: 0;
}
.site-header .global-menu {
  margin-left: 92px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .site-header .global-menu {
    display: none;
  }
}
.site-header .global-menu > ul {
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 37px;
     -moz-column-gap: 37px;
          column-gap: 37px;
  font-size: 15px;
}
.site-header .global-menu > ul > li > a {
  display: inline-block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: #222222;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.site-header .global-menu > ul > li > a:hover {
  opacity: 0.5;
}
.site-header .contact {
  margin-left: auto;
  background-color: #57a5a8;
  width: 182px;
}
@media (max-width: 1200px) {
  .site-header .contact {
    display: none;
  }
}
.site-header .contact > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 5px;
  width: 100%;
  height: 100%;
  text-decoration: none;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.site-header .contact > a:hover {
  opacity: 0.5;
}
.site-header .contact > a .img-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .contact > a .img-contact img {
  width: 16px;
  height: 16px;
  vertical-align: bottom;
}
.site-header .contact > a p {
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .site-header {
    position: fixed;
    width: 100%;
    background-color: white;
    z-index: 99;
  }
  .site-header > .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    margin-left: 13px;
  }
  .site-header > .logo > a img {
    height: 50px;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .site-header > .logo > a img:hover {
    opacity: 0.7;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .site-header > .hamburger {
    display: none;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .site-header > .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    top: 10px;
    right: 20px;
  }
  .site-header > .hamburger > .menu {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .site-header > .hamburger > .close {
    position: absolute;
    top: -2px;
    left: 4px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
@media screen and (max-width: 1200px) {
  .site-header > .hamburger.open > .menu {
    opacity: 0;
    visibility: hidden;
  }
  .site-header > .hamburger.open > .close {
    opacity: 1;
    visibility: visible;
  }
  .site-header > .hamburger-menu {
    display: none;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .site-header > .hamburger-menu {
    display: block;
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background-color: white;
    top: 0;
    left: -100%;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner {
    padding: 80px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) and (max-width: 767px) {
  .site-header > .hamburger-menu > .hamburger-menu-inner {
    padding: 40px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .site-header > .hamburger-menu > .hamburger-menu-inner > .image-logo a {
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > .image-logo a:hover {
    opacity: 0.7;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > .image-logo img {
    width: 240px;
    vertical-align: bottom;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul {
    padding: 32px 0;
    list-style-type: none;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul > li {
    padding-top: 24px;
    font-size: 42px;
    font-weight: bold;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) and (max-width: 767px) {
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul > li {
    font-size: 36px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul > li > a {
    display: inline-block;
    height: 100%;
    color: #57a5a8;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    text-decoration: none;
  }
  .site-header > .hamburger-menu > .hamburger-menu-inner > nav > ul > li > a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1200px) {
  .site-header > .hamburger.open ~ .hamburger-menu {
    left: 0;
  }
  .site-header .global-menu {
    margin-left: 92px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .site-header .global-menu {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .site-header .global-menu > ul {
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 37px;
       -moz-column-gap: 37px;
            column-gap: 37px;
    font-size: 15px;
  }
  .site-header .global-menu > ul > li > a {
    display: inline-block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: #222222;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  .site-header .global-menu > ul > li > a:hover {
    opacity: 0.5;
  }
  .site-header .contact {
    margin-left: auto;
    background-color: #57a5a8;
    width: 182px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .site-header .contact {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .site-header .contact > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 5px;
    width: 100%;
    height: 100%;
    text-decoration: none;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
  }
  .site-header .contact > a:hover {
    opacity: 0.5;
  }
  .site-header .contact > a .img-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .site-header .contact > a .img-contact img {
    width: 16px;
    height: 16px;
    vertical-align: bottom;
  }
  .site-header .contact > a p {
    color: #fff;
    font-weight: bold;
  }
}
body {
  padding-top: 73px;
}

footer .back-to-top {
  right: 80px;
  bottom: 80px;
  position: fixed;
  z-index: 98;
}
@media (max-width: 767px) {
  footer .back-to-top {
    right: 40px;
    bottom: 40px;
  }
  footer .back-to-top > img {
    height: 80px;
    width: 80px;
  }
}
footer .contact-section {
  height: 257px;
  background-color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 767px) {
  footer .contact-section {
    padding: 0 3%;
  }
}
footer .contact-section > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
footer .contact-section > a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
footer .contact-section > a .contact-block {
  width: 1200px;
  margin: 0 auto;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 1em;
}
@media (max-width: 1200px) {
  footer .contact-section > a .contact-block {
    width: 100%;
    display: block;
  }
}
footer .contact-section > a .contact-block .contact-title {
  position: relative;
  font-size: 36px;
  font-weight: bold;
  color: white;
}
footer .contact-section > a .contact-block .contact-title::before {
  position: absolute;
  top: -20px;
  content: "CONTACT";
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: bold;
}
footer .contact-section > a .contact-block .contact-description {
  color: white;
  font-size: 18px;
  font-weight: 500;
}
footer .contact-section > a .contact-block > .img img {
  width: 20px;
  height: 40px;
  vertical-align: bottom;
}
@media (max-width: 1200px) {
  footer .contact-section > a .contact-block > .img {
    display: none;
  }
}
footer .footer-menu-section {
  background-color: #fff;
}
footer .footer-menu-section > .footer-main-block {
  max-width: 1700px;
  margin: 0 auto;
  padding-top: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  footer .footer-menu-section > .footer-main-block {
    display: block;
  }
}
footer .footer-menu-section > .footer-main-block > .logo-sns {
  margin-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1400px) {
  footer .footer-menu-section > .footer-main-block > .logo-sns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    row-gap: 24px;
  }
}
@media (max-width: 1200px) {
  footer .footer-menu-section > .footer-main-block > .logo-sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 auto 30px 10vw;
  }
}
footer .footer-menu-section > .footer-main-block > .logo-sns > .logo > a > img {
  width: 164px;
  vertical-align: bottom;
}
footer .footer-menu-section > .footer-main-block > .logo-sns > .logo > a > img:hover {
  opacity: 0.7;
}
@media (max-width: 1200px) {
  footer .footer-menu-section > .footer-main-block > .logo-sns > .logo {
    display: none;
  }
}
footer .footer-menu-section > .footer-main-block > .logo-sns > .sns {
  margin-left: 50px;
}
@media (max-width: 1400px) {
  footer .footer-menu-section > .footer-main-block > .logo-sns > .sns {
    margin-left: 0px;
  }
}
footer .footer-menu-section > .footer-main-block > .logo-sns > .sns > a:first-of-type {
  margin-right: 15px;
}
footer .footer-menu-section > .footer-main-block > .logo-sns > .sns > a {
  display: inline-block;
  height: 30px;
}
footer .footer-menu-section > .footer-main-block > .logo-sns > .sns > a > img {
  height: 30px;
}
footer .footer-menu-section > .footer-main-block > .logo-sns > .sns > a > img:hover {
  opacity: 0.7;
}
footer .footer-menu-section > .footer-main-block > .main-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footer-menu-section > .footer-main-block > .main-service > .main-service-img {
  max-width: 329px;
  max-height: 329px;
}
footer .footer-menu-section > .footer-main-block > .main-service > .main-service-img > a {
  display: inline-block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
footer .footer-menu-section > .footer-main-block > .main-service > .main-service-img > a > img {
  width: 329px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
footer .footer-menu-section > .footer-main-block > .main-service > .main-service-img > a > img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
footer .footer-menu-section > .footer-main-block > .dummy {
  width: 299.2px;
}
footer .footer-menu-section .footer-menu-block {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  footer .footer-menu-section .footer-menu-block {
    width: 100%;
  }
}
footer .footer-menu-section .footer-menu-block > .footer-menus {
  padding: 30px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 1200px) {
  footer .footer-menu-section .footer-menu-block > .footer-menus {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  footer .footer-menu-section .footer-menu-block > .footer-menus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
footer .footer-menu-section .footer-menu-block > .footer-menus > .footer-menu {
  padding: 0 30px;
}
@media (max-width: 767px) {
  footer .footer-menu-section .footer-menu-block > .footer-menus > .footer-menu {
    padding: 5px 30px;
  }
}
footer .footer-menu-section .footer-menu-block > .footer-menus > .footer-menu > a {
  color: #222222;
  text-decoration: none;
}
footer .footer-menu-section .footer-menu-block > .footer-menus > .footer-menu > a:hover {
  opacity: 0.7;
}
footer .footer-menu-section .footer-menu-block > .footer-menus > .footer-menu:not(:last-of-type) {
  border-right: 1px solid #222222;
}
@media (max-width: 767px) {
  footer .footer-menu-section .footer-menu-block > .footer-menus > .footer-menu:not(:last-of-type) {
    border-right: none;
  }
}
footer .footer-menu-section .footer-menu-block > .footer-menus > .footer-menu:last-of-type {
  padding: 0 0 0 30px;
}
footer .footer-copyright-section {
  background-color: #f8fcfc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2rem 5%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
footer .footer-copyright-section > p {
  font-size: 10px;
  margin: 0.5em 0;
}

.grecaptcha-badge {
  display: none;
}

.recommend-section .swiper-outer {
  position: relative;
  overflow: hidden;
}
.recommend-section .swiper {
  margin: 60px auto 100px !important;
  width: 100%;
  max-width: 1060px !important;
  height: 360px;
  overflow: visible;
}
@media (max-width: 1200px) {
  .recommend-section .swiper {
    width: 100%;
    margin: 0 auto;
  }
}
.recommend-section .swiper img {
  aspect-ratio: 1120/500;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description {
  background-color: white;
  width: 530px;
  height: 100%;
  padding: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(1) {
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #57a5a8;
  padding: 0px 6px;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(2) {
  margin-top: 14px;
  font-size: 20px;
  font-weight: bold;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(3) {
  margin-top: 14px;
  font-size: 16px;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more {
  color: #57a5a8;
  margin-top: auto;
  margin-bottom: 0;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  position: relative;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more::after {
  position: relative;
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  top: 1px;
  left: 13px;
  background-image: url(../image/right-chevron-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more:hover {
  opacity: 0.7;
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-image {
  width: 530px;
  height: 100%;
}
@media (max-width: 767px) {
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-image {
    display: none;
  }
}
.recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recommend-section .swiper-other {
  height: 37px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 45px;
}
.recommend-section .swiper-other .swiper-button-prev {
  width: 37px;
  height: 37px;
  position: relative;
  top: 10px;
  left: auto;
  right: 28px;
  bottom: auto;
}
.recommend-section .swiper-other .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  background-image: url(../image/swiper-arrow-left.svg);
}
.recommend-section .swiper-other .swiper-button-prev:hover {
  opacity: 0.7;
}
.recommend-section .swiper-other .swiper-button-next {
  width: 37px;
  height: 37px;
  position: relative;
  top: 10px;
  left: 28px;
  right: auto;
  bottom: auto;
}
.recommend-section .swiper-other .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  background-image: url(../image/swiper-arrow-right.svg);
}
.recommend-section .swiper-other .swiper-button-next:hover {
  opacity: 0.7;
}
.recommend-section .swiper-other .swiper-pagination {
  height: 100%;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  bottom: 2px;
}
.recommend-section .swiper-other .swiper-pagination > .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.recommend-section .swiper-other .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #57a5a8;
  width: 15px;
  height: 15px;
}

.related-services-section .swiper-outer {
  position: relative;
  overflow: hidden;
}
.related-services-section .swiper {
  margin: 60px auto 100px !important;
  width: 100%;
  max-width: 1060px !important;
  height: 360px;
  overflow: visible;
}
@media (max-width: 1200px) {
  .related-services-section .swiper {
    width: 100%;
    margin: 0 auto;
  }
}
.related-services-section .swiper img {
  aspect-ratio: 1120/500;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description {
  width: 530px;
  height: 100%;
  padding: 40px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(1) {
  margin-top: 14px;
  font-size: 20px;
  font-weight: bold;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(2) {
  margin-top: 14px;
  font-size: 16px;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more {
  color: #57a5a8;
  margin-top: auto;
  margin-bottom: 0;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  position: relative;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more > a {
  color: #57a5a8;
  text-decoration-line: none;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more::after {
  position: relative;
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  top: 1px;
  left: 13px;
  background-image: url(../image/right-chevron-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more:hover {
  opacity: 0.7;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-image {
  width: 530px;
  height: 100%;
}
.related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-services-section .swiper-other {
  height: 37px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 45px;
}
.related-services-section .swiper-other .swiper-button-prev {
  width: 37px;
  height: 37px;
  position: relative;
  top: 10px;
  left: auto;
  right: 28px;
  bottom: auto;
}
.related-services-section .swiper-other .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  background-image: url(../image/swiper-arrow-left.svg);
}
.related-services-section .swiper-other .swiper-button-prev:hover {
  opacity: 0.7;
}
.related-services-section .swiper-other .swiper-button-next {
  width: 37px;
  height: 37px;
  position: relative;
  top: 10px;
  left: 28px;
  right: auto;
  bottom: auto;
}
.related-services-section .swiper-other .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  background-image: url(../image/swiper-arrow-right.svg);
}
.related-services-section .swiper-other .swiper-button-next:hover {
  opacity: 0.7;
}
.related-services-section .swiper-other .swiper-pagination {
  height: 100%;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  bottom: 2px;
}
.related-services-section .swiper-other .swiper-pagination > .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.related-services-section .swiper-other .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #57a5a8;
  width: 15px;
  height: 15px;
}

.introduction-section .swiper-outer {
  position: relative;
  overflow: hidden;
}
.introduction-section .swiper {
  margin: 60px auto 100px !important;
  width: 100%;
  max-width: 1060px !important;
  height: 480px;
  overflow: visible;
}
@media (max-width: 1200px) {
  .introduction-section .swiper {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .introduction-section .swiper {
    height: 320px;
  }
}
.introduction-section .swiper img {
  aspect-ratio: 1060/480;
  -o-object-fit: cover;
     object-fit: cover;
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image {
  position: relative;
  width: 1060px;
  height: 100%;
}
@media (max-width: 767px) {
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image {
    width: 100%;
    margin: 0 auto;
  }
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 90% center;
     object-position: 90% center;
}
@media (max-width: 1200px) {
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > img {
    -o-object-position: center center;
       object-position: center center;
  }
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description {
  width: 492px;
  height: 246px;
  position: absolute;
  padding: 35px 35px 20px 40px;
  top: 35px;
  left: 45px;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description {
    width: min(80%, 492px);
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(1) {
  color: white;
  font-size: 18px;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #57a5a8;
  padding: 0px 6px;
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(2) {
  margin-top: 14px;
  font-size: 20px;
  font-weight: bold;
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(3) {
  margin-top: 14px;
  font-size: 16px;
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(4) {
  color: #57a5a8;
  margin-top: auto;
  margin-bottom: 0;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 15px;
  font-weight: bold;
  text-align: right;
  position: relative;
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(4) > a {
  color: #57a5a8;
  text-decoration: none;
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(4)::after {
  position: relative;
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  top: 1px;
  left: 13px;
  background-image: url(../image/right-chevron-2.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(4):hover {
  opacity: 0.7;
}
.introduction-section .swiper-other {
  height: 37px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 45px;
}
.introduction-section .swiper-other .swiper-button-prev {
  width: 37px;
  height: 37px;
  position: relative;
  top: 10px;
  left: auto;
  right: 28px;
  bottom: auto;
}
.introduction-section .swiper-other .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  background-image: url(../image/swiper-arrow-left.svg);
}
.introduction-section .swiper-other .swiper-button-prev:hover {
  opacity: 0.7;
}
.introduction-section .swiper-other .swiper-button-next {
  width: 37px;
  height: 37px;
  position: relative;
  top: 10px;
  left: 28px;
  right: auto;
  bottom: auto;
}
.introduction-section .swiper-other .swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  background-image: url(../image/swiper-arrow-right.svg);
}
.introduction-section .swiper-other .swiper-button-next:hover {
  opacity: 0.7;
}
.introduction-section .swiper-other .swiper-pagination {
  height: 100%;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  bottom: 2px;
}
.introduction-section .swiper-other .swiper-pagination > .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
}
.introduction-section .swiper-other .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #57a5a8;
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 1200px) {
  .recommend-section .swiper-outer {
    position: relative;
    overflow: hidden;
  }
  .recommend-section .swiper {
    margin: 60px auto 100px !important;
    width: 100%;
    max-width: 1060px !important;
    height: auto;
    overflow: visible;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .recommend-section .swiper {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  .recommend-section .swiper img {
    aspect-ratio: 1120/500;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description {
    background-color: white;
    width: 530px;
    height: 100%;
    padding: 40px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(1) {
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #57a5a8;
    padding: 0px 6px;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(2) {
    margin-top: 14px;
    font-size: 20px;
    font-weight: bold;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(3) {
    margin-top: 14px;
    font-size: 16px;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more {
    color: #57a5a8;
    margin-top: auto;
    margin-bottom: 0;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
    font-weight: bold;
    text-align: right;
    position: relative;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more::after {
    position: relative;
    content: "";
    display: inline-block;
    width: 8px;
    height: 13px;
    top: 1px;
    left: 13px;
    background-image: url(../image/right-chevron-2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more:hover {
    opacity: 0.7;
  }
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-image {
    width: 530px;
    height: 100%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-image {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .recommend-section .swiper > .swiper-wrapper > .swiper-slide > .service-image > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .recommend-section .swiper-other {
    height: 37px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 45px;
  }
  .recommend-section .swiper-other .swiper-button-prev {
    width: 37px;
    height: 37px;
    position: relative;
    top: 10px;
    left: auto;
    right: 28px;
    bottom: auto;
  }
  .recommend-section .swiper-other .swiper-button-prev::after {
    content: "";
    display: inline-block;
    width: 37px;
    height: 37px;
    background-image: url(../image/swiper-arrow-left.svg);
  }
  .recommend-section .swiper-other .swiper-button-prev:hover {
    opacity: 0.7;
  }
  .recommend-section .swiper-other .swiper-button-next {
    width: 37px;
    height: 37px;
    position: relative;
    top: 10px;
    left: 28px;
    right: auto;
    bottom: auto;
  }
  .recommend-section .swiper-other .swiper-button-next::after {
    content: "";
    display: inline-block;
    width: 37px;
    height: 37px;
    background-image: url(../image/swiper-arrow-right.svg);
  }
  .recommend-section .swiper-other .swiper-button-next:hover {
    opacity: 0.7;
  }
  .recommend-section .swiper-other .swiper-pagination {
    height: 100%;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    bottom: 2px;
  }
  .recommend-section .swiper-other .swiper-pagination > .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  .recommend-section .swiper-other .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #57a5a8;
    width: 15px;
    height: 15px;
  }
  .related-services-section .swiper-outer {
    position: relative;
    overflow: hidden;
  }
  .related-services-section .swiper {
    margin: 60px auto 100px !important;
    width: 100%;
    max-width: 1060px !important;
    height: auto;
    overflow: visible;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .related-services-section .swiper {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  .related-services-section .swiper img {
    aspect-ratio: 1120/500;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description {
    width: 100%;
    height: 100%;
    padding: 40px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(1) {
    margin-top: 14px;
    font-size: 20px;
    font-weight: bold;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description > p:nth-of-type(2) {
    margin-top: 14px;
    font-size: 16px;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more {
    color: #57a5a8;
    margin-top: auto;
    margin-bottom: 0;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
    font-weight: bold;
    text-align: right;
    position: relative;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more > a {
    color: #57a5a8;
    text-decoration-line: none;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more::after {
    position: relative;
    content: "";
    display: inline-block;
    width: 8px;
    height: 13px;
    top: 1px;
    left: 13px;
    background-image: url(../image/right-chevron-2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-description .more:hover {
    opacity: 0.7;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-image {
    width: 530px;
    height: 100%;
  }
  .related-services-section .swiper > .swiper-wrapper > .swiper-slide > .service-image > img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .related-services-section .swiper-other {
    height: 37px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 45px;
  }
  .related-services-section .swiper-other .swiper-button-prev {
    width: 37px;
    height: 37px;
    position: relative;
    top: 10px;
    left: auto;
    right: 28px;
    bottom: auto;
  }
  .related-services-section .swiper-other .swiper-button-prev::after {
    content: "";
    display: inline-block;
    width: 37px;
    height: 37px;
    background-image: url(../image/swiper-arrow-left.svg);
  }
  .related-services-section .swiper-other .swiper-button-prev:hover {
    opacity: 0.7;
  }
  .related-services-section .swiper-other .swiper-button-next {
    width: 37px;
    height: 37px;
    position: relative;
    top: 10px;
    left: 28px;
    right: auto;
    bottom: auto;
  }
  .related-services-section .swiper-other .swiper-button-next::after {
    content: "";
    display: inline-block;
    width: 37px;
    height: 37px;
    background-image: url(../image/swiper-arrow-right.svg);
  }
  .related-services-section .swiper-other .swiper-button-next:hover {
    opacity: 0.7;
  }
  .related-services-section .swiper-other .swiper-pagination {
    height: 100%;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    bottom: 2px;
  }
  .related-services-section .swiper-other .swiper-pagination > .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  .related-services-section .swiper-other .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #57a5a8;
    width: 15px;
    height: 15px;
  }
  .introduction-section .swiper-outer {
    position: relative;
    overflow: hidden;
  }
  .introduction-section .swiper {
    margin: 60px auto 100px !important;
    width: 100%;
    max-width: 1060px !important;
    height: auto !important;
    overflow: visible;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .introduction-section .swiper {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .introduction-section .swiper {
    height: 320px;
  }
}
@media screen and (max-width: 1200px) {
  .introduction-section .swiper img {
    aspect-ratio: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image {
    position: relative;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image {
    width: 100%;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 1200px) {
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > img {
    width: 100%;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description {
    width: 492px;
    height: auto;
    position: relative;
    padding: 35px 35px 20px 40px;
    top: 35px;
    left: 0px;
    background-color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description {
    width: min(80%, 492px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 1200px) {
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(1) {
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #57a5a8;
    padding: 0px 6px;
  }
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(2) {
    margin-top: 14px;
    font-size: 20px;
    font-weight: bold;
  }
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(3) {
    margin-top: 14px;
    font-size: 16px;
  }
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(4) {
    color: #57a5a8;
    margin-top: auto;
    margin-bottom: 0;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
    font-weight: bold;
    text-align: right;
    position: relative;
  }
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(4) > a {
    color: #57a5a8;
    text-decoration: none;
  }
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(4)::after {
    position: relative;
    content: "";
    display: inline-block;
    width: 8px;
    height: 13px;
    top: 1px;
    left: 13px;
    background-image: url(../image/right-chevron-2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .introduction-section .swiper > .swiper-wrapper > .swiper-slide > .introduction-image > .introduction-description > p:nth-of-type(4):hover {
    opacity: 0.7;
  }
  .introduction-section .swiper-other {
    height: 37px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: 45px;
  }
  .introduction-section .swiper-other .swiper-button-prev {
    width: 37px;
    height: 37px;
    position: relative;
    top: 10px;
    left: auto;
    right: 28px;
    bottom: auto;
  }
  .introduction-section .swiper-other .swiper-button-prev::after {
    content: "";
    display: inline-block;
    width: 37px;
    height: 37px;
    background-image: url(../image/swiper-arrow-left.svg);
  }
  .introduction-section .swiper-other .swiper-button-prev:hover {
    opacity: 0.7;
  }
  .introduction-section .swiper-other .swiper-button-next {
    width: 37px;
    height: 37px;
    position: relative;
    top: 10px;
    left: 28px;
    right: auto;
    bottom: auto;
  }
  .introduction-section .swiper-other .swiper-button-next::after {
    content: "";
    display: inline-block;
    width: 37px;
    height: 37px;
    background-image: url(../image/swiper-arrow-right.svg);
  }
  .introduction-section .swiper-other .swiper-button-next:hover {
    opacity: 0.7;
  }
  .introduction-section .swiper-other .swiper-pagination {
    height: 100%;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    bottom: 2px;
  }
  .introduction-section .swiper-other .swiper-pagination > .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
  }
  .introduction-section .swiper-other .swiper-pagination > .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #57a5a8;
    width: 15px;
    height: 15px;
  }
}
.service-description .description {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.breadcumbs-block {
  width: 1200px;
  margin: 0 auto;
  height: auto;
  margin-bottom: 1em;
}
@media (max-width: 1200px) {
  .breadcumbs-block {
    width: 95%;
    margin: 0 auto;
  }
}
.breadcumbs-block > .rank-math-breadcrumb {
  border: 1px transparent solid;
}
.breadcumbs-block > .rank-math-breadcrumb > p {
  margin-top: 78px;
  line-height: 1.2;
}
.breadcumbs-block > .rank-math-breadcrumb > p + p {
  margin-top: 0;
  margin-bottom: 10px;
}
.breadcumbs-block > .rank-math-breadcrumb > p a,
.breadcumbs-block > .rank-math-breadcrumb > p .last {
  font-size: 12px;
  color: #222;
  text-decoration: none;
}
.breadcumbs-block > .rank-math-breadcrumb > p a:hover,
.breadcumbs-block > .rank-math-breadcrumb > p a:focus-visible {
  opacity: 0.5;
}
.breadcumbs-block > .rank-math-breadcrumb > p .separator {
  color: #57a5a8;
  padding: 0 5px;
}

/* CSS Document */
.pagination-wrapper {
  position: relative;
  padding: 60px 0 60px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .pagination-wrapper {
    margin-top: 24px;
  }
}
.pagination-wrapper > .display-number {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  .pagination-wrapper > .display-number {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding-bottom: 16px;
  }
}
.pagination-wrapper > .pagination {
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.pagination-wrapper > .pagination > a > img:first-of-type {
  margin-right: 12px;
}
.pagination-wrapper > .pagination > a > img:last-of-type {
  margin-left: 12px;
}
.pagination-wrapper > .pagination .disable {
  opacity: 0.5;
}
.pagination-wrapper > .pagination > .num {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #57a5a8;
}
.pagination-wrapper > .pagination > .num > a {
  color: #57a5a8;
}
.pagination-wrapper > .pagination > .dots {
  font-family: "Barlow", sans-serif;
  color: #c6c6c6;
  font-size: 16px;
  font-weight: bold;
}

.pagination-wrapper.bottom {
  padding: 60px 0 240px;
}

.wrapper.top .mv {
  height: 600px;
  background-image: url(../image/mv-3.png);
  background-size: cover;
  background-position: center;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .wrapper.top .mv {
    height: 450px;
    background-position: 60% center;
  }
}
.wrapper.top .mv .key-message {
  width: 1200px;
  margin: 0 auto;
  border: solid 1px transparent;
}
@media (max-width: 1200px) {
  .wrapper.top .mv .key-message {
    width: 100%;
  }
}
.wrapper.top .mv .key-message p:first-of-type {
  background-color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 56px;
  font-weight: bold;
  margin-top: 196px;
  margin-bottom: 12px;
  line-height: 1.5;
  padding: 0 6px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
@media (max-width: 1200px) {
  .wrapper.top .mv .key-message p:first-of-type {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .mv .key-message p:first-of-type {
    font-size: 24px;
  }
}
.wrapper.top .mv .key-message p:first-of-type.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 2s;
  transition: all 2s;
}
.wrapper.top .mv .key-message p:nth-of-type(2) {
  color: #fff;
  background-color: #57a5a8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 120px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.2;
  padding: 0 6px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
@media (max-width: 1200px) {
  .wrapper.top .mv .key-message p:nth-of-type(2) {
    font-size: 86px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .mv .key-message p:nth-of-type(2) {
    font-size: 56px;
  }
}
.wrapper.top .mv .key-message p:nth-of-type(2).show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.wrapper.top .mv .key-message p:last-of-type {
  color: #fff;
  background-color: #222;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 33px;
  font-weight: bold;
  padding: 0 6px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100px);
          transform: translateX(-100px);
}
@media (max-width: 1200px) {
  .wrapper.top .mv .key-message p:last-of-type {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .mv .key-message p:last-of-type {
    font-size: 18px;
  }
}
.wrapper.top .mv .key-message p:last-of-type.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.wrapper.top .section-service-one {
  background-color: #f8fcfc;
  border: 1px solid transparent;
}
.wrapper.top .section-service-one .section-title {
  margin-top: 80px;
}
.wrapper.top .section-service-one .section-title p {
  text-align: center;
  color: #90b6b9;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.top .section-service-one .section-title h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}
.wrapper.top .section-service-one .service-one {
  width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 75px;
  margin-bottom: 117px;
  position: relative;
  border: 5px solid #57a5a8;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-one .service-one {
    width: 98%;
  }
}
.wrapper.top .section-service-one .service-one > .circle {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 83px;
  height: 83px;
  background-color: #57a5a8;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 42px;
  font-family: "Barlow", sans-serif;
}
.wrapper.top .section-service-one .service-one .img.whole-country {
  position: absolute;
  top: 65px;
  right: 145px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-one .service-one .img.whole-country {
    display: none;
  }
}
.wrapper.top .section-service-one .service-one .img.whole-country img {
  height: 147px;
}
.wrapper.top .section-service-one .service-one .sub-h3 {
  margin: 78px auto 0;
  padding: 0 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #57a5a8;
  font-size: 18px;
  font-weight: bold;
}
.wrapper.top .section-service-one .service-one h3 {
  text-align: center;
  font-size: 48px;
  font-weight: 900;
}
.wrapper.top .section-service-one .service-one .description {
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .description {
    width: 95%;
    margin: 0 auto;
  }
}
.wrapper.top .section-service-one .service-one .button {
  margin-top: 30px;
  text-align: center;
}
.wrapper.top .section-service-one .service-one .button a {
  text-decoration: none;
  cursor: pointer;
}
.wrapper.top .section-service-one .service-one .button a:hover {
  opacity: 0.7;
}
.wrapper.top .section-service-one .service-one .button a button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.top .section-service-one .service-one .button a button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.top .section-service-one .service-one .img.hand-shake {
  margin-top: 28px;
  height: 242px;
  background-image: url(../image/hand-shake.png);
  background-position: center;
  background-size: cover;
  border: 1px solid transparent;
}
.wrapper.top .section-service-one .service-one .img.hand-shake p:first-of-type {
  margin-top: 70px;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.wrapper.top .section-service-one .service-one .img.hand-shake p:first-of-type br {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .img.hand-shake p:first-of-type {
    font-size: 36px;
  }
  .wrapper.top .section-service-one .service-one .img.hand-shake p:first-of-type br {
    display: inline;
  }
}
.wrapper.top .section-service-one .service-one .img.hand-shake p:last-of-type {
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}
.wrapper.top .section-service-one .service-one .question1 {
  margin-top: 55px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}
.wrapper.top .section-service-one .service-one .question1 br {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .question1 {
    font-size: 28px;
  }
  .wrapper.top .section-service-one .service-one .question1 br {
    display: inline;
  }
}
.wrapper.top .section-service-one .service-one .problem {
  margin-top: 35px;
}
.wrapper.top .section-service-one .service-one .problem > ul {
  position: relative;
  margin: 0 auto;
  padding: 15px 0 45px;
  width: 696px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .problem > ul {
    width: 95%;
  }
}
.wrapper.top .section-service-one .service-one .problem > ul > img {
  position: absolute;
  width: 149px;
  bottom: -35px;
  right: -85px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-one .service-one .problem > ul > img {
    right: -10px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .problem > ul > img {
    display: none;
  }
}
.wrapper.top .section-service-one .service-one .problem > ul > li {
  margin: 0 auto;
  width: 530px;
  margin-left: 80px;
  list-style-type: none;
  font-size: 20px;
  font-weight: bold;
  padding: 24px 0;
  border-bottom: 1px solid #57a5a8;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .problem > ul > li {
    width: 95%;
    margin: 0 auto 15px;
    text-indent: -40px;
    padding-left: 60px;
    padding-right: 30px;
  }
}
.wrapper.top .section-service-one .service-one .problem > ul > li > img {
  width: 24px;
  margin-right: 47px;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .problem > ul > li > img {
    margin-right: 15px;
  }
}
.wrapper.top .section-service-one .service-one .arrow-down {
  margin-top: 35px;
  text-align: center;
}
.wrapper.top .section-service-one .service-one .arrow-down img {
  width: 105px;
}
.wrapper.top .section-service-one .service-one .solution {
  text-align: center;
}
.wrapper.top .section-service-one .service-one .solution > span {
  font-size: 36px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(252, 239, 79, 0.5)));
  background: linear-gradient(transparent 60%, rgba(252, 239, 79, 0.5) 60%);
}
.wrapper.top .section-service-one .service-one .solution-description-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 50px;
  padding: 0 78px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-one .service-one .solution-description-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .solution-description-wrapper {
    padding: 0 15px;
  }
}
.wrapper.top .section-service-one .service-one .solution-description-wrapper > .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.top .section-service-one .service-one .solution-description-wrapper > .img > img {
  width: 100%;
  vertical-align: bottom;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-one .service-one .solution-description-wrapper > .img > img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .solution-description-wrapper > .img > img {
    height: 150px;
  }
}
.wrapper.top .section-service-one .service-one .solution-description-wrapper > .solution-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.top .section-service-one .service-one .solution-description-wrapper > .solution-description > p:not(:first-of-type) {
  margin-top: 28px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-one .service-one .solution-description-wrapper > .solution-description > p {
    margin-top: 24px;
  }
}
.wrapper.top .section-service-one .service-one .img.meeting {
  margin-top: 83px;
  height: 242px;
  background-image: url(../image/meeting.png);
  background-position: center;
  background-size: cover;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .img.meeting {
    height: 200px;
  }
}
.wrapper.top .section-service-one .service-one .img.meeting p:first-of-type {
  margin-top: 70px;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.wrapper.top .section-service-one .service-one .img.meeting p:first-of-type br {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .img.meeting p:first-of-type {
    margin-top: 30px;
    font-size: 36px;
  }
  .wrapper.top .section-service-one .service-one .img.meeting p:first-of-type br {
    display: inline;
  }
}
.wrapper.top .section-service-one .service-one .img.meeting p:last-of-type {
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .img.meeting p:last-of-type {
    width: 95%;
    margin: 10px auto 0;
  }
}
.wrapper.top .section-service-one .service-one .points {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 70px;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-one .service-one .points {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    row-gap: 90px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .points {
    display: block;
    padding: 0 25px;
  }
}
.wrapper.top .section-service-one .service-one .points > .point {
  position: relative;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-one .service-one .points > .point {
    margin-top: 80px;
  }
}
.wrapper.top .section-service-one .service-one .points > .point > .point-number {
  position: absolute;
  top: -35px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-one .service-one .points > .point > .point-number {
    left: 15px;
  }
}
.wrapper.top .section-service-one .service-one .points > .point > .point-number > span:first-of-type {
  color: #57a5a8;
  font-family: "Barlow", sans-serif;
  font-size: 9px;
  font-weight: bold;
}
.wrapper.top .section-service-one .service-one .points > .point > .point-number > .circle {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: #e8a36a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper.top .section-service-one .service-one .points > .point > .point-number > .circle > span {
  font-family: "Barlow", sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
}
.wrapper.top .section-service-one .service-one .points > .point > .img {
  text-align: center;
}
.wrapper.top .section-service-one .service-one .points > .point > .img > img {
  width: 120px;
  height: 120px;
}
.wrapper.top .section-service-one .service-one .points > .point > p:first-of-type {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.wrapper.top .section-service-two {
  background-color: #fff;
  border: 1px solid transparent;
}
.wrapper.top .section-service-two .service-two {
  width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  margin-top: 107px;
  margin-bottom: 96px;
  position: relative;
  border: 5px solid #e8a36a;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two {
    width: 98%;
  }
}
.wrapper.top .section-service-two .service-two > .circle {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 83px;
  height: 83px;
  background-color: #e8a36a;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 42px;
  font-family: "Barlow", sans-serif;
}
.wrapper.top .section-service-two .service-two h3 {
  margin-top: 65px;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.5;
}
.wrapper.top .section-service-two .service-two h3 br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two h3 {
    line-height: 1.2;
  }
  .wrapper.top .section-service-two .service-two h3 br.md {
    display: inline;
  }
}
.wrapper.top .section-service-two .service-two .description {
  margin-top: 16px;
  text-align: center;
}
.wrapper.top .section-service-two .service-two .description br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .description {
    width: 95%;
    margin: 16px auto 0;
  }
  .wrapper.top .section-service-two .service-two .description br.md {
    display: inline;
  }
}
.wrapper.top .section-service-two .service-two .button {
  margin-top: 30px;
  text-align: center;
}
.wrapper.top .section-service-two .service-two .button a {
  text-decoration: none;
  cursor: pointer;
}
.wrapper.top .section-service-two .service-two .button a:hover {
  opacity: 0.7;
}
.wrapper.top .section-service-two .service-two .button a button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #e8a36a;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.top .section-service-two .service-two .button a button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.top .section-service-two .service-two .img.sky {
  margin-top: 28px;
  height: 242px;
  background-image: url(../image/sky.png);
  background-position: center;
  background-size: cover;
  border: 1px solid transparent;
}
.wrapper.top .section-service-two .service-two .img.sky p:first-of-type {
  margin-top: 70px;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.wrapper.top .section-service-two .service-two .img.sky p:first-of-type br {
  display: none;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .img.sky p:first-of-type {
    margin-top: 56px;
  }
  .wrapper.top .section-service-two .service-two .img.sky p:first-of-type br:not(.md) {
    display: inline;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .img.sky p:first-of-type {
    font-size: 36px;
    margin-top: 25px;
  }
  .wrapper.top .section-service-two .service-two .img.sky p:first-of-type br.md {
    display: inline;
  }
}
.wrapper.top .section-service-two .service-two .img.sky p:last-of-type {
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}
.wrapper.top .section-service-two .service-two .img.sky p:last-of-type br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .img.sky p:last-of-type br.md {
    display: inline;
  }
}
.wrapper.top .section-service-two .service-two .question2 {
  margin-top: 55px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
}
.wrapper.top .section-service-two .service-two .question2 > span {
  line-height: 1;
  -webkit-text-emphasis: filled;
          text-emphasis: filled;
}
.wrapper.top .section-service-two .service-two .question2 > br {
  display: none;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .question2 > br {
    display: inline;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .question2 {
    font-size: 28px;
  }
}
.wrapper.top .section-service-two .service-two .problem {
  margin-top: 35px;
}
.wrapper.top .section-service-two .service-two .problem > ul {
  position: relative;
  margin: 0 auto;
  padding: 15px 0 45px;
  width: 696px;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .problem > ul {
    width: 95%;
  }
}
.wrapper.top .section-service-two .service-two .problem > ul > img {
  position: absolute;
  width: 149px;
  bottom: -35px;
  right: -85px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .problem > ul > img {
    right: -10px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .problem > ul > img {
    display: none;
  }
}
.wrapper.top .section-service-two .service-two .problem > ul > li {
  margin: 0 auto;
  width: 530px;
  margin-left: 80px;
  list-style-type: none;
  font-size: 20px;
  font-weight: bold;
  padding: 24px 0;
  border-bottom: 1px solid #dbdbdb;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .problem > ul > li {
    width: 95%;
    margin: 0 auto 15px;
    text-indent: -40px;
    padding-left: 60px;
    padding-right: 30px;
  }
}
.wrapper.top .section-service-two .service-two .problem > ul > li > img {
  width: 24px;
  margin-right: 47px;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .problem > ul > li > img {
    margin-right: 15px;
  }
}
.wrapper.top .section-service-two .service-two .arrow-down {
  margin-top: 35px;
  text-align: center;
}
.wrapper.top .section-service-two .service-two .arrow-down img {
  width: 105px;
}
.wrapper.top .section-service-two .service-two .solution {
  text-align: center;
}
.wrapper.top .section-service-two .service-two .solution > span {
  font-size: 36px;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(252, 239, 79, 0.5)));
  background: linear-gradient(transparent 60%, rgba(252, 239, 79, 0.5) 60%);
}
.wrapper.top .section-service-two .service-two .solution-description-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  margin-top: 50px;
  padding: 0 78px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .solution-description-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .solution-description-wrapper {
    padding: 0 15px;
  }
}
.wrapper.top .section-service-two .service-two .solution-description-wrapper > .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.top .section-service-two .service-two .solution-description-wrapper > .img > img {
  width: 100%;
  vertical-align: bottom;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .solution-description-wrapper > .img > img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .solution-description-wrapper > .img > img {
    height: 150px;
  }
}
.wrapper.top .section-service-two .service-two .solution-description-wrapper > .solution-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.top .section-service-two .service-two .solution-description-wrapper > .solution-description > p:first-of-type {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.top .section-service-two .service-two .solution-description-wrapper > .solution-description > p:not(:first-of-type) {
  margin-top: 28px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .solution-description-wrapper > .solution-description p {
    margin-top: 24px;
  }
}
.wrapper.top .section-service-two .service-two .img.tablet {
  margin-top: 83px;
  height: 242px;
  background-image: url(../image/tablet.png);
  background-position: center;
  background-size: cover;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .img.tablet {
    height: 200px;
  }
}
.wrapper.top .section-service-two .service-two .img.tablet p:first-of-type {
  margin-top: 70px;
  text-align: center;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .img.tablet p:first-of-type {
    font-size: 36px;
    margin-top: 55px;
  }
}
.wrapper.top .section-service-two .service-two .img.tablet p:last-of-type {
  margin-top: 10px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  line-height: 1.2;
}
.wrapper.top .section-service-two .service-two .img.tablet p:last-of-type br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .img.tablet p:last-of-type br.md {
    display: inline;
  }
}
.wrapper.top .section-service-two .service-two .sub-search {
  margin: 78px auto 0;
  padding: 0 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background-color: #e8a36a;
  font-size: 18px;
  font-weight: bold;
}
.wrapper.top .section-service-two .service-two .search-title {
  margin: 10px auto 0;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 3px solid #e8a36a;
}
.wrapper.top .section-service-two .service-two .search-title br {
  display: none;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .search-title br {
    display: inline;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .search-title {
    font-size: 24px;
  }
}
.wrapper.top .section-service-two .service-two .serach-conditions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .serach-conditions {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 12px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .serach-conditions {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
.wrapper.top .section-service-two .service-two .serach-conditions > .column:not(:last-of-type) {
  border-right: solid 1px #e8e8e8;
}
.wrapper.top .section-service-two .service-two .serach-conditions > .column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 30px;
  background-color: #fff;
}
.wrapper.top .section-service-two .service-two .serach-conditions > .column > .search-category {
  line-height: 1.5;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 0 5px;
  background-color: #e8a36a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
}
.wrapper.top .section-service-two .service-two .serach-conditions > .column > ul {
  list-style-type: none;
  padding: 0;
}
.wrapper.top .section-service-two .service-two .serach-conditions > .column > ul > li {
  position: relative;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
}
.wrapper.top .section-service-two .service-two .serach-conditions > .column > ul > li::before {
  position: relative;
  top: -3px;
  content: "";
  display: inline-block;
  height: 8px;
  width: 11px;
  background-image: url(../image/feather-check-2.svg);
  background-size: cover;
  margin-right: 10px;
}
.wrapper.top .section-service-two .service-two .serach-conditions > .column:nth-of-type(4) {
  -webkit-box-flex: 1.1;
      -ms-flex: 1.1;
          flex: 1.1;
}
.wrapper.top .section-service-two .service-two .serach-conditions > .column:last-of-type {
  -webkit-box-flex: 1.2;
      -ms-flex: 1.2;
          flex: 1.2;
}
.wrapper.top .section-service-two .service-two .support-description-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  margin-top: 50px;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .support-description-wrapper {
    display: block;
  }
}
.wrapper.top .section-service-two .service-two .support-description-wrapper > .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.top .section-service-two .service-two .support-description-wrapper > .img > img {
  width: 100%;
  vertical-align: bottom;
}
.wrapper.top .section-service-two .service-two .support-description-wrapper > .support-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .support-description-wrapper > .support-description {
    margin-top: 30px;
  }
}
.wrapper.top .section-service-two .service-two .support-description-wrapper > .support-description > p:first-of-type {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.top .section-service-two .service-two .support-description-wrapper > .support-description > p:not(:first-of-type) {
  margin-top: 28px;
}
.wrapper.top .section-service-two .service-two .examples {
  display: -ms-grid;
  display: grid;
  margin-top: 49px;
  padding: 0 108px 0 98px;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 21px;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .examples {
    padding: 0 30px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .section-service-two .service-two .examples {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.top .section-service-two .service-two .examples .example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 21px;
     -moz-column-gap: 21px;
          column-gap: 21px;
  border: 2px solid #e2e2e2;
}
@media (max-width: 1200px) {
  .wrapper.top .section-service-two .service-two .examples .example {
    padding: 0 8px;
  }
}
.wrapper.top .section-service-two .service-two .examples .example .img {
  margin-top: 73px;
  margin-left: 14px;
  margin-bottom: 37px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.wrapper.top .section-service-two .service-two .examples .example .img > img {
  width: 120px;
  height: 120px;
}
.wrapper.top .section-service-two .service-two .examples .example .example-description > div {
  margin-top: 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.wrapper.top .section-service-two .service-two .examples .example .example-description > div > .example-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper.top .section-service-two .service-two .examples .example .example-description > div > .example-number > span:first-of-type {
  color: #57a5a8;
  font-family: "Barlow", sans-serif;
  font-size: 9px;
  font-weight: bold;
}
.wrapper.top .section-service-two .service-two .examples .example .example-description > div > .example-number > .circle {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background-color: #e8a36a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper.top .section-service-two .service-two .examples .example .example-description > div > .example-number > .circle > span {
  font-family: "Barlow", sans-serif;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
}
.wrapper.top .section-service-two .service-two .examples .example .example-description > div .example-title {
  margin-left: 18px;
  font-size: 20px;
  font-weight: bold;
}
.wrapper.top .section-service-two .service-two .examples .example .example-description > p {
  margin-top: 20px;
}
.wrapper.top .statistical-data {
  background-color: #f8fcfc;
  border: 1px solid transparent;
}
.wrapper.top .statistical-data .section-title {
  margin-top: 80px;
}
.wrapper.top .statistical-data .section-title p {
  text-align: center;
  color: #90b6b9;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.top .statistical-data .section-title h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}
.wrapper.top .statistical-data .statistical-data-block {
  width: 1200px;
  margin: 0 auto;
  border: 1px solid transparent;
}
@media (max-width: 1200px) {
  .wrapper.top .statistical-data .statistical-data-block {
    width: 98%;
  }
}
.wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 58px;
     -moz-column-gap: 58px;
          column-gap: 58px;
  margin-top: 50px;
  margin-bottom: 58px;
  padding: 0 78px;
}
@media (max-width: 1200px) {
  .wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper {
    padding: 0 25px;
  }
}
.wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper > .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper > .img > img {
  width: 100%;
  vertical-align: bottom;
}
@media (max-width: 1200px) {
  .wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper > .img > img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper > .img > img {
    height: 200px;
  }
}
.wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper > .statistical-data-description {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper > .statistical-data-description > p:first-of-type {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
}
.wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper > .statistical-data-description > p:not(:first-of-type) {
  margin-top: 28px;
}
@media (max-width: 1200px) {
  .wrapper.top .statistical-data .statistical-data-block .statistical-data-description-wrapper > .statistical-data-description > p {
    margin-top: 24px;
  }
}
.wrapper.top .statistical-data .statistical-data-details-block {
  width: 1200px;
  margin: 0 auto;
  border: 1px solid transparent;
  background-color: #fff;
  padding-bottom: 59px;
  margin-bottom: 117px;
}
@media (max-width: 1200px) {
  .wrapper.top .statistical-data .statistical-data-details-block {
    width: 98%;
  }
}
.wrapper.top .statistical-data .statistical-data-details-block > .statistical-data-details-title {
  font-size: 32px;
  font-weight: 500;
  margin-top: 36px;
  margin-left: 68px;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .wrapper.top .statistical-data .statistical-data-details-block > .statistical-data-details-title {
    margin: 24px auto 30px;
    text-align: center;
  }
}
.wrapper.top .statistical-data .statistical-data-details-block > .statistical-data-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .wrapper.top .statistical-data .statistical-data-details-block > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .wrapper.top .statistical-data .statistical-data-details-block > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.top .statistical-data .statistical-data-details-block > .statistical-data-details > div {
  border: solid 1px #eee;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.wrapper.top .introduction-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.top .introduction-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  margin-top: 156px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.top .introduction-section .sub-h2 {
    padding-left: 36px;
    width: 100%;
  }
}
.wrapper.top .introduction-section h2 {
  width: 1200px;
  margin: 0 auto;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.top .introduction-section h2 {
    padding-left: 36px;
    width: 100%;
  }
}
.wrapper.top .introduction-section .introduction-block {
  padding: 82px 0px 160px;
  background-color: white;
}
.wrapper.top .introduction-section .introduction-block > .button {
  margin-top: 30px;
  text-align: center;
}
.wrapper.top .introduction-section .introduction-block > .button button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.wrapper.top .introduction-section .introduction-block > .button button:hover {
  opacity: 0.7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.wrapper.top .introduction-section .introduction-block > .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.top .column {
  background-color: #f8fcfc;
  border: 1px solid transparent;
}
.wrapper.top .column .column-block {
  width: 1200px;
  margin: 0 auto;
  border: 1px solid transparent;
  margin-top: 82px;
  margin-bottom: 125px;
}
@media (max-width: 1200px) {
  .wrapper.top .column .column-block {
    width: 98%;
  }
}
.wrapper.top .column .column-block .section-title p {
  color: #90b6b9;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.top .column .column-block .section-title h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .wrapper.top .column .column-block .section-title {
    padding-left: 36px;
  }
}
.wrapper.top .column .column-block .columns {
  margin-top: 50px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: 295px 50px 295px 50px 295px;
  grid-template-columns: 295px 295px 295px;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 50px;
}
@media (max-width: 1200px) {
  .wrapper.top .column .column-block .columns {
    -ms-grid-columns: 295px 295px;
    grid-template-columns: 295px 295px;
  }
}
@media (max-width: 767px) {
  .wrapper.top .column .column-block .columns {
    -ms-grid-columns: 295px;
    grid-template-columns: 295px;
  }
}
.wrapper.top .column .column-block .columns a {
  text-decoration: none;
  color: #222;
}
.wrapper.top .column .column-block .columns a .column-card {
  padding: 20px 28px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(1, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(1, 0, 0, 0.1);
}
.wrapper.top .column .column-block .columns a .column-card > .column-date {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #e8a36a;
}
.wrapper.top .column .column-block .columns a .column-card > .column-title {
  font-size: 20px;
  font-weight: bold;
}
.wrapper.top .column .column-block .columns a .column-card > .img > img {
  width: 239px;
  height: 144px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper.top .column .column-block .columns a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.wrapper.contact .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-contact.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.contact .mv {
    background-position: 55% center;
    height: 240px;
  }
}
.wrapper.contact .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.contact .contact-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.contact .contact-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.contact .contact-section .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.contact .contact-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.contact .contact-section h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.contact .contact-section .contact-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
  margin-bottom: 240px;
  padding: 120px 130px 160px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.contact .contact-section .contact-block {
    width: 98%;
    margin: 40px auto 0;
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .wrapper.contact .contact-section .contact-block {
    padding: 24px;
  }
}
.wrapper.contact .contact-section .contact-block form .form-contact {
  margin-bottom: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 600px;
  grid-template-columns: 280px 600px;
}
@media (max-width: 1200px) {
  .wrapper.contact .contact-section .contact-block form .form-contact {
    -ms-grid-columns: 600px;
    grid-template-columns: 600px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .wrapper.contact .contact-section .contact-block form .form-contact {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.wrapper.contact .contact-section .contact-block form .form-contact dt {
  border: none;
  background-color: white;
  padding: 15px 6px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.contact .contact-section .contact-block form .form-contact dt {
    padding: 6px;
  }
}
.wrapper.contact .contact-section .contact-block form .form-contact dt span {
  padding-left: 11px;
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #90b6b9;
}
.wrapper.contact .contact-section .contact-block form .form-contact dt p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 11px;
}
.wrapper.contact .contact-section .contact-block form .form-contact dt p > .must {
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  border: #f76464 1px solid;
  color: #f76464;
}
.wrapper.contact .contact-section .contact-block form .form-contact dt p.other-style {
  padding-bottom: 2px;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd {
  padding: 15px 6px;
}
@media (max-width: 1200px) {
  .wrapper.contact .contact-section .contact-block form .form-contact > dd {
    padding: 6px;
    margin-bottom: 8px;
  }
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd input::-webkit-input-placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd input::-moz-placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd input:-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd input::-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd input::placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd input {
  background-color: #f7f7f7;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd textarea::-webkit-input-placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd textarea::-moz-placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd textarea:-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd textarea::-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd textarea::placeholder {
  color: #bebebe;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd textarea {
  background-color: #f7f7f7;
}
.wrapper.contact .contact-section .contact-block form .form-contact > dd span {
  font-size: 12px;
  color: #f76464;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  align-items: center;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service input {
  display: none;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service input:checked ~ label > span,
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service input:checked ~ .wpcf7-list-item-label::before {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service label {
  margin-right: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 15px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service label .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #c3daff;
  border-radius: 6px;
  vertical-align: middle;
  margin-right: 0.5em;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service label:hover > span {
  border-color: #3b86ff;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service > span > span {
  color: #69c3bf;
  text-decoration: underline;
  font-weight: bold;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service > span > span > a {
  color: #69c3bf;
  text-decoration: underline;
  font-weight: bold;
}
.wrapper.contact .contact-section .contact-block form .confirm-terms-of-service > span > span > a:hover {
  opacity: 0.7;
}
.wrapper.contact .contact-section .contact-block form .button {
  margin-top: 40px;
  text-align: center;
}
.wrapper.contact .contact-section .contact-block form .button input {
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.contact .contact-section .contact-block form .button input img {
  position: absolute;
  top: 17px;
  right: 20px;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.wrapper.contact-thanks .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-contact.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.contact-thanks .mv {
    height: 240px;
    background-position: 55% center;
  }
}
.wrapper.contact-thanks .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.contact-thanks .thanks {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.contact-thanks .thanks .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.contact-thanks .thanks .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.contact-thanks .thanks h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.contact-thanks .thanks h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.contact-thanks .thanks .thanks-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 240px;
  padding: 120px 130px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.contact-thanks .thanks .thanks-block {
    width: 98%;
    margin: 0 auto 120px;
  }
}
@media (max-width: 767px) {
  .wrapper.contact-thanks .thanks .thanks-block {
    padding: 60px 30px;
  }
}
.wrapper.contact-thanks .thanks .thanks-block > p {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 61px;
}
.wrapper.contact-thanks .thanks .thanks-block .button {
  margin-top: 40px;
  text-align: center;
}
.wrapper.contact-thanks .thanks .thanks-block .button a {
  line-height: 1.4;
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  cursor: pointer;
}
.wrapper.contact-thanks .thanks .thanks-block .button a:hover {
  opacity: 0.7;
}
.wrapper.contact-thanks .thanks .thanks-block .button a img {
  position: absolute;
  top: 17px;
  right: 20px;
}

.wrapper.about-us .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-about-us.png);
  background-size: cover;
  background-position: center;
}
.wrapper.about-us .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.about-us .concept-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.wrapper.about-us .concept-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.about-us .concept-section .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.about-us .concept-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.about-us .concept-section h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.about-us .concept-section .concept-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
  margin-bottom: 240px;
  padding: 120px 130px 160px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.about-us .concept-section .concept-block {
    width: 98%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .wrapper.about-us .concept-section .concept-block {
    padding: 60px 30px;
  }
}
.wrapper.about-us .concept-section .concept-block > p {
  text-align: center;
  padding-bottom: 1.8em;
}
.wrapper.about-us .concept-section .concept-block > .spacer {
  height: 1.8em;
}
.wrapper.about-us .company-profile-section {
  background-color: white;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.about-us .company-profile-section .company-profile-block {
  width: 1060px;
  margin: 0 auto;
  margin-bottom: 240px;
  padding: 156px 0px 120px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.about-us .company-profile-section .company-profile-block {
    width: 98%;
    margin: 0 auto 120px;
  }
}
@media (max-width: 767px) {
  .wrapper.about-us .company-profile-section .company-profile-block {
    padding: 60px 30px;
  }
}
.wrapper.about-us .company-profile-section .company-profile-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.about-us .company-profile-section .company-profile-block > .sub-h2 {
    margin-left: 3vw;
  }
}
.wrapper.about-us .company-profile-section .company-profile-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.about-us .company-profile-section .company-profile-block > h2 {
    margin-left: 3vw;
  }
}
.wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper {
  padding: 80px 60px 0;
}
@media (max-width: 1200px) {
  .wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper {
    padding: 80px 30px 0;
  }
}
@media (max-width: 767px) {
  .wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper {
    padding: 80px 12px 0;
  }
}
.wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cccccc;
}
@media (max-width: 767px) {
  .wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper > div {
    display: block;
  }
}
.wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper > div > dt {
  width: 260px;
  min-width: 260px;
  border: none;
  padding: 30px 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper > div > dt {
    padding: 12px 0 8px;
  }
}
.wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper > div > dd {
  padding: 30px 20px 30px 0px;
}
@media (max-width: 767px) {
  .wrapper.about-us .company-profile-section .company-profile-block > .company-profile-wrapper > div > dd {
    padding: 0 0 12px;
  }
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .button-company-profile,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .button-company-profile {
  margin-top: 40px;
  text-align: center;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input {
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input:hover,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input:hover {
  opacity: 0.7;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input img,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .button-company-profile {
  margin-top: 40px;
  margin-bottom: 0px;
  text-align: center;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input {
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input:hover {
  opacity: 0.7;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .button-company-profile input img {
  position: absolute;
  top: 17px;
  right: 20px;
}

.wrapper.privacy-policy .privacy-policy-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.privacy-policy .privacy-policy-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.privacy-policy .privacy-policy-section .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.privacy-policy .privacy-policy-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.privacy-policy .privacy-policy-section h2 br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.privacy-policy .privacy-policy-section h2 br.md {
    display: inline;
  }
}
@media (max-width: 1200px) {
  .wrapper.privacy-policy .privacy-policy-section h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.privacy-policy .privacy-policy-section .privacy-policy-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 65px;
  margin-bottom: 240px;
  padding: 120px 130px 156px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.privacy-policy .privacy-policy-section .privacy-policy-block {
    width: 98%;
    margin: 0 auto;
    padding: 120px 60px 156px;
  }
}
@media (max-width: 767px) {
  .wrapper.privacy-policy .privacy-policy-section .privacy-policy-block {
    padding: 60px 30px 120px;
  }
}
.wrapper.privacy-policy .privacy-policy-section .privacy-policy-block > p {
  font-size: 16px;
  line-height: 1.75;
}
.wrapper.privacy-policy .privacy-policy-section .privacy-policy-block > h3 {
  margin-top: 40px;
  margin-bottom: 17px;
  font-size: 28px;
  line-height: 1.45;
}
.wrapper.privacy-policy .privacy-policy-section .privacy-policy-block > h3:first-of-type {
  margin-top: 60px;
}
.wrapper.privacy-policy .privacy-policy-section .privacy-policy-block ul {
  list-style-type: none;
  padding: 0;
}
.wrapper.privacy-policy .privacy-policy-section .privacy-policy-block li {
  font-size: 16px;
  line-height: 1.75;
}
.wrapper.privacy-policy .privacy-policy-section .privacy-policy-block > ul > li ul {
  padding-left: 1em;
}

.wrapper.terms-of-service {
  background-color: #f8fcfc;
}
.wrapper.terms-of-service .terms-of-service-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.terms-of-service .terms-of-service-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.terms-of-service .terms-of-service-section .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.terms-of-service .terms-of-service-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.terms-of-service .terms-of-service-section h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.terms-of-service .terms-of-service-section .terms-of-service-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 65px;
  margin-bottom: 240px;
  padding: 120px 130px 156px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.terms-of-service .terms-of-service-section .terms-of-service-block {
    width: 98%;
    margin: 0 auto;
    padding: 120px 60px 156px;
  }
}
@media (max-width: 767px) {
  .wrapper.terms-of-service .terms-of-service-section .terms-of-service-block {
    padding: 60px 30px 120px;
  }
}
.wrapper.terms-of-service .terms-of-service-section .terms-of-service-block > p {
  font-size: 16px;
  line-height: 1.75;
}
.wrapper.terms-of-service .terms-of-service-section .terms-of-service-block > h3 {
  margin-top: 40px;
  margin-bottom: 17px;
  font-size: 28px;
  line-height: 1.45;
}
.wrapper.terms-of-service .terms-of-service-section .terms-of-service-block > h3:first-of-type {
  margin-top: 60px;
}
.wrapper.terms-of-service .terms-of-service-section .terms-of-service-block ul {
  list-style-type: none;
  padding: 0;
}
.wrapper.terms-of-service .terms-of-service-section .terms-of-service-block li {
  font-size: 16px;
  line-height: 1.75;
}
.wrapper.terms-of-service .terms-of-service-section .terms-of-service-block > ul > li ul {
  padding-left: 1em;
}

.wrapper.company-matching__selecting-industry .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 480px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-industry .mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 680px;
  }
}
.wrapper.company-matching__selecting-industry .mv > .mv-left {
  -webkit-box-flex: 800;
      -ms-flex: 800;
          flex: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #57a5a8;
}
.wrapper.company-matching__selecting-industry .mv > .mv-left .mv-title {
  margin: 0 0 0 auto;
  width: 440px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-industry .mv > .mv-left .mv-title {
    margin-left: 3vw;
  }
}
.wrapper.company-matching__selecting-industry .mv > .mv-left .mv-title > p:first-of-type {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
}
.wrapper.company-matching__selecting-industry .mv > .mv-left .mv-title > p:last-of-type {
  color: #b5d5d8;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
}
.wrapper.company-matching__selecting-industry .mv > .mv-right {
  position: relative;
  -webkit-box-flex: 1120;
      -ms-flex: 1120;
          flex: 1120;
  background-image: url(../image/mv-corporation-matching.png);
  background-size: cover;
  background-position: center;
}
.wrapper.company-matching__selecting-industry .mv > .mv-right > .mv-description {
  position: absolute;
  left: 40px;
  bottom: 30px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-industry .mv > .mv-right > .mv-description {
    left: 15px;
    padding-right: 1vw;
  }
}
.wrapper.company-matching__selecting-industry .mv > .mv-right > .mv-description > p:first-of-type {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
}
.wrapper.company-matching__selecting-industry .mv > .mv-right > .mv-description > p:last-of-type {
  color: #fff;
  font-weight: bold;
}
.wrapper.company-matching__selecting-industry .search-by-industry {
  border: transparent 1px solid;
  background-color: #f8fcfc;
}
.wrapper.company-matching__selecting-industry .search-by-industry .sub-h2 {
  margin-top: 80px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__selecting-industry .search-by-industry h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 216px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block {
    width: 95%;
    margin: 40px auto;
  }
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries {
  padding: 130px 116px 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries {
    padding: 60px 3%;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-left .each-industry:not(:first-of-type) {
  margin-top: 70px;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-left .each-industry .industry-large-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  color: #57a5a8;
  font-size: 20px;
  font-weight: 500;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-left .each-industry .industry-categories {
  margin-top: 20px;
  list-style-type: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 8px;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-left .each-industry .industry-categories > li {
  font-weight: 500;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-left .each-industry .industry-categories > li {
    padding-right: 8px;
  }
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-left .each-industry .industry-categories > li > a {
  text-decoration: none;
  color: #222;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-left .each-industry .industry-categories > li > a:hover {
  opacity: 0.5;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-right .each-industry:not(:first-of-type) {
  margin-top: 70px;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-right .each-industry .industry-large-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  color: #57a5a8;
  font-size: 20px;
  font-weight: 500;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-right .each-industry .industry-categories {
  margin-top: 20px;
  list-style-type: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 8px;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-right .each-industry .industry-categories > li {
  font-weight: 500;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-right .each-industry .industry-categories > li {
    padding-right: 8px;
  }
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-right .each-industry .industry-categories > li > a {
  text-decoration: none;
  color: #222;
}
.wrapper.company-matching__selecting-industry .search-by-industry .search-by-industry-block .industries .industry-right .each-industry .industry-categories > li > a:hover {
  opacity: 0.5;
}
.wrapper.company-matching__selecting-industry .industry-description {
  border: transparent 1px solid;
  background-color: #fff;
  position: relative;
}
.wrapper.company-matching__selecting-industry .industry-description .sub-h2 {
  margin-top: 176px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-industry .industry-description .sub-h2 {
    margin-top: 40px;
  }
}
.wrapper.company-matching__selecting-industry .industry-description h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__selecting-industry .industry-description .industry-description-block {
  width: 1200px;
  margin: 0 auto;
  padding: 120px 70px 240px;
  background-color: #fff;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 80px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-industry .industry-description .industry-description-block {
    width: 95%;
    margin: 0 auto;
    padding: 60px 5% 240px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-industry .industry-description .industry-description-block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.company-matching__selecting-industry .industry-description .industry-description-block > .each-industry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper.company-matching__selecting-industry .industry-description .industry-description-block > .each-industry > .category-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}
.wrapper.company-matching__selecting-industry .industry-description .industry-description-block > .each-industry > .category-description {
  margin-top: 8px;
}

.wrapper.company-matching__selecting-prefecture .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-corporation-matching-2.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .mv {
    height: 240px;
  }
}
.wrapper.company-matching__selecting-prefecture .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures {
  border: transparent 1px solid;
  margin-bottom: 120px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .sub-h2 {
  margin-top: 156px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 122px;
  position: relative;
  padding: 0 70px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block {
    width: 95%;
    margin: 60px auto;
    padding: 0 36px;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .img {
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas input:disabled ~ label {
  pointer-events: none;
  opacity: 0.5;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku {
  position: absolute;
  top: 72px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku {
    position: relative;
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region {
  padding: 6px 0;
  border-bottom: 2px solid #da9b6f;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > input:disabled ~ label {
  pointer-events: none;
  opacity: 0.5;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #da9b6f;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > input:checked ~ label {
  color: #da9b6f;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > label:hover {
  color: #da9b6f;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu {
  position: absolute;
  top: 72px;
  left: 288px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
    left: 260px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu {
    position: relative;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region {
  padding: 6px 0;
  border-bottom: 2px solid #a2ce84;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #a2ce84;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > input:checked ~ label {
  color: #a2ce84;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > label:hover {
  color: #a2ce84;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa {
  position: absolute;
  top: 290px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa {
    position: relative;
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region {
  padding: 6px 0;
  border-bottom: 2px solid #e37f76;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #e37f76;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > input:checked ~ label {
  color: #e37f76;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > label:hover {
  color: #e37f76;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku {
  position: absolute;
  top: 0px;
  right: 70px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku {
  padding: 6px 0;
  border-bottom: 2px solid #57a5a8;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #57a5a8;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku {
  position: absolute;
  top: 72px;
  right: 70px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku {
    position: relative;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region {
  padding: 6px 0;
  border-bottom: 2px solid #7fb5d3;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #7fb5d3;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > input:checked ~ label {
  color: #7fb5d3;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > label:hover {
  color: #7fb5d3;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto {
  position: absolute;
  top: 262px;
  right: 70px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto {
    position: relative;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region {
  padding: 6px 0;
  border-bottom: 2px solid #8ce0d4;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #8ce0d4;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > input:checked ~ label {
  color: #8ce0d4;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > label:hover {
  color: #8ce0d4;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai {
  position: absolute;
  top: 262px;
  right: 288px;
  width: 83px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai {
    position: relative;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region {
  padding: 6px 0;
  border-bottom: 2px solid #dbcc58;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #dbcc58;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > input:checked ~ label {
  color: #dbcc58;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > label:hover {
  color: #dbcc58;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki {
  position: absolute;
  top: 452px;
  right: 288px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki {
    position: relative;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region {
  padding: 6px 0;
  border-bottom: 2px solid #efb832;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #efb832;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > input:checked ~ label {
  color: #efb832;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > label:hover {
  color: #efb832;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .button {
  margin-top: 80px;
  margin-bottom: 160px;
  text-align: center;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .button button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .button button:hover {
  opacity: 0.5;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table {
  margin: 40px auto;
  width: 780px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td {
  border: 1px solid #cccccc;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td {
    display: block;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:first-of-type {
  text-align: center;
  width: 180px;
  background-color: #eeeeee;
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:first-of-type {
    width: 100%;
  }
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:last-of-type {
  font-size: 14px;
  padding: 18px 30px;
  background-color: white;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:last-of-type > div:not(:last-of-type) {
  margin-bottom: 5px;
}
.wrapper.company-matching__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:last-of-type span {
  margin-right: 14px;
}
.wrapper.company-matching__selecting-prefecture .statistics-database {
  border: transparent 1px solid;
  background-color: #f8fcfc;
  padding-bottom: 240px;
  position: relative;
}
.wrapper.company-matching__selecting-prefecture .statistics-database .sub-h2 {
  margin-top: 156px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__selecting-prefecture .statistics-database h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__selecting-prefecture .statistics-database .statistics-area {
  width: 1200px;
  margin: 0 auto;
  margin-top: 68px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .statistics-database .statistics-area {
    width: 98%;
  }
}
.wrapper.company-matching__selecting-prefecture .statistics-database .statistics-area > .statistical-data-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__selecting-prefecture .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__selecting-prefecture .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.company-matching__selecting-prefecture .statistics-database .statistics-area > .statistical-data-details > div {
  border: solid 1px #eee;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.wrapper.company-matching__company-list .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-corporation-matching-2.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-list .mv {
    height: 240px;
  }
}
.wrapper.company-matching__company-list .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.company-matching__company-list .about-this-page {
  width: 1200px;
  margin: 0 auto;
  height: 118px;
  border: 1px solid transparent;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__company-list .about-this-page {
    width: 95%;
    margin: 0 auto;
  }
}
.wrapper.company-matching__company-list .about-this-page > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  position: relative;
}
.wrapper.company-matching__company-list .about-this-page > div > .display-number {
  font-size: 12px;
}
.wrapper.company-matching__company-list .about-this-page > div > .caution {
  position: relative;
  text-align: right;
  color: #57a5a8;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}
.wrapper.company-matching__company-list .about-this-page > div > .caution > span {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__company-list .about-this-page > div > .caution > span > img {
  position: relative;
  top: -2px;
  left: -4px;
  width: 18px;
  height: 18px;
  vertical-align: bottom;
}
.wrapper.company-matching__company-list .about-this-page > div > .caution > span:hover {
  opacity: 0.7;
}
.wrapper.company-matching__company-list .about-this-page > div > .modal-wrapper {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  background-color: white;
  position: absolute;
  z-index: 999;
  top: 50px;
  right: 20px;
  width: 480px;
  max-width: calc(100% - 40px);
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-list .about-this-page > div > .modal-wrapper {
    right: auto;
    left: auto;
    width: 360px;
  }
}
.wrapper.company-matching__company-list .about-this-page > div > .modal-wrapper.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper.company-matching__company-list .about-this-page > div > .modal-wrapper > .modal-inner {
  padding: 40px;
}
.wrapper.company-matching__company-list .about-this-page > div > .modal-wrapper > .modal-inner > .caution-block > img {
  vertical-align: bottom;
}
.wrapper.company-matching__company-list .about-this-page > div > .modal-wrapper > .modal-inner > .caution-description {
  font-size: 14px;
  line-height: 2;
  color: #777;
}
.wrapper.company-matching__company-list .recommend-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-list .recommend-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__company-list .recommend-section .sub-h2 {
    width: 95%;
    margin: 60px auto 0;
  }
}
.wrapper.company-matching__company-list .recommend-section h2 {
  width: 1200px;
  margin: 0 auto;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__company-list .recommend-section h2 {
    width: 95%;
    margin: 0 auto;
  }
}
.wrapper.company-matching__company-list .recommend-section .button {
  margin-top: 80px;
  margin-bottom: 24px;
  text-align: center;
}
.wrapper.company-matching__company-list .recommend-section .button button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-matching__company-list .recommend-section .button button:hover {
  opacity: 0.5;
}
.wrapper.company-matching__company-list .recommend-section .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-matching__company-list .recommend-section .cta-text {
  text-align: center;
  margin-bottom: 120px;
}
.wrapper.company-matching__company-list .recommend-section .cta-text br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-list .recommend-section .cta-text br.md {
    display: inline;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-list .recommend-section .cta-text {
    width: 95%;
    margin: 0 auto 60px;
  }
}
.wrapper.company-matching__company-list .company-list {
  position: relative;
}
.wrapper.company-matching__company-list .company-list .company-list-block {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__company-list .company-list .company-list-block {
    width: 95%;
    margin: 0 auto;
  }
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured {
  margin-bottom: 30px;
  padding: 20px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper .company-image {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper .company-description {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #57a5a8;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(1) > a {
  color: #57a5a8;
  text-decoration-line: none;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(2) {
  font-size: 12px;
  color: #90b6b9;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(2) > a {
  color: #90b6b9;
  text-decoration-line: none;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(3) {
  margin-top: 25px;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  border-radius: 101px;
  background-color: rgba(87, 165, 168, 0.1);
  padding: 20px 60px 20px 30px;
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .lower {
    padding: 10px;
    border-radius: 30px;
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .lower > .img {
    display: none;
  }
}
.wrapper.company-matching__company-list .company-list .company-list-block .company-featured > .lower > .img > img {
  width: 60px;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company {
  margin-bottom: 30px;
  padding: 28px 40px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.wrapper.company-matching__company-list .company-list .company-list-block .company > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #57a5a8;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company > p:nth-of-type(1) > a {
  color: #57a5a8;
  text-decoration-line: none;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company > p:nth-of-type(2) {
  font-size: 12px;
  color: #90b6b9;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company > p:nth-of-type(2) > a {
  color: #90b6b9;
  text-decoration-line: none;
}
.wrapper.company-matching__company-list .company-list .company-list-block .company > p:nth-of-type(3) {
  margin-top: 25px;
}
.wrapper.company-matching__company-list .statistics-database {
  border: transparent 1px solid;
  background-color: #f8fcfc;
  padding-bottom: 240px;
  position: relative;
}
.wrapper.company-matching__company-list .statistics-database .sub-h2 {
  margin-top: 156px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-list .statistics-database h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-list .statistics-database .statistics-area {
  width: 1200px;
  margin: 0 auto;
  margin-top: 68px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__company-list .statistics-database .statistics-area {
    width: 98%;
    margin: 60px auto 0;
  }
}
.wrapper.company-matching__company-list .statistics-database .statistics-area > .prefecture_name {
  text-align: center;
  padding: 30px;
  font-size: 20px;
}
.wrapper.company-matching__company-list .statistics-database .statistics-area > .statistical-data-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__company-list .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-list .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.company-matching__company-list .statistics-database .statistics-area > .statistical-data-details > div {
  border: solid 1px #eee;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.wrapper.company-matching__company-details .mv {
  background-image: url(../image/mv-company-details.png);
}

.mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-size: cover;
  background-position: center;
}
.mv > .mv-company-block {
  position: absolute;
  width: 1200px;
  height: 380px;
  top: 120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
}
.mv > .mv-company-block > .company-image {
  width: 540px;
  height: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.mv > .mv-company-block > .company-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mv > .mv-company-block > .company-summary {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 20px 11px;
}
.mv > .mv-company-block > .company-summary > .modal-wrapper {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  background-color: white;
  position: absolute;
  z-index: 999;
  top: 50px;
  right: 20px;
  width: 480px;
  max-width: calc(100% - 40px);
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mv > .mv-company-block > .company-summary > .modal-wrapper.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner {
  padding: 40px;
}
.mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-block > img {
  vertical-align: bottom;
}
.mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-description {
  font-size: 14px;
  line-height: 2;
  color: #777;
}
.mv > .mv-company-block > .company-summary > .caution {
  position: relative;
  text-align: right;
  color: #57a5a8;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}
.mv > .mv-company-block > .company-summary > .caution > span {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.mv > .mv-company-block > .company-summary > .caution > span > img {
  position: relative;
  top: -2px;
  left: -4px;
  width: 18px;
  height: 18px;
  vertical-align: bottom;
}
.mv > .mv-company-block > .company-summary > .caution > span:hover {
  opacity: 0.7;
}
.mv > .mv-company-block > .company-summary > .company-info {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
.mv > .mv-company-block > .company-summary > .company-info > .company-name {
  color: #57a5a8;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.mv > .mv-company-block > .company-summary > .source {
  position: relative;
  z-index: 1;
  color: #90b6b9;
  font-size: 12px;
}
.mv > .mv-company-block > .company-summary > .source > cite {
  font-style: normal;
}
.mv > .mv-company-block > .company-summary > .source > cite > a {
  text-decoration: none;
  color: #90b6b9;
}
.mv > .mv-company-block > .company-summary > .source > cite > a:hover {
  opacity: 0.7;
}

.company-profile-section {
  margin-top: 140px;
  background-color: white;
  border: transparent 1px solid;
}
.company-profile-section .company-profile-block {
  width: 1060px;
  margin: 0 auto;
  padding: 156px 0px 160px;
  background-color: #fff;
}
.company-profile-section .company-profile-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.company-profile-section .company-profile-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.company-profile-section .company-profile-block > .company-profile-wrapper {
  padding: 80px 60px 0;
}
.company-profile-section .company-profile-block > .company-profile-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cccccc;
}
.company-profile-section .company-profile-block > .company-profile-wrapper > div > dt {
  width: 260px;
  min-width: 260px;
  border: none;
  padding: 30px 20px;
  font-weight: bold;
}
.company-profile-section .company-profile-block > .company-profile-wrapper > div > dd {
  padding: 30px 20px 30px 0px;
}
.company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper > .keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  color: #57a5a8;
  font-size: 12px;
  padding: 0 15px;
  border: solid 1px #57a5a8;
  border-radius: 4px;
  margin: 0 6px 6px 0;
}

.surrounding-company-information-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.surrounding-company-information-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.surrounding-company-information-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.surrounding-company-information-section .surrounding-company-information-block {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 240px;
  padding: 82px 130px 20px 160px;
  background-color: #f8fcfc;
}
.surrounding-company-information-section .surrounding-company-information-block > .company.hide {
   display: none;
}
.surrounding-company-information-section .surrounding-company-information-block > .company {
  background-color: white;
  margin-bottom: 30px;
  padding: 28px 40px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #57a5a8;
}
.surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) > a {
  color: #57a5a8;
  text-decoration-line: none;
}
.surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) {
  font-size: 12px;
  color: #90b6b9;
}
.surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) > a {
  color: #90b6b9;
  text-decoration-line: none;
}
.surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(3) {
  margin-top: 25px;
}
.surrounding-company-information-section .surrounding-company-information-block > .button-more {
  margin-top: 80px;
}
.surrounding-company-information-section .surrounding-company-information-block > .button-more > button {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 296px;
  padding: 23px 0px 26px;
  color: #57a5a8;
  background-color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  position: relative;
}
.surrounding-company-information-section .surrounding-company-information-block > .button-more > button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 27px;
  right: 28px;
  background-image: url(../image/plus.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}

.related-services-section {
  background-color: white;
  border: transparent 1px solid;
}
.related-services-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 156px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.related-services-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.related-services-section .related-services-block {
  padding: 82px 0px 160px;
  background-color: white;
}
.related-services-section .related-services-block > .iframe-wrapper {
  text-align: center;
}

.statistics-area {
  width: 1200px;
  margin: 0 auto;
  margin-top: 68px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .statistics-area {
    width: 98%;
    margin: 60px auto 0;
  }
}
.statistics-area > .prefecture_name {
  text-align: center;
  padding: 30px;
  font-size: 20px;
}
.statistics-area > .statistical-data-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.statistics-area > .statistical-data-details > div {
  border: solid 1px #eee;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.statistics-database-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  padding-bottom: 160px;
}
.statistics-database-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.statistics-database-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}

.introduction-section {
  background-color: white;
  border: transparent 1px solid;
  position: relative;
}
.introduction-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  margin-top: 156px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.introduction-section h2 {
  width: 1200px;
  margin: 0 auto;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.introduction-section .introduction-block {
  padding: 82px 0px 160px;
  background-color: white;
}
.introduction-section .introduction-block > .button {
  margin-top: 30px;
  text-align: center;
}
.introduction-section .introduction-block > .button button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.introduction-section .introduction-block > .button button:hover {
  opacity: 0.7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.introduction-section .introduction-block > .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}

@media screen and (max-width: 1200px) {
  .wrapper.company-matching__company-details .mv {
    background-image: url(../image/mv-company-details.png);
  }
  .mv {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    background-size: cover;
    background-position: center;
  }
  .mv > .mv-company-block {
    position: relative;
    width: 100%;
    height: auto;
    top: 120px;
    left: 0;
    -webkit-transform: none;
            transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: white;
  }
  .mv > .mv-company-block > .company-image {
    width: 540px;
    min-width: 100%;
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .mv > .mv-company-block > .company-image > img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    vertical-align: bottom;
  }
  .mv > .mv-company-block > .company-summary {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 100px 20px 11px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .mv > .mv-company-block > .company-summary > .modal-wrapper {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    background-color: white;
    position: absolute;
    z-index: 999;
    top: 50px;
    right: 20px;
    width: 480px;
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mv > .mv-company-block > .company-summary > .modal-wrapper.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner {
    padding: 40px;
  }
  .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-block > img {
    vertical-align: bottom;
  }
  .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-description {
    font-size: 14px;
    line-height: 2;
    color: #777;
  }
  .mv > .mv-company-block > .company-summary > .caution {
    position: relative;
    text-align: right;
    color: #57a5a8;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
  }
  .mv > .mv-company-block > .company-summary > .caution > span {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .mv > .mv-company-block > .company-summary > .caution > span > img {
    position: relative;
    top: -2px;
    left: -4px;
    width: 18px;
    height: 18px;
    vertical-align: bottom;
  }
  .mv > .mv-company-block > .company-summary > .caution > span:hover {
    opacity: 0.7;
  }
  .mv > .mv-company-block > .company-summary > .company-info {
    position: relative;
    z-index: 1;
    padding: 0 20px;
  }
  .mv > .mv-company-block > .company-summary > .company-info > .company-name {
    color: #57a5a8;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .mv > .mv-company-block > .company-summary > .source {
    position: relative;
    z-index: 1;
    color: #90b6b9;
    font-size: 12px;
    padding-top: 10px;
  }
  .mv > .mv-company-block > .company-summary > .source > cite {
    font-style: normal;
  }
  .mv > .mv-company-block > .company-summary > .source > cite > a {
    text-decoration: none;
    color: #90b6b9;
  }
  .mv > .mv-company-block > .company-summary > .source > cite > a:hover {
    opacity: 0.7;
  }
  .company-profile-section {
    margin-top: 140px;
    background-color: white;
    border: transparent 1px solid;
  }
  .company-profile-section .company-profile-block {
    width: 100%;
    margin-bottom: 0px;
    padding: 0px 0px 160px;
    background-color: #fff;
  }
  .company-profile-section .company-profile-block > .sub-h2 {
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .company-profile-section .company-profile-block > h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .company-profile-section .company-profile-block > .company-profile-wrapper {
    padding: 80px 20px 0;
  }
  .company-profile-section .company-profile-block > .company-profile-wrapper > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #cccccc;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .company-profile-section .company-profile-block > .company-profile-wrapper > div > dt {
    width: 260px;
    min-width: 260px;
    border: none;
    padding: 30px 20px 0px 0px;
    font-weight: bold;
  }
  .company-profile-section .company-profile-block > .company-profile-wrapper > div > dd {
    padding: 30px 20px 30px 0px;
  }
  .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    row-gap: 6px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper > .keyword {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 28px;
    color: #57a5a8;
    font-size: 12px;
    padding: 0 15px;
    border: solid 1px #57a5a8;
    border-radius: 4px;
    margin: 0 6px 6px 0;
  }
  .surrounding-company-information-section {
    background-color: #f8fcfc;
    border: transparent 1px solid;
  }
  .surrounding-company-information-section .sub-h2 {
    width: 100%;
    text-align: center;
    margin-top: 96px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
  }
  .surrounding-company-information-section h2 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
  }
  .surrounding-company-information-section .surrounding-company-information-block {
    width: 100%;
    margin-bottom: 0px;
    padding: 82px 20px 160px;
    background-color: #f8fcfc;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .company.hide {
     display: none;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .company {
    background-color: white;
    margin-bottom: 30px;
    padding: 28px 40px 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) {
    font-size: 20px;
    font-weight: bold;
    color: #57a5a8;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) > a {
    color: #57a5a8;
    text-decoration-line: none;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) {
    font-size: 12px;
    color: #90b6b9;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) > a {
    color: #90b6b9;
    text-decoration-line: none;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(3) {
    margin-top: 25px;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .button-more {
    margin-top: 80px;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .button-more > button {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 296px;
    padding: 23px 0px 26px;
    color: #57a5a8;
    background-color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
    position: relative;
  }
  .surrounding-company-information-section .surrounding-company-information-block > .button-more > button::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 27px;
    right: 28px;
    background-image: url(../image/plus.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .related-services-section {
    background-color: white;
    border: transparent 1px solid;
  }
  .related-services-section .sub-h2 {
    width: 100%;
    text-align: center;
    margin-top: 156px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
  }
  .related-services-section h2 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
  }
  .related-services-section .related-services-block {
    padding: 82px 0px 160px;
    background-color: white;
  }
  .related-services-section .related-services-block > .iframe-wrapper {
    text-align: center;
  }
  .introduction-section {
    background-color: white;
    border: transparent 1px solid;
    position: relative;
  }
  .introduction-section .sub-h2 {
    width: 100%;
    margin-top: 156px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    padding-left: 10px;
  }
  .introduction-section h2 {
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 10px;
  }
  .introduction-section .introduction-block {
    padding: 82px 0px 160px;
    background-color: white;
  }
  .introduction-section .introduction-block > .button {
    margin-top: 30px;
    text-align: center;
  }
  .introduction-section .introduction-block > .button button {
    cursor: pointer;
    position: relative;
    padding: 12px 0 16px;
    background-color: #57a5a8;
    text-align: center;
    width: 204px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    border: none;
    color: #fff;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .introduction-section .introduction-block > .button button:hover {
    opacity: 0.7;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .introduction-section .introduction-block > .button button img {
    position: absolute;
    top: 17px;
    right: 20px;
  }
  .statistics-area {
    width: 100%;
    margin-bottom: 0px;
    padding: 82px 5px 160px;
    background-color: #fff;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .statistics-area {
    width: 98%;
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 1200px) {
  .statistics-area > .prefecture_name {
    text-align: center;
    padding: 30px;
    font-size: 20px;
  }
  .statistics-area > .statistical-data-details {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 24px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 1200px) {
  .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1200px) and (max-width: 767px) {
  .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1200px) {
  .statistics-area > .statistical-data-details > div {
    border: solid 1px #eee;
    margin: 0 auto;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }
  .statistics-database-section {
    background-color: #f8fcfc;
    border: transparent 1px solid;
    padding-bottom: 160px;
  }
  .statistics-database-section .sub-h2 {
    width: 100%;
    text-align: center;
    margin-top: 96px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    padding-left: 10px;
  }
  .statistics-database-section h2 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    padding-left: 10px;
  }
}
.additional-info-loading {
  text-align: center;
}

.wrapper.company-matching__company-details-featured .mv,
.wrapper.company-list__company-details-featured .mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-company-details.png);
  background-size: cover;
  background-position: center;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block,
.wrapper.company-list__company-details-featured .mv > .mv-company-block {
  position: absolute;
  width: 1200px;
  height: 380px;
  top: 120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-image,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-image {
  width: 540px;
  height: 380px;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-image > img,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 20px 11px;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  background-color: white;
  position: absolute;
  z-index: 999;
  top: 50px;
  right: 20px;
  width: 480px;
  max-width: calc(100% - 40px);
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper.show,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner {
  padding: 40px;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-block > img,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-block > img {
  vertical-align: bottom;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-description,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-description {
  font-size: 14px;
  line-height: 2;
  color: #777;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .caution,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .caution {
  position: relative;
  text-align: right;
  color: #57a5a8;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span > img,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span > img {
  position: relative;
  top: -2px;
  left: -4px;
  width: 18px;
  height: 18px;
  vertical-align: bottom;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span:hover,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span:hover {
  opacity: 0.7;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .company-name,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .company-name {
  color: #57a5a8;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button {
  margin-top: 32px;
  text-align: center;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button button,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button button {
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button button img,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .source,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .source {
  position: relative;
  z-index: 1;
  color: #90b6b9;
  font-size: 12px;
  margin-top: 10px;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite {
  font-style: normal;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite > a,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite > a {
  text-decoration: none;
  color: #90b6b9;
}
.wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite > a:hover,
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite > a:hover {
  opacity: 0.7;
}
.wrapper.company-matching__company-details-featured .pr-point-section,
.wrapper.company-list__company-details-featured .pr-point-section {
  margin-top: 140px;
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block,
.wrapper.company-list__company-details-featured .pr-point-section .pr-point-block {
  width: 1060px;
  margin: 0 auto;
  padding: 156px 0px 160px;
  background-color: #fff;
}
.wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block > .sub-h2,
.wrapper.company-list__company-details-featured .pr-point-section .pr-point-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #57a5a8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block > h2,
.wrapper.company-list__company-details-featured .pr-point-section .pr-point-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block > .pr-point-wrapper,
.wrapper.company-list__company-details-featured .pr-point-section .pr-point-block > .pr-point-wrapper {
  margin-top: 40px;
  padding: 40px 60px;
}
.wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block > .pr-point-wrapper > ul > li span,
.wrapper.company-list__company-details-featured .pr-point-section .pr-point-block > .pr-point-wrapper > ul > li span {
  color: #b5d5d8;
  font-weight: 500;
}
.wrapper.company-matching__company-details-featured .achievement-section,
.wrapper.company-list__company-details-featured .achievement-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .achievement-section .achievement-block,
.wrapper.company-list__company-details-featured .achievement-section .achievement-block {
  width: 1060px;
  margin: 0 auto;
  padding: 0px 0px 160px;
  background-color: #fff;
}
.wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .sub-h2,
.wrapper.company-list__company-details-featured .achievement-section .achievement-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .achievement-section .achievement-block > h2,
.wrapper.company-list__company-details-featured .achievement-section .achievement-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper,
.wrapper.company-list__company-details-featured .achievement-section .achievement-block > .achievement-wrapper {
  margin-top: 40px;
  padding: 40px 60px;
}
.wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases,
.wrapper.company-list__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 12px 1fr 12px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}
.wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case,
.wrapper.company-list__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case {
  padding: 26px 30px 30px 30px;
}
.wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case > p,
.wrapper.company-list__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case > p {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 20px;
}
.wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case > .img > img,
.wrapper.company-list__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case > .img > img {
  width: 285px;
  height: 154px;
}
.wrapper.company-matching__company-details-featured .information-section,
.wrapper.company-list__company-details-featured .information-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .information-section .information-block,
.wrapper.company-list__company-details-featured .information-section .information-block {
  width: 1060px;
  margin: 0 auto;
  padding: 0px 0px 160px;
  background-color: #fff;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .sub-h2,
.wrapper.company-list__company-details-featured .information-section .information-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > h2,
.wrapper.company-list__company-details-featured .information-section .information-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper {
  padding: 80px 60px 0;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cccccc;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > dt,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > dt {
  width: 260px;
  min-width: 260px;
  border: none;
  padding: 30px 20px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > dd,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > dd {
  padding: 30px 20px 30px 0px;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .keyword-wrapper,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .keyword-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  flex-wrap: wrap;
  row-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .keyword-wrapper > .keyword,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .keyword-wrapper > .keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  color: #57a5a8;
  font-size: 12px;
  padding: 0 15px;
  border: solid 1px #57a5a8;
  border-radius: 4px;
  margin: 0 6px 6px 0;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div {
  margin-bottom: 16px;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div > p:first-of-type,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div > p:first-of-type {
  font-weight: 500;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span {
  line-height: 1;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:first-of-type,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:first-of-type {
  padding: 0 8px 0 0;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:not(:first-of-type),
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:not(:first-of-type) {
  padding: 0 8px 0;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:not(:last-of-type),
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:not(:last-of-type) {
  border-right: 1px solid #222;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span.highlight,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span.highlight {
  font-weight: 500;
  color: #57a5a8;
}
.wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > #chart-area,
.wrapper.company-list__company-details-featured .information-section .information-block > .information-wrapper > #chart-area {
  border-bottom: none;
  display: block;
  text-align: center;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section,
.wrapper.company-list__company-details-featured .bulk-estimate-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section .sub-h2,
.wrapper.company-list__company-details-featured .bulk-estimate-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  background-color: #f8fcfc;
  text-align: center;
  padding-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section h2,
.wrapper.company-list__company-details-featured .bulk-estimate-section h2 {
  width: 1200px;
  margin: 0 auto;
  background-color: #f8fcfc;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block,
.wrapper.company-list__company-details-featured .bulk-estimate-section .bulk-estimate-block {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 240px;
  padding: 82px 130px 160px;
  background-color: #f8fcfc;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block p,
.wrapper.company-list__company-details-featured .bulk-estimate-section .bulk-estimate-block p {
  text-align: center;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate,
.wrapper.company-list__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate {
  margin-top: 40px;
  text-align: center;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input,
.wrapper.company-list__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input {
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input:hover,
.wrapper.company-list__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input:hover {
  opacity: 0.7;
}
.wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input img,
.wrapper.company-list__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-matching__company-details-featured .forte-section,
.wrapper.company-list__company-details-featured .forte-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .forte-section .forte-block,
.wrapper.company-list__company-details-featured .forte-section .forte-block {
  width: 1060px;
  margin: 0 auto;
  padding: 0px 0px 160px;
  background-color: #fff;
}
.wrapper.company-matching__company-details-featured .forte-section .forte-block > .sub-h2,
.wrapper.company-list__company-details-featured .forte-section .forte-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .forte-section .forte-block > h2,
.wrapper.company-list__company-details-featured .forte-section .forte-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .forte-section .forte-block > .forte-wrapper,
.wrapper.company-list__company-details-featured .forte-section .forte-block > .forte-wrapper {
  margin-top: 40px;
  padding: 40px 60px;
}
.wrapper.company-matching__company-details-featured .detail-section,
.wrapper.company-list__company-details-featured .detail-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .detail-section .detail-block,
.wrapper.company-list__company-details-featured .detail-section .detail-block {
  width: 1060px;
  margin: 0 auto;
  padding: 0px 0px 160px;
  background-color: #fff;
}
.wrapper.company-matching__company-details-featured .detail-section .detail-block > .sub-h2,
.wrapper.company-list__company-details-featured .detail-section .detail-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .detail-section .detail-block > h2,
.wrapper.company-list__company-details-featured .detail-section .detail-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .detail-section .detail-block > .detail-wrapper,
.wrapper.company-list__company-details-featured .detail-section .detail-block > .detail-wrapper {
  margin-top: 40px;
  padding: 40px 60px;
}
.wrapper.company-matching__company-details-featured .company-profile-section,
.wrapper.company-list__company-details-featured .company-profile-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block {
  width: 1060px;
  margin: 0 auto;
  padding: 0px 0px 160px;
  background-color: #fff;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .sub-h2,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > h2,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper {
  padding: 80px 60px 0;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cccccc;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > dt,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > dt {
  width: 260px;
  min-width: 260px;
  border: none;
  padding: 30px 20px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > dd,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > dd {
  padding: 30px 20px 30px 0px;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}
.wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper > .keyword,
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper > .keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  color: #57a5a8;
  font-size: 12px;
  padding: 0 15px;
  border: solid 1px #57a5a8;
  border-radius: 4px;
  margin: 0 6px 6px 0;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section,
.wrapper.company-list__company-details-featured .surrounding-company-information-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .sub-h2,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section h2,
.wrapper.company-list__company-details-featured .surrounding-company-information-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block {
  width: 1200px;
  margin: 0 auto;
  padding: 82px 130px 160px;
  background-color: #f8fcfc;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company.hide,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company.hide {
  display: none;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company {
  background-color: white;
  margin-bottom: 30px;
  padding: 28px 40px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1),
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #57a5a8;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) > a,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) > a {
  color: #57a5a8;
  text-decoration-line: none;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2),
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) {
  font-size: 12px;
  color: #90b6b9;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) > a,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) > a {
  color: #90b6b9;
  text-decoration-line: none;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(3),
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(3) {
  margin-top: 25px;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more {
  margin-top: 80px;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more > button,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more > button {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 296px;
  padding: 23px 0px 26px;
  color: #57a5a8;
  background-color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  position: relative;
}
.wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more > button::after,
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more > button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 27px;
  right: 28px;
  background-image: url(../image/plus.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.wrapper.company-matching__company-details-featured .related-services-section,
.wrapper.company-list__company-details-featured .related-services-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-matching__company-details-featured .related-services-section .sub-h2,
.wrapper.company-list__company-details-featured .related-services-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 156px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .related-services-section h2,
.wrapper.company-list__company-details-featured .related-services-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .related-services-section .related-services-block,
.wrapper.company-list__company-details-featured .related-services-section .related-services-block {
  padding: 82px 0px 160px;
  background-color: white;
}
.wrapper.company-matching__company-details-featured .related-services-section .related-services-block > .iframe-wrapper,
.wrapper.company-list__company-details-featured .related-services-section .related-services-block > .iframe-wrapper {
  text-align: center;
}
.wrapper.company-matching__company-details-featured .statistics-database-section,
.wrapper.company-list__company-details-featured .statistics-database-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  padding-bottom: 160px;
}
.wrapper.company-matching__company-details-featured .statistics-database-section .sub-h2,
.wrapper.company-list__company-details-featured .statistics-database-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .statistics-database-section h2,
.wrapper.company-list__company-details-featured .statistics-database-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .statistics-database-section .statistics-area,
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-area {
  width: 1200px;
  margin: 0 auto;
  margin-top: 68px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-area,
  .wrapper.company-list__company-details-featured .statistics-database-section .statistics-area {
    width: 98%;
    margin: 60px auto 0;
  }
}
.wrapper.company-matching__company-details-featured .statistics-database-section .statistics-area > .prefecture_name,
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-area > .prefecture_name {
  text-align: center;
  padding: 30px;
  font-size: 20px;
}
.wrapper.company-matching__company-details-featured .statistics-database-section .statistics-area > .statistical-data-details,
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-area > .statistical-data-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-area > .statistical-data-details,
  .wrapper.company-list__company-details-featured .statistics-database-section .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-area > .statistical-data-details,
  .wrapper.company-list__company-details-featured .statistics-database-section .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.company-matching__company-details-featured .statistics-database-section .statistics-area > .statistical-data-details > div,
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-area > .statistical-data-details > div {
  border: solid 1px #eee;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}
.wrapper.company-matching__company-details-featured .introduction-section,
.wrapper.company-list__company-details-featured .introduction-section {
  background-color: white;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.company-matching__company-details-featured .introduction-section .sub-h2,
.wrapper.company-list__company-details-featured .introduction-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  margin-top: 156px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-matching__company-details-featured .introduction-section h2,
.wrapper.company-list__company-details-featured .introduction-section h2 {
  width: 1200px;
  margin: 0 auto;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__company-details-featured .introduction-section .introduction-block,
.wrapper.company-list__company-details-featured .introduction-section .introduction-block {
  padding: 82px 0px 160px;
  background-color: white;
}
.wrapper.company-matching__company-details-featured .introduction-section .introduction-block > .button,
.wrapper.company-list__company-details-featured .introduction-section .introduction-block > .button {
  margin-top: 30px;
  text-align: center;
}
.wrapper.company-matching__company-details-featured .introduction-section .introduction-block > .button button,
.wrapper.company-list__company-details-featured .introduction-section .introduction-block > .button button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.wrapper.company-matching__company-details-featured .introduction-section .introduction-block > .button button:hover,
.wrapper.company-list__company-details-featured .introduction-section .introduction-block > .button button:hover {
  opacity: 0.7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.wrapper.company-matching__company-details-featured .introduction-section .introduction-block > .button button img,
.wrapper.company-list__company-details-featured .introduction-section .introduction-block > .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}

@media screen and (max-width: 1200px) {
  .wrapper.company-matching__company-details-featured .mv {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: auto;
    background-image: url(../image/mv-company-details.png);
    background-size: cover;
    background-position: center;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block {
    position: relative;
    width: 100%;
    height: auto;
    top: 120px;
    left: 0;
    -webkit-transform: none;
            transform: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background-color: white;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-image {
    width: 540px;
    min-width: 100%;
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-image > img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    vertical-align: bottom;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary {
    position: relative;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 100px 20px 11px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    background-color: white;
    position: absolute;
    z-index: 999;
    top: 50px;
    right: 20px;
    width: 480px;
    max-width: calc(100% - 40px);
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner {
    padding: 40px;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-block > img {
    vertical-align: bottom;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-description {
    font-size: 14px;
    line-height: 2;
    color: #777;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .caution {
    position: relative;
    text-align: right;
    color: #57a5a8;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span > img {
    position: relative;
    top: -2px;
    left: -4px;
    width: 18px;
    height: 18px;
    vertical-align: bottom;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span:hover {
    opacity: 0.7;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info {
    position: relative;
    z-index: 1;
    padding: 0 20px;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .company-name {
    color: #57a5a8;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button {
    margin-top: 32px;
    text-align: center;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button button {
    position: relative;
    padding: 12px 0 16px;
    background-color: #57a5a8;
    text-align: center;
    width: 204px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    border: none;
    color: #fff;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button button img {
    position: absolute;
    top: 17px;
    right: 20px;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .source {
    position: relative;
    z-index: 1;
    color: #90b6b9;
    font-size: 12px;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite {
    font-style: normal;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite > a {
    text-decoration: none;
    color: #90b6b9;
  }
  .wrapper.company-matching__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite > a:hover {
    opacity: 0.7;
  }
  .wrapper.company-matching__company-details-featured .pr-point-section {
    margin-top: 140px;
    background-color: white;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block {
    width: 100%;
    padding: 156px 0px 160px;
    background-color: #fff;
  }
  .wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block > .sub-h2 {
    font-family: "Barlow", sans-serif;
    color: #57a5a8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block > h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block > .pr-point-wrapper {
    margin-top: 40px;
    padding: 40px 60px;
  }
  .wrapper.company-matching__company-details-featured .pr-point-section .pr-point-block > .pr-point-wrapper > ul > li span {
    color: #b5d5d8;
    font-weight: 500;
  }
  .wrapper.company-matching__company-details-featured .achievement-section {
    background-color: white;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .achievement-section .achievement-block {
    width: 100%;
    padding: 0px 0px 160px;
    background-color: #fff;
  }
  .wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .sub-h2 {
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .achievement-section .achievement-block > h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper {
    margin: 40px auto 0px auto;
    padding: 40px 20px;
  }
  .wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
  }
  .wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case {
    padding: 26px 30px 30px 30px;
  }
  .wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case > p {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: 20px;
  }
  .wrapper.company-matching__company-details-featured .achievement-section .achievement-block > .achievement-wrapper > .cases > .case > .img > img {
    width: 285px;
    height: 154px;
  }
  .wrapper.company-matching__company-details-featured .information-section {
    background-color: white;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block {
    width: 100%;
    margin-bottom: 0px;
    padding: 0px 0px 160px;
    background-color: #fff;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .sub-h2 {
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper {
    padding: 80px 20px 0;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #cccccc;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > dt {
    width: 260px;
    min-width: 260px;
    border: none;
    padding: 30px 20px 0px 0px;
    font-weight: bold;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > dd {
    padding: 30px 20px 30px 0px;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .keyword-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .keyword-wrapper > .keyword {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 28px;
    color: #57a5a8;
    font-size: 12px;
    padding: 0 15px;
    border: solid 1px #57a5a8;
    border-radius: 4px;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div {
    margin-bottom: 16px;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div > p:first-of-type {
    font-weight: 500;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span {
    line-height: 1;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:first-of-type {
    padding: 0 8px 0 0;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:not(:first-of-type) {
    padding: 0 8px 0;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span:not(:last-of-type) {
    border-right: 1px solid #222;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > div > .support-area > div span.highlight {
    font-weight: 500;
    color: #57a5a8;
  }
  .wrapper.company-matching__company-details-featured .information-section .information-block > .information-wrapper > #chart-area {
    border-bottom: none;
    display: block;
    text-align: center;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section {
    background-color: white;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section .sub-h2 {
    width: 100%;
    background-color: #f8fcfc;
    text-align: center;
    padding-top: 96px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section h2 {
    width: 100%;
    background-color: #f8fcfc;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block {
    width: 100%;
    margin-bottom: 0px;
    padding: 82px 20px 160px;
    background-color: #f8fcfc;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block p {
    text-align: center;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate {
    margin-top: 40px;
    margin-bottom: 0px;
    text-align: center;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input {
    line-height: 1.4;
    display: inline-block;
    position: relative;
    padding: 12px 0 16px;
    background-color: #57a5a8;
    text-align: center;
    width: 204px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    border: none;
    color: #fff;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input:hover {
    opacity: 0.7;
  }
  .wrapper.company-matching__company-details-featured .bulk-estimate-section .bulk-estimate-block > .button-estimate input img {
    position: absolute;
    top: 17px;
    right: 20px;
  }
  .wrapper.company-matching__company-details-featured .forte-section {
    background-color: white;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .forte-section .forte-block {
    width: 100%;
    padding: 80px 0px 160px;
    background-color: #fff;
  }
  .wrapper.company-matching__company-details-featured .forte-section .forte-block > .sub-h2 {
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .forte-section .forte-block > h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .forte-section .forte-block > .forte-wrapper {
    margin-top: 40px;
    padding: 40px 20px;
  }
  .wrapper.company-matching__company-details-featured .detail-section {
    background-color: white;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .detail-section .detail-block {
    width: 100%;
    padding: 0px 0px 160px;
    background-color: #fff;
  }
  .wrapper.company-matching__company-details-featured .detail-section .detail-block > .sub-h2 {
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .detail-section .detail-block > h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .detail-section .detail-block > .detail-wrapper {
    margin-top: 40px;
    padding: 40px 20px;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section {
    background-color: white;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block {
    width: 100%;
    margin-bottom: 0px;
    padding: 0px 0px 160px;
    background-color: #fff;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .sub-h2 {
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper {
    padding: 80px 20px 0;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #cccccc;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > dt {
    width: 260px;
    min-width: 260px;
    border: none;
    padding: 30px 20px 0px 0px;
    font-weight: bold;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > dd {
    padding: 30px 20px 30px 0px;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 6px;
       -moz-column-gap: 6px;
            column-gap: 6px;
    row-gap: 6px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .wrapper.company-matching__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper > .keyword {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 28px;
    color: #57a5a8;
    font-size: 12px;
    padding: 0 15px;
    border: solid 1px #57a5a8;
    border-radius: 4px;
    margin: 0 6px 6px 0;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section {
    background-color: #f8fcfc;
    border: transparent 1px solid;
    padding-bottom: 160px;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .sub-h2 {
    width: 100%;
    text-align: center;
    margin-top: 96px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section h2 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block {
    width: 100%;
    margin-bottom: 0px;
    padding: 82px 20px 160px;
    background-color: #f8fcfc;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company {
    background-color: white;
    margin-bottom: 30px;
    padding: 28px 40px 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) {
    font-size: 20px;
    font-weight: bold;
    color: #57a5a8;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) {
    font-size: 12px;
    color: #90b6b9;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(3) {
    margin-top: 25px;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more {
    margin-top: 80px;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more > button {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 296px;
    padding: 23px 0px 26px;
    color: #57a5a8;
    background-color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
    position: relative;
  }
  .wrapper.company-matching__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more > button::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 27px;
    right: 28px;
    background-image: url(../image/plus.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .wrapper.company-matching__company-details-featured .related-services-section {
    background-color: white;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .related-services-section .sub-h2 {
    width: 100%;
    text-align: center;
    margin-top: 156px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
  }
  .wrapper.company-matching__company-details-featured .related-services-section h2 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
  }
  .wrapper.company-matching__company-details-featured .related-services-section .related-services-block {
    padding: 82px 0px 160px;
    background-color: white;
  }
  .wrapper.company-matching__company-details-featured .related-services-section .related-services-block > .iframe-wrapper {
    text-align: center;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section {
    background-color: #f8fcfc;
    border: transparent 1px solid;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .sub-h2 {
    width: 100%;
    text-align: center;
    margin-top: 96px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section h2 {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-database-block {
    width: 100%;
    margin-bottom: 0px;
    padding: 82px 40px 160px;
    background-color: #f8fcfc;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-database-block > .company {
    background-color: white;
    margin-bottom: 30px;
    padding: 28px 40px 30px;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-database-block > .company > p:nth-of-type(1) {
    font-size: 20px;
    font-weight: bold;
    color: #57a5a8;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-database-block > .company > p:nth-of-type(2) {
    font-size: 12px;
    color: #90b6b9;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-database-block > .company > p:nth-of-type(3) {
    margin-top: 25px;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-database-block > .button-more {
    margin-top: 80px;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-database-block > .button-more > button {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 296px;
    padding: 23px 0px 26px;
    color: #57a5a8;
    background-color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    border: none;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
    position: relative;
  }
  .wrapper.company-matching__company-details-featured .statistics-database-section .statistics-database-block > .button-more > button::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: 27px;
    right: 28px;
    background-image: url(../image/plus.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
  }
  .wrapper.company-matching__company-details-featured .introduction-section {
    background-color: white;
    border: transparent 1px solid;
    position: relative;
  }
  .wrapper.company-matching__company-details-featured .introduction-section .sub-h2 {
    width: 100%;
    margin-top: 156px;
    font-family: "Barlow", sans-serif;
    color: #b5d5d8;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .introduction-section h2 {
    width: 100%;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.5;
    margin-left: 10px;
  }
  .wrapper.company-matching__company-details-featured .introduction-section .introduction-block {
    padding: 82px 0px 160px;
    background-color: white;
  }
  .wrapper.company-matching__company-details-featured .introduction-section .introduction-block > .button {
    margin-top: 30px;
    text-align: center;
  }
  .wrapper.company-matching__company-details-featured .introduction-section .introduction-block > .button button {
    cursor: pointer;
    position: relative;
    padding: 12px 0 16px;
    background-color: #57a5a8;
    text-align: center;
    width: 204px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    border: none;
    color: #fff;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }
  .wrapper.company-matching__company-details-featured .introduction-section .introduction-block > .button button:hover {
    opacity: 0.7;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .wrapper.company-matching__company-details-featured .introduction-section .introduction-block > .button button img {
    position: absolute;
    top: 17px;
    right: 20px;
  }
}
.wrapper.company-matching__company-details-featured {
  backxground: #57a5a8;
}

.wrapper.company-list__company-details-featured .mv {
  background: #e8a36a;
}

.wrapper.company-matching__contact .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-corporation-matching-2.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.company-matching__contact .mv {
    height: 240px;
  }
}
.wrapper.company-matching__contact .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.company-matching__contact .contact-selection {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.wrapper.company-matching__contact .contact-selection .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .contact-selection .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.company-matching__contact .contact-selection h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .contact-selection h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
  padding: 120px 130px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .contact-selection .contact-selection-block {
    width: 98%;
    margin: 40px auto 0;
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__contact .contact-selection .contact-selection-block {
    padding: 24px;
  }
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block > p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block > p::before {
  position: absolute;
  top: 7px;
  left: -15px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 90%;
  background-color: #69c3bf;
  border-radius: 3px;
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block > .selection,
.wrapper.company-matching__contact .contact-selection .contact-selection-block .selection-all {
  padding: 6px 0;
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block > .selection > input,
.wrapper.company-matching__contact .contact-selection .contact-selection-block .selection-all > input {
  display: none;
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block > .selection > input:checked ~ label > span,
.wrapper.company-matching__contact .contact-selection .contact-selection-block .selection-all > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block > .selection > label,
.wrapper.company-matching__contact .contact-selection .contact-selection-block .selection-all > label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  font-size: 15px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block > .selection > label > span,
.wrapper.company-matching__contact .contact-selection .contact-selection-block .selection-all > label > span {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #c3daff;
  border-radius: 6px;
}
.wrapper.company-matching__contact .contact-selection .contact-selection-block > .selection > label:hover > span,
.wrapper.company-matching__contact .contact-selection .contact-selection-block .selection-all > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__contact .enter-your-inquiry {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.company-matching__contact .enter-your-inquiry .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .enter-your-inquiry .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.company-matching__contact .enter-your-inquiry h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-matching__contact .enter-your-inquiry h2 br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.company-matching__contact .enter-your-inquiry h2 br.md {
    display: inline;
  }
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .enter-your-inquiry h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
  margin-bottom: 240px;
  padding: 120px 130px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block {
    width: 98%;
    margin: 40px auto 0;
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block {
    padding: 24px;
  }
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block > .enter-form {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block > .enter-form::before {
  position: absolute;
  top: 7px;
  left: -15px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 90%;
  background-color: #69c3bf;
  border-radius: 3px;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form {
  margin-bottom: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 600px;
  grid-template-columns: 280px 600px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form {
    -ms-grid-columns: 600px;
    grid-template-columns: 600px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dt {
  border: none;
  background-color: white;
  padding: 15px 6px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dt {
    padding: 6px;
  }
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dt p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 11px;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dt p span {
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  border: #f76464 1px solid;
  color: #f76464;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd {
  padding: 15px 6px;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd {
    padding: 6px;
    margin-bottom: 8px;
  }
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd input::-webkit-input-placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd input::-moz-placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd input:-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd input::-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd input::placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd input {
  background-color: #f7f7f7;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd textarea::-webkit-input-placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd textarea::-moz-placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd textarea:-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd textarea::-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd textarea::placeholder {
  color: #bebebe;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd textarea {
  background-color: #f7f7f7;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .form dd span {
  font-size: 12px;
  color: #f76464;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  align-items: center;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service input {
  display: none;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service input:checked ~ label > span,
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service input:checked ~ .wpcf7-list-item-label::before {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service label {
  margin-right: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 15px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service label .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #c3daff;
  border-radius: 6px;
  vertical-align: middle;
  margin-right: 0.5em;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service > span > span {
  color: #69c3bf;
  text-decoration: underline;
  font-weight: bold;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service > span > span > a {
  color: #69c3bf;
  text-decoration: underline;
  font-weight: bold;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .confirm-terms-of-service > span > span > a:hover {
  opacity: 0.7;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .button {
  margin-top: 40px;
  margin-bottom: 160px;
  text-align: center;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .button input {
  line-height: 1.4;
  display: inline-block;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .button input:hover {
  opacity: 0.7;
}
.wrapper.company-matching__contact .enter-your-inquiry .enter-your-inquiry-block .button input img {
  position: absolute;
  top: 17px;
  right: 20px;
}

.blink {
  -webkit-animation: blink 1s infinite;
          animation: blink 1s infinite;
}

@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wrapper.company-matching__contact-thanks .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-corporation-matching-2.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.company-matching__contact-thanks .mv {
    height: 240px;
  }
}
.wrapper.company-matching__contact-thanks .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.company-matching__contact-thanks .thanks {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.company-matching__contact-thanks .thanks .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact-thanks .thanks .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.company-matching__contact-thanks .thanks h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact-thanks .thanks h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.company-matching__contact-thanks .thanks .thanks-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 240px;
  padding: 120px 130px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-matching__contact-thanks .thanks .thanks-block {
    width: 98%;
    margin: 0 auto 120px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-matching__contact-thanks .thanks .thanks-block {
    padding: 60px 30px;
  }
}
.wrapper.company-matching__contact-thanks .thanks .thanks-block > p {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 61px;
}
.wrapper.company-matching__contact-thanks .thanks .thanks-block .button {
  margin-top: 40px;
  text-align: center;
}
.wrapper.company-matching__contact-thanks .thanks .thanks-block .button:hover {
  opacity: 0.7;
}
.wrapper.company-matching__contact-thanks .thanks .thanks-block .button a {
  line-height: 1.4;
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-matching__contact-thanks .thanks .thanks-block .button a img {
  position: absolute;
  top: 17px;
  right: 20px;
}

.wrapper.company-list__selecting-industry .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 480px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-industry .mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 680px;
  }
}
.wrapper.company-list__selecting-industry .mv > .mv-left {
  -webkit-box-flex: 800;
      -ms-flex: 800;
          flex: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e8a36a;
}
.wrapper.company-list__selecting-industry .mv > .mv-left .mv-title {
  margin: 0 0 0 auto;
  width: 440px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-industry .mv > .mv-left .mv-title {
    margin-left: 3vw;
  }
}
.wrapper.company-list__selecting-industry .mv > .mv-left .mv-title > p:first-of-type {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
}
.wrapper.company-list__selecting-industry .mv > .mv-left .mv-title > p:last-of-type {
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
}
.wrapper.company-list__selecting-industry .mv > .mv-right {
  position: relative;
  -webkit-box-flex: 1120;
      -ms-flex: 1120;
          flex: 1120;
  background-image: url(../image/mv-providing-company-list.png);
  background-size: cover;
  background-position: center;
}
.wrapper.company-list__selecting-industry .mv > .mv-right > .mv-description {
  position: absolute;
  left: 40px;
  bottom: 30px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-industry .mv > .mv-right > .mv-description {
    left: 15px;
    padding-right: 1vw;
  }
}
.wrapper.company-list__selecting-industry .mv > .mv-right > .mv-description > p:first-of-type {
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 16px;
}
.wrapper.company-list__selecting-industry .mv > .mv-right > .mv-description > p:last-of-type {
  color: #fff;
  font-weight: bold;
}
.wrapper.company-list__selecting-industry .search-by-industry {
  border: transparent 1px solid;
  background-color: #fff;
}
.wrapper.company-list__selecting-industry .search-by-industry .sub-h2 {
  margin-top: 80px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__selecting-industry .search-by-industry h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block {
  max-width: 1024px;
  padding: 100px 20px;
  background-color: #fff;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -moz-column-gap: 50px;
  -webkit-column-gap: 50px;
          column-gap: 50px;
  row-gap: 15px;
  width: 100%;
  margin: 0 auto;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 20px 16px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  margin: 0 auto;
  width: 100%;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .img {
  margin-bottom: 35px;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 24px;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry > input {
  display: none;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry > input:disabled ~ label > span {
  opacity: 0.5;
  pointer-events: none;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  font-size: 15px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.3;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 6px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry .cross {
  cursor: pointer;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry .cross > span {
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #e8a36a;
  border-radius: 10px;
  position: relative;
  vertical-align: middle;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry .cross > span::after {
  opacity: 1;
  visibility: visible;
  position: absolute;
  top: -8px;
  right: 9px;
  content: "";
  display: inline-block;
  width: 2px;
  height: 20px;
  background-color: #e8a36a;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry > .large-industry .cross > span.hide::after {
  opacity: 0;
  visibility: hidden;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries:not(.show-once) {
  display: none;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries {
  width: 100%;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries > .medium-industries-inner > .medium-industry:not(:last-of-type) {
  margin-bottom: 8px;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries > .medium-industries-inner > .medium-industry {
  display: block;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries > .medium-industries-inner > .medium-industry > input {
  display: none;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries > .medium-industries-inner > .medium-industry > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries > .medium-industries-inner > .medium-industry > input:disabled ~ label {
  opacity: 0.5;
  pointer-events: none;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries > .medium-industries-inner > .medium-industry > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  line-height: 1.2;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries > .medium-industries-inner > .medium-industry > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid #c3daff;
  border-radius: 6px;
}
.wrapper.company-list__selecting-industry .search-by-industry .search-by-industry-block > .each-industry .medium-industries > .medium-industries-inner > .medium-industry > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-industry .search-by-industry .button {
  margin-bottom: 240px;
  text-align: center;
}
.wrapper.company-list__selecting-industry .search-by-industry .button button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-list__selecting-industry .search-by-industry .button button:hover {
  opacity: 0.5;
}
.wrapper.company-list__selecting-industry .search-by-industry .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-list__selecting-industry .statistics-database {
  border: transparent 1px solid;
  background-color: #f8fcfc;
  position: relative;
  padding-bottom: 240px;
}
.wrapper.company-list__selecting-industry .statistics-database .sub-h2 {
  margin-top: 156px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__selecting-industry .statistics-database h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__selecting-industry .statistics-database .statistics-area {
  width: 1200px;
  margin: 0 auto;
  margin-top: 68px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-industry .statistics-database .statistics-area {
    width: 98%;
  }
}
.wrapper.company-list__selecting-industry .statistics-database .statistics-area > .statistical-data-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-industry .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-industry .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.company-list__selecting-industry .statistics-database .statistics-area > .statistical-data-details > div {
  border: solid 1px #eee;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.wrapper.company-list__selecting-prefecture .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-company-list.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .mv {
    height: 240px;
  }
}
.wrapper.company-list__selecting-prefecture .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures {
  border: transparent 1px solid;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .sub-h2 {
  margin-top: 156px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 122px;
  position: relative;
  padding: 0 70px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block {
    width: 95%;
    margin: 60px auto;
    padding: 0 36px;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .img {
  text-align: center;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas input:disabled ~ label {
  pointer-events: none;
  opacity: 0.5;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku {
  position: absolute;
  top: 72px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku {
    position: relative;
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region {
  padding: 6px 0;
  border-bottom: 2px solid #da9b6f;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #da9b6f;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > input:checked ~ label {
  color: #da9b6f;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > label:hover {
  color: #da9b6f;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .chugoku-shikoku > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu {
  position: absolute;
  top: 72px;
  left: 288px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
    left: 260px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu {
    position: relative;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region {
  padding: 6px 0;
  border-bottom: 2px solid #a2ce84;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #a2ce84;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > input:checked ~ label {
  color: #a2ce84;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > label:hover {
  color: #a2ce84;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokuriku-koshinetsu > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa {
  position: absolute;
  top: 290px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa {
    position: relative;
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region {
  padding: 6px 0;
  border-bottom: 2px solid #e37f76;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #e37f76;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > input:checked ~ label {
  color: #e37f76;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > label:hover {
  color: #e37f76;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kyushu-okinawa > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku {
  position: absolute;
  top: 0px;
  right: 70px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku {
    position: relative;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku {
  padding: 6px 0;
  border-bottom: 2px solid #57a5a8;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #57a5a8;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .zenkoku > .region-zenkoku > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku {
  position: absolute;
  top: 72px;
  right: 70px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku {
    position: relative;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region {
  padding: 6px 0;
  border-bottom: 2px solid #7fb5d3;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #7fb5d3;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > input:checked ~ label {
  color: #7fb5d3;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > label:hover {
  color: #7fb5d3;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .hokkaido-tohoku > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto {
  position: absolute;
  top: 262px;
  right: 70px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto {
    position: relative;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region {
  padding: 6px 0;
  border-bottom: 2px solid #8ce0d4;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #8ce0d4;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > input:checked ~ label {
  color: #8ce0d4;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > label:hover {
  color: #8ce0d4;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kanto > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai {
  position: absolute;
  top: 262px;
  right: 288px;
  width: 83px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai {
    position: relative;
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region {
  padding: 6px 0;
  border-bottom: 2px solid #dbcc58;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #dbcc58;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > input:checked ~ label {
  color: #dbcc58;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > label:hover {
  color: #dbcc58;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .tokai > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki {
  position: absolute;
  top: 452px;
  right: 288px;
  width: 188px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki {
    position: relative;
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region {
  padding: 6px 0;
  border-bottom: 2px solid #efb832;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  color: #efb832;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .region > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  row-gap: 4px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > input {
  display: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > input:checked ~ label {
  color: #efb832;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > input:checked ~ label > span {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 70%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9px;
     -moz-column-gap: 9px;
          column-gap: 9px;
  font-size: 14px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > label > span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2px solid #c3daff;
  border-radius: 4px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > label:hover {
  color: #efb832;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block > .areas > .kinki > .prefectures > .prefecture > label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .button {
  margin-top: 80px;
  margin-bottom: 160px;
  text-align: center;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .button button {
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  cursor: pointer;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .button button:hover {
  opacity: 0.7;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > p {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table {
  margin: 40px auto 240px;
  width: 780px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td {
  border: 1px solid #cccccc;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td {
    display: block;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:first-of-type {
  text-align: center;
  width: 180px;
  background-color: #eeeeee;
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:first-of-type {
    width: 100%;
  }
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:last-of-type {
  font-size: 14px;
  padding: 18px 30px;
  background-color: white;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:last-of-type > div:not(:last-of-type) {
  margin-bottom: 5px;
}
.wrapper.company-list__selecting-prefecture .search-by-prefectures .search-by-prefectures-block .proportion > table > tbody > tr > td:last-of-type span {
  margin-right: 14px;
}
.wrapper.company-list__selecting-prefecture .statistics-database {
  border: transparent 1px solid;
  background-color: #f8fcfc;
  position: relative;
  padding-bottom: 240px;
}
.wrapper.company-list__selecting-prefecture .statistics-database .sub-h2 {
  margin-top: 156px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__selecting-prefecture .statistics-database h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__selecting-prefecture .statistics-database .statistics-area {
  width: 1200px;
  margin: 0 auto;
  margin-top: 68px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .statistics-database .statistics-area {
    width: 98%;
  }
}
.wrapper.company-list__selecting-prefecture .statistics-database .statistics-area > .statistical-data-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__selecting-prefecture .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__selecting-prefecture .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.company-list__selecting-prefecture .statistics-database .statistics-area > .statistical-data-details > div {
  border: solid 1px #eee;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.wrapper.company-list__company-list .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-company-list.png);
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .wrapper.company-list__company-list .mv {
    height: 240px;
  }
}
.wrapper.company-list__company-list .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.company-list__company-list .about-this-page {
  width: 1200px;
  margin: 0 auto;
  height: 118px;
  border: 1px solid transparent;
}
@media (max-width: 1200px) {
  .wrapper.company-list__company-list .about-this-page {
    width: 95%;
    margin: 0 auto;
  }
}
.wrapper.company-list__company-list .about-this-page > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
  position: relative;
}
.wrapper.company-list__company-list .about-this-page > div > .display-number {
  font-size: 12px;
}
.wrapper.company-list__company-list .about-this-page > div > .caution {
  position: relative;
  text-align: right;
  color: #57a5a8;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}
.wrapper.company-list__company-list .about-this-page > div > .caution > span {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__company-list .about-this-page > div > .caution > span > img {
  position: relative;
  top: -2px;
  left: -4px;
  width: 18px;
  height: 18px;
  vertical-align: bottom;
}
.wrapper.company-list__company-list .about-this-page > div > .caution > span:hover {
  opacity: 0.7;
}
.wrapper.company-list__company-list .about-this-page > div > .modal-wrapper {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  background-color: white;
  position: absolute;
  z-index: 999;
  top: 50px;
  right: 20px;
  width: 480px;
  max-width: calc(100% - 40px);
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .wrapper.company-list__company-list .about-this-page > div > .modal-wrapper {
    right: auto;
    left: auto;
    width: 100%;
  }
}
.wrapper.company-list__company-list .about-this-page > div > .modal-wrapper.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper.company-list__company-list .about-this-page > div > .modal-wrapper > .modal-inner {
  padding: 40px;
}
.wrapper.company-list__company-list .about-this-page > div > .modal-wrapper > .modal-inner > .caution-block > img {
  vertical-align: bottom;
}
.wrapper.company-list__company-list .about-this-page > div > .modal-wrapper > .modal-inner > .caution-description {
  font-size: 14px;
  line-height: 2;
  color: #777;
}
.wrapper.company-list__company-list .search-result-section {
  background-color: rgba(232, 163, 106, 0.04);
  border: transparent 1px solid;
  height: 423px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .wrapper.company-list__company-list .search-result-section {
    height: 350px;
  }
}
.wrapper.company-list__company-list .search-result-section > .target-num {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 35px;
}
.wrapper.company-list__company-list .search-result-section > .target-num > span {
  color: #e8a36a;
  font-family: "Barlow", sans-serif;
  font-size: 48px;
  font-weight: bold;
}
.wrapper.company-list__company-list .search-result-section > .target-num > span > span {
  color: #e8a36a;
  font-size: 28px;
  font-weight: bold;
}
.wrapper.company-list__company-list .search-result-section > .download-here {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 500;
}
.wrapper.company-list__company-list .search-result-section .button {
  text-align: center;
}
.wrapper.company-list__company-list .search-result-section .button button {
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  cursor: pointer;
}
.wrapper.company-list__company-list .search-result-section .button button:hover {
  opacity: 0.7;
}
.wrapper.company-list__company-list .search-result-section .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-list__company-list .search-result-section .cta-text {
  text-align: center;
  margin-bottom: 120px;
}
.wrapper.company-list__company-list .company-list {
  position: relative;
}
.wrapper.company-list__company-list .company-list .company-list-block {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .wrapper.company-list__company-list .company-list .company-list-block {
    width: 95%;
    margin: 0 auto;
  }
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured {
  margin-bottom: 30px;
  padding: 20px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media (max-width: 767px) {
  .wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper .company-image {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper .company-description {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #57a5a8;
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(1) > a {
  color: #57a5a8;
  text-decoration-line: none;
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(2) {
  font-size: 12px;
  color: #90b6b9;
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(2) > a {
  color: #90b6b9;
  text-decoration-line: none;
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .upper .company-description > p:nth-of-type(3) {
  margin-top: 25px;
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  border-radius: 101px;
  background-color: rgba(87, 165, 168, 0.1);
  padding: 20px 60px 20px 30px;
}
@media (max-width: 767px) {
  .wrapper.company-list__company-list .company-list .company-list-block .company-featured > .lower {
    padding: 10px;
    border-radius: 30px;
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__company-list .company-list .company-list-block .company-featured > .lower > .img {
    display: none;
  }
}
.wrapper.company-list__company-list .company-list .company-list-block .company-featured > .lower > .img > img {
  width: 60px;
}
.wrapper.company-list__company-list .company-list .company-list-block .company {
  margin-bottom: 30px;
  padding: 28px 40px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.wrapper.company-list__company-list .company-list .company-list-block .company > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #57a5a8;
}
.wrapper.company-list__company-list .company-list .company-list-block .company > p:nth-of-type(1) > a {
  color: #57a5a8;
  text-decoration-line: none;
}
.wrapper.company-list__company-list .company-list .company-list-block .company > p:nth-of-type(2) {
  font-size: 12px;
  color: #90b6b9;
}
.wrapper.company-list__company-list .company-list .company-list-block .company > p:nth-of-type(2) > a {
  color: #90b6b9;
  text-decoration-line: none;
}
.wrapper.company-list__company-list .company-list .company-list-block .company > p:nth-of-type(3) {
  margin-top: 25px;
}
.wrapper.company-list__company-list .statistics-database {
  border: transparent 1px solid;
  background-color: #f8fcfc;
  padding-bottom: 240px;
  position: relative;
}
.wrapper.company-list__company-list .statistics-database .sub-h2 {
  margin-top: 156px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__company-list .statistics-database h2 {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__company-list .statistics-database .statistics-area {
  width: 1200px;
  margin: 0 auto;
  margin-top: 68px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-list__company-list .statistics-database .statistics-area {
    width: 98%;
    margin: 60px auto 0;
  }
}
.wrapper.company-list__company-list .statistics-database .statistics-area > .prefecture_name {
  text-align: center;
  padding: 30px;
  font-size: 20px;
}
.wrapper.company-list__company-list .statistics-database .statistics-area > .statistical-data-details {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 24px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__company-list .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__company-list .statistics-database .statistics-area > .statistical-data-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.company-list__company-list .statistics-database .statistics-area > .statistical-data-details > div {
  border: solid 1px #eee;
  margin: 0 auto;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.wrapper.company-list__company-details .mv {
  background-color: #e8a36a;
}

.surrounding-company-information-block .company.hide {
  display: none;
}

.corporate-info-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 3px solid #CCC;
  margin: 2em 0;
  width: 100%;
  position: relative;
  padding-top: 3em;
  /*
  &::before {
    content: 'Click!';
    transform: rotate(-45deg) translate(0, -25%);
    width: 5rem;
    height: 5rem;
    display: flex;
    align-items: center; justify-content: center;
    font-size: .8rem;
    color: #FFF; 
    position: absolute;
    z-index: 2;
    left: 0; top: 0;
    margin: auto;
  }

  &::after {
    content: '';
    width: 5rem;
    height: 5rem;
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
  } 
  */
}
@media screen and (max-width: 768px) {
  .corporate-info-card {
    padding: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .corporate-info-card {
    padding-top: 3em;
  }
}
.corporate-info-card::after {
  width: 100%;
  height: 2em;
  display: block;
  content: "詳しくはこちら!";
  text-align: center;
  line-height: 2em;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  color: #FFF;
}
.corporate-info-card__link {
  text-decoration: none;
  color: inherit;
}
.corporate-info-card .img {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .corporate-info-card .img {
    width: 100%;
  }
}
.corporate-info-card .text {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .corporate-info-card .text {
    width: 100%;
    margin-top: 1em;
  }
}
.corporate-info-card .text p {
  margin: 0;
}
.corporate-info-card .text .company-name {
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.5;
}
.corporate-info-card .company-summary {
  font-size: 0.9rem;
  line-height: 1.5;
}
.corporate-info-card.matching {
  border-color: #57a5a8;
}
.corporate-info-card.matching .company-name {
  color: #57a5a8;
}
.corporate-info-card.matching::after {
  background: #57a5a8;
}
.corporate-info-card.list {
  border-color: #e8a36a;
}
.corporate-info-card.list .company-name {
  color: #e8a36a;
}
.corporate-info-card.list::after {
  background: #e8a36a;
}

.wrapper.company-list__company-details-featured .mv {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-color: #e8a36a;
  background-size: cover;
  background-position: center;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block {
  position: absolute;
  width: 1200px;
  height: 380px;
  top: 120px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-image {
  width: 540px;
  height: 380px;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px 20px 11px;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  background-color: white;
  position: absolute;
  z-index: 999;
  top: 50px;
  right: 20px;
  width: 480px;
  max-width: calc(100% - 40px);
  -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 50px rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner {
  padding: 40px;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-block > img {
  vertical-align: bottom;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .modal-wrapper > .modal-inner > .caution-description {
  font-size: 14px;
  line-height: 2;
  color: #777;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .caution {
  position: relative;
  text-align: right;
  color: #57a5a8;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span > img {
  position: relative;
  top: -2px;
  left: -4px;
  width: 18px;
  height: 18px;
  vertical-align: bottom;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .caution > span:hover {
  opacity: 0.7;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info {
  position: relative;
  z-index: 1;
  padding: 0 60px;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .company-name {
  color: #57a5a8;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button {
  margin-top: 32px;
  text-align: center;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button button {
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .company-info > .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .source {
  position: relative;
  z-index: 1;
  color: #90b6b9;
  font-size: 12px;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite {
  font-style: normal;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite > a {
  text-decoration: none;
  color: #90b6b9;
}
.wrapper.company-list__company-details-featured .mv > .mv-company-block > .company-summary > .source > cite > a:hover {
  opacity: 0.7;
}
.wrapper.company-list__company-details-featured .company-profile-section {
  margin-top: 140px;
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block {
  width: 1060px;
  margin: 0 auto;
  margin-bottom: 240px;
  padding: 156px 0px 160px;
  background-color: #fff;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .sub-h2 {
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper {
  padding: 80px 60px 0;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #cccccc;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > dt {
  width: 260px;
  min-width: 260px;
  border: none;
  padding: 30px 20px;
  font-weight: bold;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > dd {
  padding: 30px 20px 30px 0px;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
}
.wrapper.company-list__company-details-featured .company-profile-section .company-profile-block > .company-profile-wrapper > div > .keyword-wrapper > .keyword {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  color: #57a5a8;
  font-size: 12px;
  padding: 0 15px;
  border: solid 1px #57a5a8;
  border-radius: 4px;
  margin: 0 6px 6px 0;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 240px;
  padding: 82px 130px 160px;
  background-color: #f8fcfc;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company {
  background-color: white;
  margin-bottom: 30px;
  padding: 28px 40px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #57a5a8;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(2) {
  font-size: 12px;
  color: #90b6b9;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .company > p:nth-of-type(3) {
  margin-top: 25px;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more {
  margin-top: 80px;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more > button {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 296px;
  padding: 23px 0px 26px;
  color: #57a5a8;
  background-color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  position: relative;
}
.wrapper.company-list__company-details-featured .surrounding-company-information-section .surrounding-company-information-block > .button-more > button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 27px;
  right: 28px;
  background-image: url(../image/plus.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.wrapper.company-list__company-details-featured .related-services-section {
  background-color: white;
  border: transparent 1px solid;
}
.wrapper.company-list__company-details-featured .related-services-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 156px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__company-details-featured .related-services-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__company-details-featured .related-services-section .related-services-block {
  padding: 82px 0px 160px;
  background-color: white;
}
.wrapper.company-list__company-details-featured .related-services-section .related-services-block > .iframe-wrapper {
  text-align: center;
}
.wrapper.company-list__company-details-featured .statistics-database-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.wrapper.company-list__company-details-featured .statistics-database-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__company-details-featured .statistics-database-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-database-block {
  width: 1200px;
  margin: 0 auto;
  margin-bottom: 240px;
  padding: 82px 130px 160px;
  background-color: #f8fcfc;
}
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-database-block > .company {
  background-color: white;
  margin-bottom: 30px;
  padding: 28px 40px 30px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-database-block > .company > p:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  color: #57a5a8;
}
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-database-block > .company > p:nth-of-type(2) {
  font-size: 12px;
  color: #90b6b9;
}
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-database-block > .company > p:nth-of-type(3) {
  margin-top: 25px;
}
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-database-block > .button-more {
  margin-top: 80px;
}
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-database-block > .button-more > button {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 296px;
  padding: 23px 0px 26px;
  color: #57a5a8;
  background-color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  border: none;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  position: relative;
}
.wrapper.company-list__company-details-featured .statistics-database-section .statistics-database-block > .button-more > button::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 27px;
  right: 28px;
  background-image: url(../image/plus.svg);
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.wrapper.company-list__company-details-featured .introduction-section {
  background-color: white;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.company-list__company-details-featured .introduction-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  margin-top: 156px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.company-list__company-details-featured .introduction-section h2 {
  width: 1200px;
  margin: 0 auto;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__company-details-featured .introduction-section .introduction-block {
  padding: 82px 0px 160px;
  background-color: white;
}
.wrapper.company-list__company-details-featured .introduction-section .introduction-block > .button {
  margin-top: 30px;
  text-align: center;
}
.wrapper.company-list__company-details-featured .introduction-section .introduction-block > .button button {
  cursor: pointer;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.wrapper.company-list__company-details-featured .introduction-section .introduction-block > .button button:hover {
  opacity: 0.7;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.wrapper.company-list__company-details-featured .introduction-section .introduction-block > .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}

.wrapper.company-list__contact .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-company-list.png);
  background-size: cover;
  background-position: center;
}
.wrapper.company-list__contact .mv br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.company-list__contact .mv br.md {
    display: inline;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__contact .mv {
    height: 240px;
  }
}
.wrapper.company-list__contact .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.company-list__contact .simple-data-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.wrapper.company-list__contact .simple-data-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .simple-data-section .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.company-list__contact .simple-data-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .simple-data-section h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.company-list__contact .simple-data-section .simple-data-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
  padding: 120px 130px 160px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .simple-data-section .simple-data-block {
    width: 98%;
    margin: 40px auto 0;
    padding: 60px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__contact .simple-data-section .simple-data-block {
    padding: 24px;
  }
}
.wrapper.company-list__contact .simple-data-section .simple-data-block > .simple-data-description {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block > .simple-data-description::before {
  position: absolute;
  top: 0px;
  left: -15px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 100%;
  background-color: #69c3bf;
  border-radius: 3px;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data {
  margin-bottom: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 600px;
  grid-template-columns: 280px 600px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data {
    -ms-grid-columns: 600px;
    grid-template-columns: 600px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dt {
  border: none;
  background-color: white;
  padding: 15px 6px;
  font-weight: bold;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dt p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 11px;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dt p .must {
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  border: #f76464 1px solid;
  color: #f76464;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd {
  padding: 15px 6px;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd input::-webkit-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd input::-moz-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd input:-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd input::-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd input::placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd input {
  background-color: #f7f7f7;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd textarea::-webkit-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd textarea::-moz-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd textarea:-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd textarea::-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd textarea::placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd textarea {
  background-color: #f7f7f7;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .form-simple-data dd span {
  font-size: 12px;
  color: #f76464;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  align-items: center;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service input {
  display: none;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service input:checked ~ label > span,
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service input:checked ~ .wpcf7-list-item-label::before {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service label {
  margin-right: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 15px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service label .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #c3daff;
  border-radius: 6px;
  vertical-align: middle;
  margin-right: 0.5em;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service > span > span {
  color: #69c3bf;
  text-decoration: underline;
  font-weight: bold;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service > span > span > a {
  color: #69c3bf;
  text-decoration: underline;
  font-weight: bold;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .confirm-terms-of-service > span > span > a:hover {
  opacity: 0.7;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .button {
  margin-top: 40px;
  text-align: center;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .button input {
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  cursor: pointer;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .button input:hover {
  opacity: 0.7;
}
.wrapper.company-list__contact .simple-data-section .simple-data-block .button input img {
  position: absolute;
  top: 17px;
  right: 20px;
}
.wrapper.company-list__contact .detail-data-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.company-list__contact .detail-data-section .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .detail-data-section .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.company-list__contact .detail-data-section h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.company-list__contact .detail-data-section h2 br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.company-list__contact .detail-data-section h2 br.md {
    display: inline;
  }
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .detail-data-section h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.company-list__contact .detail-data-section .detail-data-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 70px;
  margin-bottom: 240px;
  padding: 120px 130px 160px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .detail-data-section .detail-data-block {
    width: 98%;
    margin: 40px auto 0;
    padding: 60px 60px 160px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__contact .detail-data-section .detail-data-block {
    padding: 24px 24px 160px;
  }
}
.wrapper.company-list__contact .detail-data-section .detail-data-block > .detail-data-description {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
  position: relative;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block > .detail-data-description::before {
  position: absolute;
  top: 0px;
  left: -15px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 100%;
  background-color: #69c3bf;
  border-radius: 3px;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data {
  margin-bottom: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 280px 600px;
  grid-template-columns: 280px 600px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data {
    -ms-grid-columns: 600px;
    grid-template-columns: 600px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dt {
  border: none;
  background-color: white;
  padding: 15px 6px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dt {
    padding: 6px;
  }
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dt p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 11px;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dt p > span {
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  border: #f76464 1px solid;
  color: #f76464;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd {
  padding: 15px 6px;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd {
    padding: 6px;
    margin-bottom: 8px;
  }
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd input::-webkit-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd input::-moz-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd input:-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd input::-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd input::placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd input {
  background-color: #f7f7f7;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd textarea::-webkit-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd textarea::-moz-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd textarea:-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd textarea::-ms-input-placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd textarea::placeholder {
  color: #bebebe;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd textarea {
  background-color: #f7f7f7;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .form-detail-data dd span {
  font-size: 12px;
  color: #f76464;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  align-items: center;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service input {
  display: none;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service input:checked ~ label > span,
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service input:checked ~ .wpcf7-list-item-label::before {
  background-image: url(../image/input-checked.svg);
  background-position: center;
  background-size: 60%;
  background-repeat: no-repeat;
  border-color: #3b86ff;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service label {
  margin-right: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 15px;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service label .wpcf7-list-item-label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #c3daff;
  border-radius: 6px;
  vertical-align: middle;
  margin-right: 0.5em;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service label:hover > span {
  border-color: #3b86ff;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service > span > span {
  color: #69c3bf;
  text-decoration: underline;
  font-weight: bold;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service > span > span > a {
  color: #69c3bf;
  text-decoration: underline;
  font-weight: bold;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .confirm-terms-of-service > span > span > a:hover {
  opacity: 0.7;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .button {
  margin-top: 40px;
  text-align: center;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .button input {
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  cursor: pointer;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .button input:hover {
  opacity: 0.7;
}
.wrapper.company-list__contact .detail-data-section .detail-data-block .button input img {
  position: absolute;
  top: 17px;
  right: 20px;
}

.company-list-contact-error {
  text-align: center;
  width: 1200px;
  max-width: 90%;
  margin: 70px auto;
  padding: 120px 130px 160px;
  background-color: #fff;
}
.company-list-contact-error p {
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .company-list-contact-error {
    padding: 24px;
  }
}

.btn-round {
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  display: block;
  margin: 1em auto;
  text-decoration: none;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
  cursor: pointer;
}
.btn-round:hover {
  opacity: 0.7;
}

.wrapper.company-list__contact-thanks .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-company-list.png);
  background-size: cover;
  background-position: center;
}
.wrapper.company-list__contact-thanks .mv br.md {
  display: none;
}
@media (max-width: 767px) {
  .wrapper.company-list__contact-thanks .mv br.md {
    display: inline;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__contact-thanks .mv {
    height: 240px;
  }
}
.wrapper.company-list__contact-thanks .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.company-list__contact-thanks .thanks {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  position: relative;
}
.wrapper.company-list__contact-thanks .thanks .sub-h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 80px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact-thanks .thanks .sub-h2 {
    width: 98%;
    margin: 40px auto 0;
  }
}
.wrapper.company-list__contact-thanks .thanks h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact-thanks .thanks h2 {
    width: 98%;
    margin: 0 auto;
  }
}
.wrapper.company-list__contact-thanks .thanks .thanks-block {
  width: 1200px;
  margin: 0 auto;
  margin-top: 120px;
  margin-bottom: 240px;
  padding: 120px 130px;
  background-color: #fff;
}
@media (max-width: 1200px) {
  .wrapper.company-list__contact-thanks .thanks .thanks-block {
    width: 98%;
    margin: 0 auto 120px;
  }
}
@media (max-width: 767px) {
  .wrapper.company-list__contact-thanks .thanks .thanks-block {
    padding: 60px 30px;
  }
}
.wrapper.company-list__contact-thanks .thanks .thanks-block > p {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 61px;
}
.wrapper.company-list__contact-thanks .thanks .thanks-block .button {
  margin-top: 40px;
  text-align: center;
}
.wrapper.company-list__contact-thanks .thanks .thanks-block .button a,
.wrapper.company-list__contact-thanks .thanks .thanks-block .button button {
  line-height: 1.4;
  display: inline-block;
  text-decoration: none;
  position: relative;
  padding: 12px 0 16px;
  background-color: #57a5a8;
  text-align: center;
  width: 204px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: bold;
  border: none;
  color: #fff;
}
.wrapper.company-list__contact-thanks .thanks .thanks-block .button a:hover,
.wrapper.company-list__contact-thanks .thanks .thanks-block .button button:hover {
  opacity: 0.7;
}
.wrapper.company-list__contact-thanks .thanks .thanks-block .button a img,
.wrapper.company-list__contact-thanks .thanks .thanks-block .button button img {
  position: absolute;
  top: 17px;
  right: 20px;
}

.wrapper.single .single-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
  padding: 50px 0 160px;
}
@media (max-width: 767px) {
  .wrapper.single .single-section {
    padding: 50px 0 100px;
  }
}
@media (max-width: 479px) {
  .wrapper.single .single-section {
    padding: 40px 0 60px;
  }
}
.wrapper.single .single-section .single-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 2rem 376px;
  grid-template-columns: minmax(0, 1fr) 376px;
  gap: 2rem;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 1023px) {
  .wrapper.single .single-section .single-block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.single .single-section .single-block .mainColumn {
  width: 100%;
  padding: 50px 5% 50px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .wrapper.single .single-section .single-block .mainColumn {
    padding: 30px 5%;
  }
}
.wrapper.single .single-section .single-block .article-header {
  height: auto;
}
.wrapper.single .single-section .single-block .article-header.entry-header {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.wrapper.single .single-section .single-block .toc {
  margin: 8px auto 12px;
  width: 100%;
}
.wrapper.single .single-section .single-block .article-footer,
.wrapper.single .single-section .single-block .under-entry-content {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.wrapper.single .single-section .single-block .sidebar {
  width: 100%;
}
.wrapper.single .single-section .single-block .wp-container-core-group-is-layout-1.wp-container-core-group-is-layout-1 > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.wrapper.single .single-section .single-block .wp-container-core-group-is-layout-2.wp-container-core-group-is-layout-2 > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: 100%;
}

.wrapper.archive .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 360px;
  background-image: url(../image/mv-contact.png);
  background-size: cover;
  background-position: center;
}
.wrapper.archive .mv > p {
  font-size: 36px;
  font-weight: bold;
  color: #fff;
}
.wrapper.archive .archive-section {
  background-color: #f8fcfc;
  border: transparent 1px solid;
}
.wrapper.archive .archive-section .sub-h2 {
  width: 100%;
  text-align: center;
  margin-top: 96px;
  font-family: "Barlow", sans-serif;
  color: #b5d5d8;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.archive .archive-section h2 {
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
}
.wrapper.archive .archive {
  background-color: #f8fcfc;
  padding-top: 50px;
}
.wrapper.archive .archive .archive-block {
  width: 100%;
  border: 1px solid transparent;
  margin-top: 82px;
  margin-bottom: 125px;
  max-width: 1200px;
  padding: 0 1em;
  margin: 0 auto;
}
.wrapper.archive .archive .archive-block .section-title p {
  color: #90b6b9;
  font-size: 14px;
  font-weight: bold;
}
.wrapper.archive .archive .archive-block .section-title h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
}
.wrapper.archive .archive .archive-block .archives {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-grid-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  margin: 50px 0;
}
@media screen and (max-width: 900px) {
  .wrapper.archive .archive .archive-block .archives {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .wrapper.archive .archive .archive-block .archives {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 450px) {
  .wrapper.archive .archive .archive-block .archives {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.wrapper.archive .archive .archive-block .archives a {
  text-decoration: none;
  color: #222;
}
.wrapper.archive .archive .archive-block .archives a .archive-card {
  padding: 20px 28px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 15px rgba(1, 0, 0, 0.1);
          box-shadow: 0 0 15px rgba(1, 0, 0, 0.1);
  height: 100%;
}
.wrapper.archive .archive .archive-block .archives a .archive-card > .archive-date {
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #e8a36a;
}
.wrapper.archive .archive .archive-block .archives a .archive-card > .archive-title {
  font-size: 20px;
  font-weight: bold;
}
.wrapper.archive .archive .archive-block .archives a .archive-card > .img > img {
  width: 100%;
  aspecit-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wrapper.archive .archive .archive-block .archives a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}