@import url("https://use.fontawesome.com/releases/v7.0.0/css/all.css");

/* =========================================================
  基本設定
========================================================= */
:root{
  --color-primary: #0b7f7a;
  --color-primary-dark: #066762;
  --color-primary-light: #e7f5f3;
  --color-accent: #c95f5f;
  --color-text: #222;
  --color-muted: #666;
  --color-border: #d8d8d8;
  --color-bg: #fff;
  --color-bg-soft: #f4f3ee;

  --container-width: 1200px;
  --font-base: "Yu Gothic", "YuGothic", "Meiryo", sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --header-height: 92px;
}

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

html{
  scroll-behavior: smooth;
}

body{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  color: var(--color-text);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  background: var(--color-bg);
  overflow-x: hidden;
}

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

a{
  color: var(--color-accent);
  text-decoration: underline;
}

a:hover{
  text-decoration: none;
}

.l-container{
  width: min(100% - 40px, var(--container-width));
  margin: 0 auto 0 auto;
}

/* =========================================================
  ヘッダー
========================================================= */
.l-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}

.l-header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 14px 0 14px 0;
}

.l-header__brand{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text);
  text-decoration: none;
}

.l-header__logo{
  width: 64px;
  height: auto;
}

.l-header__en{
  margin: 0 0 2px 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: .04em;
}

.l-header__name{
  margin: 0 0 0 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
}

.l-global-nav-wrap{
  background: var(--color-primary);
}

.l-global-nav__list{
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}

.l-global-nav__list a{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 8px 8px 8px;
  border-left: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
}

.l-global-nav__list li:last-child a{
  border-right: 1px solid rgba(255, 255, 255, .35);
}

.l-global-nav__list a:hover,
.l-global-nav__list a.is-current{
  background: var(--color-primary-dark);
}

/* ハンバーガーボタン：PCでは非表示 */
.l-nav-toggle{
  display: none;
}

/* SPヘッダー */
@media (max-width: 900px){
  :root{
    --header-height: 72px;
  }

  .l-header__inner{
    min-height: var(--header-height);
    padding: 10px 0 10px 0;
  }

  .l-header__logo{
    width: 48px;
  }

  .l-header__en{
    font-size: 10px;
  }

  .l-header__name{
    font-size: 18px;
  }

  .l-nav-toggle{
    position: fixed;
    top: 14px;
    right: 20px;
    z-index: 1201;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .l-nav-toggle span{
    display: block;
    width: 28px;
    height: 2px;
    margin: 0 auto 0 auto;
    background: var(--color-primary);
    transition:
      transform .25s ease,
      opacity .25s ease;
  }

  body.is-nav-open .l-nav-toggle span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  body.is-nav-open .l-nav-toggle span:nth-child(2){
    opacity: 0;
  }

  body.is-nav-open .l-nav-toggle span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  .l-global-nav-wrap{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1200;
    width: min(82%, 340px);
    height: 100vh;
    padding: var(--header-height) 0 0 0;
    background: var(--color-primary);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform .25s ease;
  }

  body.is-nav-open .l-global-nav-wrap{
    transform: translateX(0);
  }

  .l-global-nav{
    width: 100%;
  }

  .l-global-nav__list{
    display: block;
  }

  .l-global-nav__list a{
    justify-content: flex-start;
    min-height: 52px;
    padding: 12px 22px 12px 22px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    text-align: left;
  }

  .l-nav-overlay{
    position: fixed;
    inset: 0;
    z-index: 1190;
    background: rgba(0, 0, 0, .55);
  }

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

  body.is-nav-open .l-nav-toggle span{
    background: #fff;
  }

}

/* =========================================================
  ページタイトル
========================================================= */
.p-page-hero{
  background: linear-gradient(135deg, var(--color-primary), #12a096);
}

.p-page-hero .l-container{
  padding: 34px 0 34px 0;
}

.p-page-hero__label{
  margin: 0 0 4px 0;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.p-page-hero__title{
  margin: 0 0 0 0;
  color: #fff;
  font-size: 30px;
  line-height: 1.4;
}

@media (max-width: 900px){
  .p-page-hero .l-container{
    padding: 26px 0 26px 0;
  }

  .p-page-hero__title{
    font-size: 24px;
  }
}

/* =========================================================
  パンくず
========================================================= */
.c-breadcrumb{
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.c-breadcrumb__list{
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0 auto 0 auto;
  padding: 10px 0 10px 0;
  list-style: none;
  color: var(--color-muted);
  font-size: 13px;
}

.c-breadcrumb__list li + li::before{
  content: "›";
  margin: 0 8px 0 0;
  color: var(--color-muted);
}

.c-breadcrumb__list a{
  color: var(--color-muted);
  text-decoration: none;
}

.c-breadcrumb__list a:hover{
  color: var(--color-primary);
  text-decoration: underline;
}

/* =========================================================
  通常ページレイアウト
========================================================= */
.l-main{
  padding: 0 0 64px 0;
}

.l-contents{
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
  padding-top: 40px;
}

.l-side{
  min-width: 0;
}

.l-content{
  min-width: 0;
}

@media (max-width: 900px){
  .l-main{
    padding: 0 0 48px 0;
  }

  .l-contents{
    display: block;
    padding-top: 28px;
  }

  .l-side{
    margin: 0 0 30px 0;
  }
}

/* =========================================================
  サイドメニュー
========================================================= */
.c-side-nav{
  position: sticky;
  top: calc(var(--header-height) + 20px);
  border: 1px solid var(--color-border);
  background: #fff;
}

.c-side-nav__title{
  margin: 0 0 0 0;
  padding: 12px 16px 12px 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
}

.c-side-nav__list{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}

.c-side-nav__list a{
  display: block;
  padding: 12px 16px 12px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  text-decoration: none;
}

.c-side-nav__list li:last-child a{
  border-bottom: 0;
}

.c-side-nav__list a:hover,
.c-side-nav__list a.is-current{
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  font-weight: 700;
}

@media (max-width: 900px){
  .c-side-nav{
    position: static;
  }

  .c-side-nav__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .c-side-nav__list a{
    border-right: 1px solid var(--color-border);
  }
}

@media (max-width: 600px){
  .c-side-nav__list{
    display: block;
  }

  .c-side-nav__list a{
    border-right: 0;
  }
}

/* =========================================================
  本文・見出し
========================================================= */
.c-entry h2{
  margin: 0 0 28px 0;
  padding: 14px 18px 14px 18px;
  border-left: 6px solid var(--color-primary);
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.5;
}

.c-entry h3{
  margin: 0 0 16px 0;
  padding: 10px 14px 10px 14px;
  border: 1px solid var(--color-border);
  border-left: 5px solid var(--color-primary);
  background: #fff;
  font-size: 20px;
  line-height: 1.5;
}

.c-entry h4{
  margin: 0 0 12px 0;
  padding: 0 0 0 12px;
  border-left: 4px solid var(--color-primary);
  font-size: 18px;
  line-height: 1.5;
}


.c-entry h5{
  margin: 28px 0 12px 0;
  padding: 0 0 6px 0;
  border-bottom: 1px dotted var(--color-primary);
  color: var(--color-text);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.c-section{
  margin: 0 0 34px 0;
}

.c-section:last-child{
  margin-bottom: 0;
}

@media (max-width: 900px){
  .c-entry h2{
    font-size: 21px;
  }

  .c-entry h3{
    font-size: 18px;
  }

  .c-section{
    margin: 0 0 28px 0;
  }
}

/* =========================================================
  リンクリスト
========================================================= */
.c-link-list{
  margin: 0 0 0 1.4em;
  padding: 0 0 0 0;
}

.c-link-list li + li{
  margin-top: 8px;
}

.c-link-list__note{
  margin-left: 6px;
  color: var(--color-muted);
  font-size: 14px;
}

.a-link-pdf::after{
  content: "\f1c1";
  display: inline-block;
  margin-left: .35em;
  color: var(--color-accent);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.a-link-external::after{
  content: "\f35d";
  display: inline-block;
  margin: 0 0 0 6px;
  color: var(--color-primary);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: .85em;
  line-height: 1;
}


.c-entry ol,
.c-entry ul{
  margin: 0 0 1.2em 0;
  padding: 0 0 0 1.4em;
}

.c-entry li{
  line-height: 1.8;
}

.c-entry li + li{
  margin-top: 4px;
}


/* =========================================================
  テーブル
========================================================= */
.c-table-wrap{
  overflow-x: auto;
}

.c-table{
  width: auto;
  min-width: 320px;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
}

.c-table th,
.c-table td{
  padding: 10px 14px 10px 14px;
  border: 1px solid var(--color-border);
  text-align: left;
  vertical-align: middle;
}

.c-table th{
  background: var(--color-bg-soft);
  font-weight: 700;
  white-space: nowrap;
}

/* =========================================================
  テーブル：SP時1列表示
========================================================= */
@media (max-width: 900px){
  .c-table--stack,
  .c-table--stack tbody,
  .c-table--stack tr,
  .c-table--stack th,
  .c-table--stack td{
    display: block;
    width: 100%;
  }

  .c-table--stack{
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .c-table--stack tr{
    border: 0;
  }

  .c-table--stack tr + tr{
    margin-top: 10px;
  }

  .c-table--stack th,
  .c-table--stack td{
    border: 0;
  }

  .c-table--stack th{
    border-bottom: 1px solid var(--color-border);
  }
}


/* =========================================================
  フッター補助メニュー
========================================================= */
.c-footer-nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 40px auto 0 auto;
  padding: 16px 20px 16px 20px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.c-footer-nav a{
  color: var(--color-muted);
  text-decoration: none;
}

.c-footer-nav a::before{
  content: "｜";
  margin: 0 .35em 0 .35em;
  color: #aaa;
}

.c-footer-nav a:last-child::after{
  content: "｜";
  margin: 0 0 0 .35em;
  color: #aaa;
}

.c-footer-nav a:hover{
  color: var(--color-primary-dark);
  text-decoration: underline;
}


/* =========================================================
  フッター
========================================================= */
.l-footer{
  padding: 22px 0 22px 0;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
}

.l-footer__copyright,
.l-footer__mail{
  margin: 0 0 0 0;
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
  ページ上部へ戻る
========================================================= */
.c-page-top{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity .2s ease,
    visibility .2s ease,
    transform .2s ease;
}

.c-page-top::before{
  content: "\f077";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.c-page-top.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.c-page-top:hover{
  background: var(--color-primary-dark);
}


/* =========================================================
  トップページ
========================================================= */
.p-home{
  padding: 0 0 64px 0;
}

/* =========================================================
  トップページ：メインビジュアル
========================================================= */
.home-visual{
  padding: 28px 0 0 0;
}

.home-visual__image{
  position: relative;
  overflow: hidden;
  min-height: 400px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.home-visual__image img{
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
}

.home-visual__text{
  position: absolute;
  left: 36px;
  bottom: 42px;
  z-index: 2;
  width: min(52%, 560px);
}

.home-visual__lead{
  margin: 0 0 28px 0;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: .08em;
  text-shadow: 0 1px 10px rgba(255, 255, 255, .9);
}

/* =========================================================
  トップページ：メインビジュアル リード文調整 控えめ版
========================================================= */
.home-visual__lead{
  font-weight: 600;
  text-shadow:
    0 1px 8px rgba(255, 255, 255, .95),
    0 0 2px rgba(255, 255, 255, .9);
}

.home-visual__title-box{
  display: inline-block;
  min-width: 520px;
  margin: 0 0 0 -36px;
  padding: 14px 22px 14px 36px;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(2px);
}

.home-visual__label{
  margin: 0 0 2px 0;
  color: var(--color-primary-dark);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .08em;
}

.home-visual__title{
  margin: 0 0 0 0;
  color: var(--color-primary-dark);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .04em;
}

@media (max-width: 900px){
  .home-visual{
    padding: 24px 0 0 0;
  }

  .home-visual__image{
    min-height: 0;
  }

  .home-visual__image img{
    height: 300px;
  }

  .home-visual__text{
    position: static;
    width: auto;
    padding: 18px 20px 18px 20px;
    background: rgba(255, 255, 255, .94);
  }

  .home-visual__lead{
    margin: 0 0 18px 0;
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: .04em;
    text-shadow: none;
  }

  .home-visual__title-box{
    min-width: 0;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    background: transparent;
    backdrop-filter: none;
  }

  .home-visual__label{
    font-size: 13px;
  }

  .home-visual__title{
    font-size: 23px;
  }
}

/* =========================================================
  トップページ：共通セクション
========================================================= */
.home-section{
  margin: 46px 0 0 0;
}

.home-section__head{
  position: relative;
  margin: 0 0 18px 0;
}

.home-section__label{
  margin: 0 0 3px 0;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .12em;
}

.home-section__title{
  margin: 0 0 0 0;
  padding: 10px 16px 10px 16px;
  border-left: 6px solid var(--color-primary);
  background: var(--color-bg-soft);
  color: var(--color-text);
  font-size: 24px;
  line-height: 1.5;
}

@media (max-width: 900px){
  .home-section{
    margin: 36px 0 0 0;
  }

  .home-section__title{
    font-size: 21px;
  }
}

/* =========================================================
  トップページ：TOPICS / WHAT'S NEW 告知カード
========================================================= */
.home-section__update{
  margin: 6px 0 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.home-section__more{
  margin: -8px 0 14px 0;
  text-align: right;
}

.home-section__more a{
  display: inline-flex;
  align-items: center;
  gap: .35em;
  color: var(--color-accent);
  font-size: 14px;
  line-height: 1.5;
  text-decoration: underline;
}

.home-section__more a::before{
  content: "\f14c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: .85em;
}

.home-section__more a:hover{
  text-decoration: none;
}

.home-info-list{
  display: grid;
  gap: 22px;
}

.home-info-card{
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.home-info-card__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 12px 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.home-info-card__title{
  margin: 0 0 0 0;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

/* 通常ページ内でもトップページと同じカード見出しにする */
.c-entry .home-info-card__title{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.home-info-card__meta{
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.home-info-card__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 3px 10px 3px 10px;
  border-radius: 999px;
  background: #f2a51a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.home-info-card__date{
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.home-info-card__body{
  padding: 16px 18px 18px 18px;
}

.home-info-card__body p{
  margin: 0 0 1em 0;
}

.home-info-card__body p:last-child{
  margin-bottom: 0;
}

.home-info-card__summary{
  display: grid;
  gap: 4px;
  margin: 0 0 14px 0;
}

.home-info-card__summary div{
  display: grid;
  grid-template-columns: 3.5em minmax(0, 1fr);
  gap: 8px;
}

.home-info-card__summary dt{
  color: var(--color-text);
  font-weight: 700;
}

.home-info-card__summary dd{
  margin: 0 0 0 0;
}

.home-info-card__links{
  margin: 14px 0 0 0;
  padding: 12px 18px 12px 34px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.home-info-card__links li + li{
  margin-top: 6px;
}

/* 通常ページのリスト指定を打ち消し、カード用書式を維持 */
.c-entry .home-info-card__links{
  margin: 14px 0 0 0;
  padding: 12px 18px 12px 34px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.c-entry .home-info-card__links li{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1.6;
}

.c-entry .home-info-card__links li + li{
  margin-top: 6px;
}

/* 注記リスト：現行HTMLで使用箇所未確認のため、互換保持として定義を残す */
.c-entry .c-notice-list{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}

.c-entry .c-notice-list li,
.c-entry .c-notice-list li + li{
  position: relative;
  margin: 0 0 0 0;
  padding: 0 0 0 2em;
  line-height: 1.7;
}

.c-entry .c-notice-list li + li{
  margin-top: 4px;
}

.c-notice-list__mark{
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.home-info-card__link-note{
  margin-left: 6px;
  color: var(--color-muted);
  font-size: 13px;
}

/* Word / Excel アイコン */
.a-link-word::after,
.a-link-excel::after{
  display: inline-block;
  margin-left: .35em;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.a-link-word::after{
  content: "\f1c2";
  color: #2b579a;
}

.a-link-excel::after{
  content: "\f1c3";
  color: #217346;
}

@media (max-width: 900px){
  .home-section__update{
    font-size: 13px;
  }

  .home-section__more{
    margin: -4px 0 12px 0;
    text-align: left;
  }

  .home-info-list{
    gap: 18px;
  }

  .home-info-card__head{
    display: block;
    padding: 12px 14px 12px 14px;
  }

  .home-info-card__title{
    font-size: 17px;
  }

  .c-entry .home-info-card__title{
    font-size: 17px;
  }

  .home-info-card__meta{
    margin: 7px 0 0 0;
  }

  .home-info-card__body{
    padding: 14px 14px 16px 14px;
  }

  .home-info-card__summary div{
    grid-template-columns: 3.2em minmax(0, 1fr);
  }

  .home-info-card__links{
    padding: 12px 12px 12px 28px;
  }

  .c-entry .home-info-card__links{
    padding: 12px 12px 12px 28px;
  }

  .home-info-card__link-note{
    display: inline-block;
    margin-left: 0;
  }
}

/* =========================================================
  トップページ：更新情報
========================================================= */
.home-update-list{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
  border-top: 1px solid var(--color-border);
}

.home-update-list__item{
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0 14px 0;
  border-bottom: 1px dotted var(--color-border);
}

.home-update-list__date{
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}

.home-update-list__body{
  min-width: 0;
}

.home-update-list__title{
  margin: 0 0 4px 0;
  line-height: 1.6;
}

.home-update-list__title a{
  color: var(--color-accent);
  text-decoration: underline;
}

.home-update-list__title a:hover{
  text-decoration: none;
}

.home-update-list__detail{
  margin: 0 0 0 0;
  color: var(--color-primary-dark);
  font-size: 14px;
  line-height: 1.7;
}

.home-update-list__detail a{
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.home-update-list__detail a:hover{
  text-decoration: none;
}

@media (max-width: 900px){
  .home-update-list__item{
    display: block;
    padding: 13px 0 13px 0;
  }

  .home-update-list__date{
    display: block;
    margin: 0 0 4px 0;
  }

  .home-update-list__detail{
    font-size: 13px;
  }
}

/* =========================================================
  トップページ：関連リンク
========================================================= */
.home-related{
  padding: 34px 0 0 0;
}

.home-related-card-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}

.home-related-card-list a{
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 128px;
  padding: 18px 42px 18px 18px;
  border: 1px solid var(--color-primary-dark);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(231, 245, 243, .45) 0%, #fff 62%);
  color: var(--color-text);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(6, 103, 98, .08);
  transition:
    background-color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.home-related-card-list a::after{
  content: "\f105";
  position: absolute;
  top: 20px;
  right: 18px;
  color: var(--color-primary);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  line-height: 1;
}

.home-related-card-list a[target="_blank"]::after{
  content: "\f35d";
}

.home-related-card-list a:hover{
  border-color: var(--color-primary);
  background:
    linear-gradient(180deg, var(--color-primary-light) 0%, #fff 72%);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.home-related-card__title{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 8px 0;
  color: var(--color-primary-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.home-related-card__title::before{
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 0 0 0;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(11, 127, 122, .22);
}

.home-related-card-list li:nth-child(1) .home-related-card__title::before{
  content: "\f3ed";
}

.home-related-card-list li:nth-child(2) .home-related-card__title::before{
  content: "\f1ab";
}

.home-related-card-list li:nth-child(3) .home-related-card__title::before{
  content: "\f1e0";
}

.home-related-card-list li:nth-child(4) .home-related-card__title::before{
  content: "\f19c";
}

.home-related-card__text{
  display: block;
  margin: auto 0 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 900px){
  .home-related{
    padding: 24px 0 0 0;
  }

  .home-related-card-list{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .home-related-card-list a{
    min-height: 112px;
    padding: 16px 38px 16px 16px;
  }

  .home-related-card__title{
    font-size: 16px;
  }
}

@media (max-width: 600px){
  .home-related-card-list{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
  トップページ：ページ内ジャンプボタン
========================================================= */
.home-anchor-nav{
  margin: 26px 0 0 0;
}

.home-anchor-nav__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}

.home-anchor-nav__list a{
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 14px 16px 13px 16px;
  border: 1px solid var(--color-primary-dark);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(231, 245, 243, .95) 0%, #fff 62%);
  color: var(--color-text);
  text-align: left;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(6, 103, 98, .08);
  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.home-anchor-nav__list a::before{
  grid-column: 1;
  grid-row: 1 / 3;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 17px;
  line-height: 1;
}

.home-anchor-nav__list li:nth-child(1) a::before{
  content: "\f0eb";
}

.home-anchor-nav__list li:nth-child(2) a::before{
  content: "\f1ea";
}

.home-anchor-nav__list li:nth-child(3) a::before{
  content: "\f021";
}

.home-anchor-nav__list a::after{
  content: "\f105";
  grid-column: 3;
  grid-row: 1 / 3;
  color: var(--color-primary);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.home-anchor-nav__list a:hover{
  border-color: var(--color-primary);
  box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.home-anchor-nav__title{
  grid-column: 2;
  grid-row: 1;
  display: block;
  color: var(--color-primary-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .08em;
}

.home-anchor-nav__date{
  grid-column: 2;
  grid-row: 2;
  display: block;
  margin: 5px 0 0 0;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 900px){
  .home-anchor-nav{
    margin: 20px 0 0 0;
  }

  .home-anchor-nav__list{
    gap: 10px;
  }

  .home-anchor-nav__list a{
    grid-template-columns: 34px minmax(0, 1fr) auto;
    column-gap: 9px;
    min-height: 66px;
    padding: 12px 10px 11px 10px;
  }

  .home-anchor-nav__list a::before{
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .home-anchor-nav__title{
    font-size: 14px;
    letter-spacing: .04em;
  }

  .home-anchor-nav__date{
    font-size: 11px;
  }
}

@media (max-width: 600px){
  .home-anchor-nav__list{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
  サイトマップ：区切り線
========================================================= */
.c-sitemap__divider{
  height: 1px;
  margin: 24px 0 24px 0;
  background: linear-gradient(
    90deg,
    rgba(216, 216, 216, 0) 0%,
    var(--color-border) 18%,
    var(--color-border) 82%,
    rgba(216, 216, 216, 0) 100%
  );
}


/* =========================================================
  お問い合わせフォーム
========================================================= */
.contact-form{
  margin: 24px 0 0 0;
}

.contact-form__item{
  margin: 0 0 22px 0;
}

.contact-form__label{
  display: block;
  margin: 0 0 7px 0;
  color: var(--color-primary-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form__label::before{
  content: "";
  display: inline-block;
  width: 4px;
  height: 1.1em;
  margin: 0 8px 0 0;
  background: var(--color-primary);
  vertical-align: -.15em;
}

.contact-form__control{
  width: 100%;
}

.contact-form__actions{
  margin: 28px 0 0 0;
}

.contact-note{
  margin: .5em 0 0 0;
  font-size: 95%;
  font-weight: 700;
  text-decoration: underline;
}


/* =========================================================
  フォーム部品
========================================================= */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="url"],
textarea,
select{
  max-width: 100%;
  padding: 7px 10px 7px 10px;

  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);

  font-family: inherit;
  font-size: 15px;
  line-height: 1.5;

  transition:
    border-color .2s ease,
    box-shadow .2s ease,
    background-color .2s ease;
}

input[type="text"]{
  width: 100%;
}

input[type="text"].u-width-auto{
  width: auto;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus{
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11, 127, 122, .16);
  outline: none;
}

textarea{
  width: 100%;
  min-height: 120px;
  resize: vertical;
}

select{
  cursor: pointer;
}


/* =========================================================
  フォーム：invalid
========================================================= */
input:invalid,
textarea:invalid,
select:invalid{
  border-color: var(--color-accent);
  background: #fff7f5;
  box-shadow: 0 0 0 3px rgba(201, 95, 95, .14);
}

/* フォーカス時も invalid が分かるようにする */
input:invalid:focus,
textarea:invalid:focus,
select:invalid:focus{
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 95, 95, .22);
}


/* =========================================================
  入力注意テキスト
========================================================= */
.c-input-note{
  display: block;

  margin: 1em 0 0.5em 0;
  padding: 0.3em 0.5em 0.3em 0.5em;

  border-radius: var(--radius-sm);
  background: #fff3f6;
  color: #b84f5f;

  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}


/* =========================================================
  ログインフォーム
========================================================= */
.login-form__actions{
  margin: 22px 0 0 0;
  text-align: left;
}

.c-button-login{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  min-height: 50px;
  padding: 12px 36px 12px 36px;

  border: 1px solid var(--color-primary-dark);
  border-radius: var(--radius-md);
  background: var(--color-primary);
  color: #fff;

  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;

  cursor: pointer;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

.c-button-login:hover{
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.c-button-login:focus-visible{
  outline: 3px solid rgba(11, 127, 122, .35);
  outline-offset: 3px;
}

.c-button-login:active{
  transform: translateY(0);
}


/* =========================================================
  バッジ風リンク
========================================================= */
.c-badge-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 58px;
  padding: 4px 12px 4px 12px;

  border: 1px solid var(--color-accent);
  border-radius: 999px;
  background: #fff;
  color: var(--color-accent);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;

  transition:
    background-color .2s ease,
    border-color .2s ease,
    color .2s ease,
    opacity .2s ease;
}

.c-badge-link:hover{
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
  text-decoration: none;
}


/* 削除 行 */
.clsDeleted {
  background: #eeeeee;
}


/* =========================================================
  入力必須バッジ
========================================================= */
.c-badge-required{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 0 0 8px;
  padding: 2px 8px 2px 8px;

  border: 1px solid var(--color-accent);
  border-radius: 999px;
  background: #fff3f1;
  color: var(--color-accent);

  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}


/* =========================================================
  小さめ送信ボタン
========================================================= */
.c-button-submit-small{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 86px;
  min-height: 34px;
  padding: 6px 16px 6px 16px;

  border: 1px solid var(--color-primary-dark);
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff;

  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;

  cursor: pointer;
  transition:
    background-color .2s ease,
    border-color .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

.c-button-submit-small:hover{
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.c-button-submit-small:focus-visible{
  outline: 3px solid rgba(11, 127, 122, .35);
  outline-offset: 2px;
}

.c-button-submit-small:active{
  transform: translateY(0);
}


/* =========================================================
  テキスト枠
========================================================= */
.c-text-box{
  margin: 16px 0 16px 0;
  padding: 14px 16px 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  line-height: 1.8;
}

/* 基本背景色枠：薄めのグリーン */
.c-text-box--primary{
  border-color: rgba(11, 127, 122, .28);
  background: var(--color-primary-light);
}

/* 基本背景色枠2：薄めのグレー系 */
.c-text-box--soft{
  border-color: var(--color-border);
  background: var(--color-bg-soft);
}

/* 注意枠：薄い赤・オレンジ系 */
.c-text-box--attention{
  border-color: rgba(201, 95, 95, .35);
  background: #fff3f1;
  color: var(--color-text);
}

/* 注釈枠：控えめ */
.c-text-box--note{
  border-color: #dcd6c8;
  background: #fbfaf5;
  color: var(--color-muted);
  font-size: 14px;
}

/* =========================================================
  ユーティリティ
========================================================= */
@media (min-width: 901px){
  .is-sp-only{
    display: none !important;
  }
}

@media (max-width: 900px){
  .is-pc-only{
    display: none !important;
  }
}

.u-text-left{
  text-align: left !important;
}

.u-text-center{
  text-align: center !important;
}

.u-text-right{
  text-align: right !important;
}

/* 余白調整 */
.u-m0{
  margin: 0 0 0 0 !important;
}


/* =========================================================
  強調テキスト
========================================================= */
.u-text-accent{
  display: inline-block;
  padding: 0 0 3px 0;
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.12em;
  line-height: 1.5;
}


/* =========================================================
  画像回り込み
========================================================= */
.c-float-image{
  max-width: 100%;
  margin: 0 0 22px 0;
}

.c-float-image img{
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* 画像：左寄せ */
.c-float-image--left{
  float: left;
  width: 220px;
  margin: 0 28px 22px 0;
}

/* 画像：右寄せ */
.c-float-image--right{
  float: right;
  width: 220px;
  margin: 0 0 22px 28px;
}

/* 回り込み解除 */
.c-clear{
  clear: both;
}

@media (max-width: 900px){
  .c-float-image--left,
  .c-float-image--right{
    float: none;
    width: 220px;
    max-width: 100%;
    margin: 0 0 22px 0;
  }
}


/* =========================================================
  ページ内リンク
========================================================= */
.c-page-anchor{
  margin: 0 0 28px 0;
  padding: 14px 18px 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-primary-light);
}

.c-page-anchor__title{
  margin: 0 0 10px 0;
  color: var(--color-primary-dark);
  font-weight: 700;
  line-height: 1.5;
}

.c-entry .c-page-anchor__list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 14px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}

.c-entry .c-page-anchor__list li,
.c-entry .c-page-anchor__list li + li{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1.5;
}

.c-entry .c-page-anchor__list a{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  color: var(--color-text);
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
}

.c-entry .c-page-anchor__list a::after{
  content: "\f105";
  display: inline-block;
  flex-shrink: 0;
  margin: 0 0 0 6px;
  color: var(--color-primary);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: .85em;
  line-height: 1;
}

.c-entry .c-page-anchor__list a:hover{
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* ページ内リンク：左詰め表示 */
.c-entry .c-page-anchor__list--inline{
  display: flex;
  flex-wrap: wrap;
  gap: 8px 34px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}

.c-entry .c-page-anchor__list--inline li,
.c-entry .c-page-anchor__list--inline li + li{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.c-entry .c-page-anchor__list--inline a{
  display: inline-flex;
  align-items: center;
  width: auto;
}

@media (max-width: 900px){
  .c-entry .c-page-anchor__list{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .c-entry .c-page-anchor__list{
    grid-template-columns: 1fr;
  }
}


/* ページ内リンク：4列 */
.c-entry .c-page-anchor__list--4{
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px){
  .c-entry .c-page-anchor__list--4{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .c-entry .c-page-anchor__list--4{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
  学会定款
========================================================= */
.c-statute h3{
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.c-statute-row{
  display: grid;
  grid-template-columns: 5.5em minmax(0, 1fr);
  gap: 14px;
  margin: 0 0 14px 0;
  padding: 0 0 0 0;
  list-style: none;
}

.c-statute-row > li:first-child{
  color: var(--color-primary-dark);
  font-weight: 700;
  white-space: nowrap;
}

.c-statute-row > li:last-child{
  min-width: 0;
}

.c-statute-term{
  margin: 20px 0 6px 0;
  font-weight: 700;
}

.c-statute-list{
  margin: 10px 0 0 1.5em;
  padding: 0 0 0 0;
}

.c-statute-list li + li{
  margin-top: 4px;
}

.c-statute-note{
  margin: 24px 0 0 0;
}

@media (max-width: 900px){
  .c-statute-row{
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .c-statute-row > li:first-child{
    padding: 0 0 0 0;
  }
}


/* =========================================================
  氏名一覧
========================================================= */
.c-name-grid{
  display: grid;
  gap: 8px 18px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}

.c-name-grid li{
  line-height: 1.6;
}

.c-name-grid--6{
  grid-template-columns: repeat(6, 1fr);
}

@media (max-width: 900px){
  .c-name-grid--6{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px){
  .c-name-grid--6{
    grid-template-columns: repeat(2, 1fr);
  }
}


.c-name-grid--3{
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px){
  .c-name-grid--3{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .c-name-grid--3{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
  学術集会一覧
========================================================= */
.c-conference-year{
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.c-conference-list{
  display: grid;
  gap: 18px;
}

.c-conference-card{
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
}

.c-conference-card--done{
  background: #f1f1f1;
}

.c-conference-card--done .c-conference-card__head{
  background: #e9e7df;
}

.c-conference-card__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 12px 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.c-conference-card__title{
  margin: 0 0 0 0;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

/* 通常本文のh4指定を打ち消し、カード用見出しを維持 */
.c-entry .c-conference-card__title{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  border: 0;
  background: transparent;
  color: var(--color-text);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
}

.c-conference-card__date{
  flex-shrink: 0;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.c-conference-card__body{
  padding: 16px 18px 18px 18px;
}

.c-conference-card__body p{
  margin: 0 0 .65em 0;
}

.c-conference-card__body p:last-child{
  margin-bottom: 0;
}

.c-conference-detail{
  margin: 12px 0 0 0;
}

@media (max-width: 900px){
  .c-conference-card__head{
    display: block;
    padding: 12px 14px 12px 14px;
  }

  .c-conference-card__title,
  .c-entry .c-conference-card__title{
    font-size: 17px;
  }

  .c-conference-card__date{
    display: block;
    margin-top: 4px;
  }

  .c-conference-card__body{
    padding: 14px 14px 16px 14px;
  }
}


/* =========================================================
  ファイルリンクボタン
========================================================= */
.c-entry .c-file-button-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  margin: 18px 0 24px 0;
  padding: 0 0 0 0;
  list-style: none;
}

.c-entry .c-file-button-list > li{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1.5;
}

.c-file-button{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 42px 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.c-file-button::after{
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.c-file-button--pdf::after{
  content: "\f1c1";
  color: var(--color-accent);
}

.c-file-button--word::after{
  content: "\f1c2";
  color: #2b579a;
}

.c-file-button:hover{
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ブロック表示のファイルリンクボタン */
.c-entry .c-file-button-list--block{
  grid-template-columns: 1fr;
  margin: 18px 0 24px 0;
  padding: 0 0 0 0;
  list-style: none;
}

/* ファイルリンク内の補足テキスト */
.c-file-button__note{
  display: inline-block;
  margin: 0 0 0 1.5em;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 900px){
  .c-entry .c-file-button-list{
    grid-template-columns: 1fr;
  }
}


/* =========================================================
  リンクボタン
========================================================= */
.c-link-button-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  margin: 18px 0 24px 0;
  padding: 0 0 0 0;
  list-style: none;
}

/* 通常本文のリスト指定より優先して余白と「・」を解除 */
.c-entry .c-link-button-list{
  margin: 18px 0 24px 0;
  padding: 0 0 0 0;
  list-style: none;
}

.c-entry .c-link-button-list > li,
.c-entry .c-link-button-list > li + li{
  margin: 0 0 0 0;
  padding: 0 0 0 0;
  line-height: 1.5;
}

.c-link-button-list--block{
  grid-template-columns: 1fr;
}

.c-link-button{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 42px 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--color-text);
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, color .2s ease, transform .2s ease;
}

.c-link-button::after{
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.c-link-button--external::after{
  content: "\f35d";
}

.c-link-button:hover{
  border-color: var(--color-primary);
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.c-link-button__note{
  display: inline-block;
  margin: 0 0 0 1em;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

@media (max-width: 900px){
  .c-link-button-list{
    grid-template-columns: 1fr;
  }
}

/* =========================================================
  トップページ：ページ内ジャンプボタン 色反転確認用
========================================================= */
/* 
.home-anchor-nav__list a{
  border-color: var(--color-primary-dark);
  background:
    linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(6, 103, 98, .18);
}

.home-anchor-nav__list a::before{
  background: rgba(255, 255, 255, .95);
  color: var(--color-primary-dark);
  box-shadow: none;
}

.home-anchor-nav__list a::after{
  color: #fff;
}

.home-anchor-nav__title{
  color: #fff;
}

.home-anchor-nav__date{
  color: rgba(255, 255, 255, .86);
}

.home-anchor-nav__list a:hover{
  border-color: var(--color-primary-dark);
  background:
    linear-gradient(135deg, #045b56 0%, var(--color-primary-dark) 100%);
  box-shadow: 0 8px 18px rgba(6, 103, 98, .22);
}
*/
