@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Klee+One:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Noto+Serif+JP:wght@200..900&display=swap");
/* CSS Document */

/* PC・SP共通 */
:root {
	--gold-grad: linear-gradient(to right top, #a17a00 5%, #e9c87f 20%, #f2df91 25%, #e9c87f 30%, #a17a00 45%, #a17a00 60%, #e9c87f 70%, #f2df91 75%, #e9c87f 80%, #a17a00 100%);
	--green-grad1: linear-gradient(to bottom left, #d2e7de, #add7c5);
	--green-grad2: linear-gradient(to bottom left, #5d8875, #185b3e);
	--green-text: #003820;
}

.pagetitle {
	margin-bottom: 60px;
}
.pagetitle-en {
	font-size: 150px;
	font-family: "Cormorant Garamond", serif;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	/* 1. グラデーションの設定（左から右へ） */
	background-image: var(--gold-grad);

	/* 2. 背景を文字の形に切り抜く */
	-webkit-background-clip: text;
	background-clip: text;

	/* 3. 元の文字色を透明にして背景を見せる */
	-webkit-text-fill-color: transparent;
	color: transparent; /* フォールバック用 */
	text-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.pagetitle-ja {
	font-size: 32px;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--green-text);
	margin-left: 50px;
	padding-left: 74px;
	position: relative;
}
.pagetitle-ja::before {
	content: "";
	width: 50px;
	height: 2px;
	background: var(--gold-grad);
	position: absolute;
	top: 50%;
	left: 0;
}

/*-------------------------
.contentsTitle
-------------------------*/
.contentsTitle {
	display: none;
}

/* ============================
	consulting
  =============================*/
.archive {
	font-family: "Noto Serif JP", serif;
	margin: 100px 0 100px;
}
.inner {
	max-width: 1064px;
	padding: 0 24px;
	margin: 0 auto;
}
.archive__list {
	h2 {
		font-size: 32px;
		padding: 4px 20px;
		border-top: 2px solid;
		border-bottom: 2px solid;
		border-image: var(--gold-grad) 1;
		letter-spacing: 0.1em;
		display: inline-block;
		color: var(--green-text);
		font-weight: 600;
	}
}
.consulting-section + .consulting-section {
	margin-top: 60px;
}
.consulting-slider {
	margin-top: 32px;
}
.consulting-card {
	height: 100%;
	width: calc(33% - 14px);
	border-top: 2px solid;
	border-image: var(--gold-grad) 1;
	background: var(--green-grad1);
	padding: 20px 20px 40px 20px;
	box-sizing: border-box;
	position: relative;
	display: flex !important;
	flex-direction: column;
	justify-content: space-between;
}
.consulting-link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.slick-slider .consulting-card {
	max-width: 100%;
}
.slick-slider .slick-slide {
	padding-right: 15px;
}
.consulting-image {
	aspect-ratio: 4/3;
	height: auto;
	width: 100%;
	object-fit: cover !important;
}
.consulting-title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.1em;
	background-color: #fff;
	border-radius: 16px 16px 0 16px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
	padding: 8px 10px;
	margin-top: 20px;
	margin-bottom: auto;
	font-family: 
    /* 1. Windows用の指定 (英語名と日本語名) */ "UD Digital Kyokashotai NK", "UD デジタル 教科書体 NK", /* 2. Mac用の標準教科書体 (入っている人用) */ "Yu Kyokashotai", "YuKyokashotai",
		"游教科書体", /* 3. それ以外(Mac/スマホ)用のGoogle Fonts */ "Klee One", /* 4. 最終的なバックアップ */ sans-serif;

	/* N-B（ボールド）相当の太さを指定 */
	font-weight: 500;
}
.consulting-title span {
	color: var(--green-text);
	display: block;
	padding-bottom: 2px;
	line-height: 2;
}
.consulting-meta {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 5%;
	position: relative;
	dt {
		width: 77px;
		color: var(--green-text);
		border-radius: 20px;
		letter-spacing: 0.1em;
		padding: 4px 0 4px;
		font-size: 12px;
		font-weight: 700;
	}
	dd {
		width: calc(95% - 77px);
		font-size: 14px;
	}
}
.consulting-meta img {
	position: absolute;
	top: 0;
	right: 0;
	width: 68px;
	aspect-ratio: 68/85;
	height: auto;
	object-fit: cover;
}
.consulting-more {
	position: absolute;
	bottom: 0;
	right: 4px;
	font-size: 12px;
	color: var(--green-text);
	font-weight: 700;
	line-height: 1.8;
	padding-right: 16px;
}
.consulting-more::before {
	content: "▶";
	font-size: 12px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.slide-arrow {
	bottom: 0;
	height: 40px;
	position: absolute;
	top: -70px;
	width: 40px;
	cursor: pointer;
}

.slide-arrow[aria-disabled="true"] {
	opacity: 0.2;
	pointer-events: none;
}
.prev-arrow {
	right: 65px;
}
.next-arrow {
	right: 15px;
}
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	padding: 0;
}

.slick-track {
	display: flex;
}
.slick-slide {
	height: auto !important;
}
.slick-slide > div {
	height: 100%;
	width: 100%;
}
@media (max-width: 750px) {
	.pagetitle-en {
		font-size: 72px;
	}
	.pagetitle-ja {
		font-size: 20px;
		margin-left: 20px;
		padding-left: 30px;
	}
	.pagetitle-ja::before {
		width: 30px;
	}
	.pagetitle {
		margin-bottom: 60px;
	}
	.archive {
		margin: 40px 0 80px;
	}
}
