/* ==========================================================================
   OC Theme - Base Stylesheet
   ==========================================================================
   This is the main stylesheet for the OC Theme.
   - Blog-specific styles are in oc-blog-style.css
   - Contact-specific styles are in oc-contact-style.css
   ========================================================================== */


/* ==========================================================================
   1. CSS Reset (Minimal Modern Reset)
   ========================================================================== */

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

* {
	margin: 0;
	padding: 0;
}

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

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

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

table {
	border-collapse: collapse;
}

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

@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;
	}
}


/* ==========================================================================
   2. CSS Custom Properties (Variables)
   ==========================================================================
   Color values come from theme.json via --wp--preset--color--*.
   Blog layout variables are defined here as custom properties.
   ========================================================================== */

/* Blog layout variables are defined in theme.json settings.custom.blog
   and available as --wp--custom--blog--* */


/* ==========================================================================
   3. Base Typography
   ==========================================================================
   Restores sensible defaults for common HTML elements.
   ========================================================================== */

body {
	min-height: 100vh;
	font-family: var(--wp--preset--font-family--body, "Noto Sans JP", sans-serif);
	font-size: 16px;
	line-height: 1.8;
	color: var(--wp--preset--color--text);
	background-color: var(--wp--preset--color--background);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: bold;
	line-height: 1.3;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
	margin-bottom: 1rem;
}

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

a {
	text-decoration: none;
	color: var(--wp--preset--color--accent);
}

a:hover {
	text-decoration: none;
}


/* ==========================================================================
   4. Theme Component Styles
   ========================================================================== */

/* --- Text Color Utility --- */
.text-primary-color {
	color: var(--wp--preset--color--primary);
}

/* --- Clear Fix --- */
.clear-fix {
	clear: both;
}

/* --- Background Image --- */
.bg-image {
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

/* --- Text Background Top (Hero Banner) --- */
.text-bg-top {
	z-index: 0;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-bg-top .caption {
}

.text-bg-top .caption h1,
.text-bg-top .caption h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

/* --- 404 Page --- */
.content-none {
	text-align: center;
	font-size: 20px;
	padding: 80px 10px;
}

.content-none .error-number {
	font-size: 70px;
}

.content-none .content-none-btn {
	margin: 20px auto;
	text-align: center;
}


/* ==========================================================================
   5. OC Button Style
   ========================================================================== */

.site-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 375px;
	height: 73px;
	max-width: 90%;
	border: 1px solid var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
	background-color: transparent;
	transition: all 0.5s;
}


/* ==========================================================================
   6. OC Modal Style
   ========================================================================== */

.modal-design {
	height: 80vh;
	overflow: scroll;
	margin: 15% 0 10% 0;
	border-radius: unset;
}

.modal-dialog {
	max-width: 800px;
	padding: 1rem;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.close-btn {
	position: fixed;
	right: 0;
	top: 25px;
}

.modal-side-margin {
	margin: 0;
}

.modal-body-design {
	padding: 0;
}

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400;
	border-radius: 50%;
	background: #fff;
}

.round_btn::before,
.round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	height: 22px;
	background: #AA8400;
}

.round_btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.round_btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}


/* ==========================================================================
   7. Layout Utilities
   ========================================================================== */

/* --- Container --- */
.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* --- Row / Grid --- */
.row {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* --- Columns (Mobile First) ---
 * 親 .row の gap: 1rem を考慮した calc 値。
 * N 列並びで `100% + (N-1)*gap` の overflow を起こさないように
 * 各列から `(1 - X/12) * gap` を減算している。
 */
.col-6  { flex: 0 0 calc(50% - 0.5rem); max-width: calc(50% - 0.5rem); }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
	.col-sm-6  { flex: 0 0 calc(50% - 0.5rem); max-width: calc(50% - 0.5rem); }
	.col-sm-12 { flex: 0 0 100%; max-width: 100%; }
	.mb-sm-0 { margin-bottom: 0; }
	.mb-sm-3 { margin-bottom: 1rem; }
	.align-items-sm-center { align-items: center; }
}

@media (min-width: 768px) {
	.col-md-1  { flex: 0 0 calc(8.333% - 0.917rem);  max-width: calc(8.333% - 0.917rem); }
	.col-md-2  { flex: 0 0 calc(16.666% - 0.833rem); max-width: calc(16.666% - 0.833rem); }
	.col-md-3  { flex: 0 0 calc(25% - 0.75rem);      max-width: calc(25% - 0.75rem); }
	.col-md-4  { flex: 0 0 calc(33.333% - 0.667rem); max-width: calc(33.333% - 0.667rem); }
	.col-md-5  { flex: 0 0 calc(41.666% - 0.583rem); max-width: calc(41.666% - 0.583rem); }
	.col-md-6  { flex: 0 0 calc(50% - 0.5rem);       max-width: calc(50% - 0.5rem); }
	.col-md-7  { flex: 0 0 calc(58.333% - 0.417rem); max-width: calc(58.333% - 0.417rem); }
	.col-md-8  { flex: 0 0 calc(66.666% - 0.333rem); max-width: calc(66.666% - 0.333rem); }
	.col-md-9  { flex: 0 0 calc(75% - 0.25rem);      max-width: calc(75% - 0.25rem); }
	.col-md-10 { flex: 0 0 calc(83.333% - 0.167rem); max-width: calc(83.333% - 0.167rem); }
	.col-md-11 { flex: 0 0 calc(91.666% - 0.083rem); max-width: calc(91.666% - 0.083rem); }
	.col-md-12 { flex: 0 0 100%; max-width: 100%; }
	.offset-md-1 { margin-left: 8.333%; }
}

@media (min-width: 992px) {
	.col-lg-10 { flex: 0 0 calc(83.333% - 0.167rem); max-width: calc(83.333% - 0.167rem); }
	.col-lg-12 { flex: 0 0 100%; max-width: 100%; }
	.offset-lg-1 { margin-left: 8.333%; }
}


/* ==========================================================================
   8. Display Utilities
   ========================================================================== */

.d-flex   { display: flex; }
.d-block  { display: block; }
.d-none   { display: none; }


/* ==========================================================================
   9. Flexbox Utilities
   ========================================================================== */

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

.justify-start,   .justify-content-start   { justify-content: flex-start; }
.justify-center,  .justify-content-center  { justify-content: center; }
.justify-end,     .justify-content-end     { justify-content: flex-end; }
.justify-between, .justify-content-between { justify-content: space-between; }

.align-start,  .align-items-start  { align-items: flex-start; }
.align-center, .align-items-center { align-items: center; }
.align-end,    .align-items-end    { align-items: flex-end; }

.align-self-end { align-self: flex-end; }


/* ==========================================================================
   10. Text Utilities
   ========================================================================== */

.text-start  { text-align: left; }
.text-center { text-align: center; }
.text-end    { text-align: right; }

.text-dark { color: var(--wp--preset--color--text); }

.fw-bold   { font-weight: bold; }
.fw-normal { font-weight: normal; }


/* ==========================================================================
   11. Width Utilities
   ========================================================================== */

.w-100 { width: 100%; }


/* ==========================================================================
   11b. Font Size Utilities
   ========================================================================== */

.fs-4 { font-size: 1.5rem; }
.fs-5 { font-size: 1.25rem; }


/* ==========================================================================
   11c. Misc Utilities
   ========================================================================== */


.img-cover-white {
	position: relative;
}
.img-cover-white::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.15);
	pointer-events: none;
}

.more-info-btn-cover {
	display: flex;
	justify-content: center;
}
.more-info-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0.75em 2em;
	border: 1px solid var(--wp--preset--color--primary);
	color: var(--wp--preset--color--primary);
	background-color: transparent;
	transition: all 0.3s;
}
.more-info-btn:hover {
	background-color: var(--wp--preset--color--primary);
	color: #fff;
}


/* ==========================================================================
   12. Margin Utilities
   ==========================================================================
   Scale: 0=0, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem
   ========================================================================== */

/* --- All sides --- */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 1rem; }
.m-4 { margin: 1.5rem; }
.m-5 { margin: 3rem; }

/* --- Top --- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* --- Bottom --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

/* --- Start (Left in LTR) --- */
.ms-0 { margin-left: 0; }
.ms-1 { margin-left: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }

/* --- End (Right in LTR) --- */
.me-0 { margin-right: 0; }
.me-1 { margin-right: 0.25rem; }
.me-2 { margin-right: 0.5rem; }

/* --- Vertical (Top + Bottom) --- */
.my-0 { margin-top: 0; margin-bottom: 0; }
.my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }

/* --- Horizontal Auto --- */
.mx-auto { margin-left: auto; margin-right: auto; }


/* ==========================================================================
   13. Padding Utilities
   ==========================================================================
   Scale: 0=0, 1=0.25rem, 2=0.5rem, 3=1rem, 4=1.5rem, 5=3rem
   ========================================================================== */

/* --- All sides --- */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

/* --- Horizontal (Left + Right) --- */
.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }

/* --- Vertical (Top + Bottom) --- */
.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }


/* ==========================================================================
   14. Breadcrumbs
   ========================================================================== */

.bread-crumbs {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 0.75rem;
	margin: 0;
	list-style: none;
}

.bread-crumbs .bc-home-icon {
	margin-right: 3px;
	vertical-align: baseline;
}

.bread-crumbs .bc-link {
	display: inline-flex;
	align-items: center;
	color: var(--wp--preset--color--accent, #0A4B8B);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.bread-crumbs .bc-item {
	display: inline-block;
	color: var(--wp--preset--color--text-muted, #707070);
	font-size: 0.75rem;
	font-weight: 500;
	margin: 0 0.75em 0 0;
}

.bread-crumbs .bc-item:not(.bc-home)::before {
	content: "";
	display: inline-block;
	width: 0.45em;
	height: 0.45em;
	margin: 0 0.75em 0 0;
	border-top: 2px solid var(--wp--preset--color--text-muted, #707070);
	border-right: 2px solid var(--wp--preset--color--text-muted, #707070);
	transform: rotate(45deg) translateY(15%);
}

/* 20260704 kikuzawa */
:root {
	--font-color: #5E4628;
	--link-color: #71BB42;
	--header-height: 144px;
}

@media screen and (max-width:820px) {
	:root {
		--header-height: 74px;
	}
}

body{
	color: var(--font-color);
	font-size: 16px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.8;
	letter-spacing: 0;
	background: #FFFAEE;
}
body *{
    box-sizing: border-box;
	word-break: break-word;
}
a {
	text-decoration: none;
	color: var(--link-color);
    transition: all .3s;
}
a[href^="tel:"] {
    pointer-events: none;
}
.package p{
	margin: 0;
	margin-bottom: 20px;
}
.package p:last-child{
	margin-bottom: 0;
}
.package img{
	max-width: 100%;
}
.package figure{
	margin-bottom: 0;
}
.package i{
	font-style: normal;
}
.package table{
	width: 100%;
}
.home dl,
.home dd,
.package dl,
.package dd,
ul.reset,
ol.reset,
#header ul,
#footer ul,
.home ul,
.home ol{
	margin: 0;
	padding: 0;
}
ul.reset li,
ol.reset li,
#header li,
#footer li,
.home li{
	list-style: none;
}
.tb,
.sp{
	display: none;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.ff0,
.font-zenkakugothic{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.ff1,
.font-jost{
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
.ff2,
.font-garamond{
	font-family: "EB Garamond", serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}
.btn-s1{
	display: inline-block;
	padding: 0 10px;
	min-width: 254px;
	height: 48px;
	color: #fff;
	font-size: 18px;
	line-height: 48px;
	text-align: center;
	background: var(--link-color);
	border-radius: 100px;
}
.btn-s1 span{
	display: inline-block;
	padding-right: 25px;
	background: url(../img/arrow02.svg) no-repeat right top 19px;
	background-size: 14px auto;
}
.btn-s1:hover{
	background: #4A7B2C;
}
.btn-s1.t2{
	color: #fff;
	line-height: 42px;
	background: none;
	border: #fff 2px solid;
}
.btn-s1.t2:hover{
	background: var(--link-color);
	border-color: var(--link-color);
}
.btn-s1.t2 span{
	background-position: right top 18px;
}
#footer .contact a:hover,
.top-content.c06 .tel a[href^="tel:"]:hover{
	background-color: #4A7B2C;
}

@media screen and (max-width:820px) {
	.tb{
		display: block;
	}
}

@media screen and (max-width:767px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}
    a[href^="tel:"] {
        pointer-events: auto;
    }
	.btn-s1{
		min-width: 240px;
	}
}

/*base*/
#container{
	padding-top: var(--header-height);
	overflow: hidden;
}
.package{
	margin: 0;
	/* margin-bottom: 250px; */
	padding: 0;
	max-width: 100%;
}
.wrap{
	margin: 0 auto;
	max-width: 1280px;
	padding: 0 15px;
	width: 100%;
}

@media screen and (max-width:767px) {
	#container{
		padding-bottom: 48px;
	}
}

/*header*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
}
#header #hinr {
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 0 clamp(15px, calc(-40.000px + 6.875vw), 48px);
	height: var(--header-height);
	background: #FFFAEE ;
}
#header .logo{
	/* text-align: center; */
}
#header .logo img{
	display: block;
}
#header .description{
	margin-top: -12px;
	color: #505050;
	font-size: clamp(9px, calc(4.000px + 0.625vw), 12px);
	line-height: 1.3;
}
#header .contact{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	margin-bottom: 10px;
}
#header .tel a{
	display: block;
	position: relative;
	padding-left: 40px;
	color: #5E4628;
	font-weight: 500;
	line-height: 0.9;
}
#header .tel a:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 32px;
	aspect-ratio:  1 / 1;
	background: #71BB42 url(../img/icon-phone.svg) no-repeat center;
	border-radius: 100%;
    transform: translateY(-50%);
}
#header .tel b{
	display: block;
	font-weight: 600;
	font-size: 22px;
	letter-spacing: 0.1em;
}
#header .tel span{
	font-size: 10px;
}
#header .form a{
	display: block;
	position: relative;
	padding-top: 7px;
	padding-left: 13px;
	width: 185px;
	aspect-ratio: 185 / 48;
	color: #fff;
	font-size: 10px;
	text-align: center;
	line-height: 1.2;
	letter-spacing: 0.1em;
	background: #71BB42;
	border-radius: 100px;
	transition: background-color .2s ease;
}
#header .form a:hover,
#header .form a:focus-visible{
	background-color: #4A7B2C;
}
#header .form a:before{
	content: '';
	position: absolute;
	top: 50%;
	left: 36px;
	width: 18px;
	aspect-ratio: 1 / 1;
	background: #fff url(../img/arrow.svg) no-repeat center;
	border-radius: 100%;
    transform: translateY(-50%);
}
#header .form b{
	font-size: 18px;
	font-weight: 500;
}
#header .gnav ul.menu {
	display: flex;
	gap: clamp(15px, calc(-26.667px + 5.208vw), 40px);
}
#header .gnav ul.sub-menu{
	display: none;
}
#header .gnav li.menu-item{
	text-align: center;
}
#header .gnav .mariko-mega-menu-parent{
	position: relative;
}
#header .gnav .mariko-mega-menu-parent::before{
	content: '';
	position: absolute;
	top: 100%;
	left: -20px;
	width: calc(100% + 40px);
	height: 28px;
}
#header .gnav .mariko-mega-menu{
	position: absolute;
	top: calc(100% + 24px);
	left: 50%;
	width: 560px;
	padding: 40px;
	background: #EEF4E2;
	border-radius: 20px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-50%) translateY(-8px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
	z-index: 20;
}
#header .gnav .mariko-mega-menu::before{
	content: '';
	position: absolute;
	top: -26px;
	left: 50%;
	width: 0;
	height: 0;
	border-right: 15px solid transparent;
	border-bottom: 26px solid #EEF4E2;
	border-left: 15px solid transparent;
	transform: translateX(-50%);
}
#header .gnav .mariko-mega-menu-parent:hover > .mariko-mega-menu,
#header .gnav .mariko-mega-menu-parent:focus-within > .mariko-mega-menu{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
#header .gnav .mariko-mega-menu__actions{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-bottom: 35px;
}
#header .gnav .mariko-mega-menu .mariko-mega-menu__action{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	height: 48px;
	padding: 0 18px;
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	background: #71BB42;
	border-radius: 100px;
	transition: background-color .2s ease;
}
#header .gnav .mariko-mega-menu__action i{
	display: block;
	width: 24px;
	height: 24px;
	background: #fff url(../img/arrow.svg) no-repeat center;
	background-size: 8px auto;
	border-radius: 50%;
	flex-shrink: 0;
}
#header .gnav .mariko-mega-menu__list{
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	row-gap: 16px;
	margin: 0;
	padding: 0;
}
#header .gnav .mariko-mega-menu__item{
	grid-column: span 2;
	width: 120px;
}
#header .gnav .mariko-mega-menu__item:nth-child(5){
	grid-column: 2 / span 2;
}
#header .gnav .mariko-mega-menu__item:nth-child(6){
	grid-column: 4 / span 2;
}
#header .gnav .mariko-mega-menu__item:nth-child(7){
	grid-column: 6 / span 2;
}
#header .gnav .mariko-mega-menu .mariko-mega-menu__item > a{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	color: #5E4629;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
}
#header .gnav .mariko-mega-menu__icon{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 108px;
	height: 108px;
	background: #fff;
	border-radius: 50%;
	transition: background-color .2s ease;
}
#header .gnav .mariko-mega-menu__icon img{
	display: block;
	width: 88px;
	height: 88px;
	object-fit: contain;
}
#header .gnav .mariko-mega-menu__item > a:hover .mariko-mega-menu__icon,
#header .gnav .mariko-mega-menu__item > a:focus .mariko-mega-menu__icon{
	background-color: #C1DFB6;
}
#header .gnav .mariko-mega-menu a::after{
	content: none;
}
#header .gnav a{
	display: block;
	position: relative;
	color: var(--font-color);
	font-weight: 600;
	font-size: clamp(14px, calc(10.667px + 0.417vw), 16px);
	line-height: 1.7;
}
#header .gnav a:after{
	content: attr(title);
	display: block;
	color: #C5BAAC;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-size: clamp(10px, calc(6.667px + 0.417vw), 12px);
}
#header .gnav a:hover,
#header .gnav a:hover:after,
#header .gnav .current_page_item a:after,
#header .gnav .current_page_item a,
.home #header .gnav #menu-item-275 a:after,
.home #header .gnav #menu-item-275 a{
	color: var(--link-color);
}
#header .gnav .mariko-mega-menu .mariko-mega-menu__action:hover,
#header .gnav .mariko-mega-menu .mariko-mega-menu__action:focus{
	color: #fff;
	background-color: #4A7B2C;
}
#header .gnav .mariko-mega-menu .mariko-mega-menu__item > a:hover,
#header .gnav .mariko-mega-menu .mariko-mega-menu__item > a:focus{
	color: #5E4629;
}
.menu-trigger{
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	width: 56px;
	aspect-ratio: 1 / 1;
	cursor: pointer;
	background: var(--link-color);
	border-bottom-left-radius: 10px;
	z-index: 12;
}
.menu-trigger .inr{
	position: relative;
	width: 30px;
	height: 17px;
    transition: all .3s;
}
.menu-trigger span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition: all .3s;
}
.is-open .menu-trigger span {
	background: #fff;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger span:nth-of-type(2) {
	top: 50%;
    transform: translateY(-50%);
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0;
}
.is-open .menu-trigger span:nth-of-type(3),
.is-open .menu-trigger span:nth-of-type(1) {
	top: 50%;
	bottom: auto;
    transform: translateY(-50%) rotate(-45deg);
}
.is-open .menu-trigger span:nth-of-type(2){
	opacity: 0;
}
.is-open .menu-trigger span:nth-of-type(3) {
    transform: translateY(-50%) rotate(45deg);
}
.sp-menu{
	position: fixed;
	top: 0;
	bottom: auto;
	right: -100%;
	width: 375px;
	height: 100vh;
	height: 100dvh;
	height: var(--sp-menu-viewport-height, 100dvh);
	padding: 20px;
	padding-top: 0;
	padding-bottom: calc(20px + env(safe-area-inset-bottom));
	background: #EEF4E2;
    transition: all .8s cubic-bezier(0.19, 1, 0.22, 1);
    overflow: auto;
	overscroll-behavior: contain;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	z-index: 9;
}
body.is-open{
	overflow: hidden;
}
body.is-open::before{
	content: '';
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 8;
}
body.is-open #header::before{
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--header-height);
	background: rgba(0, 0, 0, 0.35);
	z-index: 11;
}
body.is-open .sp-menu{
	z-index: 12;
}
body.is-open .menu-trigger{
	z-index: 13;
}
html.is-drawer-open,
html.is-drawer-open body{
	background-color: #EEF4E2;
}
.is-open .sp-menu{
	right: 0;
}
.sp-menu::-webkit-scrollbar{
	display: none;
}
.sp-logo{
	margin-left: -15px;
}
.sp-menu .upper {
	margin-bottom: 30px;
}
.sp-menu li{
	position: relative;
	border-bottom: #ccd9b3 1px solid;
}
.sp-menu li a{
	display: block;
	padding: 15px 0;
	padding-right: 40px;
	color: var(--font-color);
	font-weight: bold;
	line-height: 1.5;
	background: url(../img/arrow03.svg) no-repeat right 16px center;
	background-size: 12px auto;
}
.sp-menu li:has(.sub-menu)>a{
	background: url(../img/deco20.svg) no-repeat right 10px top 25px;
	background-size: 22px auto;
}
.sp-menu li:has(.sub-menu):after,
.sp-menu li:has(.sub-menu):before{
	content: '';
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 35px;
	right: 15px;
	width: 12px;
	height: 1px;
	background: #fff;
    transition: all .3s;
}
.sp-menu li:has(.sub-menu):after{
    transform: rotate(90deg);
}
.sp-menu li:has(.sub-menu).is-open:after{
    transform: rotate(0deg);
}
.sp-menu li a:after{
	content: attr(title);
	display: block;
	color: var(--link-color);
	font-size: 12px;
	font-family: "Jost", sans-serif;
	font-weight: 500;
}
.sp-menu .sub-menu{
	margin-bottom: -1px!important;
	height: 0;
	background: #FFFAEE;
	opacity: 0;
	pointer-events: none;
    transition: all .3s;
}
.sp-menu .is-open .sub-menu{
	display: block;
	height: auto;
	opacity: 1;
	pointer-events: auto;
}
.sp-menu li li{
	border-bottom: #dae3c8 1px solid;
}
.sp-menu li li:last-child{
	border-bottom: none;
}
.sp-menu li li a{
	padding: 12px 10px;
	padding-right: 35px;
	background: url(../img/arrow03.svg) no-repeat right 12px center;
	background-size: 12px auto;
}
.sp-menu .bottom{
	text-align: center;
}
.sp-menu .bottom p{
	margin-bottom: 30px;
}
.sp-menu .bottom p a{
	color: var(--font-color);
	font-weight: bold;
}
.sp-menu .sp-tel{
	margin-bottom: 30px;
}
.sp-menu .sp-tel a{
	display: inline-block;
	padding-top: 10px;
	padding-left: 50px;
	color: var(--font-color);
	line-height: 1.4;
	background: url(../img/icon-phone02.svg) no-repeat 0 3px;
	background-size: 45px auto;
}
.sp-menu .sp-tel b{
	font-weight: 600;
	font-size: 32px;
	letter-spacing: 0.1em;
	line-height: 1;
}
.sp-menu .sp-tel span{
	display: block;
	font-size: 12px;
	font-weight: bold;
}
.sp-menu .copyright{
	color: #CECDB9;
	font-size: 12px;
}

@media screen and (max-width:1440px) {
	#header .logo{
		width: 28%;
		min-width: 270px;
	}
}

@media screen and (max-width:820px) {
	#header .navigation{
		display: none;
	}
	.menu-trigger{
		display: flex;
		align-items: center;
		justify-content: center;
	}
}

@media screen and (max-width:767px) {
    #header .logo {
        width: calc(100% - 50px);
    }
	#header .logo img{
		width: 270px;
	}
	#header .description {
		margin-top: -6px;
		color: #715837;
	}
}

/* main */
.top-mv {
	position: relative;
	padding-top: 15px;
}
.top-mv:before{
	content: '';
	position: absolute;
	right: 35px;
	bottom: 0;
	width: 97%;
	aspect-ratio: 140/ 69;
    background: url(../img/deco.svg) no-repeat center;
	background-size: cover;
	pointer-events: none;
    transform: translateY(57%);
	z-index: 2;
}
.top-mv .slider{
	margin-left: auto;
	width: 69%;
}
.top-mv .slider img{
	width: 100%;
	aspect-ratio: 1000 / 646;
	border-radius: 75px 0 0 75px;
	object-fit: cover;
}
.top-mv .text{
	position: absolute;
	top: 50%;
	left: clamp(15px, calc(-101.667px + 14.583vw), 85px);
	font-size: 20px;
	font-weight: bold;
	line-height: 1.9;
	letter-spacing: 0.25em;
	text-shadow: rgb(255, 255, 255) 1px 0px 0px, rgb(255, 255, 255) 0.540302px 0.841471px 0px, rgb(255, 255, 255) -0.416147px 0.909297px 0px, rgb(255, 255, 255) -0.989992px 0.14112px 0px, rgb(255, 255, 255) -0.653644px -0.756802px 0px, rgb(255, 255, 255) 0.283662px -0.958924px 0px, rgb(255, 255, 255) 0.96017px -0.279415px 0px;
    transform: translateY(-50%);
	z-index: 3;
}
.top-mv .text span{
	display: inline-block;
	margin-right: 10px;
}
.top-mv .text img{
	display: block;
	margin-bottom: 10px;
}
.top-mv .hours{
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 20px;
	background: #FFFAEE;
	border-radius: 32px 0 0 0;
	z-index: 3;
}
.hours table{
	margin: 0 auto;
	margin-bottom: 10px;
	width: auto;
	font-size: 14px;
	line-height: 1.2;
}
.hours thead{
	border-bottom: 1px solid var(--font-color);
}
.hours thead th{
	padding: 10px 15px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.05em;
}
.hours thead th:first-child{
	padding-left: 0;
	padding-right: 0;
	font-size: 16px;
	text-align: left;
}
.hours tbody th{
	padding: 10px;
	padding-left: 0;
	font-weight: 400;
	font-size: 15px;
	text-align: left;
	border-bottom: #eae2d5 1px solid;
}
.hours tbody td{
	padding: 10px 15px;
	text-align: center;
	border-bottom: #eae2d5 1px solid;
}
.hours tbody tr:last-child th,
.hours tbody tr:last-child td{
	border: none;
}
.hours tbody th span{
	display: inline-block;
	position: relative;
	margin-right: 15px;
}
.hours tbody th span:after{
	content: '▶';
	position: absolute;
	top: 50%;
	right: -12px;
	font-size: 8px;
    transform: translateY(-50%);
}
.hours tbody td.s1{
	color: var(--link-color);
}
.hours .flex{
	align-items: center;
	gap: 10px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.hours .bottom span.s1{
	padding: 2px 5px;
	color: var(--link-color);
	line-height: 1.4;
	border: 1px solid var(--link-color);
	border-radius: 3px;
}
.hours .bottom span.s2 i{
	color: var(--link-color);
	font-style: normal;
}
.top-mv .hours .bottom .note {
	display: none;
}
.marquee-text {
	display: flex;
	margin-bottom: 20px;
	color: #F1E9D4;
	font-size: clamp(120px, calc(43.077px + 15.385vw), 240px);
	font-weight: 500;
	line-height: 0.9;
	white-space: nowrap;
}
.marquee-text .slick-track{
	display: flex!important;
}
.marquee-text span{
	float: none;
}
.package h2[data-en] {
	margin-bottom: clamp(20px, calc(-12.051px + 6.410vw), 70px);
	color: var(--font-color);
	font-weight: bold;
	font-size: clamp(24px, calc(18.872px + 1.026vw), 32px);
	letter-spacing: 0.1em;
}
.package h2[data-en]:before {
	content: attr(data-en);
	display: block;
	margin-bottom: clamp(0px, calc(-9.615px + 1.923vw), 15px);
	font-size: clamp(12px, calc(6.872px + 1.026vw), 20px);
	font-family: "Jost", sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.top-news {
	margin-bottom: clamp(50px, calc(-50.000px + 12.500vw), 110px);
}
.top-news .flex{
	gap: 20px;
	margin-bottom: clamp(40px, calc(-56.552px + 13.793vw), 120px);
}
.top-news .body{
	flex: 1;
	max-width: 840px;
}
.top-news li{
	border-bottom: #cfc4b5 1px solid;
}
.top-news li a{
	display: flex;
	flex-wrap: wrap;
	gap: 0 clamp(20px, calc(-265.714px + 28.571vw), 100px);
	position: relative;
	padding: 30px 20px;
	padding-right: 80px;
	color: var(--font-color);
	font-weight: 500;
	letter-spacing: 0.1em;
	border-radius: 0;
}
.top-news li:first-child a{
	border-radius: 16px 16px 0 0;
}
.top-news li a:hover{
	background: #EEF4E2;
}
.top-news li a:before{
	content: '';
	position: absolute;
	top: 50%;
	right: 25px;
	width: 45px;
	aspect-ratio: 45 / 24;
	background: #F1E9D4 url(../img/arrow03.svg) no-repeat center;
	border-radius: 100px;
    transform: translateY(-50%);
}
.top-news li a:hover:before{
	background: #71BB42 url(../img/arrow02.svg) no-repeat center;
}
.top-news .date{
	font-weight: 500;
}
.top-news .p-title{
	flex: 1;
}
.top-news .slider {
	width: 412px;
    transform: scaleX(-1);
}
.top-news .slider img{
	margin: 0 8px;
	width: 396px;
	aspect-ratio: 396 / 234;
	border-radius: clamp(10px, calc(-4.103px + 2.821vw), 32px);
	object-fit: cover;
    transform: scaleX(-1);
}
.top-news .slick-list{
	overflow: visible;
}
.top-content.c01 {
	position: relative;
	margin-bottom: clamp(30px, calc(-21.282px + 10.256vw), 110px);
	padding-top: clamp(40px, calc(-43.333px + 16.667vw), 170px);
	padding-bottom: clamp(40px, calc(-24.103px + 12.821vw), 140px);
	font-size: clamp(16px, calc(14.718px + 0.256vw), 18px);
	font-weight: 500;
	background: #EEF4E2;
	border-radius: clamp(20px, calc(-44.103px + 12.821vw), 120px);
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.top-content.c01:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(110px, calc(-21.410px + 26.282vw), 315px);
	aspect-ratio: 315 / 42;
	background:  url(../img/deco03.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
.top-content.c01 .wrap{
	text-align: right;
}
.top-content.c01 .body{
	position: relative;
	padding-right: clamp(15px, calc(-55.513px + 14.103vw), 125px);
}
.top-content.c01 .body:before{
	content: '';
	position: absolute;
	top: -85px;
	left: 40px;
	width: clamp(60px, calc(27.949px + 6.410vw), 110px);
	aspect-ratio: 1 / 1;
	background:  url(../img/deco02.svg) no-repeat center;
	background-size: cover;
}
.top-content.c01 .inr{
	display: inline-block;
	text-align: left;
	letter-spacing: 0.25em;
	line-height: 2.9;
    writing-mode: vertical-rl;
}
.top-content.c01 .inr:before{
	content: '';
	position: absolute;
	right: 60px;
	bottom: 0;
	width: 72%;
	aspect-ratio: 925 / 639;
	background:  url(../img/deco04.png) no-repeat center;
	background-size: cover;
    transform: translateY(87%);
	pointer-events: none;
}
.top-content.c01 .inr p{
	margin-bottom: 0;
}
.top-content.c01 p.s1{
	margin-left: clamp(30px, calc(-36.667px + 8.333vw), 70px);
	color: #569D29;
	font-size: clamp(24px, calc(18.872px + 1.026vw), 32px);
	line-height: 2;
}
.top-content.c01 .link{
	margin-top: clamp(25px, calc(2.564px + 4.487vw), 60px);
	text-align: center;
}
.top-content.c02 {
	margin-bottom: clamp(40px, calc(-11.282px + 10.256vw), 120px);
}
.top-content.c02 h2{
	margin-bottom: 15px;
}
.top-content.c02 .body{
	gap: 20px;
}
.top-content.c02 .text{
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding-top: clamp(0px, calc(-25.641px + 5.128vw), 40px);
	letter-spacing: 0.05em;
	line-height: 2.2;
}
.top-content.c02 .image{
	width: 49%;
	border-radius: 32px;
	overflow: hidden;
}
.top-content.c02 p.s1{
	margin-bottom: clamp(10px, calc(-2.821px + 2.564vw), 30px);
	color: #569D29;
	font-size: clamp(20px, calc(12.308px + 1.538vw), 32px);
	line-height: 2;
}
.top-content.c03 {
	position: relative;
	margin-bottom: clamp(40px, calc(-4.872px + 8.974vw), 110px);
	padding: clamp(40px, calc(-4.872px + 8.974vw), 110px) 0;
	background: #EEF4E2;
	border-radius: clamp(20px, calc(-44.103px + 12.821vw), 120px);
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
.top-content.c03:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(110px, calc(-21.410px + 26.282vw), 315px);
	aspect-ratio: 315 / 42;
    background: url(../img/deco03.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
.top-content.c03 h2{
	margin-bottom: clamp(30px, calc(10.769px + 3.846vw), 60px);
	text-align: center;
}
.top-content.c03 .body{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: clamp(15px, calc(-7.436px + 4.487vw), 50px)
		 clamp(15px, calc(5.385px + 1.923vw), 30px);
	margin-bottom: clamp(0px, calc(-12.821px + 2.564vw), 20px);
}
.top-content.c03 .box{
	position: relative;
	width: calc((100% - clamp(15px, calc(5.385px + 1.923vw), 30px) * 3) / 4);
	background: #9C876D;
	border-radius: clamp(12px, calc(6.872px + 1.026vw), 20px);
	overflow: hidden;
    transition: all .3s;
}
.about-content.c02 .box:before,
.top-content.c03 dd:before,
.top-content.c03 .box:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(35px, calc(18.974px + 3.205vw), 60px);
	aspect-ratio: 60 / 8;
    background: url(../img/deco05.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
	z-index: 2;
}
.top-content.c03 .box:hover{
	box-shadow: 0px 0px 30px 0px rgba(168, 184, 136, 1);
}
.top-content.c03 dt{
	position: relative;
	padding: 20px 35px;
	padding-bottom: 30px;
	color: var(--font-color);
	font-weight: bold;
	font-size: clamp(16px, calc(13.436px + 0.513vw), 20px);
	text-align: center;
	background: #fff;
}
.top-content.c03 dt:before{
	content: '';
	display: block;
	margin-bottom: 10px;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 100%;
    transition: all .3s;
}
.top-content.c03 dl.d1 dt:before{
    background: url(../img/top-c03-01.svg) no-repeat center;
	background-size: cover;
}
.top-content.c03 dl.d2 dt:before{
    background: url(../img/top-c03-02.svg) no-repeat center;
	background-size: cover;
}
.top-content.c03 dl.d3 dt:before{
    background: url(../img/top-c03-03.svg) no-repeat center;
	background-size: cover;
}
.top-content.c03 dl.d4 dt:before{
    background: url(../img/top-c03-04.svg) no-repeat center;
	background-size: cover;
}
.top-content.c03 dl.d5 dt:before{
    background: url(../img/top-c03-05.svg) no-repeat center;
	background-size: cover;
}
.top-content.c03 dl.d6 dt:before{
    background: url(../img/top-c03-06.svg) no-repeat center;
	background-size: cover;
}
.top-content.c03 dl.d7 dt:before{
    background: url(../img/top-c03-07.svg) no-repeat center;
	background-size: cover;
}
.top-content.c03 a:hover dt:before{
	background-color: #EBF6E3;
}
.top-content.c03 dd{
	position: relative;
	padding: 15px 10px;
	padding-top: 20px;
	text-align: center;
}
.top-content.c03 dd:before{
    background: url(../img/deco07.svg) no-repeat center 0;
	background-size: cover;
}
.top-content.c03 ul{
	display: inline-block;
}
.top-content.c03 li{
	color: #fff;
	font-size: clamp(12px, calc(9.436px + 0.513vw), 16px);
	text-align: left;
	line-height: 1.5;
}
.top-content.c03 li:before{
	content: '・';
	display: inline-block;
	margin-right: 3px;
}
.top-content.c04 {
	margin-bottom: clamp(40px, calc(-4.872px + 8.974vw), 110px);
}
.top-content.c04 h2{
	text-align: center;
}
.top-content.c04 .flex{
    counter-reset: order;
	gap: 30px;
	margin-bottom: clamp(40px, calc(4.744px + 7.051vw), 95px);
}
.top-content.c04 article{
	position: relative;
	width: calc((100% - 60px) / 3);
	background: #fff;
	border-radius: clamp(16px, calc(5.744px + 2.051vw), 32px);
}
.top-content.c04 article:before{
    counter-increment: order;
    content: counter(order);
	position: absolute;
	right: clamp(5px, calc(-11.026px + 3.205vw), 30px);
	bottom: -25px;
	width: 38px;
	color: var(--link-color);
	font-size: clamp(56px, calc(40.615px + 3.077vw), 80px);
	font-family: "EB Garamond", serif;
	line-height: 1;
	text-align: center;
}
.top-content.c04 article a{
	color: var(--font-color);
}
.top-content.c04 article img{
	display: block;
	width: 100%;
	aspect-ratio: 394 / 246;
	object-fit: cover;
	border-radius: clamp(16px, calc(5.744px + 2.051vw), 32px);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.top-content.c04 .info{
	padding: clamp(15px, calc(8.590px + 1.282vw), 25px);
	padding-bottom: clamp(20px, calc(0.769px + 3.846vw), 50px);
}
.top-content.c04 h3{
	margin-bottom: clamp(10px, calc(6.795px + 0.641vw), 15px);
	color: var(--font-color);
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.top-content.c04 .tag{
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: clamp(10px, calc(3.590px + 1.282vw), 20px);
} 
.top-content.c04 .tag span{
	padding: 0 5px;
	height: 24px;
	color: var(--link-color);
	font-size: 14px;
	line-height: 24px;
	background: #EEF4E2;
	border-radius: 5px;
}
.top-content.c04 .link{
	text-align: center;
}
.top-content.c05 {
	position: relative;
	margin-bottom: clamp(40px, calc(-4.872px + 8.974vw), 110px);
	color: #fff;
}
.top-content.c03+.top-content.c05 {
	margin-top: calc(clamp(40px, calc(-4.872px + 8.974vw), 110px) * 2);
}
.top-content.c05:before{
	content: '';
	position: absolute;
	top: 1px;
	left: 75%;
	width: clamp(44px, calc(-29.718px + 14.744vw), 159px);
	aspect-ratio: 159 / 102;
	background:  url(../img/deco06.svg) no-repeat center;
	background-size: cover;
    transform: translateY(-100%);
}
.top-content.c05 .wrap{
	position: relative;
}
.top-content.c05 .wrap:after,
.top-content.c05 .wrap:before{
	content: '';
	position: absolute;
	top: 0;
	left: 15px;
	width: calc(100% - 30px);
	height: 100%;
	background: #648F54;
	border-radius: clamp(16px, calc(-25.026px + 8.205vw), 80px);
	z-index: -1;
}
.top-content.c05 .wrap:after{
	left: 50%;
	width: clamp(110px, calc(-21.410px + 26.282vw), 315px);
	aspect-ratio: 315 / 42;
	height: auto;
	background:  url(../img/deco03.svg) no-repeat center 0;
	background-size: contain;
	border-radius: 0;
    transform: translateX(-50%);
}
.top-content.c05 .wrap-inr{
	padding-top: clamp(40px, calc(-4.872px + 8.974vw), 110px);
	padding-bottom: clamp(45px, calc(-19.103px + 12.821vw), 145px);
	background:  url(../img/top-c05-bg.svg) no-repeat right bottom 55px;
	background-size: 57% auto;
}
.top-content.c05 h2{
	color: #fff;
	text-align: center;
}
.top-content.c05 .upper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 20px clamp(20px, calc(-130.000px + 18.750vw), 110px);
	margin-bottom: clamp(25px, calc(8.974px + 3.205vw), 50px);
}
.top-content.c05 .name{
	flex: 1;
	font-size: 14px;
	text-align: right;
}
.top-content.c05 .name>div{
	display: inline-block;
	text-align: center;
}
.top-content.c05 .image{
	width: clamp(325px, calc(257.692px + 13.462vw), 430px);
	border-radius: 32px;
	overflow: hidden;
}
.top-content.c05 .text{
	flex: 1;
}
.top-content.c05 .text>div{
	display: inline-block;
	font-size: clamp(20px, calc(12.308px + 1.538vw), 32px);
	letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}
.top-content.c05 .name p.s1{
	margin: 0 auto;
	margin-bottom: clamp(25px, calc(8.974px + 3.205vw), 50px);
	padding: 15px 0;
	font-size: clamp(20px, calc(17.436px + 0.513vw), 24px);
	letter-spacing: 0.2em;
    writing-mode: vertical-rl;
	border: #fff 2px dashed;
	border-radius: 100px;
}
.top-content.c05 p.s2{
	margin-bottom: 15px;
	font-size: clamp(20px, calc(14.872px + 1.026vw), 28px);
	letter-spacing: 0.05em;
	line-height: 1.2;
}
.top-content.c05 p.s2 span{
	display: block;
	font-size: 12px;
	letter-spacing: 0;
    transform: translateY(5px);
}
.top-content.c05 .bottom {
	text-align: center;
}
.top-content.c05 .bottom .inr{
	display: inline-block;
	text-align: left;
}
.top-content.c05 .bottom p{
	font-size: clamp(16px, calc(13.436px + 0.513vw), 20px);
}
.top-content.c05 .link{
	margin-top: clamp(25px, calc(5.769px + 3.846vw), 55px);
}
.top-content.c06 {
	position: relative;
	padding: clamp(40px, calc(-4.872px + 8.974vw), 110px) 0;
	color: #fff;
	text-align: center;
	letter-spacing: 0.05em;
	background: url(../img/top-c06-bg.webp) no-repeat center;
	background-size: cover;
}
.top-content.c06::before {
	position: absolute;
	inset: 0;
	background: rgba(21, 28, 19, 0.4);
	content: "";
	pointer-events: none;
}
.top-content.c06 > .wrap {
	position: relative;
}
.top-content.c06 .upper {
	margin-bottom: clamp(30px, calc(-66.154px + 19.231vw), 180px);	
}
.top-content.c06 .upper b{
	display: block;
	margin-bottom: clamp(20px, calc(7.179px + 2.564vw), 40px);
	font-weight: 500;
	font-size: clamp(24px, calc(18.872px + 1.026vw), 32px);
	letter-spacing: 0.1em;
}
.top-content.c06 .upper p.s1{
	display: inline-block;
	margin-bottom: clamp(20px, calc(7.179px + 2.564vw), 40px);
	padding: 3px 30px;
	font-size: clamp(16px, calc(13.436px + 0.513vw), 20px);
	letter-spacing: 0.1em;
	border: #fff 2px dashed;
	border-radius: 50px;
}
.top-content.c06 .bottom {
	font-size: 18px;
}
.top-content.c06 .tel{
	margin-bottom: 10px;
}
.top-content.c06 .tel a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: clamp(345px, calc(258.462px + 17.308vw), 480px);
	aspect-ratio: 480 / 85;
	color: #fff;
	font-size: clamp(24px, calc(18.872px + 1.026vw), 32px);
	letter-spacing: 0.15em;
	background: var(--link-color);
	border-radius: 100px;
}
.top-content.c06 .tel span{
	display: inline-block;
	padding-left: 37px;
    background: url(../img/icon-phone.svg) no-repeat 0 center;
	background-size: 19px auto;
}
.top-content.c07{
	padding: clamp(40px, calc(-4.872px + 8.974vw), 110px) 0;
	background: #EEF4E2;
}
.top-content.c07 h2{
	text-align: center;
}
.top-content.c07 .flex{
	gap: 15px 30px;
	margin-bottom: clamp(30px, calc(10.769px + 3.846vw), 60px);
}
.top-content.c07 article{
	position: relative;
	width: calc((100% - 60px) / 3);
	background: #fff;
	border-radius: clamp(16px, calc(5.744px + 2.051vw), 32px);
	overflow: hidden;
}
.top-content.c07 article:before{
	content: 'NEW';
	position: absolute;
	top: 20px;
	right: 20px;
	width: 48px;
	aspect-ratio: 1 / 1;
	color: #fff;
	font-size: 12px;
	line-height: 48px;
	text-align: center;
	background: var(--link-color);
	border-radius: 100%;
}
.top-content.c07 article a{
	color: var(--font-color);
}
.top-content.c07 article img{
	display: block;
	width: 100%;
	aspect-ratio: 394 / 246;
	object-fit: cover;
}
.top-content.c07 .info{
	padding: clamp(15px, calc(8.590px + 1.282vw), 25px);
	padding-bottom: clamp(20px, calc(13.590px + 1.282vw), 30px);
}
.top-content.c07 h3{
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: var(--link-color);
	font-size: 20px;
	line-height: 1.4;
	letter-spacing: 0.05em;
}
.top-content.c07 .date{
	color: #B3B3B3;
}
.top-content.c07 .link{
	text-align: center;
}
.top-content.c08 {
	margin: clamp(40px, calc(-4.872px + 8.974vw), 110px) 0;
}
.top-content.c08 h2{
	text-align: center;
}
.top-content.c08 .box:not(:last-child){
	margin-bottom: clamp(8px, calc(3.513px + 0.897vw), 15px);
}
.top-content.c08 dl{
	background: #fff;
	border: #E9E9E9 1px solid;
	border-radius: 5px;
	cursor: pointer;
}
.top-content.c08 dt{
	position: relative;
	font-size: clamp(16px, calc(13.436px + 0.513vw), 20px);
	letter-spacing: 0.05em;
}
.top-content.c08 dd{
	position: absolute;
	padding: 0;
	height: 0;
	background: #EEF4E2;
	opacity: 0;
	z-index: -1;
}
.top-content.c08 .show dd{
	position: relative;
	padding: 30px 70px;
	padding-left: clamp(70px, calc(10px + 7.813vw), 110px);
	height: auto;
	opacity: 1;
	z-index: 1;
}
.top-content.c08 dd:before,
.top-content.c08 dt:before{
	display: flex;
	justify-content: center;
	align-items: center;
	content: 'Q';
	position: absolute;
	top: 24px;
	left: clamp(15px, calc(-1.026px + 3.205vw), 40px);
	width: clamp(32px, calc(21.744px + 2.051vw), 48px);
	height: clamp(32px, calc(21.744px + 2.051vw), 48px);
	font-size: clamp(18px, calc(14.154px + 0.769vw), 24px);
	font-family: "Jost", sans-serif;
	background: #fff;
	border: #5E4628 2px solid;
	border-radius: 100%;
}
.top-content.c08 dd:before{
	content: 'A';
	color: var(--link-color);
	border-color: var(--link-color);
}
.top-content.c08 dt span{
	position: relative;
	display: block;
	padding: 30px 60px;
	padding-left: clamp(70px, calc(10px + 7.813vw), 110px);
}
.top-content.c08 dt span:after,
.top-content.c08 dt span:before{
	content: '';
	position: absolute;
	top: 50%;
	right: clamp(14px, calc(3.744px + 2.051vw), 30px);
	width: 23px;
	height: 3px;
	background: var(--link-color);
    transform: translateY(-50%);
	z-index: 2;
    transition: all .3s;
}
.top-content.c08 dt span:after{
	transform: translateY(-50%) rotate(90deg);
}
.top-content.c08 .show dt span:after{
	transform: translateY(-50%) rotate(0);
}
.top-content.c08 .link{
	margin-top: clamp(25px, calc(5.769px + 3.846vw), 55px);
	text-align: center;
}
.top-content.c09 {
	position: relative;
	padding-top: clamp(40px, calc(-4.872px + 8.974vw), 110px);
	padding-bottom: 40px;
	background: #fff;
	border-radius: clamp(16px, calc(-50.667px + 13.333vw), 120px);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.top-content.c09:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(110px, calc(-21.410px + 26.282vw), 315px);
	aspect-ratio: 315 / 42;
	background:  url(../img/deco03.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
.top-content.c09 h2{
	text-align: center;
}
.top-content.c09 .map{
	margin-bottom: clamp(20px, calc(13.590px + 1.282vw), 30px);
	border-radius: clamp(16px, calc(7.026px + 1.795vw), 30px);
	overflow: hidden;
}
.top-content.c09 iframe{
	display: block;
}
.top-content.c09 .flex{
	gap: 15px 0;
}
.top-content.c09 .flex>div {
	padding-right: 15px;
	width: 50%;
}
.top-content.c09 dl{
	letter-spacing: 0.05em;
}
.top-content.c09 dl:not(:last-child){
	margin-bottom: clamp(15px, calc(8.590px + 1.282vw), 25px);
}
.top-content.c09 dt{
	display: inline-block;
	margin-bottom: 10px;
	padding: 6px 15px;
	min-width: 80px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	border: #5e4628 2px dashed;
	border-radius: 100px;
}
.top-content.c09 dd{
	font-size: 18px;
	line-height: 1.65;
}

@media screen and (max-width:1280px) {
	.top-mv {
		padding-bottom: clamp(0px, calc(779.130px - 60.870vw), 280px);
	}
	.top-mv .text{
		padding-bottom: clamp(0px, calc(266.667px - 20.833vw), 100px);
	}
}

@media screen and (max-width:1000px) {
	.top-content.c01 .body{
		padding-right: 0;
		text-align: center;
	}
	.top-content.c01 .inr{
		position: static;
		letter-spacing: 0.1em;
		line-height: 1.8;
		text-align: center;
    	writing-mode: horizontal-tb; 
	}
	.top-content.c01 .inr br:not(p.s1 br){
		display: none;
	}
	.top-content.c01 .inr *{
		text-align: left;
	}
	.top-content.c01 p{
		padding: 0 clamp(0px, calc(-86.207px + 17.241vw), 100px);
	}
	.top-content.c01 p.s1{
		display: inline-block;
		margin-bottom: 20px;
		margin-left: 0;
		padding: 0;
		line-height: 1.5;
		letter-spacing: 0.05em;
		text-align: center;
	}
	.top-content.c03 .box{
		width: calc((100% - clamp(15px, calc(5.385px + 1.923vw), 30px) * 2) / 3);
	}
	.top-content.c07 article,
	.top-content.c04 article{
		width: calc((100% - 30px) / 2);
	}
}

@media screen and (max-width:820px) {
	.top-news .body{
		flex: none;
		width: 100%;
	}
	.top-news h2[data-en]{
		margin-bottom: 20px;
	}
	.top-content.c02 .image{
		width: 100%;
	}
	.top-content.c02 .text{
		order: 2;
		flex: none;
		width: 100%;
	}
	.top-content.c05 .wrap-inr{
		padding-right: 10px;
		padding-left: 10px;
	}
	.top-content.c05 .upper>div{
		flex: none;
		width: 100%;
	}
	.top-content.c05 .name{
		order: 3;
		text-align: center;
	}
	.top-content.c05 .name p.s1{
		display: inline-block;
		margin-bottom: 15px;
		padding: 7px 15px;
		line-height: 1.2;
		writing-mode: horizontal-tb;
	}
	.top-content.c05 .image{
		margin: 0 auto;
		max-width: 430px;
	}
	.top-content.c05 .text>div{
		display: block;
		writing-mode: horizontal-tb;
		text-align: center;
	}
}

@media screen and (max-width:767px) {
	.top-mv {
		padding: 15px;
		padding-bottom: 0;
	}
	.top-mv:before{
		display: none;
	}
	.top-mv .slider{
		position: relative;
		width: 100%;
	}
	.top-mv .slider:before{
		content: '';
		position: absolute;
		right: 0;
		bottom: -45px;
		width: 80px;
		height: 75px;
		background: url(../img/deco09.svg) no-repeat center;
		background-size: contain;
		z-index: 2;
	}
	.top-mv .slider img{
		aspect-ratio: 1 / 1;
		border-radius: 24px;
	}
	.top-mv .text{
		position: static;
		padding: 0;
		font-size: 16px;
		line-height: 1.8;
		text-shadow: none;
		transform: translateY(-14px);
	}
	.top-mv .text span{
		margin: 0;
	}
	.top-mv .text img{
		margin-bottom: 5px;
		width: 75%;
	}
	.top-mv .hours{
		position: static;
		padding: 0;
		background: none;
		border-radius: 0;
	}
	#footer .wrap .hours table,
	.hours table{
		font-size: 12px;
	}
	.hours thead th{
		padding: 10px;
	}
	.hours thead th:first-child{
		padding-left: 0;
		padding-right: 0;
		font-size: 12px;
		text-align: center;
	}
	#footer .wrap .hours tbody th,
	.hours tbody th{
		padding: 10px;
		font-size: 12px;
		text-align: center;
	}
	.hours tbody td{
		padding: 10px;
	}
	.hours .flex{
		gap: 5px;
	}
	.marquee-text {
		margin-bottom: 5px;
	}
	.package h2[data-en] {
		text-align: center;
	}
	.top-news .flex{
		position: relative;
		padding-bottom: 75px;
	}
	.top-news .header{
		width: 100%;
	}
	.top-news .header h2{
		margin-bottom: 0;
	}
	.top-news .link{
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translateX(-50%);
	}
	.top-news li a{
		padding: 17px 10px;
		padding-right: 0;
	}
	.top-news li a:before{
		display: none;
	}
	.top-news .p-title{
		flex: none;
		width: 100%;
		line-height: 1.4;
	}
	.top-news .date{
		font-size: 14px;
		line-height: 1.2;
	}
	.top-news .slider {
		width: 240px;
	}
	.top-news .slider img{
		margin: 0 5px;
		width: 230px;
	}
	.top-news .slick-list{
		overflow: visible;
	}
	.top-content.c01 .body:before{
		top: -60px;
		left: -5px;
	}
	.top-content.c01 .inr:before{
		right: -5px;
		bottom: 0;
		width: 103%;
		aspect-ratio: 740 / 575;
		background:  url(../img/deco04-sp.png) no-repeat center;
		background-size: contain;
		transform: translateY(95%);
	}
	.top-content.c02 h2{
		margin-bottom: 20px;
	}
	.top-content.c02 .text{
		margin: 0 -5px;
		width: calc(100% + 10px);
		line-height: 1.8;
		letter-spacing: 0;
	}
	.top-content.c02 p.s1{
		line-height: 1.5;
		font-weight: 600;
		letter-spacing: 0.05em;
	}
	.top-content.c03 {
		border-radius: 0;
	}
	.top-content.c02 .link{
		text-align: center;
	}
	.top-content.c03 .body{
		justify-content: flex-start;
	}
	.top-content.c03 .box{
		width: calc((100% - clamp(15px, calc(5.385px + 1.923vw), 30px) * 1) / 2);
	}
	.top-content.c03 dt{
		padding: 12px 20px;
	}
	.top-content.c03 dt:before{
		margin-bottom: 0;
	}
	.top-content.c03 dd{
		padding: 10px;
		padding-top: 12px;
	}
	.top-content.c03 ul{
		display: block;
		margin-left: -5px;
	}
	.top-content.c04 article{
		width: 100%;
	}
	.top-content.c05:before{
		left: auto;
		right: 17px;
	}
	.top-content.c05 .wrap-inr{
		background-position: right bottom 90px;
	}
	.top-content.c05 .text>div{
		letter-spacing: 0.05em;
	}
	.top-content.c05 .bottom p:not(:last-child){
		margin-bottom: 1em;
	}
	.top-content.c06 {
		background: url(../img/top-c06-bg-sp.webp) no-repeat center;
		background-size: cover;
	}
	.top-content.c06::before {
		background: rgba(0, 0, 0, 0.4);
	}
	.top-content.c06 .upper b{
		line-height: 1.3;
	}
	.top-content.c06 .upper p.s1{
		padding: 8px 30px;
	}
	.top-content.c07 article{
		width: 100%;
	}
	.top-content.c07 article:before{
		top: 15px;
		right: 15px;
	}
	.top-content.c07 article p{
		margin-bottom: 0;
	}
	.top-content.c08 dl{
		line-height: 1.5;
	}
	.top-content.c08 .show dd,
	.top-content.c08 dt span{
		padding: 20px 40px 15px 55px;
	}
	.top-content.c08 dd:before,
	.top-content.c08 dt:before{
		top: 17px;
	}
	.top-content.c08 dt span:after,
	.top-content.c08 dt span:before{
		width: 12px;
		height: 2px;
	}
	.top-content.c09 .map iframe{
		height: 320px!important;
	}
	.top-content.c09 .flex{
		position: relative;
		padding-bottom: 55px;
	}
	.top-content.c09 .address,
	.top-content.c09 .info,
	.top-content.c09 dl{
		padding: 0!important;
		width: 100%!important;
	}
	.top-content.c09 dt,
	.top-content.c09 dd{
		line-height: 1.35;
	}
	.top-content.c09 dt{
		padding: 4px 15px;
	}
	.top-content.c09 .link{
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		text-align: center;
	}
}

/* footer */
#footer {
	background: #EEF4E2;
}
#footer .upper {
	padding: clamp(40px, calc(7.949px + 6.410vw), 90px) 0;
	color: #fff;
	text-align: center;
    background: url(../img/footer-bg.webp) no-repeat center 0;
	background-size: cover;
}
#footer .header{
	margin-bottom: clamp(25px, calc(15.385px + 1.923vw), 40px);
	font-size: clamp(16px, calc(13.436px + 0.513vw), 20px);
	line-height: 1.5;
	letter-spacing: 0.05em;
}
#footer h2{
	margin-bottom: clamp(20px, calc(0.769px + 3.846vw), 50px);
	color: #fff;
	font-size: clamp(24px, calc(18.872px + 1.026vw), 32px);
	letter-spacing: 0.1em;
}
#footer a:hover{
	opacity: 0.7;
}
#footer .header span{
	color: #FF6363;
}
#footer .contact {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
	margin-bottom: clamp(20px, calc(0.769px + 3.846vw), 50px);
	font-size: clamp(16px, calc(14.718px + 0.256vw), 18px);
	letter-spacing: 0.05em;
}
#footer .contact>div{
	width: 100%;
	max-width: 480px;
}
#footer .contact a{
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 480 / 85;
	margin-bottom: 10px;
	color: #fff;
	background: var(--link-color);
	border-radius: 100px;
}
#footer .contact .form a:hover{
	background-color: #4A7B2C;
	opacity: 1;
}
#footer .contact span{
	display: block;
	padding-left: 45px;
	line-height: 1;
}
#footer .form span{
	font-size: clamp(20px, calc(14.872px + 1.026vw), 28px);
    background: url(../img/icon-calendar.svg) no-repeat 0 center;
}
#footer .tel span{
	font-size: clamp(24px, calc(18.872px + 1.026vw), 32px);
	letter-spacing: 0.1em;
    background: url(../img/icon-phone.svg) no-repeat 10px center;
	background-size: 19px auto;
}
#footer .upper dl{
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
	max-width: 890px;
	letter-spacing: 0.05em;
	background: #fff;
	border-radius: clamp(16px, calc(-5.795px + 4.359vw), 50px);
	overflow: hidden;
}
#footer .upper dt{
	display: flex;
	align-items: center;
	padding: 10px clamp(10px, calc(-9.231px + 3.846vw), 40px);
	color: #fff;
	font-size: clamp(16px, calc(13.436px + 0.513vw), 20px);
	white-space: nowrap;
	background: #FF6363;
}
#footer .upper dd{
	flex: 1;
	display: flex;
	align-items: center;
	padding: 10px;
	padding-left: clamp(10px, calc(-9.231px + 3.846vw), 40px);
	color: #FF6363;
	text-align: left;
}
#footer .middle {
	padding-top: 30px;
	padding-bottom: clamp(25px, calc(-23.077px + 9.615vw), 100px);
}
#footer .middle .flex{
	flex-wrap: wrap;
	justify-content: center;
	gap: 25px;
}
#footer .middle .flex>div{
	width: 100%;
	max-width: 610px;
}
#footer .middle .hours .flex{
	gap: 10px 20px;
}
#footer .middle b{
	display: block;
	margin-bottom: clamp(10px, calc(3.590px + 1.282vw), 20px);
	font-size: clamp(20px, calc(17.436px + 0.513vw), 24px);
	text-align: center;
	letter-spacing: 0.1em;
}
#footer .middle .inr{
	padding: 25px 30px;
	background: #fff;
	border-radius: 17px;
}
#footer .hours table{
	margin-bottom: clamp(10px, calc(3.590px + 1.282vw), 20px);
	width: 100%;
	font-size: 17px;
}
#footer .hours thead th{
	padding: 10px;
}
#footer .hours thead th:first-child{
	text-align: center;
}
#footer .hours tbody th{
	font-size: 18px;
	text-align: center;
	letter-spacing: 0.05em;
}
#footer .hours tbody td{
	padding: 10px;
}
#footer .hours .flex{
	justify-content: start;
	font-size: 12px;
	margin-bottom: 5px;
}
#footer .hours .bottom span.s1{
	padding: 3px 12px;
	border: 2px solid var(--link-color);
	border-radius: 8px;
}
#footer .hours .note{
	position: relative;
	margin-bottom: 0;
	padding-left: 15px;
	font-size: 14px;
	line-height: 1.4;
}
#footer .hours .note:before{
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
#footer .calendar .temp{
	background: #CECFCD;
	border-radius: 17px;
}
#footer section.bottom {
	position: relative;
	padding-top: clamp(25px, calc(-29.487px + 10.897vw), 110px);
	padding-bottom: clamp(40px, calc(33.590px + 1.282vw), 50px);
	color: #fff;
	font-weight: 400;
	background: #648F54;
}
#footer section.bottom:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(110px, calc(-21.410px + 26.282vw), 315px);
	aspect-ratio: 315 / 42;
    background: url(../img/deco05.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
#footer section.bottom a{
	color: #fff;
}
#footer section.bottom .flex{
	gap: 20px;
}
#footer .clinic .logo{
	margin-bottom: 10px;
	width: clamp(345px, calc(335.385px + 1.923vw), 360px);
	background: #FFFFFF;
	border-radius: 10px;
	overflow: hidden;
}
#footer .name{
	margin-bottom: clamp(10px, calc(3.590px + 1.282vw), 20px);
	font-size: 20px;
}
#footer .address {
	margin-bottom: clamp(8px, calc(3.513px + 0.897vw), 15px);
	line-height: 1.5;
}
#footer .tel {
	letter-spacing: 0.05em;
}
#footer section.bottom .fnav{
	display: flex;
	gap: 0 clamp(20px, calc(0.769px + 3.846vw), 50px);
	margin-bottom: clamp(30px, calc(10.769px + 3.846vw), 60px);
}
#footer section.bottom li{
	min-width: 280px;
	font-size: 18px;
}
#footer section.bottom li li{
	min-width: auto;
}
#footer section.bottom .menu>li>a{
	display: block;
	padding: 12px 0;
	padding-left: 30px;
	background: url(../img/arrow02.svg) no-repeat 0 center;
	background-size: 12px auto;
	border-bottom: #cee0c2 1px solid;
}
#footer section.bottom .sub-menu{
	margin-top: 10px;
	padding-left: 25px;
	line-height: 1.6;
}
#footer section.bottom .sub-menu a{
	display: block;
}
#footer section.bottom .sub-menu a:before{
	content: '・';
	display: inline-block;
}
#footer .copyright {
	margin-right: clamp(15px, calc(-7.436px + 4.487vw), 50px);
	font-size: 12px;
	text-align: right;
}
.footer-contact{
	display: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 2;
}
.footer-contact>div{
	width: 50%;
}
.footer-contact .tel{
	border-right: 1px solid #82CEDE;
}
.footer-contact a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	color: #fff;
	background: var(--link-color);
}
.footer-contact .tel b{
	display: inline-block;
	padding-left: 20px;
	min-height: 18px;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.08em;
	background: url(../img/icon-phone.svg) no-repeat 0 center;
	background-size: 12px auto;
}
.footer-contact .form b{
	display: inline-block;
	padding-left: 20px;
	font-weight: 500;
	letter-spacing: 0.05em;
	background: url(../img/icon-mobile.svg) no-repeat 0 center;
	background-size: 12px auto;
}

@media screen and (max-width:820px) {
	#footer .copyright {
		text-align: center;
	}
}

@media screen and (max-width:767px) {
	#footer .upper {
		background: url(../img/footer-bg-sp.webp) no-repeat center 0;
		background-size: cover;
	}
	#footer .header{
		line-height: 1.8;
	}
	.footer-contact{
		display: flex;
	}
	#footer .contact a{
		margin-bottom: 5px;
	}
	#footer .contact span{
		padding-left: 25px;
	}
	#footer .form span{
		background-size: 20px auto;
	}
	#footer .tel span{
		background: url(../img/icon-phone.svg) no-repeat 8px center;
		background-size: 14px auto;
	}
	#footer .upper dt{
		justify-content: center;
		padding: 3px 10px;
		width: 100%;
	}
	#footer .upper dd{
		flex: none;
		padding: 10px;
		width: 100%;
		line-height: 1.5;
	}
	#footer .middle .inr {
		padding: 15px;
	}
	#footer .wrap .hours tbody th,
	.hours tbody th{
		padding: 10px 0;
	}
	#footer .middle .flex{
		justify-content: center;
		margin-bottom: 10px;
	}
	#footer .middle p:has(b){
		margin-bottom: 10px;
	}
	#footer section.bottom:before{
		display: none;
	}
	#footer section.bottom .flex{
		gap: 0px;
	}
	#footer section.bottom .fnav{
		flex-wrap: wrap;
	}
	#footer section.bottom .fnav>ul{
		width: 100%;
	}
	#footer section.bottom li{
		width: 280px;
	}
	#footer section.bottom .menu>li>a{
		background-position: 8px center;
	}
}

/* 下層 */
.package.sub-page{
	margin-top: clamp(30px, calc(-2.051px + 6.410vw), 80px);
}
.page-cover .breadcrumb *{
	font-weight: 500!important;
	line-height: 1;
}
.page-cover .breadcrumb a{
	color: var(--link-color);
}
.page-cover .bread-crumbs .bc-item:not(.bc-home)::before {
    content: "/";
	border: none;
    transform: none;
}
.bread-crumbs .bc-item {
	color: var(--font-color);
	font-size: 14px;
	font-weight: normal;
}
.bread-crumbs .bc-link{
	gap: 5px;
}

@media screen and (max-width:767px) {
	.page-cover .breadcrumb{
		display: none;
	}
}

/* 当院について */
body.about .page-cover {
	margin: 0 auto;
	padding: 0 clamp(0px, calc(-9.615px + 1.923vw), 15px);
	max-width: 1375px;
	text-align: center;
}
body.about .page-cover .image {
	position: relative;
}
.about-content.c02:before,
body.about .page-cover .image:before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(110px, calc(-21.410px + 26.282vw), 315px);
	aspect-ratio: 315 / 42;
	background:  url(../img/deco03.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
body.about .page-cover .image img{
	display: block;
	width: 100%;
	border-radius: clamp(24px, calc(-37.538px + 12.308vw), 120px);
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
}
body.about .page-cover h1{
	display: inline-block;
	position: relative;
	margin-top: -90px;
	padding: 60px 60px;
	padding-bottom: 0;
	min-width: 440px;
	height: 145px;
	color: var(--font-color);
	font-size: clamp(24px, calc(13.744px + 2.051vw), 40px);
	letter-spacing: 0.1em;
	background: #FFFAEE url(../img/deco08.svg) no-repeat center 25px;
	border-radius: 215px 215px 0px 0px / 145px 145px 0px 0px;
}
body.about .page-cover h1:after{
	content: attr(data-en);
	display: block;
	margin-top: 5px;
	color: #80A652;
	font-size: clamp(14px, calc(11.436px + 0.513vw), 18px);
	font-family: "Jost", sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.about-content.c01 {
	margin-bottom: clamp(40px, calc(-24.103px + 12.821vw), 140px);
}
.about-content.c01 .upper {
	gap: 20px clamp(20px, calc(-18.462px + 7.692vw), 80px);
	margin-bottom: clamp(40px, calc(-30.513px + 14.103vw), 150px);
}
.about-content.c01 .image {
	position: relative;
	padding-top: clamp(0px, calc(-57.692px + 11.538vw), 90px);
	width: 38%;
}
.about-content.c01 .image:before{
	content: '';
	position: absolute;
	top: 0;
	right: calc(clamp(10px, calc(-9.231px + 3.846vw), 40px) * -1);
	width: clamp(60px, calc(-4.103px + 12.821vw), 160px);
	aspect-ratio:  8 / 7;
	background: url(../img/deco09.svg) no-repeat center;
	background-size: cover;
}
.about-content.c01 .image img{
	display: block;
	border-radius: clamp(24px, calc(20.154px + 0.769vw), 30px);
}
.about-content.c01 .text{
	flex: 1;
	font-size: clamp(16px, calc(14.718px + 0.256vw), 18px);
	line-height: 2.4;
}
.about-content.c01 .text p{
	margin-bottom: 30px;
}
.about-content.c01 .text p.s1{
	color: #569D29;
	font-size: clamp(20px, calc(12.308px + 1.538vw), 32px);
	line-height: 2;
}
.about-content.c01 .bottom {
	position: relative;
}
.about-content.c01 .bottom:before{
	content: '';
	position: absolute;
	top: calc(clamp(30px, calc(4.359px + 5.128vw), 70px) * -1);
	right: 15px;
	width: clamp(40px, calc(1.538px + 7.692vw), 100px);
	aspect-ratio: 213 / 297;
    background: url(../img/deco10.png) no-repeat center;
	background-size: cover;
}
.about-content.c01 .bottom:after{
	content: '';
	position: absolute;
	top: calc(clamp(150px, calc(34.615px + 23.077vw), 330px) * -1);
	right: -10px;
	width: 45%;
	aspect-ratio: 57 / 38;
    background: url(../img/deco11.svg) no-repeat center;
	background-size: contain;
}
.about-content.c01 dl{
	padding: clamp(15px, calc(2.179px + 2.564vw), 35px) 20px;
	padding-top: 0;
	text-align: center;
	background: #fff;
	border: #eb975b 4px solid;
	border-radius: clamp(16px, calc(7.026px + 1.795vw), 30px);
}
.about-content.c01 dt{
	display: inline-block;
	padding: 7px clamp(25px, calc(15.385px + 1.923vw), 40px);
	color: #fff;
	font-size: clamp(18px, calc(14.154px + 0.769vw), 24px);
	font-weight: 500;
	line-height: 1.2;
	background: #EB975B;
	border-radius: clamp(15px, calc(11.154px + 0.769vw), 21px);
    transform: translateY(-50%);
}
.about-content.c01 dd{
	font-size: clamp(16px, calc(14.718px + 0.256vw), 18px);
	line-height: 2.2;
}
.about-content.c02 {
	position: relative;
	background: #EEF4E2;
	border-radius: clamp(20px, calc(-44.103px + 12.821vw), 120px);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.about-content.c02 .wrap{
	position: relative;
	padding-top: clamp(40px, calc(-11.282px + 10.256vw), 120px);
	padding-bottom: clamp(40px, calc(-30.513px + 14.103vw), 150px);
	background: url(../img/deco12.png) no-repeat right -10px top 35px;
	background-size: 16% auto;
}
.about-content.c02 h2{
	margin-bottom: clamp(40px, calc(7.949px + 6.410vw), 90px);
	text-align: center;
}
.about-content.c02 .body{
    counter-reset: order;
	display: flex;
	flex-wrap: wrap;
	gap: 30px clamp(20px, calc(-55.000px + 9.375vw), 65px);
}
.about-content.c02 .box{
	position: relative;
	width: calc((100% - clamp(20px, calc(-55.000px + 9.375vw), 65px) * 2) / 3);
}
.about-content.c02 .box:nth-child(2){
	margin-top: 70px;
}
.about-content.c02 .box:nth-child(3){
	margin-top: 150px;
}
.about-content.c02 .box:before{
	width: 90px;
}
.about-content.c02 .box:after{
    counter-increment: order;
    content: counter(order);
	position: absolute;
	top: calc(clamp(15px, calc(2.179px + 2.564vw), 35px) * -1);
	right: clamp(5px, calc(-23.846px + 5.769vw), 50px);
	width: 40px;
	color: var(--link-color);
	font-size: clamp(56px, calc(40.615px + 3.077vw), 80px);
	font-family: "EB Garamond", serif;
	text-align: center;
	line-height: 0.7;
}
.about-content.c02 img{
	display: block;
	margin-bottom: clamp(10px, calc(6.795px + 0.641vw), 15px);
	border-radius: clamp(24px, calc(20.154px + 0.769vw), 30px);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.about-content.c02 p:has(b){
	margin-bottom: 15px;
}
.about-content.c02 b{
	display: block;
	color: var(--link-color);
	font-size: clamp(20px, calc(17.436px + 0.513vw), 24px);
	line-height: 1.65;
}
.about-content.c03 {
	margin-bottom: clamp(40px, calc(-24.103px + 12.821vw), 140px);
	padding: clamp(40px, calc(-17.692px + 11.538vw), 130px) 0;
	background: url(../img/about/about-c03-bg.webp) no-repeat center;
	background-size: cover;
}
.about-content.c03 h2{
	margin-bottom: clamp(20px, calc(-12.051px + 6.410vw), 70px);
	text-align: center;
}
.about-content.c03 .slider-wrap{
	position: relative;
}
.about-content.c03 .body{
	position: static;
	margin: 0 auto;
	width: 430px;
    transform: translateX(-100%);
}
.about-content.c03 .box{
	position: relative;
	margin: 0 clamp(10px, calc(3.590px + 1.282vw), 20px);
}
.about-content.c03 .box.boss:before{
	content: attr(data-en);
	position: absolute;
	top: 30px;
	right: 20px;
	font-size: 14px;
	letter-spacing: 0.05em;
	font-family: "Jost", sans-serif;
    writing-mode: vertical-rl;
	z-index: 2;
}
.about-content.c03 .box.boss:after{
	content: '';
	position: absolute;
	top: 0;
	right: 32px;
	width: 1px;
	height: 25px;
	border-left: #5e4628 1px dotted;
}
.about-content.c03 .inr{
	position: relative;
}
.about-content.c03 .box img{
	width: 100%;
	aspect-ratio: 389 / 555;
	object-fit: cover;
	border-radius: clamp(16px, calc(7.026px + 1.795vw), 30px);
}
.about-content.c03 dl{
	display: flex;
	align-items: center;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: clamp(6px, calc(-1.051px + 1.410vw), 17px) 0;
	height: clamp(54px, calc(39.897px + 2.821vw), 76px);
	letter-spacing: 0.05em;
	text-align: center;
	background: #fff;
	border-radius: clamp(16px, calc(7.026px + 1.795vw), 30px);
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.about-content.c03 dt{
	padding: 10px;
	min-width: 90px;
	font-size: clamp(16px, calc(14.718px + 0.256vw), 18px);
}
.about-content.c03 dd{
	flex: 1;
	font-size: clamp(20px, calc(17.436px + 0.513vw), 24px);
	border-left: 1px dotted #5E4628;
}
.about-content.c03 .link{
	margin-top: 10px;
	text-align: center;
}
.about-content.c03 .slick-list{
	overflow: visible;
}
.about-content.c03 .slick-arrow {
    top: calc(50% - 30px);
    width: 64px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: #fff url(../img/arrow04.svg) no-repeat center;
	border: #648f54 2px solid;
	border-radius: 100%;
	z-index: 1;
}
.about-content.c03 .slick-next {
	background: #fff url(../img/arrow05.svg) no-repeat center;
}
.about-content.c03 .slick-arrow:before {
	display: none;
}
.about-content.c04 {
	margin-bottom: clamp(30px, calc(-40.513px + 14.103vw), 140px);
	text-align: center;
}
.about-content.c04 .bottom,
.about-content.c04 .upper {
	position: relative;
	padding: 
		clamp(40px, calc(14.359px + 5.128vw), 80px) 
		clamp(15px, calc(-1.026px + 3.205vw), 40px);
	border-radius: clamp(16px, calc(-25.026px + 8.205vw), 80px);
}
.about-content.c04 .upper {
	color: #fff;
	background: #648F54;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.about-content.c04 .upper:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(110px, calc(-21.410px + 26.282vw), 315px);
	aspect-ratio: 315 / 42;
	background:  url(../img/deco03.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
.about-content.c04 .upper:after{
	content: '';
	position: absolute;
	top: clamp(50px, calc(-36.538px + 17.308vw), 185px);
	left: 50px;
	width: 79%;
	aspect-ratio: 99 / 50;
	background:  url(../img/deco13.png) no-repeat center;
	background-size: contain;
    transform: translateY(-100%);
	pointer-events: none;
}
.about-content.c04 h2{
	margin-bottom: 50px;
}
.about-content.c04 .upper h2{
	color: #fff;
}
.about-content.c04 .slider-wrap{
	overflow: hidden;
}
.about-content.c04 .upper .body{
	margin: 0 auto;
	margin-bottom: 10px;
	/* width: 34%; */
	width: 400px;
}
.about-content.c04 .box{
	position: relative;
}
.about-content.c04 .box:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 90px;
	aspect-ratio: 60 / 8;
    background: url(../img/deco18.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
.about-content.c04 .upper .box{
	margin: 0 15px;
}
.about-content.c04 img{
	display: block;
	margin-bottom: 15px;
	border-radius: clamp(16px, calc(7.026px + 1.795vw), 30px);
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}
.about-content.c04 dt{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: clamp(5px, calc(1.795px + 0.641vw), 10px);
	font-size: clamp(20px, calc(17.436px + 0.513vw), 24px);
	font-weight: 600;
	line-height: 1.6;
}
.about-content.c04 dd{
	margin: 0 -5px;
	font-size: 16px;
	text-align: left;
}
.about-content.c04 .slick-list{
	overflow: visible;
}
.about-content.c04 .slick-arrow {
    top: clamp(245px, calc(184.103px + 12.179vw), 340px);
	left: 12px;
    width: clamp(42px, calc(27.897px + 2.821vw), 64px);
	height: auto;
	aspect-ratio: 1 / 1;
	background: #fff url(../img/arrow04.svg) no-repeat center;
	background-size: clamp(15px, calc(9.872px + 1.026vw), 23px) auto;
	border: #648f54 2px solid;
	border-radius: 100%;
	z-index: 1;
}
.about-content.c04 .slick-next {
	left: auto;
	right: 12px;
	background: #fff url(../img/arrow05.svg) no-repeat center;
	background-size: clamp(15px, calc(9.872px + 1.026vw), 23px) auto;
}
.about-content.c04 .slick-arrow:before {
	display: none;
}
.about-content.c04 .bottom{
	background: #EAF2E7;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.about-content.c04 .bottom:before{
	content: '';
	position: absolute;
	right: -58px;
	bottom: 104px;
	width: 37%;
	aspect-ratio: 943 / 605;
	background:url(../img/deco14.png) no-repeat center;
	background-size: contain;
}
.about-content.c04 .bottom .body{
	display: flex;
	flex-wrap: wrap;
	gap: 
		clamp(20px, calc(3.974px + 3.205vw), 45px) 
		clamp(12px, calc(-0.821px + 2.564vw), 32px);
}
.about-content.c04 .bottom .box{
	width: calc((100% - clamp(12px, calc(-0.821px + 2.564vw), 32px) * 2) / 3);
}
.about-content.c04 .bottom .box:before{
	width: clamp(52px, calc(27.641px + 4.872vw), 90px);
	background-image: url(../img/deco19.svg);
	background-size: contain;
}
.about-content.c04 .bottom .box img{
	width: 100%;
	aspect-ratio: 371 / 234;
	object-fit: cover;
}
.about-content.c04 .bottom dt{
	margin-bottom: 5px;
	font-size: clamp(16px, calc(13.436px + 0.513vw), 20px);
}
.about-content.c05 {
	position: relative;
	padding: clamp(40px, calc(-4.872px + 8.974vw), 110px) 0;
	background: #fff;
	border-radius: clamp(30px, calc(-27.692px + 11.538vw), 120px);
	border-bottom-left-radius:0 ;
	border-bottom-right-radius:0 ;
}
.about-content.c05:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: clamp(110px, calc(-21.410px + 26.282vw), 315px);
	aspect-ratio: 315 / 42;
	background:  url(../img/deco03.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
.about-content.c05 h2{
	text-align: center;
}
.about-content.c05 .upper {
	margin-bottom: clamp(30px, calc(7.564px + 4.487vw), 65px);
	font-size: 18px;
	text-align: center;
	letter-spacing: 0.05em;
}
.about-content.c05 .map iframe{
	display: block;
	margin-bottom: clamp(15px, calc(5.385px + 1.923vw), 30px);
	border-radius: 30px;
	overflow: hidden;
}
.about-content.c05 .flex{
	flex-wrap: nowrap;
	gap: 20px clamp(20px, calc(0.769px + 3.846vw), 50px);
	margin-top: clamp(20px, calc(7.179px + 2.564vw), 40px);
}
.about-content.c05 dl{
	max-width: 440px;
	text-align: left;
}
.about-content.c05 dt{
	display: inline-block;
	margin-bottom: 8px;
	padding: 0 15px;
	min-width: 80px;
	height: 31px;
	font-size: 14px;
	font-weight: 600;
	line-height: 27px;
	text-align: center;
	border: #5e4628 2px dashed;
	border-radius: 100px;
}
.about-content.c05 .bottom {
	position: relative;
	padding: 0 clamp(15px, calc(-1.026px + 3.205vw), 40px);
	padding-top: clamp(40px, calc(-4.872px + 8.974vw), 110px);
	padding-bottom: clamp(30px, calc(17.179px + 2.564vw), 50px);
	text-align: center;
	background: #F0F0F0;
	border-radius: clamp(16px, calc(-25.026px + 8.205vw), 80px);
}
.about-content.c05 .bottom:before{
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: 315px;
	aspect-ratio: 60 / 8;
    background: url(../img/deco07.svg) no-repeat center 0;
	background-size: cover;
    transform: translateX(-50%);
}
.about-content.c05 .bottom:after{
	content: '';
	position: absolute;
	top: -50px;
	left: -60px;
	width: 38%;
	aspect-ratio: 891 / 448;
    background: url(../img/deco15.png) no-repeat center ;
	background-size: contain;
}
.about-content.c05 .box:not(:last-child){
	margin-bottom: clamp(40px, calc(33.590px + 1.282vw), 50px);
}
.about-content.c05 h3{
	display: inline-block;
	margin-bottom: 60px;
	padding: 0 20px;
	height: 48px;
	color: var(--font-color);
	font-size: 20px;
	text-align: center;
	line-height: 44px;
	background: #fff;
	border: #5e4628 2px dashed;
	border-radius: 100px;

}
.about-content.c05 ol{
    counter-reset: order;
	display: flex;
	flex-wrap: wrap;
	gap: 70px 35px;
}
.about-content.c05 li{
	position: relative;
	width: calc((100% - 70px) / 3);
	font-size: 16px;
	text-align: left;
}
.about-content.c05 li:before{
    counter-increment: order;
    content: counter(order);
	position: absolute;
	top: 0;
	left: 50%;
	width: 64px;
	aspect-ratio: 1 / 1;
	color: #648F54;
	font-size: 40px;
	font-family: "EB Garamond", serif;
	text-align: center;
	line-height: 58px;
	background: #fff;
	border: #648f54 2px dotted;
	border-radius: 100%;
    transform: translateY(-50%) translateX(-50%);
}
.about-content.c05 li img{
	display: block;
	margin-bottom: 10px;
	width: 100%;
	aspect-ratio: 368 / 246;
	border-radius: 16px;
	object-fit: cover;
}

@media screen and (max-width:767px) {
	body.about .page-cover {
		padding-top: 10px;
	}
	body.about .page-cover h1{
		min-width: 375px;
		height: 120px;
	}
	body.about .package.sub-page{
		margin-top: 20px;
	}
	.about-content.c01 .image {
		width: 100%;
	}
	.about-content.c01 .image:before{
		top: -25px;
		right: auto;
		left: 10px;
	}
	.about-content.c01 .text{
		line-height: 1.8;
	}
	.about-content.c01 .text p{
		margin-bottom: 0;
	}
	.about-content.c01 .text p.s1{
		margin-bottom: 10px;
		line-height: 1.5;
	}
	.about-content.c01 .bottom:before{
		right: auto;
		left: 5px;
	}
	.about-content.c01 .bottom:after{
		display: none;
	}
	.about-content.c01 dl{
		padding: 15px 10px;
		padding-top: 0;
	}
	.about-content.c01 dd{
		margin-top: -10px;
		line-height: 1.8;
		text-align: left;
	}
	.about-content.c02 .wrap{
		background: none;
	}
	.about-content.c02 .wrap:before{
		content: '';
		position: absolute;
		top: -35px;
		right: 15px;
		width: 60px;
		height: 100px;
		background: url(../img/deco12.png) no-repeat center;
		background-size: contain;
	}
	.about-content.c02 .box{
		width: 100%;
	}
	.about-content.c02 .box:nth-child(2),
	.about-content.c02 .box:nth-child(3){
		margin-top: 0;
	}
	.about-content.c02 .box:after{
		top: -23px;
	}
	.about-content.c03 .body{
		margin-left: -15px;
		width: 375px;
		transform: translateX(0);
	}
	.about-content.c03 .box{
		position: relative;
		margin: 0 15px;
	}
	.about-content.c03 .box.boss:before{
		right: 10px;
	}
	.about-content.c03 .box.boss:after{
		right: 22px;
	}
	.about-content.c03 .slick-arrow {
		display: none!important;
	}
	.about-content.c04 .upper {
		padding-right: 0;
		padding-left: 0;
	}
	.about-content.c04 .upper:after{
		top: -120px;
		left: -5px;
		width: 364px;
		aspect-ratio: 728 / 508;
		background:  url(../img/deco13-sp.png) no-repeat center;
		background-size: contain;
		transform: translateY(0);
	}
	.about-content.c04 .upper .body{
		margin: 0 auto;
		margin-bottom: 5px;
		width: 345px;
	}
	.about-content.c04 .upper .box{
		margin: 0 15px;
	}
	.about-content.c04 .slick-arrow {
		left: -2px;
	}
	.about-content.c04 .slick-next {
		left: auto;
		right: -2px;
	}
	.about-content.c04 .bottom h2{
		margin-bottom: 20px;
	}
	.about-content.c04 .bottom .box{
		width: calc((100% - clamp(12px, calc(-0.821px + 2.564vw), 32px) * 1) / 2);
	}
	.about-content.c04 .bottom dt{
		letter-spacing: -1px;
		line-height: 1.25;
	}
	.about-content.c04 .bottom dd{
		font-size: 14px;
		line-height: 1.7;
	}
	.about-content.c04 .bottom .box img{
		margin-bottom: 10px;
	}
	.about-content.c04 .bottom:before{
		right: -10px;
		bottom: -30px;
		width: 135px;
	}
	.about-content.c05 .upper {
		text-align: left;
	}
	.about-content.c05 .map iframe{
		height: 300px!important;
	}
	.about-content.c05 .flex{
		flex-wrap: wrap;
	}
	.about-content.c05 dl{
		width: 100%;
		max-width: 100%;
	}
	.about-content.c05 dt{
		margin-bottom: 12px;
	}
	.about-content.c05 dd{
		line-height: 1.35;
	}
	.about-content.c05 .bottom:before{
		display: none;
	}
	.about-content.c05 .bottom:after{
		top: -25px;
		left: -10px;
		width: 145px;
	}
	.about-content.c05 li{
		width: 100%;
	}
	.about-content.c05 li img{
		aspect-ratio: 326 / 246;
	}
}

/* 共通テンプレート */
body:has(.oc-page-content) .page-cover {
	position: relative;
	margin: 0 auto;
	margin-top: 10px;
	padding: 0 15px;
	max-width: 1337px;
}
body:has(.oc-page-content) .page-cover .body{
	position: relative;
}
body:has(.oc-page-content) .page-cover .image{
	position: relative;
	margin-bottom: 0;
	border-radius: 16px;
	overflow: hidden;
}
body:has(.oc-page-content) .page-cover .image::after{
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.2);
	pointer-events: none;
}
body:has(.oc-page-content) .page-cover .image img{
	display: block;
	width: 100%;
	height: clamp(100px, calc(35.897px + 12.821vw), 200px);
	aspect-ratio: 12 / 2;
	border-radius: 16px;
	object-fit: cover;
}
body:has(.oc-page-content) .page-cover h1{
	position: absolute;
	top: 50%;
	left: 0;
	padding: 0 15px;
	width: 100%;
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(24px, calc(13.744px + 2.051vw), 40px);
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	z-index: 2;
    transform: translateY(-50%);
}
body:has(.oc-page-content) .page-cover .breadcrumb{
	margin-top: 12px;
}
body:has(.oc-page-content) .page-cover + .oc-page-content {
	margin-top: clamp(40px, calc(28px + 3.077vw), 64px);
}
.oc-page-content {
	display: block;
	margin: 0 auto;
	margin-bottom: clamp(50px, calc(17.949px + 6.410vw), 100px);
	max-width: 1038px;
	padding: 0 15px;
	line-height: 1.7;
}
.oc-page-content .wp-block-column p:not([class*="__"]),
.oc-page-content > .wp-block-paragraph{
	font-size: 16px;
}
.wp-block-paragraph:last-child {
	margin-bottom: 0!important;
}
.oc-page-content .is-layout-flex{
	justify-content: space-between;
}
.oc-page-content a{
	text-decoration: underline;
}
.oc-page-content a:hover{
	color: var(--link-color);
}
.oc-page-content a[target="_blank"]{
	position: relative;
	display: inline-block;
}
.oc-page-content a[target="_blank"]:after{
	content: '';
	display: inline-block;
	margin-left: 4px;
	width: 16px;
	aspect-ratio: 1 / 1;
	background: url(../img/icon-link.svg) no-repeat center;
	background-size: 12px auto;
    transform: translateY(2px);
}
.oc-page-content .has-warning-color{
	color: #DE1212!important;
}
.oc-page-content .wp-block-button__link{
	padding: 15px;
	min-width: 205px;
	color: #fff;
	font-size: 18px;
	line-height: 1.2;
	text-decoration: none;
	background: var(--link-color);
	border-radius: 100px;
}
.oc-page-content .wp-block-button__link:hover{
	color: #fff;
	background: #4A7B2C;
}
.oc-page-content .wp-block-button__link:after{
	content: '';
	display: inline-block;
	margin-left: 10px;
	width: 15px;
	aspect-ratio: 1 / 1;
	background: url(../img/arrow02.svg) no-repeat center;
	background-size: 100% auto;
    transform: translateY(1px);
}
.oc-page-content .is-size-small .wp-block-button__link{
	padding: 10px;
	min-width: 144px;
	font-size: 16px;
}
.oc-page-content .is-size-large .wp-block-button__link{
	min-width: 240px;
}
.oc-page-content .tab-menu{
	display: flex;
	align-items: flex-end;
	gap: 4px;
	height: 60px;
}
.oc-page-content .tab-menu span{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px clamp(10px, calc(-9.231px + 3.846vw), 40px);
	height: 50px;
	color: #fff;
	font-size: clamp(16px, calc(14.718px + 0.256vw), 18px);
	cursor: pointer;
	background: #589332;
	border-radius: 16px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
    transition: all .3s;
}
.oc-page-content .tab-menu span.active{
	height: 60px;
	background: var(--link-color);
}
.oc-page-content .tab-detail .detail{
	display: none;
	padding: 15px;
	background: #fff;
	opacity: 0;
    transition: all .3s;
}
.oc-page-content .tab-detail .detail.active{
	display: block;
	opacity: 1;
}
.oc-page-content .wp-block-accordion-heading{
	padding: 24px;
	color: var(--font-color);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	background: #EEF4E2;
	border-radius: 8px;
}
.oc-page-content .is-open .wp-block-accordion-heading{
	color: #fff;
	background: var(--link-color);
    transition: all .3s;
}
.oc-page-content .wp-block-accordion-heading:hover span{
	text-decoration: none;
}

.oc-page-content .wp-block-accordion-heading__toggle-icon{
	color: var(--link-color);
	font-weight: bold;
}
.oc-page-content .is-open .wp-block-accordion-heading__toggle-icon{
	color: #fff;
}
.oc-page-content .wp-block-accordion-panel{
	margin-top: 24px;
	padding-left: 24px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
}

/* プライバシーポリシー */
.oc-page-content.privacy-policy-page{
	margin-top: clamp(40px, calc(24.615px + 3.077vw), 64px);
}
.oc-page-content.privacy-policy-page .wp-block-list{
	margin-top: 10px;
	margin-bottom: clamp(22px, calc(16.872px + 1.026vw), 30px);
}
.oc-page-content.privacy-policy-page .wp-block-list > li{
	overflow-wrap: anywhere;
}
.oc-page-content.privacy-policy-page ul.wp-block-list > li{
	padding-left: 1.5rem;
}
.oc-page-content.privacy-policy-page ul.wp-block-list > li::before{
	left: 6px;
}

/* 公開準備中ページ */
.oc-page-preparing{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(80px, 12vw, 160px) 20px;
	min-height: 60vh;
	text-align: center;
	background: #fffaee;
}
.oc-page-preparing__inner{
	width: min(100%, 720px);
}
.oc-page-preparing__label{
	margin-bottom: 12px;
	color: var(--link-color);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2em;
}
.oc-page-preparing__title{
	margin-bottom: 24px;
	font-size: clamp(28px, calc(20.308px + 1.538vw), 40px);
	letter-spacing: 0.1em;
}
.oc-page-preparing__text{
	margin-bottom: 40px;
	font-size: clamp(16px, calc(14.718px + 0.256vw), 18px);
}
