/*--------------------------
color
---------------------------*/
/*--------------------------
main_visual
---------------------------*/
#main_visual .title_box {
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 250px;
}
@media only screen and (max-width: 768px) {
  #main_visual .title_box {
    min-height: 180px;
  }
}
#main_visual .title_box span {
  display: inline-block;
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: 600;
  margin: 0 0 8px;
  border-bottom: 1px solid;
}
#main_visual .title_box h1 {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
#main_visual .title_box h1::before {
  content: attr(data-en);
  display: block;
  font-size: 56px;
  font-family: "Montserrat";
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  #main_visual .title_box h1::before {
    font-size: 36px;
  }
}

/*--------------------------
section01
---------------------------*/
#section01 {
  padding: 0 0 9.1666666667vw;
}
@media only screen and (max-width: 768px) {
  #section01 {
    padding: 0 0 24vw;
  }
}
#section01 .globalMap {
  position: relative;
  width: 100%;
  padding: 0 0 41.67%;
}
#section01 .globalMap .globalMap__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#section01 .btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px 0 0;
}
@media only screen and (max-width: 768px) {
  #section01 .btn_list {
    margin: 40px 0 0;
    padding: 0 12px;
  }
}
#section01 .btn_list li {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}
@media only screen and (max-width: 768px) {
  #section01 .btn_list li {
    width: 100%;
  }
}
#section01 .btn_list li:not(:last-child) {
  margin: 0 40px 0 0;
}
@media only screen and (max-width: 768px) {
  #section01 .btn_list li:not(:last-child) {
    margin: 0 10px 0 0;
  }
}
#section01 .btn_list li a {
  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;
  width: 270px;
  height: 65px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  background: #ca0000;
}
@media only screen and (max-width: 768px) {
  #section01 .btn_list li a {
    width: 100%;
    height: 50px;
    font-size: 16px;
  }
}
#section01 .btn_list li a:hover {
  background: #004986;
}