/* CSS Document */
/*ページタイトル*/
.page_title h2::before{
	content: "Lecture";
}
.page_title.practical_skills h2::before{
	content: "Practical Skills";
}
/*コンテンツ*/
.about{
	box-sizing: border-box;
	display: flex;
}
body[wc-view-code="sp"] .about{
	padding: var(--headerHeight) 5vw;
	flex-direction: column;
}
body[wc-view-code="tb"] .about{
	padding: var(--headerHeight) 7vw;
}
body[wc-view-type="tb"] .about{
	flex-direction: column;
}
body[wc-view-code="pc"] .about{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}
.about .contents_title{
}
body[wc-view-type="tb-l"] .about .contents_title{
	width: 50%;
}
body[wc-view-code="pc"] .about .contents_title{
	width: 550px;
}
.about .a_text{
}
body[wc-view-type="sp-s"] .about .a_text{
	margin-top: 1rem;
}
body[wc-view-type="sp"] .about .a_text{
	margin-top: 1.25rem;
}
body[wc-view-type="tb"] .about .a_text{
	margin-top: 1.5rem;
}
body[wc-view-type="tb-l"] .about .a_text{
	width: 50%;
	margin-top: 38px;
}
body[wc-view-code="pc"] .about .a_text{
	width: 550px;
	margin-top: 38px;
}
.about .a_text > p{
	line-height: 1.8rem;
}
.about .a_text > p:not(:first-of-type){
	margin-top: 0.5rem;
}
body[wc-view-code="pc"] .about .a_text > p:nth-of-type(1){
	margin-top: 0;
}
/*習得できること*/
.program_contents{
	box-sizing: border-box;
	background-color: #f5f3fd;
}
body[wc-view-code="sp"] .program_contents{
	padding: var(--headerHeight) 5vw;
	flex-direction: column;
}
body[wc-view-code="tb"] .program_contents{
	padding: var(--headerHeight) 7vw;
}
body[wc-view-code="pc"] .program_contents{
	padding: var(--headerHeight) calc((100vw - 1100px) / 2);
}

.program_contents .contents_title::before{
	content: "Master";
}
.program_contents > article{
	display: flex;
}
body[wc-view-code="sp"] .program_contents > article{
	flex-direction: column;
}
body[wc-view-code="sp"] .program_contents > article,
body[wc-view-code="tb"] .program_contents > article{
	margin-top: 1.5rem;
}
body[wc-view-code="sp"] .program_contents > article:not(:first-of-type){
	margin-top: 2.5rem;
}
body[wc-view-code="pc"] .program_contents > article{
	margin-top: 3rem;
}
body[wc-view-code="pc"] .program_contents > article:nth-of-type(even){
	flex-direction: row-reverse;
}
body[wc-view-code="tb"] .program_contents > article:not(:first-of-type),
body[wc-view-code="pc"] .program_contents > article:not(:first-of-type){
  margin-top: calc(var(--headerHeight) / 1.2);
}
.program_contents > article .pr_text{
	box-sizing: border-box;
}
body[wc-view-code="sp"] .program_contents > article .pr_text{
	padding-bottom: 1rem;
}
body[wc-view-code="tb"] .program_contents > article .pr_text,
body[wc-view-code="tb"] .program_contents > article figure{
	width: 50%;
}
body[wc-view-code="tb"] .program_contents > article .pr_text{
	padding-right: 1.5rem;
}
body[wc-view-code="pc"] .program_contents > article .pr_text{
	width: 550px;
}
body[wc-view-code="pc"] .program_contents > article:nth-of-type(odd) .pr_text{
	padding-right: 2.5rem;
}
body[wc-view-code="pc"] .program_contents > article:nth-of-type(even) .pr_text{
	padding-left: 2.5rem;
}
.program_contents > article .pr_text > h2{
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-size: 1.25rem;
  display: flex;
  padding-right: 1rem;
	gap:0.25rem;
}
.program_contents > article .pr_text > h2::before{
	content: "";
	flex: none;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accentColor);
  width: 0.8rem;
  height: 0.8rem;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	margin-top: 0.55rem;
}


.program_contents > article .pr_text > .pr_in_text{
}
.program_contents > article .pr_text > .pr_in_text{
	padding-left: 1rem;
	box-sizing: border-box;
}
.program_contents > article .pr_text > .pr_in_text p{
	line-height: 1.8rem;
	margin-top: 0.25rem;
}

body[wc-view-code="pc"] .program_contents > article .pr_text > .pr_in_text p:nth-of-type(1){
	margin-top: 1rem;
}
.program_contents > article figure{
}
body[wc-view-code="pc"] .program_contents > article figure{
	width: 550px;
}
.program_contents > article figure img{
	aspect-ratio:1.414/1;
}