.schoolphoto-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ヒーローセクション */
.schoolphoto-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.schoolphoto-hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: blur(6px);
  object-fit: cover;
}

.schoolphoto-hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: 900;
  color: #FFF;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
               0 0 40px rgba(0, 0, 0, 1),
               0 0 20px rgba(255, 255, 255, 0.6),
               0 0 30px rgba(255, 255, 255, 0.4);
}

/* メインコンテンツ */
.schoolphoto-content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  flex: 1;
  text-align: center;
}

/* ロゴ */
.schoolphoto-logo {
  margin-bottom: 3rem;
}

.schoolphoto-logo img {
  max-width: 400px;
  width: 100%;
  height: auto;
}

/* 本文 */
.schoolphoto-text {
  margin-bottom: 4rem;
}

.schoolphoto-text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 2;
  margin: 0 0 2rem 0;
}

.schoolphoto-text p:last-child {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #888;
}

/* 赤いボタン */
.schoolphoto-button-container {
  margin-bottom: 4rem;
}

.schoolphoto-button {
  display: inline-block;
  background-color: #e74c3c;
  padding: 1.5rem 3rem;
  border-radius: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
  text-decoration: none;
}

.schoolphoto-button:hover {
  background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.schoolphoto-button img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .schoolphoto-hero-title {
    font-size: 2rem;
    left: 5%;
  }

  .schoolphoto-content-wrapper {
    padding: 3rem 1.5rem;
  }

  .schoolphoto-logo img {
    max-width: 300px;
  }

  .schoolphoto-text p {
    font-size: 1rem;
  }

  .schoolphoto-button {
    padding: 1.2rem 2rem;
  }

  .schoolphoto-button img {
    max-width: 250px;
  }
}
