#chart.teaser-block {
  padding: 80px 0;
}

#chart.teaser-block .chart-caption {
  padding: 0 0 30px;
  font-family: var(--main-mincho-bold);
  line-height: 100%;
  letter-spacing: 1.05px;
  text-align: center;
  color: var(--font-color);
}

#chart.teaser-block .chart-img {
  padding-bottom: 30px;
  width: 100%;
}

#chart.teaser-block .chart-img img {
  width: 100%;
}

.map-pc {
  display: block;
}

.map-sp {
  display: none;
}

/*MODAL
-----------------------------------*/
.modal {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 5;
}
.modal__bg {
  position: absolute;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}
.modal__content {
  position: absolute;
  padding: 30px 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 560px;
  max-height: 90%;
  background: var(--bg-main);
  overflow-y:auto;
  overflow-x: hidden;
}
.modal .close_btn {
  position: absolute;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: var(--gold-d);
}
.modal .close_btn .close_btn_cross {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--font-color);
  transform: rotate(45deg);
  vertical-align: middle;
}
.modal .close_btn .close_btn_cross::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--font-color);
  transform: rotate(90deg);
}

.chart-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.chart-profile-img {
  display: block;
  width: 200px;
  height: 250px;
}
.chart-profile-img img {
  width: 100%;
}
.chart-profile-name {
  padding: 20px 0;
  font-family: var(--main-mincho-bold);
  font-size: 32px;
  line-height: 125%;
  letter-spacing: 1.05px;
  text-align: center;
  color: var(--gold);
}
.chart-profile-name .act {
  display: block;
  font-size: 20px;
  font-family: var(--main-mincho);
}
.chart-profile-text {
  padding: 20px 0 0;
  width: 100%;
  border-top: 1px solid #887042;
  color: var(--font-color);
}
.chart-profile-text > p {
  font-family: var(--main-mincho);
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 1.05px;
  text-align: center;
}

/* ---------------------------------
 SP用
--------------------------------- */
@media screen and (max-width: 992px) {
  #chart.teaser-block .chart-img {
    padding: 0 20px;
  }
}

@media screen and (max-width: 601px) {
  .map-pc {
    display: none;
  }
  .map-sp {
    display: block;
  }
  #chart.teaser-block {
    padding: 60px 0;
  }
  #chart.teaser-block .chart-caption {
    font-size: 13px;
    line-height: 125%;
  }
  .modal__content {
    padding: 30px 15px;
    width: 85%;
  }
  .modal .close_btn {
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
  }
  .chart-profile-img {
    width: 140px;
    height: 175px;
  }
  .chart-profile-name {
    padding: 20px 0 15px;
    font-size: 24px;
  }
  .chart-profile-name .act {
    font-size: 16px;
  }
  .chart-profile-text {
    padding: 15px 0 0;
  }
  .chart-profile-text > p {
    font-size: 14px;
  }
}
