/*============================================
FirstView
============================================*/

.sec-fv-gakudailp {
	background-image: url('../images/lp-gakudai/fv.png');
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    flex-direction: column;
    flex-wrap: wrap;
}

.sec-fv-gakudailp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 透明度50%の黒いオーバーレイ */
    z-index: 1; /* オーバーレイがテキストの下に来るように調整 */
}


.sec-fv-gakudailp > * {
    position: relative;
    z-index: 2; /* テキストがオーバーレイの上に来るように調整 */
}

.gakudailp-top-txt-white {
	color: #fff;
	padding: 0 15px;
	margin-bottom: 10px;
	font-size: 2.5em;
}
	@media (max-width: 800px) {
		.gakudailp-top-txt-white {
			font-size: 1.5em;
		}
	}


.speech-bubble {
	position: relative;
	background: #fff;
	border-radius: 0.5em;
	padding: 10px;
	max-width: 300px;
	margin: 20px;
	border: 3px solid #c4d728;
  }
  
.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #fff;
    border-bottom: 0;
    margin-left: -10px;
    margin-bottom: -10px;
}

.speech-bubble::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 0;
    border: 15px solid transparent; /* 少し大きめにしてボーダーを見せる */
    border-top-color: #c4d728; /* 黒いボーダーを追加 */
    border-bottom: 0;
    margin-left: -15px;
    margin-bottom: -15px;
    z-index: -1; /* 矢印のボーダーが後ろに表示されるように */
}

.lp-gakudai-a-img {
	width: 70%;
}

.lp-gakudai-a-img img {
	width: 100% !important;
}

#lp-gakudai img {
	width: 50%;
	margin: 0 auto 30px;
}
	@media (max-width: 800px) {
		#lp-gakudai img {
			width: 90%;
			margin: 0 auto 30px;
		}
	}

hr {
	border: 1px solid #c3d72856;
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
}

#lp-gakudai .t-center {
	text-align: center;
}

#lp-gakudai .t-red {
	color: #ff4545;
}