@charset "UTF-8";
/* ========================================
   代表の想い 専用CSS
   ======================================== */

/* --- ページヒーロー --- */
.page-hero {
  position: relative;
  width: 100%;
  height: 360px;
  margin-top: var(--header_height);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.page-hero__en {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color_main);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.page-hero__title {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-hero__sub {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

/* --- パンくず --- */
.p-breadcrumb {
  background: #f5f5f5;
  padding: 12px 0;
}
.p-breadcrumb__list {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  color: #888;
  list-style: none;
}
.p-breadcrumb__item a {
  color: #666;
  transition: color 0.3s;
}
.p-breadcrumb__item a:hover {
  color: var(--color_main);
}
.p-breadcrumb__item + .p-breadcrumb__item::before {
  content: ">";
  margin-right: 8px;
  color: #ccc;
}

/* --- 代表紹介リード --- */
.omoi-intro {
  padding: 80px 0;
}
.omoi-intro__wrap {
  display: flex;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.omoi-intro__photo {
  flex: 0 0 260px;
}
.omoi-intro__photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #e8e8e8;
  border-radius: var(--border_radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9rem;
}
.omoi-intro__text {
  flex: 1;
}
.omoi-intro__name {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}
.omoi-intro__name-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #888;
  padding: 2px 10px;
  background: var(--color_light_gray);
  border-radius: 3px;
}
.omoi-intro__name-main {
  font-size: 1.8rem;
  font-weight: 900;
  color: #222;
  letter-spacing: 0.1em;
}
.omoi-intro__lead {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.7;
  color: #222;
  margin-bottom: 16px;
}
.omoi-intro__body {
  font-size: 0.95rem;
  line-height: 2;
  color: #555;
}

/* --- 想いセクション共通 --- */
.omoi-section {
  padding: 72px 0;
}
.omoi-section--alt {
  background: var(--color_warm_bg);
}
.omoi-section__inner {
  max-width: 800px;
  margin: 0 auto;
}
.omoi-section__num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color_main);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.omoi-section__title {
  margin-bottom: 32px;
}
.omoi-section__title-ja {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: #222;
  line-height: 1.5;
  margin-bottom: 4px;
}
.omoi-section__title-en {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color_main);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: "Helvetica Neue", Arial, sans-serif;
}
.omoi-section__body p {
  font-size: 1rem;
  line-height: 2.2;
  color: #444;
  margin-bottom: 24px;
}

/* 強調引用ブロック */
.omoi-section__highlight {
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--color_main);
  border-radius: 0 var(--border_radius) var(--border_radius) 0;
  margin: 32px 0;
}
.omoi-section--alt .omoi-section__highlight {
  background: #fff;
}
.omoi-section__highlight p {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 2;
  color: #222;
  margin-bottom: 0;
}
.omoi-section__highlight--strong {
  background: #222222;
  border-left-color: var(--color_main);
}
.omoi-section__highlight--strong p {
  color: #fff;
}
.omoi-section__highlight--strong p br + br {
  display: none;
}

/* --- 最後のメッセージ --- */
.omoi-closing {
  padding: 80px 0;
  background: #222222;
}
.omoi-closing__inner {
  text-align: center;
}
.omoi-closing__character {
  margin-bottom: 28px;
}
.omoi-closing__character img {
  height: 120px;
  width: auto;
  margin: 0 auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.omoi-closing__text {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 16px;
}
.omoi-closing__strong {
  font-size: 2rem;
  color: var(--color_main);
  display: block;
  margin-top: 8px;
}
.omoi-closing__name {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
}

/* --- ナビ現在地ハイライト --- */
.c-gnav__item > a.is-current {
  color: var(--color_main);
}
.c-gnav__item > a.is-current::after {
  transform: translateX(-50%) scaleX(1);
}

/* ========================================
   レスポンシブ（タブレット: 959px）
   ======================================== */
@media (max-width: 959px) {
  .page-hero { height: 280px; }
  .page-hero__title { font-size: 1.8rem; }

  .omoi-intro__wrap { flex-direction: column; text-align: center; }
  .omoi-intro__photo { flex: none; width: 200px; margin: 0 auto; }
  .omoi-intro__name { justify-content: center; }
  .omoi-intro__lead { font-size: 1.15rem; }
}

/* ========================================
   レスポンシブ（スマホ: 599px）
   ======================================== */
@media (max-width: 599px) {
  .page-hero { height: 220px; }
  .page-hero__title { font-size: 1.5rem; }
  .page-hero__sub { font-size: 0.85rem; }

  .omoi-intro { padding: 56px 0; }
  .omoi-intro__photo { width: 160px; }
  .omoi-intro__name-main { font-size: 1.4rem; }
  .omoi-intro__lead { font-size: 1.05rem; }

  .omoi-section { padding: 56px 0; }
  .omoi-section__num { font-size: 3rem; }
  .omoi-section__title-ja { font-size: 1.3rem; }
  .omoi-section__body p { font-size: 0.9rem; }
  .omoi-section__highlight { padding: 20px 20px; }
  .omoi-section__highlight p { font-size: 0.95rem; }

  .omoi-closing { padding: 56px 0; }
  .omoi-closing__text { font-size: 1.25rem; }
  .omoi-closing__strong { font-size: 1.5rem; }
  .omoi-closing__character img { height: 90px; }
}
