.eco-01 h2 {
    line-height: 1.2;
}
.eco-01 h4{
	margin-top: 45px!important;
}
.eco-01 h5{
	margin-top: 30px!important;
}

/*-----------------------*/
/* ページ内ジャンプボタン（eco-btn-in-jmp）*/
/* heatstroke.css の hs-btn-in-jmp を eco 用に定義 */
/*-----------------------*/
.eco-btn-in-jmp {
	display: -ms-grid;      /* IE用：displayも必要です */
	display: grid;
	
	/* IE10/11用 */
	-ms-grid-columns: 1fr 1fr 1fr;
	-ms-grid-rows: auto;
	
	/* モダンブラウザ用 */
	grid-template-columns: repeat(3, 1fr);
	
	/* 余白設定 */
	grid-column-gap: 20px;
	column-gap: 20px;
	grid-row-gap: 8px;
	row-gap: 8px;
	padding-left: 0;
}

.eco-btn-in-jmp .eco-col {
  width: 96%;
  margin: 1%;
}

ul.eco-btn-in-jmp > * + * {
  margin-top: 0;
}

.eco-btn-in-jmp li {
  width: auto;
  margin-right: 0;
  list-style: none;
}

.eco-btn-in-jmp a {
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  padding-inline: 40px;
  border: 1px solid var(--black, #333);
  font-weight: var(--fw-bold, 700);
  position: relative;
  text-align: center;
  color: var(--black, #333) !important;
  height: 48px;
  z-index: 1;
  font-size: 14px;
  text-decoration: none;
}

.eco-btn-in-jmp a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  opacity: 0;
  background: var(--gray-200, #e5e5e5);
  -webkit-transition: opacity 0.3s, width 0.1s;
  transition: opacity 0.3s, width 0.1s;
  -webkit-transition-delay: 0s, 0.6s;
  transition-delay: 0s, 0.6s;
  z-index: -1;
}

.eco-btn-in-jmp a::after {
  content: '';
  width: 10px;
  height: 10px;
  border-bottom: solid 2px #999;
  border-right: solid 2px #999;
  position: absolute;
  top: 40%;
  right: 15px;
  -ms-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(45deg);
}

.eco-btn-in-jmp a:hover::before {
  opacity: 1;
  width: 100%;
  -webkit-transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* .h2-subtitle は共通定義済み */
.eco-btn-in-jmp .h2-subtitle {
  display: block;
  font-size: 0.8em;
  font-weight: inherit;
}

/* レスポンシブ：〜479px 1列・縦並び */
@media (max-width: 479px) {
  .eco-btn-in-jmp {
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .eco-btn-in-jmp .eco-col {
    width: 100%;
    margin: 0;
  }
  .eco-btn-in-jmp a {
    height: auto;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 13px;
  }
}

/* レスポンシブ：480px〜766px 1列 */
@media (min-width: 480px) and (max-width: 766px) {
  .eco-btn-in-jmp {
    grid-template-columns: 1fr;
    -ms-grid-columns: 1fr;
  }
  .eco-btn-in-jmp .eco-col {
    width: 100%;
    margin: 0;
  }
  .eco-btn-in-jmp a {
    font-size: 13px;
    padding-inline: 16px;
  }
}

/* レスポンシブ：767px以上 2列（従来どおり） */
@media (min-width: 767px) {
  .eco-btn-in-jmp {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
	margin-top: 40px;
  }
  .eco-btn-in-jmp .eco-col {
    width: 48%;
    margin: 0;
  }
}

/*-----------------------*/
/* figure：上下余白（style.css の定義はそのまま） */
figure {
  margin-top: 60px;
  margin-bottom: 60px;
}
figure p{
	text-align: left;
}
h1 span{
	font-size:0.6em;
	line-height: 1.6;
}
.h1-title{
	line-height: 1.2;
}
/* h2内の注（上付き）と改行後サブタイトル（小さめ） */
.h2-note {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: inherit;
}

.h2-subtitle {
  font-size: 0.6em;
  font-weight: inherit;
}
#display-sector-area h2{
  font-size: 22px;
  margin-top: 0;/*56px*/
  border-left: none;
  padding-left: 0;
}
#display-sector-area table td{
  padding: 5px;
  font-size:14px;
}
.display-sector-area-list h2{
	font-size: 18px;
}
.display-sector-area-list h2::after{
	content: " （「関係省庁・研究機関の適応に関する取組」より自然生態系分野を抽出）"; /* ここに文字を入れる */
	font-size: 16px;
}
.display-sector-area-list table{
	margin-top:10px;
	border: 1px solid #E4E4E4;
	display: inline-block;
	overflow-y: scroll;
	height:500px;
}
/*ナビゲーションボックス*/
.navibox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 100px 0 30px;
}

/* 最終行がピックアップのとき、ナビ全体の下マージンを付けない（index など） */
.navibox:has(.navi-col--pickup) {
    margin-bottom: 0;
}

.navi-col {
    position: relative;
}

/* ナビグリッド内で1行占有。狭い画面は100％幅、768px以上は50％幅で右寄せ */
.navi-col--full {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    box-sizing: border-box;
}

/* ピックアップ枠は行いっぱいにし、内側ブロックで 2/3・右寄せ */
.navi-col--full.navi-col--pickup {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin-bottom: 0;
}

/* 生物季節モニタリング：共通。HTML では --photo または --icon のいずれかを併記 */
.navi-menu.navi-menu--phenology-pickup {
    min-height: 0;
    padding: 0;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    text-align: left;
    gap: 0;
    border-color: #098D9F;
    /* ホバー時の色と反転（通常＝やや濃い水色） */
    background: #e8f4f7;
    opacity: 1;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

/*
  写真掲載に戻すとき: --icon を --photo に、__icon を __image に差し替え、img の src を
  ../../common/images/top/pick-up-04.jpg（ページに合わせた相対パス）に。
*/
/* 掲載案（写真版）：pick-up-04.jpg・左列・768px 以上で高さ 80px */
.navi-menu--phenology-pickup--photo .navi-menu-phenology-pickup__image {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    display: block;
    flex-shrink: 0;
}

.navi-menu--phenology-pickup--photo .navi-menu-phenology-pickup__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
    display: block;
}

/* 掲載案（アイコン版）：img/h2_icon.png・768px 以上で高さ 40px */
.navi-menu--phenology-pickup--icon .navi-menu-phenology-pickup__icon {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-sizing: border-box;
}

.navi-menu--phenology-pickup--icon .navi-menu-phenology-pickup__icon img {
    width: auto;
    height: auto;
    max-width: 36px;
    max-height: 36px;
    object-fit: contain;
    object-position: center;
    border: none;
    display: block;
}

.navi-menu--phenology-pickup .navi-menu-title-r {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 右矢印（PC 時は約 45% 幅の .navi-menu に合わせるため疑似要素はメニュー側） */
.navi-menu--phenology-pickup {
    position: relative;
}

.navi-menu--phenology-pickup::after {
    content: "";
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2.5px solid #098D9F;
    border-right: 2.5px solid #098D9F;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    z-index: 3;
    box-sizing: border-box;
}

.navi-col--pickup > a:hover .navi-menu--phenology-pickup::after {
    border-top-color: #0ba8bc;
    border-right-color: #0ba8bc;
}

.navi-col--pickup > a:hover {
    transform: translateY(-2px);
}

.navi-col--pickup > a:hover .navi-menu--phenology-pickup {
    /* 通常時の色と反転（ホバー＝明るい水色・やや透過） */
    background: #f6fbfd;
    border-color: #0ba8bc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.92;
}

.navi-col--pickup > a {
    position: relative;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .navi-menu--phenology-pickup--photo .navi-menu-phenology-pickup__image {
        display: none !important;
    }

    .navi-menu--phenology-pickup--icon .navi-menu-phenology-pickup__icon {
        display: none !important;
    }

    .navi-menu.navi-menu--phenology-pickup {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 12px 24px 12px 12px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .navi-menu--phenology-pickup .navi-menu-title-r {
        display: block;
        width: 100%;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }
}

@media (min-width: 768px) {
    /* 45% は <a> に指定（親幅基準）。内側 .navi-menu は 100% で <a> に合わせる */
    .navi-col--full.navi-col--pickup .navi-menu--phenology-pickup--photo {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        height: 80px;
        min-height: 80px;
        max-height: 80px;
    }

    .navi-col--full.navi-col--pickup .navi-menu--phenology-pickup--icon {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        height: 40px;
        min-height: 40px;
        max-height: 40px;
    }

    .navi-menu--phenology-pickup--photo .navi-menu-phenology-pickup__image {
        width: min(20%, 88px);
        max-width: 88px;
        height: 100%;
        box-sizing: border-box;
    }

    .navi-menu--phenology-pickup--photo .navi-menu-title-r {
        padding: 10px 36px 10px 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: clamp(13px, 1.15vw, 16px);
        font-weight: 600;
    }

    .navi-menu--phenology-pickup--icon .navi-menu-phenology-pickup__icon {
        width: 44px;
        min-width: 44px;
        max-width: 44px;
        height: 100%;
        padding: 0 4px 0 6px;
    }

    .navi-menu--phenology-pickup--icon .navi-menu-phenology-pickup__icon img {
        max-width: 32px;
        max-height: 32px;
    }

    .navi-menu--phenology-pickup--icon .navi-menu-title-r {
        padding: 4px 32px 4px 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: clamp(12px, 1.05vw, 14px);
        font-weight: 600;
    }

    /* 行幅の 45% のみリンク領域にし、左余白ではホバーしない */
    .navi-col--pickup > a {
        width: 45%;
        max-width: 45%;
        margin-left: auto;
        box-sizing: border-box;
    }
}

@media (min-width: 960px) {
    .navi-menu--phenology-pickup--photo .navi-menu-title-r {
        padding: 12px 40px 12px 18px;
        font-size: 16px;
    }

    .navi-menu--phenology-pickup--icon .navi-menu-title-r {
        padding: 6px 36px 6px 10px;
        font-size: 15px;
    }
}

.navi-col a {
    display: block;
    text-decoration: none;
    height: 100%;
}

/* flex 子の ::after が環境によって描画されないため、矢印は <a> 側に付与 */
.navi-col:not(.navi-col--pickup) > a {
    position: relative;
    transition: transform 0.3s ease;
}

.navi-col:not(.navi-col--pickup) > a::after {
    content: "";
    display: block;
    position: absolute;
    right: 16px;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2.5px solid #2B9840;
    border-right: 2.5px solid #2B9840;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    z-index: 3;
    box-sizing: border-box;
}

.navi-col:not(.navi-col--pickup) > a:hover::after {
    border-top-color: #51A15D;
    border-right-color: #51A15D;
}

.navi-col:not(.navi-col--pickup) > a:hover {
    transform: translateY(-2px);
}

.navi-col:not(.navi-col--pickup) > a:hover .navi-menu {
    background: #EAF7DE;/*#EAF9E0 #E8F0E9*/
    border-color: #51A15D;/*#4A7350*/
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navi-menu {
    background: #fff;
    border: 2px solid #2B9840;/*#5D8A66*/
    padding: 12px 24px 12px 12px;
    text-align: center;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: visible;
}

.navi-menu-title-r {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    padding-right: 20px;
}

/* アイコン＋タイトル（生物季節モニタリングなど） */
.navi-menu--with-icon {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 2px;
    row-gap: 5px;
    padding: 9px 24px 9px 8px;
    min-height: auto;
    box-sizing: border-box;
}

.navi-menu--with-icon .navi-menu-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 50%;
}

.navi-menu--with-icon .navi-menu-title-r {
    flex: 1 1 200px;
    text-align: center;
    padding-right: 20px;
    max-width: 100%;
}

/* ナビボックス：狭い幅で1列・フォント縮小 */
@media (max-width: 767px) {
    .navibox {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .navi-menu {
        padding: 12px 24px 12px 12px;
        min-height: auto;
    }
    .navi-menu-title-r {
        font-size: 14px;
    }

    .navi-menu--with-icon {
        padding: 9px 24px 9px 6px;
        column-gap: 2px;
    }

    .navi-menu--with-icon .navi-menu-icon {
        width: 20px;
        height: 20px;
    }

    .navi-menu--with-icon .navi-menu-title-r {
        flex: 1 1 160px;
    }
}

/* タブレット以上 */
@media (min-width: 768px) {
    .navibox {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .navi-col--full:not(.navi-col--pickup) {
        width: 50%;
        max-width: 50%;
        justify-self: end;
    }
    
    .navi-menu {
        padding: 15px;
        min-height: 80px;
    }
    
    .navi-menu-title-r {
        font-size: 16px;
    }

    .navi-menu--with-icon {
        min-height: 52px;
        padding: 9px 15px 9px 8px;
        column-gap: 2px;
    }

    .navi-menu--with-icon .navi-menu-icon {
        width: 24px;
        height: 24px;
    }
}

/*事例*/
.adapt-posts{
	line-height: 1.2;
	display: flex;
	gap: 8px 2%;
	flex-wrap: wrap;
}
.adapt-posts article{
	width: 49%;
	border: 1px solid #ccc;
	display: flex;
	flex-direction: column;
	text-align: center;
	margin-top: 20px;
}

.adapt-posts a:hover{
	opacity: .6;
}
.adapt-posts a h4{
	margin-block: 0;
	padding: 10px;
	font-size: 16px;
	font-weight: normal;
	color: #000!important;
	text-align: left;
}
.adapt-posts article img{
	height: 144px;
	object-fit: contain;
	text-align: center;
}
.adapt-posts p{
    color: #999;
	margin: 0;
	line-height: 1;
	font-size: 12px;
	margin-top: auto;
	text-align: right;
	padding: 0 8px 8px 0;
}
.adapt-posts p a{
    color: #999;
}
.more-btn{
	text-align: right;
	margin-bottom: 50px;
	margin-top: 20px;
}
.more-btn a{
	background-color: #4D4D4D;/*#869BA3*/
	padding: 5px 20px;
	border-radius: 30px;
	color: #fff;
}
.more-btn-margin{
	margin-bottom: 30px;
}

@media (min-width : 920px){
.adapt-posts{
	gap: 10px 1%;
}
.adapt-posts article{
	width:24%;
}
.adapt-posts p{
	font-size:14px;
}
}

/* EbA 利点と課題（ネイチャーポジティブページと同じ書き方） */
.np-box{
	padding: 15px;
}
.np-flex-box {
	display: flex;
	flex-wrap: wrap;
	padding: 10px;
	gap: 0;
}

.np-flex-item {
	flex: 1;
	min-width: 200px;
	text-align: center;
	padding: 10px 20px;/*10px 15px*/
	margin: 0 10px 0 0;
}

.np-flex-item p {
	font-weight: 500;
	font-size: 1em;
	margin: 0;
	line-height: 1.5;
}

.j02-issue .np-flex-item {
	background-color: #DFF0FF;
}

.j02-adv .np-flex-item {
	background-color: #FFF2DF;
	margin-bottom: 20px;
}

/* 【課題】見出しの上余白のみ */
h4:has(+ .np-flex-box.j02-adv) {
	margin-top: 30px;
}

/* 【利点】【課題】768px以下で1行1項目表示 */
@media (max-width: 768px) {
	.np-flex-box {
		flex-direction: column;
	}
	.np-flex-item {
		flex: 0 0 auto;
		width: 100%;
		min-width: unset;
		margin-right: 0;
		margin-bottom: 5px;
	}
	.np-flex-item:last-child,
	.j02-adv .np-flex-item:last-child {
		margin-bottom: 0;
	}
	.j02-adv .np-flex-item {
		margin-bottom: 5px;
	}
}

.source {
	font-size: 14px;
	color: #2A2D32;
	margin-top: 0;
	line-height: 1.5;
}

.note {
	font-size: 14px;
	color: #222;
	font-style: italic;
	margin-top: 30px;
	margin-bottom: 15px;
	background-color: #eee;
	padding: 15px;
}

/* タブレット以上 */
@media (min-width: 768px) {
	.source {
		font-size: 14px;
	}
}

/* EbA 事例テーブル */
.eba-examples {
	width: 100%;
	border-collapse: collapse;
	margin: 20px 0;
	background-color: #fff;
}

.eba-examples th {
	color: #333;
	padding: 15px;
	text-align: left;
	font-weight: 700;
	font-size: 16px;
	width: 30%;
	vertical-align: top;
	border: 1px solid #ddd;
}

.eba-examples td {
	padding: 15px;
	line-height: 1.8;
	color: #333;
	border: 1px solid #ddd;
	background-color: #fafafa;
}

.eba-examples tr:hover td {
	background-color: #f0f8f0;
}
/* tbl-basic レスポンシブ（th+td の行をカード表示） */
.tbl-basic th,
.tbl-basic td {
	padding: 10px;
	}
/* tbl-basic レスポンシブ（th+td の行をカード表示） */

.tbl-basic-eco th,
.tbl-basic-eco td{
	font-size: 15px;
}
.tbl-basic-eco th{
	width: 18%;
}
.tbl-block-eco th,
.tbl-block-eco td{
	font-size:15px;
}
@media (max-width: 959px) {
	.tbl-basic,
	.tbl-basic thead,
	.tbl-basic tbody,
	.tbl-basic tr {
		display: block;
	}
	.tbl-basic tr {
		border: 1px solid #ddd;
		margin-top: -1px;
	}
	.tbl-basic tr:first-child {
		margin-top: 0;
	}
	.tbl-basic th,
	.tbl-basic td {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 7px;
		border: none;
		border-bottom: 1px solid #ddd;
		grid-template-columns: none;
		column-gap: 0;
		margin-top: 0;
	}
	.tbl-basic th {
		background: #F5F5F5;
		font-weight: 700;
		padding:5px; 
	}
	.tbl-basic td {
		background: #fff;
		padding: 5px;
	}
	.tbl-basic td:last-child {
		border-bottom: none;
	}
	.tbl-basic td::before {
		content: none;
		display: none;
	}
}

/* タブレット以下 */
@media (max-width: 767px) {
	.eba-examples th,
	.eba-examples td {
		display: block;
		width: 100%;
	}
	
	.eba-examples th {
		font-size: 15px;
		padding: 12px;
	}
	
	.eba-examples td {
		padding: 12px;
		border-top: none;
	}
	
	.eba-examples tr {
		display: block;
		margin-bottom: 15px;
		border: 1px solid #ddd;
	}
}

/* 引用 */
blockquote {
	background-color: #fff8e1;
	border: 2px solid #FFB74D;
	padding: 20px 25px;
	margin: 20px 0;
	border-radius: 8px;
	font-style: italic;
	color: #333;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

blockquote p {
	margin: 0;
	line-height: 1.8;
}

/* コラムボックス */
.column-box {
	background-color: #FFF8F7;
	border: 2px solid #FF7F6E;
	padding: 25px;
	margin: 30px 0;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.column-box h4{
	margin-top: 0!important;
}
.column-box a{
	color: #2067D1;
}

.column-title {
	color: #D64933;
	font-size: 18px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid #FFD4CC;
}
.column-content {
	color: #333;
	line-height: 1.8;
}

.column-content p {
	margin: 15px 0;
}

.column-content ul {
	margin: 15px 0;
	padding-left: 25px;
}

.column-content li {
	margin-bottom: 5px;
	line-height: 1.7;
}

.column-content figure {
	margin: 20px 0;
}

.column-content img {
	max-width: 100%;
	height: auto;
}

@media (max-width: 959px) {
	.column-content li {
		font-size: 14px;
	}
	.references-list {
		font-size: 14px;
	}
	.nature-positive-table td[rowspan] {
		background-color: #F5F5F5;
		font-weight: bold;
	}
}

.column-reference {
	font-size: 14px;
	color: #333;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #ddd;
	font-style: italic;
}

/* タブレット以上 */
@media (min-width: 768px) {
	.column-box {
		padding: 30px;
	}
	
	.column-title {
		font-size: 20px;
	}
	
	.column-reference {
		font-size: 14px;
	}
}

/* 参考文献一覧 */
.references {
	margin: 40px 0 30px;
	padding: 30px;
	/*border: 2px solid #999;*/
	border-radius: 8px;
	background-color: #f8f8f8;
	/*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);*/
}

.references h5 {
	font-size: 20px;
	/*font-weight: 700;*/
	color: #333;
	margin-top: 0;
	margin-bottom: 25px;
	/*padding-bottom: 15px;
	border-bottom: 2px solid #d0d0d0;*/
}
.references ul{
	padding-left: 20px;
}
.references-list {
	line-height: 1.5;
}

.references-list p {
	margin-bottom: 15px;
	padding-left: 0;
	color: #333;
	font-size: 14px;
	line-height: 1.6;
}
.references-list li{
	margin-bottom: 10px;                                      
	font-size: 0.9rem;
}
.references-list a {
	color: #0066cc;
	text-decoration: none;
	word-break: break-all;
}

.references-list a:hover {
	text-decoration: underline;
	color: #0052a3;
}
.references-list span{
	color: #2B2B2B;
}
/* タブレット以上 */
@media (min-width: 768px) {
	.references {
		padding: 35px 40px;
	}
	
	.references h2 {
		font-size: 26px;
	}
	
	.references-list p {
		font-size: 15px;
	}
}

/* リンク集アイテム */
.link-items {
	margin: 30px 0;
}

.link-item {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ddd;
}
.link-item ul{
	list-style-type:none;
	color: #333;
	font-size:15px;
	padding-left: 0px;
	margin-top: 0;
}
.link-item ul li{
	margin-bottom: 3px;
}
.link-item span{
	font-size:0.75em;
	color: #525252;
}
.link-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.link-image {
	flex-shrink: 0;
	width: 100%;
	max-width: 200px;
	margin: 0 auto;
}

.link-image img {
	width: 100%;
	height: auto;
	display: block;
	border: 1px solid #ddd;
	border-radius: 4px;
	object-fit: cover;
	aspect-ratio: 3 / 4;
}

.link-image--landscape {
	max-width: 200px;
}

.link-image--landscape img {
	aspect-ratio: 560 / 400;
}

.link-content {
	flex: 1;
}

.link-content h3 {
	margin-top: 0;
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: #474747;
}

.link-content h3 a {
	color: #2072E2;
	text-decoration: none;
}

.link-content h3 a:hover {
	text-decoration: underline;
}

.link-content p {
	margin: 0;
	line-height: 1.8;
	color: #333;
	font-size: 14px;
}
main h3 a {
	color: #2072E2;
	text-decoration: none;
}
main h3 a:hover {
	text-decoration: underline;
}
/* タブレット以上 */
@media (min-width: 768px) {
	.link-item {
		flex-direction: row;
		gap: 30px;
		align-items: flex-start;
	}
	.link-image {
		width: 200px;
		margin: 0;
	}

	.link-image--landscape {
		width: 200px;
	}
	
	.link-content h3 {
		font-size: 20px;
	}
	
	.link-content p {
		font-size: 15px;
	}
}
/*-----------------------*/
/* 画像＋テキスト（文章左・画像右）2カラム */
/* style.css の .report.swap.rep-col-2 / .report-body に相当 */
/* 3/4が文章、1/4が画像。960px以下で文章下に画像を縦並び */
/*-----------------------*/
.eco-report {
  --eco-report-padding: 10px;
  display: grid;
  align-items: start;
  grid-template-areas: "text image";
  grid-template-columns: 3fr 1fr;
}

/* 文章2/3・画像1/3（従来の比率を維持する場合用） */
.eco-report.eco-report--text-wide {
  grid-template-columns: 3fr 1fr;
}

/* 縦長画像2枚（eco-report__figures）用：文章1/2・画像1/2。添付CSSを継承 */
.eco-report.eco-report--figures-layout {
  grid-template-columns: 1fr 1fr;
}

.eco-report ~ .eco-report {
  margin-top: 30px;
}

.eco-report.eco-report--mt-30 {
  margin-top: 30px;
}

.eco-report figure {
  margin: initial;
  margin-top: 0;
  padding: 10px 0;
  padding-top: 0;
  grid-area: image;
}

.eco-report figcaption {
  margin: initial;
  text-align: center;
}

.eco-report figure img {
  margin-top: 0;
  max-height: 240px;
}

.eco-report__body {
  padding: 10px 0;
  padding-top: 0;
  grid-area: text;
}

.eco-report__body p {
  margin-top: 0;
}

.eco-report__body img {
  margin-top: 0;
}

/* 960px以下：文章の下に画像を縦並び。画像は中央寄せ・幅50％ */
@media (max-width: 960px) {
	.eco-report {
		grid-template-areas: "text" "image";
		grid-template-columns: 1fr;
	}
	.eco-report.eco-report--text-wide,
	.eco-report.eco-report--figures-layout {
		grid-template-areas: "text" "image";
		grid-template-columns: 1fr;
	}
	.eco-report figure {
		margin-top: 20px;
		/*width: 50%;*/
		margin-left: auto;
		margin-right: auto;
		max-width: 350px;
	}
	.eco-report figure img {
		width: 100%;
	}
	/* アマモなど特定figureのみ：960px以下で画像のmax-heightを100%に */
	.eco-figure--img-fullheight img {
		max-height: 100%;
		max-width: 350;
	}
	.eco-report.eco-report--figures-layout .eco-report__figures {
		margin-top: 20px;
		/*width: 50%;*/
		margin-left: auto;
		margin-right: auto;
		justify-content: center;
		max-width: 350px;
	}
}

@media (min-width: 481px) {
  .eco-report figure img {
    margin-top: 0;
   /*max-height: 100%;*/
  }

  .eco-report figure {
    padding: var(--eco-report-padding);
    padding-top: 0;
  }

  .eco-report__body {
    padding: var(--eco-report-padding);
    padding-top: 0;
	padding-left: 0;
  }
}

@media (min-width: 961px) {
  .eco-report {
    grid-template-columns: 3fr 1fr;
  }

  .eco-report.eco-report--text-wide {
    grid-template-columns: 3fr 1fr;
  }

  .eco-report.eco-report--figures-layout {
    grid-template-columns: 2fr 1fr; /* 画像を小さくした分、テキスト幅を広く */
  }

  /* 画像2枚レイアウト：961px以上で画像を少し小さく表示し、2枚を横並びに（他に影響なし） */
  .eco-report.eco-report--figures-layout .eco-report__figures {
    max-width: 600px; /* 2枚が横に並ぶ幅（280px×2 + gap） */
    flex-wrap: nowrap;
  }

  .eco-report.eco-report--figures-layout .eco-report__figures figure {
    max-width: 280px;
  }

  .eco-report__body {
    padding-left: 0;
  }
}

/* 文章左・複数画像右（2カラム）※ .eco-report--figures-layout 用。添付CSSを継承 */
.eco-report .eco-report__figures {
  grid-area: image;
  display: flex;
  gap: var(--eco-report-padding);
  flex-wrap: wrap;
  align-content: start;
}

/* 縦長2枚レイアウト時は添付どおり max-width・margin なし */
.eco-report.eco-report--figures-layout .eco-report__figures {
  max-width: none;
  /*margin: 0;*/
}

.eco-report .eco-report__figures figure {
  margin: 0;
  padding: 0;
  flex: 1 1 200px;
  min-width: 0;
  max-width: 458px;
}

.eco-report .eco-report__figures figcaption {
  margin: initial;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}

.eco-report .eco-report__figures img {
  max-height: 240px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 481px) {
  .eco-report .eco-report__figures figure img {
    max-height: 100%;
  }
}

/* figure-col-2：生態系ページ用（max-width 350px・480pxで横並び/縦並び） */
.figure-col-2 figure {
  max-width: 350px;
}

@media (max-width: 479px) {
  .figure-col-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .figure-col-2 figure {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .figure-col-2 figure ~ figure {
    margin-top: 0;
  }
}

@media (min-width: 480px) {
  .figure-col-2 {
    display: flex;
    justify-content: space-between;
    gap: var(--padding-20, 20px);
    flex-wrap: wrap;
    margin: 60px 80px;
  }
  .figure-col-2 figure {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .figure-col-2 figure ~ figure {
    margin-top: 0;
  }
}

/* 気候変動と生物多様性・生態系（eco-01）：調査マニュアル表紙画像のみ */
.eco-01 .eco-img--border {
  border: 1px solid #ddd;
  box-sizing: border-box;
}