@charset "UTF-8";
.program-introduction-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1280px;
  border-radius: 10px 10px 10px 10px;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 150;
  overflow: hidden;
  display: none;
}
.program-introduction-popup.on {
  display: block;
  -webkit-animation: popup-open 0.3s;
          animation: popup-open 0.3s;
}
@-webkit-keyframes popup-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popup-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.program-introduction-popup .modal-in {
  position: relative;
}
.program-introduction-popup .modal-hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  padding: 0 70px 0 24px;
  background-color: #ebeef0;
}
.program-introduction-popup .modal-hd .modal-h3 {
  font-size: 24px;
  font-weight: 700;
  margin-right: auto;
}
.program-introduction-popup .modal-body {
  line-height: 1.437;
  padding: 24px;
  max-height: 500px;
  overflow-y: scroll;
}
.program-introduction-popup .modal-body::-webkit-scrollbar {
  width: 6px;
  border-radius: 6px;
}
.program-introduction-popup .modal-body::-webkit-scrollbar-thumb {
  width: 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
}
.program-introduction-popup .modal-body::-webkit-scrollbar-track {
  width: 6px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.1);
}
.program-introduction-popup .btn-close {
  position: fixed;
  right: 20px;
  top: 9px;
  width: 42px;
  height: 42px;
  background: url("/resource/image/pc/ico/introPopupClose.svg") center/42px auto no-repeat;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.program-introduction-popup .btn-close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.program-introduction-popup .section + .section {
  margin-top: 30px;
}
.program-introduction-popup .section.bg {
  padding: 26px;
  border-radius: 10px;
  background: #f9f9f9;
}
.program-introduction-popup .section-title {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  font-weight: 700;
  border-bottom: 1px solid #e2e2e2;
}
.program-introduction-popup .section-title.type-s {
  font-size: 20px;
  font-weight: 500;
}
.program-introduction-popup .section-contents {
  margin-top: 24px;
}
.program-introduction-popup .section-contents:first-child {
  margin-top: 0;
}
.program-introduction-popup .text-box p + p {
  margin-top: 18px;
}
.program-introduction-popup .text-box .ttl-l {
  font-size: 22px;
  font-weight: 700;
}
.program-introduction-popup .text-box .ttl-m {
  font-size: 20px;
  font-weight: 500;
}
.program-introduction-popup .text-box .bold {
  font-weight: 500;
}
.program-introduction-popup .about {
  font-size: 18px;
  line-height: 1.5;
}
.program-introduction-popup .hosts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px 60px;
}
.program-introduction-popup .hosts li {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 30px);
          flex: 0 0 calc(50% - 30px);
  min-height: 180px;
  padding-left: 174px;
}
.program-introduction-popup .hosts li .photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 180px;
  background: url("/resource/image/common/v1/introduce/no-photo-150.png") center/cover no-repeat;
  overflow: hidden;
}
.program-introduction-popup .hosts li .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.program-introduction-popup .hosts li dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.program-introduction-popup .hosts li dl dt {
  width: 80px;
}
.program-introduction-popup .hosts li dl dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 80px);
          flex: 0 0 calc(100% - 80px);
}
.program-introduction-popup .hosts li dl.name {
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #e2e2e2;
  font-weight: 500;
}
.program-introduction-popup .hosts li dl.name dt {
  font-size: 18px;
}
.program-introduction-popup .hosts li dl.name dd {
  font-size: 22px;
}
.program-introduction-popup .hosts li dl.detail {
  margin-top: 16px;
  gap: 20px 0;
}
.program-introduction-popup .hosts li dl.detail dt {
  color: #2282b9;
  font-weight: 500;
}
.program-introduction-popup .hosts li dl.detail p + p {
  margin-top: 4px;
}
.program-introduction-popup .makers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8px 0;
}
.program-introduction-popup .makers li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 8px;
}
.program-introduction-popup .makers.col-2 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.program-introduction-popup .makers.col-3 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33%;
          flex: 0 0 33.33%;
}
.program-introduction-popup .makers.col-4 li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
}
.program-introduction-popup .makers .position {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
}
.program-introduction-popup .makers .name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 120px - 8px);
          flex: 0 0 calc(100% - 120px - 8px);
}
.program-introduction-popup .makers.box-type li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.program-introduction-popup .makers.box-type .position {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #2282b9;
  border: 1px solid rgba(34, 130, 185, 0.3);
}
.program-introduction-popup .makers.text-type {
  gap: 20px 0;
}
.program-introduction-popup .makers.text-type .position {
  font-weight: 500;
  color: #2282b9;
}
.program-introduction-popup .makers.name-type {
  gap: 16px;
}
.program-introduction-popup .makers.name-type li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.program-introduction-popup .makers.name-type .position {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
.program-introduction-popup .makers.name-type .name {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  font-size: 22px;
  font-weight: 500;
}
.program-introduction-popup .makers-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px 0;
}
.program-introduction-popup .makers-photo li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.666666666%;
          flex: 0 0 16.666666666%;
  text-align: center;
}
.program-introduction-popup .makers-photo .photo {
  width: 140px;
  height: 140px;
  border-radius: 140px;
  overflow: hidden;
  margin: 0 auto;
  background: url("/resource/image/common/v1/introduce/no-photo-140.png") center/cover no-repeat;
  overflow: hidden;
}
.program-introduction-popup .makers-photo .photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.program-introduction-popup .makers-photo .name {
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
}
.program-introduction-popup .makers-photo .email {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
}
.program-introduction-popup .segment {
  counter-reset: number 0;
}
.program-introduction-popup .segment li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 18px;
  padding-left: 22px;
}
.program-introduction-popup .segment li + li {
  margin-top: 6px;
}
.program-introduction-popup .segment li::before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: number 1;
  content: counter(number) ".";
  font-size: 18px;
  font-weight: 500;
}
.program-introduction-popup .segment li strong {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 180px;
          flex: 0 0 180px;
  font-weight: 500;
}
.program-introduction-popup .segment li span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 180px);
          flex: 0 0 calc(100% - 180px);
}
.program-introduction-popup .segment.none-type li {
  padding-left: 0;
}
.program-introduction-popup .segment.none-type li::before {
  display: none;
}
.program-introduction-popup ul.bull_type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px 0;
}
.program-introduction-popup ul.bull_type li {
  position: relative;
  padding-left: 20px;
}
.program-introduction-popup ul.bull_type li::before {
  position: absolute;
  left: 0;
  top: 8px;
  content: "●";
  display: block;
  font-size: 50%;
}
.program-introduction-popup ul.bull_type li.none_type::before {
  display: none;
}
.program-introduction-popup .btn-round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  height: 32px;
  color: #484848;
  font-weight: 500;
  border-radius: 32px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  background: #fff;
}
.program-introduction-popup .btn-round:hover {
  text-decoration: underline;
}
.program-introduction-popup .btn-round.ico-youtube {
  padding-left: 34px;
  background: url("/resource/image/pc/ico/programPopupYoutube.svg") 4px center/24px auto no-repeat #fff;
}
.program-introduction-popup .btn-text {
  text-decoration: underline;
  gap: 0 6px;
}
.program-introduction-popup .btn-text.ico-youtube {
  padding-left: 30px;
  background: url("/resource/image/pc/ico/programPopupYoutube.svg") left center/24px auto no-repeat;
}

.common-popup {
  z-index: 150;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  width: 580px;
  border-radius: 10px;
  display: none;
}
.common-popup.on {
  display: block;
}
.common-popup .popup-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #ebeef0;
  padding: 9px 14px 9px 30px;
  border-radius: 10px 10px 0 0;
}
.common-popup .popup-title .title {
  color: #484848;
  font-size: 24px;
  font-weight: 700;
}
.common-popup .popup-title .close-btn {
  width: 42px;
  height: 42px;
  background: url("/resource/image/pc/ico/clear.svg") center center no-repeat;
  background-size: 32px 32px;
}
.common-popup .popup-contents {
  padding: 0 30px;
}
.common-popup .popup-contents .summary-content,
.common-popup .popup-contents .common-text {
  font-size: 18px;
  line-height: 24px;
  padding: 30px 0;
  color: #222;
  word-break: break-all;
}
.common-popup .popup-contents .summary-desc,
.common-popup .popup-contents .common-sub-text {
  padding: 16px 0;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  border-top: 1px solid #eaeaea;
}
.common-popup .popup-contents .bottom-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid #eaeaea;
}
.common-popup .popup-contents .bottom-text-wrapper .common-sub-text {
  border: none;
  padding: 0;
}
.common-popup .popup-contents .bottom-text-wrapper .copy-button {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #333333;
  padding: 3px 16px;
  border-radius: 15px;
  border: 1px solid #bebebe;
}