@charset "UTF-8";
/* ==================================================
 modal.css
-------------------------------------------------- */
/* --------------------------------------------------
 1.0 - 投資先詳細モーダル
-------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.modal-window {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 102;
  max-width: 900px;
  max-height: 80%;
  width: 100%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 932px) {
  .modal-window {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .modal-window {
    top: 80px;
    max-height: 100%;
    width: calc(100% - 32px);
    transform: translate(-50%, 0);
  }
}

.modal-inner {
  position: relative;
  background: #F4F6FB;
  width: 100%;
  min-height: 100px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 20px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .modal-inner {
    margin-bottom: 16px;
    padding: 16px 20px 26px;
  }
}

.modal-content {
  padding-top: 30px;
}

.modal-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .modal-head {
    flex-direction: column;
  }
}

.modal_fund-name {
  color: #005998;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .modal_fund-name {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.modal-head .logo {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .modal-head .logo {
    width: 100%;
  }
}

.modal-head .logo img {
  display: block;
  max-height: 72px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .modal-head .logo img {
    margin: 0 auto;
    max-height: 48px;
  }
}

.modal-body {
  padding: 23px 40px 40px;
  background: #FFFFFF;
  border-radius: 10px;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .modal-body {
    padding: 40px 20px 26px;
    font-size: 14px;
  }
}

.modal-body table {
  width: 100%;
  line-height: 1.4;
}

.modal-body table tr {
  border-bottom: 1px solid #DFE6EB;
}

.modal-body table tr th,
.modal-body table tr td {
  padding: 17px;
  word-break: break-word;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .modal-body table tr th,
  .modal-body table tr td {
    display: block;
    width: 100%;
    padding: 5px 2%;
  }
}

.modal-body table tr th {
  color: #005998;
  width: 30%;
  white-space: nowrap;
}

.modal-body table tr td {
  width: 70%;
  color: #595757;
}

.modal-body a {
  color: #595757;
  text-decoration: underline;
}

.modal-body a:hover {
  opacity: 0.5;
  transition: 0s;
}

.modal-body .subsection_heading {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .modal-body .subsection_heading {
    margin-bottom: 10px;
    font-size: 15px;
  }
}

.modal-body .support-content {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-right: 17px;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .modal-body .support-content {
    margin-top: 30px;
    margin-bottom: 15px;
    padding-right: 2%;
    padding-left: 2%;
  }
}

.modal-body li {
  position: relative;
  padding: 0.2em 0 0.2em 16px;
}

.modal-body li::before {
  position: absolute;
  top: 0.9em;
  left: 6px;
  width: 3px;
  height: 3px;
  background: #595757;
  border-radius: 100%;
  content: "";
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 19px;
  height: 19px;
  color: transparent;
  font-size: 0;
  text-shadow: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-close {
    width: 16px;
    height: 16px;
  }
}

.modal-close:hover {
  opacity: 0.5;
  transition: 0s;
}

.modal-close::before,
.modal-close::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(14% - 5px);
  left: 14%;
}

.modal-close::after {
  transform: rotate(-45deg);
  transform-origin: 100% 50%;
  left: auto;
  right: 14%;
}

/* --------------------------------------------------
 2.0 - Vue.jsトランジション用CSS
-------------------------------------------------- */
.modal-fade-enter-active,
.modal-fade-leave-active {
  transition: opacity 0.5s ease;
}

.modal-fade-enter,
.modal-fade-leave-to {
  opacity: 0;
}

/*# sourceMappingURL=modal.css.map */
