@charset "UTF-8";
.popup_box {
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
}
.popup_box .popup_box_inner {
  position: relative;
  border: solid 3px #000;
  border-radius: 20px;
  background: white;
  max-height: calc(100% - 80px);
  width: 840px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 50px 0px;
  transform: translateY(50px);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_box_inner {
    padding: 30px 0;
    width: calc(100% - 40px);
    max-height: calc(100% - 200px);
  }
}
.popup_box .scroll_area {
  width: 100%;
  padding: 0px 30px 0px 40px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.popup_box .scroll_area::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
@media screen and (max-width: 767px) {
  .popup_box .scroll_area {
    padding: 0 20px;
  }
}
.popup_box .popup_profile {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_profile {
    flex-direction: column;
    align-items: stretch;
  }
}
.popup_box .popup_profile .layout-right {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_profile .layout-right {
    width: 100%;
  }
}
.popup_box .popup_profile .layout-right .layout-top {
  padding-top: 30px;
  border-bottom: solid 1px #000;
  padding-left: 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_profile .layout-right .layout-top {
    padding-top: 0;
    padding-left: 0;
  }
}
.popup_box .popup_profile .layout-right .layout-bottom {
  padding-top: 10px;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_profile .layout-right .layout-bottom {
    padding-left: 0;
  }
}
.popup_box .popup_profile .popup_img_profile {
  width: 177px;
  min-width: 177px;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_profile .popup_img_profile {
    width: 40%;
    max-width: 150px;
    min-width: 0;
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;
    display: block;
  }
}
.popup_box .popup_profile .popup_profile_pos {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_profile .popup_profile_pos {
    text-align: center;
    font-size: 12px;
  }
}
.popup_box .popup_profile .popup_profile_name_wrap {
  margin-top: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_profile .popup_profile_name_wrap {
    justify-content: center;
  }
}
.popup_box .popup_profile .popup_profile_name_wrap .popup_profile_name {
  font-size: 33px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_profile .popup_profile_name_wrap .popup_profile_name {
    font-size: 28px;
  }
}
.popup_box .popup_profile .popup_profile_name_wrap .popup_profile_name-en {
  font-size: 14px;
  line-height: 1;
  margin-left: 10px;
  transform: translateY(-4px);
}
.popup_box .popup_close {
  width: 38px;
  position: absolute;
  top: 0;
  right: -50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}
@media screen and (max-width: 767px) {
  .popup_box .popup_close {
    width: 30px;
    top: -40px;
    right: 0;
  }
}
.popup_box .popup_close:hover {
  opacity: 0.6;
}