/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Exo:400,700');
body {
  background-color: #eef4f7;
  font-family: 'Exo', sans-serif;
  padding-top: 5rem;
}
.container-fluid.mb-3.border.p-5.rounded {
  background-color: white;
  width: 90%;
}
.contact.container-fluid.ms-5.rounded.area {
  width: 90%;
}
.bold-text {
  font-weight: bold;
}

.status {
  width: 10%;
}

.date-time,
.event-name,
.place {
  width: 20%;
}

.change-status {
  width: 15%;
}

.pagination-right {
  justify-content: flex-end;
}

.table-responsive {
  min-height: 120px;
}

.table-header {
  display: flex;
  justify-content: space-between;
}

th,
td {
  white-space: nowrap;
}

.spinwrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  background-color: #999;
  opacity: 0.5;
}
.spin {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 3rem;
  height: 3rem;
}
.title {
  position: relative;
  padding-left: 30px;
  color: #153c6e;
}

.title:before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f120';
  background: #c9e2ff;
  color: #153c6e;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.second-title {
  position: relative;
  padding-left: 30px;
  color: #153c6e;
}
.second-title:before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f121';
  background: #c9e2ff;
  color: #153c6e;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

h3 {
  position: relative; /*相対位置*/
  padding-left: 1.2em; /*アイコン分のスペース*/
  line-height: 1.4; /*行高*/
}

h3:before {
  font-family: 'Font Awesome 5 Free';
  content: '\f2bd'; /*アイコンのユニコード*/
  font-weight: 900;
  position: absolute; /*絶対位置*/
  font-size: 1em; /*サイズ*/
  left: 0; /*アイコンの位置*/
  top: 0; /*アイコンの位置*/
  color: #153c6e; /*アイコン色*/
}

.basic {
  background: linear-gradient(-45deg, #029569, #00cda8);
}

.advanced {
  background: linear-gradient(-45deg, #cc3d00, #f0bb00);
}

.expert {
  background: linear-gradient(-45deg, #aa0115, #e64ac4);
}

.movie-content-row {
  cursor: pointer;
}

.embed-row {
  height: 450px;
  margin-bottom: 3em;
}

.video-js .vjs-control-bar {
  background-color: #333;
  color: #fff;
  font-size: 14px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  opacity: 1;
}

.video-js .vjs-play-control {
  background: none;
  border: none;
  color: #fff;
  margin-right: 10px;
}

.video-js .vjs-play-control:hover {
  color: #ff0000; /* YouTubeの赤色 */
}

.video-js .vjs-progress-control {
  flex-grow: 1;
  margin: 0 10px;
}

.video-js .vjs-progress-holder {
  background: rgba(255, 255, 255, 0.3);
  height: 5px;
  border-radius: 2px;
}

.video-js .vjs-play-progress {
  background: #ff0000;
  height: 5px;
  border-radius: 2px;
}

.video-js .vjs-volume-control {
  margin-right: 10px;
}

.video-js .vjs-volume-bar {
  background: rgba(255, 255, 255, 0.3);
}

.video-js .vjs-volume-level {
  background: #ff0000;
}

.video-js .vjs-fullscreen-control {
  margin-left: auto;
  background: none;
  border: none;
  color: #fff;
}

.video-js .vjs-fullscreen-control:hover {
  color: #ff0000;
}

/* その他のコントロールのスタイルを追加 */
.video-js .vjs-control {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-js .vjs-control:hover {
  color: #ff0000;
}

.video-js .vjs-control-bar {
  display: flex;
  justify-content: space-between;
}
.clickable-area {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  cursor: pointer;
}
.left-half {
  left: 0;
}
.right-half {
  right: 0;
}

/* 再生バーのスタイル */
.vjs-progress-holder {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  height: 5px;
  border-radius: 2px;
}

/* チャプターセグメントのスタイル */
.chapter-segment {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.5);
  border-right: 1px solid #fff; /* セグメント間の境界線 */
}

/* 再生バーの進捗スタイル */
.vjs-play-progress {
  background: #ff0000;
  height: 5px;
  border-radius: 2px;
}

/* ツールチップのスタイル */
.tooltip {
  position: absolute;
  background-color: #333;
  color: #fff;
  padding: 5px;
  border-radius: 3px;
  font-size: 12px;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s;
}

.chapter-segment:hover .tooltip {
  visibility: visible;
  opacity: 1;
}
