@charset "UTF-8";

/* base.css */
html {
	font-size: 62.5%;
	/* 1rem = 10px */
	-webkit-text-size-adjust: 100%;
/*	overflow-x: hidden;*/
}

:root {
	/* colors */
	--c-text: #000000;
	--c-bg: #fdfdfd;
	--c-gy1: #f4f7f9;
	--c-gy2: #4B4C50;
	--c-border: #A0A4BA;

	/* font */
	--ff-base: "Noto Serif JP", serif;
	--ff-title: "Adamina", "BIZ UDMincho", "Noto Serif JP", serif;
	--ff-en: "Adamina", serif;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-bold: 700;

	/* font-size scale */
	--fs-xs: 1.2rem;
	--fs-s: 1.4rem;
	--fs-m: 1.6rem;
	--fs-l: 1.8rem;
	--fs-xl: 2.2rem;
	--fs-xxl: 2.4rem;
	--fs-xxxl: 4.8rem;

	/* line-height */
	--lh-base: 1.75;
	--lh-title: 1.416;

	/* spacing */
	--gutter: 100px;
	--container: 1240px;

	/* section spacing */
	--section-gap: 100px;
	--section-pa: 100px;
	--section-pad-y: 0px;

	/* radius / shadow */
	--radius-s: 2px;
	--radius-l: 3em;
	/* margin */
	--margin-m: 80px;

	/*	btn*/
	--btn-h: 65px;
}

@media (max-width: 1280px) {
	:root {
		--gutter: 40px;
	}
}

@media (max-width: 900px) {
	:root {
		--gutter: 16px;
		--section-gap: 72px;
		--container: 100%;
		--fs-xs: 1.2rem;
		--fs-s: 1.2rem;
		--fs-m: 1.4rem;
		--fs-l: 1.6rem;
		--fs-xl: 1.8rem;
		--fs-xxl: 2rem;
		--fs-xxxl: 3.6rem;
		--section-gap: 60px;
		--section-pa: 60px;
		--margin-m: 40px;
	}

}

/* --- ローディング画面のスタイル --- */
.loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	background-color: var(--c-gy1);
	/* サイトの背景色に合わせて変更 */
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* 読み込み完了後にクラスを付与して消す */
.loader.is-loaded {
	opacity: 0;
	visibility: hidden;
}

/* --- コンテンツのふわっとエフェクト --- */
body {
	opacity: 1;
/*	transform: translateY(20px);*/
	transition: opacity 1s ease, transform 1s ease;

}

/* 読み込み完了後に表示 */
body.is-active {
	opacity: 1;
/*	transform: translateY(0);*/
}

body {
	font-family: YakuHanMP, var(--ff-en), var(--ff-base);
	font-size: 1.6rem;
	line-height: var(--lh-base);
	color: var(--c-text);
	background: var(--c-bg);
	letter-spacing: 1px;

}

.sp {
	display: none
}

@media (max-width: 900px) {
	body {
		font-size: 1.4rem;
	}

	.sp {
		display: block
	}

	.pc {
		display: none
	}
}

p {
	margin: 0;
}

a {
	transition: .3s all;
}


::selection {
	background: rgba(0, 0, 0, .12);
}

/*component*/
.c-ttl {
	font-family: var(--ff-title);
	line-height: var(--lh-title);
}

.c-ttl--line {
	padding-bottom: .5em;
	border-bottom: 1px solid var(--c-border);

}

.c-ttl--md {
	font-size: 2.7rem;
}

@media (max-width: 900px) {
	.c-ttl--md {
		font-size: 2rem;
	}
}

.c-ttl--xxl {
	font-size: var(--fs-xxl);
	font-family: var(--ff-title);
	line-height: var(--lh-title);
}

.c-ttl--lg {
	font-size: var(--fs-xxxl);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.c-ttl__en {
	font-family: var(--ff-en);
}

.c-ttl--h2 {
	font-size: 3.7rem;
	font-family: var(--ff-en);
}

.b-gy {
	background: var(--c-gy1);
}

.cat-tip span {
	background: var(--c-gy2);
	color: #fff;
	font-size: var(--fs-xs);
	padding: 2px 6px;
	display: inline-block;
	border-radius: var(--radius-s);
}

/* =========================
Buttons (3 variants)
========================= */
.c-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-inline: auto;
	font-family: var(--ff-base);
	position: relative;
	transition: background .25s ease, color .25s ease, border-color .25s ease;
	font-size: var(--fs-l);
}

.c-btn--outline {
	width: min(560px, 90%);
	height: var(--btn-h);
	border: 1px solid currentColor;
	border-radius: var(--radius-s);
	background: transparent;
	color: var(--c-gy2);
	background: #fff
}

.c-btn--outline:hover {
	background: var(--c-gy2);
	color: #fff;
	border-color: var(--c-gy2);
}

.c-btn--txtlink {
	border-bottom: 1px solid currentColor;
	padding: 0 0 .5em;
	width: max-content;
	margin: 0 0 0 auto;
}

.c-btn__icon {
	transition: transform .25s ease;
}

.c-btn:hover .c-btn__icon {
	transform: translateX(3px);
}

.c-icon-arrow {
	width: 30px;
	height: 30px;
	display: block;
	transition: transform .3s ease;
	transform-origin: center;
	transition: transform .6s cubic-bezier(.65, 0, .35, 1);
}

.c-btn__label {
	display: flex;
	gap: 10px
}

.c-btn__label.amazon img {
	width: 82px;
	margin-top: 8px;
}

.c-btn__label.rakutenbook img {
	width: 134px;
	margin-top: 3px;
}

.c-btn__gy {
	background: var(--c-gy2);
	color: #fff
}

.c-btn__gy:hover {
	background: #fff;
	color: var(--c-gy2);
}

.c-btn__wh:hover {
	background: var(--c-gy2);
	color: #fff
}
.l-section__foot.to-back .c-btn--outline{
	    width: min(310px, 90%);
}
.l-section__foot.to-back .c-btn{
	margin: 0 auto 0 0;
}
.l-section__foot.to-back .c-btn__icon{
	transform: rotate(180deg);
}
.c-count-bracket {
	margin-left: 6px;
	font-size: 0.8em;
	opacity: .6;
}

.i-circle,
.i-arrow {
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.i-circle {
	stroke-width: 2;
	stroke-dasharray: 3 5;

}

.i-arrow {
	stroke-width: 1.5;
	transform-origin: 24px 24px;
	transform-box: fill-box;
	transition: transform .25s cubic-bezier(.4, 0, .2, 1);
}

.main {
	padding-top: var(--margin-m);
	padding-bottom: var(--margin-m);
}

.l-flex__column_s,
.l-flex__column_sm,
.l-flex__column_m {
	display: flex;
	flex-direction: column;
}

.l-flex__column_s {
	gap: 40px
}
.l-flex__column_sm {
	gap: 60px
}
.l-flex__column_m {
	gap: 100px
}


@media (max-width: 900px) {
	.l-flex__column_s {
		gap: 20px
	}
.l-flex__column_sm {
	gap: 40px
}
	.l-flex__column_m {
		gap: 60px
	}
	.l-section__foot.to-back .c-btn{
		margin: 0 auto;
	}
}

.new-mark {
	position: absolute;
	top: 0;
	left: 0;
	padding: 4px 10px;
	color: #fff;
	font-size: 12px;
	width: 75px;
	height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #961C1C;
}
@media (max-width: 900px) {
	.new-mark {
		    font-size: 10px;
    width: 45px;
    height: 45px;
	}
}

/*モーダル*/
/*
.open-btn {
  background-color: #f7d96b;
  color: #5b370d;
  padding: 0.8rem 1.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}


body.is-fixed {
  position: fixed;
  width: 100%;
  left: 0;
}
*/

/* モーダル全体 */
.open-btn {
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 800px);
	    height: 80vh;
    overflow-y: auto;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%) scale(0.96);
  transition: transform 0.25s ease;
}

.modal.is-open .modal__content {
  transform: translate(-50%, -50%) scale(1);
}

.modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #fff;
	width: 30px;
	height: 30px;
	background: rgba(0, 0, 0, 0.19);
	border-radius: 2px;
z-index: 3
}


/* スクロール位置固定用 */
body.is-locked {
  position: fixed;
  left: 0;
  width: 100%;
}
/* =========================
header
========================= */
.l-header {
	border-bottom: 1px solid var(--c-border);
}

.l-header__inner {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 30px 5%;

}

.l-header__logo {
	height: 40px;
	display: block;
}

/* nav list */
.l-gnav {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px
}

.l-spgnav {
	position: fixed;
	top: 0;
	right: 0;
	/* 画面右端を基準にする */
	width: 100%;
	height: 100dvh;
	background: var(--c-gy1);
	z-index: 1500;

	/* 隠すとき：右側に移動して透明にする */
	transform: translateX(100%);
	opacity: 0;
	visibility: hidden;
	/* クリックも無効化する */

	transition: all 0.4s ease;
	overflow-y: auto;
	padding: 80px 5% 50px;
	box-sizing: border-box;
}

.l-spgnav .pn-btnwrap .btn a {
	border: 1px solid var(--c-border);
}

.l-spgnav.is-open {
	transform: translateX(0);
	/* 0の位置（画面内）に戻す */
	opacity: 1;
	visibility: visible;
}

.m-hamburger {
	position: relative;
	width: 40px;
	height: 40px;
}

.m-hamburger .ph {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
	font-size: 28px;
	color: #000
}

/* 通常時：Xを透明にして小さくしておく */
.m-hamburger .ph-x {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.5);
	font-size: 16px;
	    color: var(--c-border);
}

/* Open時：ドットを透明にして小さく、Xを不透明にして等倍に */
.m-hamburger.is-active .ph-dots-three {
	opacity: 0;
	transform: translate(-50%, -50%) scale(0.5);
}

.m-hamburger.is-active .ph-x {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

.p-gnav__top {
	display: flex;
	gap: 4px
}

.p-gnav__top a {
	font-size: 11px;
	padding: .7em 1em;
	line-height: 1;
	border: 1px solid var(--c-gy2);
	border-radius: 3em;
}

.l-gnav__list {
	display: flex;
	align-items: center;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.l-gnav__list a {
	text-decoration: none;
	color: inherit;
	font-size: var(--fs-l);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 0;
}

.l-gnav__list .nav-anthro {
	margin-left: auto;
	padding-left: 1em;
	border-left: 1px solid var(--c-border);
}

.l-gnav__list .nav-anthro .sub-menu {
	min-width: 300px;
	padding: 20px;
}

/* 親メニューのテキスト横にスペースを作る */
.l-gnav__list .menu-item-has-children > a {
	position: relative;
	padding-right: 18px;
}

.l-gnav__list .menu-item-has-children > a::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	/* アイコン全体の幅 */
	height: 11px;
	/* アイコン全体の高さ */
	/* ここから「＋」の横棒 */
	background-image: linear-gradient(to right, currentColor 100%, transparent 100%);
	background-size: 100% 1px;
	/* 横棒の太さ */
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.3s ease;
}

.l-gnav__list .menu-item-has-children > a::before {
	content: "";
	position: absolute;
	right: 5px;
	/* (12px - 2px) / 2 = 5px で中央配置 */
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	/* 縦棒の太さ */
	height: 11px;
	/* 縦棒の長さ */
	background-color: currentColor;
	transition: all 0.3s ease;
	z-index: 1;
}

/* ホバー時に「－」にする（縦棒を消す/縮める） */
.l-gnav__list .menu-item-has-children:hover > a::before {
	height: 0;
	opacity: 0;
}

/* オプション：ホバー時に少し回転させるとよりリッチになります */
.l-gnav__list .menu-item-has-children:hover > a::after {
	transform: translateY(-50%) rotate(180deg);
}

/* dropdown */
.l-gnav__list li {
	position: relative;
}

.l-gnav__list .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	min-width: 180px;
	padding: 10px 0;
	margin: 8px 0 0;
	list-style: none;
	background: #fff;
	/*	border: 1px solid var(--c-border);*/
	box-shadow: 0 8px 24px rgba(0, 0, 0, .08);

	opacity: 0;
	visibility: hidden;
	transform: translateY(6px);
	transition: .2s ease;
	z-index: 1000;
	padding: 20px
}

.l-gnav__list .sub-menu a {
	display: block;
	padding: .5em 34px .5em 0;
	white-space: nowrap;
	font-size: var(--fs-s);
	position: relative
}

.l-gnav__list .sub-menu a:hover {
	text-decoration: underline
}

.l-gnav__list .sub-menu a:after {
	content: '';
	background: url(../../assets/images/icon-circlelink.svg)no-repeat;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 0;
	top: .5em;

}

.l-gnav__list .nav-anthro .sub-menu li.is-intro a:after {
	display: none
}

/* hoverで開く */
.l-gnav__list li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* ボタンのベース */
.m-hamburger {
	display: none;
	position: relative;
	z-index: 2000;
	width: 34px;
    height: 34px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	    border: 1px solid var(--c-border);
    border-radius: 50%;
}

/* 3本線の共通スタイル */
.m-hamburger span,
.m-hamburger span::before,
.m-hamburger span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #333;
	/* 線の色 */
	transition: all 0.3s ease;
}

/* 3本線の配置 */
.m-hamburger span {
	top: 11px;
}

/* 真ん中の線 */
.m-hamburger span::before {
	top: -9px;
}

/* 上の線 */
.m-hamburger span::after {
	top: 9px;
}

/* 下の線 */

/* --- OPEN時のスタイル --- */
.m-hamburger.is-active span {
	background-color: transparent;
	/* 真ん中の線を消す */
}

.m-hamburger.is-active span::before {
	top: 0;
	transform: rotate(45deg);
	/* 上の線を傾ける */
}

.m-hamburger.is-active span::after {
	top: 0;
	transform: rotate(-45deg);
	/* 下の線を傾ける */
}

/* ドロップダウンメニュー全体のグリッド設定 */
.l-gnav__list .nav-anthro .sub-menu {
	min-width: 650px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	padding: 30px;
	box-sizing: border-box;
	/* paddingを含めてサイズ計算 */
	overflow-x: hidden;
	/* はみ出しを隠す */
}

.l-gnav__list .nav-anthro .sub-menu a {
	word-wrap: break-word;
	overflow-wrap: break-word;
	box-sizing: border-box;
	overflow-x: hidden;
	width: 100%;
	white-space: normal;
}

.l-gnav__list .nav-anthro .sub-menu li {
	width: 100%;
}

/* 1. 説明文用のカスタムリンク（is-intro）を全幅にする */
.l-gnav__list .nav-anthro .sub-menu li.is-intro {
	grid-column: 1 / -1;
	border-bottom: 1px solid #eee;
	padding-bottom: 20px;
	margin-bottom: 10px;
	word-wrap: break-word;
	/* 長い単語でも折り返す */
	overflow-wrap: break-word;
	/* 最近のブラウザ用 */
	width: 100%;
	/* 枠内に収める */
}

.l-gnav__list .nav-anthro .sub-menu li.is-intro a {
	pointer-events: none;
	/* 説明文なのでクリック不可にする場合 */
}

.l-gnav__list .nav-anthro .sub-menu li.is-intro .menu-child-desc {
	display: block;
	font-size: 13px;
	color: #333;
	line-height: 1.8;
	white-space: normal;
	/* 折り返しを許可 */
	max-width: 100%;
	/* 親要素の幅を超えない */
}

/* 2. 通常の子要素（アイキャッチ付き） */
.menu-thumbnail {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	margin-bottom: 10px;
	display: block;
	border-radius: var(--radius-s)
}

.menu-child-desc {
	display: block;
	font-size: 11px;
	color: #888;
	margin-top: 4px;
}

/* スマホ時のみ表示 */
@media (max-width: 900px) {
	.m-hamburger {
		display: block;
	}

	.l-gnav {
		display: none;
	}

	.l-header__logo {
		height: auto;
		width: min(190px, 74%);
	}
}

/* 背景スクロール防止用の補助クラス */
.u-noscroll {
	overflow: hidden;
}

/* SPは後で（ひとまずPCのみ） */
@media (max-width: 900px) {
	.l-gnav__list {
		gap: 16px;
	}
	.l-header__inner {
    align-items: center;
    padding: 20px 5%;
}
}

/* =========================
helo
========================= */

.p-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 520px;
	grid-template-areas:
		"ttl ttl img"
		"lead lead img";
	gap: 20px;
	align-items: center;
	margin-bottom: var(--margin-m);
}

/* 各エリア */

.p-hero__ttl {
	grid-area: ttl;
	align-self: end;
	margin-bottom: 20px;
}

.p-hero__lead {
	grid-area: lead;
	font-size: var(--fs-l);
	line-height: 2;
	font-family: var(--ff-title);
}

.p-hero__profile {
	grid-area: profile;
}

.p-hero__name {
	font-size: var(--fs-xl);
	font-family: var(--ff-title);
}

.p-hero__meta {
	margin-bottom: 1.65em
}

.p-hero__career {
	padding-left: 1.65em;
	border-left: 1px solid var(--c-border);
	font-size: var(--fs-xs);
}

.p-hero__img {
	grid-area: img;
	margin: 0;
	aspect-ratio: 3 / 4;
	overflow: hidden;
}

.p-hero__img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	aspect-ratio: 3 / 4;
}

@media (max-width:1419px) {

	.p-hero__grid {

		grid-template-areas:
			"ttl ttl img"
			"lead lead img"

	}

}

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

	.p-hero__grid {
		gap: 40px;
		grid-template-columns: 1fr;
		grid-template-areas:
			"img"
			"ttl"
			"lead"
			"profile"
			;
		padding: 0 2%;

	}

	.p-hero__ttl {
		width: min(240px, 90%);
	}

	.p-hero__lead {
		font-size: 1.4rem
	}

	.p-hero__img {
		aspect-ratio: 3.5 / 4;
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}

}

/* =========================
news
========================= */
.p-news .l-section__body {
	display: flex;
	flex-direction: column;
	gap: 40px
}

.category-list {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.category-list__name {
	padding-right: 1em;
	border-right: 1px solid #000;
	margin-right: 1em;
	padding: 5px 16px;
}

.pickup-new {
	padding-bottom: 40px;

}

.pickup-new__body {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
	gap: 10px
}

.pickup-new__meta_wrap {
	justify-content: space-between;
	align-items: flex-end;
}

.pickup-new__link {
	display: grid;
	grid-template-columns: 370px 1fr;
	gap: 40px;
	align-items: start;
	text-decoration: none;
	color: inherit;
}

.pickup-new__thumb {
	margin: 0;
	position: relative
}

.pickup-new__img {
	width: 100%;
	height: auto;
	display: block;
}

.pickup-new__ttl {
	font-size: clamp(20px, 2.4vw, 32px);
	line-height: 1.3;
	margin: 0 0 16px;
}

.pickup-new__meta {
	display: flex;
	gap: 12px;
	font-size: 12px;
	align-items: center;
}

.pickup-new__more {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
}

.news-slider {
	position: relative;
	border-top: 1px solid var(--c-border);
	padding-top: 40px
}

.news-slider .swiper {
	/*	margin-right: calc(50% - 50vw);*/
	margin: 0 70px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 17px;
	height: 90px;
}


.swiper-pagination-bullet {
	width: 5px;
	/* ドットのサイズ */
	height: 5px;
	background: #4B4C50;
	/* ドットの色 */
	opacity: 1;
	/* デフォルトの透過を解除 */
	margin: 0 !important;
	/* gapで制御するためマージンをリセット */
	position: relative;
	transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
	background: #4B4C50;
}

.swiper-pagination-bullet-active::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 23px;
	height: 23px;
	border: 1px solid #4B4C50;
	/* 外枠の線の太さと色 */
	border-radius: 50%;
}

.news-slider__btn.js-news-prev,
.news-slider__btn.js-news-next {
	height: 50px;
	width: 50px;
	border: none;
}

.news-slider__btn.js-news-prev::after,
.news-slider__btn.js-news-next::after {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	height: 50px;
	width: 50px;
	margin: auto;
	display: block
}

.news-slider__btn.js-news-prev::after {
	background-image: url(../../assets/images/arrow-prev.svg);

}

.news-slider__btn.js-news-next::after {
	background-image: url(../../assets/images/arrow-next.svg);
}

.news-slider__btn.js-news-next.swiper-button-disabled,
.news-slider__btn.js-news-prev.swiper-button-disabled {
	opacity: .2
}

.news-slider__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
	position: absolute;
	z-index: 3;
	width: 100%;
	top: 30%;
}


.news-slider__btn {
	width: 44px;
	height: 44px;
	border: 1px solid #ddd;
	background: transparent;
	cursor: pointer;
}

.news-card__header{
	margin-bottom: 8px;
	display: flex;
	gap:8px;
	align-items: center
}
.news-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.news-card__thumb {
	margin: 0 0 12px;
}

.news-card__img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.news-card__ttl {
	font-size: 16px;
	line-height: 1.5;
	margin: 0 0 10px;
	min-height: 3em
}

.news-card__meta_wrap {
	justify-content: space-between;
	display: flex;
	align-items: end;
}

.news-card__meta {
	display: flex;
	gap: 3px;
	font-size: 12px;
	flex-direction: column;
	min-height: 6em;
	    width: calc(100% - 30px);
}

.news-card__icon {
	display: inline-flex;
	margin-top: 10px;
}
.news-card__icon .c-icon-arrow{
	width: 50px;
	height: 50px
}

.news-card__cat span {
	display: inline-block;
	font-size: 10px;
	padding: 3px 8px;
	border-radius: var(--radius-s);
	border: 1px solid #3e3e3e;
	background: rgba(62, 62, 62, 0.12);
	color: #3e3e3e;
}
.news-card__date{
	font-size: var(--fs-xs);
	opacity: .7
}
.news-card__excerpt{
	font-size: var(--fs-xs);
	opacity: .7;
	margin-bottom: 14px
}
.news-card__venue{
	font-size: var(--fs-s);
}
.cat-project span {
	border: 1px solid #A77134;
	background: rgba(167, 113, 52, 0.12);
	color: #A77134;
}

.cat-note span {
	border: 1px solid #54928D;
	background: rgba(84, 146, 141, 0.12);
	color: #54928D;
}

.cat-event span {
	border: 1px solid #4A762D;
	background: rgba(74, 118, 45, 0.12);
	color: #4A762D;
}

.cat-coverage span {
	border: 1px solid #313874;
	background: rgba(49, 56, 116, 0.12);
	color: #313874;
}

/* ===== category pill UI ===== */

.category-list__track {
	position: relative;
	display: inline-block;
}

.category-list__items {
	position: relative;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	flex-wrap: wrap;
	overflow: hidden;
}

/* pill本体 */
.category-list__pill {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	border-radius: var(--radius-s);
	background: #111;

	width: 0;
	height: 0;
	transform: translate(0, 0);

	transition: transform .35s cubic-bezier(.2, .8, .2, 1),
		width .35s cubic-bezier(.2, .8, .2, 1);
}

.category-list__link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: var(--radius-s);
	background: transparent;
	border: 1px solid #ddd;
	font-size: var(--fs-xs);
	text-decoration: none;
	color: #111;
	transition: color .25s ease, background .25s ease;
}
@media (max-width: 900px) {
	.category-list__link {
		font-size: 1rem
	}
	.news-card__ttl{
		min-height: auto;
	}
	.pickup-new__meta_wrap{
		align-items: flex-start
	}
}
.category-list__link.is-active {
	color: #fff;
	border-color: #111;
}

/* 2行になったらpillを使わず、activeを塗りにする（保険） */
.category-list__items.is-wrapped .category-list__pill {
	display: none;
}

.category-list__items.is-wrapped .category-list__link.is-active {
	background: #111;
	color: #fff;
}

#js-news-content {
	transition: opacity .25s ease, transform .25s ease;
}

#js-news-content.is-fading {
	opacity: 0;
	transform: translateY(6px);
}

/* SP */
@media (max-width: 900px) {
	.pickup-new{
		border-bottom: none
	}
	.pickup-new__link {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.pickup-new__body {
		gap: 10px
	}

	.news-slider .swiper {
		margin: 0;
		margin-right: calc(50% - 50vw);
		*/
	}

	.news-slider__nav {
		display: none
	}

	.c-ttl--h2 {
		font-size: 2rem
	}

	.news-slider {
		margin-top: 0;
	}

}


/*著書*/
.p-publications__pickup-inner {
	display: flex;
}

.p-publications__pickup-inner > * {
	width: 50%;
}

.p-publications__kv {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 50px;
	align-items: center;
	justify-content: center;
}

.p-publications__cover_wrap {
	position: relative;
	width: min(294px, 90%);
}

.p-publications__cover {
	box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
}

.p-publications__pickup-right {
	padding: 50px;
	align-items: center;
	justify-content: center;
	background: #fff;
}

.p-publications__pickup-right .c-ttl--h2,
.p-publications__pickup-right .c-ttl--xxl {
	width: 100%
}

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

.p-publication__cover {
	position: relative
}

.p-publication__block .c-ttl {
	margin-bottom: 20px
}

.publication-card {
	background: #fff;
}

.publication-card a {
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: start;
	height: 100%
}

.publication-card__body {
	padding: 18px 24px;

}

.publication-card__cat,
.publication-card__title {
	margin-bottom: 10px
}

.publication-card__thumb {
	position: relative;
	padding: 30px;
	height: 100%;
}

.publication-card__img {
	width: 100%;
	height: auto;
	box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
	aspect-ratio: 700 / 1024;
	object-fit: cover;
}

.publication-card__badge {
	position: absolute;
	top: -2em;
	left: -2em;
	padding: 4px 10px;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
	width: 6em;
	height: 6em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.publication-card__meta {
	font-size: 1.1rem;
	opacity: .6;
	font-weight: 600;
	font-family: sans-serif;
}

#js-pubs-content {
	transition: opacity .25s ease, transform .25s ease;
}

#js-pubs-content.is-fading {
	opacity: 0;
	transform: translateY(6px);
}

.p-pubs-filter {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.p-pubs-filter__label {
	padding-right: 1em;
	border-right: 1px solid #000;
	margin-right: 1em;
	padding: 5px 16px;
}

.p-pubs-filter__track {
	position: relative;
	display: inline-block;
}

.p-pubs-filter__items {
	position: relative;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	overflow: hidden;
}

.p-pubs-filter__pill {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 0;
	height: 0;
	border-radius: 2px;
	background: var(--c-gy2);
	transition: transform .35s cubic-bezier(.2, .8, .2, 1), width .35s cubic-bezier(.2, .8, .2, 1);
}

.p-pubs-filter__link {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	padding: 5px 12px;
	border-radius: var(--radius-s);
	background: transparent;
	border: 1px solid #ddd;
	font-size: var(--fs-xs);
	text-decoration: none;
	transition: color .25s ease, background .25s ease;
}

.p-pubs-filter__link.is-active {
	color: #fff;
	border-color: var(--c-gy2);
}

.p-pubs-filter__items.is-wrapped .p-pubs-filter__pill {
	display: none;
}

.p-pubs-filter__items.is-wrapped .p-pubs-filter__link.is-active {
	background: var(--c-gy2);
	color: #fff;
}

/*p-publication-single*/
.p-publication-single__header {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	position: relative
}
.p-publication-single__header .p-publications__kv{
	margin-bottom: 30px
}
.p-publications__single-left {
	position: sticky;
	top: 0;
	align-self: start;
}

.p-publications__single-right {
	padding: 0 0 0 50px;
	display: flex;
	gap: 20px;
	flex-direction: column;
}

.p-publications__single-right iframe {
	width: 100%
}

.p-publication__buy {
	display: flex;
	gap: 10px;
	flex-direction: column;
	width: min(430px, 100%);
	margin: 0 auto;
}

.p-publication__gap {
	display: flex;
	gap: 20;
	flex-direction: column;
}

.p-publication__awards {
	font-size: 2rem
}

.p-publication__title {
	font-size: 4.2rem
}

.p-publication__row {
	display: flex;
}

.p-publication__row dt {
	width: 120px;
	padding-right: 1em;
	border-right: 1px solid var(--c-border);
}

.p-publication__row dd {
	width: calc(100% - 120px);
}
.p-publication__reviews{
	display: flex;
	flex-direction: column;
	gap:40px;
}
.p-publication__reviewText{
	padding: 0 45px;
	position: relative;
	margin-bottom: 20px
}
.p-publication__reviewName{
	padding-left:45px;
	font-size: 1.4rem
}
.p-publication__reviewText:before,
.p-publication__reviewText:after{
	position: absolute;
	font-size: 70px;
	color: #d5dce1;
	line-height: 1;
}
.p-publication__reviewText:before{
	    content: '“';
    top: 0;
    left: 0;
}
.p-publication__reviewText:after{
	    content: '”';
    bottom: -37px;
    right: 0;
}
.p-publication__text.p-entry__content h3{
	    padding-bottom: .5em;
    border-bottom: 1px solid var(--c-border);
	    font-size: 2.7rem;
	font-family: var(--ff-title);
}
.p-publication__text.p-entry__content a{
	text-decoration: underline;
	font-weight: bold;
}
.p-publication__text.p-entry__content a:hover{
	background: var(--c-gy2);
	color: #fff;
	text-decoration: none;
}
.p-top-publications__layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-bottom: 80px
}

.p-top-publications__left,
.p-top-publications__left .p-publications__kv {
	height: 100%;
}

.p-top-publications__right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.p-top-publications__grid {
	display: grid;
	gap: 24px;
}

.p-top-publications__layout .l-section__head {
	margin-bottom: 30px
}

.p-intro {
	margin-bottom: 30px
}

.p-top-publications__left .c-btn--txtlink {
	margin: 0 auto
}
.p-publication__other-catList{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.p-publication__other-catLink{
  display:inline-flex;
  align-items:center;
  padding:8px 1em;
  border:1px solid var(--c-gy2);
  border-radius:2px;
  text-decoration:none;
  color:#fff;
  transition:.25s ease;
	background: var(--c-gy2);
	font-size: var(--fs-s)
	
}

.p-publication__other-catLink:hover{
  background:#fff;
  color:var(--c-gy2);
}


@media (max-width: 900px) {
	.p-publication-single.main {
		padding-top: 0;
	}

	.p-publication-single .l-inner {
		width: 100%
	}

	.p-top-publications__layout,
	.p-publication-single__header {
		grid-template-columns: 1fr;
	}

	.p-publications__name {
		order: 1;
		margin-bottom: 10px
	}

	.p-publications__cover_wrap {
		order: 2;
		width: min(184px, 50%);
	}

	.p-publications__meta {
		order: 3
	}

	.p-top-publications__pickupLink .c-btn--outline {
		order: 4
	}

	.p-publications__single-right {
		padding: 0 5%
	}

	.p-publications__single-left {
		position: initial;
	}

	.p-publication__awards {
		font-size: 1.4rem;
	}

	.p-publication__title {
		font-size: 2.4rem;
	}

	.publication-card__cat,
	.publication-card__title {
		margin-bottom: 0;
	}

	.p-publication__row dd {
		margin-left: 16px
	}

	.p-publications__kv {
		padding-right: 5%;
		padding-left: 5%;
	}

	.p-publications__grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 16px
	}

	.p-publication__dl {
		font-size: 1.2rem;
		opacity: .7;
	}

	.publication-card a {
		grid-template-columns: 100px 1fr;
	}

	.publication-card__thumb {
		padding: 20px 5px;
		height: auto;
	}

	.cat-tip span {
		font-size: 1rem
	}

	.publication-card__body {
		padding: 16px
	}

	.publication-card__title {
		font-size: 1.6rem;
		display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
	}

	.p-publications__archive.l-flex__column_s,
	.p-publication__other-cat.l-flex__column_s{
		padding: 0 5%;
		width: 100%
	}

	.publication-card__meta {
		display: none
	}

	.publication-card__body {
		position: relative;
		height: 100%
	}

	.publication-card__body .c-btn--txtlink {
		position: absolute;
		bottom: 16px;
		right: 16px;
	}

	.publication-card__body .publication-card__cat {
		margin-bottom: 10px
	}

	.p-publication-related-news {
		padding: 0 5%
	}
	.p-publications__pickup-inner{
		flex-direction: column;
	}
	.p-publications__pickup-inner > *{
		width: 100%
	}
	.p-publications__pickup-right{
		padding: 40px 5%
	}
	.p-pubs-filter__label{
		display: none
	}
	.p-pubs-filter__link{
		font-size: 1rem
	}
	.p-publications .c-ttl--h2{
		font-size: 3rem
	}
	.p-publication__text.p-entry__content h3{
		font-size: 2rem
	}
}

/*footer*/
.p-footer {
	background: var(--c-gy2);
	color: #fff;
	padding: var(--section-pa) 0 30px;
}

.p-footer .p-navigation {
	margin-bottom: 80px
}

.p-footer small {
	text-align: right;
	font-size: 10px;
	width: 100%;
	display: block;
}

.p-navigation {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.p-navigation a:hover {
	opacity: .8
}

.p-navigation .l-section__head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.pn-btnwrap {
	display: flex;
	gap: 8px;
	flex-direction: column;
	justify-content: flex-end;
	align-items: end;
}

.pn-btnwrap .btn a {
	padding: .7em .7em .7em 1.6em;
	line-height: 1;
	border: 1px solid #fff;
	border-radius: 3em;
	display: flex;
	gap: 8px;
	align-items: center;
	justify-content: space-between;
}

.pn-btnwrap .btn a:hover {
	background: #000;
}

.p-navigation__ttl {
	font-size: 21px;
	line-height: 25px;
	font-family: var(--ff-en);
	min-width: 5em;
}

.l-section__body {
	display: flex;
	gap: 10vw
}

.p-navigation__left {
	display: flex;
	gap: 40px;
	width: min(540px, 100%);
}
.p-navigation__left.header-sp-block{
	display: none
}

.p-navigation__catlist {
	list-style: none;
	padding: 0;
	margin: 0;
	width: min(300px, 100%);
}

.p-navigation__catlist li {
	margin-bottom: 16px;
	/* 各行の隙間 */
}

.p-navigation__catlist a {
	display: flex;
	/* Flexboxで横並び */
	align-items: baseline;
	/* ベースラインで揃える */
	text-decoration: none;
	font-size: 14px
}

.p-navigation__catlist a::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #888;
	margin: 0 15px;
	position: relative;
	bottom: 4px;
}

.p-navigation__catlist .ttl {
	order: 1;
}

.p-navigation__catlist a::after {
	order: 2;
}

.p-navigation__catlist .count {
	order: 3;
	font-variant-numeric: tabular-nums;
}

.p-navigation__menulist {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.p-navigation__menulist li {
	align-items: flex-start;
}

.p-navigation__submenulist {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	font-size: 13px;
	width: calc(100% - 15em);
}

.p-navigation__submenulist li {
	position: relative;
	padding: 0 1em 0 0
}

.p-navigation__submenulist li:not(:last-child):after {
	content: '/';
	position: absolute;
	right: 0;
	top: 0
}

.p-navigation__menulist li.sns .p-navigation__submenulist {
	font-size: 30px
}

.p-navigation__menulist li.sns .p-navigation__submenulist li {
	padding: 0
}

.p-navigation__menulist li.sns .p-navigation__submenulist li:not(:last-child):after {
	display: none
}

.p-footer .p-navigation__menulist li.top {
	display: none
}

@media (max-width: 900px) {
	.p-footer {
		padding-top: 80px
	}

	.p-navigation .l-section__body {
		gap: 20px;
		flex-direction: column;
	}

	.p-navigation__submenulist {
		width: 100%
	}

	.p-navigation__menulist li {
		gap: 8px;
	}

	.p-navigation__ttl {
		font-size: 16px;
		line-height: 19px;
	}

	.p-navigation__submenulist li {
		color: #a7a7a7
	}

	.p-navigation__menulist li.sns .p-navigation__submenulist li {
		color: #fff
	}

	.p-navigation__catlist a {
		font-size: 11px
	}

	.p-footer small {
		text-align: center;
	}

	.pn-btnwrap {
		flex-direction: row-reverse;
	}

	.p-navigation .l-section__head {
		flex-direction: column;
		gap: 40px;
	}

	.l-spgnav .p-navigation__menulist li.sns .p-navigation__submenulist li {
		color: var(--gy2);
		
	}

	.l-spgnav .pn-logo {
		display: none
	}

	.l-spgnav .p-navigation {
		flex-direction: column-reverse;
	}

	.l-spgnav .p-navigation .l-section__body {
		flex-direction: column-reverse;
	}

	.l-spgnav .pn-btnwrap {
		flex-direction: row-reverse;
		width: 100%;
	}

	.l-spgnav .pn-btnwrap .btn {
		width: 50%;
	}

	.l-spgnav .p-navigation__menulist {
		gap: 34px;
		flex-direction: column;
	}
	.p-navigation__left.header-sp-block{
	display: block
}
	.p-navigation__left.header-sp-none{
	display: none
}


}

.cta-wrap {
	border-top: 1px solid var(--c-border);
}

.cta-wrap .l-inner {
	display: flex;
}

.cta-area {
	width: 50%;
	display: flex;
	gap: 50px;
	flex-direction: column;
	padding: 80px 2% 80px 0
}

.cta-area__contact {
	border-right: 1px solid var(--c-border);
}

.cta-area__newsletter {
	padding-left: 40px
}

.c-ttl__wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cta-area__contact .c-ttl__wrap {
	padding-right: 40px
}

.cta-area .read {
	font-size: 1.4rem;
}

.circlelink_lg {
	transition: transform .3s cubic-bezier(.65, 0, .35, 1);
}

.cta-area:hover .circlelink_lg {
	transform: translateX(10px);
}

@media (max-width: 900px) {
	.cta-wrap .l-inner {
		display: block;
	}

	.cta-area {
		width: 100%
	}

	.cta-area__contact {
		border-right: none;
		border-bottom: 1px solid var(--c-border);
		padding: 20px 0 60px
	}

	.cta-area__contact .c-ttl__wrap {
		padding-right: 0;
	}

	.cta-area__newsletter {
		padding-left: 0;
		padding: 60px 0 20px
	}

	.cta-area .read {
		font-size: 1.2rem
	}
}
.p-archive__title{
	margin-bottom: 2em
}
.p-archive__title span{
	font-size: 70%
}
.p-archive__filter {
    text-align: right;
    margin-bottom: 40px;
}
.m-select {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.m-select select {
    padding: 5px 40px 4px 15px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    appearance: none;
    cursor: pointer;
    font-size: 1.4rem;
    width: 200px;
    transition: border-color 0.3s;
}

.m-select select:hover {
    border-color: #333;
}

/* 独自の矢印アイコンを追加 */
.m-select::after {
   content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px; 
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: translateY(-70%) rotate(45deg); 
    pointer-events: none;
}
@media (max-width: 900px) {
	.l-row.p-archive__grid{
		gap:24px
	}
	.p-archive__title .c-ttl--lg{
		    font-size: 2.4rem;
	}
	.p-archive__filter{
		text-align: left
	}
}

/*ANTHRO*/
#js-anthro-news-content{
  transition: opacity .25s ease, transform .25s ease;
}

#js-anthro-news-content.is-fading{
  opacity: 0;
  transform: translateY(6px);
}
.p-anthro-card{
	display: flex;
	align-items: center;
	background: #fff;
	border: 1px solid var(--c-border);
	padding: 8px;
}
.p-anthro-card__img{
	width: 170px;
}
.p-anthro-card__body{
	width: calc(100% - 170px);
	display: flex;
	padding: 16px 10px;
	align-items: center;
}
.p-anthro-card__title{
	width: calc(100% - 30px);
}
@media (max-width: 1200px) {
	.l-row.p-anthro-list{
		gap:8px
	}
	.l-cols-3 >.p-anthro-card{
		width: 100%;
		    flex: auto;
	}
	
}
@media (max-width: 900px) {
	.p-anthro-card{
		padding: 0 8px
	}
	.p-anthro-card__img{
		width: 100px
	}
	.p-anthro-card__body{
		width: calc(100% - 100px);
	}
	.l-row.p-anthro-news__grid{
		flex-direction: row
	}
	.l-cols-4.p-anthro-news__grid .news-card {
    flex: 0 0 calc((100% - 16px * 1) / 2);
}
	.p-anthro-news__grid .news-card .news-card__venue{
		display: none
	}
	.p-anthro-news__grid .news-card__ttl{
		font-size: 1.3rem
	}
	.p-anthro-news__grid .news-card__meta{
		font-size: 1rem
	}
	
}
.p-anthro-news__pager ul {
    display: flex;
    justify-content: center;
    padding: 30px 5% 0;
    gap: 10px;
}
span.page-numbers,
a.page-numbers{
	width: 30px;
    height: 30px;
    display: flex;
    border-radius: 2px;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--c-gy2);
    font-size: 12px;
}
a.page-numbers{
	background: none;
    color: var(--c-gy2);
}
span.page-numbers,
a.page-numbers:hover{
	background: var(--c-gy2);
    color: #fff;
}
a.page-numbers.next,
a.page-numbers.prev{
	width: auto;
	border: none
}
.sp-menu{
	display: none
	}
@media (max-width: 900px) {
	.sp-menu{
		display: flex;
		gap:16px;
		align-items: center
	}
}
.sns-share {
margin: 40px auto;
    padding: 24px;
    border: 1px solid var(--c-border);
	border-radius: 2px;
    display: flex;
    gap: 40px;
	align-items: center;
}

.sns-share__ttl {
    padding-right: 40px;
    border-right: 1px solid var(--c-border);
	line-height: 1.4;
}

.sns-share__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
	align-items: center;
}

.sns-share__list a {
  width: 36px;
height: 36px;
	display: block;
  transition: .3s;
}

.sns-share__list a:hover {
  opacity: .7;
}
.sns-share__list button {
  transition: .3s;
}

.sns-share__list button:hover {
  opacity: .7;
}
@media (max-width: 900px) {
	.sns-share{
		    flex-direction: column;
		gap:20px
	}
	.sns-share__ttl{
		    border-right: none;
		    border-bottom: 1px solid var(--c-border);
		    padding-right: 0;
		    padding-bottom: 10px;
		        width: 100%;
		        font-size: 1.7rem;
	}
	.sns-share__list a{
		width: 30px;
		height: 30px
	}
}