/* ===========================
   Hero
=========================== */
.hero {
  width: 100%;
  background-color: var(--color-bg);
  overflow: hidden;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================
   News Section
=========================== */
.news-section {
  background-color: var(--color-bg);
}

.news-section__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
}

.news-section__list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-section__list .news-list {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

.news-section__list .news-section__more {
  flex-shrink: 0;
  padding-top: 16px;
}

.news-ichoshi {
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
}

.news-ichoshi__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  transition: opacity var(--transition);
}

.news-ichoshi__link:hover {
  opacity: 0.85;
}

.news-ichoshi__parts {
  width: 25%;
  height: auto;
  display: block;
}

.news-ichoshi__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 4px 16px;
}

.news-ichoshi__title {
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.news-ichoshi__img {
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.news-ichoshi__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-ichoshi__header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  padding: 8px 0px;
}

.news-list {
  margin: 0 0 24px;
  border-top: 1px solid var(--color-border);
}

.news-list__item a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 12px;
  border-bottom: 1px solid var(--color-border);
  transition: background-color var(--transition);
  flex-wrap: wrap;
}

.news-list__item a:hover {
  background-color: var(--color-primary-a04);
}

.news-list__date {
  font-size: 13px;
  color: var(--color-text-light);
  white-space: nowrap;
  min-width: 100px;
}

.news-list__tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 500;
}

.news-list__title {
  flex: 1;
  font-size: 15px;
}

.news-section__more {
  text-align: center;
}

/* ===========================
   Profile Section (TOP)
=========================== */
.profile-section {
  background-color: var(--color-bg-alt);
}

.profile-section__inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
}

.profile-section__label {
  font-size: 13px;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.profile-section__name {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.profile-section__body {
  margin-bottom: 32px;
  line-height: 2;
}

.profile-section__img img {
  width: 100%;
  border-radius: 4px;
}

/* ===========================
   Performance Carousel Section
=========================== */
.perf-carousel-section {
  background-color: var(--color-bg);
}

.perf-carousel-outer {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.perf-swiper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.perf-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  color: var(--color-text);
  padding: 4px 8px;
  opacity: 0.6;
  transition: opacity var(--transition);
  user-select: none;
}

.perf-btn:hover {
  opacity: 1;
}

.perf-btn.swiper-button-disabled {
  opacity: 0.2;
  cursor: default;
}

.perf-card {
  background-color: var(--color-white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.perf-card__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.perf-card__title {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  padding: 12px 16px;
  line-height: 1.4;
}

.perf-card__body {
  padding: 16px;
}

.perf-card__meta {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.perf-card__text {
  font-size: 13px;
  line-height: 1.9;
}

.perf-pagination {
  margin-top: 24px;
  position: relative !important;
  bottom: auto !important;
  text-align: center;
}

.perf-pagination .swiper-pagination-bullet {
  background: var(--color-primary);
  opacity: 0.3;
}

.perf-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ===========================
   Comment Section (講演実績直下)
=========================== */
.comment-section {
  padding: 80px 0;
  background-color: var(--color-bg-alt);
}

.comment-section__theme {
  text-align: center;
  padding: 36px 48px;
  border: 2px solid var(--color-primary-a35);
  max-width: 720px;
  margin: 0 auto 56px;
  background-color: rgba(255, 252, 228, 0.55);
}

.comment-section__theme-lead {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 14px;
}

.comment-section__theme-topics {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin-bottom: 12px;
}

.comment-section__main {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 48px;
  align-items: center;
}

.comment-section__fig img {
  width: 100%;
  height: auto;
  display: block;
}

.comment-section__message p {
  margin-bottom: 16px;
  line-height: 2;
  font-size: 15px;
  font-family: var(--font-mincho);
  font-weight: 700;
}

.comment-section__sign {
  text-align: right;
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}

/* ===========================
   Voice Section
=========================== */
.voice-section {
  background-color: var(--color-bg);
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.voice-card {
  background-color: var(--color-white);
  border-radius: 4px;
  padding: 28px 24px;
  border-left: 4px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  line-height: 2;
  font-size: 15px;
}

/* ===========================
   Contact Section
=========================== */
.contact-section {
  background-color: var(--color-bg-alt);
}

.contact-section__inner {
  text-align: center;
}

.contact-section__lead {
  font-family: var(--font-title);
  font-size: 20px;
  color: var(--color-primary);
  line-height: 1.7;
}

.contact-section__photos {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 32px;
}

.contact-section__photo {
  width: 220px;
  height: auto;
  flex-shrink: 0;
}

.contact-section__photo--center {
  width: 260px;
  position: relative;
  z-index: 1;
  margin: 0 -16px;
}

.contact-section__office {
  font-size: 15px;
  margin-bottom: 28px;
  color: var(--color-text-light);
  line-height: 1.8;
}

.contact-section__office strong {
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-primary);
}

.contact-section__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
  margin: 0 auto;
}

.contact-section__actions .btn {
  justify-content: center;
  align-items: flex-start;
}

.contact-section__actions .btn svg {
  margin-top: 6px;
}

.ten {
  margin: 40px auto 0;
}

/* ===========================
   Fans Section (TOP)
=========================== */
.fans-section {
  background-color: var(--color-bg);
}

.fans-section__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 60px;
  align-items: center;
}

.fans-section__catch {
  font-family: var(--font-title);
  font-size: 26px;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 48px;
}

.fans-section__body {
  line-height: 2;
}

.fans-section__img img {
  width: 100%;
  border-radius: 4px;
}

.fans-section > .container > .btn {
  display: block;
  width: fit-content;
  margin: 48px auto 0;
}

@media (min-width: 769px) {
  .fans-section > .container > .btn {
    margin-left: 0;
  }
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {
  .perf-btn {
    font-size: 28px;
    padding: 4px 4px;
  }
}

@media (max-width: 768px) {
  .profile-section__inner,
  .fans-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-section__photo {
    width: 120px;
  }

  .contact-section__photo--center {
    width: 140px;
    margin: 0 -8px;
  }

  .profile-section__img {
    order: -1;
  }

  .profile-section__name {
    font-size: 26px;
  }

  .profile-section__text .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .voice-grid {
    grid-template-columns: 1fr;
  }

  .fans-section__catch {
    font-size: 22px;
  }

  .news-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-list__item:nth-child(n + 4) {
    display: none;
  }

  .news-list__item a {
    gap: 8px;
  }

  .perf-carousel-outer {
    gap: 4px;
    padding: 0 8px 40px;
  }

  .perf-card__img img {
    height: 160px;
  }

  .comment-section {
    padding: 60px 0;
  }

  .comment-section__theme {
    padding: 24px 20px;
    margin-bottom: 40px;
  }

  .comment-section__theme-lead {
    font-size: 17px;
  }

  .comment-section__main {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comment-section__fig--right {
    max-width: 160px;
    margin: 24px auto 0;
  }
}
