@charset "utf-8";

@import url("https://use.fontawesome.com/releases/v7.1.0/css/all.css");
@import url("https://fonts.googleapis.com/css?family=Varela+Round");

/* ---------------------------------------- */
/* 変数 */
/* ---------------------------------------- */

:root{
  --color-navy: #283566;
  --color-navy-light: #6e7cb0;
  --color-green: #218d87;
  --color-cyan: #6FD5CF;
  --color-sky: #e1eef5;
  --color-text: #1f2f4f;
  --color-muted: #666154;
  --color-line: #d7dde8;
  --color-bg: #ffffff;

  --content-width: 1200px;
  --breakpoint: 900px;
}

/* ---------------------------------------- */
/* Base */
/* ---------------------------------------- */

*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  padding: 0;

  background: var(--color-bg);
  color: var(--color-text);

  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-weight: 500;
  line-height: 1.7;

  overflow-x: hidden;
}

body.is-menu-open{
  overflow: hidden;
}

a{
  color: var(--color-green);
  text-decoration: none;
}

a:hover{
  color: var(--color-navy);
}

/* ---------------------------------------- */
/* Header */
/* ---------------------------------------- */

.site-header{
  position: relative;
  width: 100%;
  background: #ffffff;
}

.site-header__inner{
  position: relative;

  width: min(100% - 40px, var(--content-width));
  height: 90px;
  margin: 0 auto;
}

.site-header__inner::before{
  content: "Japan SPD Association";
  position: absolute;
  left: 0;
  top: 15px;

  color: var(--color-navy);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.03em;
}

.site-header__inner::after{
  content: "一般社団法人 日本SPD協議会";
  position: absolute;
  left: 0;
  top: 40px;

  color: var(--color-navy);
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.14em;
  line-height: 1.2;
}

/* SP */
@media screen and (max-width: 900px){

  .site-header__inner{
    width: calc(100% - 32px);
    height: 74px;
  }

  .site-header__inner::before{
    top: 12px;
    font-size: 13px;
  }

  .site-header__inner::after{
    top: 34px;
    font-size: 20px;
    letter-spacing: 0.08em;
  }

}

/* ---------------------------------------- */
/* Main menu */
/* ---------------------------------------- */

.site-nav{
  width: 100%;
  background: var(--color-navy);
}

.site-nav__inner{
  width: min(100%, var(--content-width));
  margin: 0 auto;
}

.site-nav__list{
  display: flex;
  align-items: stretch;
  justify-content: space-between;

  margin: 0;
  padding: 0;

  list-style: none;
}

.site-nav__item{
  position: relative;
  flex: 1;

  margin: 0;
  padding: 0;
}

.site-nav__item > a{
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;
  padding: 0 12px;

  color: #ffffff;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.site-nav__item > a:hover,
.site-nav__item.is-current > a{
  background: var(--color-navy-light);
  color: #ffffff;
}

/* 下層メニュー */
.site-nav__child{
  display: none;

  position: absolute;
  z-index: 20;
  left: 0;
  top: 100%;

  width: 220px;
  margin: 0;
  padding: 0;

  list-style: none;
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: 0 6px 18px rgba(40, 53, 102, 0.12);
}

.site-nav__item:hover .site-nav__child{
  display: block;
}

.site-nav__child li{
  margin: 0;
  padding: 0;
}

.site-nav__child a{
  display: block;
  padding: 10px 14px;

  color: var(--color-text);
  font-size: 90%;
  font-weight: bold;
}

.site-nav__child a:hover{
  background: var(--color-sky);
  color: var(--color-navy);
}

/* メニュー開閉ボタン */
.site-menu-toggle{
  display: none;
}

/* SP */
@media screen and (max-width: 900px){

  .site-menu-toggle{
    display: block;

    position: absolute;
    top: 18px;
    right: 16px;
    z-index: 120;

    width: 42px;
    height: 42px;
    padding: 9px;

    border: 0;
    border-radius: 4px;
    background: var(--color-navy);

    cursor: pointer;
  }

  .site-menu-toggle span{
    display: block;
    width: 100%;
    height: 3px;
    margin: 0 0 6px 0;

    background: #ffffff;
    border-radius: 999px;

    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-menu-toggle span:last-child{
    margin-bottom: 0;
  }

  .site-menu-toggle.is-open span:nth-child(1){
    transform: translateY(9px) rotate(45deg);
  }

  .site-menu-toggle.is-open span:nth-child(2){
    opacity: 0;
  }

  .site-menu-toggle.is-open span:nth-child(3){
    transform: translateY(-9px) rotate(-45deg);
  }

  .site-nav{
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;

    width: min(82vw, 360px);
    height: 100vh;
    padding: 78px 0 24px 0;

    background: var(--color-navy);
    transform: translateX(100%);
    transition: transform 0.25s ease;

    overflow-y: auto;
  }

  .site-nav.is-open{
    transform: translateX(0);
  }

  .site-nav__inner{
    width: 100%;
  }

  .site-nav__list{
    display: block;
  }

  .site-nav__item{
    flex: none;
  }

  .site-nav__item > a{
    justify-content: flex-start;
    min-height: 0;
    padding: 14px 22px;

    border-bottom: 1px solid rgba(255,255,255,0.25);
    text-align: left;
  }

  .site-nav__child{
    display: block;
    position: static;

    width: 100%;
    border: 0;
    box-shadow: none;
    background: rgba(255,255,255,0.08);
  }

  .site-nav__child a{
    padding: 11px 22px 11px 38px;
    color: #ffffff;
  }

  .site-nav__child a:hover{
    background: rgba(255,255,255,0.12);
    color: #ffffff;
  }

}

/* ---------------------------------------- */
/* Overlay */
/* ---------------------------------------- */

.site-overlay{
  display: none;
}

/* SP */
@media screen and (max-width: 900px){

  .site-overlay{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 100;

    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .site-overlay.is-open{
    opacity: 1;
    pointer-events: auto;
  }

}

/* ---------------------------------------- */
/* Breadcrumb */
/* ---------------------------------------- */

.breadcrumb{
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 12px 0 0 0;
}

.breadcrumb__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;

  margin: 0;
  padding: 0;

  list-style: none;
  font-size: 78%;
}

.breadcrumb__list li{
  margin: 0;
  padding: 0;

  color: var(--color-muted);
}

.breadcrumb__list li + li::before{
  content: ">";
  margin: 0 0.6em;
  color: var(--color-muted);
}

/* SP */
@media screen and (max-width: 900px){

  .breadcrumb{
    display: none;
  }

}

/* ---------------------------------------- */
/* Page title */
/* ---------------------------------------- */

.page-title{
  width: 100%;
  margin: 0;
  padding: 32px 0 28px 0;
}

.page-title__inner{
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
}

.page-title__en{
  margin: 0 0 -4px 0;
  padding: 0;

  color: #16a9ba;
  font-size: 28px;
  font-style: italic;
  line-height: 1.2;
}

.page-title h1{
  margin: 0;
  padding: 0;

  color: #000000;
  font-size: 30px;
  line-height: 1.3;
}

/* SP */
@media screen and (max-width: 900px){

  .page-title{
    padding: 28px 0 22px 0;
  }

  .page-title__inner{
    width: calc(100% - 32px);
  }

  .page-title__en{
    font-size: 24px;
  }

  .page-title h1{
    font-size: 26px;
  }

}

/* ---------------------------------------- */
/* Layout */
/* ---------------------------------------- */

.site-main{
  width: 100%;
}

.site-content{
  width: min(100% - 40px, var(--content-width));
  margin: 0 auto;
  padding: 0 0 48px 0;
}

/* SP */
@media screen and (max-width: 900px){

  .site-content{
    width: calc(100% - 32px);
  }

}

/* ---------------------------------------- */
/* 見出し */
/* ---------------------------------------- */

h2{
  margin: 2em 0 1em 0;
  padding: 0.5em 0 0 0;

  border-top: solid 4px var(--color-navy);

  color: #000000;
  font-size: 150%;
  font-weight: bold;
  line-height: 1em;
  text-align: left;
}

h2:first-child{
  margin: 0 0 1em 0;
}

h3{
  margin: 2em 0 1em 0;
  padding: 0.5em 0 0 0;

  border-top: solid 2px var(--color-navy);

  color: #000000;
  font-size: 140%;
  font-weight: bold;
  line-height: 1em;
  text-align: left;
}

h3:first-child{
  margin: 0 0 1em 0;
}

h4{
  margin: 2em 0 1em 0;
  padding: 0.5em 0 0 0;

  border-top: solid 1px var(--color-navy);

  color: #000000;
  font-size: 120%;
  font-weight: bold;
  line-height: 1em;
  text-align: left;
}

h4:first-child{
  margin: 0 0 1em 0;
}

h4 span{
  display: inline-block;
}

h4.h4b{
  margin: 2em 0 1em 0;
  padding: 0.5em 0 0 0;

  border-top: dotted 1px var(--color-navy);

  color: #000000;
  font-size: 120%;
  font-weight: bold;
  line-height: 1em;
  text-align: left;
}

/* ---------------------------------------- */
/* ページ内サブナビ */
/* ---------------------------------------- */

.page-section-nav{
  margin: 0 0 28px 0;
  padding: 0 0 10px 0;

  border-bottom: 1px solid var(--color-line);
}

.page-section-nav__list{
  display: flex;
  flex-wrap: wrap;
  gap: 0;

  margin: 0;
  padding: 0;

  list-style: none;
}

.page-section-nav__item{
  margin: 0;
  padding: 0;
}

.page-section-nav__item + .page-section-nav__item::before{
  content: "/";
  margin: 0 10px;
  color: var(--color-line);
}

.page-section-nav__item a{
  color: var(--color-green);
  font-weight: bold;
  line-height: 1.6;
  text-decoration: none;
}

.page-section-nav__item a:hover{
  color: var(--color-navy);
  opacity: 1;
  text-decoration: underline;
}

.page-section-nav__item.is-current a{
  padding: 0 0 3px 0;

  border-bottom: 2px solid var(--color-navy);

  color: var(--color-navy);
  pointer-events: none;
}

/* SP */
@media screen and (max-width: 900px){

  .page-section-nav{
    margin: 0 0 24px 0;
    padding: 0 0 8px 0;
  }

  .page-section-nav__list{
    display: block;
  }

  .page-section-nav__item{
    margin: 0 0 8px 0;
  }

  .page-section-nav__item:last-child{
    margin-bottom: 0;
  }

  .page-section-nav__item + .page-section-nav__item::before{
    content: none;
  }

  .page-section-nav__item a{
    display: block;
    padding: 8px 0;

    border-bottom: 1px dotted var(--color-line);
  }

  .page-section-nav__item.is-current a{
    padding: 8px 0 8px 10px;

    border-bottom: 1px dotted var(--color-line);
    border-left: 4px solid var(--color-navy);
  }

}

/* ---------------------------------------- */
/* Page top */
/* ---------------------------------------- */

.page-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;

  width: 48px;
  height: 48px;
  padding: 0;

  border: 0;
  border-radius: 8px;
  background: var(--color-navy);
  color: #ffffff;

  cursor: pointer;
}

.page-top::before{
  content: "\f077";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.page-top:hover{
  background: var(--color-navy-light);
}

/* SP */
@media screen and (max-width: 900px){

  .page-top{
    width: 44px;
    height: 44px;
    right: 14px;
    bottom: 14px;
  }

}

/* ---------------------------------------- */
/* Footer */
/* ---------------------------------------- */

.site-footer{
  width: 100%;
  background: var(--color-navy);
}

.site-footer__inner{
  display: flex;
  align-items: center;
  justify-content: center;

  width: min(100% - 40px, var(--content-width));
  min-height: 80px;
  margin: 0 auto;
}

.site-footer__copyright{
  margin: 0;
  padding: 0;

  color: #ffffff;
  font-size: 90%;
  text-align: center;
}

/* SP */
@media screen and (max-width: 900px){

  .site-footer__inner{
    width: calc(100% - 32px);
  }

}

/* ---------------------------------------- */
/* リンク集 */
/* ---------------------------------------- */

.link-section__lead{
  margin: 0 0 20px 0;
  padding: 0;

  color: var(--color-muted);
  line-height: 1.8;
}

.link-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.link-list li{
  margin: 0;
  padding: 0;
}

.link-list a{
  display: flex;
  align-items: center;
  gap: 10px;

  min-height: 56px;
  padding: 13px 16px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text);

  font-weight: bold;
  line-height: 1.5;

  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.link-list a::before{
  content: "\f35d";
  flex: 0 0 auto;

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
  font-size: 90%;
}

.link-list a:hover{
  border-color: var(--color-green);
  background: #f3f8fb;
  color: var(--color-navy);
  transform: translateY(-1px);
}

/* SP */
@media screen and (max-width: 900px){

  .link-list{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .link-list a{
    min-height: 0;
    padding: 13px 14px;
  }

}

/* ---------------------------------------- */
/* 入会案内 */
/* ---------------------------------------- */

.join-section{
  width: 100%;
}

/* リード文 */
.join-lead{
  margin: 0 0 28px 0;
  padding: 0;

  color: var(--color-text);
  line-height: 1.9;
}

.join-lead p{
  margin: 0 0 0.6em 0;
}

.join-lead p:last-child{
  margin-bottom: 0;
}

/* 事務局カード */
.contact-office-card{
  width: 100%;
  margin: 0 0 34px 0;
  padding: 0;

  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #ffffff;

  overflow: hidden;
}

.contact-office-card__title{
  margin: 0;
  padding: 12px 18px;

  border: 0;
  background: var(--color-navy);
  color: #ffffff;

  font-size: 120%;
  line-height: 1.5;
}

.contact-office-card__body{
  padding: 18px 20px 20px 20px;
}

.contact-office-card__body p{
  margin: 0 0 12px 0;
}

.contact-office-card__body p:last-child{
  margin-bottom: 0;
}

.contact-office-card__name{
  color: var(--color-navy);
  font-weight: bold;
}

.contact-office-list{
  margin: 16px 0 0 0;
  padding: 0;
}

.contact-office-list div{
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 10px;

  margin: 0;
  padding: 10px 0;

  border-top: 1px dotted var(--color-line);
}

.contact-office-list dt{
  margin: 0;

  color: var(--color-muted);
  font-weight: bold;
}

.contact-office-list dd{
  margin: 0;
}

.contact-office-list a{
  font-weight: bold;
}

/* ダウンロード */
.download-section{
  width: 100%;
  margin: 0;
  padding: 0;
}

.download-section__title{
  margin: 0 0 14px 0;
  padding: 0 0 8px 0;

  border-top: 0;
  border-bottom: 1px solid var(--color-line);

  color: var(--color-navy);
  font-size: 120%;
  line-height: 1.5;
}

.download-card-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;

  width: 100%;
}

.download-card{
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;

  width: 100%;
  padding: 16px 18px;

  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #ffffff;
  color: var(--color-text);

  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.download-card::before{
  grid-row: 1 / span 2;

  content: "\f1c1";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #a2446c;
  font-size: 180%;
  line-height: 1;
}

.download-card:hover{
  border-color: var(--color-green);
  background: #f3f8fb;
  color: var(--color-navy);
  transform: translateY(-1px);
}

.download-card__title{
  font-size: 110%;
  font-weight: bold;
  line-height: 1.4;
}

.download-card__meta{
  color: var(--color-muted);
  font-size: 88%;
  line-height: 1.5;
}

/* SP */
@media screen and (max-width: 900px){

  .contact-office-card__title{
    padding: 12px 14px;
  }

  .contact-office-card__body{
    padding: 16px 14px 18px 14px;
  }

  .contact-office-list div{
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .download-card-list{
    grid-template-columns: 1fr;
  }

  .download-card{
    padding: 15px 14px;
  }

}

/* ---------------------------------------- */
/* 概要 */
/* ---------------------------------------- */

.about-section{
  width: 100%;
}

/* あゆみ */
.history-block{
  width: 100%;
}

.history-card-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;

  margin: 0 0 36px 0;
  padding: 0;
}

.history-card{
  padding: 20px 22px 22px 22px;

  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #ffffff;

  line-height: 1.9;
}

.history-card h4{
  margin: 0 0 14px 0;
  padding: 0 0 8px 0;

  border-top: 0;
  border-bottom: 1px solid var(--color-line);

  color: var(--color-navy);
  font-size: 120%;
  line-height: 1.5;
}

.history-card p{
  margin: 0 0 0.8em 0;
}

.history-card p:last-child{
  margin-bottom: 0;
}

/* 概要表 */
.profile-table{
  width: 100%;
  margin: 0 0 32px 0;

  border-top: 1px solid var(--color-line);
}

.profile-table__row{
  display: grid;
  grid-template-columns: 220px 1fr;

  border-bottom: 1px solid var(--color-line);
}

.profile-table__head{
  padding: 18px 18px;

  background: #f3f8fb;
  color: var(--color-navy);

  font-weight: bold;
  line-height: 1.6;
}

.profile-table__body{
  padding: 18px 20px;

  line-height: 1.9;
}

.profile-table__body p{
  margin: 0 0 0.8em 0;
}

.profile-table__body p:last-child{
  margin-bottom: 0;
}

.profile-table__body ol,
.profile-table__body ul{
  margin-top: 0;
  margin-bottom: 0;
}

.profile-table__body li{
  margin-bottom: 0.4em;
}

.profile-table__body li:last-child{
  margin-bottom: 0;
}

/* 会員区分 */
.member-category-list > li{
  margin-bottom: 1.2em;
}

.member-category-list > li:last-child{
  margin-bottom: 0;
}

.member-category-list ul{
  margin-top: 0.4em;
}

/* 年会費 */
.fee-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.fee-list li{
  display: flex;
  justify-content: space-between;
  gap: 12px;

  margin: 0;
  padding: 8px 10px;

  border-radius: 6px;
  background: #f8fbfd;
}

.fee-list span{
  color: var(--color-muted);
  font-weight: bold;
}

/* お問い合わせ連絡先 */
.profile-contact{
  padding: 16px 18px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
}

.profile-contact p{
  margin: 0 0 0.6em 0;
}

.profile-contact__list{
  margin: 14px 0 0 0;
  padding: 0;
}

.profile-contact__list div{
  display: grid;
  grid-template-columns: 6em 1fr;
  gap: 10px;

  margin: 0;
  padding: 9px 0;

  border-top: 1px dotted var(--color-line);
}

.profile-contact__list dt{
  margin: 0;

  color: var(--color-muted);
  font-weight: bold;
}

.profile-contact__list dd{
  margin: 0;
}

.profile-contact__list a{
  font-weight: bold;
}

/* PDF 1件表示 */
.download-card-list--single{
  grid-template-columns: 1fr;
}

/* SP */
@media screen and (max-width: 900px){

  .history-card-list{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .history-card{
    padding: 18px 16px 20px 16px;
  }

  .profile-table__row{
    grid-template-columns: 1fr;
  }

  .profile-table__head{
    padding: 12px 14px;

    border-bottom: 1px dotted var(--color-line);
  }

  .profile-table__body{
    padding: 14px 14px 16px 14px;
  }

  .fee-list{
    grid-template-columns: 1fr;
  }

  .fee-list li{
    display: block;
  }

  .fee-list span{
    display: block;
    margin-bottom: 2px;
  }

  .profile-contact{
    padding: 14px 14px;
  }

  .profile-contact__list div{
    grid-template-columns: 1fr;
    gap: 2px;
  }

}



/* ---------------------------------------- */
/* 理事長挨拶 */
/* ---------------------------------------- */

.greetings-section{
  width: 100%;
  line-height: 1.9;
}

.greetings-section p{
  margin: 0 0 1em 0;
}

.greetings-date{
  text-align: right;
}

.greetings-signature{
  margin-top: 2em !important;
  text-align: right;
}

@media screen and (max-width: 900px){

  .greetings-section{
    line-height: 1.8;
  }

}



/* ---------------------------------------- */
/* 装飾見出し */
/* ---------------------------------------- */

.ttl_background2{
  position: relative;

  margin: 0;
  padding: 0.5em 1em;

  background-color: #e1eef5;

  font-weight: bold;
}

.ttl_background2::after{
  content: "";

  position: absolute;
  top: 0;
  right: 0;

  border-width: 0 20px 20px 0;
  border-style: solid;
  border-color: #4c9ac0 #fff #4c9ac0;

  box-shadow: -1px 1px 1px rgba(0, 0, 0, 0.15);
}



/* ---------------------------------------- */
/* 装飾ボックス */
/* ---------------------------------------- */

.box-13{
  position: relative;

  margin: 30px auto;
  padding: 1em;

  border: 2px dashed var(--color-navy-light);
  background: #ffffff;
}

.box-13-ttl{
  position: absolute;
  top: -15px;
  left: 20px;

  margin: 0;
  padding: 0 0.5em;

  background-color: #ffffff;
  color: var(--color-navy);

  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.box-13 p{
  margin: 0 0 0.8em 0;
}

.box-13 p:last-child{
  margin-bottom: 0;
}

@media screen and (max-width: 900px){

  .box-13{
    margin: 28px auto;
    padding: 1em 0.9em;
  }

  .box-13-ttl{
    left: 14px;
    font-size: 18px;
  }

}



/* ---------------------------------------- */
/* 役員・会員 */
/* ---------------------------------------- */

.member-section{
  width: 100%;
  line-height: 1.8;
}

.member-name{
  color: var(--color-navy);
  font-weight: bold;
}

/* 理事・役員 */
.officer-list{
  width: 100%;
  margin: 0 0 32px 0;

  border-top: 1px solid var(--color-line);
}

.officer-row{
  display: grid;
  grid-template-columns: 180px 1fr;

  margin: 0;
  padding: 0;

  border-bottom: 1px solid var(--color-line);
}

.officer-row__title{
  margin: 0;
  padding: 16px 18px;

  border: 0;
  background: #f3f8fb;
  color: var(--color-navy);

  font-size: 100%;
  line-height: 1.6;
}

.officer-row__body{
  padding: 16px 20px;
}

.officer-row__body p{
  margin: 0;
}

.officer-row__body--grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

/* 会員カテゴリ */
.member-category-list{
  display: grid;
  gap: 28px;

  width: 100%;
}

.member-category{
  width: 100%;
  margin: 0 0 32px 0;
}

.member-category-list .member-category{
  margin-bottom: 0;
}

.member-category__title{
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 14px 0;
  padding: 12px 16px;

  border-top: 0;
  border-left: 0;
  border-radius: 8px;
  background: #dcebf3;
  color: var(--color-navy);

  font-size: 120%;
  font-weight: bold;
  line-height: 1.5;
}

.member-category__title::before{
  content: "\f0c0";

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
  font-size: 90%;
}

.member-category__note{
  margin: -6px 0 12px 0;
  padding: 0;

  color: var(--color-muted);
  font-size: 90%;
}

/* 法人会員・団体会員 */
.corporate-member-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  width: 100%;
  margin: 0;
  padding: 0;
}

.corporate-member-grid a{
  display: flex;
  align-items: center;
  gap: 8px;

  min-height: 52px;
  padding: 12px 14px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text);

  font-weight: bold;
  line-height: 1.5;

  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.corporate-member-grid a::before{
  content: "\f35d";

  flex: 0 0 auto;

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
  font-size: 85%;
}

.corporate-member-grid a:hover{
  border-color: var(--color-green);
  background: #f3f8fb;
  color: var(--color-navy);
  transform: translateY(-1px);
}

.corporate-member-grid--compact{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* 個人会員 */
.member-card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;

  width: 100%;
}

.member-card{
  min-height: 88px;
  padding: 14px 16px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
}

.member-card span{
  display: block;
}

.member-card span + span{
  margin-top: 4px;

  color: var(--color-muted);
  font-size: 92%;
  line-height: 1.6;
}

.br-sp{
  display: none;
}

@media screen and (max-width: 900px){

  .officer-row{
    grid-template-columns: 1fr;
  }

  .officer-row__title{
    padding: 12px 14px;

    border-bottom: 1px dotted var(--color-line);
  }

  .officer-row__body{
    padding: 14px 14px 16px 14px;
  }

  .officer-row__body--grid{
    grid-template-columns: 1fr;
  }

  .member-category{
    margin-bottom: 28px;
  }

  .member-category__title{
    padding: 10px 12px;
  }

  .corporate-member-grid,
  .corporate-member-grid--compact,
  .member-card-grid{
    grid-template-columns: 1fr;
  }

  .corporate-member-grid a{
    min-height: 0;
    padding: 12px 13px;
  }

  .member-card{
    min-height: 0;
    padding: 13px 14px;
  }

  .br-sp{
    display: block;
  }

}



/* ---------------------------------------- */
/* 活動記録 */
/* ---------------------------------------- */

.activity-section{
  width: 100%;
  line-height: 1.8;
}

/* 年別ナビ */
.year-nav{
  margin: 28px 0 34px 0;
  padding: 14px 16px;

  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #f8fbfd;
}

.year-nav__list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.year-nav__list li{
  margin: 0;
  padding: 0;
}

.year-nav__list a{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 7em;
  padding: 7px 12px;

  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-navy);

  font-weight: bold;
  line-height: 1.4;
}

.year-nav__list a:hover{
  border-color: var(--color-green);
  background: var(--color-sky);
  color: var(--color-navy);
}

/* 年ごとのブロック */
.activity-year{
  width: 100%;
  margin: 0 0 42px 0;
}

.activity-year:last-child{
  margin-bottom: 0;
}

/* 社員総会カード */
.activity-event{
  margin: 0 0 28px 0;
  padding: 0;

  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #ffffff;

  overflow: hidden;
}

.activity-event h4{
  margin: 0;
  padding: 13px 18px;

  border-top: 0;
  background: var(--color-navy);
  color: #ffffff;

  font-size: 115%;
  line-height: 1.5;
}

.activity-event__detail{
  margin: 0;
  padding: 0;
}

.activity-event__detail div{
  display: grid;
  grid-template-columns: 180px 1fr;

  margin: 0;
  padding: 0;

  border-top: 1px solid var(--color-line);
}

.activity-event__detail div:first-child{
  border-top: 0;
}

.activity-event__detail dt{
  margin: 0;
  padding: 14px 16px;

  background: #f3f8fb;
  color: var(--color-navy);

  font-weight: bold;
  line-height: 1.6;
}

.activity-event__detail dd{
  margin: 0;
  padding: 14px 18px;

  line-height: 1.8;
}

.activity-event__detail ol,
.activity-event__detail ul{
  margin-top: 0.4em;
  margin-bottom: 1em;
}

.activity-event__detail li{
  margin-bottom: 0.3em;
}

.activity-event__label{
  display: inline-block;

  margin: 0.6em 0 0.3em 0;
  padding: 3px 10px;

  border-radius: 999px;
  background: #f3f8fb;
  color: var(--color-navy);

  font-weight: bold;
  line-height: 1.5;
}

.activity-agenda-list{
  list-style: none;
  padding-left: 0;
}

/* PDFリンク */
.pdf-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;

  font-weight: bold;
}

.pdf-link::after{
  content: "\f1c1";

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: #a2446c;
}

.activity-file-link{
  margin: 1em 0 0 0;
}

.activity-file-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;

  margin: 1em 0 0 0 !important;
  padding: 0;

  list-style: none;
}

.activity-file-list li{
  margin: 0;
  padding: 0;
}

/* 通常活動タイムライン */
.activity-timeline{
  margin: 0 0 28px 0;
  padding: 0;

  list-style: none;
  border-top: 1px solid var(--color-line);
}

.activity-timeline li{
  display: grid;
  grid-template-columns: 11em 1fr;
  gap: 16px;

  margin: 0;
  padding: 13px 0;

  border-bottom: 1px solid var(--color-line);
}

.activity-timeline time{
  color: var(--color-navy);
  font-weight: bold;
}

.activity-timeline span{
  min-width: 0;
}

/* 補足 */
.activity-note{
  margin: 1.2em 0 0 0;
  padding: 14px 16px;

  border-left: 4px solid var(--color-green);
  background: #f8fbfd;
}

.activity-note p{
  margin: 0 0 0.6em 0;
}

.activity-note p:last-child{
  margin-bottom: 0;
}

@media screen and (max-width: 900px){

  .year-nav{
    margin: 24px 0 30px 0;
    padding: 12px;
  }

  .year-nav__list{
    gap: 8px;
  }

  .year-nav__list a{
    min-width: 0;
    padding: 7px 11px;
  }

  .activity-year{
    margin-bottom: 36px;
  }

  .activity-event h4{
    padding: 12px 14px;
  }

  .activity-event__detail div{
    grid-template-columns: 1fr;
  }

  .activity-event__detail dt{
    padding: 11px 14px;

    border-bottom: 1px dotted var(--color-line);
  }

  .activity-event__detail dd{
    padding: 13px 14px 15px 14px;
  }

  .activity-file-list{
    grid-template-columns: 1fr;
  }

  .activity-timeline li{
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .activity-note{
    padding: 13px 14px;
  }

}



/* ---------------------------------------- */
/* お問い合わせ */
/* ---------------------------------------- */

.contact-section{
  width: 100%;
  line-height: 1.8;
}

.contact-lead{
  margin: 0 0 22px 0;
  padding: 0;

  color: var(--color-text);
}

/* フォーム */
.contact-form{
  width: 100%;
}

.contact-form-block{
  width: 100%;
  margin: 0;
  padding: 24px 26px;

  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #ffffff;
}

.contact-form-item{
  margin: 0 0 20px 0;
  padding: 0;
}

.contact-form-item:last-of-type{
  margin-bottom: 0;
}

.contact-form-label{
  display: block;

  margin: 0 0 7px 0;
  padding: 0;

  color: var(--color-navy);
  font-weight: bold;
  line-height: 1.5;
}

.contact-form-note{
  margin-left: 0.35em;

  color: var(--color-muted);
  font-size: 90%;
  font-weight: normal;
}

.clsHissu{
  display: inline-block;

  margin-left: 0.35em;
  padding: 2px 7px;

  border-radius: 999px;
  background: #a2446c;
  color: #ffffff;

  font-size: 75%;
  font-weight: bold;
  line-height: 1.4;
  vertical-align: middle;
}

.contact-form-input,
.contact-form-textarea{
  width: 100%;
  max-width: 100%;
  padding: 11px 12px;

  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--color-text);

  font-size: 16px;
  line-height: 1.6;
}

.contact-form-input:focus,
.contact-form-textarea:focus{
  border-color: var(--color-navy);
  outline: 2px solid rgba(40, 53, 102, 0.18);
  outline-offset: 1px;
}

.contact-form-textarea{
  min-height: 180px;
  resize: vertical;
}

/* 送信 */
.contact-form-submit{
  display: flex;
  align-items: center;
  gap: 14px;

  margin: 28px 0 0 0;
  padding: 0;
}

.contact-form-submit-button{
  display: inline-block;

  min-width: 150px;
  padding: 12px 28px;

  border: 1px solid var(--color-navy);
  border-radius: 6px;
  background: var(--color-navy);
  color: #ffffff;

  font-size: 115%;
  font-weight: bold;
  line-height: 1.4;

  cursor: pointer;
}

.contact-form-submit-button:hover{
  background: var(--color-navy-light);
  border-color: var(--color-navy-light);
}

.contact-form-submit-note{
  margin: 0;
  padding: 0;

  color: var(--color-muted);
  line-height: 1.7;
}

@media screen and (max-width: 900px){

  .contact-form-block{
    padding: 18px 16px 20px 16px;
  }

  .contact-form-submit{
    display: block;
  }

  .contact-form-submit-button{
    width: 100%;
  }

  .contact-form-submit-note{
    margin: 10px 0 0 0;
  }

}


/* ---------------------------------------- */
/* お問い合わせ完了 */
/* ---------------------------------------- */

.contact-sent-section{
  width: 100%;
  line-height: 1.8;
}

.contact-complete-message{
  margin: 0 0 24px 0;
  padding: 18px 20px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #f8fbfd;
}

.contact-complete-message p{
  margin: 0;
}

.contact-office-box{
  width: 100%;
  margin: 24px 0 0 0;
  padding: 0;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.contact-office-box__title{
  margin: 0;
  padding: 12px 16px;

  background: #dcebf3;
  color: var(--color-navy);

  font-weight: bold;
  line-height: 1.5;
}

.contact-office-box__body{
  padding: 16px 18px;
}

.contact-office-box__body p{
  margin: 0;
  line-height: 1.8;
}

.contact-sent-section__back{
  margin: 28px 0 0 0;
  text-align: right;
}

.contact-sent-section__back a{
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--color-green);
  font-weight: bold;
  text-decoration: none;
}

.contact-sent-section__back a::before{
  content: "\f104";

  color: var(--color-navy);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.contact-sent-section__back a:hover{
  color: var(--color-navy);
  text-decoration: underline;
}

@media screen and (max-width: 900px){

  .contact-complete-message{
    padding: 16px 14px;
  }

  .contact-office-box__body{
    padding: 15px 14px;
  }

}


/* 会員種別 */
.application-member-type-box{
  width: 100%;
  margin: 10px 0 12px 0;
  padding: 14px 16px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #f8fbfd;
}

.application-member-type-box .contact-form-radio-list{
  margin: 0 0 12px 0;
}

.application-member-type-box .contact-form-help{
  margin: 0;
  padding: 10px 12px;

  border-radius: 6px;
  background: #ffffff;
}

.application-member-type-box strong{
  color: var(--color-navy);
}

@media screen and (max-width: 900px){

  .application-member-type-box{
    padding: 13px 12px;
  }

  .application-member-type-box .contact-form-help{
    padding: 9px 10px;
  }

}

/* ---------------------------------------- */
/* お申込みフォーム */
/* ---------------------------------------- */

.application-section{
  width: 100%;
  line-height: 1.8;
}

/* 委任状 */
.proxy-form-block{
  width: 100%;
  margin: 30px 0 0 0;
  padding: 22px 24px;

  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #f8fbfd;
}

.proxy-form-block.is-disabled{
  opacity: 0.55;
}

.proxy-form-block.is-disabled input,
.proxy-form-block.is-disabled select,
.proxy-form-block.is-disabled textarea{
  cursor: not-allowed;
}

.proxy-form-title{
  padding: 0 0.5em;

  color: var(--color-navy);
  font-size: 120%;
  font-weight: bold;
}

.proxy-form-note{
  margin: 0 0 18px 0;

  color: var(--color-muted);
  font-size: 92%;
}

.proxy-form-list{
  margin: 18px 0;
  padding-left: 1.5em;
}

.proxy-form-list li{
  margin: 0 0 0.7em 0;
  line-height: 1.8;
}

/* 議案 */
.proxy-vote-box{
  margin: 20px 0;
}

.proxy-vote-heading{
  margin: 0 0 10px 0;

  color: var(--color-navy);
  font-weight: bold;
  text-align: center;
}

.proxy-vote-table{
  width: 100%;

  border-collapse: collapse;
  background: #ffffff;
}

.proxy-vote-table th,
.proxy-vote-table td{
  padding: 12px 14px;

  border: 1px solid var(--color-line);
  line-height: 1.6;
  vertical-align: middle;
}

.proxy-vote-table th{
  width: 30%;

  background: #e1eef5;
  color: var(--color-navy);
  font-weight: bold;
  text-align: left;
}

.proxy-vote-table td{
  text-align: center;
}

.proxy-vote-table td:nth-child(2){
  width: 30%;
  text-align: left;
}

@media screen and (max-width: 900px){

  .proxy-form-block{
    padding: 18px 14px;
  }

  .proxy-vote-table{
    font-size: 92%;
  }

  .proxy-vote-table th,
  .proxy-vote-table td{
    padding: 10px 8px;
  }

}


/* ---------------------------------------- */
/* トップページ */
/* ---------------------------------------- */

.site-main--home{
  padding-top: 0;
}

.home-content{
  padding-top: 34px;
}

/* メインビジュアル */
.home-hero{
  position: relative;

  width: 100%;
  max-width: var(--content-width);
  margin: 24px auto 0 auto;
  padding: 0;

  overflow: hidden;
}

.home-hero__image{
  position: relative;
  width: 100%;
}

.home-hero__image::after{
  content: none;
}

.home-hero__image img{
  display: block;

  width: 100%;
  height: auto;
}

/* メインビジュアル */
.home-hero__overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;

  width: 100%;
  height: 25%;

  padding: 10px 5.5%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: rgba(255, 255, 255, 0.82);
  color: var(--color-navy);
  text-shadow: none;

  transform: none;
}

.home-hero__lead{
  margin: 0 0 0.25em 0;

  font-size: clamp(13px, 1.45vw, 18px);
  font-weight: bold;
  line-height: 1.25;
}

.home-hero__title{
  margin: 0 0 0.25em 0;

  color: var(--color-navy);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: bold;
  line-height: 1.2;
}

.home-hero__text{
  margin: 0;

  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: bold;
  line-height: 1.25;
}.home-hero__lead{
  margin: 0 0 0.25em 0;

  font-size: clamp(13px, 1.45vw, 18px);
  font-weight: bold;
  line-height: 1.25;
}

.home-hero__title{
  margin: 0 0 0.25em 0;

  color: var(--color-navy);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: bold;
  line-height: 1.2;
}

.home-hero__text{
  margin: 0;

  font-size: clamp(13px, 1.35vw, 17px);
  font-weight: bold;
  line-height: 1.25;
}

@media screen and (max-width: 900px){

  .home-content{
    padding-top: 24px;
  }

  .home-hero__image img{
    min-height: 280px;
    object-fit: cover;
  }

  .home-hero__image::after{
    background: linear-gradient(
      90deg,
      rgba(40, 53, 102, 0.78) 0%,
      rgba(40, 53, 102, 0.58) 64%,
      rgba(40, 53, 102, 0.22) 100%
    );
  }

  .home-hero__overlay{
    height: 28%;
    padding: 10px 6%;
  }
s
}

/* 2カラム */
.home-layout{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;

  width: 100%;
}

.home-main-column,
.home-side-column{
  min-width: 0;
}

@media screen and (max-width: 900px){

  .home-layout{
    grid-template-columns: 1fr;
    gap: 28px;
  }

}

/* セクション */
.home-section{
  width: 100%;
  margin: 0 0 34px 0;
}

.home-section:last-child{
  margin-bottom: 0;
}

.home-section--side{
  margin-bottom: 30px;
}

/* トップ用見出し */
.home-section-heading{
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 18px 0;
  padding: 12px 16px;

  border-top: 0;
  border-radius: 8px;
  background: #dcebf3;
  color: var(--color-navy);

  font-size: 130%;
  font-weight: bold;
  line-height: 1.5;
}

.home-section-heading::before{
  flex: 0 0 auto;

  width: 1.9em;
  height: 1.9em;

  border-radius: 50%;
  background: var(--color-green);
  color: #ffffff;

  box-shadow: 0 0 0 4px #ffffff, 0 0 0 5px var(--color-line);

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 82%;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-section-heading--info::before{
  content: "\f1ea";
}

.home-section-heading--watch::before{
  content: "\f002";
}

.home-section-heading--ftc::before{
  content: "\f0e3";
}

.home-section-heading--data::before{
  content: "\f02d";
}

.home-section-heading--association::before{
  content: "\f0a1";
}

.home-section-heading--news::before{
  content: "\f017";
}

@media screen and (max-width: 900px){

  .home-section-heading{
    padding: 11px 13px;
    font-size: 118%;
  }

  .home-section-heading::before{
    width: 1.75em;
    height: 1.75em;
  }

}@media screen and (max-width: 900px){

  .home-section{
    margin-bottom: 30px;
  }

  .home-section-heading{
    padding: 11px 13px;
    font-size: 118%;
  }

  .home-section-heading::before{
    width: 1.75em;
    height: 1.75em;
  }

}

/* 一覧リンク */
.home-more-link{
  margin: 18px 0 0 0;
  padding: 14px 0 0 0;

  border-top: 1px solid var(--color-line);

  text-align: right;
}

.home-more-link a{
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--color-navy);

  font-weight: bold;
  text-decoration: none;
}

.home-more-link a::after{
  content: "\f105";

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
}

.home-more-link a:hover{
  color: var(--color-green);
}

/* リンクグループ */
.home-link-group{
  margin: 0 0 24px 0;
  padding: 0;
}

.home-link-group:last-of-type{
  margin-bottom: 0;
}

.home-link-group__title,
.he{
  margin: 0 0 10px 0;
  padding: 0 0 7px 0;

  border-top: 0;
  border-bottom: 1px solid var(--color-navy);
  color: var(--color-navy);

  font-size: 112%;
  font-weight: bold;
  line-height: 1.5;
}


/* リンクリスト */
.home-link-list{
  margin: 0;
  padding-left: 1.6em;
}

ol.home-link-list{
  list-style: decimal;
}

ul.home-link-list{
  list-style: disc;
}

.home-link-list > li{
  margin: 0 0 0.45em 0;
  padding: 0;

  line-height: 1.6;
}

.home-link-list > li::before{
  content: none;
}

.home-link-list ul{
  margin: 0.5em 0 0 0;
  padding-left: 1.4em;

  list-style: disc;
}

.home-link-list ul li{
  margin: 0 0 0.35em 0;
  padding: 0;

  line-height: 1.6;
}

.home-link-list ul li::before{
  content: none;
}

.home-link-list a{
  font-weight: normal;
}



/* 参考情報 */
.home-reference-list{
  margin: 0;
  padding: 0;

  list-style: none;
}

.home-reference-list > li{
  margin: 0 0 16px 0;
  padding: 16px 18px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
}

.home-reference-list > li:last-child{
  margin-bottom: 0;
}

.home-reference-list p{
  margin: 0 0 8px 0;
}

.home-reference-list ol{
  margin: 0;
  padding-left: 1.4em;
}

.home-reference-list li li{
  margin-bottom: 0.3em;
}

/* 更新情報 */
.home-update-list{
  width: 100%;
}

.home-update-item{
  margin: 0 0 12px 0;
  padding: 14px 16px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
}

.home-update-item:last-child{
  margin-bottom: 0;
}

.home-update-item time{
  display: block;

  margin: 0 0 6px 0;

  color: var(--color-navy);
  font-family: "Varela Round", sans-serif;
  font-weight: bold;
}

.home-update-item p{
  margin: 0;
  line-height: 1.7;
}

.home-update-item__note{
  margin-top: 5px !important;

  color: var(--color-muted);
  font-size: 92%;
}

/* 所在地 */
.home-office-section{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;

  width: 100%;
  margin: 36px 0 0 0;
  padding: 24px 0 0 0;

  border-top: 1px solid var(--color-line);
}

.home-office-card{
  line-height: 1.8;
}

.home-office-card h2{
  margin: 0 0 10px 0;
  padding: 0;

  border-top: 0;
  color: var(--color-navy);

  font-size: 120%;
  line-height: 1.5;
}

.home-office-card p{
  margin: 0 0 0.7em 0;
}

.home-office-card p:last-child{
  margin-bottom: 0;
}

.home-office-logo{
  text-align: right;
}

.home-office-logo img{
  display: inline-block;
  max-width: 260px;
  height: auto;
}

@media screen and (max-width: 900px){

  .home-office-section{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-office-logo{
    text-align: left;
  }

  .home-office-logo img{
    max-width: 220px;
  }

}


/* ---------------------------------------- */
/* トップページ：リンクアイコン */
/* ---------------------------------------- */

/* PDFリンク */
.site-main--home .home-link-list a[href$=".pdf" i]::after,
.site-main--home .home-reference-list a[href$=".pdf" i]::after,
.site-main--home .home-side-column a[href$=".pdf" i]::after{
  content: "\f1c1";

  margin-left: 0.35em;

  color: #a2446c;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 95%;
}

/* 外部リンクアイコン：PDF以外 */
.site-main--home .home-link-list a[href^="http" i]:not([href$=".pdf" i])::after,
.site-main--home .home-reference-list a[href^="http" i]:not([href$=".pdf" i])::after,
.site-main--home .home-side-column a[href^="http" i]:not([href$=".pdf" i])::after{
  content: "\f35d";

  margin-left: 0.35em;

  color: var(--color-green);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 85%;
}



/* 番号バッジ */
.info-index-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  align-self: flex-start;
  min-width: 3.4em;
  height: 1.8em;
  padding: 0 6px 0 6px;

  border-radius: 999px;
  background: #e1eef5;
  color: #283566;

  font-family: "Varela Round", sans-serif;
  font-size: 90%;
  font-weight: bold;
  line-height: 1;
}

/* 本文側 */
.info-index-body{
  min-width: 0;
}

/* タイトル */
.info-index-title{
  font-weight: bold;
}

/* 補足 */
.info-index-note{
  display: block;
  margin: 2px 0 0 0;

  color: #666154;
  font-size: 90%;
  line-height: 1.6;
}

/* Newバッジ位置調整 */
.info-index-body .clsNew{
  display: inline-block;
  margin-left: 0.6em;
  vertical-align: 0.1em;
}

/* SP調整 */
@media all and (max-width: 1080px){

  .info-index-link{
    grid-template-columns: 3.2em 1fr;
    gap: 8px;

    padding: 10px 8px 10px 8px;
  }

  .info-index-badge{
    min-width: 3.2em;
  }

}

.info-index-list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-index-list li{
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}

.info-index-link{
  display: flex;
  align-items: flex-start;
  gap: 12px;

  color: var(--color-text);
  text-decoration: none;
}

.info-index-badge{
  flex: 0 0 auto;
}

.info-index-body{
  display: flex;
  flex-direction: column;
  gap: 3px;

  min-width: 0;
}

.info-index-title{
  color: var(--color-green);
  font-weight: bold;
  line-height: 1.6;
}

.info-index-note{
  color: var(--color-muted);
  font-size: 92%;
  line-height: 1.6;
}

.info-index-link:hover .info-index-title{
  color: var(--color-navy);
  text-decoration: underline;
}



/* ---------------------------------------- */
/* トップページ：フッターリンク */
/* ---------------------------------------- */

.home-footer-link{
  width: 100%;
  max-width: var(--content-width);
  margin: 34px auto 0 auto;
  padding: 16px 20px;

  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #f8fbfd;
}

.home-footer-link__list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;

  margin: 0;
  padding: 0;

  list-style: none;
}

.home-footer-link__list li{
  margin: 0;
  padding: 0;
}

.home-footer-link__list li + li::before{
  content: "|";

  margin: 0 12px;
  color: var(--color-line);
}

.home-footer-link__list a{
  color: var(--color-green);
  font-size: 92%;
  font-weight: bold;
  line-height: 1.8;
  text-decoration: none;
}

.home-footer-link__list a:hover{
  color: var(--color-navy);
  text-decoration: underline;
}

@media screen and (max-width: 900px){

  .home-footer-link{
    margin-top: 28px;
    padding: 14px 12px;
  }

  .home-footer-link__list{
    justify-content: flex-start;
  }

  .home-footer-link__list li + li::before{
    margin: 0 9px;
  }

}


/* トップページ：日本SPD協議会 お知らせ */
.spd-top-news-heading{
  margin: 10px 0 0 0;
}

/* お知らせブロック */
.spd-top-news-card{
  margin: 0 0 24px 0;
  padding: 18px 0 0 0;

  background: transparent;
  color: #1f2f4f;
}

/* 小見出しラベル */
.spd-top-news-label{
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 4px 10px 4px 10px;

  border-radius: 999px;
  background: #e1eef5;
  color: #283566;

  font-size: 85%;
  font-weight: bold;
  line-height: 1.4;
}

/* タイトル */
.spd-top-news-title{
  margin: 0 0 8px 0;
  padding: 0 0 6px 0;

  border-top: 0;
  border-bottom: 1px solid #ffffff;

  color: #283566;
  font-size: 130%;
  line-height: 1.5;
}

/* 詳細全体 */
.spd-top-news-detail{
  margin: 0 0 16px 0;
  padding: 0 0 0 0;
}

/* 1行 */
.spd-top-news-row{
  display: flex;
  gap: 14px;
  align-items: stretch;

  margin: 0 0 0 0;
  padding: 8px 0 8px 0;

  border-bottom: 1px dotted #c8c8c8;
}

.spd-top-news-row:first-child{
  border-top: 1px dotted #c8c8c8;
}
.spd-top-news-row:last-child{
  margin: 0 0 0 0;
}

/* 日時・場所 */
.spd-top-news-term{
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 7em;

  margin: 0 0 0 0;
  padding: 4px 8px 4px 8px;

  border-radius: 4px;
  background: #f3f3f3;

  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}

/* 内容 */
.spd-top-news-desc{
  flex: 1;
  min-width: 0;

  margin: 0 0 0 0;
  padding: 2px 0 0 0;

  line-height: 1.7;
}

.spd-top-news-desc p{
  margin: 0 0 4px 0;
  padding: 0 0 0 0;
}

.spd-top-news-desc p:last-child{
  margin-bottom: 0;
}

/* 補足 */
.spd-top-news-note{
  color: #666154;
  font-size: 80%;
}

/* ダウンロード */
.spd-top-news-download{
  margin: 16px 0 0 0;
  padding: 0 0 0 0;
}

/* PDFリンクボタン */
.spd-top-news-button{
  display: block;
  box-sizing: border-box;
  width: 100%;

  margin: 0 0 0 0;
  padding: 10px 14px 10px 14px;

  border: 1px solid #283566;
  border-radius: 4px;
  background: #ffffff;
  color: #283566;

  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.spd-top-news-button:hover{
  background: #e1eef5;
  color: #283566;
  opacity: 1;
}

/* SP調整 */
@media all and (max-width: 1080px){

  .spd-top-news-card{
    padding: 16px 0 0 0;
  }

  .spd-top-news-row{
    display: block;

    margin: 0 0 0 0;
    padding: 12px 0 12px 0;

    border-bottom: 1px dotted #c8c8c8;
  }

  .spd-top-news-row:first-child{
    border-top: 1px dotted #c8c8c8;
  }

  .spd-top-news-term{
    display: flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;
    width: 100%;
    min-width: 0;

    margin: 0 0 8px 0;
    padding: 6px 8px 6px 8px;
  }

  .spd-top-news-desc{
    padding: 0 0 0 0;
  }

}



/* トップページ：延期・重要なお知らせ */
.spd-top-news-alert{
  margin: 0 0 0 0;
  padding: 16px 18px 16px 18px;

  border: 1px solid #e0d2b4;
  border-radius: 6px;

  background: #fffdf8;
  color: #1f2f4f;

  line-height: 1.8;
}

.spd-top-news-alert-title{
  display: inline-block;
  margin: 0 0 10px 0 !important;
  padding: 3px 10px 3px 10px !important;

  border-radius: 999px;
  background: #f3ead7;
  color: #5b4a2f;

  font-size: 90%;
  font-weight: bold;
  line-height: 1.5;
}

.spd-top-news-alert p{
  margin: 0 0 8px 0;
  padding: 0 0 0 0;
}

.spd-top-news-alert p:last-child{
  margin-bottom: 0;
}

/* トップページ：延期・重要なお知らせ ピンク系ラベル */
.spd-top-news-alert-title--pink{
  background: #f7e7ef;
  color: #8f3f62;
}




/* トップページ：書籍紹介カード */
.book-card-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;

  margin: 2em 0 24px 0;
  padding: 0 0 0 0;
}

/* カード本体 */
.book-card{
  margin: 0 0 0 0;
  padding: 0 0 0 0;

  border: 1px solid #d7dde8;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(40, 53, 102, 0.08);

  overflow: hidden;
}

/* タイトル帯 */
.book-card__title{
  margin: 0 0 0 0;
  padding: 12px 16px 12px 16px;

  border-top: 0;
  background: #6FD5CF;
  color: #ffffff;

  font-size: 105%;
  font-weight: bold;
  line-height: 1.5;
}

/* 本文エリア */
.book-card__body{
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;

  padding: 16px 16px 18px 16px;
}

/* 画像 */
.book-card__image{
  margin: 0 0 0 0;
  padding: 0 0 0 0;

  text-align: center;
}

.book-card__image img{
  max-width: 100%;
  height: auto;

  border-radius: 4px;
}

/* 文章 */
.book-card__text{
  min-width: 0;

  color: #1f2f4f;
  line-height: 1.75;
}

.book-card__text p{
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
}

.book-card__text p:last-child{
  margin-bottom: 0;
}

/* 書名 */
.book-card__name{
  color: #283566;
  font-size: 110%;
  font-weight: bold;
}

/* リンク */
.book-card__link{
  margin-top: 12px;
  font-weight: bold;
}

/* SP調整 */
@media all and (max-width: 1080px){

  .book-card-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .book-card__body{
    display: block;
    padding: 16px 14px 18px 14px;
  }

  .book-card__image{
    margin: 0 0 14px 0;
  }

  .book-card__title{
    padding: 12px 14px 12px 14px;
  }

}



/* ---------------------------------------- */
/* お知らせ一覧 */
/* ---------------------------------------- */

.info-list-section{
  width: 100%;
  line-height: 1.8;
}

.info-year-section{
  width: 100%;
  margin: 0 0 38px 0;
}

.info-year-section:last-child{
  margin-bottom: 0;
}

/* お知らせリスト */
.info-update-list{
  width: 100%;
  margin: 0;
  padding: 0;

  border-top: 1px solid var(--color-line);
}

.info-update-item{
  display: grid;
  grid-template-columns: 10em 1fr;
  gap: 18px;

  margin: 0;
  padding: 16px 0;

  border-bottom: 1px solid var(--color-line);
}

.info-update-item time{
  color: var(--color-navy);
  font-family: "Varela Round", sans-serif;
  font-weight: bold;
  white-space: nowrap;
}

.info-update-item__body{
  min-width: 0;
}

.info-update-item__body p{
  margin: 0;
  padding: 0;

  line-height: 1.8;
}

.info-update-item__body a{
  font-weight: bold;
}

.info-update-item__note{
  margin-top: 4px !important;

  color: var(--color-muted);
  font-size: 92%;
}

@media screen and (max-width: 900px){

  .info-year-section{
    margin-bottom: 34px;
  }

  .info-update-item{
    grid-template-columns: 1fr;
    gap: 4px;

    padding: 14px 0;
  }

}



/* ---------------------------------------- */
/* 行政Watch */
/* ---------------------------------------- */

.watch-section{
  width: 100%;
  line-height: 1.8;
}

.watch-agency-section{
  width: 100%;
  margin: 0 0 42px 0;
}

.watch-agency-section:last-child{
  margin-bottom: 0;
}

/* リンクリスト */
.watch-link-list{
  margin: 0;
  padding-left: 1.6em;
}

ol.watch-link-list{
  list-style: decimal;
}

.watch-link-list > li{
  margin: 0 0 1em 0;
  padding: 0;

  line-height: 1.7;
}

.watch-link-list > li:last-child{
  margin-bottom: 0;
}

.watch-link-list ul{
  margin: 0.6em 0 0 0;
  padding-left: 1.4em;

  list-style: disc;
}

.watch-link-list ul li{
  margin: 0 0 0.45em 0;
  padding: 0;

  line-height: 1.7;
}

.watch-link-list ul li:last-child{
  margin-bottom: 0;
}

.watch-link-list a{
  font-weight: normal;
}

@media screen and (max-width: 900px){

  .watch-agency-section{
    margin-bottom: 36px;
  }

  .watch-link-list{
    padding-left: 1.4em;
  }

  .watch-link-list ul{
    padding-left: 1.2em;
  }

}

/* ---------------------------------------- */
/* 行政Watch：リンクアイコン */
/* ---------------------------------------- */

/* PDFリンク */
.watch-section a[href$=".pdf" i]::after{
  content: "\f1c1";

  margin-left: 0.35em;

  color: #a2446c;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 95%;
}

/* 外部リンクアイコン：PDF以外 */
.watch-section a[href^="http" i]:not([href$=".pdf" i])::after{
  content: "\f35d";

  margin-left: 0.35em;

  color: var(--color-green);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 85%;
}




/* ---------------------------------------- */
/* 参考情報 */
/* ---------------------------------------- */

.data-section{
  width: 100%;
  line-height: 1.8;
}

/* 参考情報リスト */
.data-reference-list{
  width: 100%;
  margin: 0;
  padding: 0;
}

.data-reference-item{
  width: 100%;
  margin: 0 0 16px 0;
  padding: 18px 20px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
}

.data-reference-item:last-child{
  margin-bottom: 0;
}

.data-reference-item dt{
  margin: 0;
  padding: 0 0 8px 0;

  border-bottom: 1px solid var(--color-line);
  color: var(--color-navy);

  font-weight: bold;
  line-height: 1.7;
}

.data-reference-item dd{
  margin: 10px 0 0 0;
  padding: 0;
}

.data-reference-item dd:empty{
  display: none;
}

.data-reference-item p{
  margin: 0;
  line-height: 1.8;
}

.data-reference-item ol,
.data-reference-item ul{
  margin: 0;
  padding-left: 1.5em;
}

.data-reference-item li{
  margin: 0 0 0.45em 0;
  padding: 0;

  line-height: 1.7;
}

.data-reference-item li:last-child{
  margin-bottom: 0;
}

.data-reference-item a{
  font-weight: normal;
}

.data-reference-item dt a{
  font-weight: bold;
}

@media screen and (max-width: 900px){

  .data-reference-item{
    margin-bottom: 14px;
    padding: 16px 14px;
  }

  .data-reference-item ol,
  .data-reference-item ul{
    padding-left: 1.25em;
  }

}

/* PDFリンクアイコン */
.data-reference-item a[href$=".pdf"]::after,
.watch-link-list a[href$=".pdf"]::after{
  content: "\f1c1";

  margin-left: 0.35em;

  color: #a2446c;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 95%;
}



/* ---------------------------------------- */
/* 情報発信 */
/* ---------------------------------------- */

.info-index-section{
  width: 100%;
  line-height: 1.8;
}

/* 情報発信一覧 */
.info-index-list{
  margin: 0;
  padding: 0;

  list-style: none;
}

.info-index-list li{
  margin: 0 0 14px 0;
  padding: 0;

  list-style: none;
}

.info-index-list li:last-child{
  margin-bottom: 0;
}

.info-index-link{
  display: flex;
  align-items: flex-start;
  gap: 12px;

  width: 100%;
  padding: 16px 18px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text);
  text-decoration: none;

  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.info-index-link:hover{
  border-color: var(--color-green);
  background: #f3f8fb;
  color: var(--color-text);
  transform: translateY(-1px);
}

.info-index-badge{
  flex: 0 0 auto;

  min-width: 3.4em;
  padding: 0.3em 0.45em;

  border-radius: 999px;
  background: var(--color-sky);
  color: var(--color-navy);

  font-family: "Varela Round", sans-serif;
  font-size: 90%;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.info-index-body{
  display: flex;
  flex-direction: column;
  gap: 3px;

  min-width: 0;
}

.info-index-title{
  color: var(--color-green);

  font-weight: bold;
  line-height: 1.6;
}

.info-index-note{
  color: var(--color-muted);

  font-size: 92%;
  line-height: 1.6;
}

.info-index-link:hover .info-index-title{
  color: var(--color-navy);
  text-decoration: underline;
}

.info-index-title-row{
  display: flex;
  align-items: center;
  gap: 8px;

  flex-wrap: wrap;
}

.info-index-title-row .clsNew{
  flex: 0 0 auto;
}

/* New */
.clsNew{
  display: inline-block;

  width: fit-content;
  margin: 2px 0;
  padding: 0.1em 0.55em;

  border-radius: 999px;
  background: #a2446c;
  color: #ffffff;

  font-size: 78%;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 900px){

  .info-index-link{
    gap: 10px;
    padding: 14px 13px;
  }

  .info-index-badge{
    min-width: 3.1em;
    font-size: 84%;
  }

}


/* 動画 */
.info-video-box{
  width: 100%;
  margin: 1.4em 0 0 0;
}

.info-video{
  display: block;

  width: 720px;
  max-width: 100%;
  height: auto;

  border: 1px solid var(--color-line);
  background: #000000;
}

@media screen and (max-width: 900px){

  .info-video-box{
    margin-top: 1.2em;
  }

}




/* ---------------------------------------- */
/* 会員ページ ログイン */
/* ---------------------------------------- */

.members-login-section{
  width: 100%;
}

.members-login-card{
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 0;

  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #ffffff;

  overflow: hidden;
}

.members-login-card__header{
  padding: 22px 26px;

  background: #f3f8fb;
  border-bottom: 1px solid var(--color-line);
}

.members-login-card__header h2{
  margin: 0;
  padding: 0;

  border-top: 0;

  color: var(--color-navy);
  font-size: 140%;
  line-height: 1.5;
}

/* ログインフォーム */
.members-login-form{
  padding: 26px;
}

.members-login-form__item{
  margin: 0 0 20px 0;
}

.members-login-form__item label{
  display: block;

  margin: 0 0 7px 0;

  color: var(--color-navy);
  font-weight: bold;
  line-height: 1.5;
}

.members-login-form__input{
  width: 100%;
  max-width: 100%;
  padding: 11px 12px;

  border: 1px solid var(--color-line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--color-text);

  font-size: 16px;
  line-height: 1.5;
}

.members-login-form__input:focus{
  border-color: var(--color-navy);
  outline: 2px solid rgba(40, 53, 102, 0.18);
  outline-offset: 1px;
}

/* パスワード */
.password-input-wrap{
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.password-input-wrap .members-login-form__input{
  flex: 1;
  min-width: 0;
}

.password-toggle{
  flex: 0 0 auto;

  min-width: 5.5em;
  padding: 0 12px;

  border: 1px solid var(--color-navy);
  border-radius: 6px;
  background: #ffffff;
  color: var(--color-navy);

  font-weight: bold;
  cursor: pointer;
}

.password-toggle:hover,
.password-toggle.is-visible{
  background: var(--color-navy);
  color: #ffffff;
}

/* 送信 */
.members-login-form__submit{
  margin: 26px 0 0 0;
}

.members-login-form__button{
  display: inline-block;

  min-width: 180px;
  padding: 12px 28px;

  border: 1px solid var(--color-navy);
  border-radius: 6px;
  background: var(--color-navy);
  color: #ffffff;

  font-size: 115%;
  font-weight: bold;
  line-height: 1.4;

  cursor: pointer;
}

.members-login-form__button:hover{
  background: var(--color-navy-light);
  border-color: var(--color-navy-light);
}

@media screen and (max-width: 900px){

  .members-login-card{
    width: 100%;
  }

  .members-login-card__header{
    padding: 18px 16px;
  }

  .members-login-card__header h2{
    font-size: 120%;
  }

  .members-login-form{
    padding: 18px 16px 20px 16px;
  }

  .password-input-wrap{
    display: block;
  }

  .password-toggle{
    width: 100%;
    min-height: 42px;
    margin: 8px 0 0 0;
  }

  .members-login-form__button{
    width: 100%;
  }

}


/* ---------------------------------------- */
/* 会員ページ ログイン後 */
/* ---------------------------------------- */

.members-only-section{
  width: 100%;
  line-height: 1.8;
}

/* ログアウト */
.members-only-toolbar{
  display: flex;
  justify-content: flex-end;

  margin: 0 0 18px 0;
  padding: 0;
}

.members-logout-link{
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 12px;

  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-navy);

  font-size: 92%;
  font-weight: bold;
  line-height: 1.4;
}

.members-logout-link::before{
  content: "\f2f5";

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
}

.members-logout-link:hover{
  border-color: var(--color-green);
  background: #f3f8fb;
  color: var(--color-navy);
}

/* 資料一覧 */
.members-material-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;

  width: 100%;
  margin: 0;
  padding: 0;
}

.members-material-card{
  display: grid;
  grid-template-columns: 9em 1fr auto;
  gap: 12px;
  align-items: center;

  width: 100%;
  padding: 13px 16px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text);

  line-height: 1.6;

  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.members-material-card time{
  color: var(--color-navy);
  font-family: "Varela Round", sans-serif;
  font-weight: bold;
  white-space: nowrap;
}

.members-material-card span{
  min-width: 0;
  font-weight: bold;
}

.members-material-card::after{
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  line-height: 1;
}

.members-material-card--pdf::after{
  content: "\f1c1";
  color: #a2446c;
}

.members-material-card--video::after{
  content: "\f144";
  color: var(--color-green);
}

.members-material-card:hover{
  border-color: var(--color-green);
  background: #f3f8fb;
  color: var(--color-navy);
  transform: translateY(-1px);
}

@media screen and (max-width: 900px){

  .members-only-toolbar{
    justify-content: stretch;
  }

  .members-logout-link{
    justify-content: center;
    width: 100%;
  }

  .members-material-card{
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
    padding: 13px 14px;
  }

  .members-material-card time{
    grid-column: 1 / 2;
  }

  .members-material-card span{
    grid-column: 1 / 3;
  }

  .members-material-card::after{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

}



/* ---------------------------------------- */
/* 情報発信 詳細 */
/* ---------------------------------------- */

.info-article{
  width: 100%;
  line-height: 1.9;
}

.info-article__back{
  margin: 0 0 22px 0;
  text-align: right;
}

.info-article__back a{
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--color-green);
  font-weight: bold;
  text-decoration: none;
}

.info-article__back a::before{
  content: "\f104";

  color: var(--color-navy);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.info-article__back a:hover{
  color: var(--color-navy);
  text-decoration: underline;
}

/* 記事ヘッダー */
.info-article__header{
  margin: 0 0 26px 0;
  padding: 22px 24px;

  border: 1px solid var(--color-line);
  border-radius: 10px;
  background: #f8fbfd;
}

.info-article__number{
  display: inline-block;

  margin: 0 0 10px 0;
  padding: 0.25em 0.65em;

  border-radius: 999px;
  background: var(--color-sky);
  color: var(--color-navy);

  font-family: "Varela Round", sans-serif;
  font-size: 90%;
  font-weight: bold;
  line-height: 1.2;
}

.info-article__header h2{
  margin: 0 0 10px 0;
  padding: 0;

  border-top: 0;
  color: var(--color-navy);

  font-size: 145%;
  line-height: 1.5;
}

.info-article__date{
  margin: 0;

  color: var(--color-muted);
  font-size: 95%;
  line-height: 1.6;
}

@media screen and (max-width: 900px){

  .info-article{
    line-height: 1.8;
  }

  .info-article__back{
    margin-bottom: 18px;
  }

  .info-article__header{
    padding: 18px 16px;
  }

  .info-article__header h2{
    font-size: 125%;
  }

}

/* 記事本文 */
.info-article__body{
  width: 100%;
}

.info-article__body p{
  margin: 0 0 1.15em 0;
}

.info-article__author{
  margin-top: 2em !important;
  text-align: right;
}

/* 表 */
.c-table-scroll{
  width: 100%;
  margin: 1.4em 0 1.6em 0;
  overflow-x: auto;
}

.c-data-table{
  width: 100%;
  min-width: 760px;

  border-collapse: collapse;
  background: #ffffff;
  font-size: 95%;
}

.c-data-table th,
.c-data-table td{
  padding: 12px 14px;

  border: 1px solid var(--color-line);
  line-height: 1.6;
  text-align: center;
  vertical-align: middle;
}

.c-data-table th{
  background: #e1eef5;
  color: var(--color-navy);
  font-weight: bold;
}

.c-data-table thead th{
  background: var(--color-navy);
  color: #ffffff;
}

@media screen and (max-width: 900px){

  .c-table-scroll{
    margin: 1.2em 0 1.4em 0;
  }

  .c-data-table{
    font-size: 88%;
  }

  .c-data-table th,
  .c-data-table td{
    padding: 10px 9px;
  }

}


/* ---------------------------------------- */
/* 会員ページ 動画プログラムログイン */
/* ---------------------------------------- */

.members-login-section--video .members-login-card__header h2{
  display: flex;
  align-items: center;
  gap: 10px;
}

.members-login-section--video .members-login-card__header h2::before{
  content: "\f144";

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
  font-size: 90%;
}

.required-label{
  display: inline-block;

  margin-left: 0.5em;
  padding: 2px 7px;

  border-radius: 999px;
  background: #a2446c;
  color: #ffffff;

  font-size: 75%;
  font-weight: bold;
  line-height: 1.4;
  vertical-align: middle;
}

@media screen and (max-width: 900px){

  .members-login-section--video .members-login-card__header h2{
    align-items: flex-start;
  }

}



/* ---------------------------------------- */
/* 会員ページ 動画一覧 */
/* ---------------------------------------- */

.video-list-section{
  width: 100%;
  line-height: 1.8;
}

.video-list-title{
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-list-title::before{
  content: "\f1c8";

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
  font-size: 90%;
}

@media screen and (max-width: 900px){

  .video-list-title{
    align-items: flex-start;
  }

}

/* 動画一覧本体 */
.video-list-content{
  width: 100%;
  margin: 0 0 28px 0;
}

/* ##cont## がテーブルの場合 */
.video-list-content table{
  width: 100%;
  border-collapse: collapse;

  border-top: 1px solid var(--color-line);
  background: #ffffff;
}

.video-list-content th,
.video-list-content td{
  padding: 13px 14px;

  border-bottom: 1px solid var(--color-line);

  text-align: left;
  vertical-align: middle;
  line-height: 1.7;
}

.video-list-content th{
  background: #f3f8fb;
  color: var(--color-navy);

  font-weight: bold;
}

.video-list-content td a{
  display: inline-flex;
  align-items: center;
  gap: 7px;

  font-weight: bold;
}

.video-list-content td a::before{
  content: "\f144";

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
  font-size: 90%;
}

/* ##cont## がリストの場合 */
.video-list-content ul,
.video-list-content ol{
  margin: 0;
  padding: 0;

  list-style: none;
}

.video-list-content li{
  margin: 0 0 10px 0;
  padding: 0;
}

.video-list-content li a{
  display: flex;
  align-items: center;
  gap: 10px;

  width: 100%;
  padding: 13px 16px;

  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--color-text);

  font-weight: bold;
  line-height: 1.6;

  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.video-list-content li a::before{
  content: "\f144";

  flex: 0 0 auto;

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
}

.video-list-content li a:hover{
  border-color: var(--color-green);
  background: #f3f8fb;
  color: var(--color-navy);
  transform: translateY(-1px);
}

@media screen and (max-width: 900px){

  .video-list-content{
    margin-bottom: 24px;
  }

  .video-list-content table{
    display: block;
    overflow-x: auto;

    -webkit-overflow-scrolling: touch;
  }

  .video-list-content th,
  .video-list-content td{
    padding: 11px 12px;
    white-space: nowrap;
  }

  .video-list-content li a{
    padding: 12px 14px;
  }

}

/* お問い合わせ */
.video-list-contact{
  margin: 28px 0 0 0;
  padding: 16px 18px;

  border-left: 4px solid var(--color-green);
  border-radius: 8px;
  background: #f8fbfd;
}

.video-list-contact p{
  margin: 0;
  padding: 0;

  line-height: 1.8;
}

.video-list-contact a{
  font-weight: bold;
}

@media screen and (max-width: 900px){

  .video-list-contact{
    margin-top: 24px;
    padding: 14px 14px;
  }

}



/* ---------------------------------------- */
/* 会員ページ 動画詳細 */
/* ---------------------------------------- */

.video-detail-section{
  width: 100%;
  line-height: 1.8;
}

/* 戻るリンク */
.video-detail-toolbar{
  display: flex;
  justify-content: flex-end;

  margin: 0 0 18px 0;
  padding: 0;
}

.video-back-link{
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 12px;

  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-navy);

  font-size: 92%;
  font-weight: bold;
  line-height: 1.4;
}

.video-back-link::before{
  content: "\f060";

  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  color: var(--color-green);
}

.video-back-link:hover{
  border-color: var(--color-green);
  background: #f3f8fb;
  color: var(--color-navy);
}

@media screen and (max-width: 900px){

  .video-detail-toolbar{
    justify-content: stretch;
  }

  .video-back-link{
    justify-content: center;
    width: 100%;
  }

}

/* 動画カード */
.video-detail-card{
  width: 100%;
  margin: 0;
  padding: 0;

  border: 1px solid var(--color-line);
  border-radius: 12px;
  background: #ffffff;

  overflow: hidden;
}

.video-detail-card__header{
  padding: 16px 20px;

  border-bottom: 1px solid var(--color-line);
  background: #f3f8fb;
}

.video-detail-card__header h3{
  margin: 0;
  padding: 0;

  border-top: 0;

  color: var(--color-navy);
  font-size: 130%;
  line-height: 1.5;
}

.video-detail-card__body{
  padding: 20px;
}

@media screen and (max-width: 900px){

  .video-detail-card__header{
    padding: 14px 16px;
  }

  .video-detail-card__header h3{
    font-size: 115%;
  }

  .video-detail-card__body{
    padding: 14px;
  }

}

/* 動画本体 */
.video-player-wrap{
  width: 100%;
  max-width: 100%;
  margin: 0 auto;

  text-align: center;
}

.video-player-wrap iframe,
.video-player-wrap video{
  max-width: 100%;
}

/* 再生バー */
.video-progress-wrap{
  display: flex;

  width: 100%;
  min-height: 20px;
  margin: 14px 0 0 0;
}

/* 字幕 */
.video-subtitle{
  min-height: 3em;
  margin: 18px 0 0 0;
  padding: 14px 16px;

  border-radius: 8px;
  background: #f8fbfd;
  color: var(--color-text);

  font-size: 110%;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 900px){

  .video-progress-wrap{
    margin-top: 12px;
  }

  .video-subtitle{
    min-height: 2.5em;
    margin-top: 14px;
    padding: 12px 14px;

    font-size: 100%;
  }

}




/* ---------------------------------------- */
/* 印刷用 */
/* ---------------------------------------- */

@media print{

  @page{
    size: A4;
    margin: 10mm;
  }

  html,
  body{
    width: 1440px !important;
    min-width: 1440px !important;
    max-width: 1440px !important;
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 12pt;
  }

  body{
    zoom: 0.62;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  a{
    color: inherit;
    text-decoration: none;
  }

  img{
    max-width: 100%;
    height: auto;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* 非表示 */
  .site-menu-toggle,
  .site-overlay,
  .page-top{
    display: none !important;
  }

  /* 全体幅 */
  .site-header,
  .site-nav,
  .site-main,
  .site-footer,
  .site-header__inner,
  .site-nav__inner,
  .breadcrumb,
  .page-title__inner,
  .site-content,
  .site-footer__inner{
    width: 1440px !important;
    min-width: 1440px !important;
    max-width: 1440px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* ヘッダー */
  .site-header{
    position: static !important;
    display: block !important;
  
    width: 1440px !important;
    min-width: 1440px !important;
    max-width: 1440px !important;
  
    height: auto !important;
    min-height: 0 !important;
  
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
  
    overflow: visible !important;
    background: #ffffff !important;
  }
  
  .site-header__inner{
    display: flex !important;
    align-items: center !important;
  
    width: 1440px !important;
    min-width: 1440px !important;
    max-width: 1440px !important;
  
    height: 72px !important;
    min-height: 72px !important;
  
    margin: 0 !important;
    padding: 0 !important;
  
    overflow: visible !important;
  }
  
  /* メインメニュー */
  .site-nav{
    position: static !important;
    display: block !important;
    clear: both !important;
  
    width: 1440px !important;
    min-width: 1440px !important;
    max-width: 1440px !important;
  
    height: auto !important;
    min-height: 0 !important;
  
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
  
    overflow: visible !important;
    background: var(--color-navy) !important;
  
    transform: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }


  /* メイン */
  .site-main{
    padding-top: 0 !important;
  }

  .breadcrumb{
    margin-bottom: 18px !important;
  }

  .page-title{
    page-break-inside: avoid;
    break-inside: avoid;
  }

  /* トップページ */
  .site-main--home{
    padding-top: 0 !important;
  }

  .home-hero{
    width: 1440px !important;
    max-width: 1440px !important;
  }

  .home-layout{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 34px !important;
  }

  .home-main-column,
  .home-side-column{
    min-width: 0 !important;
  }

  .home-office-section{
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
  }

  /* 会員ページ */
  .corporate-member-grid,
  .member-card-grid{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .corporate-member,
  .member-card{
    width: auto !important;
    min-width: 0 !important;
    padding: 12px 14px !important;
  }

  .corporate-member a,
  .member-card a,
  .member-card__name{
    font-size: 95% !important;
    line-height: 1.5 !important;
  }

  .member-card__meta{
    font-size: 88% !important;
    line-height: 1.5 !important;
  }

  /* ダウンロード・活動記録 */
  .download-card-list,
  .activity-card-list{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .download-card-list--single{
    grid-template-columns: 1fr !important;
  }

  /* お知らせ一覧 */
  .info-update-item{
    display: grid !important;
    grid-template-columns: 10em 1fr !important;
    gap: 18px !important;
  }

  /* フォーム */
  .contact-form-row,
  .contact-form-field{
    display: grid !important;
    grid-template-columns: 13em 1fr !important;
  }

  /* 改ページ調整 */
  h1,
  h2,
  h3,
  h4,
  .home-section-heading,
  .download-card,
  .member-card,
  .corporate-member,
  .activity-card,
  .info-index-link,
  .data-reference-item,
  .info-update-item{
    page-break-inside: avoid;
    break-inside: avoid;
  }

  h2,
  h3,
  h4{
    page-break-after: avoid;
    break-after: avoid;
  }

  .site-footer{
    margin-top: 30px !important;
  }

}


