@charset "utf-8";
.sec_mv {
	margin-bottom: 50px;
}

.subpage_wrap .inner {
	max-width: 1350px;
}

.subpage_list .col03{
	width: calc((100% - 30px) / 3);
	margin: 0 5px;
	padding: 1px;
	border-radius: 0 0 6px 6px;
}

.subpage_list .col03.yellow,
.subpage_list .col03.yellow .ttl_subpage {
	background: linear-gradient(to right, #FDC51B, #F49107);
}

.subpage_list .col03.blue,
.subpage_list .col03.blue .ttl_subpage {
	background: linear-gradient(to right, #41BEEB, #0A7DC4);
}

.subpage_list .col03.green,
.subpage_list .col03.green .ttl_subpage {
	background: linear-gradient(to right, #A5DD23, #4AAC2D);
}

.ttl_subpage {
	justify-content: center;
	align-items: center;
	padding: 15px 8px;
	border-radius: 0 0 6px 6px;
}

.ttl_subpage .icon_arrow {
	position: relative;
	width: 18px;
	height: 18px;
	border-radius: 100%;
	margin-right: 5px;
}

.subpage_list .col03.yellow .ttl_subpage .icon_arrow {
	background: #E4770A;
}

.subpage_list .col03.blue .ttl_subpage .icon_arrow {
	background: #076CAC;
}

.subpage_list .col03.green .ttl_subpage .icon_arrow {
	background: #41A112;
}

.ttl_subpage .icon_arrow::after {
	content: '';
	position: absolute;
  	border: solid var(--sub3-color);
  	border-width: 0 2px 2px 0;
  	padding: 2px;
  	left: 5px;
  	top: 6px;
	transform: rotate(-45deg);
}

.ttl_subpage h3 {
	font-weight: 700;
	color: var(--sub3-color);
	letter-spacing: .15em;
	font-size: 22px;
}

/* Message Wrap Section */
.message_wrap {
	background: linear-gradient(to top, #A7D2EA, #BAACF5);
	margin: 50px 0;
	padding: 10px;
}

.message_inner {
	width: 90%;
	max-width: 1170px;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	border-radius: 30px;
	overflow: hidden;
}

.message_text {	
	background: var(--sub3-color);
	flex: 1;
	padding: 50px 40px 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-right: 5px;
}

.message_body {
	flex: 1;
}

.message_body p {
	font-size: 16px;
	line-height: 2;
	color: var(--sub12-color);
	margin-bottom: 1.5em;
}

.message_body p:last-child {
	margin-bottom: 0;
}

.message_sign {
	margin-top: 30px;
	text-align: right;
	font-size: 16px;
	font-weight: 700;
	color: var(--sub12-color);
	line-height: 1.8;
}

.message_photo {
	width: 37%;
	max-width: 420px;
	flex-shrink: 0;
}

.message_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.sec_program {
	text-align: center;
}
.program_content {
	position: relative;
	margin-bottom: 50px;
}
.program_content .img_program {
	display: flex;
	width: 100%;
	min-height: 579px;
}
.program_content .img_program img {
	object-fit: cover;
}
.program_wrap {
	position: absolute;
	width: 73%;
	max-width: 950px;
	padding: 20px 40px 30px;
	background: rgba(255, 255, 255, 0.56);
	border-radius: 16px;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
}
.program_wrap .title_bg_gradient {
	display: block;
	margin-bottom: 45px;
}
/* 3-column list */
.recommend_list {
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: 50px;
}

.recommend_item {
  width: calc(100% / 3);
  max-width: 200px;
  min-width: 200px;
}

/* Icon circle + number badge */
.recommend_icon_wrap {
  position: relative;
  width: 182px;
  height: 182px;
  margin: 0 auto 20px;
}

.recommend_icon_img {
  height: 100%;
  object-fit: contain;
  display: block;
}

.recommend_num {
  position: absolute;
  top: 4px;
  left: -6px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sub3-color);
  color: #767FE4;
  border: 3px solid #767FE4;
  font-size: 32px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
}

.recommend_item .recommend_title {
	color: #432F99;
}

.junior_theme .recommend_num{
	background: var(--sub3-color);
	color: var(--sub1-color);
	border: 3px solid var(--sub1-color);;
}

/* Title (blue) */
.recommend_title {
  color: #616AD4;
  font-weight: bold;
  text-align: center;
}

.junior_theme .recommend_title{
	color: var(--sub1-color);
}
/* Description */
.recommend_desc {
  line-height: 1.8;
  color: var(--sub4-color);
}

.button_base{
	margin: 0 auto;
}

.sec_contact{
	background: #E3E8FF;
}


@media only screen and (min-width: 768px) and (max-width: 1199px) {
	.subpage_list .col03{
		width: calc((100% - 2.502vw) / 3);
		margin: 0 0.417vw;
		border-radius: 0 0 0.500vw 0.500vw;
	}

	.ttl_subpage {
		padding: 0.667vw;
		border-radius: 0 0 0.500vw 0.500vw;
	}

	.ttl_subpage .icon_arrow {
		width: 1.501vw;
		height: 1.501vw;
		margin-right: 0.417vw;
	}

	.ttl_subpage .icon_arrow::after {
		border-width: 0 0.167vw 0.167vw 0;
		padding: 0.167vw;
		left: 0.417vw;
		top: 0.500vw;
	}

	.message_text {
		padding: 3.5vw 3.5vw 3vw;
	}
	.message_body p {
		font-size: 1.4vw;
	}
	.message_sign {
		font-size: 1.4vw;
	}
	.message_photo {
		width: 36%;
	}

	.program_content {
		margin-bottom: 4.170vw;
	}
	.program_content .img_program {
		min-height: 48.290vw;
	}
	.program_wrap {
		padding: 1.668vw 3.336vw 2.502vw;
		border-radius: 1.334vw;
		right: 3.336vw;
	}
	.program_wrap .title_bg_gradient {
		margin-bottom: 3.753vw;
	}
	/*recommend Section*/
	.recommend_list {
	    margin-top: 4.170vw;
	}
	.recommend_item {
		max-width: 16.681vw;
		min-width: 16.681vw;
	}
	.recommend_icon_wrap {
	    width: 15.179vw;
	    height: 15.179vw;
	}
	.recommend_num {
	    width: 4vw;
        height: 4vw;
        font-size: 2.2vw;
	}
	
	/**end of recommend Section*/
	.col02_type01 {
		margin-bottom: 5.838vw;
	}
	.col02_type01 .col02_info {
		padding: 4.170vw 0;
	}
	.col02_type01 .col02_info .title_wrap {
		margin-bottom: 0.834vw;
	}
}

@media only screen and (max-width: 767px) {
	.sec_mv .mv_content{
		height: 4.5rem;
	}
	.sec_mv .mv_content img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.subpage_wrap .inner {
		max-width: 100%;
	}

	.subpage_list .col03 {
		width: 100%;
	    margin: 0 auto .3rem;
		padding: 0.01rem;
		border-radius: 0 0 0.10rem 0.10rem;
	}

	.ttl_subpage {
		padding: .2rem .05rem;
		border-radius: 0 0 0.10rem 0.10rem;
	}

	.ttl_subpage .icon_arrow {
		width: 0.30rem;
		height: 0.30rem;
		margin-right: 0.10rem;
	}

	.ttl_subpage .icon_arrow::after {
		border-width: 0 0.03rem 0.03rem 0;
		padding: 0.04rem;
		left: 0.08rem;
		top: 0.09rem;
	}
	.message_wrap {
		margin: 0.60rem 0;
		padding: 0.10rem;
	}
	.message_inner {
		width: 7.08rem;
		max-width: 100%;
		border-radius: 0.30rem;
		flex-direction: column;
	}
	.message_text {
		padding: 0.50rem 0.40rem 0.40rem;
		order: 2;
		margin-right: 0;
	}
	.message_body p {
		font-size: 0.26rem;
		margin-bottom: 0.30rem;
	}
	.message_sign {
		margin-top: 0.30rem;
		font-size: 0.26rem;
	}
	.message_photo {
		width: 100%;
		height: auto;
		order: 1;
		margin: 0 auto;
	}

	.program_content {
		margin-bottom: 0.50rem;
	}
	.program_content .img_program {
		display: block;
		min-height: auto;
	}
	.program_wrap {
		position: relative;
		width: 100%;
		max-width: 100%;
		background: linear-gradient(to bottom,#C1DAE5 20%,#BDE3DB 60%,#D9D4D2 100%);
		padding: 0.20rem 0.17rem;
		border-radius: 0;
		right: auto;
		top: auto;
		transform: none;
	}
	.program_wrap .program_about {
		background: rgba(255, 255, 255, 0.56);
		border-radius: 0.16rem;
		padding: 0.60rem 0.25rem;
	}
	.program_wrap .title_bg_gradient {
		margin-bottom: 0.50rem;
	}
	/*recommand Section*/
	.recommend_list {
	    flex-direction: column;
	    align-items: center;
	    gap: 0.60rem;
	    margin-top: 0.80rem;
	  }
	  .recommend_item {
	    width: 90%;
		max-width: 2.80rem;
		min-width: 2.80rem;
	  }
	  .recommend_icon_wrap {
	    width: 2.80rem;
	    height: 2.80rem;
		margin-bottom: 0.35rem;
	  }
	  .recommend_num {
	    width: 0.74rem;
	    height: 0.74rem;
	    font-size: 0.50rem;
	    top: .04rem;
        left: -0.06rem;
	    border-width: .03rem;
	  }
	.recommend_item .recommend_title {
		text-align: center;
	}
	.recommend_title {
		text-align: left;
	}
	/*end ofrecommand Section*/
	
}