@charset "UTF-8";
/* --------------------------------------------------
  greeting.scss – 挨拶ページ専用スタイル
  -------------------------------------------------- */
/* --------------------------------------------------
  layout
  -------------------------------------------------- */
#greeting {
  position: relative;
  background-color: var(--c-bg-beige);
  background-image: radial-gradient(circle, var(--c-dot-gray) 1px, transparent 1px);
  background-position: 0 0;
  background-size: 8px 8px;
}

.greeting-wrapper {
  position: relative;
  padding: 13rem 0 4rem;
}
@media screen and (width <= 767px) {
  .greeting-wrapper {
    padding: 8rem 0 4rem;
  }
}
.greeting-wrapper .inner-1100 {
  position: relative;
  padding: 9rem;
  overflow: hidden;
  background-color: var(--c-white);
  border-radius: 2rem;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
}
@media screen and (width <= 767px) {
  .greeting-wrapper .inner-1100 {
    padding: 0 5%;
    margin: 0 5%;
    border-radius: 1.2rem;
  }
}

/* --------------------------------------------------
  hero
  -------------------------------------------------- */
.greeting-hero {
  text-align: center;
}
@media screen and (width <= 767px) {
  .greeting-hero {
    padding: 4rem 0 3rem;
  }
}
.greeting-hero .title-wrapper h1 {
  margin: 0;
  font-size: 3.6rem;
  font-weight: 700;
}
@media screen and (width <= 767px) {
  .greeting-hero .title-wrapper h1 {
    font-size: 2.8rem;
  }
}

/* --------------------------------------------------
  greeting section – 代表挨拶（大きい写真・中央配置）
  -------------------------------------------------- */
.greeting-section {
  padding: 5rem 0;
}
@media screen and (width <= 767px) {
  .greeting-section {
    padding: 0;
  }
}
.greeting-section {
  /* メインの挨拶ブロック（写真 + テキスト 横並び） */
}
.greeting-section .greeting-block {
  display: flex;
  align-items: flex-start;
}
@media screen and (width <= 767px) {
  .greeting-section .greeting-block {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.greeting-section {
  /* 写真エリア */
}
.greeting-section .greeting-photo {
  flex-shrink: 0;
  text-align: center;
}
.greeting-section .greeting-photo img {
  display: block;
  width: 22rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (width <= 767px) {
  .greeting-section .greeting-photo img {
    width: 16rem;
    margin: 0 auto;
  }
}
.greeting-section .greeting-photo .greeting-person {
  margin-top: 1.2rem;
}
.greeting-section .greeting-photo .greeting-person .greeting-person-role {
  display: block;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--c-black);
}
.greeting-section .greeting-photo .greeting-person .greeting-person-name {
  display: block;
  margin-top: 0.4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.greeting-section {
  /* テキストエリア */
}
.greeting-section .greeting-text {
  flex: 1;
  min-width: 0;
}
.greeting-section .greeting-text p {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 2;
  text-align: justify;
}
@media screen and (width <= 767px) {
  .greeting-section .greeting-text p {
    font-size: 1.4rem;
  }
}
.greeting-section .greeting-text p:last-child {
  margin-bottom: 0;
}
.greeting-section {
  /* 挨拶ブロック（写真右配置パターン） */
}
.greeting-section.greeting-section--reverse .greeting-block {
  flex-direction: row-reverse;
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--reverse .greeting-block {
    flex-direction: column;
  }
}
.greeting-section {
  /* 代表挨拶（中央レイアウト） */
}
.greeting-section.greeting-section--center .greeting-block {
  display: block; /* 1カラム：上に写真・下にテキスト */
  text-align: center;
}
.greeting-section.greeting-section--center .greeting-photo {
  display: block;
}
.greeting-section.greeting-section--center .greeting-photo img {
  margin-right: auto;
  margin-left: auto;
}
.greeting-section.greeting-section--center .greeting-text--center {
  max-width: 720px;
  margin: 3rem auto 0;
  text-align: left;
}
.greeting-section.greeting-section--center .greeting-heading {
  padding-top: 2rem;
  margin: 0 0 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  border-top: 1px solid var(--c-border-light-gray);
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--center .greeting-heading {
    font-size: 1.6rem;
  }
}
.greeting-section {
  /* セクション間の区切り：線＋両端の丸 */
}
.greeting-section.greeting-section--center + .greeting-section.greeting-section--center::before, .greeting-section.greeting-section--center + .greeting-section.greeting-section--split::before {
  display: block;
  width: 100%;
  max-width: 820px;
  height: 12px;
  margin: 2rem auto;
  margin-bottom: 60px;
  content: "";
  background-image: radial-gradient(circle at 3px 50%, black 3px, transparent 3px), radial-gradient(circle at calc(100% - 3px) 50%, black 3px, transparent 3px), linear-gradient(to right, black, black);
  background-repeat: no-repeat;
  background-position: 0 center, 100% center, 6px center;
  background-size: 6px 6px, 6px 6px, calc(100% - 12px) 2px;
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--center + .greeting-section.greeting-section--center::before, .greeting-section.greeting-section--center + .greeting-section.greeting-section--split::before {
    max-width: calc(100% - 40px);
  }
}
.greeting-section {
  /* 3人目：左に肩書き・氏名・下線、右に写真／下に見出し・本文（薄グレー枠） */
}
.greeting-section.greeting-section--split .greeting-split-box {
  padding: 3rem;
  background-color: #f0f0f0;
  border-radius: 1.2rem;
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--split .greeting-split-box {
    position: relative;
    padding: 4rem 2rem;
  }
}
.greeting-section.greeting-section--split .greeting-block--split {
  display: flex;
  align-items: flex-start;
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--split .greeting-block--split {
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
  }
}
.greeting-section.greeting-section--split .greeting-person-wrap {
  flex: 1;
  min-width: 0;
  margin-top: 40px;
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--split .greeting-person-wrap {
    margin-top: 0;
  }
}
.greeting-section.greeting-section--split .greeting-person {
  margin-top: 0;
}
.greeting-section.greeting-section--split .greeting-person .greeting-person-role {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--c-black);
}
.greeting-section.greeting-section--split .greeting-person .greeting-person-name {
  display: block;
  margin-top: 0.4rem;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-black);
}
.greeting-section.greeting-section--split .greeting-person-line {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1.2rem;
  background-color: var(--c-black);
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--split .greeting-person-line {
    position: absolute;
    left: 0;
  }
}
.greeting-section.greeting-section--split .greeting-photo {
  flex-shrink: 0;
}
.greeting-section.greeting-section--split .greeting-photo img {
  display: block;
  width: 18rem;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--split .greeting-photo img {
    width: 18rem;
    margin: 0 auto;
  }
}
.greeting-section.greeting-section--split .greeting-heading--left {
  padding: 0;
  margin: 0 0 1.5rem;
  margin-top: -30px;
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-black);
  text-align: left;
  border: 0;
}
@media screen and (width <= 767px) {
  .greeting-section.greeting-section--split .greeting-heading--left {
    margin-top: 40px;
    font-size: 1.6rem;
    text-align: center;
  }
}
.greeting-section.greeting-section--split .greeting-text p {
  margin: 0 0 1.6rem;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--c-black);
}
.greeting-section.greeting-section--split .greeting-text p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------
  history / 沿革
  -------------------------------------------------- */
.greeting-history {
  padding: 5rem 0;
}
@media screen and (width <= 767px) {
  .greeting-history {
    padding: 3.5rem 0;
  }
}
.greeting-history .inner-820::before {
  display: block;
  width: 100%;
  max-width: 820px;
  height: 12px;
  margin: 0 auto 3rem;
  content: "";
  background-image: radial-gradient(circle at 3px 50%, black 3px, transparent 3px), radial-gradient(circle at calc(100% - 3px) 50%, black 3px, transparent 3px), linear-gradient(to right, black, black);
  background-repeat: no-repeat;
  background-position: 0 center, 100% center, 6px center;
  background-size: 6px 6px, 6px 6px, calc(100% - 12px) 2px;
}
.greeting-history .greeting-history-title {
  margin: 0 0 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--c-black);
  text-align: center;
}
@media screen and (width <= 767px) {
  .greeting-history .greeting-history-title {
    font-size: 2.2rem;
  }
}
.greeting-history .greeting-org-sep {
  width: 100%;
  max-width: 720px;
  margin: 0 0 2rem;
  border: 0;
  border-top: 1px solid var(--c-border-light-gray);
}
.greeting-history .greeting-history-list {
  max-width: 720px;
  padding: 0;
  padding: 30px 0;
  margin: 0;
  margin-inline: auto;
  list-style: none;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}
.greeting-history .greeting-history-list li {
  position: relative;
  display: flex;
  align-items: baseline;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--c-black);
}
.greeting-history .greeting-history-list li:last-child {
  margin-bottom: 0;
}
.greeting-history .greeting-history-list li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  content: "";
  background-color: #ada691;
  border-radius: 50%;
}
@media screen and (width <= 767px) {
  .greeting-history .greeting-history-list li {
    font-size: 1.4rem;
  }
}
.greeting-history .greeting-history-list .history-year {
  flex-shrink: 0;
  width: 7em;
  font-weight: 700;
}
.greeting-history .greeting-history-list .history-desc {
  flex: 1;
  min-width: 0;
}

/* --------------------------------------------------
  org / 運営体制について
  -------------------------------------------------- */
.greeting-org {
  padding: 5rem 0;
}
@media screen and (width <= 767px) {
  .greeting-org {
    padding: 3.5rem 0;
  }
}
.greeting-org .inner-820::before {
  display: block;
  width: 100%;
  max-width: 820px;
  height: 12px;
  margin: 0 auto 3rem;
  content: "";
  background-image: radial-gradient(circle at 3px 50%, black 3px, transparent 3px), radial-gradient(circle at calc(100% - 3px) 50%, black 3px, transparent 3px), linear-gradient(to right, black, black);
  background-repeat: no-repeat;
  background-position: 0 center, 100% center, 6px center;
  background-size: 6px 6px, 6px 6px, calc(100% - 12px) 2px;
}
.greeting-org .greeting-org-title {
  margin: 0 0 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--c-black);
  text-align: center;
}
@media screen and (width <= 767px) {
  .greeting-org .greeting-org-title {
    font-size: 2.2rem;
  }
}
.greeting-org .greeting-org-intro {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  line-height: 1.9;
  color: var(--c-black);
}
@media screen and (width <= 767px) {
  .greeting-org .greeting-org-intro {
    font-size: 1.4rem;
  }
}
.greeting-org .greeting-org-sep {
  width: 100%;
  max-width: 720px;
  margin: 0 0 2rem;
  border: 0;
  border-top: 1px solid var(--c-border-light-gray);
}
.greeting-org .greeting-org-list {
  padding: 0;
  padding: 30px 0;
  margin: 0 0 2rem;
  list-style: none;
  counter-reset: org-list;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
}
.greeting-org .greeting-org-list li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}
.greeting-org .greeting-org-list li:last-child {
  margin-bottom: 0;
}
.greeting-org .greeting-org-list .greeting-org-list-num {
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #999;
}
.greeting-org .greeting-org-list .greeting-org-list-content {
  flex: 1;
  min-width: 0;
}
.greeting-org .greeting-org-list .greeting-org-list-title {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-black);
}
.greeting-org .greeting-org-list .greeting-org-list-title span {
  margin-right: 10px;
  color: #ada691;
}
.greeting-org .greeting-org-list .greeting-org-list-desc {
  margin: 0;
  margin-left: 18px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--c-black);
}
@media screen and (width <= 767px) {
  .greeting-org .greeting-org-list .greeting-org-list-desc {
    font-size: 1.4rem;
  }
}
.greeting-org .org-chart-img {
  margin-top: 6rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.greeting-org .org-chart-img img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (width <= 767px) {
  .greeting-org .org-chart-img img {
    min-width: 100%;
  }
}

/* --------------------------------------------------
  committee / 委員会・名簿テーブル
  -------------------------------------------------- */
.greeting-committee {
  padding: 5rem 0 0rem;
}
.greeting-committee .inner-820 {
  padding-top: 60px;
  border-top: 1px solid var(--c-border-light-gray);
}
@media screen and (width <= 767px) {
  .greeting-committee {
    padding: 3.5rem 0 4rem;
  }
}
.greeting-committee .committee-title {
  margin: 0 0 3rem;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c-black);
  text-align: center;
}
@media screen and (width <= 767px) {
  .greeting-committee .committee-title {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
}
.greeting-committee .committee-section {
  margin-bottom: 4rem;
}
.greeting-committee .committee-section:last-child {
  margin-bottom: 0;
}
.greeting-committee .committee-subtitle {
  margin: 0 0 4rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--c-black);
  text-align: center;
}
@media screen and (width <= 767px) {
  .greeting-committee .committee-subtitle {
    font-size: 1.4rem;
  }
}
.greeting-committee .committee-subtitle-2 {
  max-width: calc(100% - 6px);
  padding: 5px 0;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  background: #ada691;
}
@media screen and (width <= 767px) {
  .greeting-committee .committee-subtitle-2 {
    font-size: 14px;
  }
}
.greeting-committee .member-table {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.7;
  table-layout: fixed;
  border-spacing: 3px 3px;
  border-collapse: separate;
}
@media screen and (width <= 767px) {
  .greeting-committee .member-table {
    font-size: 1.2rem;
    border-spacing: 3px 3px;
  }
}
.greeting-committee .member-table th,
.greeting-committee .member-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  vertical-align: middle;
}
@media screen and (width <= 767px) {
  .greeting-committee .member-table th,
  .greeting-committee .member-table td {
    padding: 2px 0.8rem;
    font-size: 11px;
  }
}
.greeting-committee .member-table thead th {
  font-weight: 600;
  white-space: nowrap;
  background-color: #c5c0b1;
}
.greeting-committee .member-table tbody td {
  background-color: #e6e6e1;
}

/* --------------------------------------------------
  セクション間余白（inner-820 のパディングは common.scss で定義済み）
  -------------------------------------------------- */
