/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/

/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * rclamp(): レスポンシブな clamp() 値を生成
 *
 * $minVw の画面幅で $min、$maxVw の画面幅で $max になり、
 * 間は線形に変化する CSS clamp() を返す。
 *
 * 引数 (すべて単位なし px の数値):
 *   $min    最小ピクセル値 (必須)
 *   $max    最大ピクセル値 (必須)
 *   $minVw  この画面幅で $min に固定 (省略時 375)
 *   $maxVw  この画面幅で $max に固定 (省略時 1200)
 *
 * 使用例:
 *   // 基本: 375〜1200px の間で 24px〜64px に変化
 *   font-size: rclamp(24, 64);
 *
 *   // ビューポート範囲を指定
 *   font-size: rclamp(24, 64, 768, 1440);
 *
 *   // どんなプロパティでも使える
 *   padding: rclamp(16, 40);
 *   gap:     rclamp(8, 20);
 *   margin-top: rclamp(40, 120);
******************************************/

html {
	font-size: 16px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 3.75rem;
}

body {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	color: #231815;
	background-color: #fbfbfb;
	overflow-x: clip;
}

main {
	overflow-x: clip;
	margin-top: 5.625rem;
	transition: margin-top 0.3s ease;
}

body:has(.header.is-scrolled) main {
	margin-top: 3.75rem;
}

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

iframe {
	max-width: 100%;
	display: block;
	border: 0;
}

/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* remove all animations and transitions for people that prefer not to see them */

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.u-pc {
	display: none;
}

.u-sp {
	display: none;
}

html:lang(en) .u-sp.u-en {
	display: block;
}

.u-sp400 {
	display: none;
}

.u-sp450 {
	display: none;
}

.u-sp500 {
	display: none;
}

.u-sp550 {
	display: none;
}

.u-sp600 {
	display: none;
}

.u-sp650 {
	display: none;
}

.u-sp700 {
	display: none;
}

.about__course {
	padding-block: 3.75rem 5rem;
	background-color: #fcfaf2;
}

.about__course-list {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.about__course-item {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.about__course-name {
	position: relative;
	padding-left: 2.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: #998675;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.about__course-name::before {
	content: "";
	position: absolute;
	left: 0;
	top: -0.125rem;
	width: 2rem;
	aspect-ratio: 1/1;
	background: url(../images/course-icon.png) no-repeat center center/contain;
}

.about__course-desc {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	color: #000000;
	font-weight: 400;
	font-family: "Zen Maru Gothic", sans-serif;
}

.course-gallery {
	padding-block: 2.5rem;
	background-color: #f5f1df;
}

main[class] .course-gallery {
	background-color: #f5f1df;
}

.about__feature {
	padding-block: 3.75rem 5rem;
	background-color: #f5f1df;
}

.about__feature-title.section-title {
	text-align: center;
}

.about__feature-content {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
}

.about__feature-image {
	width: 100%;
	border-radius: 2.5rem;
	overflow: hidden;
}

.about__feature-image img,
.about__feature-image picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 462/307;
	object-fit: cover;
}

.about__feature-body {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.875rem;
}

.about__feature-body-text {
	color: #000000;
	font-size: 1rem;
	font-weight: 400;
	font-family: "Zen Maru Gothic", sans-serif;
	line-height: 1.75;
	letter-spacing: 0.1em;
}

.about__feature-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #42210b;
	letter-spacing: 0.14em;
	line-height: 1.5;
	margin-bottom: 1.25rem;
	text-align: center;
}

.about__feature-list {
	display: flex;
	flex-direction: column;
}

.about__feature-item {
	color: #000000;
	font-size: 1rem;
	font-weight: 400;
	font-family: "Zen Maru Gothic", sans-serif;
	line-height: 1.75;
	letter-spacing: 0.1em;
}

.about__greeting {
	position: relative;
	z-index: 1;
	padding-block: 2.5rem;
	background-color: #fcfaf2;
}

.about__greeting-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.about__greeting-title.section-title {
	text-align: center;
}

.about__greeting-body {
	width: 100%;
}

.about__greeting-sub-title {
	margin-top: 2rem;
	color: #998675;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
}

.about__greeting-texts {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.about__greeting-text {
	font-size: 1rem;
	line-height: 1.625;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #000000;
}

.about__greeting-sign {
	margin-top: 2rem;
	color: #998675;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: right;
}

.about__greeting-image {
	width: 100%;
}

.about__greeting-image picture,
.about__greeting-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.breadcrumb {
	padding-inline: 1.25rem;
	margin-top: 0.75rem;
}

.breadcrumb__inner {
	display: flex;
	align-items: center;
	width: 100%;
	margin-inline: auto;
}

.breadcrumb__item {
	font-size: 0.75rem;
	font-weight: 400;
	color: #4a5565;
	letter-spacing: -0.011em;
	line-height: 1.4285714286;
	font-family: "Zen Maru Gothic", sans-serif;
}

.breadcrumb__link {
	color: #4a5565;
}

.breadcrumb__separator {
	display: flex;
	align-items: center;
	margin-left: 0.375rem;
}

.breadcrumb__separator svg {
	width: 0.875rem;
	height: 0.875rem;
}

.breadcrumb__item--current {
	margin-left: 0.375rem;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 11.5625rem;
	padding: 0.625rem 1.75rem;
	font-size: 1rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
	background-color: #94a54e;
	border: 0.0625rem solid #94a54e;
	border-radius: 62.5rem;
	transition: background-color 0.3s, color 0.3s;
	cursor: pointer;
}

.card-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
}

.card-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.card-image img,
.card-image picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 375/250;
	object-fit: cover;
}

.card-label {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #42210b;
	letter-spacing: 0.1em;
	line-height: 1;
}

.card-mark {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background-color: #94a54e;
	flex-shrink: 0;
}

.drawer {
	position: fixed;
	inset: 0;
	z-index: 999;
	visibility: hidden;
	pointer-events: none;
	transition: visibility 0.3s ease;
}

.drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.drawer__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(35, 24, 21, 0.5);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.drawer.is-open .drawer__overlay {
	opacity: 1;
}

.drawer__content {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 25rem;
	height: 100vh;
	height: 100dvh;
	background-color: #fff;
	padding: 6.875rem 1.75rem 2.5rem;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.drawer.is-open .drawer__content {
	transform: translateX(0);
}

.drawer__nav-list {
	display: flex;
	flex-direction: column;
}

.drawer__nav-item a {
	display: block;
	padding-block: 1.25rem;
	font-size: 1rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #42210b;
	letter-spacing: 0.14em;
	line-height: 1.5;
	border-bottom: 0.0625rem solid rgba(153, 134, 117, 0.3);
	transition: color 0.3s ease;
}

.drawer__reserve {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.25rem;
	padding: 1.25rem;
	background-color: #94a54e;
	color: #fff;
	border: 0.0625rem solid #94a54e;
	border-radius: 0.5rem;
	text-align: center;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.drawer__reserve-label {
	font-size: 1rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

.drawer__reserve-tel {
	font-size: 1.375rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.1em;
	line-height: 1;
	text-decoration: underline;
	text-underline-offset: 0.375rem;
}

.drawer__reserve-addr {
	font-size: 0.75rem;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	margin-top: 0.5rem;
}

body.is-drawer-open {
	overflow: hidden;
}

.footer {
	background-color: #fcfaf2;
	padding-block: 3.75rem 0rem;
	color: #533e31;
}

.footer__logo {
	width: 18.75rem;
	margin-inline: auto;
}

.footer__logo img,
.footer__logo picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 506/160;
	object-fit: contain;
}

.footer__address {
	margin-top: 2.5rem;
	margin-inline: auto;
	color: #000000;
	font-size: 1.125rem;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
	letter-spacing: 0.08em;
	font-family: "Zen Maru Gothic", sans-serif;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.footer__body {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}

.footer__qr {
	width: 11.25rem;
}

.footer__qr img,
.footer__qr picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 211/206;
	object-fit: contain;
}

.footer__info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	text-align: center;
}

.footer__marks {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 1.125rem;
	font-weight: 500;
	color: #000000;
	letter-spacing: 0.08em;
	line-height: 1.5;
}

.footer__note {
	font-size: 1.125rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	color: #000000;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 500;
	text-align: left;
}

.footer__copyright {
	margin-top: 8.125rem;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	color: #fff;
	line-height: 1.5;
	padding-block: 1rem;
	background: #94a54e;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;
}

.fv-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.fv-image img,
.fv-image picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 1920/1200;
	object-fit: cover;
}

.fv-title {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	color: #94a54e;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
	padding-block: 2.5rem;
	background-color: rgba(255, 255, 255, 0.8);
	width: 100%;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	display: flex;
	align-items: stretch;
	height: 5.625rem;
	overflow: hidden;
	transition: height 0.3s ease;
}

.header.is-scrolled {
	height: 3.75rem;
}

.header__logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header__logo a {
	max-width: 15rem;
	width: 100%;
	transition: max-width 0.3s ease;
}

.header.is-scrolled .header__logo a {
	max-width: 11.25rem;
}

.header__logo img,
.header__logo picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 380/120;
	object-fit: contain;
}

.header__nav {
	display: none;
}

.header__nav-list {
	display: flex;
	gap: 1.75rem;
}

.header__nav-item a {
	display: flex;
	align-items: center;
	height: 100%;
	color: #42210b;
	font-size: 0.875rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	line-height: 1.5;
	letter-spacing: 0.14em;
	transition: color 0.3s ease;
}

.header__reserve {
	display: none;
}

.header__reserve-label {
	display: block;
	font-size: 1rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

.header__reserve-tel {
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.1em;
	line-height: 1;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 0.375rem;
}

.header__reserve-addr {
	display: block;
	font-size: 0.625rem;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-align: center;
	margin-top: 0.875rem;
}

.header__hamburger {
	margin-left: auto;
	margin-right: 1.25rem;
	align-self: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 1.75rem;
	height: 1.25rem;
	background: transparent;
	border: 0;
	padding: 0;
	cursor: pointer;
	z-index: 1100;
}

.header__hamburger-line {
	display: block;
	width: 100%;
	height: 0.125rem;
	background-color: #94a54e;
	border-radius: 0.125rem;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
	transform: translateY(0.5625rem) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
	opacity: 0;
}

.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
	transform: translateY(-0.5625rem) rotate(-45deg);
}

.inner {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
	padding-inline: 20px;
}

.loading {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: radial-gradient(circle at center, #fcfaf2 0%, #f5f1df 70%);
}

.loading.is-hidden {
	visibility: hidden;
	pointer-events: none;
}

.loading__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.75rem;
	padding-inline: 1.5rem;
}

.loading__stage {
	position: relative;
	width: min(22.5rem, 80vw);
	min-height: 8.75rem;
	display: grid;
	place-items: center;
}

.loading__logo-group {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.loading__logo {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-size: clamp(1.75rem, 6vw, 2.5rem);
	letter-spacing: 0.08em;
	color: #42210b;
	margin: 0;
	opacity: 0;
	visibility: hidden;
}

.loading__caption {
	font-family: "Roboto", sans-serif;
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	color: #533e31;
	margin: 0;
	opacity: 0;
	visibility: hidden;
}

.loading__bubble {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	border: 0.0625rem solid rgba(191, 211, 103, 0.55);
	box-shadow: inset 0.125rem 0.125rem 0.25rem rgba(255, 255, 255, 0.9);
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
}

.loading__bubble--1 {
	width: 1.25rem;
	height: 1.25rem;
	left: 2.5rem;
	top: 1.25rem;
}

.loading__bubble--2 {
	width: 0.8125rem;
	height: 0.8125rem;
	right: 3.125rem;
	top: 0.5rem;
}

.loading__bubble--3 {
	width: 1.625rem;
	height: 1.625rem;
	right: 1.25rem;
	bottom: 0.625rem;
}

.loading__bubble--4 {
	width: 0.75rem;
	height: 0.75rem;
	left: 3.75rem;
	bottom: 1.25rem;
}

.loading__bubble--5 {
	width: 1rem;
	height: 1rem;
	left: 0.5rem;
	bottom: 3.125rem;
}

.loading__bubble--6 {
	width: 0.625rem;
	height: 0.625rem;
	right: 0.5rem;
	top: 3.75rem;
}

.loading__paws {
	display: flex;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.loading__paw {
	position: relative;
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	opacity: 0;
	visibility: hidden;
}

.loading__toe,
.loading__pad {
	position: absolute;
	display: block;
	border-radius: 50%;
	background: #bfd367;
}

.loading__toe:nth-child(1) {
	width: 0.4375rem;
	height: 0.4375rem;
	left: 0.25rem;
	top: 0.3125rem;
}

.loading__toe:nth-child(2) {
	width: 0.5rem;
	height: 0.5rem;
	left: 0.625rem;
	top: 0.0625rem;
}

.loading__toe:nth-child(3) {
	width: 0.4375rem;
	height: 0.4375rem;
	right: 0.25rem;
	top: 0.3125rem;
}

.loading__pad {
	width: 1rem;
	height: 0.8125rem;
	left: 0.375rem;
	bottom: 0.25rem;
	border-radius: 55% 55% 48% 48%;
}

.mv {
	padding-block: 2.5rem 3.75rem;
}

.mv-content {
	display: flex;
	flex-direction: column-reverse;
	gap: 2rem;
	align-items: center;
}

.mv__catch {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 0.9375rem;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	color: #998675;
	letter-spacing: 0.2em;
	line-height: 1.75;
}

.mv__catch p {
	margin: 0;
}

.mv__image {
	width: 100%;
	max-width: 56.25rem;
}

.mv__image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 898/598;
	object-fit: cover;
}

.news__archive {
	padding-block: 3.75rem 5rem;
	background-color: #f5f1df;
}

.news__list {
	width: 100%;
	max-width: 62.5rem;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	border-top: 0.0625rem dotted #000000;
}

.news__item {
	border-bottom: 0.0625rem dotted #000000;
}

.news__link {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 0.5rem;
	color: #000000;
	text-decoration: none;
	transition: color 0.3s ease;
}

.news__date {
	flex-shrink: 0;
	font-size: 1rem;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.08em;
	line-height: 1.5;
	font-weight: 500;
	color: #000000;
	transition: color 0.3s ease;
}

.news__item-title {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #000000;
	transition: color 0.3s ease;
}

.news__pagination {
	margin-top: 3.75rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.news__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding-inline: 0.625rem;
	font-size: 0.875rem;
	font-weight: 500;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #000000;
	border: 0.0625rem solid rgba(0, 0, 0, 0.3);
	border-radius: 0.25rem;
	text-decoration: none;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.news__pagination .page-numbers.current {
	background-color: #94a54e;
	border-color: #94a54e;
	color: #fff;
}

.news__empty {
	max-width: 45rem;
	margin-inline: auto;
	padding-block: 2.5rem;
	text-align: center;
	font-size: 1rem;
	color: #533e31;
}

.news__single {
	padding-block: 3.75rem 5rem;
	background-color: #f5f1df;
}

.news__single-inner {
	max-width: 50rem;
}

.news__single-header {
	margin-bottom: 2rem;
	padding-bottom: 1.25rem;
	border-bottom: 0.0625rem dotted #000000;
}

.news__single-date {
	display: block;
	font-size: 0.875rem;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.08em;
	line-height: 1.5;
	font-weight: 500;
	color: #533e31;
}

.news__single-content {
	font-size: 1rem;
	line-height: 1.9;
	letter-spacing: 0.06em;
	color: #000000;
}

.news__single-content > * + * {
	margin-top: 1.25rem;
}

.news__single-content h2 {
	margin-top: 3rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #94a54e;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.news__single-content h3 {
	margin-top: 2.5rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: #42210b;
	letter-spacing: 0.08em;
	line-height: 1.5;
}

.news__single-content p {
	margin: 0;
}

.news__single-content ul,
.news__single-content ol {
	padding-left: 1.5rem;
	list-style: revert;
}

.news__single-content ul li,
.news__single-content ol li {
	list-style: revert;
}

.news__single-content a {
	color: #94a54e;
	text-decoration: underline;
	text-underline-offset: 0.125rem;
	transition: opacity 0.3s ease;
}

.news__single-content img {
	max-width: 100%;
	height: auto;
	border-radius: 0.5rem;
}

.news__single-content blockquote {
	margin-block: 1.5rem;
	padding: 1rem 1.25rem;
	border-left: 0.25rem solid #94a54e;
	background-color: #fcfaf2;
	font-size: 0.9375rem;
	color: #533e31;
}

.news__single-nav {
	margin-top: 3.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.news__single-nav-link {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.25rem;
	border: 0.0625rem solid rgba(0, 0, 0, 0.2);
	border-radius: 0.375rem;
	text-decoration: none;
	color: #000000;
	transition: background-color 0.3s ease, border-color 0.3s ease;
}

.news__single-nav-link--next {
	text-align: right;
}

.news__single-nav-label {
	font-size: 0.75rem;
	font-weight: 700;
	color: #94a54e;
	letter-spacing: 0.08em;
}

.news__single-nav-title {
	font-size: 0.875rem;
	line-height: 1.5;
	letter-spacing: 0.06em;
	color: #42210b;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.news__single-actions,
.news__archive-actions {
	margin-top: 3.75rem;
	text-align: center;
}

.not-found__main {
	padding-block: 3.75rem 5rem;
	background-color: #fcfaf2;
}

.not-found__inner {
	max-width: 45rem;
	text-align: center;
}

.not-found__code {
	font-size: 4.5rem;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	color: #94a54e;
	letter-spacing: 0.1em;
	line-height: 1;
}

.not-found__texts {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.not-found__text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.06em;
	color: #000000;
	font-weight: 400;
}

.not-found__actions {
	margin-top: 2.5rem;
}

.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
}

.pagination__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding-inline: 0.75rem;
	border: 0.0625rem solid #d1d5dc;
	border-radius: 0.25rem;
	font-size: 0.875rem;
	font-weight: 400;
	color: #0a0a0a;
	letter-spacing: -0.02em;
	line-height: 1.5;
	font-family: "Zen Maru Gothic", sans-serif;
	margin-left: 0.375rem;
	transition: background-color 0.3s, color 0.3s;
}

.pagination__btn:first-child {
	margin-left: 0;
}

.pagination__btn--current {
	background-color: #00bc7d;
	border-color: #00bc7d;
	color: #fff;
}

.pagination__btn--disabled {
	opacity: 0.5;
	pointer-events: none;
}

.pagination__btn--prev,
.pagination__btn--next {
	min-width: 3.25rem;
}

.pet-hotel__booking {
	padding-block: 3.75rem 5rem;
}

.pet-hotel__booking-text {
	margin-top: 2.5rem;
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	color: #000000;
	font-weight: 400;
	max-width: 27.5rem;
	margin-inline: auto;
}

.pet-hotel__booking-actions {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	width: 100%;
	max-width: 39.375rem;
	margin-inline: auto;
}

.pet-hotel__booking-button {
	width: 100%;
	padding-block: 1.125rem;
	font-size: 0.9375rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
	font-weight: 700;
	color: #fff;
	border: 0.0625rem solid #94a54e;
	background-color: #94a54e;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	border-radius: 1.5rem;
}

.pet-hotel__feature {
	padding-block: 5rem 2.5rem;
	background-color: #f5f1df;
}

.pet-hotel__feature-inner {
	position: relative;
	z-index: 2;
}

.pet-hotel__feature-main {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 100%;
}

.pet-hotel__feature-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	width: 100%;
}

.pet-hotel__feature-item {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.pet-hotel__feature-item-title {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #94a54e;
	letter-spacing: 0.1em;
	line-height: 1.25;
	padding-left: 1.75rem;
}

.pet-hotel__feature-item-title::before {
	content: "";
	position: absolute;
	top: 0.25rem;
	left: 0;
	width: 1.125rem;
	aspect-ratio: 1/1;
	background-color: #94a54e;
	border-radius: 50%;
}

.pet-hotel__feature-item-text {
	margin-top: 0.25rem;
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.025em;
	color: #000000;
	font-weight: 400;
	padding-left: 1.75rem;
}

.pet-hotel__feature-image {
	width: 100%;
}

.pet-hotel__feature-image {
	border-radius: 1.25rem;
	overflow: hidden;
}

.pet-hotel__feature-image picture,
.pet-hotel__feature-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 512/450;
	object-fit: cover;
}

.pet-hotel__feature-photos {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	width: 100%;
	max-width: 73.75rem;
}

.pet-hotel__feature-photo {
	flex: 1;
}

.pet-hotel__feature-photo img,
.pet-hotel__feature-photo picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 526/377;
	object-fit: cover;
}

.pet-hotel__feature-note {
	margin-top: 2.5rem;
	width: 100%;
	max-width: 40rem;
	margin-inline: auto;
	border: 0.0625rem dashed #998675;
	padding: 1.25rem 1.5rem;
}

.pet-hotel__feature-note-title,
.pet-hotel__feature-note-text {
	font-weight: 400;
	color: #000000;
	letter-spacing: 0.025em;
	font-size: 1rem;
	line-height: 1.75;
}

.pet-hotel__lead {
	padding-block: 3.75rem;
	background-color: #fcfaf2;
}

.pet-hotel__lead-text {
	margin-top: 1.5rem;
	font-size: 1.125rem;
	line-height: 1.6666666667;
	letter-spacing: 0.025em;
	font-weight: 700;
	color: #998675;
	max-width: 47.5rem;
}

.pet-hotel__lead-note {
	margin-top: 1.5rem;
	width: 100%;
	max-width: 47.5rem;
	border: 0.0625rem dashed #998675;
	padding: 1.25rem 1.5rem;
	font-size: 0.875rem;
	line-height: 2;
	letter-spacing: 0.025em;
	color: #000000;
	font-weight: 400;
}

.section-bg-left {
	position: relative;
	isolation: isolate;
}

.section-bg-left::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 0rem;
	left: -6.25rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-bg-left2 {
	position: relative;
	isolation: isolate;
}

.section-bg-left2::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 1.75rem;
	left: -6.25rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-bg-left3 {
	position: relative;
	isolation: isolate;
}

.section-bg-left3::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 37.5rem;
	left: -6.25rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-bg-left4 {
	position: relative;
}

.section-bg-left4::before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: 60rem;
	left: -6.25rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-bg-right {
	position: relative;
	isolation: isolate;
}

.section-bg-right::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -21.25rem;
	right: -18.75rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-bg-right2 {
	position: relative;
	isolation: isolate;
}

.section-bg-right2::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: 1.5rem;
	right: -18.75rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-bg-right3 {
	position: relative;
	isolation: isolate;
}

.section-bg-right3::before {
	content: "";
	position: absolute;
	z-index: -1;
	bottom: -3.75rem;
	right: -18.75rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-bg-right4 {
	position: relative;
}

.section-bg-right4::before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -7.5rem;
	right: -18.75rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-bg-right5 {
	position: relative;
}

.section-bg-right5::before {
	content: "";
	position: absolute;
	z-index: 1;
	bottom: -7.5rem;
	right: -18.75rem;
	width: 37.5rem;
	aspect-ratio: 981/862;
	background: url(../images/bg-icon.png) no-repeat center center/contain;
}

.section-title {
	font-size: 1.5rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #94a54e;
	letter-spacing: 0.2em;
	line-height: 1.5;
	text-align: center;
}

.section-title--left {
	text-align: center;
}

.section-title--en {
	font-family: "Roboto", sans-serif;
	letter-spacing: 0.04em;
}

.senior__feature {
	padding-block: 3.75rem 5rem;
	background-color: #fcfaf2;
}

.senior__feature-lead {
	margin-top: 2rem;
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	color: #000000;
	font-weight: 400;
}

.senior__feature-list {
	margin-top: 3rem;
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
}

.senior__feature-item {
	position: relative;
	display: grid;
	gap: 1.25rem;
	justify-items: center;
}

.senior__feature-item:not(:last-child)::after {
	content: "";
	position: absolute;
	left: 1.25rem;
	right: 1.25rem;
	bottom: -1.75rem;
	height: 0.125rem;
	background-color: #94a54e;
}

.senior__feature-item-title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	line-height: 1;
}

.senior__feature-item-title-label {
	background-color: #94a54e;
	color: #fff;
	padding: 0.625rem 1.25rem;
	font-size: 1.125rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	line-height: 1;
	letter-spacing: 0.1em;
}

.senior__feature-item-body {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 28.125rem;
	margin-inline: auto;
}

.senior__feature-text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.025em;
	font-weight: 400;
	color: #000000;
}

.senior__feature-bullets {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.025em;
	font-weight: 400;
	color: #000000;
}

.senior__feature-bullets li {
	position: relative;
	padding-left: 1rem;
}

.senior__feature-bullets li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.senior__lead {
	padding-block: 3.75rem;
	background-color: #fcfaf2;
}

.senior__lead-texts {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 47.5rem;
}

.senior__lead-text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.025em;
	font-weight: 400;
	color: #000000;
}

.senior__lead-note {
	margin-top: 1.5rem;
	width: 100%;
	max-width: 47.5rem;
	border: 0.0625rem dashed #998675;
	padding: 1.25rem 1.5rem;
	font-size: 0.875rem;
	line-height: 2;
	letter-spacing: 0.025em;
	color: #000000;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.senior__points {
	padding-block: 3.75rem 5rem;
	background-color: #f5f1df;
}

.senior__points-list {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.senior__points-item {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.senior__points-item-title {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 1.125rem;
	font-weight: 700;
	color: #94a54e;
	letter-spacing: 0.1em;
	line-height: 1.75;
}

.senior__points-item-title::before {
	content: "";
	flex-shrink: 0;
	width: 1.5625rem;
	aspect-ratio: 1/1;
	border-radius: 50%;
	background-color: #94a54e;
	margin-top: 0.25rem;
}

.senior__points-item-title::after {
	content: "";
	flex: 1;
	height: 0.0625rem;
	background-color: #94a54e;
	align-self: center;
}

.senior__points-item-body {
	padding-left: 2.3125rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.senior__points-text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.025em;
	font-weight: 400;
	color: #000000;
}

.senior__points-bullets {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-left: 1.25rem;
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.025em;
	font-weight: 400;
	color: #000000;
}

.senior__points-bullets li {
	position: relative;
	padding-left: 1.25rem;
}

.senior__points-bullets li::before {
	content: "";
	position: absolute;
	top: 0.6875rem;
	left: 0.125rem;
	width: 0.3125rem;
	height: 0.3125rem;
	border-radius: 50%;
	background-color: currentColor;
}

.top__about {
	padding-block: 3.75rem 5rem;
	background-color: #f5f1df;
}

.top__about-lead {
	margin-top: 2.5rem;
	font-size: 1rem;
	line-height: 2;
	letter-spacing: 0.1em;
	color: #998675;
	font-weight: 700;
	max-width: 55rem;
	margin-inline: auto;
}

.top__about-list {
	margin-top: 3.5rem;
	max-width: 73.75rem;
}

.top__about-button {
	margin-top: 5rem;
	text-align: center;
}

.top__access {
	padding-block: 3.75rem 5rem;
	background-color: #fcfaf2;
}

.top__access-map {
	margin-top: 2.5rem;
}

.top__access-map iframe {
	width: 100%;
	aspect-ratio: 1280/600;
}

.top__access-bottom {
	margin-top: 3rem;
	width: 100%;
	max-width: 80rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.top__access-info {
	flex: 1;
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

.top__access-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.top__access-row {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.top__access-row-title {
	font-size: 1rem;
	font-weight: 700;
	color: #000000;
	letter-spacing: 0.1em;
	flex-shrink: 0;
}

.top__access-row-description {
	font-size: 1rem;
	font-weight: 500;
	color: #000000;
	letter-spacing: 0.08em;
	line-height: 1.5;
}

.top__access-row a {
	color: inherit;
	text-underline-offset: 0.125rem;
}

.top__access-reserve {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	flex-direction: column-reverse;
}

.top__access-reserve-qr {
	flex-shrink: 0;
	width: 11.25rem;
	margin-inline: auto;
}

.top__access-reserve-qr img,
.top__access-reserve-qr picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.top__access-reserve-text {
	flex: 1;
	color: #000000;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.08em;
}

.top__access-exterior {
	width: 100%;
}

.top__access-exterior picture,
.top__access-exterior img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 416/322;
}

.top__instagram {
	padding-block: 3.75rem 5rem;
}

.top__instagram-container {
	margin-top: 2.5rem;
}

.top__instagram-button {
	margin-top: 5rem;
	text-align: center;
}

.top__news {
	padding-block: 3.75rem 5rem;
	background-color: #fcfaf2;
}

.top__news-list {
	margin-top: 5rem;
	width: 100%;
	max-width: 62.5rem;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
}

.top__news-item {
	border-bottom: 0.0625rem dotted #000000;
}

.top__news-item:first-child {
	border-top: 0.0625rem dotted #000000;
}

.top__news-link {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 0.5rem;
	color: #000000;
}

a.top__news-link {
	text-decoration: none;
	transition: color 0.3s ease;
}

.top__news-date {
	flex-shrink: 0;
	font-size: 1rem;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.08em;
	line-height: 1.5;
	font-weight: 500;
	color: #000000;
	transition: color 0.3s ease;
}

.top__news-item-title {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.5;
	color: #000000;
	transition: color 0.3s ease;
}

.top__news-button {
	margin-top: 5rem;
	text-align: center;
}

.top__philosophy {
	padding-block: 3.75rem 5rem;
	background-color: #fcfaf2;
}

.top__philosophy-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
}

.top__philosophy-body {
	width: 100%;
	display: contents;
}

.top__philosophy-texts {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	order: 2;
}

.top__philosophy-text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.08em;
	color: #998675;
	font-weight: 700;
}

.top__philosophy-button {
	margin-top: 2.5rem;
	text-align: center;
	order: 3;
}

.top__philosophy-image {
	width: 100%;
	order: 1;
}

.top__philosophy-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 566/510;
	object-fit: cover;
}

.trimming__beginner {
	padding-block: 3.75rem 5rem;
	background-color: #f5f1df;
}

.trimming__beginner-inner {
	position: relative;
	z-index: 2;
}

.trimming__beginner-main {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
	width: 100%;
}

.trimming__beginner-body {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.trimming__beginner-text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	color: #000000;
	font-weight: 400;
}

.trimming__beginner-list {
	display: flex;
	flex-direction: column;
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	color: #000000;
	font-weight: 400;
	padding-left: 0.25rem;
}

.trimming__beginner-list li {
	position: relative;
	padding-left: 1.125rem;
	width: -moz-fit-content;
	width: fit-content;
}

.trimming__beginner-list li::before {
	content: "・";
	position: absolute;
	left: 0;
}

.trimming__beginner-image {
	width: 100%;
	border-radius: 1.25rem;
	overflow: hidden;
}

.trimming__beginner-image img,
.trimming__beginner-image picture {
	width: 100%;
	height: 100%;
	aspect-ratio: 345/450;
	object-fit: cover;
}

.trimming__lead {
	padding-block: 3.75rem;
	background-color: #fcfaf2;
}

.trimming__lead-inner {
	position: relative;
	z-index: 2;
}

.trimming__lead-texts {
	margin-top: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	max-width: 47.5rem;
}

.trimming__lead-text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.025em;
	font-weight: 400;
	color: #000000;
}

.trimming__lead-note {
	margin-top: 1.5rem;
	width: 100%;
	max-width: 47.5rem;
	border: 0.0625rem dashed #998675;
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.025em;
	color: #000000;
	font-weight: 400;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.trimming__request {
	padding-block: 3.75rem 5rem;
	background-color: #fcfaf2;
}

.trimming__request-body {
	margin-top: 2.5rem;
	width: 100%;
	max-width: 45rem;
	display: flex;
	flex-direction: column;
	margin-inline: auto;
	gap: 2rem;
}

.trimming__request-list {
	list-style: none;
	display: flex;
	flex-direction: column;
}

.trimming__request-list-item {
	color: #000000;
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	font-weight: 400;
}

.trimming__request-text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	color: #000000;
	font-weight: 400;
}

.trimming__request-note {
	margin-top: 3rem;
	width: 100%;
	max-width: 45rem;
	margin-inline: auto;
	border: 0.0625rem dashed #998675;
	padding: 1.25rem 1.5rem;
}

.trimming__request-note-title {
	color: #ff0000;
	font-weight: 700;
	font-size: 1.375rem;
	line-height: 1;
	letter-spacing: 0.1em;
}

.trimming__request-note-texts {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.trimming__request-note-text {
	font-size: 1rem;
	line-height: 1.75;
	letter-spacing: 0.1em;
	color: #000000;
	font-weight: 400;
}

.about + .footer {
	background-color: #fcfaf2;
}

.top__philosophy-button,
.top__about-button,
.top__news-button {
	min-width: 12.5rem;
}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
}

}

@media (any-hover: hover) {

.button:hover {
	background-color: #fff;
	color: #94a54e;
}

.drawer__nav-item a:hover {
	color: #94a54e;
}

.drawer__reserve:hover {
	background-color: #fff;
	color: #94a54e;
}

.header__nav-item a:hover {
	color: #94a54e;
}

.header__reserve:hover {
	background-color: #fff;
	color: #94a54e;
}

a.news__link:hover,
a.news__link:hover .news__date,
a.news__link:hover .news__item-title {
	color: #94a54e;
}

.news__pagination a.page-numbers:hover {
	background-color: #94a54e;
	border-color: #94a54e;
	color: #fff;
}

.news__single-content a:hover {
	opacity: 0.7;
}

.news__single-nav-link:hover {
	background-color: #fcfaf2;
	border-color: #94a54e;
	opacity: 1;
}

.pet-hotel__booking-button:hover {
	background-color: #fff;
	color: #94a54e;
	border-color: #94a54e;
}

a.top__news-link:hover,
a.top__news-link:hover .top__news-date,
a.top__news-link:hover .top__news-item-title {
	color: #94a54e;
}

}

@media screen and (min-width: 768px) {

html {
	font-size: 1.3559322034vw;
}

html {
	scroll-padding-top: 4.375rem;
}

main {
	margin-top: 7.5rem;
}

body:has(.header.is-scrolled) main {
	margin-top: 4.5rem;
}

a:hover {
	opacity: 0.7;
}

.u-pc {
	display: block;
}

.about__course {
	padding-block: 6.25rem 12.5rem;
}

.about__course-list {
	margin-top: 3.75rem;
	gap: 5rem;
}

.about__course-item {
	gap: 1.5rem;
}

.about__course-name {
	font-size: 1.25rem;
	padding-left: 3.25rem;
}

.about__course-name::before {
	top: -0.25rem;
	width: 2.5rem;
}

.about__course-desc {
	font-size: 1rem;
}

.course-gallery {
	padding-block: 3.125rem;
}

.about__feature {
	padding-block: 6.25rem 7.5rem;
}

.about__feature-content {
	margin-top: 4.5rem;
	flex-direction: row;
	gap: 3.75rem;
	align-items: center;
	justify-content: center;
}

.about__feature-image {
	max-width: 28.9375rem;
}

.about__feature-body {
	flex: 1;
	max-width: 35.625rem;
}

.about__feature-title {
	font-size: 1.375rem;
	text-align: left;
}

.about__greeting {
	padding-block: 5rem;
}

.about__greeting-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	grid-template-areas: "title title" "body  image";
	-moz-column-gap: 3.75rem;
	column-gap: 3.75rem;
	row-gap: 2.5rem;
	align-items: center;
	max-width: 62.5rem;
	width: 100%;
	margin-inline: auto;
}

.about__greeting-title.section-title {
	grid-area: title;
	text-align: left;
}

.about__greeting-body {
	grid-area: body;
	max-width: 37.5rem;
}

.about__greeting-sub-title {
	margin-top: 0rem;
}

.about__greeting-texts {
	margin-top: 2.5rem;
	gap: 2rem;
}

.about__greeting-text {
	font-size: 1rem;
}

.about__greeting-sign {
	margin-top: 2.5rem;
}

.about__greeting-image {
	grid-area: image;
	max-width: 21.25rem;
}

.breadcrumb {
	padding-inline: 2rem;
	margin-top: 1rem;
}

.breadcrumb__inner {
	max-width: 70.5rem;
}

.breadcrumb__item {
	font-size: 0.875rem;
}

.breadcrumb__separator {
	margin-left: 0.5rem;
}

.breadcrumb__separator svg {
	width: 1rem;
	height: 1rem;
}

.breadcrumb__item--current {
	margin-left: 0.5rem;
}

.card-list {
	flex-direction: row;
	gap: 1.5rem;
}

.drawer {
	display: none;
}

.footer {
	padding-block: 5rem 0rem;
}

.footer__logo {
	width: 31.625rem;
}

.footer__address {
	margin-top: 4.5rem;
}

.footer__body {
	flex-direction: row;
	align-items: flex-start;
	gap: 2.5rem;
}

.footer__qr {
	width: 13.1875rem;
}

.footer__info {
	text-align: left;
}

.fv-image img,
.fv-image picture {
	aspect-ratio: 1920/600;
}

.fv-title {
	padding-block: 6.25rem;
	font-size: 1.875rem;
}

.header {
	height: 7.5rem;
}

.header.is-scrolled {
	height: 4.5rem;
}

.header__logo a {
	max-width: clamp(124px, -46.6666666667px + 22.2222222222vw, 380px);
}

.header.is-scrolled .header__logo a {
	max-width: 13.75rem;
}

.header__nav {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.header__nav-list {
	gap: clamp(14px, -8.6666666667px + 2.9513888889vw, 48px);
	align-items: end;
}

.header__nav-item a {
	font-size: clamp(0.875rem, 0.7917rem + 0.1736vw, 1rem);
	padding-bottom: 1rem;
}

.header__reserve {
	margin-left: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0rem;
	padding: 0.75rem clamp(8px, -5.3333333333px + 1.7361111111vw, 28px);
	background-color: #94a54e;
	color: #fff;
	min-width: 15rem;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.header.is-scrolled .header__reserve {
	padding: 0.5rem 1.25rem;
}

.header.is-scrolled .header__reserve-label {
	font-size: 0.8125rem;
}

.header.is-scrolled .header__reserve-tel {
	font-size: 1.25rem;
}

.header.is-scrolled .header__reserve-addr {
	font-size: 0.625rem;
	margin-top: 0.5rem;
}

.header__reserve-label {
	font-size: 1.25rem;
}

.header__reserve-tel {
	font-size: clamp(18px, 8.6666666667px + 1.2152777778vw, 32px);
}

.header__reserve-addr {
	font-size: clamp(12px, 6.6666666667px + 0.6944444444vw, 20px);
}

.header__hamburger {
	display: none;
}

.inner {
	max-width: 1230px;
	padding-inline: 25px;
}

.mv {
	padding-block: 0rem 6.25rem;
}

.mv-content {
	flex-direction: row;
	gap: 9.375rem;
	align-items: center;
	justify-content: center;
}

.mv__catch {
	text-align: center;
	writing-mode: vertical-rl;
	gap: 0.5rem;
	font-size: 1rem;
	text-align: left;
	max-height: 31.25rem;
}

.news__archive {
	padding-block: 5rem 7.5rem;
}

.news__link {
	flex-direction: row;
	align-items: baseline;
	gap: 2rem;
	padding: 1.25rem 1rem;
}

.news__date {
	width: 7.5rem;
}

.news__single {
	padding-block: 5rem 7.5rem;
}

.news__single-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.news__single-nav-link--next {
	grid-column: 2;
}

.not-found__main {
	padding-block: 6.25rem 7.5rem;
}

.not-found__code {
	font-size: 7.5rem;
}

.not-found__texts {
	margin-top: 3rem;
}

.not-found__actions {
	margin-top: 3.75rem;
}

.pagination {
	margin-top: 3rem;
}

.pagination__btn {
	min-width: 2.625rem;
	height: 2.625rem;
	padding-inline: 1rem;
	font-size: 1rem;
	margin-left: 0.5rem;
}

.pagination__btn--prev,
.pagination__btn--next {
	min-width: 4.125rem;
}

.pet-hotel__booking {
	padding-block: 6.25rem 8.75rem;
}

.pet-hotel__booking-text {
	margin-top: 5rem;
	font-size: 1rem;
}

.pet-hotel__booking-actions {
	gap: 3.75rem;
	margin-top: 6rem;
}

.pet-hotel__booking-button {
	font-size: 1.5rem;
	padding-block: 1.6875rem;
	border-radius: 2.125rem;
}

.pet-hotel__feature {
	padding-block: 6.25rem 4rem;
}

.pet-hotel__feature-main {
	margin-top: 5.5rem;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto 1fr;
	gap: 1.5rem 2.5rem;
	align-items: start;
	max-width: 56.25rem;
	margin-inline: auto;
}

.pet-hotel__feature-list {
	grid-column: 1;
	grid-row: 1/span 2;
	gap: 4.5rem;
}

.pet-hotel__feature-item-title {
	font-size: 1.25rem;
	padding-left: 2.5rem;
}

.pet-hotel__feature-item-title::before {
	width: 1.5625rem;
	top: 0;
}

.pet-hotel__feature-item-text {
	margin-top: 1rem;
	font-size: 1rem;
	padding-left: 2.5rem;
}

.pet-hotel__feature-image {
	grid-column: 2;
	grid-row: 1;
	width: 27.5rem;
	align-self: start;
}

.pet-hotel__feature-photos {
	margin-top: 5.5rem;
	flex-direction: row;
	gap: 5rem;
}

.pet-hotel__feature-note {
	margin-top: 5rem;
	padding: 1.5rem 2.25rem;
}

.pet-hotel__lead {
	padding-block: 5rem;
}

.pet-hotel__lead-inner {
	max-width: 45rem;
	width: 100%;
	margin-inline: auto;
}

.pet-hotel__lead-text {
	margin-top: 2.5rem;
	font-size: 0.9375rem;
}

.pet-hotel__lead-note {
	margin-top: 2rem;
	padding: 1.5rem 2.25rem;
	font-size: 0.875rem;
}

.section-bg-left::before {
	width: 61.3125rem;
	left: calc(50% - min(58vw, 70rem));
}

.section-bg-left2::before {
	width: 61.3125rem;
	left: calc(50% - min(58vw, 70rem));
}

.section-bg-left3::before {
	bottom: 28.125rem;
	width: 61.3125rem;
	left: calc(50% - min(58vw, 70rem));
}

.section-bg-left4::before {
	bottom: 23.125rem;
	width: 61.3125rem;
	left: calc(50% - min(58vw, 70rem));
}

.section-bg-right::before {
	top: -34.625rem;
	right: calc(50% - min(62.2vw, 75rem));
	width: 61.3125rem;
}

.section-bg-right2::before {
	bottom: 3.625rem;
	right: calc(50% - min(62.2vw, 75rem));
	width: 61.3125rem;
}

.section-bg-right3::before {
	bottom: -8rem;
	right: calc(50% - min(62.2vw, 75rem));
	width: 61.3125rem;
}

.section-bg-right4::before {
	bottom: -13.75rem;
	right: calc(50% - min(62.2vw, 75rem));
	width: 61.3125rem;
}

.section-bg-right5::before {
	bottom: -18.75rem;
	right: calc(50% - min(62.2vw, 75rem));
	width: 61.3125rem;
}

.section-title {
	font-size: 1.5rem;
}

.section-title--left {
	text-align: left;
}

.senior__feature {
	padding-block: 6.25rem 7.5rem;
}

.senior__feature-lead {
	margin-top: 3rem;
	font-size: 1rem;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.senior__feature-list {
	margin-top: 4.5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(2, auto 1fr);
	-moz-column-gap: 0rem;
	column-gap: 0rem;
	row-gap: 0;
}

.senior__feature-item {
	gap: 3rem;
	grid-template-rows: subgrid;
	grid-row: span 2;
	padding-block: 3rem;
	padding-inline: 2.5rem;
}

.senior__feature-item:not(:last-child)::after {
	left: 2.5rem;
	right: 2.5rem;
	bottom: 0;
}

.senior__feature-item:nth-child(3)::after {
	content: none;
}

.senior__feature-item:nth-child(odd)::before {
	content: "";
	position: absolute;
	top: 2.5rem;
	bottom: 2.5rem;
	right: 0;
	width: 0.125rem;
	background-color: #94a54e;
}

.senior__feature-item-title-label {
	padding: 0.9375rem 2.8125rem;
	font-size: 1.5rem;
}

.senior__feature-item-body {
	max-width: 100%;
}

.senior__feature-text {
	font-size: 1rem;
}

.senior__feature-bullets {
	font-size: 0.9375rem;
}

.senior__lead {
	padding-block: 5rem;
}

.senior__lead-inner {
	max-width: 45rem;
	width: 100%;
	margin-inline: auto;
}

.senior__lead-texts {
	margin-top: 2.5rem;
	gap: 1.25rem;
}

.senior__lead-text {
	font-size: 1rem;
}

.senior__lead-note {
	margin-top: 2rem;
	padding: 1.5rem 2.25rem;
	font-size: 0.875rem;
}

.senior__points {
	padding-block: 6.25rem 7.5rem;
}

.senior__points-list {
	margin-top: 5rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem 5rem;
	margin-inline: auto;
}

.senior__points-item-title {
	font-size: 1.25rem;
}

.senior__points-text {
	font-size: 1rem;
}

.senior__points-bullets {
	font-size: 1rem;
}

.top__about {
	padding-block: 4.5rem 6rem;
}

.top__about-lead {
	margin-top: 3.75rem;
}

.top__access {
	padding-block: 6.25rem 7.5rem;
}

.top__access-map {
	margin-top: 3.75rem;
}

.top__access-bottom {
	flex-direction: row;
	gap: 4rem;
	align-items: flex-start;
	padding-inline: 2.5rem;
}

.top__access-info {
	align-items: end;
}

.top__access-list {
	gap: 1rem;
}

.top__access-row {
	flex-direction: row;
	gap: 1.25rem;
}

.top__access-row.top__access-row--column {
	flex-direction: column;
}

.top__access-row-title {
	width: 6.875rem;
}

.top__access-reserve {
	gap: 1.5rem;
	flex-direction: row;
}

.top__access-reserve-qr {
	width: 8.75rem;
	margin-inline: 0;
}

.top__access-reserve-text {
	font-size: 1rem;
}

.top__access-exterior {
	width: 26rem;
}

.top__instagram {
	padding-block: 5rem 7.5rem;
}

.top__instagram-container {
	margin-top: 3.75rem;
}

.top__news {
	padding-block: 5rem 7.5rem;
}

.top__news-link {
	flex-direction: row;
	align-items: baseline;
	gap: 2rem;
	padding: 1.25rem 1rem;
}

.top__news-date {
	width: 7.5rem;
}

.top__philosophy {
	padding-block: 2.5rem;
}

.top__philosophy-content {
	flex-direction: row;
	gap: 3.75rem;
	align-items: center;
	justify-content: center;
	max-width: 70rem;
	width: 100%;
	margin-inline: auto;
}

.top__philosophy-body {
	flex: 1;
	max-width: 30rem;
	display: block;
}

.top__philosophy-texts {
	order: 0;
}

.top__philosophy-text {
	font-size: 0.9375rem;
}

.top__philosophy-button {
	order: 0;
}

.top__philosophy-image {
	flex: 1;
	max-width: 35.375rem;
	order: 0;
}

.trimming__beginner {
	padding-block: 6.25rem 7.5rem;
}

.trimming__beginner-main {
	max-width: 80rem;
	margin-top: 3.75rem;
	flex-direction: row;
	justify-content: center;
	gap: 3.75rem;
	align-items: center;
}

.trimming__beginner-body {
	flex: 1;
	max-width: 21.25rem;
}

.trimming__beginner-image {
	flex: 1;
	max-width: 21.5625rem;
}

.trimming__lead {
	padding-block: 5rem 8.75rem;
}

.trimming__lead-inner {
	max-width: 45rem;
	width: 100%;
	margin-inline: auto;
}

.trimming__lead-texts {
	margin-top: 2.5rem;
	gap: 1.25rem;
}

.trimming__lead-text {
	font-size: 1rem;
}

.trimming__lead-note {
	margin-top: 2rem;
	padding: 1.5rem 2.25rem;
	font-size: 1rem;
	gap: 1.5rem;
}

.trimming__request {
	padding-block: 6.25rem 7.5rem;
}

.trimming__request-body {
	margin-top: 4.5rem;
}

.trimming__request-note {
	margin-top: 4rem;
	padding: 2rem 2.25rem;
}

.trimming__request-note-title {
	font-size: 1.375rem;
}

}

@media (min-width: 1180px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1200px) {

main {
	margin-top: 8.75rem;
}

body:has(.header.is-scrolled) main {
	margin-top: 5rem;
}

.header {
	height: 8.75rem;
}

.header.is-scrolled {
	height: 5rem;
}

.header.is-scrolled .header__logo a {
	max-width: 15rem;
}

}

@media screen and (max-width: 767px) {

.u-sp {
	display: block;
}

}

@media screen and (max-width: 700px) {

.u-sp700 {
	display: block;
}

}

@media screen and (max-width: 650px) {

.u-sp650 {
	display: block;
}

}

@media screen and (max-width: 600px) {

.u-sp600 {
	display: block;
}

}

@media screen and (max-width: 550px) {

.u-sp550 {
	display: block;
}

}

@media screen and (max-width: 500px) {

.u-sp500 {
	display: block;
}

}

@media screen and (max-width: 450px) {

.u-sp450 {
	display: block;
}

}

@media screen and (max-width: 400px) {

.u-sp400 {
	display: block;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

