@charset "UTF-8";
/* コーポレートミッション */
main .common-inner.corp-mission {
  padding-top: 20px;
}
@media(max-width: 500px) {
  main .common-inner.corp-mission {
    padding-top: 10px;
  }
}
.mission-wrap {
  position: relative;
  margin-top: 20px;
}
@media(max-width: 500px) {
  .mission-img {
    display: none;
  }
  .mission-wrap {
    margin-top: 10px;
    background-image: url("../images/mission01-sp.webp");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding-top: 10px;
    padding-bottom: 20px;
  }
}
.mission-wrap .mission {
  background: rgb(160, 167, 186);
  background: radial-gradient(circle, rgba(160, 167, 186, 0.85) 0%, rgba(0, 20, 70, 0.85) 45%, rgba(0, 20, 44, 0.85) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33%;
  border-radius: 50%;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media(max-width: 500px) {
  .mission-wrap .mission {
    position: static;
    transform: none;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.mission-wrap .mission::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.mission-wrap h3 {
  font-size: 340%;
  font-weight: 900;
  color: #fff;
  line-height: 1.00em;
  text-align: center;
}
@media(max-width: 1000px) {
  .mission-wrap h3 {
    font-size: 240%;
  }
}

/* モーダル表示 */
/* ----------------------------------------------- */
.button {
  /*
  display: inline-block;
  margin: 20px;
  padding: 15px 30px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
  */
  cursor: pointer;
  position: absolute;
  width: 33%;
  padding: 37px 0 38px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 50%;
  background: rgb(160, 167, 186);
  background: radial-gradient(circle, rgba(160, 167, 186, 0.85) 0%, rgba(0, 20, 70, 0.85) 45%, rgba(0, 20, 44, 0.85) 100%);
  color: #ffffff;
  font-size: 220%;
  font-weight: 900;
  line-height: 1.0em;
  text-align: center;
  transition: 0.5s;
}
@media(max-width: 500px) {
  .button {
    width: 80%;
    position: static;
    font-size: 160%;
    padding: 20px 0 26px 0;
  }
}
.mission01 {
  top: 3.5%;
  left: 33%;
}
.mission02 {
  bottom: 3.5%;
  left: 6%;
}
.mission03 {
  bottom: 3.5%;
  right: 6%;
}
@media(max-width: 500px) {
  .mission01, .mission02, .mission03 {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
@media(max-width: 500px) {
  .button span {
    position: relative;
  }
  .button span::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("../images/icn.svg");
    background-position: center;
    background-size: contain;
    position: absolute;
    top: 2px;
  }
  .mission01 span::before {
    left: -10%;
  }
  .mission02 span::before {
      left: -28%;
    }
  .mission03 span::before {
      left: -1%;
    }
 }
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .8);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}
.modal-content {
  background: #fff;
  border-radius: 5px;
  width: 80%;
  max-width: 650px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: scaleIn 0.3s ease;
  position: relative;
  z-index: -10000;
}
@media(max-width: 500px) {
  .modal-content {
    
  }
}
.modal-content .inner {
  
}
.close-btn {
  /*
  background: #f44336;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
  */
  background-color: #001446;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 20px;
  width: 36px;
  height: 36px;
  line-height: 1.6;
  text-align: center;
  display: table-cell;
  position: absolute;
  top: -15px;
  right: -2%;
  z-index: 1000;
  cursor: pointer;
  font-size: 1.3em;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (hover: none) {
  .button {
    pointer-events: auto;
  }
}

.modal-content h3 {
  font-size: 120%;
  font-weight: 600;
  text-align: left;
  padding: 10px;
  background: rgb(15, 59, 105);
  background: -webkit-linear-gradient(rgba(15, 59, 105, 1), rgba(18, 66, 117, 1) 48%, rgba(21, 74, 130, 1) 100%);
  background: -o-linear-gradient(rgba(15, 59, 105, 1), rgba(18, 66, 117, 1) 48%, rgba(21, 74, 130, 1) 100%);
  background: linear-gradient(rgba(15, 59, 105, 1), rgba(18, 66, 117, 1) 48%, rgba(21, 74, 130, 1) 100%);
}
.modal-content .contimgs {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25px;
  line-height: 0;
}
.modal-content p {
  padding: 10px 45px 30px 45px;
}
@media(max-width: 500px) {
  .modal-content .contimgs {
    width: 50%;
    padding-top: 15px;
  }
  .modal-content p {
    padding: 10px 20px 20px 20px;
  }
}