@charset "UTF-8";

/* 基本スタイル */
.partnerCondition label {
  font-size: 13px;
  font-weight: bold;
}

.fa-chevron-circle-down {
  float: right;
  font-size: 19px;
  margin: 6px 10px;
  position: static;
  margin-right: -4px;
}

.service-content {
  margin-bottom: 30px;
  background-color: #f2f2f2;
  container-type: inline-size;
  padding-top: 12px;
  padding-bottom: 12px;
}

.service-content ul {
  padding-left: 15px;
  padding-right: 15px;
}

.service-content li {
  list-style: none;
  padding: 0;
}

.service-content .partnerDetail {
  display: grid;
  grid-template-columns: repeat(auto-fit, 280px);
  grid-gap: 6px;
  justify-content: center;
}

.service-content .webinarContent {
  width: 280px;
  height: 300px;
  margin: 0px;
  background-color: #ffffff;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  border: 1px solid #eeeeee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.logoImg {
  position: relative; /* 追加 */
  width: 100%;
  /*height: 60%;*/ /* 高さをボックスの60%に設定 */
  overflow: hidden; /* サムネイルが枠を超えないように */
}

.logoImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  pointer-events: none; /* アイコンがクリックをブロックしないように */
  opacity: 0.8;
}

.logoImg:hover .play-button {
  display: block !important;
}

.webinar_video_time {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 2px 5px;
  font-size: 12px;
}

.webinar_video_time {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 2px 5px;
  font-size: 12px;
}

.service-content .companyName {
  font-weight: 700;
  margin: 15px 10px 10px 10px;
}

.service-content .companyName a {
  color: #000000;
  font-size: 19px;
  text-decoration: underline;
}

.service-content .pDetail {
  width: 100%;
  flex: 1 1 auto;
}

.service-content .webinarContent .subTitle {
  font-weight: normal;
  color: #000000;
  margin-left: 10px;
}

.service-content .webinarContent .subContent {
  font-weight: 400;
  word-break: break-word;
  margin-left: 20px;
  margin-right: 20px;
}

.service-content .webinarContent .subContent.link {
  cursor: pointer;
}

.service-content .webinarContent .subContent.not-link {
  cursor: default;
}

.pDetail .form-group {
  font-size: 13px;
  margin: 10px 0;
}

.k-multiselect-wrap .square {
  width: 0;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #151617 transparent transparent transparent;
  position: absolute;
  top: 8px;
  right: 5px;
}

.partnerCondition .form-group:nth-child(2) {
  margin-top: 2px;
}

.service-content .inquiryInfo {
  text-decoration: underline;
  color: #0000ff;
  cursor: pointer;
}

.partnerTitle {
  margin-bottom: 20px;
  margin-top: 20px;
  font-weight: bold;
}

.titleSpan {
  font-size: 30px;
}

.partnerSub {
  text-align: center;
  font-size: 20px;
  width: 80%;
  margin: auto;
}

/* 講演内容と発表者のスクロール対応スタイル */
.pDetail {
  height: 100px; /* ここで高さを設定 */
  overflow-y: auto;  /* 縦スクロールを有効化 */
}

/* スクロールバーを非表示にするスタイル(カスタマイズ可能) */
.pDetail::-webkit-scrollbar {
  width: 0px; /* スクロールバー幅をゼロにする */
  background: transparent; /* 背景を透明にする */
}

.pDetail {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/** iPhone横の場合に3列表示になる様に指定 **/
@media (max-width:896px) and (orientation: landscape) {
  .service-content .partnerDetail {
    grid-template-columns: repeat(auto-fit, 260px);
  }

  .service-content .webinarContent {
    width: 260px;
  }
}

/** iPad Air縦の場合に3列表示になる様に指定 **/
@media (width:820px) {
  .service-content .partnerDetail {
    grid-template-columns: repeat(auto-fit, 245px);
  }

  .service-content .webinarContent {
    width: 245px;
  }
}

/** iPad 9世代 縦の場合に3列表示になる様に指定 **/
@media (width:810px) {
  .service-content .partnerDetail {
    grid-template-columns: repeat(auto-fit, 250px);
  }

  .service-content .webinarContent {
    width: 250px;
  }
}

/** iPad縦の場合に3列表示になる様に指定 **/
@media (width: 768px) {
  .service-content .partnerDetail {
    grid-template-columns: repeat(auto-fit, 235px);
  }

  .service-content .webinarContent {
    width: 235px;
  }
}

/* メディアクエリ
@media (max-width: 1205px) {
  .service-content .webinarContent {
    flex: 1 1 calc(33.33% - 20px);
    min-width: calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}

@media (max-width: 992px) {
  .service-content .webinarContent {
    flex: 1 1 calc(50% - 20px);
    min-width: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .service-content .webinarContent {
    flex: 1 1 calc(100% - 20px);
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 576px) {
  .partnerSub {
    width: 100%;
  }

  .service-content .webinarContent {
    flex: 1 1 calc(100% - 20px);
    min-width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

/* その他スタイル */
.underlined-link {
  text-decoration: underline;
}

.toggle-contents-show,
.toggle-contents-show:active {
    font-size: 0.8em;
    color: blue !important;
    text-align: right;
    cursor: pointer;
    display: block;
    float: right !important;
    margin-left: 5px;
    top: 6px;
    position: relative;
    text-decoration:none !important;
}

.toggle-contents-hide,
.toggle-contents-hide:active {
    font-size: 0.8em;
    color: blue !important;
    text-align: right;
    cursor: pointer;
    display: none; /* 初期状態で非表示 */
    float: right !important;
    top: 6px;
    position: relative;
    text-decoration:none !important;
}

.underlined-link,
.underlined-link:visited {
    color: black !important;
}

.content-full {
    max-height: 100px !important; /* スクロール部分の最大高さを設定 */
    overflow-y: auto !important; /* 縦スクロールを有効化 */
    display: none ; /* 初期状態では非表示 */
}

