@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&family=Noto+Serif+JP:wght@200..900&family=Pinyon+Script&display=swap");
/* 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;
	--green-grad3: linear-gradient(to top right, #003820, #005832);
	--gold-grad-2: linear-gradient(to top right, #e5d4a9 5%, #e1dc9c 30%, #f3f3c6 50%, #efe1aa 70%, #ead598 95%);
}
main {
	font-family: "Noto Serif Jp", serif;
}
.inner {
	max-width: 1040px;
	margin-inline: auto;
}
.sp-only {
	display: none;
}
/*-------------------------
.contentsTitle
-------------------------*/
.contentsTitle {
	display: none;
}
/*-------------------------
pageheader
-------------------------*/

.pageheader {
	padding-top: 100px;
}
.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;
}

/*　PC用　*/

/*-------------------------
  .hlm
  -------------------------*/
.hlm {
	margin-top: 120px;
	padding-block: 120px;
	position: relative;
}
.hlm::before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../img/hlm_bg.jpg);
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.65;
	z-index: -1;
}
.hlm h2 {
	width: 660px;
	aspect-ratio: 650/108;
	background: url(../img/about_titlebg.svg);
	background-size: contain;
	background-repeat: no-repeat;
	height: auto;
	margin-inline: auto;
	padding-top: 20px;
	font-size: 40px;
	font-weight: 700;
	color: #fff;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	text-align: center;
}
.hlm__lead {
	font-size: 48px;
	font-weight: 600;
	font-family: "Cormorant Garamond", serif;
	color: var(--green-text);
	display: block;
	margin-top: -24px;
	text-align: center;
}
.hlm__cards {
	margin-top: 80px;
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(3, 1fr);
}
.hlm__card {
	padding: 40px;
	text-align: center;
	border: 2px solid;
	border-image: var(--gold-grad) 1;
	display: grid;
	place-items: center; /* 縦横中央 */
	position: relative;
	z-index: 2;
}
.hlm__card::after {
	content: "";
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	border: 2px solid;
	border-image: var(--gold-grad) 1;

	position: absolute;
}
.hlm__card::before {
	content: "";
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	background: rgba(255, 255, 255, 0.55);
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	position: absolute;
	z-index: -1;
}
.card__lead {
	font-family: "Pinyon Script", cursive;
	font-size: 28px;
	/* 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);
}
.card__image {
	margin-top: 8px;
	width: 80px;
	aspect-ratio: 1;
	height: auto;
	display: block;
}
.card__title {
	color: var(--green-text);
	font-size: 28px;
	font-weight: 700;
	margin-top: 8px;
	letter-spacing: 0.01em;
	line-height: 1.3;
}
.card__list {
	margin-top: 8px;
	min-height: 125px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
}
.card__list li {
	display: block;
	width: 100%;
	background: var(--green-grad3);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	padding: 6px 20px;
}

.pro {
	padding-top: 120px;
	margin-bottom: 100px;
	box-sizing: border-box;
}
.pro__title {
	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;
}
.pro__title::before {
	content: "";
	width: 50px;
	height: 2px;
	background: var(--gold-grad);
	position: absolute;
	top: 50%;
	left: 0;
}
.pro__container {
	margin-top: 60px;
}
.pro__unit {
	display: flex;
}
.pro__image {
	width: 450px;
}
.pro__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.pro__lead {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--green-text);
}
.pro__content {
	width: 650px;
	background: var(--green-grad1);
	padding: 60px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
}

.pro__unit:nth-of-type(1) {
	.pro__content {
		margin-top: 80px;
		margin-left: -80px;
		padding-left: 100px;
		z-index: -1;
	}
}
.pro__unit:nth-of-type(2) {
	margin-top: 80px;
	flex-direction: row-reverse;
	align-items: flex-end;
	.pro__content {
		margin-bottom: 80px;
		margin-right: -80px;
		padding-right: 100px;
	}
}
/*　SP用　*/
@media screen and (max-width: 750px) {
	.pageheader {
		padding-top: 30px;
	}
	.pageheader .inner {
		padding-inline: 20px;
	}
	.pagetitle-en {
		font-size: 72px;
	}
	.pagetitle-ja {
		font-size: 20px;
		margin-left: 20px;
		padding-left: 30px;
	}
	.pagetitle-ja::before {
		width: 30px;
	}
	.pagetitle {
		margin-bottom: 20px;
	}
	/*-------------------------
  .contentsTitle
  -------------------------*/
	.contentsTitle img {
		width: 322px;
		width: min(85.8667vw, 322px);
	}
	/*-------------------------
  .hlm
  -------------------------*/
	.hlm {
		margin: 0;
		padding-bottom: 10px;
		padding: 80px 15px;
	}
	.hlm::before {
		background-size: 100%;
	}
	.hlm h2 {
		width: 350px;
		font-size: 22px;
		padding-top: 10px;
	}
	.hlm__lead {
		font-size: 28px;
	}
	.hlm__cards {
		margin-top: 40px;
		grid-template-columns: 1fr;
		max-width: 300px;
		margin-inline: auto;
	}
	.hlm__card {
		padding: 32px 48px;
	}
	.card__title {
		font-size: 24px;
	}
	.card__list li {
		font-size: 16px;
	}
	.pro {
		padding: 80px 20px 0;
	}
	.pro__title {
		font-size: 24px;
		margin-left: 20px;
		padding-left: 30px;
	}
	.pro__title::before {
		width: 30px;
	}
	.pro__unit {
		flex-direction: column-reverse;
	}
	.pro__content {
		width: 100%;
		padding: 20px;
		box-sizing: border-box;
	}
	.pro__lead {
		font-size: 22px;
	}
	.pro__text {
		font-size: 14px;
	}
	.pro__image {
		width: 100%;
	}
	.pro__unit:nth-of-type(1) {
		.pro__content {
			margin-top: 0;
			margin-left: 0;
			padding-left: 20px;
		}
	}
	.pro__unit:nth-of-type(2) {
		margin-top: 40px;
		flex-direction: column-reverse;
		align-items: flex-end;
		.pro__content {
			margin-bottom: 0;
			margin-right: 0;
			padding-right: 20px;
		}
	}
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
}
