/**
 * Theme Name: Motoi Website 
 * version: 1.0.0
*/
/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
	
.grecaptcha-badge { visibility: hidden; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* SP専用改行 */
.sp-br {
  display: none;
}

/* 活動カードスライダー */
.programs__slider {
  position: relative;
  width: 100vw;
  max-width: none;
  margin: 100px 0 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.programs__slider::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.programs__slider:active {
  cursor: grabbing;
}

.programs__slider-container {
  display: flex;
  gap: 40px;
  transition: transform 0.3s ease;
  padding-left: 100px;
}

/* 活動カード */
.activity-card {
  background: #f8f8f8;
  border-radius: 24px;
  padding: 40px 80px 80px 80px;
  display: flex;
  gap: 24px;
  align-items: center;
  position: relative;
  flex-shrink: 0;
  min-width: 836px;
}

.activity-card__image {
  width: 248px;
  height: 250px;
  flex-shrink: 0;
}

.activity-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.activity-card__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.activity-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  border-radius: 10px;
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d3a2c;
  line-height: 1.2;
  width: fit-content;
}

.activity-card__tag--yellow {
  background: #ffd485;
}

.activity-card__tag--red {
  background: #ff8282;
}

.activity-card__tag--green {
  background: #b6da67;
}

.activity-card__tag--blue {
  background: #63ceff;
}

.activity-card__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.6px;
  color: #3d3a2c;
  line-height: 1.5;
  margin: 0;
}

.activity-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.activity-card__subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #3d3a2c;
  line-height: 1.5;
  margin: 0;
}

.activity-card__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  line-height: 2;
  margin: 0;
  max-width: 402px;
}

.activity-card__tags {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 70%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
}

.activity-card__hashtag {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
}

.activity-card--event .activity-card__hashtag {
  color: #ffd485;
}

.activity-card--lesson .activity-card__hashtag {
  color: #ff8282;
}

.activity-card--project .activity-card__hashtag {
  color: #b6da67;
}

.activity-card--meeting .activity-card__hashtag {
  color: #63ceff;
}

/* スライダーナビゲーション */
.programs__slider-nav--sp {
  display: none;
}

.programs__slider-nav--pc {
  position: absolute;
  bottom: 40px;
  right: 100px;
  display: flex;
  gap: 8px;
}

.programs__slider-btn {
  width: 40px;
  height: 40px;
  background: #ffb838;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.programs__slider-btn:hover {
  transform: translateY(-2px);
}

.programs__slider-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.programs__slider-btn--prev .programs__slider-arrow {
  transform: rotate(180deg);
}

.programs__slider-arrow {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ヘッダーナビゲーション */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
}

.header__content {
  position: relative;
  width: 100%;
  height: 100px;
}

.header__content--sp {
  display: none;
}

/* PCヘッダー */
.header__content--pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 40px;
  width: 100%;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo-img {
  width: 79.286px;
  height: 37px;
  object-fit: contain;
}

/* PCメニューボタン */
.header__menu-btn {
  position: relative;
  width: 100px;
  height: 100px;
  background: white;
  border: none;
  border-bottom-left-radius: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  flex-shrink: 0;
}

.header__menu-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 31px;
}

.header__hamburger-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__corner-line {
  position: absolute;
  width: 24px;
  height: 24px;
}

.header__corner-line--top {
  right: 100px;
  top: 0;
  transform: scaleY(-1);
}

.header__corner-line--bottom {
  right: 0;
  bottom: -24px;
  transform: rotate(270deg);
}

.header__corner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* PCSNSアイコン */
.header__sns {
  position: absolute;
  right: 30px;
  top: 124px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.header__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 40px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.header__sns-link:hover {
  transform: translateY(-2px);
}

.header__sns-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.header__sns-icon--note {
  width: 32px;
  height: 32px;
  mix-blend-mode: exclusion;
}

/* メインコンテンツ */
.main {
  position: relative;
  z-index: 1;
}

/* プログラム紹介セクション */
.programs {
  padding: 100px 0;
  background: white;
}

.programs__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.programs__content {
  flex: 1;
  max-width: 50%;
  padding: 0 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.programs__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.programs__subtitle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.programs__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transform: rotateY(180deg) scaleY(-1);
}

.programs__deco-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.programs__subtitle-text {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d3a2c;
  line-height: 1.2;
}

.programs__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.6px;
  color: #3d3a2c;
  line-height: 1.5;
  margin: 0;
}

.programs__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.programs__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  color: #3d3a2c;
  line-height: 1.5;
  margin: 0;
}

.programs__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  line-height: 2;
  margin: 0;
}

/* イラスト部分（PC版のみ） */
.programs__illustration--pc {
  flex: 1;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}

.programs__books {
  width: 400px;
  height: 400px;
  object-fit: contain;
}

/* 活動内容ボタン */
.programs__cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 292px;
  min-width: 210px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.programs__cta-btn:hover {
  background: #ffb838;
}

.programs__cta-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  line-height: 1.2;
  padding: 0 8px;
  transition: transform 0.3s ease;
}

.programs__cta-btn:hover .programs__cta-text {
  transform: translateX(2px);
}

.programs__cta-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffb838;
  border-radius: 20px;
  flex-shrink: 0;
}

.programs__arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.programs__cta-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('img/arrow-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.programs__cta-btn:hover .programs__arrow {
  opacity: 0;
}

.programs__cta-btn:hover .programs__cta-icon::after {
  opacity: 1;
}

/* 成長の証明セクション */
.evidence {
  position: relative;
  padding: 100px 0;
  background: white;
  overflow: hidden;
}

.evidence__container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
}

/* 背景装飾 */
.evidence__bg-decoration {
  position: absolute;
  left: -200px;
  top: -205px;
  transform: none;
  width: 669px;
  height: 736px;
  z-index: 0;
}

.evidence__bg-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ヘッダー部分 */
.evidence__header {
  position: relative;
  z-index: 1;
  padding: 60px 0 60px 550px;
  margin-bottom: 0;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.evidence__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 550px;
}

.evidence__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.evidence__subtitle-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px;
}

.evidence__subtitle-deco {
  width: 16px;
  height: 16px;
  transform: rotate(180deg) scaleY(-1);
}

.evidence__subtitle-en {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d3a2c;
  line-height: 1.2;
  margin: 0;
}

.evidence__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.6px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
}

.evidence__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.evidence__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
  background: white;
  padding: 5px;
  display: inline-block;
  width: fit-content;
}

.evidence__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
  margin: 0;
}

/* メンバーインタビュー */
.evidence__interview {
  position: relative;
  padding: 140px 0 32px;
  margin-bottom: 100px;
}

.evidence__interview-title {
  position: absolute;
  top: 30px;
  left: 56%;    
  width: 90%;
  transform: translateX(-50%);
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 100px;
  letter-spacing: 5px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.08);
  margin: 0;
}

.evidence__members {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.evidence__member {
  width: 257px;
  text-decoration: none;
  display: block;
}

.evidence__member-image {
  position: relative;
  width: 257px;
  height: 317px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 8px;
  cursor: pointer;
}

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

.evidence__member-arrow {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  background: #ffb838;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evidence__arrow-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* ホバー時の白い矢印（最初は非表示） */
.evidence__member-arrow::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('img/arrow-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.evidence__member-image:hover .evidence__arrow-icon {
  opacity: 0;
}

.evidence__member-image:hover .evidence__member-arrow::after {
  opacity: 1;
}

.evidence__member-info {
  text-align: center;
}

.evidence__member-univ {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
  margin: 0 0 8px 0;
}

.evidence__member-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.9px;
  line-height: 2;
  color: #3d3a2c;
  margin: 0;
}

.evidence__member-name span {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
}

/* 統計セクション */
.evidence__stats {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.evidence__stats-header {
  flex-shrink: 0;
}

.evidence__stats-title-img {
  width: auto;
  height: 400px;
  object-fit: contain;
}

.evidence__stats-title-img--sp {
  display: none;
}

.evidence__stats-content {
  flex: 1;
}

.evidence__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

/* 統計カード */
.evidence__stat {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.evidence__stat-label {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  padding: 0 24px 16px 24px;
  border-bottom-right-radius: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #3d3a2c;
}

/* 内定率 */
.evidence__stat--placement {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 統計カード共通ラベルスタイル */
.evidence__stat--placement .evidence__stat-label,
.evidence__stat--companies .evidence__stat-label,
.evidence__stat--year .evidence__stat-label,
.evidence__stat--univ .evidence__stat-label {
  position: absolute;
  top: 0;
  left: 0;
  background: white;
  padding: 8px 24px;
  border-bottom-right-radius: 16px;
  text-align: left;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.8px;
  color: #3d3a2c;
}

.evidence__stat--placement .evidence__stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 40px 40px;
  width: 100%;
}

.evidence__stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 32px;
}

.evidence__stat-number {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 60px;
  line-height: 1.1;
  color: #3d3a2c;
}

.evidence__stat-unit {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.1;
  color: #3d3a2c;
  margin-left: 4px;
}
.evidence__stat-label{
  font-size:24px;
}
.evidence__stat-button {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 292px;
  margin: 0 auto;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.evidence__stat-button:hover {
  background: #ffb838;
}

.evidence__button-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.2;
  color: #3d3a2c;
  padding: 0 8px;
  transition: transform 0.3s ease;
}

.evidence__stat-button:hover .evidence__button-text {
  transform: translateX(2px);
}

.evidence__button-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: #ffb838;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evidence__button-arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.evidence__button-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('img/arrow-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.evidence__stat-button:hover .evidence__button-arrow {
  opacity: 0;
}

.evidence__stat-button:hover .evidence__button-icon::after {
  opacity: 1;
}

/* 協賛企業数 */
.evidence__stat--companies {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.evidence__stat--companies .evidence__stat-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 60px 40px 0;
  width: 100%;
  height: 100%;
}

.evidence__stat--companies .evidence__stat-value {
  margin-bottom: 0;
}

.evidence__stat--companies .evidence__stat-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  margin-left: 4px;
}

.evidence__stat-icons {
  width: 300px;
  height: auto;
  flex-shrink: 0;
  align-self: center;
  margin-top: auto;
}

.evidence__stat-icons img {
  width: 100%;
  height: auto;
  display: block;
}

/* チャート */
.evidence__stat--year,
.evidence__stat--univ {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.evidence__stat-chart-container {
  width: 300px;
  height: auto;
  position: relative;
  flex-shrink: 0;
  padding: 60px 40px 40px;
}

.evidence__chart-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* CTAボタン */
.evidence__cta {
  display: flex;
  justify-content: center;
}

.evidence__cta-button {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 292px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.evidence__cta-button:hover {
  background: #ffb838;
}

.evidence__cta-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.2;
  color: #3d3a2c;
  padding: 0 8px;
  transition: transform 0.3s ease;
}

.evidence__cta-button:hover .evidence__cta-text {
  transform: translateX(2px);
}

.evidence__cta-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: #ffb838;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.evidence__cta-arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.evidence__cta-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('img/arrow-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.evidence__cta-button:hover .evidence__cta-arrow {
  opacity: 0;
}

.evidence__cta-button:hover .evidence__cta-icon::after {
  opacity: 1;
}

/* IKJについてセクション */
.about-ikj {
  padding: 100px 0;
  background: #f8f8f8;
}

.about-ikj__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
}

.about-ikj__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

/* 左側テキストエリア */
.about-ikj__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-ikj__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-ikj__subtitle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.about-ikj__deco {
  width: 20px;
  height: 20px;
}

.about-ikj__deco-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-ikj__subtitle-text {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d3a2c;
  line-height: 1.2;
}

.about-ikj__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.6px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
}

.about-ikj__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-ikj__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
}

.about-ikj__paragraph {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
  margin: 0;
}

/* 右側ボタンエリア */
.about-ikj__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 508px;
  flex-shrink: 0;
}

.about-ikj__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 32px 36px 32px 24px;
  height: 104px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.about-ikj__button:hover {
  background: #ffb838;
}

.about-ikj__button-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #3d3a2c;
}

.about-ikj__button-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: #ffb838;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-ikj__arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.about-ikj__button-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('img/arrow-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-ikj__button:hover .about-ikj__arrow {
  opacity: 0;
}

.about-ikj__button:hover .about-ikj__button-icon::after {
  opacity: 1;
}


/* メインビジュアル */
.mainvisual {
  position: relative;
  width: 100%;
  height: 1171px;
  background-color: #3499cd;
  overflow: hidden;
}

.mainvisual__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1171px;
  background-image: url('img/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 10%;
}

.mainvisual__content {
  position: relative;
  width: 100%;
  height: 100%;
}

.mainvisual__content--sp {
  display: none;
}

/* メインビジュアル PCヘッディング */
.mainvisual__heading {
  position: absolute;
  top: 189px;
  left: 170px;
}

.mainvisual__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.5;
  letter-spacing: 2.4px;
  color: #3d3a2c;
  white-space: nowrap;
  background:white;
  margin-bottom:20px;
}

/* ���ƣ�ݤ�� */
.mainvisual__point {
  position: absolute;
  width: 100px;
  height: 80px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.mainvisual__balloon {
  position: relative;
  width: 100%;
  height: 100%;
}

.mainvisual__balloon-icon {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  aspect-ratio: 100/77.7522;
}

.mainvisual__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90.797deg);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mainvisual__arrow-icon {
  width: 100%;
  height: auto;
}

/* 協賛企業セクション */
.sponsors {
  padding: 100px 0;
  background: white;
}

.sponsors__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出し部分 */
.sponsors__header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.sponsors__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 306px;
}

.sponsors__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.6px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
  text-align: center;
}

/* 企業ロゴ一覧（コメントアウトでオフ）
.sponsors__logos {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1097px;
}

.sponsors__logos-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}
*/

/* 企業の声セクション */
.sponsors__voices {
  position: relative;
  display: flex;
  align-items: center;
  gap: 84px;
  overflow: hidden;
  margin-top: 80px;
}

/* 縦書き背景文字 */
.sponsors__voices-bg {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 100px;
  color: rgba(0, 0, 0, 0.15);
  writing-mode: vertical-rl;
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
  position: relative;
  z-index: 10;
  background: white;
  padding: 0 40px 0 0;
}

/* スライダー部分 */
.sponsors__voices-content {
  position: absolute;
  left: 200px;
  right: -600px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 400px;
}

/* スライダーコンテナ - 横スクロール */
.sponsors__voices-slider {
  display: flex;
  gap: 40px;
  height: 287px;
  transition: transform 0.3s ease;
}

/* 各企業の声コンテンツ - 元のサイズに戻す */
.sponsors__voice-item {
  width: 580px;
  height: 287px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  box-sizing: border-box;
  background: #f8f8f8;
  border-radius: 16px;
}

/* ヘッダー部分 */
.sponsors__voice-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sponsors__voice-company {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #3d3a2c;
}

.sponsors__voice-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* 役職・名前 */
.sponsors__voice-info {
  display: flex;
  gap: 8px;
  align-items: center;
}

.sponsors__voice-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #3d3a2c;
  white-space: nowrap;
}

.sponsors__voice-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #3d3a2c;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.sponsors__voice-honorific {
  font-size: 14px;
}

/* コンテンツ部分 */
.sponsors__voice-content {
  display: flex;
  gap: 14px;
  flex: 1;
  overflow: hidden;
}

.sponsors__voice-photo {
  width: 160px;
  height: 160px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.sponsors__voice-message {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.7px;
  color: #3d3a2c;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

/* ナビゲーションとボタンのコンテナ */
.sponsors__voices-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  top: 150px;
  position: relative;
}

/* ナビゲーション */
.sponsors__voices-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 400px;
}

.sponsors__voices-nav--sp {
  display: none !important;
}

.sponsors__voices-slider-track {
  flex: 1;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.sponsors__voices-slider-progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #ffb838;
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
}

.sponsors__voices-slider-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  transition: left 0.3s ease;
  cursor: grab;
  z-index: 10;
}

.sponsors__voices-slider-thumb:hover {
  background: #f5f5f5;
  border-color: #ffb838;
  transform: translate(-50%, -50%) scale(1.1);
}

.sponsors__voices-slider-thumb:active {
  cursor: grabbing;
  background: #ffb838;
  border-color: #ffb838;
}
}

.sponsors__voices-btn {
  width: 40px;
  height: 40px;
  background: #ffb838;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.sponsors__voices-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sponsors__voices-arrow {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* ドットインジケーター */
.sponsors__voices-dots {
  display: none;
}

.sponsors__voices-dot {
  width: 32px;
  height: 4px;
  background: #d9d9d9;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.sponsors__voices-dot--active {
  width: 40px;
  background: #ffb838;
  border-radius: 2px;
}

/* CTAボタン */
.sponsors__cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 292px;
  min-width: 210px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.sponsors__cta-btn:hover {
  background: #ffb838;
}

.sponsors__cta-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  line-height: 1.2;
  padding: 0 8px;
  transition: transform 0.3s ease;
}

.sponsors__cta-btn:hover .sponsors__cta-text {
  transform: translateX(2px);
}

.sponsors__cta-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffb838;
  border-radius: 20px;
  flex-shrink: 0;
}

.sponsors__cta-arrow {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.sponsors__cta-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('img/arrow-right-white.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sponsors__cta-btn:hover .sponsors__cta-arrow {
  opacity: 0;
}

.sponsors__cta-btn:hover .sponsors__cta-icon::after {
  opacity: 1;
}

/* 入塾案内セクション */
.admission {
  padding: 100px 0;
  background: #f8f8f8;
}

.admission__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ヘッダー部分 */
.admission__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.admission__image {
  width: 466px;
  height: 461px;
  object-fit: cover;
}

.admission__content {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.admission__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 306px;
}

.admission__subtitle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.admission__deco {
  width: 20px;
  height: 20px;
}

.admission__deco-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admission__subtitle-text {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d3a2c;
  line-height: 1.2;
}

.admission__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.6px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
}

.admission__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admission__lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
  background: white;
  padding: 5px;
  display: inline-block;
  width: fit-content;
}

.admission__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
  margin: 0;
}

/* 入塾の流れ */
.admission__flow {
  display: flex;
  gap: 98px;
  align-items: flex-start;
  position: relative;
}

/* 左側の縦書き画像 */
.admission__flow-title {
  position: sticky;
  top: 100px;
  width: 100px;
  height: 500px;
  flex-shrink: 0;
}

.admission__flow-title-img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.admission__flow-title-img-pc {
  display: block;
}

.admission__flow-title-img-sp {
  display: none;
}

.admission__flow-content {
  flex: 1;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

/* 縦線 */
.admission__flow-line {
  position: absolute;
  left: 65px;
  top: 115px;
  width: 4px;
  height: 797px;
  background: #d9d9d9;
  z-index: 0;
}

/* ステップ共通 */
.admission__step {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.admission__step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 324px;
}

.admission__step-icon {
  width: 100px;
  height: 100px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
}

.admission__step-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.admission__step-icon--orange {
  background: #ffb838;
}

.admission__step-icon--red {
  background: #ff6363;
}

.admission__step-icon--green {
  background: #b6da67;
}

.admission__step-icon--blue {
  background: #63ceff;
}

.admission__step-icon--purple {
  background: #a463ff;
}

.admission__step-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
}

.admission__step-content {
  flex: 1;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admission__step-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
  margin: 0;
}

/* お問い合わせのアクションボタン */
.admission__step-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.admission__tel-btn {
  background: #5dabde;
  border-radius: 999px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.admission__tel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(93, 171, 222, 0.3);
}

.admission__tel-icon {
  width: 32px;
  height: 32px;
}

.admission__tel-label,
.admission__tel-number {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 1px;
  color: white;
  line-height: 1;
}

.admission__contact-btn {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.admission__contact-btn:hover {
  background: #ffb838;
}

.admission__btn-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.2;
  color: #3d3a2c;
  padding: 0 8px;
  transition: transform 0.3s ease;
}

.admission__contact-btn:hover .admission__btn-text {
  transform: translateX(2px);
}

.admission__btn-icon {
  position: relative;
  width: 40px;
  height: 40px;
  background: #ffb838;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admission__btn-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.admission__btn-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('img/arrow-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.admission__contact-btn:hover .admission__btn-icon img {
  opacity: 0;
}

.admission__contact-btn:hover .admission__btn-icon::after {
  opacity: 1;
}

/* お知らせ・ブログセクション */
.news-blog__subtitle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.news-blog__deco {
  width: 20px;
  height: 20px;
}

.news-blog__deco-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.news-blog__subtitle-text {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d3a2c;
  line-height: 1.2;
}

.news-blog__more-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 292px;
  min-width: 210px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.news-blog__more-btn:hover {
  background: #ffb838;
}

.news-blog__more-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  line-height: 1.2;
  padding: 0 8px;
  transition: transform 0.3s ease;
}

.news-blog__more-btn:hover .news-blog__more-text {
  transform: translateX(2px);
}

.news-blog__more-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #ffb838;
  border-radius: 20px;
  flex-shrink: 0;
}

.news-blog__more-icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.news-blog__more-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('img/arrow-right-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.news-blog__more-btn:hover .news-blog__more-icon img {
  opacity: 0;
}

.news-blog__more-btn:hover .news-blog__more-icon::after {
  opacity: 1;
}

/* お知らせ一覧ページ */
.news-list {
  padding: 60px 0 100px;
}

.news-list__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.news-list__tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.news-list__tab {
  padding: 12px 32px;
  border: 2px solid #e0e0e0;
  border-radius: 100px;
  background: white;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.news-list__tab:hover {
  border-color: #ffb838;
  color: #ffb838;
}

.news-list__tab--active {
  background: #ffb838;
  border-color: #ffb838;
  color: white;
}

.news-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.news-list__item {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-list__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-list__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-list__item-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-list__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-list__item:hover .news-list__item-image img {
  transform: scale(1.05);
}

.news-list__item-content {
  padding: 20px;
}

.news-list__item-date {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: #999;
  display: block;
  margin-bottom: 8px;
}

.news-list__item-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #3d3a2c;
  line-height: 1.5;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-list__item-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ページネーション */
.news-list__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.news-list__pagination-current,
.news-list__pagination-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-list__pagination-current {
  background: #ffb838;
  color: white;
}

.news-list__pagination-link {
  background: white;
  color: #3d3a2c;
  border: 1px solid #e0e0e0;
}

.news-list__pagination-link:hover {
  border-color: #ffb838;
  color: #ffb838;
}

.news-list__pagination-prev,
.news-list__pagination-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.news-list__pagination-prev {
  margin-right: 8px;
}

.news-list__pagination-next {
  margin-left: 8px;
}

.news-list__pagination-prev:hover,
.news-list__pagination-next:hover {
  opacity: 0.7;
}

.news-list__pagination-prev img,
.news-list__pagination-next img {
  width: 24px;
  height: 24px;
}

/* 施設利用料 */
.admission__fee {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.admission__fee-card {
  background: white;
  border-radius: 16px;
  padding: 24px 40px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.admission__fee-label {
  position: absolute;
  top: 0;
  left: 0;
  background: #f8f8f8;
  padding: 4px 24px;
  border-bottom-right-radius: 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #3d3a2c;
}

.admission__fee-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.admission__fee-number {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: bold;
  font-size: 60px;
  line-height: 1;
  color: #3d3a2c;
  letter-spacing: 3px;
}

.admission__fee-unit {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 2;
  color: #3d3a2c;
}

.admission__fee-note {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 2;
  color: #3d3a2c;
  opacity: 0.5;
}

.admission__fee-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: rgba(51, 51, 51, 0.5);
  margin: 0;
}

/* ヒーローセクション（全ページ共通） */
.hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.hero__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-image--sp {
  display: none;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
}

.hero__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: white;
  letter-spacing: 2.4px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.philosophy-history__heading-en span:last-child {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #3d3a2c;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.philosophy-history__heading-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #3d3a2c;
  letter-spacing: 1.6px;
  margin: 0;
  line-height: 1.5;
}

.philosophy-history__content {
  margin-bottom: 60px;
}

.philosophy-history__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #3d3a2c;
  letter-spacing: 1.2px;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.philosophy-history__text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3d3a2c;
  letter-spacing: 0.8px;
  line-height: 2;
  opacity: 0.7;
  margin: 0;
}

/* タイムライン */
.philosophy-history__timeline {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.philosophy-history__timeline-item {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  min-height: 52px;
}

.philosophy-history__timeline-item--last {
  border-bottom: none;
}

.philosophy-history__timeline-year {
  width: 120px;
  padding: 10px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3d3a2c;
  letter-spacing: 0.8px;
  line-height: 2;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.philosophy-history__timeline-content {
  flex: 1;
  padding: 10px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3d3a2c;
  letter-spacing: 0.8px;
  line-height: 2;
  display: flex;
  align-items: center;
}

/* 宣誓文セクション */
.oath {
  margin-top: 60px;
  padding: 0 40px;
}

.oath__container {
  max-width: 960px;
  margin: 0 auto;
}

.oath__card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.oath__topbar {
  background: #5dabde;
  height: 24px;
}

.oath__content {
  padding: 80px 40px;
}

.oath__header {
  margin-bottom: 60px;
}

.oath__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oath__heading-en {
  display: flex;
  align-items: center;
  gap: 4px;
}

.oath__heading-deco {
  width: 16px;
  height: 16px;
  background: url('img/heading-deco.png') no-repeat center;
  background-size: contain;
  transform: rotate(180deg) scaleY(-1);
}

.oath__heading-en span:last-child {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #3d3a2c;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.oath__heading-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #3d3a2c;
  letter-spacing: 1.6px;
  margin: 0;
  line-height: 1.5;
}

.oath__intro {
  margin-bottom: 60px;
}

.oath__intro p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3d3a2c;
  letter-spacing: 0.8px;
  line-height: 2;
  opacity: 0.7;
  margin: 0 0 16px 0;
}

.oath__intro p:last-child {
  margin-bottom: 0;
}

.oath__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.oath__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.oath__item-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.oath__item-number {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #3d3a2c;
  letter-spacing: 1px;
  line-height: 1.5;
}

.oath__item-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #3d3a2c;
  letter-spacing: 1.2px;
  line-height: 1.5;
}

.oath__item-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3d3a2c;
  letter-spacing: 0.8px;
  line-height: 2;
  opacity: 0.7;
  margin: 0;
}

.oath__closing p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3d3a2c;
  letter-spacing: 0.8px;
  line-height: 2;
  opacity: 0.7;
  margin: 0;
}

/* よくある質問セクション */
.faq {
  margin-top: 60px;
  padding: 0 40px;
  margin-bottom: 80px;
}

.faq__container {
  max-width: 960px;
  margin: 0 auto;
}

.faq__card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.faq__topbar {
  background: #5dabde;
  height: 24px;
}

.faq__content {
  padding: 80px 40px;
}

.faq__header {
  margin-bottom: 60px;
}

.faq__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq__heading-en {
  display: flex;
  align-items: center;
  gap: 4px;
}

.faq__heading-deco {
  width: 16px;
  height: 16px;
  background: url('img/heading-deco.png') no-repeat center;
  background-size: contain;
  transform: rotate(180deg) scaleY(-1);
}

.faq__heading-en span:last-child {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #3d3a2c;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.faq__heading-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #3d3a2c;
  letter-spacing: 1.6px;
  margin: 0;
  line-height: 1.5;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  text-align: left;
}

.faq__q {
  font-family: 'DIN Alternate', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #5dabde;
  letter-spacing: 1.2px;
  line-height: 1.2;
  flex-shrink: 0;
}

.faq__question-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #3d3a2c;
  letter-spacing: 1px;
  line-height: 1.5;
  flex: 1;
  padding-right: 32px;
}

.faq__item--open .faq__q,
.faq__item--open .faq__question-text {
  color: #5dabde;
}

.faq__icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

.faq__icon img {
  width: 100%;
  height: 100%;
}

.faq__icon-minimize {
  display: none;
}

.faq__icon-add {
  display: block;
}

.faq__item--open .faq__icon-minimize {
  display: block;
}

.faq__item--open .faq__icon-add {
  display: none;
}

.faq__answer {
  display: none;
  padding: 0 24px 24px 48px;
}

.faq__item--open .faq__answer {
  display: block;
}

.faq__answer p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #3d3a2c;
  letter-spacing: 0.8px;
  line-height: 2;
  opacity: 0.7;
  margin: 0;
}

/* 課題解決型プロジェクトグリッド */
.content-section__project-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.content-section__project-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
}

.content-section__project-image {
  width: 268px;
  height: 154px;
  border-radius: 8px 0 0 8px; /* Only left corners rounded */
  overflow: hidden;
  flex-shrink: 0;
}

.content-section__project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section__project-content {
  flex: 1;
}

.content-section__project-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #3d3a2c;
  letter-spacing: 1px;
  margin: 0 0 16px 0;
  padding-left: 20px;
  position: relative;
}

.content-section__project-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  background: #5dabde;
}

.content-section__project-text {
  padding-left: 20px;
}

.content-section__project-text p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 2;
  color: #3d3a2c;
  letter-spacing: 0.8px;
  margin: 0;
}

/* 塾生インタビューセクション */
.members-interview {
  padding: 60px 40px;
}

.members-interview__container {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 80px 40px 40px;
  position: relative;
}

.members-interview__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background-color: #5dabde;
  border-radius: 24px 24px 0 0;
}

/* ヘッダー部分 */
.members-interview__header {
  margin-bottom: 60px;
}

.members-interview__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.members-interview__heading-en {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'DIN Alternate', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #3d3a2c;
  text-transform: uppercase;
}

.members-interview__heading-deco {
  width: 16px;
  height: 16px;
  background: url('img/heading-deco-blue.png') no-repeat center;
  background-size: contain;
  display: inline-block;
  transform: rotate(180deg) scaleY(-1);
}

.members-interview__heading-ja {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #3d3a2c;
  margin: 0;
}

/* インタビューアイテム */
.members-interview__item {
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 40px;
}

.members-interview__item:last-child {
  margin-bottom: 0;
}

.members-interview__image {
  flex-shrink: 0;
  width: 200px;
  height: 255px;
  background-color: #f4e5d2;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.members-interview__image img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.members-interview__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* プロフィール部分 */
.members-interview__profile {
  padding-bottom: 16px;
  border-bottom: 2px solid #5dabde;
}

.members-interview__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #3d3a2c;
  margin: 0 0 16px;
}

.members-interview__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.members-interview__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.members-interview__name-line {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0;
}

.members-interview__name-main {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.9px;
  color: #3d3a2c;
}

.members-interview__name-suffix {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  color: #3d3a2c;
}

.members-interview__university {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  color: #3d3a2c;
  opacity: 0.5;
}

/* Q&A部分 */
.members-interview__qa {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.members-interview__qa-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.members-interview__question {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.members-interview__q {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #5dabde;
  flex-shrink: 0;
}

.members-interview__q-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #3d3a2c;
  line-height: 1.5;
}

.members-interview__answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  opacity: 0.7;
  margin: 0;
}


/* 卒業生の活躍セクション */
.oath {
  padding: 80px 40px;
  background-color: #ffffff;
}

.oath__container {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 80px 40px 40px;
  position: relative;
}

.oath__container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background-color: #5dabde;
  border-radius: 24px 24px 0 0;
}

/* ヘッダー部分 */
.oath__header {
  margin-bottom: 60px;
}

.oath__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.oath__heading-en {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'DIN Alternate', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  color: #3d3a2c;
  text-transform: uppercase;
}

.oath__heading-deco {
  width: 16px;
  height: 16px;
  background: url('img/heading-deco-blue.png') no-repeat center;
  background-size: contain;
  display: inline-block;
  transform: rotate(180deg) scaleY(-1);
}

.oath__heading-ja {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #3d3a2c;
  margin: 0;
}

.oath__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  opacity: 0.7;
  margin: 0;
}

/* 卒業生アイテム */
.oath__item {
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  margin-bottom: 40px;
  display: flex;
  gap: 40px;
}

.oath__item:last-child {
  margin-bottom: 0;
}

.oath__image {
  flex-shrink: 0;
  width: 200px;
  height: 253px;
  border-radius: 8px;
  overflow: hidden;
}

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

.oath__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* プロフィール部分 */
.oath__profile {
  padding-bottom: 16px;
  border-bottom: 2px solid #5dabde;
}

.oath__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #3d3a2c;
  margin: 0 0 16px;
  line-height: 1.5;
}

.oath__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.oath__name {
  display: flex;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #3d3a2c;
}

.oath__university {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.7px;
  color: #3d3a2c;
  opacity: 0.5;
}

/* イントロ文 */
.oath__intro {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  opacity: 0.7;
  margin: 0;
}

/* Q&A部分 */
.oath__qa {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.oath__question {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.oath__q {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #5dabde;
  flex-shrink: 0;
}

.oath__q-text {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #3d3a2c;
  line-height: 1.5;
}

.oath__answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.8px;
  color: #3d3a2c;
  opacity: 0.7;
}

.oath__answer p {
  margin: 0 0 1em;
}

.oath__answer p:last-child {
  margin-bottom: 0;
}

/* ================================
   数字で見るIKJセクション
   ================================ */
.by-numbers {
  padding: 120px 0;
  background: #f5f5f5;
}

.by-numbers__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.by-numbers__inner {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 80px 40px;
  position: relative;
}

/* アクセントバー */
.by-numbers__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 24px;
  background: #5dabde;
  border-radius: 24px 24px 0 0;
}

/* ヘッダー */
.by-numbers__header {
  margin-bottom: 60px;
}

.by-numbers__title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.by-numbers__title-en {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'DIN Alternate', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #3d3a2c;
}

.by-numbers__title-deco {
  width: 16px;
  height: 16px;
  transform: rotateY(180deg);
}

.by-numbers__title-ja {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #3d3a2c;
  margin: 0;
}

/* コンテンツグリッド */
.by-numbers__content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* アイテム共通 */
.by-numbers__item {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.by-numbers__item-header {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0 24px 16px;
  border-radius: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.by-numbers__item-icon {
  width: 40px;
  height: 40px;
  background: #5dabde;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.by-numbers__item-icon img {
  width: 24px;
  height: 24px;
}

.by-numbers__item-label {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #3d3a2c;
}

/* 数値表示 */
.by-numbers__item-value {
  padding-top: 80px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.by-numbers__item-prefix,
.by-numbers__item-suffix {
  font-size: 24px;
  font-weight: 700;
  color: #3d3a2c;
}

.by-numbers__item-number {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #3d3a2c;
  line-height: 1.1;
}

.by-numbers__item-percent {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #3d3a2c;
}

/* アイテムサイズ */
.by-numbers__item--students,
.by-numbers__item--placement {
  width: calc(50% - 8px);
}

.by-numbers__item--companies {
  width: 100%;
}

.by-numbers__item--grade,
.by-numbers__item--university {
  width: calc(50% - 8px);
}

.by-numbers__item--gender,
.by-numbers__item--field {
  width: calc(50% - 8px);
}

.by-numbers__item--frequency,
.by-numbers__item--time {
  width: 100%;
}

/* 企業ロゴ */
.by-numbers__logos {
  padding-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.by-numbers__logo {
  height: auto;
  width: 100%;
}

/* チャート共通 */
.by-numbers__chart {
  padding-top: 80px;
}

/* 円グラフ */
.by-numbers__chart--pie {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.by-numbers__chart-image {
  width: 250px;
  height: 250px;
}

.by-numbers__chart-labels {
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
}

.by-numbers__chart-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.by-numbers__chart-label-text {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.7px;
  color: #fff;
}

.by-numbers__chart-label-value {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #fff;
}

.by-numbers__chart-label-value span {
  font-size: 16px;
}

/* 円グラフラベル位置 */
.by-numbers__chart-label--grade1 {
  top: 29px;
  left: 85px;
}

.by-numbers__chart-label--grade2 {
  top: 65px;
  left: 41px;
}

.by-numbers__chart-label--grade3 {
  top: 159px;
  left: 73px;
}

.by-numbers__chart-label--grade4 {
  top: 99px;
  left: 161px;
}

.by-numbers__chart-label--national {
  top: 0;
  left: 21px;
  color: #0d99ff;
}

.by-numbers__chart-label--national .by-numbers__chart-label-text,
.by-numbers__chart-label--national .by-numbers__chart-label-value {
  color: #0d99ff;
}

.by-numbers__chart-label--waseda {
  top: 140px;
  left: 21px;
}

.by-numbers__chart-label--march {
  top: 66px;
  left: 48px;
}

.by-numbers__chart-label--nittou {
  top: 107px;
  left: 153px;
}

.by-numbers__chart-label--other {
  top: 203px;
  left: 100px;
}

/* グラフ画像共通 */
.by-numbers__chart-image {
  width: 100%;
  height: auto;
  display: block;
}

/* 棒グラフ */
.by-numbers__chart--bar {
  max-width: 100%;
}

.by-numbers__chart--bar {
  width: 100%;
  height: auto;
}

/* ========================
   企業一覧セクション
======================== */
.companies {
  padding: 80px 0;
  background: #fff;
}

.companies__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.companies__card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.companies__topbar {
  background: #5dabde;
  height: 24px;
}

.companies__content {
  padding: 80px 40px;
}

.companies__header {
  margin-bottom: 60px;
}


/* 説明文 */
.companies__description {
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 2;
  color: rgba(61, 58, 44, 0.7);
}

/* ロゴエリア */
.companies__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  align-items: center;
}

.companies__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

/* 協賛企業社数エリア */
.companies__bottom {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.companies__count-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.companies__categories-section {
  flex: 1;
  display: flex;
  justify-content: center;
}

.companies__count-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
}

.companies__count-label {
  background: #f5f5f5;
  padding: 4px 24px;
  font-size: 20px;
  font-weight: 700;
  color: #3d3a2c;
  letter-spacing: 1px;
  border-radius: 0 0 24px 0;
}

.companies__count-number {
  padding: 8px 24px 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
}

.companies__count-text {
  font-size: 24px;
  font-weight: 700;
  color: #3d3a2c;
}

.companies__count-value {
  font-family: 'DIN Alternate', sans-serif;
  font-size: 60px;
  font-weight: bold;
  color: #3d3a2c;
  line-height: 1;
}

.companies__count-unit {
  font-size: 24px;
  font-weight: 700;
  color: #3d3a2c;
}

/* カテゴリー */
.companies__categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.companies__category-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.companies__category-label {
  background: #f5f5f5;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.8px;
  min-width: 120px;
  text-align: center;
}

/* ヘッダー */
.companies__header {
  text-align: center;
  margin-bottom: 60px;
}

.companies__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f2f8fe;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.companies__tag-icon {
  width: 16px;
  height: 16px;
}

.companies__tag-text {
  font-size: 12px;
  font-weight: 700;
  color: #0d99ff;
  letter-spacing: 0.04em;
}

.companies__title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

/* 説明文 */
.companies__description {
  text-align: center;
  margin-bottom: 60px;
}

.companies__text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 12px;
}

.companies__text:last-child {
  margin-bottom: 0;
}

/* ロゴグリッド */
.companies__logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.companies__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.companies__logo-img {
  max-width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

/* 協賛企業社数 */
.companies__count {
  text-align: center;
}

.companies__count-inner {
  display: inline-block;
  text-align: center;
}

.companies__count-label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.companies__count-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.companies__count-text {
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

.companies__count-value {
  font-size: 64px;
  font-weight: 700;
  color: #333;
  font-family: 'Montserrat', sans-serif;
}

.companies__count-unit {
  font-size: 24px;
  font-weight: 500;
  color: #333;
}

/* カテゴリー */
.companies__count-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.companies__category-group {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.companies__category-item {
  font-size: 16px;
  font-weight: 500;
  color: #666;
  position: relative;
}

/* ========================
   企業の声セクション
======================== */
.testimonials {
  padding: 120px 0;
  background: #f5f5f5;
}

/* ヘッダー */
.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f2f8fe;
  padding: 8px 20px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.testimonials__tag-icon {
  width: 16px;
  height: 16px;
}

.testimonials__tag-text {
  font-size: 12px;
  font-weight: 700;
  color: #0d99ff;
  letter-spacing: 0.04em;
}

.testimonials__title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}

/* 声リスト */
.testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 個別の声 */
.testimonial {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: #f9f9f9;
  border-radius: 16px;
}

.testimonial__image {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}

.testimonial__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial__content {
  flex: 1;
}

.testimonial__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonial__info {
  flex: 1;
}

.testimonial__company {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

.testimonial__position {
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

.testimonial__name {
  font-weight: 700;
  color: #333;
}

.testimonial__logo {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.testimonial__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.testimonial__text {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
}

.testimonial__text p {
  margin-bottom: 16px;
}

.testimonial__text p:last-child {
  margin-bottom: 0;
}


/* ==================== 企業の声セクション ==================== */
.testimonials {
  padding: 80px 0;
}

.testimonials__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials__card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* 青いトップバー */
.testimonials__topbar {
  background: #5dabde;
  height: 24px;
  width: 100%;
}

/* コンテンツエリア */
.testimonials__content {
  padding: 80px 40px;
}

/* ヘッダー */
.testimonials__header {
  margin-bottom: 60px;
}


/* 企業の声セクション - ヘッディング削除（既存のphilosophy-history__headingを使用） */
/* お客様の声カードエリア */
.testimonials__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* 個別のお客様の声カード */
.testimonials__item {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}

.testimonials__photo {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonials__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonials__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 16px;
  border-left: 4px solid #5dabde;
}

.testimonials__item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.testimonials__company {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3d3a2c;
  line-height: 2;
  letter-spacing: 0.8px;
}

.testimonials__person {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonials__position {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #3d3a2c;
  line-height: 1.2;
  min-width: 70px;
}

.testimonials__name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #3d3a2c;
  line-height: 1.2;
}

.testimonials__honorific {
  font-size: 14px;
  margin-left: 2px;
}

.testimonials__logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

.testimonials__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3d3a2c;
  line-height: 2;
  letter-spacing: 0.8px;
  margin: 0;
}

/* 入塾の流れ - 縦書きタイトルなし版 */
.admission__flow--no-title {
  display: block;
}

.admission__flow--no-title .admission__flow-content {
  margin-left: 0;
  padding-left: 0;
}


/* ==================== 費用について ==================== */
.fees-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fees-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 24px 40px;
  position: relative;
  margin-bottom: 8px;
  width: 100%;
  max-width: 880px;
}
.fees-card__label {
  position: absolute;
  top: 0;
  left: 0;
  background: #f5f5f5;
  padding: 4px 24px;
  border-radius: 24px 0 24px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #3d3a2c;
  line-height: 1.5;
  letter-spacing: 1px;
}

.fees-card__content {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.fees-card__amount {
  display: flex;
  align-items: end;
  gap: 4px;
}

.fees-card__number {
  font-family: "DIN Alternate", sans-serif;
  font-size: 60px;
  font-weight: bold;
  color: #3d3a2c;
  line-height: 1;
  letter-spacing: 3px;
}

.fees-card__unit {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #3d3a2c;
  line-height: 2;
  letter-spacing: 1px;
}

.fees-card__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(61, 58, 44, 0.5);
  line-height: 2;
  letter-spacing: 0.8px;
}

.fees-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(51, 51, 51, 0.5);
  line-height: 2;
  letter-spacing: 0.8px;
  text-align: right;
  margin: 0;
  max-width: 880px;
}


/* ==================== 見学の申し込みフォーム ==================== */
.visit-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 16px;
}

.form-label__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #3d3a2c;
  line-height: 1.5;
  letter-spacing: 1px;
}

.form-label__required {
  background: #ffb838;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1px;
  padding: 0 8px;
  border-radius: 4px;
}

.form-input-group {
  display: flex;
  gap: 10px;
}

.form-input {
  background: #f8f8f8;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3d3a2c;
  line-height: 2;
  letter-spacing: 0.8px;
  flex: 1;
}

.form-input--full {
  width: 100%;
}

.form-input::placeholder {
  color: rgba(61, 58, 44, 0.4);
}

.form-textarea {
  background: #f8f8f8;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3d3a2c;
  line-height: 2;
  letter-spacing: 0.8px;
  height: 180px;
  resize: vertical;
  width: 100%;
}

.form-textarea::placeholder {
  color: rgba(61, 58, 44, 0.4);
}

.form-privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 738px;
  margin: 0 auto;
}

.form-privacy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3d3a2c;
  line-height: 2;
  letter-spacing: 0.8px;
  text-align: center;
  margin: 0;
}

.form-privacy__link {
  color: #5dabde;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 25%;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.form-privacy__icon {
  width: 16px;
  height: 16px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.form-checkbox__input {
  display: none;
}

.form-checkbox__mark {
  width: 24px;
  height: 24px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  position: relative;
}

.form-checkbox__input:checked + .form-checkbox__mark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffb838;
  font-weight: bold;
}

.form-checkbox__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #3d3a2c;
  line-height: 2;
  letter-spacing: 0.8px;
}

.form-submit-btn {
  background: #ffb838;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 210px;
  margin: 0 auto;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.form-submit-btn__arrow {
  background: white;
  border-radius: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ニュース一覧ページのスタイル */
/* ニュースセクション */
.news-section {
  padding: 100px 40px;
  background-color: #ffffff;
.news-section__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
/* タブナビゲーション */
.news-tabs {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
.news-tabs__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  color: #3d3a2c;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 200px;
.news-tabs__button--active {
  background-color: #ffb838;
  color: #ffffff;
.news-tabs__button:hover {
  opacity: 0.8;
/* ニュース一覧 */
.news-list {
  width: 100%;
/* PC版グリッドレイアウト */
.news-list__grid--pc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 24px;
  min-height: 1681px;
/* SP版コラムレイアウト（PC版では非表示） */
.news-list__column--sp {
  display: none;
  flex-direction: column;
  gap: 16px;
/* ニュースカード */
.news-card {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: fit-content;
.news-card__image {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
.news-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
.news-card__date {
  font-family: "DIN Alternate", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 2;
  color: rgba(61, 58, 44, 0.6);
.news-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
.news-card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: rgba(61, 58, 44, 0.6);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
/* ページネーション */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
.pagination__prev,
.pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #3d3a2c;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 16px;
.pagination__prev--disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.5;
.pagination__prev:hover:not(.pagination__prev--disabled),
.pagination__next:hover {
  opacity: 0.8;
.pagination__arrow {
  width: 24px;
  height: 24px;
  transform: rotate(270deg);
.pagination__next .pagination__arrow {
  transform: rotate(90deg);
.pagination__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #3d3a2c;
  font-family: "DIN Alternate", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
.pagination__link--current {
  background-color: #ffb838;
  color: #ffffff;
.pagination__link:hover:not(.pagination__link--current) {
  opacity: 0.8;
.pagination__ellipsis {
  font-size: 16px;
  color: #3d3a2c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
/* SP版レスポンシブ対応 */
    padding: 60px 24px;
  }
    max-width: 342px;
    gap: 40px;
  }
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
    font-size: 14px;
    letter-spacing: 0.7px;
  }
    display: none;
  }
    display: flex;
  }
    border-radius: 8px;
    width: 342px;
  }
    height: 170.25px;
  }
    font-size: 16px;
    letter-spacing: 0.8px;
  }
    font-size: 14px;
    letter-spacing: 0.7px;
    -webkit-line-clamp: 4;
  }
    font-size: 14px;
    letter-spacing: 0.7px;
  }

/* ニュース一覧ページのスタイル */

/* ニュースセクション */
.news-section {
  padding: 100px 40px;
  background-color: #ffffff;
}

.news-section__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* タブナビゲーション */
.news-tabs {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.news-tabs__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  color: #3d3a2c;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 200px;
}

.news-tabs__button--active {
  background-color: #ffb838;
  color: #ffffff;
}

.news-tabs__button:hover {
  opacity: 0.8;
}

/* ニュース一覧 */
.news-list {
  width: 100%;
}

/* PC版グリッドレイアウト */
.news-list__grid--pc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 24px;
  min-height: 1681px;
}

/* SP版コラムレイアウト（PC版では非表示） */
.news-list__column--sp {
  display: none;
  flex-direction: column;
  gap: 16px;
}

/* ニュースカード */
.news-card {
  background-color: #f5f5f5;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: fit-content;
}

.news-card__image {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card__date {
  font-family: "DIN Alternate", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 2;
  color: rgba(61, 58, 44, 0.6);
}

.news-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #3d3a2c;
  margin: 0;
}

.news-card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: rgba(61, 58, 44, 0.6);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ページネーション */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.pagination__prev,
.pagination__next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #3d3a2c;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 16px;
}

.pagination__prev--disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination__prev:hover:not(.pagination__prev--disabled),
.pagination__next:hover {
  opacity: 0.8;
}

.pagination__arrow {
  width: 24px;
  height: 24px;
  transform: rotate(270deg);
}

.pagination__next .pagination__arrow {
  transform: rotate(90deg);
}

.pagination__list {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #3d3a2c;
  font-family: "DIN Alternate", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination__link--current {
  background-color: #ffb838;
  color: #ffffff;
}

.pagination__link:hover:not(.pagination__link--current) {
  opacity: 0.8;
}

.pagination__ellipsis {
  font-size: 16px;
  color: #3d3a2c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
}

/* SP版レスポンシブ対応 */
/* ニュース詳細ページのスタイル */

/* ニュース詳細セクション */
.news-detail {
  padding: 100px 40px;
  background-color: #ffffff;
}

.news-detail__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* メインコンテンツエリア */
.news-detail__article {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 80px 110px;
  background-color: #ffffff;
}

.news-detail__content {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* ヘッダー部分 */
.news-detail__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.news-detail__category {
  background-color: #ffb838;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.news-detail__date {
  font-family: "DIN Alternate", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #9e9c95;
}

.news-detail__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.6px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

/* 記事本文 */
.news-detail__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.news-detail__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #333333;
  margin: 0;
}

.news-detail__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 1.2px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

.news-detail__text-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-detail__text-block p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #333333;
  margin: 0;
}

.news-detail__text-block p + p {
  margin-top: 0;
}

/* 画像 */
.news-detail__figure {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin: 0;
}

.news-detail__image {
  width: 600px;
  height: 400.2px;
  object-fit: cover;
  border-radius: 8px;
}

.news-detail__caption {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.42px;
  line-height: 1.5;
  color: #333333;
  margin: 0;
  text-align: center;
}

/* リンク */
.news-detail__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-detail__link-item {
  display: flex;
  align-items: center;
  gap: 0;
}

.news-detail__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #5dabde;
  text-decoration: underline;
  text-underline-offset: 25%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.news-detail__link:hover {
  opacity: 0.8;
}

.news-detail__link--external {
  display: flex;
  align-items: center;
  gap: 0;
}

.news-detail__external-icon {
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

/* ナビゲーション */
.news-detail__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.news-detail__nav-item {
  display: flex;
  align-items: center;
}

.news-detail__nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.2;
  transition: opacity 0.3s ease;
}

.news-detail__nav-link:hover {
  opacity: 0.8;
}

.news-detail__nav-arrow {
  width: 40px;
  height: 40px;
}

.news-detail__nav-arrow--left {
  transform: rotate(270deg);
}

.news-detail__nav-arrow--right {
  transform: rotate(90deg);
}

.news-detail__nav-text {
  white-space: nowrap;
}

/* SP版レスポンシブ対応 */
/* お問い合わせフォームセクション */
.contact-form {
  padding: 100px 40px;
  background-color: #ffffff;
}

.contact-form__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

/* 注意書き */
.contact-form__notice {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  text-align: center;
  color: #3d3a2c;
  opacity: 0.7;
  margin: 0;
}

/* フォームカード */
.contact-form__card {
  width: 100%;
  max-width: 1100px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  background-color: #ffffff;
  padding: 80px 110px;
}

.contact-form__content {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* フィールド共通 */
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ラベル */
.contact-form__label-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-form__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #3d3a2c;
}

.contact-form__label--no-required {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #3d3a2c;
}

.contact-form__required {
  background-color: #ffb838;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  padding: 0 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* 入力フィールド */
.contact-form__input {
  background-color: #f8f8f8;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
}

.contact-form__input::placeholder {
  color: rgba(61, 58, 44, 0.4);
}

/* 名前フィールド */
.contact-form__name-fields {
  display: flex;
  gap: 10px;
}

.contact-form__name-fields .contact-form__input {
  flex: 1;
}

/* テキストエリア */
.contact-form__textarea {
  background-color: #f8f8f8;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  min-height: 180px;
  resize: vertical;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
}

.contact-form__textarea::placeholder {
  color: rgba(61, 58, 44, 0.4);
}

/* プライバシーポリシー */
.contact-form__privacy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 738px;
  margin: 0 auto;
}

.contact-form__privacy-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
}

.contact-form__privacy-link {
  color: #5dabde;
  text-decoration: underline;
  text-underline-offset: 25%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.contact-form__privacy-link:hover {
  opacity: 0.8;
}

.contact-form__external-icon {
  width: 16px;
  height: 16px;
  margin-left: 2px;
}

/* チェックボックス */
.contact-form__checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-form__checkbox {
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  cursor: pointer;
}

.contact-form__checkbox-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 2;
  color: #3d3a2c;
  cursor: pointer;
}

/* 送信ボタン */
.contact-form__submit {
  width: 210px;
  height: 64px;
  background-color: #ffb838;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}

.contact-form__submit:hover {
  opacity: 0.9;
}

.contact-form__submit-text {
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  line-height: 1.2;
  padding: 0 8px;
}

.contact-form__submit-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-form__submit-arrow {
  width: 24px;
  height: 24px;
  transform: rotate(270deg);
}


/* ハンバーガーメニュー */
.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
}

.hamburger-menu--open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

/* ハンバーガーメニューヘッダー */
.hamburger-menu__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 100px;
  z-index: 10;
}

.hamburger-menu__logo {
  height: 37px;
}

.hamburger-menu__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.hamburger-menu__close {
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  border: none;
  border-radius: 0 0 0 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.hamburger-menu__close:hover {
  background-color: #f5f5f5;
}

.hamburger-menu__close img {
  width: 24px;
  height: 24px;
}

/* メニューコンテンツ */
.hamburger-menu__content {
  flex: 1;
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* 左側ナビゲーション */
.hamburger-menu__nav {
  display: flex;
  flex-direction: column;
  width: 310px;
  flex-shrink: 0;
}

.hamburger-menu__nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hamburger-menu__nav-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hamburger-menu__nav-item--last {
  border-bottom: none;
  padding-bottom: 0;
  padding-top: 24px;
}

.hamburger-menu__nav-item:hover {
  opacity: 0.7;
}

.hamburger-menu__nav-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #3d3a2c;
  line-height: 1.2;
}

.hamburger-menu__nav-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(90deg);
  flex-shrink: 0;
}

.hamburger-menu__nav-arrow img {
  width: 100%;
  height: 100%;
}

/* 右側アクション */
.hamburger-menu__actions {
  display: flex;
  flex-direction: column;
  gap: 100px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.hamburger-menu__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 310px;
}

.hamburger-menu__button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  box-sizing: border-box;
}

.hamburger-menu__button:hover {
  opacity: 0.9;
}

.hamburger-menu__button--student {
  background-color: #ffb838;
  color: #ffffff;
}

.hamburger-menu__button--company {
  background-color: #5dabde;
  color: #ffffff;
}

.hamburger-menu__button--contact {
  background-color: #ffffff;
  color: #3d3a2c;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.hamburger-menu__button-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hamburger-menu__button--contact .hamburger-menu__button-icon {
  background-color: #ffb838;
}

.hamburger-menu__button-icon img {
  width: 24px;
  height: 24px;
}

/* SNSリンク */
.hamburger-menu__sns {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
}

.hamburger-menu__sns-link {
  width: 40px;
  height: 40px;
  background-color: #3d3a2c;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.hamburger-menu__sns-link:hover {
  opacity: 0.8;
}

.hamburger-menu__sns-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* メニューオープン時のボディ */
.menu-open {
  overflow: hidden;
}

/* フッター */
.footer {
  background: #f0f0f0;
  border-radius: 24px;
  margin: 40px;
}

.footer__container {
  padding: 80px 40px 40px;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* 左側：会社情報 */
.footer__company {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 192px;
  flex-shrink: 0;
  height: 259px;
}

.footer__company-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__logo {
  width: 79px;
  height: 37px;
}

.footer__address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #3d3a2c;
}

.footer__address p {
  margin: 4px 0 0;
}

.footer__address p:first-child {
  margin-top: 0;
}

.footer__tel {
  display: flex;
  gap: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: #3d3a2c;
}

.footer__sns {
  display: flex;
  gap: 16px;
}

.footer__sns-link {
  width: 32px;
  height: 32px;
  background: #3d3a2c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.footer__sns-link:hover {
  transform: translateY(-2px);
}

.footer__sns-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* noteアイコン */
.footer__sns-link--note img {
  width: 18px !important;
  height: 18px !important;
}

/* 右側：ナビゲーション */
.footer__nav {
  width: 1032px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 6列グリッド */
.footer__nav-columns {
  display: flex;
  justify-content: space-between;
  gap: 0;
}

.footer__nav-column {
  width: 140px;
}

.footer__nav-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #333333;
}

/* 矢印アイコン（右向き） */
.footer__nav-heading img {
  width: 16px;
  height: 16px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-list a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  letter-spacing: 0.7px;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__nav-list a:hover {
  opacity: 0.8;
}

/* 専用ページボタン */
.footer__nav-buttons {
  display: flex;
  gap: 16px;
}

.footer__nav-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: white;
  transition: transform 0.2s ease;
}

.footer__nav-btn:hover {
  transform: translateY(-2px);
}

.footer__nav-btn--student {
  background: #ffb838;
}

.footer__nav-btn--company {
  background: #5dabde;
}

.footer__nav-btn--contact {
  background: white;
  color: #3d3a2c;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__nav-btn-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.footer__nav-btn--contact .footer__nav-btn-icon {
  background: #ffb838;
}

.footer__nav-btn-icon img {
  width: 24px;
  height: 24px;
}

/* 下部 */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer__privacy {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
}

.footer__privacy img {
  width: 8px;
  height: 8px;
}

.footer__copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  color: #3d3a2c;
}

/* 動画モーダル */
.video-modal {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 10000 !important;
  display: none !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease;
}

.video-modal--active {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
}

.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.video-modal__close {
  position: absolute;
  top: -60px;
  right: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.video-modal__close:hover {
  opacity: 0.7;
}

.video-modal__close img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.video-modal__arrow {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.video-modal__arrow:hover {
  opacity: 0.7;
}

.video-modal__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.video-modal__arrow img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.video-modal__player {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}

.video-modal__video-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}