/* =====================================================
   common.css - 共通スタイル
   書体指定：欧文 Ubuntu / 和文 Noto Sans JP
===================================================== */
:root {
  --color-green-dark:  #016b39;
  --color-green-mid:   #1faa39;
  --color-green-light: #dff2e3;
  --color-bg-gray:     #f4f6f4;
  --color-bg-bnr:      #bec7c1;
  --color-text:        #333333;
  --color-border:      #cccccc;
  --font-en:  "Ubuntu", sans-serif;
  --font-jp:  "Noto Sans JP", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  /* 和文優先・欧文はUbuntuで表示 */
  font-family: var(--font-en), var(--font-jp);
  color: var(--color-text);
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}

body.is-menu-open {
  overflow: hidden;
}

/* 和文テキストには明示的に Noto Sans JP を指定するクラス */
.font-jp {
  font-family: var(--font-jp);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ----- 共通ボタン ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn--green {
  background: var(--color-green-dark);
  color: #fff;
}

.btn--green:hover {
  opacity: 0.85;
}

.btn__arrow {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 2px;
}

/* ----- セクションヘッダー ----- */
.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header--left {
  text-align: left;
}

/* 和文ラベル（お知らせ / 学会誌 etc） */
.section-header__label {
  font-family: var(--font-jp);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
  display: block;
}

/* 英文見出し（Ubuntu / green-dark） */
.section-header__title {
  font-family: var(--font-en);
  font-size: 2.875rem;
  font-weight: 300;
  color: var(--color-green-dark);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* ----- フッター ----- */
.footer {
  background: var(--color-green-dark);
  color: #fff;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 80px 0;
}

/* ロゴ */
.footer__logo-wrap {
  margin-bottom: 48px;
}

.footer__logo-img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  /* 白抜き */
}

/* ナビ 4カラム */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 40px;
  padding-bottom: 56px;
}

/* カラム見出し */
.footer__nav-title {
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer__nav-title--mt {
  margin-top: 28px;
}

.footer__nav-title--sub {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
}

/* リストアイテム：中点付き */
.footer__nav-list li {
  line-height: 1;
}

.footer__nav-list a {
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
  line-height: 2;
  display: block;
  transition: color 0.2s;
}

.footer__nav-list a::before {
  content: '・';
  font-size: 0.75rem;
}

.footer__nav-list a:hover {
  color: #fff;
}

/* インデント付きリスト（大会・シンポ / 学会誌 の子項目） */
.footer__nav-list--indent a {
  padding-left: 1em;
}

/* ボトムバー */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.footer__copy {
  font-family: var(--font-en);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.8);
}

/* Xアイコン：シンプルなテキスト白 */
.footer__x-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.footer__x-link:hover {
  color: #fff;
}

