@charset "utf-8";

/* CSS Document */
/*================================================
*  CSSリセット
================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
*  一般・共通設定
================================================*/
body {
	font-size: 16px;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}

* {
	min-width: 0;
	min-height: 0;
	box-sizing: border-box;
}

img {
	image-rendering: -webkit-optimize-contrast;
	vertical-align: top;
}

#wrap {
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
}

.contents {
	width: 1000px;
	margin: 0 auto;
}
@media only screen and (max-width: 999px) {
	.contents {
		width: 100%;
		padding: 0 10px;
	}
}
@media only screen and (max-width: 599px) {
	.contents.no-padding {
		width: 100%;
		padding: 0;
	}
}

a { color: #111; }
a:link { text-decoration: none; }
a:visited { color: inherit; }


/* pc sp表示切替 */
.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 599px) {
	.pc { display: none !important; }
	.sp { display: block !important; } 
}

.pc480 { display: block !important; }
.sp480 { display: none !important; }
@media only screen and (max-width: 480px) {
	.pc480 { display: none !important; }
	.sp480 { display: block !important; }
}


/*================================================
 *  ヘッダー
 ================================================*/
/* ロゴ */
header h1 img {
	width: 17%;
	height: auto;
	margin: 0.5rem 0;
}

/* キービジュアル */
.mainvisual {
	margin: 0 auto 1.0rem;
	text-align: center;
}

@media only screen and (max-width: 999px) {
	.mainvisual {
		margin: 0 auto 0.5rem;
	}
	.mainvisual img {
		width: 100%;
	}
}
@media only screen and (max-width: 480px) {
	header h1 {
		text-align: center;
	}
	header h1 img {
		width: 25%;
		height: auto;
	}
}


/*================================================
 *  フッター
 ================================================*/
footer {
	clear: both;
	padding-bottom: 30px;
	margin-top: 80px auto 0;
	font-size: 0.9rem;
	text-align: center;
}
footer img {
	margin-bottom: 3rem;
}

.copyright {
	padding: 10px;
	text-align: center;
}

@media screen and (max-width:750px) {
	footer {
		margin-top: 40px;
		padding-bottom: 0;
	}
	footer img {
		width: 85%;
	}
	.copyright {
		font-size: 0.7rem;
	}
}


/*================================================
 *  ページトップへの戻り
 ================================================*/
#page-top {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 1;
}
#page-top a {
	display: block;
	text-decoration: none;
}
#page-top img {
	background: #111;
}
#page-top img:hover {
	background: #222;
}


/*================================================
 *  コンテンツ
 ================================================*/
.txtB {
	font-weight: bold;
}

.txtS {
	font-size: 80%
}


/* リード文
--------------------------------------*/
.lead {
	margin-bottom: 2.0rem;
    text-align: center;
}
@media only screen and (max-width: 599px) {
	.lead {
		margin-bottom: 1.0rem;
		font-size: 0.9rem;
	}
}


/* ページ内リンク
--------------------------------------*/
.anchor {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2.0rem;
}
.anchor li {
	width: 48%;
}
.anchor li a {
	display: block;
	position: relative;
	background-color: #006ca4;
	border-radius: 10px;
	text-align: center;
	padding: 0.8rem 1.0rem;
	color: #fff;
}
.anchor li:last-of-type a {
	background-color: #5ea700;
}
.anchor li a::after {
	content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
	position: absolute;
	top: 0;
	right: 2.0rem;
	bottom: 0;
	width: 10px;
  height: 10px;
	margin: auto;
	transform: translateY(-2px) rotate(135deg);
	box-sizing: border-box;
}
.anchor li a:hover {
	background-color: #e3005b;
	transition: 0.5s;
}

@media only screen and (max-width: 599px) {
	.anchor li a {
		padding-bottom: 1.8rem;
	}
	.anchor li a::after {
		top: auto;
		right: 0;
		bottom: 1.0rem;
		left: 0;
	}
}


/* 講座情報
--------------------------------------*/
.cst {
	display: flex;
	flex-direction: column;
	background-color: #e9efec;
	height: 100%;
	min-height: 0%;
	margin-bottom: 2rem;
}


/*----- 講座名 -----*/
.cst h3 {
	display: flex;
	align-items: flex-start;
	border-bottom: 1px dashed #666;
	text-align: left;
	padding: 1.0rem 0;
	margin: 0 1.0rem 1.0rem;
}
.cst h3 span {
	color: #e3005b;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.4;
}
.cst h3 span:first-of-type {
	border-radius: 5px;
	padding: 0.3rem 0.5rem 0.2rem;
	margin-right: 1.0rem;
	color: #fff;
	font-size: 0.8rem;
	flex-shrink: 0;
}
.cst h3 span.tsukuru { background-color: #006ca4; }
.cst h3 span.ajiwau  { background-color: #5ea700; }

@media only screen and (max-width: 599px) {
	.cst h3 {
		flex-wrap: wrap;
		padding: 0.5rem 0;
	}
	.cst h3 span {
		font-size: 1.1rem;
	}
	.cst h3 span:first-of-type {
		font-size: 0.7rem;
	}
	.cst h3 span:last-of-type {
		width: 100%;
		margin-top: 0.2rem;
	}
}

/*----- 内容 -----*/
.cst .cst-in {
	display: flex;
	padding: 0 1.0rem 1.0rem;
}

.cst .cst-in .ph-in {
	width: 300px;
	text-align: center;
}
.cst .cst-in .ph-in img {
	background-color: #fff;
	display: block;
	height: 200px;
	object-fit: contain;
	width: 100%;
}
.cst .cst-in .ph-in p {
	margin-top: 0.2rem;
	text-align: right;
	font-size: 0.7rem;
}

.cst .cst-in .note {
	flex: 1;
	display: flex;
	flex-direction: column;
	margin-left: 2rem;
}

.cst .cst-in .note .txt {
	margin-bottom: 1.0rem;
	font-size: 0.9rem;
}

.cst .cst-in .note dl {
	display: flex;
	flex-wrap: wrap;
	align-items:stretch;
	width: 100%;
	margin-bottom: 0.5rem;
}
.cst .cst-in .note dt {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #35373A;
	width: 60px;
	margin-bottom: 1.0rem;
	text-align: center;
	color: #fff;
	font-size: 0.9rem;
}
.cst .cst-in .note dt:last-of-type {
	margin-bottom: 0;
}
.cst .cst-in .note dd {
	background-color: #fff;
	width: 100%;
	flex: 1;
	padding: 0.2rem 1.0rem;
}
.cst .cst-in .note dd .katagaki {
	margin-right: 0.6rem;
	font-size: 0.8rem;
}

.cst .cst-in .note dd span.num {
	border: 1px solid #fe4984;
	padding: 0 0.5rem;
	margin-left: 0.5rem;
	color: #fe4984;
	font-size: 0.9rem;
	font-weight: bold;
}

.cst .cst-in .note dd .close {
	color: #bbb;
}


/*-- ボタン --*/
.cst .cst-in .btn {
	background-color: #FF9E00;
	border-radius: 100px;
	width: 60%;
	margin: 0.5rem 0 0 auto;
}
.cst .cst-in .btn a {
	display: block;
	position: relative;
	padding: 0.8rem 0.5rem;
	text-align: left;
	color: #000;
	font-size: 0.9rem;
}
.cst .cst-in .btn a::after {
	position: absolute;
	top: 50%;
	right: 1.0rem;
	margin-top: -4px;
	content: "";
	width: 8px;
  height: 8px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
	transform: rotate(45deg);
}
.cst .cst-in .btn a span {
	background-color: #FFF2D2;
	border-radius: 100px;
	padding: 0.4rem 1.0rem;
	margin: 0 0.5rem 0 0;
	font-weight: bold;
	color: #333;
}
.cst .cst-in .btn a:hover {
	transition: 0.5s;
	background-color: #f30;
	border-radius: 100px;
	color: #fff;
}
.cst .cst-in .btn a:hover span {
	transition: 0.5s;
	color: #f30;
}

/*タブレット*/
@media only screen and (max-width: 999px) {
	.cst .cst-in .btn {
		width: 100%;
	}
}
/*スマホ*/
@media only screen and (max-width: 599px) {
	.cst .cst-in {
		display: block;
		min-height: auto;
	}
	.cst .cst-in .ph,
	.cst .cst-in .ph-in {
		width: auto;
		text-align: center;
	}
	.cst .cst-in .ph-in img {
		width: 100%;
		height: 200px;
		object-fit: contain;
	}
	.cst .cst-in .note {
		width: 100%;
		position: static;
		width: auto;
		margin: 0.5rem 0 0;
	}
	.cst .cst-in .note .text {
		font-size: 0.8rem;
	}
	.cst .cst-in .note dl {
		margin: 0;
	}
	.cst .cst-in .note dl:last-of-type {
		margin: 0.5rem 0;
	}
	.cst .cst-in .note dt,
	.cst .cst-in .note dd {
		display: block;
		width: 100%;
	}
	.cst .cst-in .note dt {
		padding: 0 0.5rem;
		margin-bottom: 0;
		text-align: left;
	}
	.cst .cst-in .note dd {
		width: 100%;
		padding: 0.2rem 0.5rem;
		margin: 0 0 1.0rem;
		flex: auto;
	}
	.cst .cst-in .note dd:last-of-type {
		margin-bottom: 0;
	}
}



/*-- まだ間に合う --*/
.att {
  background-color: #ececec;
	padding: 1.0rem;
	margin-bottom: 2.0rem;
	font-size: 0.9rem;
	color: #391601;
	overflow: hidden;
	zoom: 1;
}
.att img{
	float: left;
	margin-right: 0.2rem;
}

/*スマホ*/@media only screen and (max-width: 599px) {
	.att {
		padding: 0.5rem;
		margin-bottom: 1.0rem;
		font-size: 0.6rem;
		overflow: hidden;
		zoom: 1;
	}
	.att img{
		width: 50px;
		margin-bottom: 30px;
	}
}





/*----- 途中回からも楽しめる_20240402追加 -----*/
.tochu {
	position: relative;
	display: block;
	background: #fe4984;
	border-radius: 5px;
	width: 30%;
	padding: 0.2rem 0.5rem 0.1rem;
	margin: 0.5rem 0 0;
}
.tochu:before {
	content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  z-index: 0;
  border: 3px solid transparent;
  border-bottom: 8px solid #fe4984;
  margin-left: -3px;
}
.tochu p {
	text-align: center;
	color: #fff;
	font-size: 0.8rem;
}

/*スマホ*/@media only screen and (max-width: 999px) {
	.tochu {
		width: 100%;
	}
}