@charset "UTF-8";


.downloadguide:before {
	content: url(../../course/pdf.gif);
}

 /* モーダルウィンドウ */
#modal-content {
	width: 100% ;
	max-width: 1000px;
	margin: 50px auto;
	padding: 0px ;
	/* outline: 1px solid #aaa ; */
	background: black ;
	/* position: fixed ; */
	/* display: none ; */
	z-index: 5 ;
	height: auto !important;
}

#modal-content .swiper-area {
	position: relative;
}

#modal-overlay {
	z-index: 4 ;
	display: block ;
	position: fixed ;
	top: 0 ;
	left: 0 ;
	width: 100% ;
	height: 120% ;
	background-color: rgba( 255,255,255, 0.9 ) ;
	cursor: pointer;

}

#modal-content p:nth-child(1) {
	text-align: right;
	margin-bottom: 5px;
	margin-right: 5px;
}


/* コース詳細へボタンのスタイル */
.coursebtn {
  box-sizing: border-box;
  margin-top: 50px;
  color: white;
  font-size: 1.2rem;
  border: 1px solid #e0e0e0;
  padding: 10px 15px;
  }

.coursebtn:hover {
  cursor: pointer ;
  background-color: #e0e0e0;
  color: black;
}


/* タブメニューのスタイル */

.tab-container {
  background-color: white;
  padding-bottom: 20px;
}

.tab-menu {
  display: flex;
  list-style: none;
  padding: 0;
}

.tab-menu li {
  background-color: white;
  border: 1px solid #e0e0e0;
  text-align: center;
  line-height: 200%;
  padding: 0 12px;
  margin-left: -1px;
}

.tab-menu li:hover {
  cursor: pointer ;
  background-color: #e0e0e0;
}

.tab-menu li.active {
  background-color: #e0e0e0;
}

/* タブコンテンツのスタイル */

.tab-content {
  margin-top: -1px;
}

.tab-content ul {
   display: flex;
}

.tab-content li {
  background-color: white;
  width: 100%;
  text-align: center;
  border: 1px solid #e0e0e0;
  text-align: center;
  line-height: 200%;
  margin-left: -1px;
}

.tab-content li:hover {
  cursor: pointer ;
  background-color: #e0e0e0;
}

.tab-content li.active {
  background-color: #e0e0e0;
}


/* コースタイトル */

#modal-content .course_ttl_area {
	background-color: white;
}

#modal-content .course_ttl {
	margin-left: min(25px, 2vw);
}

#modal-content .course_ttl .number {
  font-size: min(50px, 4vw);
}

#modal-content .course_ttl .number::before {
  content: "No.";
  font-size: min(25px, 2vw);
}

#modal-content .course_ttl .par {
  font-size: min(30px, 2.5vw);
  margin-left: min(20px, 1.8vw);
}

#modal-content .course_ttl .par::before {
  content: "Par";
  font-size: min(20px, 1.8vw);
  margin-right: min(7px, 0.5vw);
}

#modal-content .course_ttl .hdcp {
  font-size: min(30px, 2.5vw);
  margin-left: min(20px, 1.8vw);
}

#modal-content .course_ttl .hdcp::before {
  content: "Hdcp";
  font-size: min(20px, 1.8vw);
  margin-right: min(7px, 0.5vw);
}


/* 閉じるボタン */
#modal-close {
	color:white;
	position: absolute;
	right: 10px;
	bottom: min(130px, 20vw);
	z-index: 1;
}

#modal-close a {
	color: white;
	font-size: min(120%, 3vw);
}

.button-close:hover {
	cursor: pointer ;
	color: rgba(255, 255, 255, 0.5) !important;
}

#modal-back {
  color: white;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

#modal-back a {
	color: white;
	font-size: min(120%, 3vw);
}

.button-back:hover {
	cursor: pointer ;
	color: rgba(255, 255, 255, 0.5) !important;
}

#modal-next {
  color: white;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.button-back:before {
  font-family: "Font Awesome 5 Free";
  content: '\f137';
  font-weight: 900;
  font-size: 120%;
  margin-right: 5px;
}

#modal-next a {
	color: white;
	font-size: min(120%, 3vw);
}

.button-next:after {
  font-family: "Font Awesome 5 Free";
  content: '\f138';
  font-weight: 900;
  font-size: 120%;
  margin-left: 5px;
}

.button-next:hover {
	cursor: pointer ;
	color: rgba(255, 255, 255, 0.5) !important;
}



/* スライダー */

/* 画像 */

.slide-media {
	/* outline: 1px solid #aaa; */
	cursor: grab ;
}

.slide-media img {
	width: 100%;
	vertical-align: bottom;
}

/* 画像のタイトル */
.slide-content {
	color: white;
	padding: 10px 10px 0;
	font-size: min(120%, 3vw);
}

/* サムネイル */
.thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  max-width: 720px;
  margin: 10px 0px 10px auto;
  margin-left: min(280px,20vw);
  padding-bottom: 30px;
}

.thumb-media {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  cursor: pointer;
  transition-duration: 0.5s;
  border-radius: 4px;
}

.thumb-media-active {
  transform: scale(0.9);
  opacity: 0.3;
}

.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.5s;
}

.thumb-media:hover img {
  transform: scale(0.9);
}



/* pagination */
.swiper-pagination {
	margin-bottom: 10px;
}

.swiper-pagination-bullet {
	background-color: #808080 !important;
}

.swiper-pagination-bullet-active {
	background-color: #fff !important;
}

/* コースレイアウト */
.hit:hover {
  cursor: pointer;
}

.nohit{
  pointer-events: none;
}

