@charset "UTF-8";
/* # =================================================================
 * # BASE
 * # ================================================================= */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 50%;
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 62.5%; /* 1rem = 10px */
  }
}

body,
code {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

body.-cn {
  font-family: "Noto Sans SC", sans-serif;
}

code {
  padding: 0 5px;
}

p,
li,
h3,
h4,
dl,
dt {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (min-width: 1025px) {
  p,
  li,
  h3,
  h4,
  dl,
  dt {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1201px) {
  p,
  li,
  h3,
  h4,
  dl,
  dt {
    font-size: 1.6rem;
  }
}

figure,
figcaption {
  display: block;
}

figure {
  text-align: center;
}
figure figcaption {
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-top: 5px;
}

img {
  max-width: 100%;
  height: auto;
}

@media screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* # =================================================================
 * # Header
 * # ================================================================= */
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 11;
  padding-left: 5px;
  background-color: #fff;
  box-shadow: 0px 0px 30px -25px #000000;
}
@media screen and (min-width: 600px) {
  .l-header {
    padding-left: 1em;
  }
}
@media screen and (min-width: 1025px) {
  .l-header {
    padding-left: 48px;
    height: 115px;
  }
}
.l-header__logoBox {
  display: flex;
  align-items: center;
}
.l-header__logoBox .--100th {
  max-width: 45px;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .l-header__logoBox .--100th {
    max-width: 55px;
  }
}
@media screen and (min-width: 1025px) {
  .l-header__logoBox .--100th {
    max-width: none;
    width: auto;
  }
}
.l-header__logo {
  width: 142px;
}
@media screen and (min-width: 1025px) {
  .l-header__logo {
    width: 240px;
  }
}
.l-header__nav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .l-header__nav {
    width: calc(100% - 324px);
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.l-header__nav--box {
  width: calc(100% - 200px);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-right: 3.2%;
  padding-top: 18px;
}
.l-header__nav--top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 18px;
}
.l-header__nav--top .-news {
  padding-right: 18px;
  position: relative;
  cursor: pointer;
}
.l-header__nav--top .-news::after {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #999999;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.l-header__nav--top .-search {
  padding: 0 43px 0 22px;
  margin-right: 30px;
  cursor: pointer;
  position: relative;
  transition: 300ms ease all;
}
.l-header__nav--top .-search::before {
  content: "";
  background-size: contain;
  background-image: url(/assets/img/common/icon_search_green.svg);
  transition: 300ms ease all;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background-repeat: no-repeat;
}
.l-header__nav--top .-search::after {
  content: "";
  width: 1px;
  height: 15px;
  background-color: #999999;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.l-header__nav--top .-lang {
  display: flex;
  align-items: center;
}
.l-header__nav--top .-lang li:nth-of-type(1), .l-header__nav--top .-lang li:nth-of-type(2) {
  margin-right: 20px;
  position: relative;
}
.l-header__nav--top .-lang li.-active {
  color: #CCCCCC;
  border-bottom: 1px solid #32AF8E;
}
.l-header__nav--top .-lang li a {
  font-weight: 400;
  font-size: 1.5rem;
}
.l-header__nav--top a {
  transition: 300ms ease all;
}
.l-header__nav--top a:hover {
  color: #32AF8E;
}
.l-header__nav--bottom {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.l-header__nav--bottom li {
  margin-left: 2.9%;
  font-weight: 400;
}
.l-header__nav--bottom li:first-of-type {
  margin-left: 0;
}
.l-header__nav--bottom li a {
  display: flex;
  height: 100%;
  position: relative;
}
.l-header__nav--bottom li a::before {
  transition: 300ms ease all;
}
.l-header__nav--bottom li a:hover::before, .l-header__nav--bottom li a.active::before {
  content: "";
  width: 100%;
  height: 6px;
  background-color: #32AF8E;
  position: absolute;
  bottom: 0;
  left: 0;
}
.l-header__nav--contact {
  width: 195px;
  height: 115px;
}
.l-header__nav--contact a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #32AF8E;
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  transition: 300ms ease all;
  padding-left: 25px;
  position: relative;
}
.l-header__nav--contact a::before {
  content: "";
  background-image: url(/assets/img/common/icon_mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 18.65px;
  height: 13.64px;
  position: absolute;
  left: 38.4px;
  top: 50%;
  transform: translateY(-50%);
}
.l-header__nav--contact a:hover {
  background-color: #52CEAD;
}
.l-header.-top.js-topOpen {
  background-color: #fff;
}
.l-header.-top.js-topClose {
  background-color: #fff;
}
.l-header.-top .l-header__nav {
  color: #333;
}
.l-header.-top .-lang {
  display: flex;
  align-items: center;
}
.l-header.-top .-lang li:nth-of-type(1)::before {
  background-color: #fff;
}
.l-header.-top .c-burgerBtn__line {
  background-color: #333;
}
.l-header.-top .c-burgerBtn__line.open {
  background-color: transparent;
}
.l-header.-top .c-burgerBtn__line.open::before, .l-header.-top .c-burgerBtn__line.open::after {
  background-color: #333;
}
.l-header.-top .c-burgerBtn__line::before, .l-header.-top .c-burgerBtn__line::after {
  background-color: #333;
}
.l-header.-top.scroll {
  background-color: #fff;
}
.l-header.-top.scroll .l-header__nav {
  color: #333;
}
.l-header.-top.scroll .l-header__nav--top .-lang li::before {
  background-color: #333;
}
.l-header.-top.scroll .c-burgerBtn__line {
  background-color: #333;
}
.l-header.-top.scroll .c-burgerBtn__line.open {
  background-color: transparent;
}
.l-header.-top.scroll .c-burgerBtn__line::before, .l-header.-top.scroll .c-burgerBtn__line::after {
  background-color: #333;
}
.l-header.scroll.open {
  background-color: #fff;
}
.l-header.-en .l-header__nav--contact a::before {
  left: 20.4px;
}
.l-header.-en .l-header__logo, .l-header.-cn .l-header__logo {
  width: 220px;
}
@media screen and (min-width: 600px) {
  .l-header.-en .l-header__logo, .l-header.-cn .l-header__logo {
    width: 350px;
  }
}
@media screen and (min-width: 1025px) {
  .l-header.-en .l-header__logo, .l-header.-cn .l-header__logo {
    width: 431px;
  }
}
.l-header.-en .l-header__nav--box, .l-header.-cn .l-header__nav--box {
  width: 100%;
}
.l-header.-en .l-header__nav--bottom, .l-header.-cn .l-header__nav--bottom {
  width: 100%;
}

/* # =================================================================
 * # Header 採用情報
 * # ================================================================= */
.l-header.-recruit {
  box-shadow: none;
}
@media screen and (min-width: 1025px) {
  .l-header.-recruit {
    height: 100px;
  }
}
.l-header.-recruit .l-header__logo {
  width: 207px;
}
@media screen and (min-width: 1025px) {
  .l-header.-recruit .l-header__logo {
    width: 343px;
  }
}
.l-header.-recruit .l-header__nav {
  display: none;
}
@media screen and (min-width: 1025px) {
  .l-header.-recruit .l-header__nav {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    width: calc(100% - 240px);
    height: 100%;
  }
}
.l-header.-recruit .l-header__nav--link {
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-header.-recruit .l-header__nav--link li {
  height: 100%;
}
.l-header.-recruit .l-header__nav--link a {
  display: flex;
  align-items: center;
  height: 100%;
}
.l-header.-recruit .l-header__nav--link li:hover::after {
  display: block;
  content: "";
  height: 5px;
  background-color: #1FD9A7;
}
.l-header.-recruit .l-header__nav--entryBtn {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.l-header.-recruit .l-header__nav--entryBtn a {
  display: flex;
  align-items: center;
  margin-left: 40px;
  padding: 17px 50px 18px 47px;
  background-color: #1FD9A7;
  border-radius: 40px;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
}
.l-header.-recruit .l-header__nav--entryBtn a .--en {
  padding-left: 9px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
}
.l-header.-recruit .l-header__nav--entryBtn a:hover {
  opacity: 0.8;
}
.l-header.-recruit .c-burgerWrap {
  z-index: 15;
}
.l-header.-recruit .c-burger.open {
  background-color: #fff;
}
.l-header.-recruit .c-burger__entryBtn {
  display: flex;
  align-items: center;
}
.l-header.-recruit .c-burger__entryBtn a {
  display: block;
  width: 80%;
  margin: 20px auto;
  padding: 20px 44px;
  background-color: #1FD9A7;
  border-radius: 40px;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
}
.l-header.-recruit .c-burger__entryBtn a .--en {
  padding-left: 9px;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
}

/* # =================================================================
 * # Content
 * # ================================================================= */
.wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* # =================================================================
 * # Footer
 * # ================================================================= */
.l-footer {
  position: relative;
}
.l-footer__top {
  background-color: #4B7A7C;
  padding: 88px 20px;
  display: none;
}
@media screen and (min-width: 1025px) {
  .l-footer__top {
    display: block;
  }
}
.l-footer__nav__list {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.l-footer__nav__list li .-ttl {
  margin-bottom: 15px;
}
.l-footer__nav__list li .-ttl a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 2.14;
  transition: 300ms ease all;
}
.l-footer__nav__list li .-ttl a:hover {
  color: #00F2B3;
}
.l-footer__nav__list li .-flex {
  display: flex;
  gap: 40px;
}
.l-footer__nav__list li .-gap72 {
  gap: 72px;
}
.l-footer__nav__list li .-list li {
  font-size: 1.4rem;
  color: #fff;
}
.l-footer__nav__list li .-list a {
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff;
  transition: 300ms ease all;
}
.l-footer__nav__list li .-list a:hover {
  color: #00F2B3;
}
.l-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .l-footer__bottom {
    flex-direction: row;
  }
}
.l-footer__bottom .-bottom {
  display: flex;
  justify-content: center;
  gap: 0 15px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  flex-direction: row;
  margin-top: 7px;
}
@media screen and (min-width: 600px) {
  .l-footer__bottom .-bottom {
    justify-content: space-between;
    width: 43.33%;
    margin-top: 0;
    gap: 0;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer__bottom .-bottom {
    flex-wrap: nowrap;
    flex-direction: row;
  }
}
.l-footer__bottom .-bottom a:hover {
  text-decoration: underline;
}
.l-footer__bottom .-bottom p {
  margin: 5px 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 1025px) {
  .l-footer__bottom .-bottom p {
    margin: 0;
  }
}
.l-footer__logo {
  max-width: 240px;
  width: 100%;
}
.l-footer__copy {
  font-size: 10px;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .l-footer__copy {
    font-size: 12px;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer__copy {
    width: auto;
    text-align: inherit;
    font-size: 14px;
    height: 80px;
    display: flex;
    align-items: center;
  }
}
.l-footer.-en, .l-footer.-cn {
  margin-top: auto;
  padding-top: 15px;
}
@media screen and (min-width: 1025px) {
  .l-footer.-en, .l-footer.-cn {
    padding-top: 0;
  }
}
.l-footer.-en .l-footer__top, .l-footer.-cn .l-footer__top {
  padding: 65px 75px;
}
.l-footer.-en .l-footer__nav__list, .l-footer.-cn .l-footer__nav__list {
  max-width: 710px;
}
.l-footer.-en .l-footer__logo, .l-footer.-cn .l-footer__logo {
  max-width: none;
  width: 220px;
}
@media screen and (min-width: 600px) {
  .l-footer.-en .l-footer__logo, .l-footer.-cn .l-footer__logo {
    width: 350px;
  }
}
@media screen and (min-width: 1025px) {
  .l-footer.-en .l-footer__logo, .l-footer.-cn .l-footer__logo {
    width: 431px;
  }
}
.l-footer.-en .l-footer__bottom .-bottom, .l-footer.-cn .l-footer__bottom .-bottom {
  width: 51.33%;
}
@media screen and (min-width: 1025px) {
  .l-footer.-en .l-footer__bottom .-bottom, .l-footer.-cn .l-footer__bottom .-bottom {
    padding-right: 50px;
  }
}
.l-footer.-en .l-footer__bottom .-bottom p, .l-footer.-cn .l-footer__bottom .-bottom p {
  font-weight: 500;
  font-size: 1.6rem;
}
.l-footer.-en .l-footer__bottom .-bottom .l-footer__copy, .l-footer.-cn .l-footer__bottom .-bottom .l-footer__copy {
  font-size: 1.4rem;
  font-weight: 700;
}

/* # =================================================================
 * # Footer 採用情報
 * # ================================================================= */
.l-footer.-recruit .l-footer__top {
  padding: 40px 0 39px;
  background-color: #717171;
}
.l-footer.-recruit .l-footer__top .-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.l-footer.-recruit .l-footer__top .-map a {
  color: #fff;
}
.l-footer.-recruit .l-footer__top .-map .--btn a {
  display: flex;
  align-items: center;
  padding: 17px 50px 18px 47px;
  background-color: #1FD9A7;
  border-radius: 40px;
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
}
.l-footer.-recruit .l-footer__bottom {
  flex-direction: column;
  justify-content: center;
}

/* # =================================================================
 * # NEWS
 * # ================================================================= */
/* # =================================================================
 * # company
 * # ================================================================= */
.p-company__discovery .modal-open {
  cursor: pointer;
}

html {
  overflow-y: scroll;
}

.p-company__discovery .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 104, 182, 0.64);
  padding: 60px 20px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  box-sizing: border-box;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal {
    padding: 115px 20px;
  }
}

.p-company__discovery .modal:before {
  content: "";
  display: inline-block;
  height: 100%;
  margin-left: -0.2em;
  vertical-align: top;
}

.p-company__discovery .modal.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.p-company__discovery .modal-container {
  position: relative;
  display: inline-block;
  max-width: 600px;
  max-height: 645px;
  width: 95%;
  height: 95%;
  margin-top: 50px;
  background-color: #fff;
  border: 1px solid #231815;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container {
    width: 100%;
    height: 100%;
    margin-top: 5.3%;
  }
}
.p-company__discovery .modal-container .modal-close {
  position: absolute;
  right: 10px;
  top: 15px;
  width: 20px;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container .modal-close {
    width: auto;
    right: 25px;
    top: 30px;
    height: 25px;
  }
}
.p-company__discovery .modal-container .modal-content {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container .modal-content {
    padding: 55px;
  }
}
.p-company__discovery .modal-container .modal-content .-modalTtl {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container .modal-content .-modalTtl {
    font-size: 34px;
    margin-bottom: 35px;
  }
}
.p-company__discovery .modal-container .modal-content p {
  font-size: 14px;
  text-align: left;
  line-height: 1.4;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container .modal-content p {
    font-size: 18px;
  }
}
.p-company__discovery .modal-container .modal-content .-productList {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: left;
}
.p-company__discovery .modal-container .modal-content h4 {
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 95px;
  padding: 5px;
  line-height: 1;
  background-color: #000;
  border-radius: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container .modal-content h4 {
    font-size: 18px;
    width: 110px;
  }
}
.p-company__discovery .modal-container .modal-content h4.-blue {
  background-color: #0068b7;
}
.p-company__discovery .modal-container .modal-content .-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  flex-direction: column;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container .modal-content .-list {
    flex-direction: row;
    gap: 10px;
  }
}
.p-company__discovery .modal-container .modal-content .-list li {
  text-align: left;
  color: #0068b7;
  line-height: 1.2;
  width: 100%;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container .modal-content .-list li {
    width: 48%;
  }
}
.p-company__discovery .modal-container .modal-content .-list li a {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 600px) {
  .p-company__discovery .modal-container .modal-content .-list li a {
    font-size: 18px;
  }
}
.p-company__discovery .modal-container .modal-content .-list li a:hover {
  text-decoration: underline;
}

.p-company__discovery {
  margin-top: 60px;
  overflow-x: hidden;
  padding-bottom: 30px;
}
@media screen and (min-width: 1025px) {
  .p-company__discovery {
    padding-bottom: 0;
    margin-top: 115px;
  }
}
@media screen and (max-width: 1610px) {
  .p-company__discovery {
    overflow-x: visible;
  }
}
.p-company__discovery__map {
  position: relative;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
}
.p-company__discovery__map-inner {
  position: relative;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map-inner {
    width: 1610px;
    min-width: 1610px;
  }
}
.p-company__discovery__map-inner > .-map {
  width: 100%;
  height: auto;
  display: block;
}
.p-company__discovery__map .-ttl {
  max-width: 220px;
  position: absolute;
  left: 2.85vw;
  top: 2.61vw;
}
@media screen and (min-width: 600px) {
  .p-company__discovery__map .-ttl {
    max-width: 375px;
    width: 20%;
  }
}
.p-company__discovery__map .-ttl img {
  width: 100%;
}
.p-company__discovery__map .-pin {
  max-width: 136px;
  width: 7.14%;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-pin {
    width: 9.14%;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__discovery__map .-pin::before {
    content: "";
    position: absolute;
    opacity: 0;
    transform-origin: center;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s, opacity 0.3s;
    z-index: 0;
    aspect-ratio: 1/1;
    display: block;
    border: 3px solid #f39518;
    border-radius: 50%;
    box-shadow: 0px 0px 0px 2px rgb(255, 255, 255), 0px 0px 0px 2px rgb(255, 255, 255) inset;
    left: 50%;
  }
}
@media screen and (min-width: 1025px) {
  .p-company__discovery__map .-pin:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.p-company__discovery__map .-pin img {
  width: 100%;
}
.p-company__discovery__map .-house {
  top: 5.65%;
  left: 50%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-house {
    left: 49.4%;
  }
}
.p-company__discovery__map .-house.-pin::before {
  max-width: 250px;
  width: 184%;
  top: 278%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-house.-pin::before {
    width: 150%;
    top: 245%;
  }
}
.p-company__discovery__map .-paddy {
  top: 5.65%;
  left: 74.6%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-paddy {
    left: 74%;
  }
}
.p-company__discovery__map .-paddy.-pin::before {
  max-width: 165px;
  width: 121%;
  top: 218%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-paddy.-pin::before {
    width: 110%;
    top: 205%;
  }
}
.p-company__discovery__map .-gs {
  top: 20.5%;
  left: 58.8%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-gs {
    left: 58.2%;
  }
}
.p-company__discovery__map .-gs.-pin::before {
  max-width: 210px;
  width: 155%;
  top: 250%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-gs.-pin::before {
    width: 130%;
    top: 230%;
  }
}
.p-company__discovery__map .-hospital {
  top: 23%;
  left: 68.7%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-hospital {
    left: 68.1%;
  }
}
.p-company__discovery__map .-hospital.-pin::before {
  max-width: 250px;
  width: 184%;
  top: 280%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-hospital.-pin::before {
    width: 155%;
    top: 250%;
  }
}
.p-company__discovery__map .-train {
  top: 35.8%;
  left: 38.8%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-train {
    left: 38.2%;
  }
}
.p-company__discovery__map .-train.-pin::before {
  max-width: 195px;
  width: 144%;
  top: 240%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-train.-pin::before {
    width: 130%;
    top: 225%;
  }
}
.p-company__discovery__map .-factory {
  top: 43.5%;
  left: 14.5%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-factory {
    left: 13.9%;
  }
}
.p-company__discovery__map .-factory.-pin::before {
  max-width: 275px;
  width: 202%;
  top: 300%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-factory.-pin::before {
    width: 170%;
    top: 265%;
  }
}
.p-company__discovery__map .-construction {
  top: 41%;
  left: 85.5%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-construction {
    left: 84.9%;
  }
}
.p-company__discovery__map .-construction.-pin::before {
  max-width: 270px;
  width: 199%;
  top: 295%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-construction.-pin::before {
    width: 170%;
    top: 265%;
  }
}
.p-company__discovery__map .-car {
  top: 55%;
  left: 49%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-car {
    left: 48.4%;
  }
}
.p-company__discovery__map .-car.-pin::before {
  max-width: 145px;
  width: 107%;
  top: 205%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-car.-pin::before {
    width: 100%;
    top: 190%;
  }
}
.p-company__discovery__map .-ship {
  top: 74%;
  left: 35.5%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-ship {
    left: 34.9%;
  }
}
.p-company__discovery__map .-ship.-pin::before {
  max-width: 200px;
  width: 147%;
  top: 245%;
}
@media screen and (max-width: 1610px) {
  .p-company__discovery__map .-ship.-pin::before {
    width: 130%;
    top: 220%;
  }
}
.p-company__discovery .modal.is-active {
  z-index: 3;
}
