/*************************************************
  GnoLet 共通
**************************************************/
.gno-main .my-panel{
	margin-left: 50px;
}
.gno-main .my-panel[data-aling="center"]{
	text-align: center;
}
.gno-main .my-content{
	display: flex;
	display: -webkit-flex;
	width: 100%;
	height:auto;
	padding: 6px;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	/*
	gap: 20px 20px;
	*/
	gap: 10px 0px;
}

.gnolet-img {
	display:block;
	width:90%;
	height:auto;
	margin: 2em auto;
	/* 957px; */
}

/***************************************/
/* Topページ(index)                    */
/***************************************/
.top-content{
	margin:3em 0 4em;
	color:#ff8288;
	font-size:1em;
	text-align:center;
	line-height:1.6;
}
/* サブタイトルイメージ */
.top-subtitle {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0px 0px 16px;
}
.top-subtitle-line-img {
	display:block;
	position: absolute; 
	top: 50%;
	width: 100%;
	z-index: 0;
}
.top-subtitle-img-top {
	position: relative;
	display:block;
	margin: 0px auto;
	width: 280px;
	z-index: 99; 
}
.top-subtitle-img {
	position: relative;
	display:block;
	margin: 0px auto;
	width: 180px;
	z-index: 99; 
}

/* 生徒 Grid */
.top-std-group{
	width: 100%;
}
.top-std-container {
	display: flex;
	flex-direction: column; /* 縦並びにする */
}
.top-std-cate-img {
	display: block;
	width: 100%;
	margin: 10px 0;
}
.top-std-items{
	display: flex;
	width: 100%;
	flex-wrap:wrap;
	align-items: center;
	column-gap:5px;
	row-gap:5px;
}
.top-std-item{
	/* （100% - 横のギャップ合計） ÷ 5個 */
	width: calc((100% - (5px * 4)) / 5);
	/*
	overflow: hidden;
	*/
}
.top-std-item a {
	display: block;
	width: 100%;
	height: 100%;
	cursor:  pointer;
}
.top-std-item img {
	width:100%;
	height:auto;
	transition: transform .6s ease;	/* ゆっくり変化させる */
	border: 1px solid transparent;	/* 初期状態は透明にする */
}
.top-std-item:hover img {
	/* 拡大する場合 */
	transform: scale(105%);
	/* ホバー時枠線表示 */
	border-color: #357D69;
}

/* 質問 */
.top-question-container {
	display: flex;
	flex-wrap:wrap;
	align-items: center;
	column-gap:10px;
	row-gap:20px;
}
.top-question{
	/* （100% - 横のギャップ合計） ÷ 3個 */
	//width: calc((100% - (10px * 2)) / 3);
	width: calc((100% - (10px * 1)) /2);
	height:50px;
	padding:0;
}
.top-question a {
	display: block;
	width: 100%;
	height: 100%;
	cursor:  pointer;
}
.top-question img {
	/*
	width:100%;
	height:auto;
	*/
	width:auto;
	height:40px;
}
.top-question:hover img {
	/* 白くする場合 */
	opacity: 0.8;
	box-shadow:0 1px 1px -6px rgba(0,0,0,.3);
	transform:translateY(.5px);
}

/* アンケート */
.top-survey-container {
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	align-items: center;
	column-gap:60px;
	row-gap:20px;

}
.top-survey{
	/* （100% - 横のギャップ合計） ÷ 4個 */
	width: calc((100% - (60px * 3)) / 4);
	/*
	width:25%;
	*/
}
.top-survey a {
	display: block;
	width: 100%;
	height: 100%;
	cursor:  pointer;
}
.top-survey img {
	/*
	width:auto;
	height:140px;
	*/
	width:100%;
	height:auto;

}
.top-survey:hover img {
	/* 白くする場合 */
	opacity: 0.8;
	box-shadow:0 1px 1px -6px rgba(0,0,0,.3);
	transform:translateY(.5px);
}


/***************************************/
/* Tooltip                             */
/***************************************/
.custom-tooltip {
	position: relative;
	text-decoration: underline;
	color: blue;
}
.custom-tooltip::after {
	/*
	content: attr(data-tooltip);
	*/
	content: attr(data-tooltip) "\A" attr(data-tooltip2);
	white-space:pre;
	line-height:1.2;
	position: absolute;
	z-index:99;
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
	padding: 5px 10px;
	background-color: #333;
	color: #fff;
	font-size: 0.8em; 
	border-radius: 4px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s;
}
.custom-tooltip::first-line {
  font-size: 22px; /* 1行目の基準サイズ */
}

.custom-tooltip:hover::after {
	visibility: visible;
	opacity: 1;
}
/***************************************/
/* 行　点線アンダーライン              */
/***************************************/
.loose-leaf0{
  /* 背景のサイズ（幅と高さ） */
  background-size: 6px 2px;
  /* 線と透明な余白のグラデーション */
  background-image: linear-gradient(to right, #333 0%, #333 2px, transparent 2px, transparent 6px);
  /* 背景の繰り返し設定 */
  background-repeat: repeat-x;
  /* 線の位置（下線にする場合） */
	background-size:
		8px 100%;

  background-position: bottom;

}
.loose-leaf1 {
	margin:10px 0 0 1em;
	background-color: rgba(255, 255, 255, 0); /* 背景色 */
	/* 下点線 */
	background-image:
		linear-gradient(
			90deg,
			transparent 0%,
			transparent 50%,
			#fff 50%,
			#fff 100%
			/*
			rgba(255, 255, 255, 1)  50%,
			rgba(255, 255, 255, 1) 100%,
			rgba(0,0,0,0) 0%,
			rgba(0,0,0,0) 50%,
			*/
		),
		linear-gradient(
			180deg,
			transparent 0%,
			transparent 97%,
			#ffbfc4 97%,
			#ffbfc4 100%
			/*
			rgba(0,0,0,0) 0%,
			rgba(0,0,0,0) 97%,
			#ffbfc4 97%,
			#ffbfc4 100%
			*/
		);
	background-size:
		8px 100%,
		100% 2em;
	line-height:2;
}

.loose-leaf2 {
	/* 上下点線 */
	background-color: #fff; 																		/* 背景色 */
	background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%), /* 点線1の色 */
	linear-gradient(180deg, #ffbfc4 1px, transparent 1px); 											/* 点線2の色と太さ */
	background-size: 8px 100%, 																		/* 点線1のサイズ */
	100% 2.5em; 																					/* 点線2のサイズ */
	line-height: 2.5em; 																			/* 文字の高さ */
	padding-bottom: 1px;																			/* 最終行の下にも罫線を引く */
}



/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 Tablet
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 1024px) {
}
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 SP
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width: 767px) {
}
/*_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
 SP minimamu 
_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/*/
@media screen and (max-width:480px){
	.gnolet-img {
		width:100%;
		margin: 1em auto;
	}
	.top-content{
		margin:0em 0 1em;
		font-size:0.8em;
	}
	/* サブタイトルイメージ */
	.top-subtitle {
		margin: 0px;
	}
	.top-subtitle-line-img {
		height:4px;

	}
	.top-subtitle-img-top {
		width: 150px;
	}
	.top-subtitle-img {
		width: 110px;
	}

	/* 生徒 Grid */
	.top-std-container {
		margin-bottom:10px;
	}
	.top-std-cate-img {
		margin: 0px 0 5px;
	}
	.top-std-item{
		/* （100% - 横のギャップ合計） ÷ 4個 */
		width: calc((100% - (5px * 2)) / 3);
	}

	/* 質問 */
	.top-question-container {
		column-gap:0px;
		row-gap:0px;
	}
	.top-question{
		width: 100%;
	}
	.top-question a {
		display: block;
		width: 100%;
		cursor:  pointer;
	}
	.top-question img {
	}

	/* アンケート */
	.top-survey-container {
		margin-top:10px;
		column-gap:30px;
		row-gap:20px;
	}
	.top-survey{
		width: calc((100% - (60px * 1)) / 2);
	}
	.top-survey img {
	}
}

