/* ============================================================
   style-header-footer.css
   IMEG サイト ヘッダー・フッター専用スタイル
   下層ページ・トップページ共通で読み込む
   フォント：Noto Sans JP（後でAdobe Fontsに差し替え）
   メインカラー：#0080CD
   ※ フォントサイズはpx直値で統一（remを使わない）
   ============================================================ */

/* ヘッダー固定分のbodyオフセット（全ページ共通） */
body {
  padding: 0px;
	 margin: 0;
}
@media (max-width: 768px) {
  body { padding-top: 0px; }
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: normal;
}
ul{	list-style: none;	padding: 0;	margin:0;}
li{	list-style: none;	padding: 0;	margin:0;}

.con_pad{height: 120px;}
@media (max-width: 768px) {
.con_pad{height: 100px;}
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #0080CD;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}

.header-inner {
  max-width: 1280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
	padding-bottom: 10px;
	padding-top: 10px;
  align-items: center;
  justify-content: space-between;
}

/* ---- ロゴ ---- */
.header-logo { width: 100%; max-width: 390px; height: auto; display: inline-block; vertical-align: middle; }
.header-logo a { display: inline-block; }
.header-logo img { height: auto; width:100%; }

/* ---- 右側コントロール群 ---- */
.header-controls {
  float: right;
  height: 60px;
  line-height: 60px;
}
.header-controls:after { content: ''; display: table; clear: both; }

/* SNSアイコン群 */
.header-sns {
  float: left;
  padding: 0 16px;
  height: 60px;
  line-height: 60px;
}
.header-sns-link {
  float: left;
  display: inline-block;
  color: #ffffff;
  opacity: .9;
  margin-left: 14px;
  padding-top: 15px;   /* 変更：21px → 15px（アイコン30px分に合わせ上下中央） */
  line-height: 1;
  transition: opacity .2s;
}
.header-sns-link:first-child { margin-left: 0; }
.header-sns-link:hover { opacity: 1; }
.header-sns-link svg { width: 27px; height: 27px; display: block; } /* 追加 */

/* ENボタン */
.header-lang-btn {
  float: left;
  display: inline-block;
  width: 36px;
  height: 36px;
  margin-top: 12px;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
  line-height: 32px;
  margin-right: 12px;
  transition: background .2s, color .2s;
}
.header-lang-btn:hover { background: #ffffff; color: #0080CD; }

/* MENUボタン */
.header-menu-btn {
  float: left;
  height: 38px;
  margin-top: 11px;
  border: none;
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
	background-color: #0080CD;
}
.menu-btn-label { margin-right: 8px; }



/* ヘッダー右端画像スロット */
.header-img-slot {
  float: left;
  width: 70px;
  height: auto;
  margin-left: 12px;
}
.header-img-slot img { width: 100%; height: auto; display: block; }

/* ============================================================
   GLOBAL MODAL（全面ナビゲーション）
   ============================================================ */
.global-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.55);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.global-modal-overlay.is-visible { opacity: 1; pointer-events: auto; }

.global-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1200;
  background: #0080CD;
  color: #ffffff;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.global-modal[hidden] { display: block !important; }
.global-modal.is-visible { opacity: 1; pointer-events: auto; }

.global-modal-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  position: relative;
}

.global-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background .2s;
  display: inline-block;
  line-height: 1;
}
.global-modal-close:hover { background: rgba(255,255,255,.2); }

/* ナビ 2カラム（float） */
.global-modal-nav { margin-top: 20px; }
.global-modal-nav:after { content: ''; display: table; clear: both; }
.global-modal-col {
  float: left;
  width: 50%;
  padding-right: 40px;
  box-sizing: border-box;
}
.global-modal-col:last-child { padding-right: 0; padding-left: 20px; }

.modal-nav-group { margin-bottom: 28px; }
.modal-nav-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  border-bottom: 1px solid rgba(255,255,255,.35);
  padding-bottom: 8px;
  margin-bottom: 10px;
}
.modal-nav-list li { margin-bottom: 2px; }
.modal-nav-list a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.9);
  padding: 5px 0 5px 12px;
  border-left: 2px solid transparent;
  line-height: 1.5;
  transition: border-color .18s, color .18s, padding-left .18s;
}
.modal-nav-list a:hover {
  color: #ffffff;
  border-left-color: #ffffff;
  padding-left: 18px;
}

/* ============================================================
   RESPONSIVE：ヘッダー・モーダル
   ============================================================ */
@media (max-width: 768px) {
  .site-header { height: auto; }
  .header-inner {
  width: 96%; height: auto; }
  .header-controls { height: 52px; line-height: 52px; }

  .header-logo { width: 60%; }
  .header-logo img { width: 100%; height: auto; max-height: 36px; }

  .header-sns { display: none; }
  .header-lang-btn { display: none; }
  .header-img-slot { display: none; }

  .menu-btn-label { display: none; }
  .header-menu-btn { padding: 0 10px; margin-top: 7px; height: 38px; }

  .global-modal-col { float: none; width: 100%; padding-right: 0; padding-left: 0; }
  .global-modal-inner { padding: 64px 20px 40px; }
}

@media (max-width: 480px) {
  .modal-nav-list a { font-size: 15px; }
}

/* モーダル内SNSアイコン（ナビ下部・中央配置） */
.modal-sns-wrap {
  text-align: center;
  padding: 32px 0 8px;
  border-top: 1px solid rgba(255,255,255,.25);
  margin-top: 24px;
}
.modal-sns-link {
  display: inline-block;
  color: #ffffff;
  opacity: .85;
  margin: 0 14px;
  line-height: 1;
  transition: opacity .2s;
}
.modal-sns-link:hover { opacity: 1; }
.modal-sns-link svg { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0080CD;
  color: #ffffff;
  padding: 52px 0 0;
margin-top: 90px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- ナビゲーション（4カラム float） ---- */
.footer-nav-area {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.footer-nav-area:after { content: ''; display: table; clear: both; }

.footer-nav-col {
  float: left;
  width: 23%;
  margin-right: 2.6%;
  box-sizing: border-box;
}
.footer-nav-col:last-child { margin-right: 0; }

.footer-nav-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(255,255,255,.4);
  padding-bottom: 6px;
  margin-bottom: 10px;
  margin-top: 20px;
  color: #ffffff;
}
.footer-nav-col .footer-nav-heading:first-child { margin-top: 0; }

.footer-nav-list li { margin-bottom: 2px; }
.footer-nav-list li.sub { padding-left: 15px; }
.footer-nav-list a {
  font-size: 12.5px;
  color: rgba(255,255,255,.85);
  display: block;
  padding: 3px 0;
  line-height: 1.5;
  transition: color .18s, padding-left .18s;
}
.footer-nav-list a:hover { color: #ffffff; padding-left: 6px; }

/* ---- 下部エリア（地図＋住所 float 2分割） ---- */
.footer-bottom-area { padding: 40px 0; }
.footer-bottom-area:after { content: ''; display: table; clear: both; }

.footer-map {
  float: left;
  width: 50%;
  height: 280px;
  margin-right: 4%;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(0,0,0,.2);
}
.footer-map iframe { width: 100%; height: 350px; border: 0; display: block; }

.footer-address-area { float: right; width: 42%; }

/* ロゴ＋組織名 */
.footer-logo-img { float: left; height: 52px; width: auto; margin-right: 16px; }

.footer-org-en {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
  margin-top: 2px;
  line-height: 1.4;
}

.footer-address-block { margin-top: 0; }
.footer-address-text {
  font-size: 13px;
  color: rgba(255,255,255,.9);
  margin-bottom: 12px;
}


/* ---- コピーライト ---- */
.footer-copyright {
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 16px 0;
  text-align: center;
}
.footer-copyright p {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  letter-spacing: .03em;
}

/* ============================================================
   RESPONSIVE：フッター
   ============================================================ */
@media (max-width: 1100px) {
  .footer-nav-col { width: 46%; margin-right: 4%; margin-bottom: 24px; }
  .footer-nav-col:nth-child(2n) { margin-right: 0; }
}

@media (max-width: 768px) {
  .footer-inner { padding: 0 20px; }
  .footer-nav-col { float: none; width: 100%; margin-right: 0; margin-bottom: 20px; }
  .footer-map { float: none; width: 100%; height: 220px; margin-right: 0; margin-bottom: 24px; }
  .footer-map iframe { height: 220px; }
  .footer-address-area { float: none; width: 100%; }
  .footer-org-ja { font-size: 15px; }
  .footer-contact-row:nth-child(1) dd,
  .footer-contact-row:nth-child(2) dd { font-size: 17px; }
}

@media (max-width: 480px) {
  .footer-logo-img { float: none; display: block; margin-bottom: 10px; }
}