@charset "UTF-8";
/* =====================================================================
kv
===================================================================== */
.kv {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.kv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.kv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transform: scale(1.15);
	transition:transform 7s ease;
}

.kv__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.kv__slide.is-active img {
  transform: scale(1);
}


/* =========================
   Text Animation
========================= */
/*
.kv__content {
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  color: #fff;

  opacity: 0;
  transform: translateY(30px);
  transition: 
    opacity 1.2s ease,
    transform 1.2s ease;
}

.kv__slide.is-active .kv__content {
  opacity: 1;
  transform: translateY(0);
}

.kv__title {
  font-size: 48px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.kv__text {
  font-size: 18px;
  letter-spacing: 0.08em;
}
*/

/* =====================================================================
CONCEPT
===================================================================== */
.concept {
  background: #f7f7f7;
  padding: 70px 0;
  position: relative;
	 overflow-x: clip;
}

.concept h2 {
  letter-spacing: 0.12em;
  color: #2c2cb2;
  border-top: 1px solid #2c2cb2;
  padding-top: 30px;
	font-size: 16px;
}

.concept .concept__visual {
	text-align: center;
	margin: 90px auto;
}
.concept .concept__visual img {
  max-width: 850px;
  width: 100%;
}

.concept h3 {
	text-align: center;
  font-size: 40px;
	line-height: 1.6;
  color: #2c2cb2;
  margin: 80px auto;
}

/* 本文 */
.concept__text {
  line-height: 2;
  color: #2c2cb2;
	text-align: center;
	font-size: 20px;
}
.concept__text p{
	font-weight: 600;
	margin-bottom: 90px;
}

/* 校名 */
.concept__school {
	text-align: center;
}
.concept__school figure{
	width: 600px;
	margin: 0 auto;
}
.concept__school figure img{
	width: 100%;
}
.concept__school-note {
	font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
	font-weight: 600;
  margin-top: 20px;
  color: #2c2cb2;
}

.concept::after {
  content: "";
  position: absolute;
  right: -200px;
  bottom: -300px;
  width: 500px;
  height: 500px;
  background: url('/common/img/bg_circle01.png') no-repeat center/contain;
	z-index: 1000;
}
/* =====================================================================
PURPOSE
===================================================================== */
.purpose {
  background: #f7f7f7;
  padding: 70px 0;
  position: relative;
}
.purpose h2 {
  letter-spacing: 0.12em;
	color: #2c2cb2;
  border-top: 1px solid #2c2cb2;
  padding-top: 30px;
	font-size: 16px;
}
.purpose h3 {
	text-align: center;
  font-size: 50px;
	line-height: 1.6;
  color: #2c2cb2;
  margin: 80px auto 40px;
}
.purpose p {
	text-align: center;
	font-size: 18px;
	line-height: 1.8;
  color: #2c2cb2;
}

/* =============MESSAGE========================================================
MESSAGE
===================================================================== */
.message {
  background: #3232bb;
  color: #ffffff;
  padding: 70px 0 300px;
  position: relative;
  overflow: hidden;
}

.message h2 {
  letter-spacing: 0.12em;
  border-top: 1px solid #fff;
  padding-top: 30px;
	font-size: 16px;
}


/* ===== レイアウト ===== */
.message__body {
  margin: 160px auto 40px;
	max-width: 1200px;
}

/* ===== 縦書き ===== */
.message__vertical h3{
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 40px;
  line-height: 0.9;
  letter-spacing: 0.1em;
}
.message__vertical h3 span{
	text-indent: -24px;
	display: block;
}

/* ===== 本文 ===== */
.message__text p {
  line-height: 2.2;
  margin-bottom: 30px;
  font-size: 16px;
}

.message__profile{
	max-width: 1200px;
	margin: 0 auto;
}
/* ===== 写真 ===== */
.message__photo {
  max-width: 100%;
}

/* ===== 名前部分 ===== */
.message__name {
  padding-left: 40px;
}

.school__name {
  font-size: 16px;
  margin-bottom: 15px;
}

.principal__name {
  font-size: 30px;
  letter-spacing: 0.1em;
	margin: 0;
}
/* 右下装飾 */
.message::after {
  content: "";
  position: absolute;
  right: -200px;
  bottom: 400px;
  width: 600px;
  height: 600px;
  background: url('/common/img/bg_circle02.png') no-repeat center/contain;
  pointer-events: none;
}
/* ===== 背景テキスト（巨大 Principal’s Message） ===== */
.message::before {
  content: "";
  position: absolute;
  left: 50%;
transform: translateX(-50%);
  bottom: 0px;
  width: 1650px;
  height: 300px; /* 画像高さに合わせる */
  background: url("/top/img/message_02.png") no-repeat left bottom / contain;
  pointer-events: none;
  z-index: 0;
}
