/*
Theme Name: 青森風力エネルギー促進協議会 テーマ
Author: RectoDesign
Version: 1.0
*/

@charset "UTF-8";

/*==================================================
reset
==================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

span {
  line-height: inherit;
  font-size: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  font-weight: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
}



ol,
ul {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

em,
strong,
em *,
strong * {
  font-weight: bold;
}

/*--form初期化--*/
input[type=submit],
button {
  cursor: pointer;
}

button,
input[type=text],
input[type=image],
input[type=password],
input[type=file],
input[type=submit],
input[type=reset],
input[type=button],
input[type=email],
input[type=tel],
textarea {
  font-family: inherit;
}

::placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

a {
  text-decoration: none;
  border: none;
  color: inherit;
  transition: opacity 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

th {
  text-align: left;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {

  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td,
  article,
  aside,
  canvas,
  details,
  embed,
  figure,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  output,
  ruby,
  section,
  summary,
  time,
  mark,
  audio,
  video {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  button,
  input[type=text],
  input[type=image],
  input[type=password],
  input[type=file],
  input[type=submit],
  input[type=reset],
  input[type=button],
  input[type=email],
  input[type=tel] textarea {
    /*background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);*/
    border-radius: 0;
    box-shadow: none;
    appearance: none;
  }

  textarea,
  input[type=email],
  input[type=text],
  input[type=image],
  input[type=password] {
    -webkit-appearance: none;
  }
}


/*==================================================
sp pc
==================================================*/
@media all and (min-width: 767px) {
  .sp-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 1110px) {
  .sp-only_nav {
    display: none !important;
  }
}

@media all and (max-width: 1110px) {
  .pc-only_nav {
    display: none !important;
  }
}


/*==================================================
  Common Variables (共通設定)
==================================================*/
:root {
  /* Colors */
  --color-bg-base: #fcfcfc;
  --color-bg-dark: #1d4184;
  --color-bg-footer: #1d2b3b;
  --color-text-main: #484848;
  --color-white: #ffffff;
  
  /* Gradation (About Us, Buttons) */
  --grad-main: linear-gradient(to right, #1288ec 0%, #1b326e 80%);

  /* Fonts */
  --font-ja: "Noto Sans JP", sans-serif;
  --font-en: "Expletus Sans", sans-serif;

  /* Layout */
  --container-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  line-height: 1.6;
}

/* レイアウト用の汎用クラス */
.l-container {
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px; /* 画面端の余白 */
  padding-left: 20px;
}

.u-en {
  font-family: var(--font-en);
}

/* アンカーリンクのスクロール位置調整（ヘッダーの高さ分だけ上に余白を作る）
:target::before {
  content: "";
  display: block;
  height: 110px;
  margin-top: -110px;
  visibility: hidden;
  pointer-events: none;
} */

/*@media all and (max-width: 1100px) {
  :target::before {
    height: 70px;
    margin-top: -70px;
  }
}*/

.p-greeting,
.p-purpose,
.p-rules__head,
.p-chart,
.p-officer {
  scroll-margin-top: 50px;
}

/*==================================================
  Header (PC)
==================================================*/
.l-header {
  width: calc(100% - 80px); /* 左右に余白を作る場合。100%でも可 */
  margin: 30px auto 0; /* 上に30px、左右中央、下0 */
  background-color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* 浮遊感を出すための影 */
  position: sticky;
  top: 30px; /* スクロール時に上で止まる位置も30pxにする */
  z-index: 100;
}

.l-header__inner {
  max-width: 100%;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo img {
  width: 358px;
  display: block;
}
@media all and (max-width: 1400px) {
  .l-header {
    width: calc(100% - 40px);
  }
}
@media all and (max-width: 1360px) {
  .l-header__logo img {
    width: 258px;
  }
}
@media all and (max-width: 1180px) {
  .l-header__logo img {
    width: 200px;
  }
}

.l-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.l-header__nav-list {
  display: flex;
  gap: 40px;
}

.l-header__nav-item {
  position: relative;
  font-size: 16px;
  font-weight: 700;
}

@media all and (max-width: 1360px) {
  .l-header__nav-list {
  gap: 30px;
  }
  .l-header__nav-item {
  font-size: 14px;
  }
}

@media all and (max-width: 1180px) {
  .l-header__nav-list {
  gap: 30px;
  }
  .l-header__nav-item {
  font-size: 13px;
  }
}

.l-header__nav-item > a {
  padding: 35px 0;
  display: block;
}

/* プルダウンメニュー */
.l-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.l-header__nav-item:hover .l-header__dropdown {
  opacity: 1;
  visibility: visible;
}

.l-header__dropdown li a {
  display: block;
  padding: 12px 25px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  text-align: left;
}

.l-header__dropdown li a::after {
  content: ''; /* テキストの「→」を消去 */
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%); /* 垂直方向の中央揃え */
  
  /* 矢印画像の設定 */
  width: 11px;  /* デザインに合わせて調整してください */
  height: 11px;
  background: url('img/arrow-blue.svg') no-repeat center / contain;
  
  /* ホバー時の動きを出すなら追加 */
  transition: transform 0.3s;
}

/* ホバー時に矢印を少し右に動かす演出（お好みで） */
.l-header__dropdown li a:hover::after {
  transform: translateY(-50%) translateX(3px);
}


/* ボタン */
.l-header__buttons {
  display: flex;
  gap: 15px;
}

/* ボタン共通 */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between; /* 両端に振り分ける */
  padding-left: 20px;
  padding-right: 5px; /* 白い丸の余白調整 */
  color: #fff !important;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s;
  overflow: hidden;
}

/* テキスト部分（16px相当） */
.c-btn__text {
  font-size: 15px; /* デザインに合わせて微調整 */
  letter-spacing: 0.05em;
}

/* アイコンを包む白い円 */
.c-btn__icon {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-btn__icon img {
  width: 16px; /* アイコンの大きさ */
  height: auto;
}

/* 会員ページ（背景：#1d2b3b、サイズ：160x42） */
.c-btn--member {
  width: 160px;
  height: 42px;
  background-color: #273845; /* 添付画像に近いチャコール */
}

/* お問い合わせ（グラデーション、サイズ：185x42） */
.c-btn--contact {
  width: 185px;
  height: 42px;
  background: linear-gradient(to right, #1288ec 0%, #1b326e 50%)
}

.c-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/*==================================================
  SP Styles (max-width: 767px)
==================================================*/
@media all and (max-width: 1280px) {
  .c-btn__text {
    font-size: 13px;
  }
  .c-btn--member {
    width: 140px;
    height: 38px;
  }
  .c-btn--contact {
    width: 165px;
    height: 38px;
  }
}
@media all and (max-width: 1110px) {
  /* ヘッダー全体 */
  .l-header {
    width: 100%;
    max-width: none;
    margin: 0;
    top: 0;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .l-header__inner {
    height: 70px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .l-header__logo {
    padding-left: 15px;
  }

  .l-header__logo img {
    width: 230px;
  }

  /* ハンバーガーボタン */
  .l-header__hamburger {
    width: 70px;
    height: 70px;
    background: var(--grad-main);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 1001;
    transition: background 0.3s;
  }

  /* メニュー展開時は青い背景を透明にする */
  .is-active .l-header__hamburger {
    background: transparent;
  }

  .l-header__hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
  }

  /* アクティブ時の×アニメーション */
  .is-active .l-header__hamburger span:nth-child(1) {
    transform: translateY(5px) rotate(30deg);
  }
  .is-active .l-header__hamburger span:nth-child(2) {
    transform: translateY(-5px) rotate(-30deg);
  }

  .p-sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh; 
  background: var(--grad-main);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  overflow-y: auto;
  padding-top: 70px;
  padding-bottom: 0; 
}

  body.is-active {
    overflow: hidden; /* 背景スクロール防止 */
  }
  body.is-active .p-sp-nav {
    opacity: 1;
    visibility: visible;
  }


.p-sp-nav__inner {
  padding: 20px 0 100px; /* ★一番下の数字を 60px→100px に増やして余裕を持たせる */
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - 70px); /* 画面が大きくてもフッターが沈みすぎないように */
}

  .p-sp-nav__list {
    padding: 0 30px;
  }


  /* メイン項目の枠線（ホーム、お知らせ等） */
  .p-sp-nav__list > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  .p-sp-nav__list > li > a,
  .p-sp-nav__item-parent > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 22px 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    width: 100%;
  }

  /* メイン項目の矢印アイコン */
  .p-sp-nav__list > li > a::after,
  .p-sp-nav__item-parent > a::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url('img/arrow-white.svg') no-repeat center / contain;
    flex-shrink: 0;
  }

  /* 子メニュー（sub）の配置調整 */
  .p-sp-nav__sub {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0 50px 0;
    gap: 12px 0;
  }

  .p-sp-nav__sub li {
    width: 50%;
  }

  .p-sp-nav__sub li a {
    display: block;
    padding: 4px 0;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    border: none;
  }

  /* 子メニューには矢印を出さない */
  .p-sp-nav__sub li a::after {
    display: none !important;
  }

.p-sp-nav__btn {
  list-style: none;
  /*margin: 0 30px;  左右余白 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* ボタンの上下にも線を引く（カンプ準拠） */
}

.c-btn-sp {
  background: transparent !important; /* ボタン全体の白背景を撤廃 */
  display: flex;
  align-items: center;
  padding: 15px 0; /* 上下パディング */
  text-decoration: none;
  width: 100%;
  position: relative;
}

.c-btn-sp__icon {
  width: 36px; /* 円のサイズ */
  height: 36px;
  background-color: #fff !important; /* ここだけを白くする */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px; /* テキストとの間隔 */
  flex-shrink: 0;
}

.c-btn-sp__icon img {
  width: 15px;         /* 中のアイコン自体のサイズ */
  height: auto;
  display: block;
}

.c-btn-sp__text {
  color: #fff !important; /* テキストの色を白に変更 */
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

  /* ボタン内右端の青い矢印 */
.c-btn-sp::after {
  content: '';
  width: 14px;
  height: 14px;
  background: url('img/arrow-white.svg') no-repeat center / contain;
  margin-left: auto; /* 右端へ寄せる */
  flex-shrink: 0;
}

.p-sp-nav__info {
  color: #fff;
  margin-top: auto;
  padding: 50px 30px 40px;
}

  .p-sp-nav__logo {
    margin-bottom: 10px;
  }

  .p-sp-nav__logo img {
    width: 290px;
    height: auto;
  }

  .p-sp-nav__address {
    font-style: normal;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 60px;
  }

  .p-sp-nav__footer a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
  }
}


/*==================================================
  Main Visual (MV) 位置自由調整版
==================================================*/
.p-mv {
  position: relative;
  width: 100%;
  padding-top: 140px; 
  background-color: var(--color-bg-base);
  overflow: hidden; 
}

/* コピーの配置エリア */
.p-mv__content {
  position: relative;
  z-index: 30;
  /* 画面左端からの距離をここで調整 */
  padding-left: 12%; 
}

.p-mv__title {
  font-size: 2.45vw;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  color: #252525;
  margin: 0;
}

.p-mv__en {
  font-size: 1.04vw;
  color: #252525;
  margin-top: 15px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-mv__wave {
  position: relative;
  z-index: 20;
  width: 100%;
  margin-top: -40px; /* コピーに近づける調整 */
  pointer-events: none;
}

.p-mv__wave img {
  width: 100%;
  height: auto;
  display: block;
}


/*--- ブレイクポイントごとの位置調整 ---*/

@media all and (max-width: 1440px) {
  .p-mv__content {
    padding-left: 10%;
  }
  .p-mv {
    padding-top: 100px;
  }
  .p-mv__title {
  font-size: 2.65vw;
  }
  .p-mv__en {
  font-size: 1.24vw;
  }
}

@media all and (max-width: 1359px) {
  .p-mv__title {
  font-size: 2.85vw;
  }
  .p-mv__en {
  font-size: 1.44vw;
  }
}

@media all and (max-width: 1110px) {
  .p-mv { padding-top: 80px; }
  .p-mv__content {
    padding-left: 5%; /* ブレイクポイントに合わせて微調整 */
  }
  .p-mv__title { font-size: 32px; }
  .p-mv__slider { margin-top: -100px; }
}

@media all and (max-width: 820px) {
  .p-mv { padding-top: 100px; }
  .p-mv__content {
    padding-left: 20px; /* スマホでは一律の余白に */
  }
  .p-mv__wave {
    margin-top: 30px;
  }
}
@media all and (max-width: 700px) {
  .p-mv__title { font-size: 24px; }
  .p-mv__en { font-size: 14px; }
}
@media all and (max-width: 500px) {
  .p-mv { padding-top: 100px; }
  .p-mv__title { font-size: 19px; }
  .p-mv__en { font-size: 13px; }
  .p-mv__wave {
    margin-top: 30px;
  }
}

/*==================================================
  MV Infinite Slider (無限ループスライダー)
==================================================*/
.p-mv__slider {
  display: flex;
  overflow: hidden;
  width: 100%;
  margin-top: 0; 
}

.p-mv__list {
  display: flex;
  flex-shrink: 0; /* 幅を維持 */
}

.p-mv__item {
  width: 31.25vw;
  max-width: 600px;
  flex-shrink: 0;
}

.p-mv__item img {
  width: 100%;
  height: auto; 
  aspect-ratio: 600 / 480; /* カンプの比率を維持 */
  max-height: 480px;
  object-fit: cover;
  display: block;
}

/* アニメーション：右から左へ（すべて半角スペースに修正済み） */
.p-mv__list--left {
    animation: loop-left 80s linear infinite;
}

@keyframes loop-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


@media all and (max-width: 820px) {
  .p-mv__item {
    width: 380px; /* スマホでは1枚を大きく見せる */
  }
  .p-mv__item img {
    height: auto;
  }
}


.p-mv__base {
  width: 100%;
  height: 60px;
  background-color: #1d4184;
  margin-top: 0; /* スライダーとの隙間を確実に埋める */
}

@media all and (max-width: 820px) {
  .p-mv__base {
    height: 40px; /* スマホでは少し細くしても良いかもしれません */
  }
}
@media all and (max-width: 500px) {
  .p-mv__base {
    height: 20px; /* スマホでは少し細くしても良いかもしれません */
  }
}


/*==================================================
  News Section (カンプ再現・最終版)
==================================================*/
.p-news {
  padding: 100px 0;
  background-color: #fff;
}

.p-news__inner {
  display: flex;
  justify-content: space-between;
  gap: 90px;
}

.p-news__head {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; 
  align-items: flex-start;
}

.p-news__title {
  font-family: var(--font-en);
  font-size: 62px;
  font-weight: 600;
  line-height: 1;
  color: #252525;
}

.p-news__subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
  color: #252525;
}

.p-news__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 70px;
  padding: 0 25px;
  background: linear-gradient(to right, #1288ec 0%, #1b326e 50%) !important;
  border-radius: 40px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: opacity 0.3s;
  margin-top: 40px; 
  letter-spacing: 0.1em;
}

.p-news__btn::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url('img/icon-arrow-white.svg') no-repeat center / contain;
}

/* --- 右側：Body --- */
.p-news__body {
  flex-grow: 1;
}

/* 4. カテゴリータブ（点線とアクティブ色） */
.p-news__category-tab {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.p-news__category-tab li {
  font-size: 15px;
  font-weight: 700;
  color: #484848;
  cursor: pointer;
  padding: 0 24px;
  position: relative;
}

.p-news__category-tab li:hover {
  color: #1d4184;
}

/* 縦の点線 */
.p-news__category-tab li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background-image: linear-gradient(to bottom, #ccc 50%, transparent 50%);
  background-size: 1px 4px;
  background-repeat: repeat-y;
}

.p-news__category-tab li:first-child {
  padding-left: 0;
}

.p-news__category-tab li:first-child::before {
  display: none;
}

/* アクティブ（すべて）のスタイル */
.p-news__category-tab li.is-active {
  color: #1d4184;
}

.p-news__item {
  border-bottom: 1px solid #d3d3d3;
}

.p-news__link {
  display: flex;
  align-items: center;
  padding: 28px 0 20px 0;
  text-decoration: none;
  color: #252525;
}

/* 2. 日付・カテゴリとタイトルの改行制御用ラッパー */
.p-news__body-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.p-news__meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* 1. 日付のフォントを Noto Sans JP に指定 */
.p-news__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.p-news__label {
  font-size: 11px;
  font-weight: 500;
  background-color: #f6f6f6;
  padding: 2px 20px;
  border-radius: 20px;
  min-width: 80px;
  text-align: center;
  border: 1px solid #e7e7e7;
}

.p-news__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.p-news__arrow {
  width: 12px;
  height: 12px;
  margin-left: 30px;
  flex-shrink: 0;
  background: url('img/arrow-blue.svg') no-repeat center / contain;
}

@media all and (max-width: 1280px) {
  .p-news__inner {
    gap: 70px;
  }
  .p-news__head {
    width: 260px;
  }
}

@media all and (max-width: 1109px) {
  .p-news__inner { flex-direction: column; gap: 40px; }
  .p-news__head { width: 100%; min-height: auto; }
  .p-news__btn { width: 300px; margin: 60px auto 0 auto; }
  .p-news__category-tab { overflow-x: auto; white-space: nowrap; padding-bottom: 10px; }
}

@media all and (max-width: 820px) {
  .p-news { padding: 60px 0; }
  .p-news__subtitle { font-size: 15px; }
  .p-news__meta { gap: 15px; }
  .p-news__date { font-size: 13px;}
  .p-news__text { font-size: 14px;}
  .p-news__label {
  font-size: 12px;
  padding: 2px 16px;
  border-radius: 20px;
  min-width: 80px;
  }
  .p-news__category-tab {
  margin:30px 0 15px 0;
  }
  .p-news__category-tab li {
  font-size: 13px;
  padding: 0 24px;
  }
  .p-news__category-tab li::before {
  width: 1px;
  height: 26px;
  background-size: 1px 4px;
  }
}
@media all and (max-width: 500px) {
  .p-news__title { font-size: 48px; }
}


/*==================================================
  About Us Section
==================================================*/
.p-about {
  padding: 80px 0 120px 0;
  /* 共通のグラデーションを全幅に適用 */
  background: var(--grad-main) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.p-about::before {
  content: '';
  position: absolute;
  top: 75%;
  left: 50%;
  margin-left: -200px; /* 中央から左に140px固定。これで画面幅を変えても動きません */
  transform: translate(-50%, -50%); 
  width: 700px; 
  height: 700px;
  background: url('img/about-bg-pattern.png') no-repeat center / contain;
  pointer-events: none;
  z-index: 0;
}

.p-about__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  position: relative;
  z-index: 1;
}

/* --- 左側：コンテンツ --- */
.p-about__content {
  width: 36%;
}

.p-about__title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 15px;
}

.p-about__subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 60px;
}

.p-about__lead {
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

/* --- 右側：リンクカード --- */
.p-about__links {
  width: 48%;
  padding-top: 120px;
}

.p-about__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.p-about__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  padding: 20px 26px;
  border-radius: 4px;
  color: #484848;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.p-about__link:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.p-about__item-en {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 0px;
  color: #1d4184;
}

.p-about__item-ja {
  font-size: 17px;
  font-weight: 700;
  margin-top: -4px;
}

/* カード内の矢印アイコン */
.p-about__link::after {
  content: '';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url('img/arrow-blue.svg') no-repeat center / contain;
}

/* --- レスポンシブ --- */
@media all and (max-width: 1280px) {
  .p-about__inner { gap: 50px;}
}
@media all and (max-width: 1110px) {
  .p-about__links {
    padding-top: 20px;
  }
  .p-about__inner {
    flex-direction: column;
    gap: 50px;
  }
  .p-about__content,
  .p-about__links {
    width: 100%;
  }
  .p-about__title { font-size: 66px; }
  .p-about::before {
    top: 40%;
    left: 65%;
    margin-left: 0px; /* 中央から左に140px固定。これで画面幅を変えても動きません */
    width: 800px; 
    height: 800px;
  }
}

@media all and (max-width: 820px) {
  .p-about { padding: 60px 0; }
  .p-about__link { height: 90px; }
  .p-about::before {
    width: 700px; 
    height: 700px;
  }
}

@media all and (max-width: 500px) {
  .p-about__lead { font-size: 15px;}
  .p-about { padding: 60px 0; }
  .p-about__title { font-size: 48px; }
  .p-about__link { height: auto; }
.p-about__list {
  gap: 10px;
}
.p-about__links {
    padding-top: 0px;
}
.p-about__link {
  padding: 12px 12px;
}
.p-about__item-en {
  font-size: 12px;
}
.p-about__item-ja {
  font-size: 13px;
  margin-top:-4px;
}
.p-about__link::after {
  right: 12px;
  top: 50%;
  width: 10px;
  height: 10px;
}
.p-about::before {
    top: 50%;
    left: 50%;
    width: 650px; 
    height: 650px;
    opacity: 0.7;
  }
}


/*==================================================
  Contact Section
==================================================*/
.p-contact {
  position: relative;
  /* 背景画像の設定：パスは実際のディレクトリに合わせて調整してください */
  background: url('img/contact-bg.webp') no-repeat center / cover;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

/* 画像の上に暗めのレイヤーを重ねて文字を読みやすくする（必要に応じて） */
.p-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 暗さの調整 */
  z-index: 1;
}

.p-contact__inner {
  position: relative;
  z-index: 2; /* 背景レイヤーより上に表示 */
}

.p-contact__title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 25px;
}

.p-contact__subtitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 70px;
}

/* --- お問い合わせボタン --- */
.p-contact__btn-wrap {
  display: flex;
  justify-content: center;
}

/* --- お問い合わせボタン（Newsセクションのスタイルを継承） --- */
.p-contact__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* テキストは左寄せ */
  width: 300px;
  height: 70px;
  padding: 0 30px; /* 左側に余白 */
  
  /* 枠線のみのデザイン */
  border: 1px solid #fff;
  border-radius: 40px;
  
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  
  /* 中央寄せにするためのマージン */
  margin: 0 auto;
}

/* ホバー演出 */
.p-contact__btn:hover {
  background-color: rgba(255, 255, 255, 0.5); /* 軽く白を乗せる */
  opacity: 1;
  transform: translateY(-2px);
}

/* 右側の矢印アイコン（Newsボタンと同じ配置ルール） */
.p-contact__btn::after {
  content: '';
  position: absolute;
  right: 20px; /* 右端から固定位置 */
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url('img/icon-arrow-white.svg') no-repeat center / contain;
}


/* --- レスポンシブ --- */
@media all and (max-width: 820px) {
  .p-contact { padding: 80px 0; }
  .p-contact__title { font-size: 56px; }
  .p-contact__subtitle { font-size: 16px; margin-bottom: 40px; }
  .p-contact__btn { width: 280px; height: 60px; font-size: 16px; }
}

@media all and (max-width: 500px) {
  .p-contact__title { font-size: 48px; }
}




/*==================================================
  Footer (決定版)
==================================================*/
.l-footer {
  color: #fff;
  background-color: #1b2d41; /* ネイビー部分の背景色 */
}

.l-footer__main {
  padding: 100px 0 40px; /* 下側の余白を少し調整 */
}

.l-footer__inner {
  display: flex;
  justify-content: space-between; /* これでinfo(左)とnav(右)が分かれます */
  align-items: flex-start;
  padding-bottom: 30px;
}

/* --- 左側：ロゴ・住所・ボタン --- */
.l-footer__info {
  width: 350px;
}

.l-footer__logo-area {
  margin-bottom: 20px;
}

.l-footer__logo-img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
}

.l-footer__address {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
}

.l-footer__btns {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- フッターボタン共通（ヘッダーの c-btn の構造に合わせる） --- */
.l-footer__btn {
  display: flex;
  align-items: center;
  justify-content: space-between; /* 両端に振り分け */
  width: 220px;
  height: 50px;
  padding-left: 20px;
  padding-right: 10px; /* 白い円の右側の余白 */
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}

.l-footer__btn--contact { 
  background: var(--grad-main); 
}
.l-footer__btn--member { 
  background: #2c363f; /* 会員ページの背景色（以前の決定色） */
}

/* 白い円のベース（擬似要素 ::after を円として使用） */
.l-footer__btn::after {
  content: '';
  width: 34px; /* 円のサイズ */
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px; /* 中のアイコンのサイズ */
  flex-shrink: 0;
  position: static; /* absoluteを解除 */
  transform: none; /* translateを解除 */
}

/* お問い合わせ（メールアイコン） */
.l-footer__btn--contact {
  background: var(--grad-main);
}
.l-footer__btn--contact::after {
  background-image: url('img/icon-mail.svg');
}

/* 会員ページ（鍵アイコン） */
.l-footer__btn--member {
  background: #264761; /* カンプの濃い青 */
}
.l-footer__btn--member::after {
  background-image: url('img/icon-lock.svg');
}

/* ホバー演出 */
.l-footer__btn:hover {
  opacity: 0.8;
}


/* --- 右側：ナビゲーション --- */
.l-footer__nav {
  display: flex;
  gap: 100px; /* ユニット間の幅を調整 */
  padding-top: 40px;
}


.l-footer__nav-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.l-footer__nav-list a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
}


/* --- プライバシーポリシーエリア（独立行） --- */
.l-footer__sub-links {
  margin-top: 40px;
  text-align: right; /* 右寄せ */
}

.l-footer__privacy {
  font-size: 12px;
  color: #fff;
  text-decoration: none;
}

/* --- 下部：白背景エリア --- */
.l-footer__bottom {
  background-color: #fff;
  height: 145px; /* ★指示通りの固定高さ */
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-footer__bottom-inner {
  text-align: center;
}

.l-footer__bottom-logo {
  width: 90px; /* シンボルロゴのサイズ調整 */
  margin-bottom: 12px;
}

.l-footer__copyright {
  font-size: 11px;
  color: #333;
}

/* --- レスポンシブ：SP非表示ルール --- */
@media all and (max-width: 1023px) {
  /* 指定のクラスを非表示 */
  .u-sp-none {
    display: none !important;
  }

  .l-footer__main {
    padding: 60px 0;
  }

  .l-footer__inner {
    justify-content: center;
    text-align: center;
  }

  .l-footer__info {
    width: 100%;
  }

  .l-footer__logo-area {
    display: flex;
    justify-content: center;
  }

  .l-footer__btns {
    align-items: center; /* ボタンも中央寄せ */
  }
  .l-footer__btn {
    width: 280px;
    height: 60px;
    border-radius: 40px;
  }
}

@media all and (max-width: 500px) {
  .l-footer__logo-img {
    max-width: 300px;
  }
}




/*==================================================
  Sub Page Common (下層共通設定)
==================================================*/
/* 下層MV (背景色: #f8f8f8) */
.p-sub-mv {
  background-color: #f6f6f6;
  padding: 200px 0 150px; /* ヘッダーの浮遊分を考慮して上を広めに */
}

.p-sub-mv__content {
  /* カンプに合わせて左寄せ */
  text-align: left;
}

.p-sub-mv__subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.p-sub-mv__title {
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  
  /* --- 文字グラデーションの設定 --- */
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* 文字が切れないようにするための保険（ブラウザによって必要） */
  display: inline-block;
}


.l-container--sub {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
  /*padding-right: 20px;
  padding-left: 20px;*/
  width: 100%;
}

@media all and (max-width: 1320px) {
  .l-container--sub { 
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* レスポンシブ */
@media all and (max-width: 1110px) {
  .p-sub-mv {
    padding: 120px 0 80px;
  }
  .p-sub-mv__title {
    font-size: 60px;
  }
  .p-sub-mv__subtitle {
    font-size: 22px;
  }
}

@media all and (max-width: 767px) {
  .p-sub-mv__title {
    font-size: 48px;
  }
  .p-sub-mv__subtitle {
    font-size: 18px;
  }
}

/*==================================================
  Sub Page Layout (メイン100% ＋ 左パディング)
==================================================*/
.l-sub-page-wrapper {
  position: relative; /* サイドバーの絶対配置と追従の基準点 */
  width: 100%;
}

/* --- サイドバー（240px固定・追従設定） --- */
.l-sidebar {
  position: absolute;
  /* max-width 1260px の中央合わせ基準でサイドバーを配置 */
  left: calc(50% - 630px); 
  top: 0;
  bottom: 0; 
  width: 240px; 
  z-index: 50;
  padding:60px 0;
}

.p-side-nav {
  position: sticky;
  top: 130px; /* ヘッダーからの距離 */
}

.p-side-nav__item a {
  display: flex;
  align-items: center;
  padding: 18px 0 18px 25px;
  font-size: 14px;
  font-weight: 600;
  color: #484848;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

/* サイドバー：全項目左側の矢印 */
.p-side-nav__item a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url('img/arrow-blue.svg') no-repeat center / contain;
}

/* サイドバー：全項目下部の短い青線 */
.p-side-nav__item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 20px;
  height: 2px;
  background-color: #3a6fd3;
}

.p-side-nav__item .is-active a {
  color: #1d4184;
}

/* --- メインコンテンツ --- */
.l-main-contents {
  width: 100%;
  font-weight: 500;
}

/* 各セクション共通：サイドバー(240px) + 余白(60px) を確保 */
.p-greeting__inner,
.p-purpose__inner,
.p-chart__inner,
.p-officer__inner {
  padding-left: 320px;
}

/* 画面幅が1300px以下の時は、画面端から20pxの位置に固定 */
@media all and (max-width: 1320px) {
  .l-sidebar {
    left: 20px;
    width: 200px;
  }
  .p-greeting__inner,
  .p-purpose__inner,
  .p-chart__inner,
  .p-officer__inner {
    padding-left: 260px;
  }
}

/* --- 共通見出しパーツ --- */
.c-sub-section-title {
  font-size: 30px;
  font-weight: 700;
  color: #252525;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
  line-height: 1.4;
  position: relative;
}

.c-sub-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 70px;
  height: 2px;
  background-color: #3a6fd3;
}

.c-sub-en-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/*==================================================
  理事長挨拶 (Greeting)
==================================================*/
.p-greeting {
  background-color: #fff;
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
}

.p-greeting__head {
  margin-bottom: 80px;
}

.p-greeting__body {
  display: block; 
  overflow: hidden;
}

.p-greeting__text {
  font-size: 16px;
  line-height: 1.8;
  color: #484848;
  margin-bottom: 40px;
}

.p-greeting__sign {
  text-align: right;
  margin-top: 60px;
  clear: both; 
}

.p-greeting__img {
  float: right; 
  width: 230px; /* PC版：当初のサイズ */
  margin-left: 60px; 
  margin-bottom: 20px; 
}

.p-greeting__img img {
  width: 100%;
  height: auto;
  display: block;
}

/*==================================================
  設立主旨 (Purpose)
==================================================*/
.p-purpose {
  background-color: #edf5fc;
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
}

.p-purpose__head {
  margin-bottom: 60px;
}

.p-purpose__lead {
  font-size: 16px;
  line-height: 2;
  color: #484848;
  margin-bottom: 60px;
}

.p-purpose__item {
  margin-bottom: 70px;
}

.p-purpose__item:last-child {
  margin-bottom: 0;
}

/* 小見出し：● 設立の目的 */
.p-purpose__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-purpose__item-title::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #3a6fd3;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.p-purpose__text {
  font-size: 16px;
  line-height: 2;
  color: #484848;
}

/* 活動内容：数字付きリスト */
.p-purpose__list {
  list-style: none;
  counter-reset: purpose-count;
}

.p-purpose__list li {
  font-size: 16px;
  line-height: 1.5;
  color: #484848;
  margin-bottom: 14px;
  display: flex;
}

.p-purpose__list li::before {
  counter-increment: purpose-count;
  content: counter(purpose-count) ".";
  margin-right: 8px;
  font-weight: 700;
  color: #3a6fd3;
}

/*==================================================
  Responsive
==================================================*/
@media all and (max-width: 1023px) {
  .l-sidebar {
    position: static;
    width: 100%;
    max-width: 100%;
    /*margin-bottom: 80px;*/
    padding: 30px 20px 0 20px;
    background: #ffffff;
  }

  /* 矢印を下に回転 */
  .p-side-nav__item a::before {
    transform: translateY(-50%) rotate(90deg);
    left: 5px; 
  }

  .p-side-nav__list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .p-greeting {
    padding-top: 70px;
    padding-bottom: 50px;
  }

  .p-greeting__inner,
  .p-purpose__inner,
  .p-chart__inner,
  .p-officer__inner {
    padding-left: 0; /* 左パディング解除 */
  }

  .p-greeting__text {
    font-size: 15px;
    margin-bottom: 40px;
  }

  .p-greeting__sign {
    margin-top: 60px;
  }

  .p-greeting__img {
    width: 200px; /* 1023px以下の画像サイズ */
    margin-left: 40px; 
    margin-bottom: 20px; 
  }
  .p-purpose {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p-purpose__lead, .p-purpose__text {
    font-size: 15px;
  }
  .p-purpose__list li{
    font-size: 15px;
  }
   
  .p-purpose__item {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 700px) {
  .c-sub-section-title {
    font-size: 24px;
  }

  .p-greeting__body {
    display: flex; 
    flex-direction: column;
    gap: 30px;
  }

  .p-greeting__img {
    float: none;
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
    order: -1;
  }
  .p-greeting__text {
    margin-bottom: 20px;
  }
  .p-purpose__item-title {
    font-size: 19px;
    margin-bottom: 20px;
    gap: 6px;
  }
}

@media all and (max-width: 500px) {
  .p-side-nav__item a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
  }
}


/*==================================================
  定款について (Articles)
==================================================*/

.p-rules__head{
  padding-top: 80px;
}

.p-rules__text{
  font-size: 16px;
}

.p-rules__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 350px;
  height: 70px;
  padding: 0 25px;
  background: var(--grad-main);
  border-radius: 40px;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: opacity 0.3s;
  margin-top: 40px; 
  letter-spacing: 0.05em;
}

.p-rules__btn::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: url('img/icon-arrow-white.svg') no-repeat center / contain;
}

.p-rules__btn span {
  font-size: 18px;
  font-weight: 700;
}

@media all and (max-width: 1023px) {
.p-rules__head {
    padding-top: 70px;
  }
}

@media all and (max-width: 500px) {
  .p-rules__btn {
    width: 100%;
  }
  .p-rules__btn span {
    font-size: 16px;
  }
}

/*==================================================
  組織図 (chart)
==================================================*/
.p-chart {
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
  background: #fbfbfb;
}

.p-chart__head {
  margin-bottom: 60px;
}

.p-chart__img {
  margin-bottom: 60px;
}

.p-chart__img img{
  width: 100%;
}

.p-chart__sub-title {
  padding: 8px 20px;
  color: #484848;
  background: #edf5fc;
  margin-bottom: 30px;
}

.p-chart__sub-title span{
  font-size: 13px;
  margin-left: 20px;
}

.chart__list{
  padding-left: 20px;
  margin-bottom: 40px;
}

@media all and (max-width: 1023px) {
  .p-chart {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .p-purpose__item ol:last-child{
    margin-bottom: 0px;
  }
}

@media all and (max-width: 500px) {
  .p-chart__sub-title {
    font-size: 14px;
  }

  .p-chart__sub-title span{
    font-size: 11px;
    margin-left: 15px;
  }
}

/*==================================================
  役員名簿 (Officer)
==================================================*/
.p-officer {
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
  background: #ffffff;
}

.p-officer__head {
  margin-bottom: 60px;
}

.p-officer__table table {
  letter-spacing: 0.05em;
  overflow: hidden;
  font-size: 15px;
}
.p-officer__table tr {
  background-color: #f4f4f4;
}
.p-officer__table tr:nth-child(even) {
  background-color: #fff;
}
.p-officer__table th, .p-officer__table td {
  padding: 1em;
  font-weight: 500;
}
.p-officer__table thead th {
  background-color: #23425b;
  color: #fff;
  letter-spacing: 0.1em;
}

.p-officer__table thead th:nth-child(1) {
  width: 120px;
}
.p-officer__table thead th:nth-child(2) {
  width: 180px;
}

.p-officer__table tbody td {
  border-left: 1px solid #dddddd;
  width: 200px;
}

.p-officer__ex{
  display: none;
}

.p-officer__date{
  text-align: right;
  margin-top: 10px;
  font-size: 14px;
}

.p-officer__table table a{
  text-decoration: underline;
}

@media all and (max-width: 1023px) {
  .p-officer {
    padding-top: 50px;
  }
  .p-officer__table thead th:nth-child(1) {
    width: auto;
  }
  .p-officer__table thead th:nth-child(2) {
    width: auto;
  }
  .first thead th:nth-child(1) {
    width: 100px;
  }
  .first thead th:nth-child(2) {
    width: 140px;
  }
}

@media all and (max-width: 767px) {
  .p-officer__table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  .p-officer__table .first{
    min-width: 700px;
  }
  .p-officer__table table {
    font-size: 14px;
  }
}

@media all and (max-width: 600px) {
  .p-officer__table .second {
    min-width: 700px;
  }
  .p-officer__ex{
    display: block;
    text-align: right;
    font-size: 13px;
  }
}



/*==================================================
  セカンドページType2 (単一ページ)
==================================================*/

.l-sub-page-type2 {
  display: flex;
  justify-content: flex-start; 
  padding-top: 80px;
  padding-bottom: 120px;
  align-items: flex-start;
}

/* --- サイドバー（PC: 可変20%・最大240px） --- */
.l-sidebar-type2 {
  width: 20%; 
  max-width: 240px; 
  position: sticky; 
  top: 130px; 
  flex-shrink: 0;
  z-index: 10;
}

.p-side-nav__item-type2 a {
  display: flex;
  align-items: center;
  padding: 18px 0 18px 25px;
  font-size: 14px;
  font-weight: 600;
  color: #484848;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

/* サイドバー：全項目左側の矢印 */
.p-side-nav__item-type2 a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: url('img/arrow-blue.svg') no-repeat center / contain;
}

/* サイドバー：全項目下部の短い青線 */
.p-side-nav__item-type2 a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 20px;
  height: 2px;
  background-color: #3a6fd3;
}

.p-side-nav__item-type2 .is-active a {
  color: #1d4184;
}

/* --- メインコンテンツ --- */
.l-main-contents-type2 {
  width: 74%; 
  margin-left: 6%;
  flex-grow: 0;
}


/*==================================================
  寄付をお考えの方へ (donation)
==================================================*/
.p-donation__head {
  margin-bottom: 60px;
}

.p-donation__body {
  display: block; 
  overflow: hidden;
}

.p-donation__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #484848;
  margin-bottom: 40px;
}

.p-donation__text a{
  text-decoration: underline;
}

.p-donation__text-v2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #484848;
  margin-bottom: 10px;
}

.p-donation__pickup{
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}



/*==================================================
  Responsive (SP版：1024px以下)
==================================================*/
@media all and (max-width: 1023px) {
  .l-sub-page-type2 {
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 80px;
  }
  
  /* サイドバーの2列設定などは現状維持 */
  .l-sidebar-type2 {
    width: 100%;
    max-width: 100%;
    position: static; 
    margin-bottom: 80px;
  }

  .p-side-nav__item-type2 a::before {
    transform: translateY(-50%) rotate(90deg);
    left: 5px; 
  }

  .p-side-nav__list-type2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 20px;
  }

  .l-main-contents-type2 {
    width: 100%; 
    margin-left: 0;
  }

  .p-donation__head {
    margin-bottom: 40px;
  }

  .p-donation__text {
  font-size: 15px;
  }
  .p-donation__text-v2 {
  font-size: 15px;
  }

}

@media all and (max-width: 700px) {

  .p-donation__body {
    display: flex; 
    flex-direction: column;
    gap: 10px;
  }

  .p-donation__text {
    margin-bottom: 20px;
  }

  .l-main-contents-type2 {
    width: 100%;
    margin-left: 0;
  }
}

@media all and (max-width: 500px) {
.p-side-nav__item-type2 a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
}

/*==================================================
  お知らせページ
==================================================*/
.p-single__date{
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.p-single__title {
  font-size: 24px;
  font-weight: 700;
  color: #252525;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
  line-height: 1.6;
  position: relative;
}

.p-single__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 70px;
  height: 2px;
  background-color: #3a6fd3;
}

.p-post-nav__inner {
  display: flex;
  justify-content: space-between; /* 両端に配置 */
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.p-post-nav__back {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  font-size: 15px;
}

.p-post-nav__prev,
.p-post-nav__next {
  font-weight: 600;
  font-size: 15px;
}

/* リンクがない場合は何も表示されないので、余白が崩れないよう調整 */
.p-post-nav__prev:empty,
.p-post-nav__next:empty {
  flex: 1;
  font-weight: 600;
  font-size: 15px;
}

.p-single__body p{
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 16px;
}

.p-single__body h4{
  margin-bottom: 20px;
}



/* ページネーション全体のコンテナ */
.p-pagination {
  margin-top: 60px;
  text-align: center;
}

/* 数字や「前へ・次へ」の共通スタイル */
.p-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

/* ホバー時と、現在のページの数字（current） */
.p-pagination .page-numbers:hover,
.p-pagination .page-numbers.current {
  background: #1b2d41; /* お好みのブランドカラーに */
  border-color: #1b2d41;
  color: #fff;
}

/* 「前へ」「次へ」だけ幅を広げたい場合 */
.p-pagination .prev.page-numbers,
.p-pagination .next.page-numbers {
  width: auto;
  padding: 0 15px;
}

/* スクリーンリーダー用テキスト（「ページナビゲーション」などの文字）を隠す */
.p-pagination .screen-reader-text {
  display: none;
}

@media all and (max-width: 1023px) {
  .p-single {
    padding-top: 50px;
  }
  .single-pc-only{
    display: none;
  }
}

@media all and (max-width: 700px) {
  .p-single__title {
    font-size: 18px;
  }
  .p-single__body p{
    font-size: 15px;
  }
}


.p-news__list.js-tab-target {
  display: none; /* 基本は非表示 */
}
.p-news__list.js-tab-target.is-show {
  display: block; /* is-showクラスがついた時だけ表示 */
}


/*==================================================
  会員組織
==================================================*/
.p-donation__head {
  margin-bottom: 60px;
}

.p-membership__body {
  display: block; 
  overflow: hidden;
  font-weight: 500;
}

/* テーブル全体のスタイル */
.p-membership-table {
  width: 100%;
  border-collapse: collapse; /* 枠線を1本にまとめる */
  border: 1px solid #7a97bb; /* 全体の外枠（画像に近い青色） */
  font-size: 16px;
  line-height: 1.5;
}

/* ヘッダー部分 */
.p-membership-table thead th {
  background-color: #244459; /* 薄い青色の背景 */
  color: #fff;
  padding: 1em;
  text-align: center;
  border: 1px solid #7a97bb;
  font-weight: bold;
  letter-spacing: 0.2em;
}

/* ボディ部分（セル） */
.p-membership-table td {
  padding:  1em;
  border: 1px solid #7a97bb;
  color: #333;
  vertical-align: middle;
}

/* 年会費（右側の列）を中央寄せにし、幅を調整する場合 */
.p-membership-table th:last-child {
  text-align: center;
  width: 25%; /* 年会費の列幅を固定 */
}

.p-membership-table td:nth-child(even) {
  text-align: center;
}

 .membership__btn{
  margin-top: 20px;
 }



/* スマートフォンでの表示調整 */
@media screen and (max-width: 767px) {
  .p-membership-table {
    font-size: 14px;
  }
  /*.p-membership-table td, 
  .p-membership-table th {
    padding: 10px;
  }*/
  .p-membership-table th:last-child {
    min-width: 100px;
  }
}

/*==================================================
  会員組織一覧
==================================================*/
.p-membership__text{
  font-size: 15px;
  text-align: right;
}

.p-membership__text-type2{
  font-size: 14px;
}

.p-list-table {
  letter-spacing: 0.05em;
  overflow: hidden;
  font-size: 15px;
  border: 1px solid #23425b;
  margin-bottom: 50px;
}
.p-list-table tr {
  background-color: #f4f4f4;
}
.p-list-table tr:nth-child(even) {
  background-color: #fff;
}
.p-list-table td {
  padding: 0.6em 0em 0.6em 2em;
  font-weight: 500;
}
.p-list-table thead th {
  background-color: #23425b;
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 18px;
  font-weight: 700;
  padding:1em 2em;
}

@media all and (max-width: 1023px) {
  .p-officer {
    padding-top: 50px;
  }
  .p-officer__table thead th:nth-child(1) {
    width: auto;
  }
  .p-officer__table thead th:nth-child(2) {
    width: auto;
  }
  .first thead th:nth-child(1) {
    width: 100px;
  }
  .first thead th:nth-child(2) {
    width: 140px;
  }
}

@media all and (max-width: 767px) {
  .p-membership__text{
    font-size: 15px;
    text-align: right;
  }

  .p-membership__text-type2{
    font-size: 14px;
  }

  .p-list-table {
    font-size: 14px;
    margin-bottom: 50px;
  }
  .p-list-table td {
    padding: 1em;
    font-weight: 500;
  }
  .p-list-table thead th {
    letter-spacing: 0.2em;
    font-size: 16px;
    padding:1em;
  }

  .p-membership table:last-child {
    margin-bottom: 0;
  }
}


/*==================================================
  プライバシーポリシー
==================================================*/
/* 小見出し：● 設立の目的 */
.p-privacy__item-title {
  font-size: 20px;
  font-weight: 700;
  color: #252525;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}


.p-privacy__text{
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 50px;
}

.p-privacy__text-type2{
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
}

.p-privacy__list{
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 50px;
}

.p-privacy__list li{
  margin-bottom: 14px;
}

@media all and (max-width: 700px) {
  .p-privacy__item-title {
    font-size: 19px;
    margin-bottom: 20px;
    gap: 6px;
  }
}



/*==================================================
  メンバー限定
==================================================*/


.only-title{
  margin-bottom: 40px;
  scroll-margin-top: 50px;
}

.only-pass-text{
  margin-bottom: 30px;
}

.m-date-table {
  letter-spacing: 0.05em;
  overflow: hidden;
  font-size: 15px;
  border: 1px solid #23425b;
  margin-bottom: 100px;
}
.m-date-table tr {
  background-color: #f4f4f4;
}
.m-date-table tr:nth-child(even) {
  background-color: #fff;
}
.m-date-table td {
  padding: 1.5em 2em;
  font-weight: 500;
  font-size: 16px;
}
.m-date-table thead th {
  background-color: #23425b;
  color: #fff;
  letter-spacing: 0.2em;
  font-size: 20px;
  font-weight: 700;
  padding:1em 2em;
  text-align: center;
}

.m-date-table td a{
  text-decoration: underline;
  text-underline-offset: 0.3em; /* 数値を大きくすると線が下に下がります */
  text-decoration-thickness: 1px; /* 線の太さもついでに指定できます */
}



@media all and (max-width: 767px) {
  .m-date-table {
    letter-spacing: 0.05em;
    overflow: hidden;
    font-size: 15px;
    border: 1px solid #23425b;
    margin-bottom: 100px;
  }
  .m-date-table td {
    padding: 1em 1em;
    font-size: 15px;
  }
  .m-date-table thead th {
    font-size: 20px;
    padding:1em;
  }
}


/* フォーム全体の配置調整 */
.post-password-form {
  margin-top: 30px;
}

/* 入力エリアのグループ化 */
.p-pass-input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}

/* パスワード入力欄 */
.post-password-form input[type="password"] {
  flex: 1;
  max-width: 300px;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s;
}

.post-password-form input[type="password"]:focus {
  border-color: #00429d; /* フォーカス時に青枠 */
}

/* 認証ボタン（ここをメインに装飾） */
.post-password-form input[type="submit"] {
  background: linear-gradient(135deg, #005bac 0%, #003366 100%); /* 濃い青のグラデーション */
  color: #fff;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px; /* 丸みをつけてモダンに */
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ボタンのホバー（マウスを乗せた時） */
.post-password-form input[type="submit"]:hover {
  transform: translateY(-2px); /* 少し浮き上がる */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

/* スマホ表示での調整 */
@media screen and (max-width: 500px) {
  .post-password-form {
    margin-top: 0px;
  }
  .p-pass-input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .post-password-form input[type="password"] {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/*==================================================
  お問い合わせフォーム
==================================================*/

.l-main-contents-type3 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 120px;
}



@media all and (max-width: 1023px) {
  .l-main-contents-type3 {
    padding-top: 30px;
    padding-bottom: 80px;
  }
}



.p-contact-page__lead{
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 50px;
  line-height: 1.8;
}

/* フォーム全体のコンテナ */
.p-contact-form {
  margin: 0 auto;
  padding: 40px 0;
}

/* 各入力項目の行（dl） */
.p-contact-form__item {
  display: flex;
  flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid #eee;
}

.p-contact-form__item:first-child {
  padding-top: 0;
}

/* ラベル部分（dt） */
.p-contact-form__item dt {
  width: 28%;
  padding-top: 10px;
  font-weight: 600;
  color: #333;
}

/* 「必須」ラベル */
.p-contact-form__item dt label span {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  background-color: #00429d; /* 警告色としての赤 */
  color: #fff;
  font-size: 11px;
  border-radius: 4px;
  vertical-align: middle;
}

/* 入力欄部分（dd） */
.p-contact-form__item dd {
  width: 72%;
  margin-left: 0;
}

/* 各種インプット要素の共通スタイル */
.p-contact-form input[type="text"],
.p-contact-form input[type="email"],
.p-contact-form input[type="tel"],
.p-contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: #f4f4f4 !important;
  transition: all 0.3s;
  box-sizing: border-box;
}

/* フォーカス時の色 */
.p-contact-form input:focus,
.p-contact-form textarea:focus {
  border-color: #00429d;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 66, 157, 0.1);
}

/* お問い合わせ内容（textarea）の高さ */
.p-contact-form textarea {
  height: 200px;
}

/* 同意チェックボックス部分 */
.p-contact-form__acceptance {
  margin: 40px 0 60px 0;
  xtext-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.p-contact-form__acceptance .wpcf7-list-item {
  margin: 0 0 30px 0;
}

.p-contact-form__acceptance label {
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
}

.p-contact-form__acceptance a{
  text-decoration: underline;
  text-underline-offset: 0.3em;
  text-decoration-thickness: 1px;
  color: #005bac;
}


.p-contact-form__acceptance .chack {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background-color: #00429d;
  color: #fff;
  font-size: 11px;
  border-radius: 4px;
  font-weight: bold;
  vertical-align: middle;
}



/* 送信ボタン（submit） */
.p-contact-form__submit {
  text-align: center;
}

.p-contact-form__submit [type="submit"] {
  display: inline-block;
  width: 240px;
  padding: 20px;
  background: linear-gradient(135deg, #005bac 0%, #003366 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.p-contact-form__submit [type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

/* --- レスポンシブ対応（スマホ表示） --- */
@media screen and (max-width: 768px) {
  /*.p-contact-form {
    padding: 20px;
  }*/
  
  .p-contact-form__item {
    flex-direction: column; /* 縦並びにする */
  }
  
  .p-contact-form__item dt {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .p-contact-form__item dd {
    width: 100%;
  }

  .p-contact-form__submit [type="submit"] {
    width: 100%; /* スマホではボタンを全幅に */
  }
  .p-contact-form__acceptance {
    font-size: 15px;
  }
}

@media screen and (max-width: 500px) {
  .p-contact-form__item {
    padding: 14px 0;
  }
}