@charset "utf-8";

/* -----------------------------------------------------------
    校舎案内　一覧ページ
-------------------------------------------------------------- */

#school .school-area {
	background-image: none;
	margin: 30px 0 0;
	padding: 0 0 100px;
	background-color: #fff;
}

#school .school-area .inner {
	max-width: 980px;
}

#top #school .school-area,
#school-detail #school .school-area {
	margin: 120px 0 0;
}

/* bg:green title-block */

#school .school-area .title-block {
	background: #3db778;
	width: 418px;
	height: 251px;
	color: #fff;
	padding: 60px 35px;
	position: relative;
	margin: 0 0 40px;
}

#school .school-area .title-block .school-title-eng {
	font-size: 5rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 0 0 50px;
	position: relative;
}

#school .school-area .title-block .school-title-eng::after {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
	width: 131px;
	height: 2px;
	background: #fff;
}

#school .school-area .title-block .school-title-point p {
	width: 150px;
	height: 150px;
	background: #fff;
	border-radius: 50%;
	color: #333;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.4;
	text-align: center;
	padding: 40px 0 30px;
	position: absolute;
	top: -30px;
	right: -155px;
	box-shadow: 2px 2px 7px 2px rgba(51, 51, 51, 0.205);
}

#school .school-area .catch-block {
	margin: 0 0 30px;
}

#school .school-area .catch-block .section-catch {
	margin: 0 0 30px;
}

#school .school-area .catch-block .txt {
	max-width: 590px;
	width: 100%;
}

#school .school-area .card-wrapper {
	width: 100%;
	max-width: 700px;
	display: flex;
	justify-content: flex-start;
	gap: 30px 30px;
	flex-wrap: wrap;
	margin: 0 0 10px;
}

#school .school-area .card-wrapper .card {
	width: calc((100% - 60px) / 3);
	background: #fff;
	box-shadow: 2px 2px 10px rgba(78, 78, 78, 0.164);
	padding: 10px 10px 0 10px;
	margin: 0;
}

#school .school-area .card-wrapper .card.new {
	background-color: #FFFAD4;
	position: relative;
}

#school .school-area .card-wrapper .card.new::before {
	content: "NEW OPEN";
	display: inline-block;
	font: 2rem / 1 "roboto";
	font-weight: bold;
	padding: 5px 10px;
	text-align: center;
	position: absolute;
	top: -5px;
	left: -25px;
	background-color: #3db778;
	color: #fff;
	transform: rotate(-15deg);
	z-index: 20;
}

#school .school-area .card-wrapper .card .card-img {
	overflow: hidden;
}

#school .school-area .card-wrapper .card .card-img img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
	transition-duration: 0.3s;
}

#school .school-area .card-wrapper .card .card-body {
	padding: 15px 0 15px;
}

#school .school-area .card-wrapper .card .card-title {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	text-align: center;
}

#school .school-area .btn {
	margin: 0;
	display: none;
}

#top #school .school-area .btn {
	display: block;
}

#school .school-area .card-wrapper .card a:hover .card-img img,
#school .school-area .card-wrapper .card img:hover {
	transform: scale(1.1);
	transition-duration: 0.3s;
}

@media screen and (max-width: 768px) {
	#school .school-area {
		background: none;
		margin: 0;
		padding: 0;
	}

	#top #school .school-area,
	#school-detail #school .school-area {
		margin: 0;
	}

	/* bg:green title-block */
	#school .school-area .title-block {
		width: 100%;
		height: auto;
		color: #fff;
		padding: 22px 20px 18px;
		margin: 0 0 18px;
	}

	#school .school-area .title-block .school-title-eng {
		font-size: 3.2rem;
		padding: 0 0 18px;
		position: relative;
	}

	#school .school-area .title-block .school-title-eng::after {
		position: absolute;
		content: '';
		left: 0;
		bottom: 0;
		width: 90px;
		height: 2px;
		background: #fff;
	}

	#school .school-area .title-block .school-title-point p {
		width: 92px;
		height: 92px;
		padding: 22px 0 0;
		font-size: 1.8rem;
		line-height: 1.35;
		top: -10px;
		right: 10px;
	}

	#school .school-area .catch-block {}

	#school .school-area .catch-block .section-catch {
		margin: 10px 0 10px;
	}

	#school .school-area .catch-block .txt {
		width: auto;
	}

	#school .school-area .card-wrapper {
		width: 100%;
		gap: 15px 15px;
		margin: 0;
	}

	#school .school-area .card-wrapper .card {
		width: calc((100% - 15px) / 2);
		margin: 0;
	}

	#school .school-area .card-wrapper .card.new::before {
		font: 1.7rem / 1 "roboto";
		font-weight: bold;
		padding: 5px 8px;
		top: 0px;
		left: unset;
		right: -30px;
		transform: rotate(15deg);
	}

	#school .school-area .card-wrapper .card .card-body {
		padding: 12px 0;
	}

	#school .school-area .card-wrapper .card .card-title {
		font-size: 1.8rem;
	}

	#school .school-area .btn {
		margin: 0 0 195px;
	}

	#school .school-area .container {
		background: #fff;
		padding: 0 20px 10px;
	}

	#school-detail #school .school-area .container {
		background: #fff;
		padding: 0 20px 10px;
	}

}


/* -----------------------------------------------------------
    校舎案内　詳細ページ
-------------------------------------------------------------- */

#school-detail {
	margin: 100px 0 0;
}

@media screen and (max-width: 768px) {
	#school-detail {
		margin: 0 0 0;
	}
}


/*    top-area
-------------------------------------------------------------- */

#school-detail .top-area {
	background: linear-gradient(180deg, transparent 0px, transparent 50px, #f5f5f5 50px, #f5f5f5 100%);
	padding: 0 0 50px;
	margin: 20px 0 0;
}

/*20241127 修正*/
#school-detail .top-area .title-wrapper {
	/*display: flex;
	justify-content: space-between;
	flex-wrap: wrap;*/
	display: block;
	position: relative;
}

#school-detail .top-area .txt-block {
	margin: 0 40px 40px 0;
	/*width: 520px;*/
	width: 100%;
}

#school-detail.support-b .top-area .txt-block,
#school-detail.classroom-c .top-area .txt-block,
#school-detail.classroom-b .top-area .txt-block {
	margin: 0 40px 0 0;
}

#school-detail .top-area .txt-block.full {
	width: 100%;
	margin: 0 0 30px;
}

/*20241127 修正*/
#school-detail .top-area .img-block {
	width: calc(100% - 520px);
	position: absolute;
	top: 0;
	right: 0;
}

/*20250123 追記*/
#school-detail .top-area .img-block02 {
	width: calc(100% - 520px);
	position: absolute;
	bottom: 0;
	right: 0;
}
#school-detail .top-area .img-block02 img {
	width: 100%;
	/*height: 420px;*/
	height: 350px;
	object-fit: cover;
}


#school-detail .top-area .txt-block .title-block {
	background: #3db778;
	width: 362px;
	height: 218px;
	padding: 70px 30px;
	position: relative;
	margin: 0 0 40px;
}


/* bg:green title-block */

#school-detail .top-area .txt-block .title-block .school-title {
	color: #fff;
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.2;
	padding: 0 0 40px;
	position: relative;
}

#school-detail .top-area .txt-block .title-block .school-title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 131px;
	height: 2px;
	background: #fff;
}

#school-detail .top-area .txt-block .title-block .point-img {
	width: 90px;
	position: absolute;
	bottom: 2px;
	right: 25px;
}


/* catch */

#school-detail .top-area .txt-block .catch {
	font-size: 3.4rem;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 20px;
	text-align: left;
}

#school-detail .top-area .txt-block .txt {
	margin: 15px 0 0;
}

#school-detail .top-area .txt-block .txt .ani-line {
	font-weight: 500;
}

#school-detail .top-area .img-block {
	margin: 0 -50px 0 0;
}

/*20250123 追記*/
#school-detail .top-area .img-block02 {
	margin: 0 -50px 0 0;
}

#school-detail .top-area .school-check {
	padding: 30px 0;
	font-size: 1.8rem;
	line-height: 1.8;
}

#school-detail .top-area .school-check li {
	padding-left: 1.5em;
	text-indent: -1.5em;
	margin: 10px 0 0;
}

#school-detail .top-area .school-check li:first-child {
	margin: 0;
}

#school-detail .top-area .school-check li::before {
	content: "\f00c";
	font-family: "fontawesome";
	margin: 0 10px 0 0;
	color: #3db778;
}

#school-detail .top-area .txt-line-block {
	background: linear-gradient(90deg, #fff 0px, #fff 60%, #f5f5f5 60%, #f5f5f5 100%);
}

#school-detail .top-area .txt-line-block .txt {
	font-size: 1.8rem;
	line-height: 1.8;
	background: #fff;
	display: inline-block;
	padding: 30px 45px 30px 0;
}

/*20251114 出し分け箇所*/
#school-detail .title-sub-box {
	display: none;
}
#school-detail.classroom-a .title-sub-box.classroom-a,
#school-detail.classroom-b .title-sub-box.classroom-b,
#school-detail.classroom-c .title-sub-box.classroom-c,
#school-detail.support-a .title-sub-box.support-a,
#school-detail.support-b .title-sub-box.support-b,
#school-detail.support-c .title-sub-box.support-c{
	display: block;
}

#school-detail .top-area .img-block img {
	display: none;
}
#school-detail.classroom-a .top-area .img-block img.classroom-a,
#school-detail.classroom-b .top-area .img-block img.classroom-b,
#school-detail.classroom-c .top-area .img-block img.classroom-c,
#school-detail.support-a .top-area .img-block img.support-a,
#school-detail.support-b .top-area .img-block img.support-b,
#school-detail.support-c .top-area .img-block img.support-c{
	display: block;
}
/*20251114 出し分け箇所 end*/

@media screen and (max-width: 768px) {
	#school-detail .top-area {
		background: #f5f5f5;
		padding: 0 0 0;
		margin: 0;
	}

	#school-detail .top-area .title-wrapper {
		/*display: block;*/
	}

	#school-detail .top-area .txt-block {
		margin: 0 0 20px;
		width: 100%;
		order: 1;
	}

	#school-detail.support-b .top-area .txt-block,
	#school-detail.classroom-c .top-area .txt-block,
	#school-detail.classroom-b .top-area .txt-block {
		margin: 0 0 20px;
	}

	#school-detail .top-area .txt-block.full {
		order: 2;
		margin: 0 0 20px;
	}

	#school-detail .top-area .txt-block.full .txt:first-child {
		margin: 0;
	}

	#school-detail .top-area .school-check {
		font-size: 1.6rem;
	}

	#school-detail .top-area .txt-block .title-block {
		width: 100%;
		height: 100px;
		padding: 25px 30px;
		margin: 0 0 30px;
	}

	/* bg:green title-block */
	#school-detail .top-area .txt-block .title-block .school-title {
		font-size: 2.5rem;
		padding: 0 0 20px;
	}

	#school-detail .top-area .txt-block .title-block .school-title::after {
		width: 90px;
	}

	/*20240718 修正*/
	#school-detail .top-area .txt-block .title-block .point-img {
		/*width: 60px;*/
		/*bottom: -50px;*/
		/*right: 10px;*/
		width: 55px;
		bottom: -37px;
		right: 90px;
		z-index: 0;
	}

	/* catch */
	#school-detail .top-area .txt-block .catch {
		font-size: 2.2rem;
		margin: 0 0 20px;
	}

	#school-detail .top-area .img-block {
		margin: 40px auto 0;
		width: 100%;
		order: 3;
		position: static;
	}

	#school-detail .top-area .txt-line-block {
		background: none;
		padding: 0 20px;
	}

	#school-detail .top-area .txt-line-block .txt {
		font-size: 1.6rem;
		display: block;
		padding: 20px 10px;
		position: relative;
	}

	#school-detail .top-area .txt-line-block .txt::before {
		content: "";
		position: absolute;
		top: -28px;
		left: 50%;
		margin-left: -15px;
		border: 15px solid transparent;
		border-bottom: 15px solid #fff;
	}
	
	/*20251114 出し分け箇所*/
	#school-detail .top-area .img-block img {
		display: none;
	}
	#school-detail.classroom-a .top-area .img-block img.classroom-a,
	#school-detail.classroom-b .top-area .img-block img.classroom-b,
	#school-detail.classroom-c .top-area .img-block img.classroom-c,
	#school-detail.support-a .top-area .img-block img.support-a,
	#school-detail.support-b .top-area .img-block img.support-b{
		display: none;
	}
	/*20251114 出し分け箇所 end*/
	
}

/*    20250114 修正ver top-area
-------------------------------------------------------------- */
#school-detail .top-area {
  	padding: 60px 0;
  	background: #f1f9f5;
}
#school-detail .top-area .txt-block .title-block .point-img {
  	display: none;
}
#school-detail .title-target img {
  	display: none;
}
#school-detail .top-area .txt-block .title-block .school-title::after {
	display: none;
}

#school-detail .top-area .txt-block {
	width: 520px;
}
#school-detail .top-area .txt-block .title-block {
  	width: 100%;
  	height: 110px;
  	padding: 20px 30px;
  	margin: 0 0 30px;
}
#school-detail .top-area .txt-block .title-block .title-sub {
  	text-align: center;
  	font-size: 1.6rem;
  	color: #fff;
  	padding: 0 0 5px 0;
}
#school-detail .top-area .txt-block .title-block .school-title {
  	padding: 0 0 0;
  	text-align: center;
}
#school-detail .top-area .catch-sub {
  	text-align: center;
  	position: relative;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	font-size: 1.6rem;
  	color: #333;
  	padding: 0 0 10px 0;
}
#school-detail .top-area .catch-sub::before, #school-detail .top-area .catch-sub::after {
  	content: "";
  	width: 20px;
  	height: 1px;
  	background-color: #333;
  	margin: 0px 4px 4px;
}
#school-detail .top-area .catch-sub::before {
  	transform: rotate(45deg);
}
#school-detail .top-area .catch-sub::after {
  	transform: rotate(-45deg);
}
#school-detail .top-area .txt-block .catch {
  	font-size: 3.2rem;
  	margin: 20px 0 20px;
  	text-align: center;
}
#school-detail .top-area .txt-block .txt.catch-txt {
  	text-align: center;
  	font-weight: 700;
}

/*こんなお悩みと相性バッチリ*/
#school-detail .top-area .txt-block .intro-title-box {
  	padding: 15px 10px;
  	margin: 20px 0;
  	border: 2px solid #33b371;
	position: relative;
    display: block;
    margin-bottom: 15px;
    /*background-color: #fff;*/
	background-color: #f1f9f5;
    text-align: left;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
}
#school-detail .top-area .txt-block .intro-title-box::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #33b371 transparent transparent;
  translate: -50% 100%;
}

#school-detail .top-area .txt-block .intro-title-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 11.4px 7.6px 0 7.6px;
  /*border-color: #ffffff transparent transparent;*/
	border-color: #f1f9f5 transparent transparent;
  translate: -50% 100%;
}
#school-detail .top-area .txt-block .intro-title-box p {
  	font-size: 1.8rem;
  	line-height: 1.8;
  	font-weight: 700;
  	text-align: center;
  	color: #33b371;
}

/*school-intro02-box*/
#school-detail .top-area .txt-block .school-intro02-box {
  	margin: 0 0 20px;
}
#school-detail .top-area .txt-block .school-intro02-box .intro02-titl {
  	text-align: center;
  	font-size: 1.8rem;
	font-weight: 500;
}
/*circle-box*/
#school-detail .top-area .txt-block ul.circle-box {
  	display: flex;
  	justify-content: space-between;
  	margin: 30px 0 30px;
}
#school-detail .top-area .txt-block ul.circle-box li {
  	position: relative;
  	display: inline-block;
  	width: 110px;
  	height: 110px;
  	border-radius: 50%;
  	background: #ff7934;
  	color: #fff;
  	font-size: 1.5rem;
  	line-height: 1.5;
	font-weight: 500;
}
#school-detail .top-area .txt-block ul.circle-box li span {
  	position: absolute;
  	display: inline-block;
  	left: 0;
  	top: 50%;
  	-webkit-transform: translateY(-50%);
  	transform: translateY(-50%);
  	width: 110px;
  	text-align: center;
}

/*school-intro-box ・志望校対策を強化したい...*/
#school-detail .top-area .txt-block .school-intro-box {
  	display: flex;
  	justify-content: space-between;
}
#school-detail .top-area .txt-block .school-intro-box .intro-txt {
  	width: calc(100% - 230px);
}
#school-detail .top-area .txt-block .school-intro-box .intro-txt p.txt {
  	font-size: 1.6rem;
  	color: #333;
  	font-weight: 500;
	padding-left:1em;
	text-indent:-1em;
	margin: 10px 0 0 0;
}
#school-detail .top-area .txt-block .school-intro-box .intro-img {
  	width: 210px;
}
#school-detail .top-area .txt-block .school-intro-box .intro-img img {
  	width: 100%;
  	object-fit: cover;
  	object-position: center;
}

.ani-line.m-ore {
    background-image: linear-gradient(to right, #ffba96 0%, #ffba96 70%, transparent 70%);
}
.ani-line.m-blue {
    background-image: linear-gradient(to right, #abc5e3 0%, #abc5e3 70%, transparent 70%);
}

/*20250318 かごしま個人塾の強み*/
#school-detail .school-intro-strong .intro-strong-title {
	position: relative;
    display: block;
    padding:0 50px;
	margin: 30px 0 0;
	font-size: 2.2rem;
	font-weight: 700;
    text-align:center;
	color: #33b371;
}
#school-detail .school-intro-strong .intro-strong-title:before,
#school-detail .school-intro-strong .intro-strong-title:after{
    position:absolute;
    top:calc(50% - 5px);
    width: 150px;
    height: 10px;
    content:'';
    border-top:solid 3px #33b371;
}
#school-detail .school-intro-strong .intro-strong-title:before{
    left:0;
}
#school-detail .school-intro-strong .intro-strong-title:after{
    right:0;
}
#school-detail .school-intro-strong  ul {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
#school-detail .school-intro-strong  ul li {
	width: calc( ( 100% - 30px ) / 4 );
}
#school-detail .school-intro-strong  ul li img {
	margin: 20px auto 10px;
	width: 45px;
	object-fit: cover;
	object-position: center;
	display: flex;
	justify-content: center;
}
#school-detail .school-intro-strong  ul li p.icon-txt {
	font-size: 1.5rem;
	font-weight: 700;
    text-align: center;
    color: #33b371;
	line-height: 1.4;
}
#school-detail .school-intro-strong  ul li p.icon-txt.icon-txt04 {
	padding: 10px 0 0;
}

/*cv-btn school-intro*/
#school-detail .top-area .txt-block .cv-btn.school-intro {
  width: 100%;
  margin: 0 auto 0;
  padding: 0 20px;
}
#school-detail .top-area .txt-block .cv-btn.school-intro a {
  width: 500px;
  height: 82px;
  background: #f05f26;
  border-radius: 5px;
  box-shadow: 0 5px #a04529;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin: 20px auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#school-detail .top-area .txt-block .cv-btn.school-intro a i {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #f05f26;
  width: 24px;
  height: 24px;
  right: 10px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#school-detail .top-area .txt-block .cv-btn.school-intro a::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #ffe2a8 0%, #f3ac62 100%);
  border-radius: 14px 14px 14px 4px;
  top: -8px;
  left: -15px;
  z-index: 1;
}

/*20250723 追記*/
#school-detail .top-area .txt-block .cv-btn.school-intro.flow a {
	background: #33b371;
	box-shadow: 0 5px #175f3a;
}
#school-detail .top-area .txt-block .cv-btn.school-intro.flow a i {
	color: #33b371;
}
#school-detail .top-area .txt-block .cv-btn.school-intro.flow a::before {
	display: none;
}

@media screen and (max-width: 768px) {
	#school-detail .top-area {
		padding: 0;
	}
	
	#school-detail .top-area .txt-block {
		width: 100%;
		padding-bottom: 20px;
	}
	#school-detail .top-area .txt-block .title-block {
        height: 100px;
        margin: 0 0 30px;
	}
	#school-detail .top-area .txt-block .title-block .title-sub {
		font-size: 1.5rem;
		padding: 0 0 5px 0;
	}
	#school-detail .top-area .txt-block .title-block .school-title {
		padding: 0 0 0;
		text-align: center;
	}
	
	#school-detail .top-area .catch-sub {
		font-size: 1.6rem;
	}
	#school-detail .top-area .txt-block .catch {
        font-size: 2rem;
        margin: 15px 0 15px;
    }
	#school-detail .top-area .txt-block .txt.catch-txt {
		
	}
	
	/*こんなお悩みと相性バッチリ*/
	#school-detail .top-area .txt-block .intro-title-box {
		margin: 20px 0;
	}
	#school-detail .top-area .txt-block .intro-title-box p {
		font-size: 1.5rem;
	}
	
	/*school-intro02-box*/
	#school-detail .top-area .txt-block .school-intro02-box {
		margin: 0 0 10px;
	}
	#school-detail .top-area .txt-block .school-intro02-box .intro02-titl {
		font-size: 1.3rem;
	}
	/*circle-box*/
	#school-detail .top-area .txt-block ul.circle-box {
		margin: 20px 0 20px;
	}
	#school-detail .top-area .txt-block ul.circle-box li {
	  	width: 82px;
	  	height: 82px;
		font-size: 1.2rem;
	}
	#school-detail .top-area .txt-block ul.circle-box li span {
		width: 82px;
	}
	
	/*school-intro-box ・志望校対策を強化したい...*/
	#school-detail .top-area .txt-block .school-intro-box {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 0 0 40px;
	}
	#school-detail .top-area .txt-block .school-intro-box .intro-txt {
		width: calc( 100% - 140px );
	}
	#school-detail .top-area .txt-block .school-intro-box .intro-txt p.txt {
		font-size: 1.5rem;
	}
	#school-detail .top-area .txt-block .school-intro-box .intro-img {
		width: 130px;
	}
	#school-detail .top-area .txt-block .school-intro-box .intro-img img {
		
	}
	
	/*20250318 かごしま個人塾の強み*/
	#school-detail .school-intro-strong .intro-strong-title {
		margin: 20px 0 0;
		font-size: 2rem;
	}
	#school-detail .school-intro-strong .intro-strong-title:before,
	#school-detail .school-intro-strong .intro-strong-title:after{
		width: 80px;
	}
	#school-detail .school-intro-strong  ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 10px 5px;
	}
	#school-detail .school-intro-strong  ul li {
		width: calc( ( 100% - 15px ) / 4 );
	}
	#school-detail .school-intro-strong  ul li img {
		margin: 20px auto 10px;
		width: 40px;
	}
	#school-detail .school-intro-strong  ul li p.icon-txt {
		font-size: 1.2rem;
	}
	
	/*cv-btn school-intro*/
	#school-detail .top-area .txt-block .cv-btn.school-intro {
		width: 100%;
        margin: 0 auto;
        padding: 0 20px;
	}
	#school-detail .top-area .txt-block .cv-btn.school-intro a {
		width: 100%;
        height: 69px;
        font-size: 1.8rem;
        top: -10px;
	}
	#school-detail .top-area .txt-block .cv-btn.school-intro a i {
        
    }
	#school-detail .top-area .txt-block .cv-btn.school-intro a::before {
		width: 53px;
        height: 52px;
        top: -15px;
        left: -15px;
	}
	
}
/* 20250114 修正ver top-area end */

/*    news-area
-------------------------------------------------------------- */

.news-area {
	padding: 30px 0 80px;
}

#top .news-area {
	padding: 0 0 80px;
}

.news-title-wrap {
	display: flex;
	justify-content: space-between;
	margin: 0 0 30px;
}

.news-title {
	font-size: 2.1rem;
	font-weight: 500;
}

.news-wrap {
	flex: 1;
}


/* news-list */

.news-list {
	position: relative;
	overflow: hidden;
}

.news-list li {
	padding: 20px 170px 20px 170px;
}

.news-list li:nth-of-type(odd) {
	background: #f8f8f8;
}

.news-list a {
	display: flex;
	width: 100%;
}

.news-list .date {
	flex-shrink: 0;
	font-size: 1.6rem;
	margin: 0 30px 0 0;
}

.news-list .cate {
	width: 120px;
	display: inline-block;
	font-size: 1.2rem;
	color: #4dca63;
	border: 1px solid #4dca63;
	text-align: center;
	padding: 2px 13px;
	margin: 0 25px 0 0;
}

.news-list .title {
	width: 640px;
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.8;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/*20260120 TOPページお知らせ箇所*/
#top .news-list a {
	flex-wrap: wrap;
	gap: 10px 0;
}
#top .news-list .cate {
	margin: 0 5px 0 0;
}
#top .news-list .date {
	margin: 0 15px 0 0;
}
/*TOPページお知らせ箇所 end*/


/* news-btn */

.news-btn {
	flex-shrink: 0;
	margin: 0 20px 0 0;
}

.news-btn a {
	display: block;
}

.news-btn a::before {
	display: inline-block;
	content: "\f105";
	color: #888;
	font: 800 1.6rem / 1 "Font Awesome 5 Free";
	margin: 0 2px 0 0;
}

@media screen and (max-width: 768px) {
	.news-area {
		padding: 30px 20px 30px;
	}

	#top .news-area {
		padding: 30px 20px 40px;
	}

	.news-title-wrap {
		margin: 0 0 10px;
	}

	.news-title {
		font-size: 1.8rem;
	}

	.news-wrap {
		display: block;
	}

	/* .news-list */
	.news-list {
		position: static;
		overflow: initial;
	}

	.news-list li {
		padding: 0;
	}

	.news-list li:nth-child(n + 2) {
		display: none;
	}

	.news-list li:nth-of-type(odd) {
		background: #fff;
	}

	.news-list a {
		display: block;
		width: 100%;
	}

	.news-list .date {
		display: inline-block;
		margin: 0 10px 0 0;
	}

	.news-list .cate {
		padding: 0 15px;
		margin: 0 5px 0 0;
	}

	.news-list .title {
		width: 100%;
		line-height: 1.5;
		overflow: initial;
		white-space: normal;
		margin: 8px 0 0;
	}

	.news-btn a::before {
		font-size: 1.8rem;
	}
	
	/*20260120 TOPページお知らせ箇所*/
	#top .news-list .cate {
		margin: 0 5px 5px 0;
	}
	#top .news-list .date {
		width: 100%;
		margin: 0 10px 0 0;
	}
	/*TOPページお知らせ箇所 end*/
	
}


/*    case-area
-------------------------------------------------------------- */

#school-detail .case-area .img-box {
	/*
	background: url(/vendor/juku-demo/control/img/bg-school1.jpg) no-repeat center top / 100% auto;
	width: 100%;
	height: 450px;
	*/
	text-align: center;
}

#school-detail .case-area .img-box img {
	width: 100%;
}

#school-detail .case-area .case-title {
	font-size: 3.2rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	margin: 0 0 30px;
	position: relative;
}

#school-detail.support-b .case-area .case-title {
	margin: 80px 0 30px;
}

#school-detail .case-area .case-title::before {
	content: "";
	background: url(/vendor/juku-demo/control/img/gokaku-icon.png) no-repeat;
	background-size: contain;
	width: 100px;
	height: 100px;
	display: inline-block;
	position: absolute;
	top: -35px;
	margin: 0 0 0 -120px;
}

#school-detail .case-area .copy {
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	background: #32b372;
	color: #fff;
	padding: 10px;
}

#school-detail .case-area .txt-block {
	background: #fff;
	padding: 40px 0 0;
}

#school-detail .case-area .txt-block .case-list-wrapper {
	display: flex;
	/*
	justify-content: space-between;
	*/
	justify-content: center;
	padding: 0 0 50px;
}

#school-detail .case-area .txt-block .case-list {
	/*padding: 0 38px;*/
	padding: 0 28px;
}

#school-detail .case-area .txt-block .case-list li {
	line-height: 1.8;
	font-size: 1.5rem;
}

#school-detail .case-area .txt-block .case-list li.title {
	font-size: 1.8rem;
	font-weight: 500;
	color: #32b372;
	padding: 0 0 5px;
}

#school-detail .case-area .txt-block .case-list.no-title {
	padding-top: 37px;
}


@media screen and (max-width: 768px) {
	#school-detail .case-area {}

	#school-detail .case-area .img-box {
		/*
		background: url(/vendor/juku-demo/control/img/bg-school1-sp.jpg) no-repeat center top / cover;
		height: 120px;
		*/
	}

	#school-detail .case-area .case-title {
		font-size: 2.2rem;
		text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px, #fff 1px -1px 10px, #fff -1px -1px 10px;
		margin: 0 0 20px 0;
		padding: 0 0 0 90px;
		text-align: left;
	}

	#school-detail.support-b .case-area .case-title {
		margin: 40px 0 20px;
	}

	#school-detail .case-area .case-title::before {
		width: 70px;
		height: 70px;
		top: -10px;
		left: 10px;
		margin: 0;
		z-index: 1;
	}

	#school-detail .case-area .copy {
		font-size: 1.8rem;
		margin: 0;
		padding: 15px 20px;
		text-align: left;
	}

	#school-detail .case-area .txt-block {
		padding: 20px 0 20px;
		margin: 0 20px;
	}

	#school-detail .case-area .txt-block .case-list-wrapper {
		width: 100%;
		display: block;
		padding: 0;
	}

	#school-detail .case-area .txt-block .case-list {
		padding: 0;
		margin: 0 0 10px;
	}

	#school-detail .case-area .txt-block .case-list li {
		display: inline;
	}

	#school-detail .case-area .txt-block .case-list li::after {
		content: "､";
	}

	#school-detail .case-area .txt-block .case-list li:last-child::after,
	#school-detail .case-area .txt-block .case-list li.title::after {
		content: "";
	}

	#school-detail .case-area .txt-block .case-list li.title {
		font-size: 1.7rem;
		display: block;
		padding: 0 0 0;
	}

	#school-detail .case-area .txt-block .case-list.no-title {
		padding-top: 0;
		margin: -10px 0 10px;
	}

	/*
	#school-detail .case-area .txt-block .case-list.univ {
		width: 50%;
		float: left;
	}
	*/
}


/*    message-area
-------------------------------------------------------------- */

#school-detail .message-area {
	background: #f5fbf8;
	background: url(/vendor/juku-demo/control/img/school-message-bg.jpg) no-repeat right bottom / cover;
	padding: 60px 0;
}

#school-detail .message-area .title-wrapper {
	display: flex;
	justify-content: space-between;
	margin: 40px 0 0;
}

#school-detail .message-area .catch-block {
	width: 750px;
	margin: 20px 0 0;
}

#school-detail .message-area .catch-block .section-catch {
	font-weight: bold;
	line-height: 1.6;
	margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
	#school-detail .message-area {
		padding: 40px 20px;
		background: url(/vendor/juku-demo/control/img/school-message-bg-sp.jpg) #F6F7FB no-repeat right top / 100% auto;
	}

	#school-detail .message-area .title-wrapper {
		display: block;
		margin: 20px 0 0;
	}

	#school-detail .message-area .catch-block {
		width: 100%;
		margin: 20px 0 0;
	}

	#school-detail .message-area .catch-block .section-catch {
		margin: 0 0 15px;
	}
}

/*    about-area
-------------------------------------------------------------- */

#school-detail .about-area {
	margin: 80px 0;
}

#school-detail .about-area .inner h3 {
	font-size: 3.2rem;
	text-align: center;
	margin: 0 0 30px;
}

#school-detail .about-area .inner h3 span {
	line-height: 1.1;
	font-size: 3.2rem;
	background: #32b372;
	color: #fff;
	padding: 6px;
	display: inline-block;
	margin: 0 2px;
}

#school-detail .about-area .inner h3 span.last {
	margin: 0 10px 0 2px;
}

#school-detail .about-area .inner .headhing-under-txt {
	font-size: 1.8rem;
	margin: 0 0 40px 0;
	padding: 0;
	text-align: center;
}

#school-detail .block-caption {
	display: inline-block;
	width: auto;
	background: #92c527;
	color: #fff;
	font-weight: 500;
	border-radius: 50px;
	text-align: center;
	padding: 10px 30px;
	position: relative;
	top: 25px;
	font-size: 2rem;
	z-index: 1;
}

#school-detail .block-caption img {
	margin: 0 10px 0 0;
	vertical-align: middle;
}

#school-detail .block-caption::before {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-top: 10px solid #92c527;
}

#school-detail .about-area .bg {
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	height: 500px;
}

#school-detail .about-area .bg.img01 {
	background-image: url(/vendor/juku-demo/control/img/sch-about-bg06.jpg);
	height: 400px;
}

#school-detail .about-area .bg.img02 {
	background-image: url(/vendor/juku-demo/control/img/sch-about-bg06.jpg);
	height: 400px;
}

#school-detail .about-area .bg.img03 {
	background-image: url(/vendor/juku-demo/control/img/sch-about-bg03.jpg);
}

#school-detail .about-area .bg.img04 {
	background-image: url(/vendor/juku-demo/control/img/sch-about-bg04.jpg);
}

#school-detail .about-area .bg.img05 {
	background-image: url(/vendor/juku-demo/control/img/sch-about-bg01.jpg);
}

#school-detail .about-area .bg-white {
	background-color: #fff;
	margin: -100px 0 0 calc((100% - 1300px) / 2);
	border-radius: 40px 0 0 0;
	padding: 60px 0 0;
}

#school-detail .about-area .bg-white .service-txt {
	display: block;
	font-weight: 700;
	color: #94949e;
	color: #33b371;
	font-size: 2.4rem;
	margin: 0 0 10px 0;
	padding: 0;
}

#school-detail .about-area .bg-white .service-txt i {
	color: #c7b476;
	color: #33b371;
	font-size: 2rem;
	padding: 0 5px 0 0;
}

#school-detail .about-area .bg-white h3 {
	/*font-size: 3.2rem;*/
	font-size: 2.9rem;
	font-weight: bold;
	margin: 0;
	padding: 0;
	line-height: 1.5;
	text-align: left;
}

#school-detail .about-area .txt-box {
	padding: 0 0 30px;
}

#school-detail .about-area .txt-box ul {
	display: flex;
	justify-content: space-between;
}

#school-detail .about-area .txt-box ul li {
	width: 360px;
}

#school-detail .about-area .txt-box ul li h3 {
	margin: 0 0 20px;
}

#school-detail.support-b .about-area .txt-box ul li h3,
#school-detail.classroom-b .about-area .txt-box ul li h3,
#school-detail.support-a .about-area .txt-box ul li h3 {
	min-height: 150px;
}

@media screen and (max-width: 768px) {

	#school-detail .about-area {
		margin: 40px 0;
	}

	#school-detail .about-area .inner h3 {
		font-size: 2.2rem;
		line-height: 3.6rem;
		margin: 0 0 10px 0;
		padding: 0 20px;
	}

	#school-detail .about-area .inner h3 span {
		font-size: 2.2rem;
		padding: 6px;
		margin: 0 2px 4px;
	}

	#school-detail .about-area .inner h3 span.last {
		margin: 0 5px 0 2px;
	}

	#school-detail .about-area .inner .headhing-under-txt {
		margin: 0;
		padding: 0 20px;
		text-align: left;
		font-size: 1.6rem;
	}

	#school-detail .block-caption {
		display: block;
		width: 90%;
		font-size: 1.8rem;
		line-height: 1.4;
		margin: 0 auto;
		top: 20px;
	}

	#school-detail .block-caption img {
		display: none;
	}

	#school-detail .block-caption::before {
		top: 98%;
	}

	#school-detail .about-area .bg {
		height: 250px;
	}

	#school-detail .about-area .bg-white {
		margin: -50px 0 20px 20px;
		border-radius: 20px 0 0;
		padding: 30px 0 0;
	}

	#school-detail .about-area .bg-white .txt-box {
		padding: 0 15px 0 0;
		display: block;
		width: 100%;
		overflow-x: scroll;
	}

	#school-detail .about-area .bg-white .service-txt {
		margin: 0 0 5px 0;
		font-size: 2rem;
	}

	#school-detail .about-area .bg-white .service-txt i {
		font-size: 1.8rem;
	}

	#school-detail .about-area .bg-white h3 {
		font-size: 2.4rem;

	}

	#school-detail .about-area .txt-box {
		padding: 0 0 0;
	}

	#school-detail .about-area .txt-box ul {
		/* display: block; */
		width: 1000px;
		gap: 20px;
	}

	#school-detail .about-area .txt-box ul li {
		width: 100%;
		margin: 30px 0 0;
	}

	#school-detail .about-area .txt-box ul li h3 {
		margin: 0 0 10px;
		padding: 0;
	}

	#school-detail.support-b .about-area .txt-box ul li h3,
	#school-detail.classroom-b .about-area .txt-box ul li h3,
	#school-detail.support-a .about-area .txt-box ul li h3 {
		min-height: initial;
	}

}



/*    instractor-area
-------------------------------------------------------------- */

#school-detail .instractor-area {
	background: url(/vendor/juku-demo/control/img/bg-gray.png) no-repeat left / cover;
	padding: 70px 0 0;
}

#school-detail .instractor-area .section-title {
	margin: 0 0 75px;
}

#school-detail .instractor-area {}

#school-detail .block-wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 0 auto;
}

#school-detail .instractor-area .block {
	width: 550px;
	margin: 0 0 50px;
}

#school-detail .namebox {
	color: #4e5c6b;
	font-weight: bold;
	line-height: 1.2;
	text-align: center;
	margin: 0 0 15px;
}

#school-detail .name {
	font-size: 2.8rem;
}

#school-detail .name2 {
	font-size: 1.4rem;
}

#school-detail .catch {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 15px;
	text-align: center;
}

#school-detail .img-area {
	text-align: center;
}

#school-detail .img-area img {
	width: 400px;
	margin: 0 auto 20px;
}

@media screen and (max-width: 768px) {
	#school-detail .instractor-area {
		padding: 30px 0 0;
	}
	#school-detail .instractor-area .inner {
		padding: 0 20px 0;
	}

	#school-detail .instractor-area .section-title {
		margin: 0 0 30px;
	}

	#school-detail .block-wrapper {
		display: block;
	}

	#school-detail .instractor-area .block {
		width: 100%;
		margin: 0 0 40px;
	}

	#school-detail .namebox {
		text-align: left;
		padding: 50px 0 0;
	}

	#school-detail .name {
		font-size: 2.0rem;
	}

	#school-detail .name2 {
		font-size: 1.4rem;
	}

	#school-detail .catch {
		font-size: 1.8rem;
		text-align: left;
	}

	#school-detail .img-area {
		text-align: inherit;
		width: 150px;
		float: left;
		margin: 0 20px 0 0;
	}

	#school-detail .message-area .img-area {
		/*width: 200px;*/
		width: 100%;
		margin: 0 auto;
		display: block;
		float: none;
	}

	#school-detail .course-area .img-area {
		width: 100%;
		margin: 0 0 15px 0;
	}

	#school-detail .img-area img {
		width: 150px;
		margin: 0 15px 15px 0;
	}

	#school-detail .message-area .img-area img {
		/*width: 200px;*/
		width: 100%;
		margin: 0;
	}

	#school-detail .course-area .img-area img {
		width: 100%;
		margin: 0 0 15px 0;
	}
}


/*    course-area
-------------------------------------------------------------- */

#school-detail .course-area {
	background: #f9f9f9;
	background: url(/vendor/juku-demo/control/img/school-course-bg.jpg) #f5f5f5 no-repeat left top / 100% auto;
	padding: 80px 0 0;
}

#school-detail.classroom-a .course-area {
	background: url(/vendor/juku-demo/control/img/school-course-bg-01.jpg) #f5f5f5 no-repeat left top / 100% auto;
}

#school-detail.classroom-b .course-area {
	background: url(/vendor/juku-demo/control/img/school-course-bg-02.jpg) #f5f5f5 no-repeat left top / 100% auto;
}

#school-detail.classroom-c .course-area {
	background: url(/vendor/juku-demo/control/img/school-course-bg-03.jpg) #f5f5f5 no-repeat left top / 100% auto;
}

#school-detail.support-b .course-area {
	background: url(/vendor/juku-demo/control/img/school-course-bg-03.jpg) #f5f5f5 no-repeat left top / 100% auto;
}

#school-detail .course-area .course-title {
	margin: 0 0 40px;
}

#school-detail .course-area .section-title span.style1 {}

#school-detail .course-area .section-catch {
	margin: 0 0 80px;
	text-shadow:
		1px 1px 7px rgba(255, 255, 255, 0.79),
		-1px 1px 7px rgba(255, 255, 255, 0.79),
		1px -1px 7px rgba(255, 255, 255, 0.79),
		-1px -1px 7px rgba(255, 255, 255, 0.79),
		1px 0px 7px rgba(255, 255, 255, 0.79),
		0px 1px 7px rgba(255, 255, 255, 0.79),
		-1px 0px 7px rgba(255, 255, 255, 0.79),
		0px -1px 7px rgba(255, 255, 255, 0.79);
}

#school-detail .course-area .catch {
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 20px;
}

#school-detail .course-area .detail-block-title {
	background: #f7f4f1;
	font-size: 2.2rem;
	font-weight: 500;
	line-height: 1.6;
	padding: 15px 40px;
}

#school-detail .course-area .detail-block-txt {
	display: flex;
	background: #fff;
	padding: 40px 40px 20px;
	margin: 0 0 50px;
}

#school-detail .course-area .detail-block-txt .list {
	width: 50%;
}

#school-detail .course-area .detail-block-txt .list li {
	font-size: 1.8rem;
	line-height: 1.6;
	margin: 0 0 20px;
	padding: 0 0 0 40px;
	position: relative;
}

#school-detail .course-area .detail-block-txt .list+.list {
	margin: 0 0 0 60px;
}

#school-detail .course-area .detail-block-txt .list li::before {
	content: "";
	width: 25px;
	height: 25px;
	background: url(/vendor/juku-demo/control/img/icon-check2.png) no-repeat center;
	background-size: 25px auto;
	position: absolute;
	top: 0;
	left: 0;
}


/* コース */
#school-detail .coursebox-title {
	font-size: 3.2rem;
	font-weight: 600;
	text-align: center;
	color: #4e5c6b;
	/*padding: 60px 0 40px;*/
	padding: 40px 0 40px;
	line-height: 1.5;
}

#school-detail .coursebox-title.style2 {
	text-align: left;
}

#school-detail .coursebox-title span {
	position: relative;
	/*right: -6px;*/
}

/*湘南台本部*/
#school-detail.classroom-a .coursebox-title span.style1 {
	display: inline-block;
}
#school-detail.classroom-a .coursebox-title span.style2,
#school-detail.classroom-a .coursebox-title span.style3,
#school-detail.classroom-a .coursebox-title span.style4,
#school-detail.classroom-a .coursebox-title span.style5,
#school-detail.classroom-a .coursebox-title span.style6{
	display: none;
}
/*藤沢*/
#school-detail.classroom-b .coursebox-title span.style2 {
	display: inline-block;
}
#school-detail.classroom-b .coursebox-title span.style1,
#school-detail.classroom-b .coursebox-title span.style3,
#school-detail.classroom-b .coursebox-title span.style4,
#school-detail.classroom-b .coursebox-title span.style5,
#school-detail.classroom-b .coursebox-title span.style6{
	display: none;
}
/*上大岡*/
#school-detail.classroom-c .coursebox-title span.style3 {
	display: inline-block;
}
#school-detail.classroom-c .coursebox-title span.style1,
#school-detail.classroom-c .coursebox-title span.style2,
#school-detail.classroom-c .coursebox-title span.style4,
#school-detail.classroom-c .coursebox-title span.style5,
#school-detail.classroom-c .coursebox-title span.style6{
	display: none;
}
/*平塚*/
#school-detail.support-a .coursebox-title span.style4 {
	display: inline-block;
	right: 0;
}
#school-detail.support-a .coursebox-title span.style1,
#school-detail.support-a .coursebox-title span.style2,
#school-detail.support-a .coursebox-title span.style3,
#school-detail.support-a .coursebox-title span.style5,
#school-detail.support-a .coursebox-title span.style6{
	display: none;
}
/*橋本*/
#school-detail.support-b .coursebox-title span.style5 {
	display: inline-block;
	right: unset;
}
#school-detail.support-b .coursebox-title span.style1,
#school-detail.support-b .coursebox-title span.style2,
#school-detail.support-b .coursebox-title span.style3,
#school-detail.support-b .coursebox-title span.style4,
#school-detail.support-b .coursebox-title span.style6{
	display: none;
}

#school-detail.support-c .coursebox-title span.style6 {
	display: inline-block;
	right: unset;
}
#school-detail.support-c .coursebox-title span.style1,
#school-detail.support-c .coursebox-title span.style2,
#school-detail.support-c .coursebox-title span.style3,
#school-detail.support-c .coursebox-title span.style4,
#school-detail.support-c .coursebox-title span.style5{
	display: none;
}

#school-detail .course-area .course-block {
	background: #fff;
	display: flex;
	justify-content: space-between;
	/*padding: 60px;*/
	/*margin: 0 0 50px;*/
	padding: 60px 60px 150px;
	margin: 0 0 80px;
	position: relative;
}

#school-detail .course-area .course-block.course-block-last {
	margin: 0;
	padding: 60px;
}

#school-detail .course-area .course-block .txt-area .txt-inner {
	margin: 0 0 50px;
}

#school-detail .course-area .course-block .txt-area .txt-inner:last-of-type {
	margin: 0;
}

#school-detail .course-area .course-block .course-title {
	color: #c65252;
	font-size: 2.7rem;
	font-weight: 600;
	line-height: 1.5;
	margin: 0 0 20px;
}

#school-detail .course-area .course-block .course-title p {
	font-size: 1.2rem;
}

/* 中学受験 */

#school-detail .course-area .course-block .course-title.chuugaku-juken {
	color: #CC6F38;
}

/* 中学生 */

#school-detail .course-area .course-block .course-title.junior {
	color: #42a79a;
}


/* 高校生 */

#school-detail .course-area .course-block .course-title.high {
	color: #5289c6;
}

/* 20260529 学習ラウンジ追加 */

#school-detail .course-area .course-block .course-title.lounge {
	color: var(--lounge);
}
#school-detail .course-area .course-block .detail-caption.lounge {
    padding: 15px 25px 15px 55px;
}


#school-detail .course-area .course-block .detail-caption {
	width: 600px;
}

#school-detail .course-area .course-block .img-area {
	margin: 0 0 0 40px;
}

@media screen and (max-width: 768px) {

	#school-detail .coursebox-title {
		font-size: 2.0rem;
		/*padding: 30px 0 20px;*/
		padding: 10px 0 20px;
	}

	#school-detail .course-area {
		background-size: auto 150px;
		padding: 30px 20px 0;
		background-color: #f5f5f5;
	}

	#school-detail .course-area .section-title {
		margin: 0 0 80px;
	}

	#school-detail .course-area .section-catch {
		margin: 0 0 20px;
	}

	#school-detail .course-area .catch {
		font-size: 2.2rem;
		margin: 0 0 10px;
	}

	#school-detail .course-area .txt {
		font-weight: 400;
	}

	#school-detail .course-area .detail-block-title {
		font-size: 1.8rem;
		padding: 15px 15px 0;
		background: #fff;
	}

	#school-detail .course-area .detail-block-txt {
		display: block;
		padding: 10px 15px 10px;
		margin: 0 0 20px;
	}

	#school-detail .course-area .detail-block-txt .list {
		width: 100%;
	}

	#school-detail .course-area .detail-block-txt .list li {
		font-size: 1.7rem;
		margin: 0 0 10px;
		padding: 0 0 0 30px;
	}

	#school-detail .course-area .detail-block-txt .list+.list {
		margin: 20px 0 0;
	}

	#school-detail .course-area .detail-block-txt .list li::before {
		width: 20px;
		height: 20px;
		background: url(/vendor/juku-demo/control/img/icon-check2.png) no-repeat center / 100%;
		top: 5px;
	}

	/* コース */
	#school-detail .course-area .course-block {
		flex-wrap: wrap;
		/*padding: 20px 15px 30px;*/
		padding: 20px 15px 120px;
		margin: 0 0 20px;
	}
	#school-detail .course-area .course-block.course-block-last {
		margin: 0;
		padding: 20px 15px 30px;
	}

	#school-detail .course-area .course-block .txt-area {
		clear: both;
	}

	#school-detail .course-area .course-block .txt-area .txt-inner {
		margin: 0 0 30px;
	}

	#school-detail .course-area .course-block .course-title {
		font-size: 2.3rem;
	}

	#school-detail .course-area .course-block .detail-caption.lounge {
		padding: 25px 10px 20px;
	}

	#school-detail .course-area .course-block .detail-caption {
		width: 100%;
	}

	#school-detail .course-area .course-block .img-area {
		margin: 0 0 20px;
		text-align: center;
	}
}


/*    environment-area
-------------------------------------------------------------- */

#school-detail .env-area {
	background: url(/vendor/juku-demo/control/img/bg-school-env.jpg) no-repeat top center;
}

#school-detail .env-area .section-title {
	margin: 0 0 50px;
}

#school-detail .env-area .catch-area {
	text-align: center;
}

#school-detail .env-area .catch-area .catch {
	font-size: 7rem;
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 30px;
}

#school-detail .env-area .catch-area .sub-catch {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.4;
	margin: 0 0 25px;
}

#school-detail .env-area .catch-area .txt-block {
	margin: 0 0 -30px;
	padding: 0 0 257px;
}

#school-detail.lounge .env-area .catch-area .txt-block {
	padding: 0 0 105px;
}

#school-detail .env-area .catch-area .txt-block .txt {
	margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
	#school-detail .env-area {
		background: url(/vendor/juku-demo/control/img/bg-school-env.jpg) no-repeat top 50px center / 100%;
	}

	#school-detail .env-area .section-title {
		margin: 0 0 50px;
	}

	#school-detail .env-area .catch-area {
		text-align: center;
	}

	#school-detail .env-area .catch-area .catch {
		font-size: 3rem;
		text-shadow: #fff 1px 1px 6px, #fff -1px 1px 6px, #fff 1px -1px 6px, #fff -1px -1px 6px;
		margin: 0 0 50px;
	}

	#school-detail .env-area .catch-area .sub-catch {
		font-size: 1.8rem;
		text-shadow: #fff 1px 1px 6px, #fff -1px 1px 6px, #fff 1px -1px 6px, #fff -1px -1px 6px;
		margin: 0 0 15px;
		text-align: left;
	}

	#school-detail .env-area .catch-area .txt-block {
		text-shadow: #fff 1px 1px 6px, #fff -1px 1px 6px, #fff 1px -1px 6px, #fff -1px -1px 6px;
		margin: 0;
		padding: 0;
	}
	#school-detail.lounge .env-area .catch-area .txt-block {
		padding: 0;
	}

	#school-detail .env-area .catch-area .txt-block .txt {
		font-size: 1.6rem;
		margin: 0 0 10px;
		text-align: left;
	}

	#school-detail .env-area .slide-box {
		margin: 20px 0;
		width: 100%;
	}
}


/*    overview-area
-------------------------------------------------------------- */

#school-detail .overview-area {
	margin: 0 0 60px;
}

#school-detail .overview-area .section-title {
	margin: 0 0 35px;
}

#school-detail .overview-area .wrapper {
	display: flex;
	justify-content: space-between;
}

#school-detail .overview-area .wrapper .table-area {
	width: 600px;
}

#school-detail .overview-area .wrapper .table {
	border-top: none;
}

#school-detail .overview-area .wrapper .table th {
	width: 110px;
	font-weight: 500;
	padding: 20px 0;
}

#school-detail .overview-area .wrapper .table span.txt-s {
	font-size: 1.3rem;
}

#school-detail .overview-area .wrapper .table td {
	padding: 20px 25px 20px 0;
}

#school-detail .overview-area .mapbox {
	width: 550px;
}

@media screen and (max-width: 768px) {
	#school-detail .overview-area {
		margin: 0 0 20px;
	}

	#school-detail .overview-area .section-title {
		margin: 0 0 30px;
	}

	#school-detail .overview-area .wrapper {
		display: block;
	}

	#school-detail .overview-area .wrapper .table-area {
		width: 100%;
	}

	#school-detail .overview-area .wrapper .table th {
		width: 100px;
		padding: 15px 0;
	}

	#school-detail .overview-area .wrapper .table td {
		padding: 15px 0;
	}

	#school-detail .overview-area .mapbox {
		width: 100%;
	}

	#school-detail .overview-area .map {
		width: 100%;
		height: 0;
		overflow: hidden;
		padding-bottom: 56.25%;
		position: relative;
	}

	#school-detail .overview-area .map iframe {
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
	}
}


/*    area-area
-------------------------------------------------------------- */

#school-detail .area-area .section-title {
	margin: 0 0 70px;
}

#school-detail .area-area .area-list li {
	width: 100%;
}

#school-detail .area-area .area-list li .list-tag {
	width: 115px;
	height: 30px;
	background: #33b371;
	border-radius: 50px;
	text-align: center;
	color: #fff;
	display: block;
	float: left;
	margin: 5px 40px 0 0;
}


/* 小学校 */

#school-detail .area-area .area-list li.elementary .list-tag {
	background: #c65252;
	border: none;
}

/* 中学受験 */

#school-detail .area-area .area-list li.chuugaku-juken .list-tag {
	background: #CC6F38;
	border: none;
}


/* 中学校 */

#school-detail .area-area .area-list li.junior .list-tag {
	background: #42a79a;
	border: none;
}


/* 高校 */

#school-detail .area-area .area-list li.high .list-tag {
	background: #5289c6;
	border: none;
}


/* 中高一貫 */

#school-detail .area-area .area-list li.junior-and-high .list-tag {
	background: #c765ac;
	border: none;
}

#school-detail .area-area .area-list li .list-txt {
	width: calc(100% - 155px);
	float: left;
	font-weight: 400;
	margin: 0 0 35px;
}

#school-detail .area-area .message {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.8;
	text-align: center;
	margin: 0 0 80px;
}

@media screen and (max-width: 768px) {
	#school-detail .area-area {
		padding-top: 30px;
	}

	#school-detail .area-area .section-title {
		margin: 0 0 30px;
	}

	#school-detail .area-area .wrap-list-tag {
		width: 100%;
		height: auto;
		float: none;
		padding: 8px;
		margin: 0 0 8px;
		background: #33b371;
		border-radius: 50px;
		text-align: center;
		color: #fff;
		display: block;
	}

	#school-detail .area-area .area-list li .list-tag {
		width: 100%;
		height: auto;
		float: none;
		padding: 0;
		margin: 0;
		background-color: transparent;
		text-align: left;
		color: #32b372;
		font-size: 1.7rem;
		font-weight: 500;
	}

	#school-detail .area-area .area-list li.elementary .list-tag,
	#school-detail .area-area .area-list li.junior .list-tag,
	#school-detail .area-area .area-list li.high .list-tag,
	#school-detail .area-area .area-list li.junior-and-high .list-tag {
		font-size: 1.6rem;
		font-weight: 400;
		color: #fff;
		padding: 8px;
		margin: 0 0 8px;
		text-align: center;
	}

	#school-detail .area-area .area-list li .list-txt {
		width: 100%;
		float: none;
		margin: 0 0 20px;
	}

	#school-detail .area-area .message {
		font-size: 1.7rem;
		text-align: left;
		margin: 30px 0 40px;
	}
}

/*    bnr-area
-------------------------------------------------------------- */
	.bnr-area .sp-display{
		padding: 0 20px;
	}

/*    index-area
-------------------------------------------------------------- */

.index-area {
	padding: 60px 0;
}

.index-area i {
	margin: 0 10px 0 0;
	color: #32b372;
}

.index-ttl {
	font-size: 2.1rem;
	font-weight: 500;
	margin: 0 0 30px 0;
}

.index-area .index-box {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	background: #f8f8f8;
	padding: 30px 50px 10px;
	border-left: 15px solid #33b371;
}

.index-area .index-box .sp-wrap {
	display: contents;
}

.index-area .index-box .list {
	width: 33.3%;
	margin: 0 0 30px 0;

}

.index-area .index-box .list a {
	color: #333;
	padding: 0 5px 5px 0;
	font-size: 2rem;
	transition: all .3 ease;
}

.index-area .index-box .list a:hover {
	color: #33b371;
}

@media screen and (max-width: 768px) {
	.index-area {
		padding: 30px 20px 0;
	}

	.index-area i {
		margin: 0 10px 0 0;
		color: #32b372;
	}

	.index-ttl {
		font-size: 2.0rem;
		line-height: 1.5;
		background: #33b371;
		color: #fff;
		padding: 8px 15px;
		margin: 0;
	}

	.more-ttl {
		font-size: 1.8rem;
		padding: 15px 60px 15px 40px;
		background-color: #33b371;
		color: #fff;
		position: relative;
		margin: 20px auto 0;
	}

	.more-index::before {
		display: block;
		content: '';
		background-color: #fff;
		position: absolute;
		width: 10px;
		height: 2px;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
	}

	.more-index::after {
		display: block;
		content: '';
		background-color: #fff;
		position: absolute;
		width: 2px;
		height: 10px;
		top: 50%;
		right: 24px;
		transform: translateY(-50%);
		transition: all .3s ease;
	}

	.more-index.open::after {
		transform: translateY(-50%) rotate(-90deg);
	}



	.index-area .index-box {
		width: 100%;
		/*display: none;*/
		flex-wrap: wrap;
		background: #f8f8f8;
		padding: 10px 17px 25px;
		border-left: none;
		border: solid 1px #33b371;
	}

	.index-area .index-box.open {}

	.index-area .index-box .list {
		width: 100%;
		padding: 15px 0;
		margin: 0;
		font-feature-settings: "palt";
		border-bottom: 1px solid #ddd;
	}

	.index-area .index-box .sp-wrap {
		display: none;
		width: 100%;
	}

	.index-area .index-box .sp-wrap.open {
		display: block;
	}

	.index-area .index-box .list a {
		display: block;
		color: #333;
		padding: 0;
		font-size: 1.6rem;
		transition: all .3 ease;
		width: 100%;
	}

	.index-area .index-box .list a:hover {
		color: #33b371;
	}
}

/*    .bulletin-board-area
-------------------------------------------------------------- */

.bulletin-board-area {
	padding: 40px 0;
	height: auto;
	margin: 0 0 40px;
	background-color: #f0f0f0;
}

.board-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.green-bg {
	position: relative;
}

.green-bg .img-box {
	position: absolute;
	top: -75px;
	left: -50px;
	width: 100px;
}

.green-bg .img-box img {
	width: 100%;
}


.bulletin-board-area .board-ttl {
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 1.3;
	color: #fff;
	width: 300px;
	height: 300px;
	text-align: center;
	background-color: #33b371;
	padding: 55px 0 0 0;
}

.bulletin-board-area .board-ttl.two-lines {
	padding: 85px 0 0 0;
}

.board-wrapper {
	width: 860px;
	height: 300px;
	padding: 40px 40px 20px;
	background-color: #fff;
	border-radius: 20px;
	overflow-y: hidden;
	position: relative;
}

.board-wrapper::before {
	content: "";
	display: inline-block;
	background: linear-gradient(rgba(255, 255, 255, 0), #fff);
	width: 750px;
	height: 60px;
	position: absolute;
	bottom: 20px;
	left: 40px;
	z-index: 10;
}

.board-wrapper::after {
	content: "";
	display: inline-block;
	background: linear-gradient(#fff, rgba(255, 255, 255, 0));
	width: 750px;
	height: 40px;
	position: absolute;
	top: 10px;
	left: 40px;
	z-index: 10;
}

.board-list {
	width: 100%;
	height: 240px;
	overflow-y: scroll;
	padding: 0 30px 0 0;
}

.board-list::-webkit-scrollbar {
	width: 16px;
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.6);

}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #33b371;
}

.board-list li {
	font-size: 1.7rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.board-list li.day {
	text-align: center;
	margin: 0 0 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	font-weight: 600;
	color: #888;
}

.board-list li.day span {
	min-width: 120px;
}

.board-list li.day::before,
.board-list li.day::after {
	content: "";
	display: inline-block;
	height: 1px;
	background-color: #888;
}

.board-list li.day::before {
	width: 80px;
	margin-right: 10px;
}

.board-list li.day::after {
	width: 100%;
	margin-left: 10px;
}

.board-list li .ttl {
	font-size: 2.4rem;
	line-height: 2;
	font-weight: bold;
	margin: 0 0 15px;
	color: #33b371;
}

.board-list li.detail {
	margin: 0 0 30px;
	line-height: 1.7;
}

.board-list li .fas {
	margin-right: 10px;
}

.board-list li.disc {
	list-style: disc;
	margin-left: 20px;
}

.bulletin-board-wrap .img-box {
	position: absolute;
}


.bulletin-board-wrap .img-box img {
	width: 100%;
}

.board-list li .board-table {
	width: 100%;
}

.board-list li .board-table th {
	width: 9%;
}

.board-list li .board-list-202212 th {
	width: 12%;
}

.board-list li .board-table th,
.board-list li .board-table td {
	vertical-align: top;
}

.bulletin-board-area .txt-l {
	font-weight: 600;
	background: linear-gradient(transparent 80%, #faed25 80%);
}

.bulletin-board-area .txt-blue {
	color: #1346e9;
	font-weight: 600;
	background: linear-gradient(transparent 80%, #faed25 80%);
}

@media screen and (max-width: 768px) {
	.bulletin-board-area {
		padding: 30px 0;
		height: auto;
		margin: 0;
	}

	.bulletin-board-area .board-ttl {
		font-size: 2.6rem;
		margin: 0;
		width: 100%;
		height: auto;
		padding: 15px 10px 40px;
	}

	.bulletin-board-area .board-ttl.two-lines {
		padding: 15px 10px 40px;
	}

	.board-flex {
		display: block;
	}

	.green-bg .img-box {
		top: -50px;
		left: -20px;
		width: 60px;
		z-index: 2;
	}

	.board-wrapper {
		width: calc(100% - 20px);
		height: 300px;
		padding: 30px 20px;
		margin: -30px auto 0;
		display: block;

	}

	.board-wrapper::before {
		width: calc(100% - 20px);
		height: 40px;
		bottom: 20px;
		left: 10px;
	}

	.board-wrapper::after {
		width: calc(100% - 20px);
		height: 40px;
		top: 5px;
		left: 10px;
	}

	.board-list::-webkit-scrollbar {
		width: 16px;
	}

	::-webkit-scrollbar-track {
		border-radius: 10px;
		background-color: rgba(255, 255, 255, 0.6);

	}

	::-webkit-scrollbar-thumb {
		border-radius: 10px;
		background-color: #33b371;
	}


	.board-list {
		width: 100%;
		height: 240px;
		overflow-y: scroll;
		padding: 0;
	}

	.board-list li {
		font-size: 1.6rem;
	}

	.board-list li.day {
		margin: 0 0 10px;
		text-align: left;
	}

	.board-list li.day span {
		width: auto;
		min-width: unset;
	}

	.board-list li.day::before {
		display: none;
	}

	.board-list li.day::after {
		flex-grow: 1;
		width: unset;
	}

	.board-list li .ttl {
		font-size: 2rem;
		line-height: 1.7;
		margin: 0 0 15px;
	}

	.board-list li.detail {
		margin: 0 0 15px;
	}

	.board-list li .board-table th {
		width: 18%;
	}

	.board-list li .board-list-202212 th {
		width: 3%;
	}

	.board-list li .board-list-202212 td {
		width: 10%;
	}

}

/*    interview-area
-------------------------------------------------------------- */

.interview-flex {
	display: flex;
	align-items: center;
	margin: 40px 0;
}

.interview-flex.block02 {
	margin: 40px 0 60px;
}

.interview-flex .hide-wrap {
	width: 750px;
	height: 450px;
	margin: 0 0 0 40px;
	position: relative;
}

.interview-flex .hide-wrap::before {
	content: "";
	display: inline-block;
	background: linear-gradient(rgba(255, 255, 255, 0), #fff);
	width: 730px;
	height: 80px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.interview-flex .hide-wrap::after {
	content: "";
	display: inline-block;
	background: linear-gradient(#fff, rgba(255, 255, 255, 0));
	width: 730px;
	height: 60px;
	position: absolute;
	top: -15px;
	left: 0;
	z-index: 10;
}

.interview-flex .comment-area {
	width: 760px;
	height: 450px;
	overflow-y: scroll;
	padding: 30px 25px 20px 0;
	position: relative;
}



.interview-flex .comment-area::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #eee;

}

::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #33b371;
}

.interview-flex .comment-area h4 {
	font-size: 2.6rem;
	line-height: 1.4;
	font-weight: bold;
	color: #32b372;
	margin: 0 0 20px;
}

.interview-flex .img-box {
	width: 500px;
}

.interview-flex .img-box img {
	width: 500px;
	height: 420px;
	object-fit: cover;
	border-radius: 20px;
}

.interview-flex .comment-flex {
	display: flex;
	margin: 0 0 25px;

}

.interview-flex .comment-flex .icon-box {
	margin: 0 20px 0 0;
}

.interview-flex .comment-flex img {
	width: 50px;
	height: 50px;
	object-fit: cover;
}

.interview-flex .comment-flex .person {
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
}

.interview-flex .comment-flex .person.per01 {
	color: #33b371;
}

.interview-flex .comment-flex .person.per02 {
	color: #f9c059;
}

@media screen and (max-width: 768px) {
	.interview-flex {
		display: block;
		margin: 30px 0;
	}

	.interview-flex.block02 {
		margin: 30px 0;
	}

	.interview-flex .hide-wrap {
		width: 100%;
		height: 380px;
		margin: 0;
		position: relative;
	}

	.interview-flex .hide-wrap::before {
		width: 100%;
		height: 30px;
		bottom: 0;
	}

	.interview-flex .hide-wrap::after {
		width: 100%;
		height: 30px;
		top: 0;
	}

	.interview-flex .comment-area {
		width: 100%;
		height: 380px;
		padding: 20px 0;
		position: relative;
	}

	.interview-flex .comment-area h4 {
		font-size: 2rem;
	}

	.interview-flex .img-box {
		width: 280px;
		margin: 0 0 20px;
	}

	.interview-flex .img-box img {
		width: 260px;
		height: 180px;
	}

	.interview-flex .comment-flex {
		margin: 0 0 20;
	}

	.interview-flex .comment-flex .icon-box {
		margin: 0 10px 0 0;
	}

	.interview-flex .comment-flex img {
		width: 48px;
		height: 48px;
	}

}

.to-about a.btn {
	margin: 0 0 0 0;
	position: relative;
	overflow: visible;
	width: 400px;
}

.to-about a.btn::after {
	content: "";
	display: inline-block;
	width: 100px;
	height: 100px;
	background: url(/vendor/juku-demo/control/img/to-about.png) 0 0 / 80px 80px no-repeat;
	position: absolute;
	top: 20px;
	left: -40px;
	transform: translateY(-50%);
	z-index: 0;
}

@media screen and (max-width: 768px) {
	.to-about a.btn {
		margin: 20px 0 0 0;
		width: 100%;
	}

	.to-about a.btn::after {
		width: 80px;
		height: 80px;
		background: url(/vendor/juku-demo/control/img/to-about.png) 0 0 / 70px 70px no-repeat;
		top: 10px;
		left: -20px;
		z-index: 1;
	}
}

/*    faqbox
-------------------------------------------------------------- */

#school-detail .school-faq {
	margin: 60px 0 0;
}

#school-detail .school-faq .message {
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.8;
	text-align: center;
	margin: 0 0 80px;
}

@media screen and (max-width: 768px) {

	#school-detail .school-faq {
		margin: 50px 0 0;
	}

	#school-detail.support-a .school-faq {
		margin: 0;
	}

	#school-detail .school-faq .message {
		font-size: 1.7rem;
		text-align: left;
		margin: 30px 0 40px;
	}
}


/* -----------------------------------------------------------
    かごしま個人塾ならこう変わります
-------------------------------------------------------------- */

#school-detail .about-area .diff-area {
	width: 100%;
	min-width: 1400px;
	display: flex;
}

#school-detail .about-area .diff-area .diff {
	width: calc(100% / 3);
}

#school-detail .about-area .diff-area .diff .bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	height: 520px;
}

#school-detail .about-area .diff-area .diff .bg.diff-01 {
	background-image: url(/vendor/juku-demo/control/img/img-about-diff01.jpg);
}

#school-detail .about-area .diff-area .diff .bg.diff-02 {
	background-image: url(/vendor/juku-demo/control/img/img-about-diff02.jpg);
}

#school-detail .about-area .diff-area .diff .bg.diff-03 {
	background-image: url(/vendor/juku-demo/control/img/img-about-diff03.jpg);
	background-position: right top;
}

#school-detail .about-area .diff-area .diff .diff-txt-area {
	background-color: #fff;
	margin: -60px 5% 0 0;
	padding: 60px 0 60px 30px;
	border-radius: 0 30px 0 0;
}

#school-detail .about-area .diff-area .diff .diff-txt-area .diff-flex {
	display: flex;
	margin: 0 0 20px 0;
}

#school-detail .about-area .diff-area .diff .diff-txt-area .diff-flex .diff-txt01 {
	display: inline;
	font-size: 1.4rem;
	line-height: 1.4rem;
	font-feature-settings: "palt";
	color: #c7b476;
	margin: 0 10px 0 0;
	padding: 12px 0;
}

#school-detail .about-area .diff-area .diff .diff-txt-area .diff-flex .diff-txt02 {
	display: inline;
	font-size: 3.8rem;
	line-height: 3.8rem;
	font-weight: normal;
	font-feature-settings: "palt";
	color: #c7b476;
	margin: 0;
	padding: 0;
}

#school-detail .about-area .diff-area .diff .diff-txt-area h3 {
	display: inline-block;
	font-size: 2.9rem;
	line-height: 1.6;
	font-weight: bold;
	font-feature-settings: "palt";
	margin: 0 0 20px 0;
	padding: 0;
}

#school-detail .about-area .diff-area .diff .diff-txt-area .diff-txt-03 {}

.diff-area .sp-scroll {
	display: contents;
}

@media screen and (max-width: 768px) {
	#school-detail .about-area .diff-area {
		min-width: inherit;
		display: block;
		overflow-x: scroll
	}

	#school-detail .about-area .diff-area .diff {
		width: 100%;
	}

	#school-detail .about-area .diff-area .diff .bg {
		height: 250px;
	}

	#school-detail .about-area .diff-area .diff .bg.diff-01 {}

	#school-detail .about-area .diff-area .diff .bg.diff-02 {}

	#school-detail .about-area .diff-area .diff .bg.diff-03 {}

	#school-detail .about-area .diff-area .diff .diff-txt-area {
		margin: -30px 20px 0 0;
		padding: 30px 0 30px 20px;
		border-radius: 0 20px 0 0;
	}

	#school-detail .about-area .diff-area .diff .diff-txt-area .diff-flex {
		margin: 0 0 5px 0;
	}

	#school-detail .about-area .diff-area .diff .diff-txt-area .diff-flex .diff-txt01 {
		margin: 0 5px 0 0;
		padding: 12px 0;
	}

	#school-detail .about-area .diff-area .diff .diff-txt-area .diff-flex .diff-txt02 {
		font-size: 3rem;
		line-height: 1;
	}

	#school-detail .about-area .diff-area .diff .diff-txt-area h3 {
		font-size: 2.4rem;
		line-height: 1.6;
		margin: 0 0 15px 0;
	}

	#school-detail .about-area .diff-area .diff .diff-txt-area .diff-txt-03 {}

	.diff-area .sp-scroll {
		width: 1260px;
		display: flex;
	}
}


/* -----------------------------------------------------------
    .point-area
-------------------------------------------------------------- */
/*#school-detail .point-area {
	padding: 100px 0;
}

#school-detail .point-area .point-block {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 60px 0;
}

#school-detail .point-area .point-box {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 40px;
}

#school-detail .point-area .point-box:nth-child(even) {
	flex-direction: row-reverse;
}

#school-detail .point-area .point-box .txt-wrap {
	width: 50%;
	margin: 0 calc( (100% - 1200px) / 2) 0 0;
}

#school-detail .point-area .point-box:nth-child(even) .txt-wrap {
	margin: 0 0 0 calc( (100% - 1200px) / 2);
}

#school-detail .point-area .point-box .img-wrap {
	width: calc( 50% - 40px);
	max-height: 400px;
	overflow: hidden;
}

#school-detail .point-area .point-box .img-wrap img {
	width: 100%;
	object-fit: cover;
}*/

/* -----------------------------------------------------------
    .comparison-chart-area
-------------------------------------------------------------- */
#school-detail .comparison-chart-area {
	padding: 0 0 80px;
}

#school-detail .comparison-chart-area .title-wrapper {
	margin: 0 0 50px;
}

#school-detail .comparison-chart-area .title-wrapper .catch-block {
    text-align: right;
}

#school-detail .comparison-chart-area .title-wrapper .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#school-detail .comparison-chart-area .table-wrap {
	display: contents;
}

#school-detail .comparison-chart-area table {
	border-collapse: collapse;
	width: 100%;
	line-height: 1.6;
	overflow: hidden;
	position: relative;
}

/*#school-detail .comparison-chart-area table.img-animation:before {
	right: -10%;
}*/

/*ここから　かごしま個人塾 を強調するためのボーダー指定*/
#school-detail .comparison-chart-area table thead th:nth-child(2) {
	background: #F5FFF3;
	border-top: 5px solid #32b372;
}

#school-detail .comparison-chart-area table thead th:nth-child(2),
#school-detail .comparison-chart-area table tbody td:nth-child(2) {
	border-left: 5px solid #32b372;
	border-right: 5px solid #32b372;
	background-color: #F5FFF3;
}

#school-detail .comparison-chart-area table tbody td:nth-child(1) {
	border-left: 5px solid #32b372;
	border-right: 5px solid #32b372;
	background-color: #F5FFF3;
}

#school-detail .comparison-chart-area table tbody .border-none td:nth-child(2) {
	border: none;
	background-color: #fff;

}

#school-detail .comparison-chart-area table tbody tr:last-child td:nth-child(1) {
	border-bottom: 5px solid #32b372;
}
/*ここまで　かごしま個人塾 を強調するためのボーダー指定*/

#school-detail .comparison-chart-area table .table-localjuku {
	font-weight: bold;
	color: #444;
}

#school-detail .comparison-chart-area table tr {
	border-bottom: 1px solid #ccc;
}

#school-detail .comparison-chart-area table th {
	border: 1px solid #ccc;
	font-weight: normal;
	text-align: center;
	background: #f8f8f8;
	padding: 15px;
}

#school-detail .comparison-chart-area table .table-title {
	width: 13%;
}

#school-detail .comparison-chart-area table .table-mark{
	text-align: center;
	align-items: center;
}

#school-detail .comparison-chart-area table .table-mark td{
	padding: 0;
}

#school-detail .comparison-chart-area table .table-mark td:not(.table-localjuku){
	padding: 15px;
}


#school-detail .comparison-chart-area table .table-mark img{
	width: 50px;
}

#school-detail .comparison-chart-area table td {
	border: 1px solid #ccc;
	padding: 15px 10px;
	line-height: 1.6;
	vertical-align: top;
}

/*可読性上げるためのインデントと行間指定*/
#school-detail .comparison-chart-area table td p {
	padding-left: 1.5rem;
	text-indent: -1.5rem;
	line-height: 1.6;
	font-size: 1.5rem;
}

/*かごしま個人塾は強調*/
#school-detail .comparison-chart-area table td.table-localjuku p {
	padding-left: 1.6rem;
	text-indent: -1.6rem;
	line-height: 1.7;
	font-size: 1.6rem;
}

/*pタグ下に余白追加（tdの中の一番最後のp以外）*/
#school-detail .comparison-chart-area table td p:not(:last-child) {
	margin: 0 0 10px;
}

#school-detail .comparison-chart-area table img {
	width: 150px;
}


#school-detail.support-c .comparison-chart-area {
	padding-top: 80px;
}

@media screen and (max-width: 768px) {
	#school-detail .comparison-chart-area {
		padding: 0 20px;
	}
	
	#school-detail .comparison-chart-area .title-wrapper {
		margin: 0;
	}
	
	#school-detail .comparison-chart-area  .section-title {
		margin: 0 0 30px;
	}
	
	#school-detail .comparison-chart-area .table-wrap {
		width: 100%;
		overflow-x: scroll;
		margin: 0 0 50px 0;
		display: block;
	}

	#school-detail .comparison-chart-area table {
		min-width: 900px;
		margin: 30px 0 20px;
	}

	#school-detail .comparison-chart-area .table-wrap {
		display: block;
	}
	
	#school-detail .comparison-chart-area .title-wrapper .inner {
		display: block;
	}
	
	#school-detail .comparison-chart-area .title-wrapper .catch-block {
		text-align: left;
	}

	#school-detail .comparison-chart-area table .table-title {
		width: 9%;
	}

	#school-detail .comparison-chart-area table .table-title,
	#school-detail .comparison-chart-area table td,
	#school-detail .comparison-chart-area table td.table-localjuku p,
	#school-detail .comparison-chart-area table td p{
		font-size: 1.4rem;
	}

	#school-detail .comparison-chart-area table th {
		padding: 5px;
	}
	
	
	#school-detail.support-c .comparison-chart-area {
		padding-top: 20px;
	}
	
}


/* -----------------------------------------------------------
    .charm-area
-------------------------------------------------------------- */
#school-detail .charm-area {
	padding: 0 0 80px;
}

#school-detail .charm-area .charm-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 50px;
	margin: 40px 0 0;
}

#school-detail .charm-area .charm-flex .txt-wrap {
	width: calc(50% - 50px);
}

#school-detail .charm-area .charm-flex .img-wrap {
	width: 50%;
	height: 500px;
	overflow: hidden;
}

#school-detail .charm-area .charm-flex .img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	#school-detail .charm-area {
		padding: 0 20px 40px;
	}

	#school-detail .charm-area .charm-flex {
		gap: 20px;
		margin: 30px 0 0;
		flex-direction: column-reverse;
	}

	#school-detail .charm-area .charm-flex .txt-wrap {
		width: 100%;
	}

	#school-detail .charm-area .charm-flex .img-wrap {
		width: 100%;
		height: 230px;
	}

	#school-detail.classroom-c .charm-area .charm-flex .img-wrap img {
		object-position: 0 -20px;
	}
}

/* -----------------------------------------------------------
    .charm-area
-------------------------------------------------------------- */
#school-detail .around-area {
	padding: 0 0 120px;
}

#school-detail .around-area .txt-wrap {
	margin: 30px 0 0;
}

#school-detail .around-area .around-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 40px;
	width: 100%;
	text-align: center;
	margin: 80px 0 0;
}

#school-detail .around-area .around-list li {
	width: calc((100% - 40px) / 2);
	/*background: #F9F9F9;*/
	border-radius: 30px;
	box-shadow: 0 0px 20px rgba(0, 0, 0, .1);
	/*border: 1px solid #ccc;*/
}

#school-detail .around-area .around-list .img-wrap {
	width: 100%;
	height: 260px;
	overflow: hidden;
	border-radius: 30px 30px 0 0;
}

#school-detail .around-area .around-list .img-wrap img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	object-position: center;
}

#school-detail .around-area .around-list .icon-wrap {
	text-align: center;
	/*background: #F9F9F9;*/
	background: #fff;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -40px auto 0;
	position: relative;
}

#school-detail .around-area .around-list .icon-wrap .fas {
	font-size: 3.6rem;
	line-height: 1.5;
	color: #32b372;
}

#school-detail .around-area .around-list .txt-wrap {
	margin: 0;
	padding: 0 30px 30px;
}

#school-detail .around-area .around-list .basic-txt {
	text-align: left;
}

#school-detail .around-area .around-ttl {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.6;
	margin: 0 0 15px;
	padding: 0 0 10px;
	border-bottom: 1px dashed #32b372;
}

@media screen and (max-width: 768px) {
	#school-detail .around-area {
		padding: 0 20px 40px;
	}

	#school-detail .around-area .txt-wrap {
		margin: 20px 0 0;
	}

	#school-detail .around-area .around-list {
		gap: 20px 20px;
		margin: 50px 0 0;
	}

	#school-detail .around-area .around-list li {

		width: 100%;
		border-radius: 10px;
		/*background: #f1f1f1;*/
	}

	#school-detail .around-area .around-list .img-wrap {
		height: 160px;
		border-radius: 10px 10px 0 0;
	}

	#school-detail .around-area .around-list .img-wrap img {
		height: 160px;
		width: 100%;
		max-width: initial;
		object-fit: cover;
	}

	#school-detail .around-area .around-list .icon-wrap {
		width: 80px;
		height: 80px;
		border-radius: 40px;
		margin: -30px auto 0;
		/*background: #f1f1f1;*/
	}

	#school-detail .around-area .around-list .icon-wrap .fas {
		font-size: 3.2rem;
	}

	#school-detail .around-area .around-list .txt-wrap {
		padding: 0 20px 20px;
	}

	#school-detail .around-area .around-ttl {
		font-size: 2.0rem;
		margin: 0 0 15px;
		padding: 0 0 10px;
	}
}

/*20240313 導線追加*/
.btn-area {
	position: absolute;
	bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.btn-area a.school-btn {
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 25px 0;
    text-decoration: none;
    transition: all 0.3s;
    width: 350px;
}
.btn-area a.school-btn::after {
    content: "\f054";
    font: 900 1.3rem / 1 "Font Awesome 5 Free";
    position: absolute;
    top: calc((100% - 1em) / 2);
    right: 15px;
}
.btn-area a.school-btn:hover {
	opacity: 0.7;
}
.btn-area a.school-btn.style-elementary {
	background: #c65252;
	color: #fff;
	border: none;
}
.btn-area a.school-btn.style-chuugaku-juken {
	background: #CC6F38;
	color: #fff;
	border: none;
}
.btn-area a.school-btn.style-junior {
	background: #42a79a;
	color: #fff;
	border: none;
}
.btn-area a.school-btn.style-high {
	background: #5289c6;
	color: #fff;
	border: none;
}

/* 20260529 学習ラウンジ追加 */
.btn-area a.school-btn.style-lounge {
	background: var(--lounge);
	color: #fff;
	border: none;
}

.note-txt {
	margin-top: 50px;
}

@media screen and (max-width: 768px) {
	.btn-area {
		width: 90%;
		bottom: 30px;
	}
	.btn-area a.school-btn {
		width: 100%;
	}
	.note-txt {
		margin-top: 20px;
	}
}


#school-detail.classroom-a .case-area .txt-block .case-list li.case-classroom-c,
#school-detail.classroom-b .case-area .txt-block .case-list li.case-classroom-c,
#school-detail.support-a .case-area .txt-block .case-list li.case-classroom-c,
#school-detail.support-b .case-area .txt-block .case-list li.case-classroom-c,
#school-detail.support-c .case-area .txt-block .case-list li.case-classroom-c{
    display: none;
}
#school-detail.classroom-c .case-area .txt-block .case-list li.case-classroom-c {
	display: list-item;
}
@media screen and (max-width: 768px) {
	#school-detail.classroom-c .case-area .txt-block .case-list li.case-classroom-c {
		display: inline;
	}
}

/* -----------------------------------------------------------
                20240416 講師紹介
-------------------------------------------------------------- */

.instractor-list{
    width: 100%;
    margin: 30px 0 0;
}

.instractor-list li {
    background: #33b371;
    color: #fff;
    padding: 80px 0;
    position: relative;
}
.instractor-list li:nth-child(2n) {
    background: #6F9B84;

}

.instractor-list li .flex-wrap {
    display: flex;
    justify-content: space-between;
}

.instractor-list li:nth-child(2n) .flex-wrap {
    flex-direction: row-reverse;
}

.instractor-list li .img-box {
    position: relative;
    width: 460px;
    height: 340px;
    left: -150px;
}

.instractor-list li .img-box.moriwaki:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: -1px;
	left: -15px;
	background: url(/vendor/juku-demo/control/img/icon_label01.png) center,no-repeat;
	width: 120px;
	height: 131px;
}

.instractor-list li .img-box.yoshida:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: -1px;
	left: -15px;
	background: url(/vendor/juku-demo/control/img/icon_label02.png) center,no-repeat;
	width: 120px;
	height: 131px;
}

.instractor-list li .img-box img {
    /*width: 460px;
    height: 340px;*/
	width: 400px;
    height: 340px;
    object-fit: cover;
	box-shadow: 3px 3px 5px #f8f8f8;
}

.instractor-list li:nth-child(2n) .img-box {
    right:  -120px;
    left: unset;
}

.instractor-list li .img-box .position {
    position: absolute;
    display: inline-block;
    padding: 8px 15px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: .1em;
    bottom: 36px;
    right: 0 ;
    color: #1C632D;
    border: 1px solid #1C632D;
	background: #fff;
}

.instractor-list li:nth-child(2n) .img-box .position {
	left: 0;
    right: unset ;
}

.instractor-list li .img-box .name {
    position: absolute;
    display: inline-block;
    padding: 8px 15px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
    letter-spacing: .1em;
    bottom: -15px;
    right: 0 ;
    background-color: #1C632D;
}

.instractor-list li:nth-child(2n) .img-box .name {
    left: 0;
    right: unset ;
}

.instractor-list li .txt-box {
    position: relative;
    width: 820px;
    margin: 0 -80px 0 0;
    left: -100px;
}

.instractor-list li:nth-child(2n) .txt-box {
    position: relative;
    width: 820px;
    left: 0;
    margin: 0 -80px 0 0;
}

.instractor-list li .txt-box h3 {
    padding: 0 0 0 20px;
    border-left: solid 10px #fff;
    /*font-size: 3.8rem;*/
	font-size: 3.55rem;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 0 30px;
}

.instractor-list li .txt-box h3 span {
    font-size: 2.6rem;
}

.instractor-list li .txt-box .rec-txt-box {
	background: #fff;
	padding: 10px 20px;
	color: #33b371;
	margin: 10px 0 0;
	border-radius: 8px;
}

.instractor-list li .txt-box .rec-txt-box .rec-txt {
	font-weight: bold;
	font-size: 2.0rem;
	margin: 0 0 5px;
}

.instractor-list li .txt-box .rec-txt-box .rec-list {
	margin: 0 0 0 20px;
}

.instractor-list li .txt-box .rec-txt-box .rec-list li {
	list-style: disc;
	background: #fff;
	color: #33b371;
	padding: 5px 0;
	font-weight: bold;
	line-height: 1.4;
}

.instractor-list li:nth-child(2n) .txt-box .rec-txt-box,
.instractor-list li:nth-child(2n) .txt-box .rec-txt-box .rec-list li {
	color: #6F9B84;
}

/*ボタン*/
a.btn.style-wh {
    background: #fff;
    border-color: #fff;
    color: #333;
	
	/*20250916 追記*/
	width: 325px;
}

/*タイトル出し分け*/
#school-detail .instractor-area .section-title .section-title-jp {
	display: none;
}
#school-detail.classroom-a .instractor-area .section-title .section-title-jp.classroom-a,
#school-detail.classroom-b .instractor-area .section-title .section-title-jp.classroom-b,
#school-detail.classroom-c .instractor-area .section-title .section-title-jp.classroom-c,
#school-detail.support-a .instractor-area .section-title .section-title-jp.support-a,
#school-detail.support-b .instractor-area .section-title .section-title-jp.support-b,
#school-detail.support-c .instractor-area .section-title .section-title-jp.support-c{
	display: block;
}

@media screen and (max-width: 768px) {

    .instractor-list{
        width: 100%;
        margin: 30px 0 0;
    }

    .instractor-list li {
        padding: 30px 20px;
    }

    .instractor-list li .flex-wrap {
        display: block;
    }

    .instractor-list li .img-box {
        position: relative;
        width: 100%;
        height: 170px;
        left: -20px;
    }

    .instractor-list li .img-box img {
        width: 100%;
        /*height: 170px;*/
        border-bottom-right-radius: 60px;
		
		/*20250916 修正*/
		height: 240px;
		object-fit: cover;
		object-position: 50% 5%;
    }

    .instractor-list li:nth-child(2n) .img-box {
        right: -20px;
    }

    .instractor-list li:nth-child(2n) .img-box img {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 60px;
    }

	.instractor-list li .img-box .position {
		padding: 8px 15px;
		font-size: 1.4rem;
		right: unset ;
        left: 0 ;
		bottom: -70px;
	}
	
	.instractor-list li:nth-child(2n) .img-box .position {
		right: 0;
        left: unset;
	}
	
    .instractor-list li .img-box .name {
        padding: 8px 15px;
        font-size: 2.2rem;
        /*bottom: -15px;*/
        right: unset ;
        left: 0 ;
		
		/*20250916 修正*/
		bottom: -110px;
    }

    .instractor-list li:nth-child(2n) .img-box .name {
        right: 0;
        left: unset;
    }

    .instractor-list li .txt-box {
        width: 100%;
        /*margin: 30px 0 0;*/
        left: 0;
		
		/*20250916 修正*/
		margin: 130px 0 0;
    }

    .instractor-list li:nth-child(2n) .txt-box {
        width: 100%;
        left: 0;
        margin: 30px 0 0;
		
		/*20250916 修正*/
		margin: 130px 0 0;
    }

    .instractor-list li .txt-box h3 {
        padding: 0;
        border-left: solid 0px #fff;
        font-size: 2rem;
        line-height: 1.5;
        margin: 0 0 20px;
    }

    .instractor-list li .txt-box h3 span {
        font-size: 1.6rem;
    }

    /*.instractor-list li .txt-box .sp-toggle {
        display: none;
        padding: 20px 0 0;
    }*/

    .instractor-list li .txt-box .sp-more-btn {
        width: 100%;
        height: auto;
        font-weight: 600;
        padding: 8px;
        margin: 0 0 8px;
        background: transparent;
        border: solid 2px #fff;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        display: block;
        position: relative;
    }

    .instractor-list li .txt-box .sp-more-btn::after {
        position: absolute;
        display: inline-block;
        content: "";
        width: 16px;
        height: 16px;
        background: url(/vendor/juku-demo/control/img/icon-plus.png) no-repeat 0 0;
        background-size: 14px 14px;
        top: 50%;
        right: 20px;
        margin: -7px 0 0;
    }

    .instractor-list li .txt-box .sp-more-btn.open::after {
        background: url(/vendor/juku-demo/control/img/icon-minus.png) no-repeat 0 0;
        background-size: 14px 14px;
    }
	
	.instractor-list li .txt-box .rec-txt-box .rec-txt {
		font-size: 1.8rem;
		margin: 0 0 5px;
	}
	
	.instractor-list li .txt-box .rec-txt-box {
		padding: 10px 14px;
	}
	
	.instractor-list li .img-box.moriwaki:after {
		content: "";
		display: inline-block;
		position: absolute;
		top: -1px;
		left: -15px;
		background: url(/vendor/juku-demo/control/img/icon_label01.png) center/cover,no-repeat;
		width: 28%;
		height: initial;
		aspect-ratio: 120 / 131;
	}
	
	.instractor-list li .img-box.yoshida:after {
		content: "";
		display: inline-block;
		position: absolute;
		top: -1px;
		left: -15px;
		background: url(/vendor/juku-demo/control/img/icon_label02.png) center/cover,no-repeat;
		width: 28%;
		height: initial;
		aspect-ratio: 120 / 131;
	}
	a.btn.style-wh::after {
		content: "\f054";
		font: 900 1.3rem / 1 "Font Awesome 5 Free";
		position: absolute;
		top: calc((100% - 1em) / 2);
		right: 8px;
	}
	
	/*20250916 追記*/
	a.btn.style-wh {
		width: 100%;
	}
	
}


#school-detail .title-target {
    width: 135px;
    height: 135px;
    position: absolute;
    top: -65px;
    right: -115px;
}
#school-detail .title-target img {
    width: 100%;
	object-fit: cover;
	object-position: center;
}
@media screen and (max-width: 768px) {
	#school-detail .title-target {
		width: 80px;
		height: 80px;
		top: 10px;
		right: 5px;
	}
}

/*20240808 追記*/
#school-detail .school-course-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
	
	margin: 120px 0 0 0;
}
#school-detail .school-course-box::before, #school-detail .school-course-box::after {
    content: "";
    width: 45px;
    height: 2px;
    background-color: #32b372;
    margin: 0px 4px 4px;
}
#school-detail .school-course-box::before {
    transform: rotate(45deg);
}
#school-detail .school-course-box::after {
    transform: rotate(-45deg);
}

#school-detail .school-course-txt {
	font-size: 3.2rem;
    line-height: 5rem;
    font-weight: 700;
    font-feature-settings: "palt";
    text-align: center;
	/*color: #4e5c6b;*/
	color: #32b372;
}
#school-detail .school-course-txt span {
    line-height: 1.1;
    background: #32b372;
    color: #fff;
    padding: 6px;
    display: inline-block;
    margin: 0 2px;
}
#school-detail .school-course-txt span.top {
    margin: 0 2px 0 10px;
}


@media screen and (max-width: 768px) {
	#school-detail .school-course-box {
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: 50px 0 0 0;
		gap: 5px;
	}
	
	#school-detail .school-course-box::before, #school-detail .school-course-box::after {
		content: "";
		width: 45px;
		height: 2px;
		margin: 0px 4px 4px;
	}
	#school-detail .school-course-txt::before {
		transform: rotate(45deg);
	}
	#school-detail .school-course-txt::after {
		transform: rotate(-45deg);
	}
	
	#school-detail .school-course-txt {
		font-size: 2.2rem;
        line-height: 3.6rem;
        margin: 0 0 10px 0;
        padding: 0 0;
	}
	#school-detail .school-course-txt span {
		line-height: 1.1;
		background: #32b372;
		color: #fff;
		padding: 6px;
		display: inline-block;
		margin: 0 2px;
	}
	#school-detail .school-course-txt span.top {
		margin: 0 2px 0 10px;
	}
}

/*    20240819 school-voice
-------------------------------------------------------------- */
:root {
	--navy: #516976;
	--green:#33B371;
	--palegreen:#EBF7F1;
}

.school-voice {
	padding: 100px 0 100px;
	background: var(--palegreen);
	position: relative;
}

.school-voice .inner {
	position: relative;
	z-index: 1;
}

@keyframes marquee {
  0% {
    -moz-transform: translateX(0%);
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -moz-transform: translateX(-75%);
    -webkit-transform: translateX(-75%);
    transform: translateX(-75%);
  }
}

.school-voice .ttl-block {
    margin: 0 0 30px;
    text-align: center;
}
.school-voice .ttl-block .en {
    font-size: 2.6rem;
    color: var(--navy);
    font-weight: 500;
    line-height: 1.5;
}
.school-voice .ttl-block .jp {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.5;
}

.school-voice .voice-list {
	margin: 80px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.school-voice .voice-list li {
	width: 380px;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 0 15px rgba(51,179,113,.1);
	position: relative;
	padding: 100px 20px 20px;
}

.school-voice .voice-list li .img-wrap {
	width: 130px;
	height: 130px;
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
}

.school-voice .voice-list li .img-wrap img {
	object-fit: cover;
	width: 100%;
}

.school-voice .voice-list li .type {
	font-size: 2.0rem;
	font-weight: bold;
	line-height: 1.5;
	color: var(--navy);
	text-align: center;
	margin: 0 0 15px;
}

.school-voice .voice-list li .type.type-mt,
.school-voice .voice-list li .type.type-parent {
	margin: 20px 0 15px;
	position: relative;
}

/*style01*/
.school-voice .voice-list li.style01 .type.type-mt span,
.school-voice .voice-list li.style01 .type.type-parent span {
	text-align: center;
    line-height: 1.5;
    font-size: 1.8rem;
    font-weight: bold;
    display: inline-block;
    background: #fff;
    padding: 0 10px;
    position: relative;
}

.school-voice .voice-list li.style01 .type.type-mt::before,
.school-voice .voice-list li.style01 .type.type-parent::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: 1px solid var(--green);
}
/*style01 end*/

/*style02*/
.school-voice .voice-list li.style02 .type.type-mt,
.school-voice .voice-list li.style02 .type.type-parent {
	margin: 0 0 15px;
}
.school-voice .voice-list li.style02 .review p:first-child span {
	background: var(--palegreen);
}
.school-voice .voice-list li.style02 .style02-txt-box {
	background: var(--palegreen);
	padding: 20px 20px 20px;
	margin: 0 0 20px;
	border-radius: 10px;
}
.school-voice .voice-list li.style02 .style02-txt-box:last-of-type {
	margin: 0 0 0;
}
/*style02 end*/

/*style03*/
.school-voice .voice-list li.style03 {
    padding: 30px 20px 30px;
}
.school-voice .voice-list li.style03 .img-wrap {
    width: 110px;
    height: 110px;
    position: static;
    transform: translateX(0);
}
.school-voice .voice-list li.style03 .style03-flex {
	display: flex;
	justify-content: center;
	gap: 20px;
	align-items: center;
}
.school-voice .voice-list li.style03 .type.style03-type {
    margin: 0 0 0;
}
.school-voice .voice-list li.style03 .type.type-mt,
.school-voice .voice-list li.style03 .type.type-parent {
	margin: 20px 0 15px;
	padding: 15px 0 0;
	display: block;
    width: 100%;
	border-top: 1px dashed var(--green);
}
/*style03 end*/

.school-voice .voice-list li .type .school {
	font-size: 1.6rem;
}

.school-voice .voice-list li .review + .review {
	margin: 20px 0 0;
}

.school-voice .voice-list li .review {
	text-align: center;
}

.school-voice .voice-list li .review p:first-child {
	position: relative;
}

.school-voice .voice-list li .review p:first-child span {
	color: var(--green);
	margin: 0 0 10px;
	text-align: center;
	line-height: 1.5;
	font-size: 1.8rem;
	font-weight: bold;
	display: inline-block;
	background: #fff;
	padding: 0 0;
	position: relative;
}

.school-voice .voice-list li .review p:not(:first-child) {
	text-align: left;
}

@media screen and (max-width: 768px) {
	.school-voice {
		padding: 40px 0;
	}
	
	.school-voice .ttl-block {
		margin: 0 0 20px;
	}
	.school-voice .ttl-block .en {
		font-size: 2.2rem;
	}
	.school-voice .ttl-block .jp {
		font-size: 2.6rem;
	}
	
	.school-voice .voice-list {
		margin: 60px 0 0;
		flex-wrap: wrap;
		gap: 60px 0;
	}
	
	.school-voice .voice-list li {
		width: 100%;
		padding: 70px 20px 30px;
	}
	
	.school-voice .voice-list li .img-wrap {
		width: 90px;
		height: 90px;
		top: -40px;
	}
	
	.school-voice .voice-list li .type.type-mt,
	.school-voice .voice-list li .type.type-parent {
		margin: 10px 0 10px;
	}
	
	.school-voice .voice-list li .review p:first-child span {
		margin: 0 auto 8px;
		font-size: 1.7rem;
		padding: 0 8px;
	}
	
	.school-voice .voice-list li .review + .review {
		margin: 15px 0 0;
	}
}

/*20240920 parts配下コース料金 ～校の追加*/
/*湘南台本部*/
#school-detail.classroom-a .course-area .section-title .section-title-jp span.style2,
#school-detail.classroom-a .course-area .section-title .section-title-jp span.style3,
#school-detail.classroom-a .course-area .section-title .section-title-jp span.style4,
#school-detail.classroom-a .course-area .section-title .section-title-jp span.style5,
#school-detail.classroom-a .course-area .section-title .section-title-jp span.style6{
	display: none;
}
#school-detail.classroom-a .course-area .section-title .section-title-jp span.style1 {
	display: inline-block;
}
/*藤沢*/
#school-detail.classroom-b .course-area .section-title .section-title-jp span.style1,
#school-detail.classroom-b .course-area .section-title .section-title-jp span.style3,
#school-detail.classroom-b .course-area .section-title .section-title-jp span.style4,
#school-detail.classroom-b .course-area .section-title .section-title-jp span.style5,
#school-detail.classroom-b .course-area .section-title .section-title-jp span.style6{
	display: none;
}
#school-detail.classroom-b .course-area .section-title .section-title-jp span.style2 {
	display: inline-block;
}
/*上大岡*/
#school-detail.classroom-c .course-area .section-title .section-title-jp span.style1,
#school-detail.classroom-c .course-area .section-title .section-title-jp span.style2,
#school-detail.classroom-c .course-area .section-title .section-title-jp span.style4,
#school-detail.classroom-c .course-area .section-title .section-title-jp span.style5,
#school-detail.classroom-c .course-area .section-title .section-title-jp span.style6{
	display: none;
}
#school-detail.classroom-c .course-area .section-title .section-title-jp span.style3 {
	display: inline-block;
}
/*平塚*/
#school-detail.support-a .course-area .section-title .section-title-jp span.style1,
#school-detail.support-a .course-area .section-title .section-title-jp span.style2,
#school-detail.support-a .course-area .section-title .section-title-jp span.style3,
#school-detail.support-a .course-area .section-title .section-title-jp span.style5,
#school-detail.support-a .course-area .section-title .section-title-jp span.style6{
	display: none;
}
#school-detail.support-a .course-area .section-title .section-title-jp span.style4 {
	display: inline-block;
}
/*橋本*/
#school-detail.support-b .course-area .section-title .section-title-jp span.style1,
#school-detail.support-b .course-area .section-title .section-title-jp span.style2,
#school-detail.support-b .course-area .section-title .section-title-jp span.style3,
#school-detail.support-b .course-area .section-title .section-title-jp span.style4,
#school-detail.support-b .course-area .section-title .section-title-jp span.style6{
	display: none;
}
#school-detail.support-b .course-area .section-title .section-title-jp span.style5 {
	display: inline-block;
}

#school-detail.support-c .course-area .section-title .section-title-jp span.style1,
#school-detail.support-c .course-area .section-title .section-title-jp span.style2,
#school-detail.support-c .course-area .section-title .section-title-jp span.style3,
#school-detail.support-c .course-area .section-title .section-title-jp span.style4,
#school-detail.support-c .course-area .section-title .section-title-jp span.style5{
	display: none;
}
#school-detail.support-c .course-area .section-title .section-title-jp span.style6 {
	display: inline-block;
}


/* -----------------------------------------------------------
    20251003 合格実績エリア school-achieve
	※スライド部分はexperience.cssを使用
-------------------------------------------------------------- */
.ex-area.achieve {
    background: #f1f9f5;
    padding: 80px 0 50px;
	margin-bottom: 80px;
}

.ex-area.achieve .title-wrapper .inner {
	justify-content: center;
}
.ex-area.achieve .achieve-ttl {
	font-size: 2.8rem;
    font-weight: 600;
	text-align: center;
	padding-bottom: 50px;
}
.ex-area.achieve .achieve-ttl span {
    line-height: 1.1;
    background: #f05f26;
    color: #fff;
    padding: 6px;
    display: inline-block;
    margin: 0 2px;
    font-size: 3rem;
}

/*SP版は非表示*/
.achieve-container .sp-only {
	display: none!important;
}
/*SP版は非表示 end*/

.achieve-container .achieve-flex {
	margin-bottom: 0;
}
.achieve-container .achieve-flex .achieve-case {
	width: calc( ( 100% - 30px ) / 3 );
	position: relative;
	border: solid 1px #657b86;
	padding: 70px 25px 30px;
	background: #fff;
}
.achieve-container .achieve-flex .achieve-case .achieve-img {
	display: flex;
	justify-content: center;
}
.achieve-container .achieve-flex .achieve-case .achieve-img img {
	width: 120px;
	height: 120px;
	object-fit: cover;
	object-position: center;
	border-radius: 100px;
	position: absolute;
	top: -50px;
}
.achieve-container .achieve-flex .achieve-case p.name {
	font-size: 2.2rem!important;
	text-align: center;
	padding: 10px 0 5px;
	/*font-weight: 600;*/
}
.achieve-container .achieve-flex .achieve-case .txt-flex {
	display: flex;
	justify-content: center;
	align-items: flex-end;
}
.achieve-container .achieve-flex .achieve-case .txt-flex .before-txt {
	font-size: 1.8rem;
	line-height: 1.2;
}
.student-achieve-box span.gray {
	color: #676767;
	text-decoration: underline;
}
.student-achieve-box span.score {
	font-size: 2.5rem;
	padding: 0 5px;
}
.student-achieve-box span.arrow {
	font-size: 2.2rem;
}
.achieve-container .achieve-flex .achieve-case .txt-flex .after-txt {
	font-size: 4rem;
	font-weight: bold;
	line-height: 0.8;
	padding: 0 0 0 10px;
	color: #33B371;
}
.achieve-container .achieve-flex .achieve-case p.txt {
	font-size: 2.2rem;
	text-align: center;
	padding: 0 0 15px;
	line-height: 1.5;
	white-space: pre-wrap;
	/*color: #33B371;*/
	color: #333;
}
.achieve-container .achieve-flex .achieve-case p.txt span.ani-line {
	color: #f05f26;
	font-weight: 600;
	/*background-image: linear-gradient(to right, #facbb9 0%, #facbb9 70%, transparent 70%);*/
}
.achieve-container .achieve-flex .achieve-case p.txt.style02 {
	font-size: 3rem;
	text-align: center;
	padding: 0 0 0;
	line-height: 1.5;
	font-weight: 600;
	color: #33B371;
}

/*20251209 修正ver*/
.achieve-container .achieve-flex .achieve-detail {
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.achieve-container .achieve-flex .achieve-detail p.basic-txt {
	white-space: pre-wrap;
}
.achieve-container .achieve-flex .achieve-detail .detail-txt {
	width: 75px;
	display: inline-block;
	padding: 2px 5px;
	margin: 0 auto 10px;
	text-align: center;
}

/*before*/
.achieve-container .achieve-flex .achieve-detail.before {
	position: relative;
	background: #F6F6F6;
	padding: 55px 20px 20px;
}
.achieve-container .achieve-flex .achieve-detail.before::before {
    content: "BEFORE";
    display: inline-block;
    font: 3.5rem / 1 "Lato";
    font-weight: bold;
    color: #ddd;
    opacity: 1;
    position: absolute;
    left: 10px;
    top: 10px;
}
.achieve-container .achieve-flex .achieve-detail.before .detail-txt {
	background: #ccc;
	color: #333;
	display: none;
}

/*after*/
.achieve-container .achieve-flex .achieve-detail.after {
	position: relative;
	background: #f1f9f5;
	padding: 55px 20px 20px;
}
.achieve-container .achieve-flex .achieve-detail.after::before {
    content: "AFTER";
    display: inline-block;
    font: 3.5rem / 1 "Lato";
    font-weight: bold;
    color: #aee8ca;
    opacity: 1;
    position: absolute;
    left: 10px;
    top: 10px;
}
.achieve-container .achieve-flex .achieve-detail.after .detail-txt {
	background: #33b371;
	color: #fff;
	display: none;
}

.achieve-container .achieve-flex .achieve-detail-img {
	width: 20px;
	margin: 20px auto 20px;
}
.achieve-container .achieve-flex .achieve-detail-img img {
	width: 100%;
	object-fit: cover;
	object-position: center;
}
.achieve-container .achieve-flex .achieve-detail-btn {
	display: flex;
	justify-content: center;
}
.achieve-container .achieve-flex .achieve-detail-btn a {
	width: 260px;
	display: block;
	text-align: center;
	position: relative;
	display: inline-block;
	padding: 20px 0;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	margin: 20px auto 0;
	background: transparent;
	border: 1px solid #333;
	color: #333;
}
.achieve-container .achieve-flex .achieve-detail-btn a:hover {
	color: #fff;
	border: 1px solid #33b371;
	opacity: none;
}
.achieve-container .achieve-flex .achieve-detail-btn a::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	content: '';
	background: #33b371;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .5s;
}
.achieve-container .achieve-flex .achieve-detail-btn a::after {
	content: "\f054";
	font: 900 1.3rem / 1 "Font Awesome 5 Free";
	position: absolute;
	top: calc((100% - 1em) / 2);
	right: 15px;
}
.achieve-container .achieve-flex .achieve-detail-btn a:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

/*20251209 続きを読む*/
.read-more-1 .more-box {
    height: 100%;
}
.read-more-1 label {
    display: none;
}

@media screen and (max-width: 768px) {
	.ex-area.achieve {
		padding: 0 0 30px;
		margin-bottom: 30px;
	}
	
	.ex-area.achieve .achieve-ttl {
		font-size: 1.6rem;
		line-height: 2.5;
		padding-bottom: 0;
	}
	.ex-area.achieve .achieve-ttl span {
		padding: 6px;
		margin: 0 2px;
		font-size: 2rem;
	}
	
	/*PC版は非表示*/
	.achieve-container .pc-only {
		display: none!important;
	}
	.achieve-container .sp-only {
		display: flex!important;
	}
	/*PC版は非表示 end*/
	
	.achieve-container .achieve-flex {
		margin: 0 0 0;
	}
	.achieve-container .achieve-flex .achieve-case {
		width: 100%;
		position: relative;
		border: solid 1px #333;
		padding: 20px 10px 20px;
	}
	.achieve-container .achieve-flex .achieve-case .achieve-img img {
		width: 100px;
		height: 100px;
		position: static;
	}
	.achieve-container .achieve-flex .achieve-case p.name {
		font-size: 1.7rem!important;
	}
	.achieve-container span.score {
		font-size: 2.2rem!important;
	}
	.achieve-container .achieve-flex .achieve-case .txt-flex {
		padding: 0 0 0;
	}
	.achieve-container .achieve-flex .achieve-case .txt-flex .after-txt {
		font-size: 3.3rem!important;
	}
	
	.achieve-container .achieve-flex .achieve-case p.txt {
		font-size: 1.6rem;
		padding: 0 0 15px;
		/*text-align: left;*/
	}
	.achieve-container .achieve-flex .achieve-case p.txt.style02 {
		font-size: 2.2rem;
	}
	
	/*20251209 修正ver*/
	.achieve-container .achieve-flex .achieve-detail p.basic-txt {
		font-size: 1.4rem;
		line-height: 1.5;
	}
	.achieve-container .achieve-flex .achieve-detail .detail-txt {
		font-size: 1.5rem;
		padding: 0 5px;
		width: 60px;
	}
	
	/*before*/
	.achieve-container .achieve-flex .achieve-detail.before {
		padding: 45px 20px 20px;
	}
	.achieve-container .achieve-flex .achieve-detail.before::before {
		font-size: 2.5rem;
	}

	/*after*/
	.achieve-container .achieve-flex .achieve-detail.after {
		padding: 45px 20px 20px;
	}
	.achieve-container .achieve-flex .achieve-detail.after::before {
		font-size: 2.5rem;
	}
	
	.achieve-container .achieve-flex .achieve-detail-img {
		width: 20px;
		margin: 15px auto 15px;
	}
	.achieve-container .achieve-flex .achieve-detail-btn a {
		width: 100%;
		padding: 15px 0;
	}
	
	/*20251209 続きを読む*/
	.read-more-1 {
		position: relative;
	}
	.read-more-1 .more-box {
		position: relative;
		max-height: 320px; /* 開く前に見せたい高さを指定 */
		margin-bottom: 0;
		overflow: hidden;
		transition: max-height 1s;
	}
	.read-more-1:has(:checked) .more-box {
		max-height: 100vh;
	}
	.read-more-1 .more-box::after {
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 60px;
		background: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 0, hsla(0, 0%, 100%, .9) 50%, hsla(0, 0%, 100%, .9) 0, #fff);
		content: '';
	}
	.read-more-1:has(:checked) .more-box::after {
		content: none;
	}
	.read-more-1 label {
		display: flex;
		align-items: center;
		gap: 0 4px;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		color: #4f96f6;
		font-size: .8em;
	}
	.read-more-1 label:hover {
		color: #c7511f;
		text-decoration: underline;
		cursor: pointer;
	}
	.read-more-1:has(:checked) label {
		display: none;
	}
	.read-more-1 label::after {
		display: inline-block;
		width: 10px;
		height: 5px;
		background-color: #b6bdc3;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		content: '';
	}
	.read-more-1 input {
		display: none;
	}
	
}
#school-detail .edu-policy {
  padding: 60px 0 120px;
}
#school-detail .edu-policy h3 span {
  line-height: 1.1;
  font-size: 3.2rem;
  background: #32b372;
  color: #fff;
  padding: 6px;
  display: inline-block;
  /* margin: 0 2px; */
  margin: 10px 2px;
}
#school-detail .edu-policy h3 {
  font-size: 3.2rem;
  text-align: center;
  margin: 0 0 30px;
}
.num1::before{
  content:"01";
  font-weight:bold;
}
.num2::before{
  content:"02";
  font-weight:bold;
}
.num3::before{
  content:"03";
  font-weight:bold;
}
.num4::before{
  content:"04";
  font-weight:bold;
}
.worries-inner ul:first-child img {
  max-width: 250px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
#school-detail .lounge-txt-area {
  margin: 60px 0!important;
}
@media screen and (max-width: 768px) {
  #school-detail .lounge-txt-area {
    margin: 40px 0!important;
    margin-top: 40px;
    padding: 0;
  }
}
#school-detail .about-area.lounge-txt-area .inner h3 {
  line-height: 1.5;
}
/* タイトル背景 */
#school-detail .top-area.lounge-top-area {
background: url(/vendor/juku-demo/control/img/img-course-lounge.jpg) center / cover no-repeat;
}

#school-detail-mv.lounge-top-area .txt-block{
  /* background: #B3424A; */
  padding: 70px 25px;
  display:inline-block;
  margin-left: 120px;

  width: 380px;

  /* 20260529 色変更 */
  background: var(--lounge);
}
#school-detail-mv.lounge-top-area .catch{
  color:#fff;
}
@media screen and (max-width: 768px) {
	#school-detail-mv.lounge-top-area .txt-block {
		padding: 40px 15px;
		display: inline-block;
		margin-left: 120px;
		margin-bottom: 20px;
		
		width: 240px;
	}
}

/* 放課後学習ラウンジ4つの特徴 背景赤枠 */
#school-detail .block-caption.red {
  display: inline-block;
  width: auto;
  /* background: #B3424A; */
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  text-align: center;
  padding: 10px 30px;
  position: relative;
  top: 25px;
  font-size: 2rem;
  z-index: 1;

  /* 20260529 色変更 */
  background: var(--lounge);
}
#school-detail .block-caption.red::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid transparent;
    border-top-width: 10px;
    border-top-style: solid;
    border-top-color: transparent;
  /* border-top: 10px solid #B3424A; */

  /* 20260529 色変更 */
  border-top: 10px solid var(--lounge);
}
/* 茅ヶ崎校の教育方針 */
.edu-policy .around-list li:nth-child(3),
.edu-policy .around-list li:nth-child(4){
  margin-top:10px;
}
@media screen and (max-width:768px){
	#school-detail .edu-policy {
  padding: 40px 20px!important;
}
  #school-detail .edu-policy .inner h3 span{
    font-size:2.2rem;
    padding:6px;
    margin:0 2px 4px;
  }
    #school-detail .edu-policy .inner h3 {
    font-size: 2.2rem;
    line-height: 3.6rem;
    margin: 0 0 10px 0;
    padding: 0 20px;
  }
  .edu-policy .around-list li{
  margin-top:20px!important;
  }
  #school-detail .edu-policy {
  padding: 40px 0 40px;
}
  #school-detail .edu-policy .around-list {
    gap: 20px 20px;
    margin: 20px 0 0;
  }
}
