/*
Theme Name: 北の丘保育園
Theme URI:
Author:
Author URI:
Description: 北の丘保育園オリジナルテーマ
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kitanooka
*/

/* ========================================
   カラー・フォント（Figma PC #16:200 ベース）
   ======================================== */
:root {
	--color-cream: #fff9f2;
	--color-text: #52634d;
	--color-cta: #efa58a;
	--color-white: #ffffff;
	--header-max-width: 1280px;
}

/* 最低限のベーススタイル */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: "Zen Maru Gothic", sans-serif;
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-cream);
}

img {
	max-width: 100%;
}

/* ========================================
   Header（Figma: header #16:200）
   ======================================== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: transparent;
}

body:not(.home) .header {
	background-color: var(--color-white);
	transition: background-color 0.25s ease;
}

body:not(.home) .header.is-scrolled {
	background-color: transparent;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	max-width: var(--header-max-width);
	margin: 0 auto;
	padding: 10px 100px;
}

.site-header__logo-heading {
	margin: 0;
}

.site-header__logo-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px;
	color: inherit;
	text-decoration: none;
}

.site-header__logo-icon {
	display: block;
	width: 35px;
	height: 48px;
}

.site-header__logo-name {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-text);
}

.site-header__menu-toggle {
	display: none;
}

.site-header__menu {
	display: flex;
	align-items: center;
	gap: 10px;
	min-height: 75px;
	padding: 10px;
	border-radius: 30px;
	background-color: rgb(255 249 242 / 70%);
}

.site-header__menu-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 0;
	padding: 10px;
	list-style: none;
}

.site-header__menu-list a {
	display: inline-block;
	padding: 0;
	color: var(--color-text);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.site-header__menu-list a:hover,
.site-header__menu-list .current-menu-item > a,
.site-header__menu-list .current_page_item > a {
	opacity: 0.75;
}

@media (min-width: 1025px) {
	.site-header__menu-list {
		gap: 26px;
	}

	body:not(.home) .site-header__inner {
		height: 80px;
		padding-top: 4px;
		padding-bottom: 4px;
	}

	body:not(.home) .site-header__logo-link {
		padding-top: 4px;
		padding-bottom: 4px;
	}

	body:not(.home) .site-header__menu {
		min-height: 64px;
		padding-top: 6px;
		padding-bottom: 6px;
	}

	body:not(.home) .site-header__menu-list {
		padding-top: 6px;
		padding-bottom: 6px;
	}
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 130px;
	height: 44px;
	padding: 10px 24px;
	border-radius: 30px;
	background-color: var(--color-cta);
	color: var(--color-white);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.site-header__cta:hover {
	opacity: 0.85;
}

.site-header__contact {
	display: none;
}

@media (max-width: 1024px) {
	.site-header__inner {
		padding: 10px 24px;
	}
}

@media (max-width: 1024px) {
	.header {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
	}

	.site-header__inner {
		position: relative;
		width: 100%;
		height: 73px;
		padding: 0 10px;
		gap: 0;
	}

	.site-header__logo-link {
		height: 73px;
		padding: 5px 10px;
	}

	.site-header__logo-icon {
		width: 35px;
		height: 48px;
	}

	.site-header__menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 60px;
		height: 73px;
		padding: 10px;
		border: 0;
		border-radius: 30px;
		background: transparent;
		cursor: pointer;
	}

	.site-header__menu-icon {
		position: relative;
		display: block;
		width: 30px;
		height: 22px;
	}

	.site-header__menu-icon span {
		position: absolute;
		left: 0;
		display: block;
		width: 30px;
		height: 3px;
		border-radius: 2px;
		background-color: var(--color-text);
		transform-origin: center;
		transition: top 0.25s ease, transform 0.25s ease, opacity 0.18s ease;
	}

	.site-header__menu-icon span:nth-child(1) {
		top: 1px;
	}

	.site-header__menu-icon span:nth-child(2) {
		top: 9.5px;
	}

	.site-header__menu-icon span:nth-child(3) {
		top: 18px;
	}

	.site-header__menu-toggle.is-open .site-header__menu-icon span:nth-child(1) {
		top: 9.5px;
		transform: rotate(45deg);
	}

	.site-header__menu-toggle.is-open .site-header__menu-icon span:nth-child(2) {
		opacity: 0;
		transform: scaleX(0);
	}

	.site-header__menu-toggle.is-open .site-header__menu-icon span:nth-child(3) {
		top: 9.5px;
		transform: rotate(-45deg);
	}

	.site-header__menu {
		position: absolute;
		top: 73px;
		left: 10px;
		right: 10px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		height: auto;
		min-height: 0;
		padding: 18px 20px 20px;
		border-radius: 24px;
		box-shadow: 0 12px 30px rgb(82 99 77 / 14%);
		background-color: rgb(255 249 242 / 97%);
	}

	.site-header__menu.is-open {
		display: flex;
	}

	.site-header__menu-list {
		flex-direction: column;
		align-items: center;
		gap: 0;
		padding: 0 10px 10px;
	}

	.site-header__menu-list a {
		padding: 10px 0;
	}

	.site-header__cta {
		width: 100%;
	}
}

@media (max-width: 767px) {
	.site-header__logo,
	.site-header__menu-toggle {
		position: relative;
		z-index: 2;
	}

	.site-header__menu {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1;
		display: flex;
		padding: 83px 30px 24px;
		border-radius: 0 0 24px 24px;
		visibility: hidden;
		opacity: 0;
		transform: translateY(-100%);
		transition: transform 0.35s ease, opacity 0.25s ease, visibility 0.35s;
	}

	.site-header__menu.is-open {
		display: flex;
		visibility: visible;
		opacity: 1;
		transform: translateY(0);
	}

	.site-header__contact {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		height: 44px;
		padding: 10px 24px;
		border-radius: 25px;
		background-color: var(--color-cta);
		color: var(--color-white);
		font-size: 15px;
		font-weight: 500;
		line-height: 1.2;
		text-decoration: none;
	}

	.site-header__contact img {
		display: block;
		width: 19px;
		height: 20px;
		object-fit: contain;
	}
}

/* ========================================
   Main / Footer
   ======================================== */
.site-main {
	padding: 1rem 1.5rem;
	max-width: var(--header-max-width);
	margin: 0 auto;
}

/* ========================================
   Front page（Figma PC #11:199）
   ======================================== */
.home .header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
}

.home .site-main {
	max-width: none;
	padding: 0;
}

.front-page {
	width: 100%;
	overflow: hidden;
	background: #F2F6ED;
}

.hero {
	position: relative;
	width: 100%;
	height: 800px;
	margin: 0 auto;
	overflow: hidden;
	background: var(--color-cream);
}

.hero__visual-wrap {
	position: absolute;
	z-index: 0;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 800px;
	margin: 0;
	overflow: hidden;
}

.hero__slides {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: max(0px, calc(50% - 640px));
	display: block;
}

.hero__slide {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.hero__slide {
	object-fit: cover;
	object-position: center;
	opacity: 0;
	transition: opacity 1.6s ease;
}

.hero__slide.is-active {
	opacity: 1;
}

.hero__pc-frame {
	position: absolute;
	top: 0;
	bottom: 0;
	left: max(0px, calc(50% - 640px));
	display: block;
	z-index: 2;
	width: 1093px;
	height: 800px;
	object-fit: contain;
	pointer-events: none;
}

.hero__sp-visual {
	display: none;
}

.hero__copy {
	position: absolute;
	top: 303px;
	left: max(68px, calc(50% - 572px));
	z-index: 1;
	width: 410px;
}

.hero__copy h1 {
	margin: 0 0 50px;
	font-size: 36px;
	font-weight: 500;
	line-height: 58px;
	letter-spacing: 0.018em;
}

.hero__copy p {
	margin: 0;
	color: #66745f;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	line-height: 25px;
}

.home-section {
	width: 100%;
	margin: 0 auto;
	padding-right: 100px;
	padding-left: 100px;
}

.section-title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin: 0;
	text-align: center;
}

.section-title__en {
	margin: 0;
	color: var(--color-cta);
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 28px;
}

.section-title h2 {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 34px;
}

.home-about {
	height: 578px;
	padding-top: 10px;
	background: #F2F6ED;
}

.home-about .section-title,
.home-day .section-title,
.home-news .section-title {
	height: 102px;
	padding: 10px;
}

.home-about__content {
	display: flex;
	align-items: center;
	height: 406px;
	max-width: 1080px;
	margin: 50px auto 0;
}

.home-about__text {
	display: flex;
	flex: 0 0 594px;
	flex-direction: column;
	align-items: center;
	padding: 10px;
}

.home-about__text h3 {
	width: 500px;
	margin: 0 0 20px;
	font-size: 26px;
	line-height: 40px;
}

.home-about__text > p {
	width: 500px;
	margin: 0 0 20px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 30px;
}

.home-about__media {
	display: flex;
	flex: 0 0 441px;
	flex-direction: column;
	align-items: center;
	height: 406px;
}

.home-about__image {
	display: block;
	width: 441px;
	height: 386px;
	object-fit: contain;
}

.more-button.home-about__button--mobile {
	display: none;
}

.home-about__media .home-about__button--mobile {
	width: 441px;
}

.more-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 501px;
	height: 81px;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
}

.more-button img {
	width: 53px;
	height: 62px;
	object-fit: contain;
	transform: translate(8px, 8px) rotate(8deg);
}

.more-button span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 292px;
	height: 44px;
	border: 3px solid var(--color-text);
	border-radius: 20px;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.more-button:hover,
.text-link:hover {
	opacity: 0.75;
}

.front-page .more-button:hover {
	opacity: 1;
}

.front-page .more-button:hover span {
	background-color: var(--color-text);
	color: var(--color-white);
}

.more-button--center {
	margin: 10px auto 0;
}

.home-day {
	min-height: 974px;
	padding-top: 10px;
	background: var(--color-cream);
}

.home-day__lead {
	height: 100px;
	margin: 10px auto 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 40px;
	text-align: center;
}

.home-day__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	max-width: 1132px;
	margin: 10px auto 0;
}

.day-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 0;
}

.day-card time {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 75px;
	height: 75px;
	border-radius: 50%;
	background: #d9e6c9;
	font-size: 18px;
	font-weight: 700;
}

.day-card h3 {
	height: 40px;
	margin: 10px 0 0;
	font-size: 26px;
	line-height: 40px;
}

.day-card p {
	height: 90px;
	margin: 10px 0 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
}

.day-card > img {
	display: block;
	width: 100%;
	max-width: 367px;
	height: 326px;
	margin-top: 10px;
	object-fit: contain;
}

.home-news {
	min-height: 604px;
	padding-top: 30px;
	background: #F2F6ED;
}

.home-news__panel {
	display: flex;
	flex-direction: column;
	width: 800px;
	min-height: 382px;
	margin: 30px auto 0;
	padding: 21px 100px 10px;
	border: 1px solid rgb(82 99 77 / 8%);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 6px 20px rgb(82 99 77 / 8%);
	overflow: hidden;
}

.home-news__panel > .home-news__list,
.home-news__panel > .text-link {
	background-color: #ffffff;
}

.home-news__list {
	width: 100%;
	margin: 0;
	padding: 0;
}

.home-news__list .news-item {
	border-bottom: 1px solid #d9e6c9;
}

.home-news__list + .text-link {
	margin-top: 12px;
	margin-right: 0;
	margin-left: auto;
}

.news-item {
	display: grid;
	grid-template-columns: 110px 113px 1fr;
	align-items: center;
	gap: 20px;
	min-height: 92px;
	color: var(--color-text);
	font-size: 16px;
	text-decoration: none;
}

.news-item__category {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 93px;
	height: 37px;
	border-radius: 30px;
	background: #d9e6c9;
}

.news-item__category--event {
	background: #f3dfa2;
}

.news-item__title {
	font-family: "Noto Sans JP", sans-serif;
}

.text-link {
	display: block;
	width: max-content;
	height: 32px;
	margin: 0 0 0 auto;
	color: var(--color-text);
	font-size: 14px;
	line-height: 32px;
	text-align: right;
	text-decoration: none;
}

.home-information {
	min-height: 694px;
	padding-top: 30px;
	background: #fcf8f3;
}

.home-information .section-title {
	padding: 10px;
}

.home-information__box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 800px;
	margin: 20px auto 0;
	padding: 20px 10px;
	border-radius: 20px;
	background: var(--color-white);
}

.home-information__details {
	display: flex;
	flex: 0 0 318px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 331px;
	padding: 10px;
}

.home-information__details h3 {
	margin: 0 0 10px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
}

.home-information__name,
.home-information__details address,
.home-information__details > p {
	width: 100%;
	margin: 0 0 10px;
	font-size: 16px;
	font-style: normal;
	line-height: 30px;
}

.home-information__name {
	text-align: left;
}

.reservation-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 180px;
	height: 44px;
	border-radius: 30px;
	background: var(--color-cta);
	color: var(--color-white);
	font-size: 15px;
	text-decoration: none;
}

.home-information__map {
	display: block;
	width: 326px;
	height: 305px;
	border: 0;
	border-radius: 20px;
}

/* ========================================
   見学予約ページ
   ======================================== */
.reservation-page {
	width: 100vw;
	margin-top: -1rem;
	margin-left: calc(50% - 50vw);
	background: var(--color-cream);
}

.reservation-hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 383px;
	padding: 108px 20px 45px;
	background: var(--color-cream);
	text-align: center;
}

.reservation-hero__en {
	margin: 0 0 14px;
	color: var(--color-cta);
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.reservation-hero h1 {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.4;
}

.reservation-hero__lead {
	margin: 45px 0 0;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.8;
}

.reservation-form-section {
	padding: 30px 20px;
	background: var(--color-cream);
}

.reservation-form-panel {
	width: min(1080px, 100%);
	margin: 0 auto;
	padding: 40px 70px 30px;
	border-radius: 30px;
	background: var(--color-white);
}

.reservation-form-panel .wpcf7-form {
	margin: 0;
}

.reservation-form-panel .wpcf7-form > p {
	margin: 0 0 40px;
}

.reservation-form-panel .wpcf7-form > p > label {
	display: block;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.6;
}

.reservation-required {
	color: #ff3038;
}

.reservation-form-panel .wpcf7-form-control-wrap {
	display: block;
	width: 100%;
	margin-top: 18px;
}

.reservation-form-panel input:not([type="checkbox"]):not([type="submit"]),
.reservation-form-panel select,
.reservation-form-panel textarea {
	display: block;
	width: 100%;
	border: 2px solid #b5c9ad;
	border-radius: 0;
	outline: none;
	background: var(--color-white);
	color: var(--color-text);
	font: inherit;
	font-size: 22px;
}

.reservation-form-panel input:not([type="checkbox"]):not([type="submit"]),
.reservation-form-panel select {
	height: 65px;
	padding: 10px 24px;
}

.reservation-form-panel select {
	padding-right: 60px;
	-webkit-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='11' viewBox='0 0 18 11'%3E%3Cpath d='M2 2l7 7 7-7' fill='none' stroke='%2352634d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 24px center;
	background-size: 18px 11px;
}

.reservation-form-panel textarea {
	min-height: 200px;
	padding: 18px 24px;
	resize: vertical;
}

.reservation-form-panel input::placeholder,
.reservation-form-panel textarea::placeholder {
	color: #b5c9ad;
	opacity: 1;
}

.reservation-form-panel input:focus,
.reservation-form-panel select:focus,
.reservation-form-panel textarea:focus {
	border-color: var(--color-text);
}

.reservation-form-panel .wpcf7-list-item {
	margin: 0;
}

.reservation-form-panel input[type="checkbox"] {
	width: 24px;
	height: 24px;
	margin: 0 30px 0 0;
	accent-color: var(--color-text);
}

.reservation-form-panel .wpcf7-acceptance {
	display: block;
	margin-left: 0;
	font-size: 22px;
	font-weight: 500;
	text-align: center;
}

.reservation-form-panel input[type="submit"] {
	display: block;
	width: min(400px, 100%);
	height: 70px;
	margin: 30px auto 0;
	border: 0;
	border-radius: 35px;
	background: var(--color-text);
	color: var(--color-white);
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 22px;
	font-weight: 500;
	cursor: pointer;
}

.reservation-form-panel input[type="submit"]:hover {
	opacity: 0.85;
}

.reservation-form-panel .wpcf7-not-valid-tip {
	margin-top: 6px;
	font-size: 14px;
}

.reservation-form-panel .wpcf7-response-output {
	margin: 20px 0 0;
	padding: 12px 16px;
}

/* ========================================
   北の丘保育園についてページ
   ======================================== */
.about-page {
	width: 100vw;
	margin-top: -1rem;
	margin-bottom: -1rem;
	margin-left: calc(50% - 50vw);
	padding-top: 80px;
	background: var(--color-white);
}

.about-page__content {
	padding: 48px 20px 30px;
	background: #f4f8ef;
}

.about-policy,
.about-features {
	width: min(1080px, 100%);
	margin: 0 auto;
	text-align: center;
}

.about-page__en {
	margin: 0 0 14px;
	color: var(--color-cta);
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.about-policy h1 {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
}

.about-page__section-title {
	position: relative;
	width: max-content;
	margin: 60px auto 0;
	padding-bottom: 14px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
}

.about-page__section-title::after {
	position: absolute;
	right: -12px;
	bottom: 0;
	left: -12px;
	height: 2px;
	background: var(--color-cta);
	content: "";
}

.about-policy__lead {
	margin: 28px 0 0;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.7;
}

.about-policy__description {
	margin: 30px 0 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8;
}

.about-policy__image {
	display: block;
	width: min(782px, 78%);
	height: auto;
	margin: 15px auto 0;
}

.about-features {
	margin-top: 75px;
}

.about-features .about-page__section-title {
	margin-top: 0;
}

.about-features__list {
	display: grid;
	gap: 20px;
	margin-top: 30px;
}

.about-feature {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	min-height: 333px;
	padding: 35px 75px;
	border-radius: 20px;
	background: var(--color-white);
	text-align: left;
}

.about-feature--reverse {
	flex-direction: row-reverse;
}

.about-feature__text {
	flex: 1 1 50%;
}

.about-feature__number {
	margin: 0 0 2px;
	color: var(--color-cta);
	font-family: "Noto Sans JP", sans-serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 1.3;
}

.about-feature h3 {
	margin: 0 0 18px;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.4;
}

.about-feature__text > p:last-child {
	margin: 0;
	font-size: 16px;
	line-height: 2.1;
}

.about-feature > img {
	display: block;
	flex: 0 0 360px;
	width: 360px;
	height: 270px;
	object-fit: contain;
}

@media (min-width: 1025px) {
	.about-feature:not(.about-feature--reverse) .about-feature__text {
		transform: translateX(60px);
	}

	.about-feature:not(.about-feature--reverse) > img {
		transform: translateX(-30px);
	}
}

@media (max-width: 1024px) {
	.about-feature {
		padding-right: 40px;
		padding-left: 40px;
	}

	.about-feature > img {
		flex-basis: 310px;
		width: 310px;
	}
}

@media (max-width: 767px) {
	.about-page {
		padding-top: 73px;
	}

	.about-page__content {
		padding: 28px 20px 30px;
	}

	.about-page__en {
		margin-bottom: 12px;
		font-size: 16px;
	}

	.about-policy h1 {
		font-size: 24px;
	}

	.about-page__section-title {
		margin-top: 42px;
		padding-bottom: 10px;
		font-size: 22px;
	}

	.about-policy__lead {
		margin-top: 38px;
		font-size: 20px;
		line-height: 1.6;
	}

	.about-policy__description {
		margin-top: 14px;
		font-size: 14px;
		line-height: 2;
	}

	.about-policy__image {
		width: 100%;
		margin-top: 18px;
	}

	.about-features {
		margin-top: 70px;
	}

	.about-features__list {
		gap: 20px;
		margin-top: 30px;
	}

	.about-feature,
	.about-feature--reverse {
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
		min-height: 0;
		padding: 26px 24px 30px;
		border-radius: 20px;
	}

	.about-feature__number {
		font-size: 28px;
		text-align: center;
	}

	.about-feature h3 {
		margin-bottom: 18px;
		font-size: 24px;
		text-align: center;
	}

	.about-feature__text > p:last-child {
		font-size: 15px;
		line-height: 2;
	}

	.about-feature > img {
		flex: none;
		width: 100%;
		height: auto;
	}
}

/* ========================================
   園での一日 詳細ページ
   ======================================== */
.day-page {
	width: 100vw;
	margin-top: -1rem;
	margin-bottom: -1rem;
	margin-left: calc(50% - 50vw);
	padding-top: 80px;
	background: var(--color-white);
}

.day-page__content {
	padding: 48px 20px 95px;
	background: var(--color-cream);
}

.day-page__header {
	text-align: center;
}

.day-page__en {
	margin: 0 0 14px;
	color: var(--color-cta);
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
}

.day-page__header h1 {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
}

.day-page__header > p:last-child {
	margin: 55px 0 0;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.75;
}

.day-schedule {
	display: grid;
	grid-template-columns: minmax(360px, 1fr) 400px;
	grid-template-rows: repeat(7, 145px);
	column-gap: 65px;
	width: min(880px, 100%);
	margin: 70px auto 0;
}

.day-schedule__item {
	position: relative;
	display: flex;
	grid-column: 1;
	align-items: center;
	gap: 30px;
}

.day-schedule__item::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 36px;
	z-index: 0;
	width: 3px;
	background: #9eb394;
	content: "";
}

.day-schedule__item--1::before {
	top: 50%;
}

.day-schedule__item--7::before {
	bottom: 50%;
}

.day-schedule__item--1 { grid-row: 1; }
.day-schedule__item--2 { grid-row: 2; }
.day-schedule__item--3 { grid-row: 3; }
.day-schedule__item--4 { grid-row: 4; }
.day-schedule__item--5 { grid-row: 5; }
.day-schedule__item--6 { grid-row: 6; }
.day-schedule__item--7 { grid-row: 7; }

.day-schedule__item time {
	position: relative;
	z-index: 1;
	display: inline-flex;
	flex: 0 0 74px;
	align-items: center;
	justify-content: center;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	background: #b5c9ad;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 17px;
	font-weight: 700;
	white-space: nowrap;
}

.day-schedule__item h2 {
	margin: 0;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.5;
	white-space: nowrap;
}

.day-schedule__visual {
	grid-column: 2;
	align-self: center;
	width: 400px;
	height: auto;
}

.day-schedule__image {
	display: block;
	width: 100%;
	height: auto;
}

.day-schedule__image--1 {
	grid-row: 1 / span 3;
}

.day-schedule__image--2 {
	grid-row: 4 / span 2;
}

.day-schedule__image--3 {
	grid-row: 6 / span 2;
}

@media (max-width: 1024px) and (min-width: 768px) {
	.day-schedule {
		grid-template-columns: minmax(320px, 1fr) 340px;
		column-gap: 30px;
	}

	.day-schedule__visual {
		width: 340px;
	}
}

@media (max-width: 767px) {
	.day-page {
		padding-top: 73px;
	}

	.day-page__content {
		padding: 32px 20px 75px;
	}

	.day-page__en {
		margin-bottom: 12px;
		font-size: 16px;
	}

	.day-page__header h1 {
		font-size: 25px;
	}

	.day-page__header > p:last-child {
		margin-top: 42px;
		font-size: 19px;
		line-height: 1.7;
	}

	.day-schedule {
		display: flex;
		flex-direction: column;
		gap: 0;
		width: 100%;
		margin-top: 58px;
	}

	.day-schedule__item {
		gap: 28px;
		min-height: 125px;
	}

	.day-schedule__item time {
		flex-basis: 74px;
		width: 74px;
		height: 74px;
		font-size: 16px;
	}

	.day-schedule__item h2 {
		font-size: clamp(20px, 5.7vw, 25px);
		white-space: normal;
	}

	.day-schedule__visual {
		position: relative;
		width: 100%;
		padding: 25px 0 38px;
	}

	.day-schedule__visual::before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 36px;
		z-index: 0;
		width: 3px;
		background: #9eb394;
		content: "";
	}

	.day-schedule__image {
		position: relative;
		z-index: 1;
		background: var(--color-cream);
	}

	.day-schedule__image--3 {
		padding-bottom: 0;
	}

	.day-schedule__image--3::before {
		display: none;
	}
}

/* ========================================
   園の概要 詳細ページ
   ======================================== */
.news-page {
	width: 100vw;
	margin: -1rem 0 -1rem calc(50% - 50vw);
	padding-top: 80px;
	background: #f1f6ed;
}

.news-page__header {
	padding: 48px 20px 66px;
	text-align: center;
}

.news-page__en {
	margin: 0 0 14px;
	color: var(--color-cta);
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	font-weight: 600;
}

.news-page__header h1 {
	margin: 0;
	font-size: 32px;
}

.news-page__lead {
	margin: 72px 0 0;
	font-size: 25px;
	font-weight: 500;
}

.news-archive {
	padding: 0 20px 70px;
}

.news-archive__panel {
	width: min(800px, 100%);
	margin: 0 auto;
	padding: 32px 100px 20px;
	border-radius: 20px;
	background: var(--color-white);
}

.news-archive__item {
	display: grid;
	grid-template-columns: 95px 103px minmax(0, 1fr);
	align-items: center;
	gap: 20px;
	min-height: 92px;
	border-bottom: 1px solid #b5c9ad;
	color: var(--color-text);
	font-size: 15px;
	text-decoration: none;
}

.news-archive__item[href]:hover {
	opacity: 0.7;
}

.news-archive__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 93px;
	height: 37px;
	border-radius: 30px;
	background: #d9e6c9;
}

.news-archive__category--event {
	background: #fff0c8;
}

.news-archive__title {
	font-family: "Noto Sans JP", sans-serif;
}

.news-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 76px;
}

.news-pagination .page-numbers {
	color: var(--color-text);
	text-decoration: none;
}

.news-pagination .current {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--color-text);
	color: var(--color-white);
	font-weight: 700;
}

/* お知らせ・園の行事 詳細ページ */
.news-single-page {
	width: 100vw;
	margin: -1rem 0 -1rem calc(50% - 50vw);
	padding-top: 80px;
	background: #f1f6ed;
}

.news-single-page__header {
	padding: 48px 20px 72px;
	text-align: center;
}

.news-single-page__header .news-page__en {
	margin-bottom: 14px;
}

.news-single-page__heading {
	margin: 0;
	font-size: 32px;
	font-weight: 700;
}

.news-single-page__body {
	padding: 0 20px 36px;
}

.news-single {
	width: min(800px, 100%);
	min-height: 690px;
	margin: 0 auto;
	padding: 30px 70px 45px;
	border-radius: 20px;
	background: var(--color-white);
}

.news-single__header {
	padding: 0 4px 15px;
	border-bottom: 1px solid #9eb394;
}

.news-single__header h1 {
	margin: 0 0 12px;
	font-size: 25px;
	line-height: 1.5;
}

.news-single__meta {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 16px;
}

.news-single__event-information {
	margin: 30px 8px 25px;
	padding: 24px 40px;
	border-radius: 18px;
	background: #fcf8f3;
}

.news-single__event-information > div {
	display: flex;
	line-height: 1.8;
}

.news-single__event-information dt {
	flex: 0 0 auto;
	font-weight: 700;
}

.news-single__event-information dd {
	margin: 0;
}

.news-single__content {
	padding: 22px 18px 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 15px;
	line-height: 2.2;
}

.news-single__content > :first-child {
	margin-top: 0;
}

.news-single__content > :last-child {
	margin-bottom: 0;
}

.news-single__content img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
}

.news-single-navigation {
	display: grid;
	grid-template-columns: 1fr 145px 1fr;
	align-items: center;
	gap: 28px;
	width: min(430px, 100%);
	margin: 22px auto 0;
	font-size: 15px;
}

.news-single-navigation a {
	color: var(--color-text);
	text-decoration: none;
}

.news-single-navigation__side--next {
	text-align: right;
}

.news-single-navigation__list {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	border: 2px solid var(--color-text);
	border-radius: 22px;
	font-weight: 700;
}

@media (max-width: 767px) {
	.news-page {
		padding-top: 73px;
	}

	.news-page__header {
		padding: 35px 25px 40px;
	}

	.news-page__en {
		font-size: 16px;
	}

	.news-page__en-suffix {
		display: none;
	}

	.news-page__header h1 {
		font-size: 25px;
	}

	.news-page__lead {
		margin-top: 52px;
		font-size: 19px;
		line-height: 1.7;
	}

	.news-archive {
		padding: 0 26px 35px;
	}

	.news-archive__panel {
		padding: 22px 13px 20px;
	}

	.news-archive__item {
		grid-template-columns: 116px 1fr;
		gap: 0 14px;
		min-height: 124px;
		padding: 18px 34px 14px;
		font-size: 15px;
	}

	.news-archive__category {
		width: 93px;
	}

	.news-archive__title {
		grid-column: 1 / -1;
		padding-left: 14px;
	}

	.news-pagination {
		min-height: 72px;
	}

	.news-single-page {
		padding-top: 73px;
	}

	.news-single-page__header {
		padding: 35px 20px 40px;
	}

	.news-single-page__heading {
		font-size: 25px;
	}

	.news-single-page__body {
		padding: 0 16px 50px;
	}

	.news-single {
		min-height: 0;
		padding: 27px 10px 42px;
		border-radius: 18px;
	}

	.news-single__header {
		padding: 0 26px 15px;
	}

	.news-single__header h1 {
		font-size: 24px;
	}

	.news-single__meta {
		gap: 25px;
	}

	.news-single__event-information {
		margin: 22px 28px 24px;
		padding: 22px 20px;
	}

	.news-single__event-information > div {
		flex-wrap: wrap;
	}

	.news-single__content {
		padding: 18px 46px 0;
		font-size: 15px;
		line-height: 2.35;
	}

	.news-single-navigation {
		grid-template-columns: 1fr 146px 1fr;
		gap: 12px;
		width: 100%;
		margin-top: 42px;
		font-size: 13px;
		white-space: nowrap;
	}
}

.information-page {
	width: 100vw;
	margin: -1rem 0 -1rem calc(50% - 50vw);
	padding-top: 80px;
	background: var(--color-white);
}

.information-intro {
	padding: 48px 20px 65px;
	text-align: center;
}

.information-page__en {
	margin: 0 0 14px;
	color: var(--color-cta);
	font-family: "Cormorant Garamond", serif;
	font-size: 18px;
	font-weight: 600;
}

.information-intro h1 {
	margin: 0;
	font-size: 32px;
}

.information-intro__lead {
	margin: 60px 0 15px;
	font-size: 25px;
	font-weight: 500;
	line-height: 1.7;
}

.information-intro > img {
	display: block;
	width: min(1026px, 86%);
	height: auto;
	margin: 0 auto;
}

.information-page__body {
	padding: 55px 20px 90px;
	background: var(--color-cream);
}

.information-section,
.information-cta {
	width: min(1080px, 100%);
	margin: 0 auto 75px;
}

.information-section__title,
.information-section__plain-title {
	width: max-content;
	margin: 0 auto 30px;
	font-size: 24px;
	text-align: center;
}

.information-section__title {
	min-width: 268px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--color-cta);
}

.information-section__subtitle {
	margin: 0 0 40px;
	font-size: 24px;
	font-weight: 500;
	text-align: center;
}

.information-data-list,
.information-access-panel,
.information-faq-list,
.information-flow {
	margin: 0;
	padding: 35px 65px;
	border-radius: 30px;
	background: var(--color-white);
}

.information-data-list > div {
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: start;
	gap: 25px;
	padding: 18px 10px;
}

.information-data-list dt {
	display: flex;
	align-items: center;
	gap: 18px;
	padding-left: 0;
	font-size: 22px;
	font-weight: 500;
}

.information-data-list dt::before,
.information-access-panel > p::before {
	position: absolute;
	left: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #b5c9ad;
	content: "";
}

.information-data-list dt::before {
	position: static;
	flex: 0 0 22px;
}

.information-data-list dd {
	margin: 0;
	padding: 0 0 12px;
	border-bottom: 2px solid #b5c9ad;
	font-size: 22px;
	line-height: 1.8;
}

.information-access-panel {
	padding: 38px 55px 30px;
}

.information-access-panel > p {
	position: relative;
	margin: 0 0 25px;
	padding-left: 65px;
	font-size: 22px;
	font-weight: 500;
}

.information-access-panel iframe {
	display: block;
	width: 100%;
	height: 600px;
	border-radius: 20px;
}

.information-faq-list {
	padding-top: 45px;
	padding-bottom: 45px;
}

.information-faq + .information-faq {
	margin-top: 42px;
}

.information-faq__line {
	display: grid;
	grid-template-columns: 52px 1fr;
	align-items: start;
}

.information-faq__line:not(.information-faq__line--answer) {
	padding-bottom: 10px;
	border-bottom: 2px solid #b5c9ad;
}

.information-faq__line--answer {
	margin-top: 10px;
}

.information-faq__line span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 44px;
	border-radius: 10px;
	background: #b5c9ad;
	color: var(--color-white);
	font-size: 22px;
	font-weight: 700;
}

.information-faq__line--answer span {
	background: #f5c2ad;
}

.information-faq__line p {
	margin: 0;
	padding: 5px 20px 10px;
	font-size: 21px;
	line-height: 1.55;
}

.information-flow {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	list-style: none;
}

.information-flow li {
	display: flex;
	align-items: center;
	gap: 18px;
}

.information-flow__icon {
	display: flex;
	flex: 0 0 92px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 92px;
	height: 92px;
	border-radius: 50%;
	background: #b5c9ad;
	color: var(--color-white);
}

.information-flow__icon strong {
	font-size: 20px;
	line-height: 1.1;
}

.information-flow__icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.information-flow h3 {
	margin: 0 0 8px;
	font-size: 22px;
}

.information-flow p {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
}

.information-cta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
	margin-bottom: 0;
	padding: 15px 55px;
}

.information-cta__message {
	display: flex;
	align-items: center;
	gap: 28px;
}

.information-cta__decoration {
	flex: 0 0 auto;
	width: 53px;
	height: 62px;
	object-fit: contain;
}

.information-cta h2 {
	margin: 0 0 10px;
	font-size: 22px;
}

.information-cta p {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
}

.information-cta__buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.information-cta__buttons a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	width: 300px;
	height: 70px;
	border-radius: 35px;
	background: var(--color-cta);
	color: var(--color-white);
	font-size: 19px;
	text-decoration: none;
}

.information-cta__buttons img {
	width: 27px;
	height: 27px;
	filter: brightness(0) invert(1);
}

.information-cta__phone {
	display: none !important;
}

.information-cta__phone-desktop {
	display: inline-flex;
	flex: 0 0 100%;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: max-content;
	margin: 5px auto 0;
	color: #b5c9ad;
	font-size: 16px;
	text-decoration: none;
}

.information-cta__phone-desktop strong {
	color: var(--color-text);
	font-size: 18px;
	font-weight: 500;
}

.information-cta__phone-desktop img {
	width: 28px;
	height: 28px;
	opacity: 0.42;
}

@media (max-width: 767px) {
	.information-page {
		padding-top: 73px;
	}

	.information-intro {
		padding: 35px 20px 45px;
	}

	.information-page__en {
		font-size: 16px;
	}

	.information-intro h1 {
		font-size: 24px;
	}

	.information-intro__lead {
		margin-top: 52px;
		font-size: 19px;
	}

	.information-intro > img {
		width: 100%;
		margin-top: 22px;
	}

	.information-page__body {
		padding: 55px 20px 70px;
	}

	.information-section {
		margin-bottom: 75px;
	}

	.information-section__title,
	.information-section__plain-title {
		font-size: 21px;
	}

	.information-section__title {
		min-width: 208px;
	}

	.information-section__subtitle {
		font-size: 20px;
	}

	.information-data-list,
	.information-access-panel,
	.information-faq-list,
	.information-flow {
		padding: 28px 20px;
		border-radius: 28px;
	}

	.information-data-list > div {
		display: block;
		padding: 20px 0;
	}

	.information-data-list dt {
		gap: 16px;
		padding-left: 0;
		font-size: 19px;
	}

	.information-data-list dd {
		margin-top: 20px;
		font-size: 17px;
	}

	.information-access-panel > p {
		padding-left: 52px;
		font-size: 17px;
	}

	.information-access-panel iframe {
		height: auto;
		aspect-ratio: 1 / 1.08;
		border-radius: 20px;
	}

	.information-faq-list {
		padding-right: 16px;
		padding-left: 16px;
	}

	.information-faq__line {
		grid-template-columns: 58px 1fr;
	}

	.information-faq__line--answer {
		margin-top: 14px;
	}

	.information-faq__line span {
		width: 54px;
		height: 48px;
	}

	.information-faq__line p {
		padding: 7px 5px 12px 16px;
		font-size: 16px;
	}

	.information-flow {
		display: flex;
		flex-direction: column;
		gap: 45px;
		padding: 55px 50px;
	}

	.information-flow li {
		gap: 20px;
	}

	.information-flow__icon {
		flex-basis: 92px;
	}

	.information-flow h3 {
		font-size: 20px;
	}

	.information-flow p {
		font-size: 16px;
	}

	.information-cta {
		display: block;
		padding: 0 35px;
	}

	.information-cta__message {
		align-items: center;
		gap: 20px;
	}

	.information-cta__decoration {
		width: 53px;
		height: 62px;
	}

	.information-cta h2 {
		font-size: 20px;
		line-height: 1.8;
	}

	.information-cta p {
		font-size: 15px;
		line-height: 2;
	}

	.information-cta__buttons {
		align-items: center;
		margin-top: 22px;
	}

	.information-cta__buttons a {
		width: min(300px, 100%);
	}

	.information-cta__phone {
		display: inline-flex !important;
	}

	.information-cta__phone-desktop {
		display: none !important;
	}
}

@media (max-width: 767px) {
	.reservation-page {
		margin-top: -1rem;
	}

	.reservation-hero {
		min-height: 245px;
		padding: 100px 20px 42px;
	}

	.reservation-hero__en {
		margin-bottom: 12px;
		font-size: 16px;
	}

	.reservation-hero h1 {
		font-size: 26px;
	}

	.reservation-hero__lead {
		display: none;
	}

	.reservation-form-section {
		padding: 30px 20px;
	}

	.reservation-form-panel {
		padding: 58px 20px 30px;
		border-radius: 30px;
	}

	.reservation-form-panel .wpcf7-form > p {
		margin-bottom: 55px;
	}

	.reservation-form-panel .wpcf7-form > p > label {
		display: block;
		font-size: 20px;
	}

	.reservation-form-panel .wpcf7-form-control-wrap {
		margin-top: 24px;
	}

	.reservation-form-panel input:not([type="checkbox"]):not([type="submit"]),
	.reservation-form-panel select {
		height: 65px;
		padding: 10px 20px;
		font-size: 20px;
	}

	.reservation-form-panel select {
		padding-right: 56px;
		background-position: right 20px center;
	}

	.reservation-form-panel textarea {
		min-height: 200px;
		padding: 15px 8px;
		font-size: 18px;
	}

	.reservation-form-panel .wpcf7-acceptance {
		margin-left: 0;
		font-size: 18px;
		text-align: center;
	}

	.reservation-form-panel input[type="checkbox"] {
		margin-right: 24px;
	}

	.reservation-form-panel input[type="submit"] {
		height: 68px;
		margin-top: 30px;
		font-size: 20px;
	}
}

@media (max-width: 1024px) {
	.home-section {
		padding-right: 40px;
		padding-left: 40px;
	}

	.home-about__text {
		flex-basis: 54%;
	}

	.home-about__media {
		flex-basis: 46%;
		width: 46%;
	}

	.home-about__media .home-about__image,
	.home-about__media .home-about__button--mobile {
		width: 100%;
	}

	.home-about__text h3,
	.home-about__text > p,
	.more-button {
		max-width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.hero {
		height: 62.5vw;
	}

	.hero__visual-wrap {
		height: 100%;
	}

	.hero__pc-frame {
		width: 85.390625%;
		height: 100%;
	}

	.hero__copy {
		top: 37.875%;
		left: 5.3125%;
		width: 32.03125%;
	}

	.hero__copy h1 {
		margin-bottom: 3.9vw;
		font-size: clamp(24px, 2.8125vw, 29px);
		line-height: 1.6;
	}

	.hero__copy p {
		font-size: clamp(12px, 1.171875vw, 15px);
		line-height: 1.67;
	}
}

@media (max-width: 767px) {
	.hero {
		height: 810px;
		padding-top: 0;
	}

	.hero__visual-wrap {
		display: none;
	}

	.hero__sp-visual {
		position: absolute;
		z-index: 0;
		top: 0;
		left: 0;
		display: block;
		width: 100%;
		max-width: 480px;
		aspect-ratio: 480 / 581;
		overflow: hidden;
		pointer-events: none;
	}

	.hero__sp-slides,
	.hero__sp-slide,
	.hero__sp-frame {
		position: absolute;
		inset: 0;
		display: block;
		width: 100%;
		height: 100%;
	}

	.hero__sp-slide {
		height: calc(100% - 8px);
		object-fit: cover;
		object-position: center;
		opacity: 0;
		transition: opacity 1.6s ease;
	}

	.hero__sp-slide.is-active {
		opacity: 1;
	}

	.hero__sp-frame {
		z-index: 2;
		object-fit: contain;
	}

	.hero__copy {
		top: 0;
		left: 0;
		width: 100%;
		height: 737px;
		padding: 0;
	}

	.hero__copy h1 {
		position: absolute;
		top: 82px;
		right: 8.5%;
		height: 430px;
		margin: 0;
		font-size: clamp(29px, 8.2vw, 40px);
		line-height: 1.65;
		letter-spacing: 0.08em;
		text-align: start;
		writing-mode: vertical-rl;
	}

	.hero__copy-line {
		display: inline-block;
	}

	.hero__copy-line--2 {
		transform: translateY(52px);
	}

	.hero__copy p {
		position: absolute;
		top: clamp(520px, calc(100vw * 581 / 480 + 49px), 630px);
		left: 9%;
		width: 82%;
		margin: 0;
		font-size: clamp(13px, 3.35vw, 17px);
		line-height: 2;
	}

	.home-section {
		height: auto;
		min-height: 0;
		padding: 60px 20px;
	}

	.section-title,
	.home-about .section-title,
	.home-day .section-title,
	.home-news .section-title {
		height: auto;
		padding: 0;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.home-about__content {
		flex-direction: column;
		height: auto;
		margin-top: 40px;
	}

	.home-about__text {
		flex-basis: auto;
		width: 100%;
		padding: 0 16px;
		text-align: center;
	}

	.home-about__text h3,
	.home-day__lead {
		width: 100%;
		height: auto;
		font-size: 21px;
		line-height: 1.8;
	}

	.home-about__text > p {
		width: 100%;
		font-size: 14px;
	}

	.home-about__media {
		flex: none;
		width: 100%;
		height: auto;
		margin-top: 12px;
	}

	.home-about__image {
		width: 100%;
		height: auto;
		margin-top: 0;
	}

	.home-about__media .more-button {
		width: 100%;
	}

	.home-about__button--desktop {
		display: none;
	}

	.more-button.home-about__button--mobile {
		display: flex;
	}

	.more-button {
		width: 100%;
	}

	.more-button span {
		width: min(292px, calc(100% - 45px));
		font-size: 14px;
	}

	.home-day__lead,
	.home-day__cards {
		margin-top: 35px;
	}

	.home-day__cards {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.day-card > img {
		height: auto;
	}

	.home-news__panel,
	.home-news__list,
	.home-information__box {
		width: 100%;
	}

	.home-news__panel {
		min-height: 0;
		padding: 8px 20px 20px;
	}

	.home-news__list {
		padding: 0;
	}

	.news-item {
		grid-template-columns: 92px 82px minmax(0, 1fr);
		align-items: center;
		justify-content: start;
		gap: 8px 12px;
		padding: 16px 0;
		border-bottom: 1px solid #d9e6c9;
	}

	.news-item time {
		width: 92px;
		font-size: 14px;
		line-height: 32px;
		white-space: nowrap;
	}

	.news-item__category {
		justify-self: start;
		width: 82px;
		height: 32px;
		font-size: 13px;
		white-space: nowrap;
	}

	.news-item__title {
		grid-column: 1 / -1;
		width: 100%;
	}

	.text-link {
		width: max-content;
		margin: 12px 0 0 auto;
		font-size: 13px;
		text-align: right;
	}

	.home-information__box {
		flex-direction: column;
		margin-top: 30px;
	}

	.home-information__details {
		flex-basis: auto;
		width: 100%;
	}

	.home-information__details h3 {
		align-self: flex-start;
		text-align: left;
	}

	.home-information__map {
		width: 100%;
		height: auto;
		aspect-ratio: 4 / 3;
	}
}

.site-footer {
	padding: 30px 10px;
	background-color: var(--color-white);
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	max-width: 1080px;
	margin: 0 auto;
}

.site-footer__content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	width: 100%;
	padding: 20px 10px;
	border-radius: 20px;
}

.site-footer__information {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 280px;
	padding: 10px;
}

.site-footer__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 74px;
	padding: 0 10px;
	color: var(--color-text);
	text-decoration: none;
}

.site-footer__logo img {
	display: block;
	width: 49px;
	height: 74px;
	object-fit: contain;
}

.site-footer__logo span {
	width: 179px;
	font-size: 24px;
	font-weight: 500;
	line-height: 42px;
	text-align: center;
}

.site-footer__address {
	display: flex;
	flex-direction: column;
	width: 250px;
	margin: 0;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: 30px;
}

.site-footer__map {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 245px;
	height: 31px;
	color: var(--color-text);
	font-family: "Lexend Zetta", "Zen Maru Gothic", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
}

.site-footer__map img {
	display: block;
	flex: 0 0 20px;
	width: 20px;
	height: 28px;
}

.site-footer__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 180px;
	height: 44px;
	padding: 10px 24px;
	border-radius: 30px;
	background-color: var(--color-cta);
	color: var(--color-white);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
}

.site-footer__button:hover,
.site-footer__map:hover,
.site-footer__nav a:hover {
	opacity: 0.75;
}

.site-footer__button--contact {
	display: none;
}

.site-footer__button--contact img {
	display: block;
	width: 22px;
	height: 23px;
}

.site-footer__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 274px;
	height: 192px;
	padding: 10px;
}

.site-footer__nav ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 245px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__nav li {
	position: relative;
	height: 31px;
	padding-left: 26px;
}

.site-footer__nav li::before {
	position: absolute;
	top: 50%;
	left: 0;
	color: #b9cbaf;
	font-size: 20px;
	line-height: 1;
	content: "●";
	transform: translateY(-50%);
}

.site-footer__nav a {
	display: flex;
	align-items: center;
	height: 100%;
	color: var(--color-text);
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}

.site-footer__copy {
	margin: 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 25px;
	text-align: center;
}

.mobile-fixed-actions {
	display: none;
}

@media (max-width: 767px) {
	body {
		padding-bottom: 103px;
	}

	.header,
	.home .header {
		position: fixed;
		background-color: transparent;
	}

	.site-footer {
		padding: 0;
		background-color: var(--color-white);
	}

	.site-footer__inner {
		width: 100%;
		padding: 30px 10px;
		background-color: var(--color-white);
	}

	.site-footer__content {
		flex-direction: column;
		gap: 30px;
		padding: 20px 10px;
	}

	.site-footer__button--contact {
		display: inline-flex;
	}

	.mobile-fixed-actions {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 200;
		display: flex;
		width: 100%;
		height: 103px;
		background-color: var(--color-white);
		box-shadow: 0 -4px 18px rgb(82 99 77 / 12%);
	}

	.mobile-fixed-actions a {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 5px;
		height: 103px;
		font-size: 20px;
		font-weight: 500;
		line-height: 29px;
		text-align: center;
		text-decoration: none;
	}

	.mobile-fixed-actions__phone {
		width: 37.7083%;
		background-color: var(--color-white);
		color: var(--color-text);
	}

	.mobile-fixed-actions__reservation {
		width: 62.2917%;
		background-color: var(--color-cta);
		color: var(--color-white);
	}

	.mobile-fixed-actions__phone img {
		display: block;
		width: 42px;
		height: 42px;
	}

	.mobile-fixed-actions__reservation img {
		display: block;
		width: 40px;
		height: 40px;
	}
}

/* PCの下層ページはヘッダー下と見出し上の余白を共通化 */
@media (min-width: 1025px) {
	.about-page,
	.day-page,
	.news-page {
		padding-top: 80px;
	}

	.about-page__content,
	.day-page__content,
	.news-page__header {
		padding-top: 48px;
	}
}

/* タブレットの固定ヘッダー（73px）と下層ページ先頭を揃える */
@media (min-width: 768px) and (max-width: 1024px) {
	.about-page,
	.day-page,
	.news-page,
	.news-single-page,
	.information-page {
		padding-top: 73px;
	}

	.reservation-hero {
		padding-top: 95px;
	}
}

/* SPの固定ヘッダーをコンパクトに統一 */
@media (max-width: 767px) {
	body:not(.home) .site-header__inner,
	body:not(.home) .site-header__logo-link,
	body:not(.home) .site-header__menu-toggle {
		height: 64px;
	}

	body:not(.home) .site-header__menu {
		padding-top: 74px;
	}

	.about-page,
	.day-page,
	.news-page,
	.news-single-page,
	.information-page {
		padding-top: 64px;
	}

	.reservation-hero {
		padding-top: 91px;
	}

	body:not(.home) .site-header__logo-link {
		transform: translateY(3px);
	}
}
