@charset "UTF-8";

:root {
	--color_body_bg: #fff;
	--color_text: #333;
	--color_link: #63AA6E;
	--color_border: #C7C3BB;
	--color_primary: #63AA6E;
	--color_secondary: #AEC15D;
	--color_tertiary: #F8F3ED;
	--font_base: "FOT-筑紫A丸ゴシック Std R", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
	--font_jp: "FOT-筑紫A丸ゴシック Std D", sans-serif;
	--font_en: "Red Hat Text", sans-serif;
}

/*-----------------------------------------------------------
1-1. Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	font-size: 100%;
}

body {
	margin: 0;
	padding: 0;
}

div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
sub,
sup,
var,
b,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
mark,
audio,
video,
a {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	font-size: 100%;
	font: inherit;
}

span,
small,
em,
time,
i {
	font-style: normal;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}

a {
	border: medium;
}

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

a[href^=tel] {
	cursor: default;
}

a:-webkit-any-link:focus-visible {
	outline-offset: 1px;
}

:focus-visible {
	outline: -webkit-focus-ring-color auto 1px;
}

mark {
	background: transparent;
	font-style: normal;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

legend {
	color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5em;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

li {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

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

input,
select {
	vertical-align: middle;
}

abbr[title],
dfn[title] {
	cursor: help;
}

del {
	text-decoration: line-through;
}

ins {
	font-style: oblique;
	text-decoration: none;
}

mark {
	background: transparent;
	font-style: normal;
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}

table {
	border-color: inherit;
	border-collapse: collapse;
	border-spacing: 0;
	border-color: inherit;
	text-indent: 0;
	width: 100%;
}

iframe {
	border-style: none;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

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

::-moz-selection {
	background: #d4dcd6;
}

::selection {
	background: #d4dcd6;
}

:root {
	--leading-trim: calc((1em - 1lh) / 2);
}

:lang(en) {
	--leading-trim: calc((1cap - 1lh) / 2);
}

@supports not (top: 1lh) {
	:root {
		--leading-trim: 0px;
	}

	:lang(en) {
		--leading-trim: 0px;
	}
}

/*-----------------------------------------------------------
body
-----------------------------------------------------------*/
body,
html {
	width: 100%;
	min-height: 100%;
}

html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	background-color: var(--color_body_bg);
	color: var(--color_text);
	font-size: 1.6rem;
	font-family: var(--font_base);
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.05em;
	-webkit-text-size-adjust: none;
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
	container-type: inline-size;
}

a {
	color: inherit;
	text-decoration: none;
}

.link {
	color: var(--color_link);
	text-decoration: underline;
}

.link:is(:hover, :focus) {
	text-decoration: none;
}

.link[target=_blank]::after {
	content: "";
	background: var(--color_link);
	-webkit-mask: url(../images/share/icon_out.svg) no-repeat center/contain;
	mask: url(../images/share/icon_out.svg) no-repeat center/contain;
	width: 12px;
	height: 10px;
	display: inline-block;
	margin-left: 5px;
}

:target {
	scroll-margin-top: 100px;
}

@media (max-width: 800px) {

	/*-----------------------------------------------------------
	body SP
	-----------------------------------------------------------*/
	body {
		font-size: 1.4rem;
		line-height: 1.8;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		line-height: 1.4;
	}

	:target {
		scroll-margin-top: 85px;
	}
}

/*-----------------------------------------------------------
header
-----------------------------------------------------------*/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	-webkit-transition: background-color 0.5s, -webkit-box-shadow 0.5s;
	transition: background-color 0.5s, -webkit-box-shadow 0.5s;
	transition: background-color 0.5s, box-shadow 0.5s;
	transition: background-color 0.5s, box-shadow 0.5s, -webkit-box-shadow 0.5s;
}

.header.is-fixed {
	background-color: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.h-container {
	padding: 0 154px 0 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 25px;
	height: 100px;
}

.h-container .tel-link {
	font-size: 2.2rem;
}

.h-container .tel-link:before {
	width: 1.8rem;
	height: 1.8rem;
	margin-right: 5px;
}

.h-logo {
	margin: 0 auto 0 0;
}

.fixed-menu {
	border-radius: 4px 0 0 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: fixed;
	top: 60%;
	right: 0;
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
	-webkit-transform: translate(550px, -50%);
	transform: translate(550px, -50%);
	z-index: 50;
}

.fixed-menu:hover,
.fixed-menu:focus {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.fixed-menu .ttl {
	border-radius: 5px 0 0 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: #BE9E73;
	color: #fff;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 1;
	white-space: nowrap;
	-webkit-font-feature-settings: normal;
	font-feature-settings: normal;
	font-family: var(--font_jp);
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	padding: 40px 0;
	width: 56px;
}

.fixed-menu .ttl i {
	margin-bottom: 15px;
}

.fixed-menu .inner {
	background: #fff;
	padding: 25px;
	width: 550px;
}

@media (max-width: 800px) {

	/*-----------------------------------------------------------
	header SP
	-----------------------------------------------------------*/
	.h-container {
		padding: 0 70px 0 15px;
		height: 82px;
	}

	.h-container :is(.tel-link, .btn-style02, .sns) {
		display: none;
	}

	.h-logo {
		max-width: 223px;
	}

	.fixed-menu {
		display: none;
	}
}

/*-----------------------------------------------------------
g-navi
-----------------------------------------------------------*/
/* ボタン */
.navi-menu-btn {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/share/hamburger_pc.svg) no-repeat right top/contain;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	width: 130px;
	height: 130px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	z-index: 999;
}

.navi-menu-btn:after {
	content: "Menu";
	display: block;
	position: absolute;
	top: 80px;
	left: 0;
	width: 100%;
	padding: 0 0 0 1rem;
	color: #fff;
	font-family: var(--font_en);
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 0;
}

.navi-menu-btn .hamburger-line {
	position: absolute;
	top: 51px;
	right: 40px;
	width: 40px;
	height: 1px;
	background: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before,
.navi-menu-btn .hamburger-line::after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

.navi-menu-btn .hamburger-line::before {
	top: -12px;
}

.navi-menu-btn .hamburger-line::after {
	top: 12px;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line {
	background-color: transparent;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before,
.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
	top: 0;
	background: #fff;
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.navi-menu-btn[aria-expanded=true] .hamburger-line::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.navi-menu-btn[aria-expanded=true]:after {
	content: "Close";
}

.navi-menu-btn .u-visually-hidden {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	margin: -1px;
}

/* ボタン類 */
.sp-navi-btns {
	display: none;
}

/* 中身 */
.g-navi-contents {
	display: none;
	background: #F8F3ED;
	padding: 100px 0;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 90%;
	max-width: 900px;
	-webkit-transition: opacity 0.5s, display 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, display 0.5s, -webkit-transform 0.5s;
	transition: opacity 0.5s, transform 0.5s, display 0.5s;
	transition: opacity 0.5s, transform 0.5s, display 0.5s, -webkit-transform 0.5s;
	transition-behavior: allow-discrete;
	z-index: 998;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	opacity: 0;
}

.g-navi-contents.is-open {
	display: block;
	pointer-events: auto;
	visibility: visible;
	overflow-y: auto;
	overscroll-behavior-y: contain;
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

@starting-style {
	.g-navi-contents.is-open {
		opacity: 0;
	}
}

/* レイアウト等 */
.g-navi-layout {
	margin-inline: auto;
	width: 90%;
	max-width: 500px;
}

.g-navi-layout .item+.item {
	margin-top: 75px;
}

.g-navi-list-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.g-navi-list-wrap>.g-navi-list {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.g-navi-list>li {
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
	margin-bottom: 5px;
}

.g-navi-list>li>a,
.g-navi-list>li>span {
	font-family: var(--font_jp);
	font-size: 1.6rem;
	background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
	background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
	padding-bottom: 3px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}

@media (hover: hover) {

	.g-navi-list>li>a:is(:hover, :focus),
	.g-navi-list>li>span:is(:hover, :focus) {
		background-size: 100% 1px;
		background-position: bottom left;
	}
}

.g-navi-list>li>ul {
	margin-top: 5px;
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
}

.g-navi-list>li>ul>li {
	margin-bottom: 5px;
	padding: 0 0 0 15px;
	position: relative;
}

.g-navi-list>li>ul>li:before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	background: #C7C3BB;
	position: absolute;
	left: 0;
	top: 50%;
}

.g-navi-list>li>ul>li>a {
	font-family: var(--font_jp);
	font-size: 1.5rem;
	background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
	background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
	padding-bottom: 3px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
	.g-navi-list>li>ul>li>a:is(:hover, :focus) {
		background-size: 100% 1px;
		background-position: bottom left;
	}
}

.navi-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 30px;
	margin-bottom: 15px;
}

.navi-logo .sns {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30px;
	flex: 0 0 30px;
}

.navi-txt {
	text-align: center;
	margin-bottom: 35px;
}

.navi-tel {
	text-align: center;
	margin-bottom: 15px;
}

.navi-btn-wrap {
	text-align: center;
	margin-top: 40px;
}

.navi-btn-wrap .navi-btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 0 7px;
	background: var(--color_primary);
	color: #fff;
	font-family: var(--font_jp);
	font-size: 1.8rem;
	line-height: 1.1;
	border-radius: 100px;
	padding: 20px;
	position: relative;
	min-width: 220px;
	text-align: center;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.navi-btn-wrap .navi-btn .icon img {
	vertical-align: -1px;
}

@media (hover: hover) {
	.navi-btn-wrap .navi-btn:is(:hover, :focus) {
		background-color: oklch(from var(--color_primary) calc(l - 0.1) c h);
	}
}

.no-link {
	cursor: default;
	pointer-events: none;
}

@media (max-width: 800px) {

	/*-----------------------------------------------------------
	g-navi SP
	-----------------------------------------------------------*/
	.navi-menu-btn {
		background: url(../images/share/hamburger_sp.svg) no-repeat right top/contain;
		top: 15px;
		right: 10px;
		width: 50px;
		height: 50px;
		-webkit-transition: 0.4s;
		transition: 0.4s;
		z-index: 999;
	}

	.navi-menu-btn:after {
		content: none;
	}

	.navi-menu-btn .hamburger-line {
		inset: 0;
		margin: auto;
		width: 18px;
	}

	.navi-menu-btn .hamburger-line::before {
		top: -7px;
	}

	.navi-menu-btn .hamburger-line::after {
		top: 7px;
	}

	.navi-menu-btn[aria-expanded=true]:after {
		content: none;
	}

	:root {
		--navi-background: #63AA6E;
		--navi-border-color: #fff;
		--navi-text-color: #fff;
		--svg-stroke: #fff;
	}

	/* ボタン類 */
	.sp-navi-btns {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		background: var(--navi-background);
		-webkit-box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
		box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 55px;
		z-index: 10000;
	}

	.sp-navi-btns>* {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		position: relative;
	}

	.sp-navi-btns .item {
		border-right: 1px solid var(--navi-border-color);
		font-family: var(--font_jp);
		font-size: 1rem;
		line-height: 1;
		letter-spacing: 0;
		text-align: center;
		white-space: nowrap;
	}

	.sp-navi-btns .item a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		color: var(--navi-text-color);
		text-decoration: none;
		height: 100%;
		padding: 8px 0;
	}

	.sp-navi-btns .item .img {
		display: block;
	}

	.sp-navi-btns .item .img svg,
	.sp-navi-btns .item .img img {
		-o-object-fit: contain;
		object-fit: contain;
		height: 20px;
		margin-bottom: 8px;
		stroke: var(--svg-stroke);
	}

	.sp-navi-btns .item .ttl {
		display: block;
	}

	/* 中身 */
	.g-navi-contents {
		padding: 80px 0;
		inset: 0;
		width: 100%;
		max-width: 100%;
		-webkit-transform: none;
		transform: none;
	}

	/* レイアウト等 */
	.g-navi-layout {
		max-width: 90%;
	}

	.g-navi-layout .item+.item {
		margin-top: 40px;
	}

	.g-navi-list>li>a,
	.g-navi-list>li>span {
		font-size: 1.4rem;
	}

	.g-navi-list>li>ul {
		margin-top: 5px;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
	}

	.g-navi-list>li>ul>li {
		margin-bottom: 5px;
		padding: 0 0 0 15px;
		position: relative;
	}

	.g-navi-list>li>ul>li:before {
		content: "";
		display: block;
		width: 8px;
		height: 1px;
		background: #C7C3BB;
		position: absolute;
		left: 0;
		top: 50%;
	}

	.g-navi-list>li>ul>li>a {
		font-size: 1.3rem;
	}

	.navi-logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 0 30px;
		margin-bottom: 15px;
	}

	.navi-logo .sns {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 30px;
		flex: 0 0 30px;
	}

	body.is-hidden {
		display: flow-root;
		overflow: clip;
	}
}

/*-----------------------------------------------------------
hero
-----------------------------------------------------------*/
.hero {
	position: relative;
	padding: 100px 0 70px max(10%, 16.7vw);
}

.hero:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 37.8vw;
	height: 100%;
	background: url(../images/hero_leaf.png) no-repeat left bottom/8.8vw auto, url(../images/share/bg_dot.png);
}

.hero-ttl {
	position: absolute;
	left: max(5%, 11.8vw);
	bottom: 12.7vw;
	z-index: 5;
}

.hero-ttl .txt01 {
	font-family: var(--font_jp);
	font-size: min(5rem, 2.8vw);
	line-height: 1.4;
}

.hero-ttl .txt01>.bg {
	background: var(--color_primary);
	color: #fff;
	padding: 0 20px 5px;
}

.hero-ttl .txt02 {
	font-family: var(--font_jp);
	font-size: min(2.6rem, 1.4vw);
	line-height: 2;
	margin-top: min(3.5rem, 1.9vw);
}

.hero-ttl .txt02>.bg {
	background: #F8F3ED;
	padding: 0 20px 5px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.hero-slider .splide__pagination {
	bottom: -28px;
	justify-self: flex-end;
	padding: 0 2.8vw 0 0;
}

.hero-slider .splide__slide img {
	width: 100%;
	height: auto;
	border-radius: 0 0 0 150px;
}

@media (max-width: 800px) {
	.hero {
		position: relative;
		padding: 82px 0 11.3vw 9vw;
	}

	.hero:before {
		width: 45.8vw;
		background: url(../images/hero_leaf.png) no-repeat left bottom/19.8vw auto, url(../images/share/bg_dot.png);
	}

	.hero-ttl {
		position: absolute;
		left: 4%;
		bottom: 26.5vw;
	}

	.hero-ttl .txt01 {
		font-size: 6vw;
	}

	.hero-ttl .txt01>.bg {
		padding: 0 15px 3px;
	}

	.hero-ttl .txt02 {
		font-size: 3.8vw;
		line-height: 2.2;
		margin-top: 3.8vw;
	}

	.hero-ttl .txt02>.bg {
		padding: 0 15px 3px;
	}

	.hero-slider .splide__pagination {
		padding: 0 5% 0 0;
	}

	.hero-slider .splide__slide img {
		border-radius: 0;
	}
}

/*-----------------------------------------------------------
top contents
-----------------------------------------------------------*/
.container {
	margin-inline: auto;
	max-width: 1024px;
	width: 90%;
}

.container.wide {
	max-width: 1200px;
}

/*t-ttl*/
.t-ttl01 {
	margin-bottom: 50px;
	position: relative;
}

.t-ttl01 p[lang=en] {
	font-family: var(--font_en);
	font-size: 7rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
}

.t-ttl01 .ttl {
	font-family: var(--font_jp);
	font-size: 2.4rem;
}

@media (max-width: 800px) {
	.t-ttl01 {
		margin-bottom: 30px;
	}

	.t-ttl01 p[lang=en] {
		font-size: 5rem;
		margin-bottom: 5px;
	}

	.t-ttl01 .ttl {
		font-size: 2rem;
	}
}

.hr-leaf {
	background: url(../images/hr_leaf.png) repeat-x center/auto min(2.8vw, 50px);
	height: min(14.4vw, 260px);
}

@media (max-width: 800px) {
	.hr-leaf {
		background-size: auto 7.5vw;
		height: 30vw;
	}
}

/*sec01*/
.sec01 {
	padding: 30px 0 100px;
	background: url(../images/sec01_leaf.png) no-repeat right bottom/10.9vw auto;
}

.sec01-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 36px;
}

.sec01-layout>.item {
	position: relative;
}

.sec01-layout .l-ttl {
	border-bottom: 1px solid currentColor;
	position: relative;
	padding: 0 0 15px;
	margin-bottom: 30px;
}

.sec01-layout .l-ttl:has(+ .top-post-news) {
	margin-bottom: 0;
}

.sec01-layout .l-ttl p[lang=en] {
	font-family: var(--font_en);
	font-size: 7rem;
	font-weight: bold;
	line-height: 1;
}

.sec01-layout .l-ttl .ttl {
	font-family: var(--font_jp);
	font-size: 2.4rem;
}

.sec01-layout .l-btn {
	position: absolute;
	right: 0;
	top: 65px;
}

.sec01-layout .l-btn .btn {
	display: inline-block;
	background: var(--color_primary);
	color: #fff;
	font-family: var(--font_jp);
	font-size: 1.6rem;
	border-radius: 100px;
	line-height: 1.1;
	letter-spacing: 0.1em;
	padding: 15px 30px;
	position: relative;
	min-width: 110px;
	text-align: center;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.sec01-layout .l-btn .btn:after {
	content: "";
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 0.7rem;
	height: 0.7rem;
	position: absolute;
	right: 1.5rem;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media (hover: hover) {
	.sec01-layout .l-btn .btn:is(:hover, :focus) {
		background-color: oklch(from var(--color_primary) calc(l - 0.1) c h);
	}
}

@media (max-width: 800px) {
	.sec01 {
		padding: 30px 0 60px;
		background-size: 24.5vw auto;
	}

	.sec01-layout {
		-ms-grid-columns: minmax(0, 1fr);
		grid-template-columns: minmax(0, 1fr);
		gap: 40px;
	}

	.sec01-layout .l-ttl {
		padding: 0 0 15px;
		margin-bottom: 20px;
	}

	.sec01-layout .l-ttl:has(+ .top-post-news) {
		margin-bottom: 0;
	}

	.sec01-layout .l-ttl p[lang=en] {
		font-size: 4rem;
		margin-bottom: 5px;
	}

	.sec01-layout .l-ttl .ttl {
		font-size: 1.8rem;
	}

	.sec01-layout .l-btn {
		top: 3.2rem;
	}

	.sec01-layout .l-btn .btn {
		font-size: 1.5rem;
		padding: 10px 30px;
		min-width: 0;
	}
}

/*sec02*/
.sec02 {
	background: url(../images/sec02_leaf.png) no-repeat left bottom 30%/9.1vw auto, url(../images/sec02_wave.svg) no-repeat center top/100% auto, -webkit-gradient(linear, left top, left bottom, from(#F8F3ED), to(#FFFFFF));
	background: url(../images/sec02_leaf.png) no-repeat left bottom 30%/9.1vw auto, url(../images/sec02_wave.svg) no-repeat center top/100% auto, linear-gradient(to bottom, #F8F3ED, #FFFFFF);
	padding: 135px 0 120px;
}

.sec02-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: auto 0 1fr;
	-ms-grid-columns: 1fr 6.7% 44.3%;
	grid-template: auto 1fr/1fr 44.3%;
	gap: 0 6.7%;
	max-width: 1386px;
	width: clamp(90%, 77vw, 1386px);
	margin: 0 auto 0 max(5%, 50% - 586px);
}

.sec02-layout .l-ttl {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1/1/2/2;
}

.sec02-layout .l-img {
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 1/2/3/3;
	padding: 50px 0 0;
}

.sec02-layout .l-desc {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 2/1/3/2;
	min-width: 0;
}

.sec02-layout .l-txt {
	text-shadow:
		#F8F3ED 2px 0px 2px, #F8F3ED -2px 0px 2px,
		#F8F3ED 0px -2px 2px, #F8F3ED 0px 2px 2px,
		#F8F3ED 2px 2px 2px, #F8F3ED -2px 2px 2px,
		#F8F3ED 2px -2px 2px, #F8F3ED -2px -2px 2px,
		#F8F3ED 1px 2px 2px, #F8F3ED -1px 2px 2px,
		#F8F3ED 1px -2px 2px, #F8F3ED -1px -2px 2px,
		#F8F3ED 2px 1px 2px, #F8F3ED -2px 1px 2px,
		#F8F3ED 2px -1px 2px, #F8F3ED -2px -1px 2px;
}

@media (max-width: 800px) {
	.sec02 {
		background: url(../images/sec02_leaf.png) no-repeat left bottom 30%/20.5vw auto, url(../images/sec02_wave.svg) no-repeat center top/100% auto, -webkit-gradient(linear, left top, left bottom, from(#F8F3ED), to(#FFFFFF));
		background: url(../images/sec02_leaf.png) no-repeat left bottom 30%/20.5vw auto, url(../images/sec02_wave.svg) no-repeat center top/100% auto, linear-gradient(to bottom, #F8F3ED, #FFFFFF);
		padding: 80px 0 30px;
	}

	.sec02-layout {
		display: block;
		width: 90%;
		margin: 0 auto;
	}

	.sec02-layout .l-img {
		padding: 0;
		width: 90%;
		margin: 0 auto 20px;
		text-align: center;
	}
}

/*sec03*/
.sec03 {
	overflow: hidden;
	padding: 60px 0 90px;
	position: relative;
	margin-bottom: 130px;
	z-index: 1;
}

.sec03:before {
	content: "";
	background-color: var(--color_tertiary);
	position: absolute;
	right: 0;
	bottom: 0;
	display: block;
	width: 75.5%;
	height: calc(100% - 120px);
	z-index: -1;
}

.sec03-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: auto 0 1fr;
	-ms-grid-columns: 38.3% 5% 1fr;
	grid-template: auto 1fr/38.3% 1fr;
	gap: 0 5%;
	position: relative;
}

.sec03-layout:before {
	content: "";
	display: block;
	background: url(../images/sec03_leaf.png) no-repeat center/contain;
	width: 155px;
	height: 206px;
	position: absolute;
	top: -60px;
	right: -68px;
	z-index: 1;
}

.sec03-layout .l-ttl {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 1/2/2/3;
}

.sec03-layout .l-img {
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1/1/3/2;
	position: relative;
	z-index: 1;
}

.sec03-layout .l-img::before {
	content: "";
	display: block;
	background: url(../images/share/bg_dot.png);
	width: 250px;
	height: auto;
	aspect-ratio: 250/340;
	position: absolute;
	top: -40px;
	left: -50px;
	z-index: -1;
}

.sec03-layout .l-desc {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 2/2/3/3;
	min-width: 0;
}

.sec03-layout .l-catch {
	font-family: var(--font_jp);
	font-size: 2.2rem;
	line-height: 1.5;
	margin-bottom: 25px;
}

.sec03-layout .l-txt {
	margin-bottom: 50px;
}

.sec03-layout .l-txt p+p {
	margin-top: 15px;
}

@media (max-width: 800px) {
	.sec03 {
		padding: 30px 0 60px;
		margin-bottom: 60px;
	}

	.sec03:before {
		height: calc(100% - 60px);
	}

	.sec03-layout {
		display: block;
	}

	.sec03-layout:before {
		width: 78px;
		height: 103px;
		top: -30px;
		right: 0;
	}

	.sec03-layout .l-img {
		text-align: center;
		width: 90%;
		margin: 0 auto 20px;
	}

	.sec03-layout .l-img::before {
		width: 50vw;
		top: -20px;
		left: -5vw;
	}

	.sec03-layout .l-catch {
		font-size: 2rem;
	}

	.sec03-layout .l-txt {
		margin-bottom: 30px;
	}
}

/*sec04*/
.sec04 {
	background: url(../images/sec04_leaf.png) no-repeat right top 30%/9vw auto, url(../images/sec04_wave01.svg) no-repeat center top/100% auto, url(../images/sec04_wave02.svg) no-repeat center bottom/100% auto, url(../images/share/bg_dot.png);
	padding: 130px 0 230px;
}

.sec04-card-list {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0 20px;
}

.sec04-card-list>li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	aspect-ratio: 285/358;
	width: 100%;
	height: auto;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	border-radius: 10px;
}

.sec04-card-list>li:before {
	content: "";
	display: block;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 170, 110, 0.3)), to(rgba(99, 170, 110, 0.6))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3)));
	background: linear-gradient(to bottom, rgba(99, 170, 110, 0.3), rgba(99, 170, 110, 0.6)), linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
	position: absolute;
	inset: 0;
	z-index: 1;
}

.sec04-card-list>li:nth-child(2):before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(174, 193, 93, 0.3)), to(rgba(174, 193, 93, 0.6))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3)));
	background: linear-gradient(to bottom, rgba(174, 193, 93, 0.3), rgba(174, 193, 93, 0.6)), linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.sec04-card-list>li:nth-child(3):before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(106, 165, 138, 0.3)), to(rgba(106, 165, 138, 0.6))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3)));
	background: linear-gradient(to bottom, rgba(106, 165, 138, 0.3), rgba(106, 165, 138, 0.6)), linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.sec04-card-list>li:nth-child(4):before {
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(133, 183, 102, 0.3)), to(rgba(133, 183, 102, 0.6))), -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.3)));
	background: linear-gradient(to bottom, rgba(133, 183, 102, 0.3), rgba(133, 183, 102, 0.6)), linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
}

.sec04-card-list>li .card-ttl {
	position: relative;
	z-index: 3;
	color: #fff;
	font-family: var(--font_jp);
	font-size: 2.2rem;
	line-height: 1.7;
	text-align: center;
}

@media (max-width: 800px) {
	.sec04 {
		background: url(../images/sec04_leaf.png) no-repeat right top 30%/20.3vw auto, url(../images/sec04_wave01.svg) no-repeat center top/100% auto, url(../images/sec04_wave02.svg) no-repeat center bottom/100% auto, url(../images/share/bg_dot.png);
		padding: 60px 0 100px;
	}

	.sec04-card-list {
		-ms-grid-columns: minmax(0, 1fr) 15px minmax(0, 1fr);
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 15px;
	}

	.sec04-card-list>li .card-ttl {
		font-size: 1.6rem;
	}
}

.sec05 {
	background: -webkit-gradient(linear, left top, left bottom, from(#DEEFE5), to(#FFFFFF));
	background: linear-gradient(to bottom, #DEEFE5, #FFFFFF);
	padding: 130px 0;
}

.sec05-card-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr) 20px minmax(0, 1fr);
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25px 20px;
	max-width: 890px;
	margin-inline: auto;
}

.sec05-card-layout .card-item {
	display: block;
	border: 1px solid var(--color_text);
	background: url(../images/sec05_arrow.svg) no-repeat right 12px bottom 12px;
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media (hover: hover) {
	.sec05-card-layout .card-item:is(:hover, :focus) {
		background-color: var(--color_tertiary);
	}
}

.sec05-card-layout .card-item .card-img {
	margin-bottom: 15px;
	text-align: center;
}

.sec05-card-layout .card-item .card-ttl {
	font-family: var(--font_jp);
	font-size: 2.1rem;
	line-height: 1.5;
	margin-bottom: 15px;
	text-align: center;
}

.sec05-card-layout .card-item .card-ttl.line2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 6.3rem;
}

.sec05-card-layout .card-item .list-check {
	font-size: 1.5rem;
}

@media (max-width: 800px) {
	.sec05 {
		padding: 60px 0 50px;
	}

	.sec05-card-layout {
		-ms-grid-columns: minmax(0, 1fr);
		grid-template-columns: minmax(0, 1fr);
		gap: 15px;
		max-width: 100%;
	}

	.sec05-card-layout .card-item {
		background: url(../images/sec05_arrow.svg) no-repeat right 8px bottom 8px/15px;
		background-color: #fff;
		padding: 15px 15px 30px;
		font-size: 1.3rem;
		display: grid;
		grid-template-columns: 90px minmax(0, 1fr);
		gap: 10px;
		align-items: center;
	}

	.sec05-card-layout .card-item .card-img {
		margin: 0;
	}

	.sec05-card-layout .card-item .card-ttl {
		font-size: 1.8rem;
		margin-bottom: 15px;
		text-align: left;
	}

	.sec05-card-layout .card-item .card-ttl.line2 {
		min-height: 0;
		display: block;
	}

	.sec05-card-layout .card-item .card-ttl.line2.sp-single {
		display: block;
		min-height: 0;
	}

	.sec05-card-layout .card-item .list-check {
		font-size: 1.5rem;
	}
}

.sec06 {
	background: url(../images/sec06_leaf.png) no-repeat left bottom/8.4vw auto;
	padding: 60px 0;
	position: relative;
}

.sec06-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: auto 0 1fr;
	-ms-grid-columns: 38.3% 5% 1fr;
	grid-template: auto 1fr/38.3% 1fr;
	gap: 0 5%;
	position: relative;
}

.sec06-layout .l-ttl {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 1/2/2/3;
}

.sec06-layout .l-img {
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1/1/3/2;
	position: relative;
	z-index: 1;
}

.sec06-layout .l-img::before {
	content: "";
	display: block;
	background: url(../images/share/bg_dot.png);
	width: 350px;
	height: auto;
	aspect-ratio: 350/260;
	position: absolute;
	bottom: -20px;
	left: -70px;
	z-index: -1;
}

.sec06-layout .l-desc {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 2/2/3/3;
	min-width: 0;
}

.sec06-layout .l-catch {
	font-family: var(--font_jp);
	font-size: 2.2rem;
	line-height: 1.5;
	margin-bottom: 25px;
}

.sec06-layout .l-txt {
	text-shadow:
		#fff 2px 0px 2px, #fff -2px 0px 2px,
		#fff 0px -2px 2px, #fff 0px 2px 2px,
		#fff 2px 2px 2px, #fff -2px 2px 2px,
		#fff 2px -2px 2px, #fff -2px -2px 2px,
		#fff 1px 2px 2px, #fff -1px 2px 2px,
		#fff 1px -2px 2px, #fff -1px -2px 2px,
		#fff 2px 1px 2px, #fff -2px 1px 2px,
		#fff 2px -1px 2px, #fff -2px -1px 2px;
}

@media (max-width: 800px) {
	.sec06 {
		background-size: 19vw auto;
		padding: 40px 0;
	}

	.sec06-layout {
		display: block;
	}

	.sec06-layout .l-img {
		text-align: center;
		width: 90%;
		margin: 0 auto 20px;
	}

	.sec06-layout .l-img::before {
		width: 50vw;
		bottom: -10px;
		left: -5vw;
	}

	.sec06-layout .l-catch {
		font-size: 2rem;
	}
}

.sec07 {

	padding: 110px 0 230px;
	position: relative;
	z-index: 1;
}

.sec07:before {
	content: "";
	display: block;
	background: var(--color_tertiary);
	width: 75.5%;
	position: absolute;
	inset: 150px 0 120px auto;
	z-index: -2;
}

.sec07::after {
	content: "";
	display: block;
	background: url(../images/sec07_leaf.png) no-repeat right bottom/contain;
	width: 7.6vw;
	height: auto;
	aspect-ratio: 137/387;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

@media (max-width: 800px) {
	.sec07 {
		padding: 60px 0 90px;
		position: relative;
	}

	.sec07:before {
		inset: 75px 0 60px auto;
	}

	.sec07::after {
		width: 17.3vw;
	}
}

.sec08 {
	padding: 75px 0 105px;
	position: relative;
	z-index: 1;
}

.sec08:before {
	content: "";
	display: block;
	background: url(../images/sec08_bg.jpg) no-repeat center/cover;
	position: absolute;
	inset: 120px 0 0;
	z-index: -1;
}

@media (max-width: 800px) {
	.sec08 {
		padding: 0 0 60px;
	}

	.sec08:before {
		inset: 70px 0 0;
	}
}

.sec09 {
	padding: 150px 0 50px;
	position: relative;
}

.sec09:before {
	content: "";
	display: block;
	background: url(../images/sec09_leaf.png) no-repeat left center/contain;
	position: absolute;
	width: 8.3vw;
	height: 24.4vw;
	position: absolute;
	left: 0;
	top: -5vw;
	z-index: 2;
}

.sec09 #sb_instagram #sbi_images {
	padding: 0 !important;
}

.sec09 #sb_instagram {
	padding-bottom: 0 !important;
}

@media (max-width: 800px) {
	.sec09 {
		padding: 60px 0 20px;
		position: relative;
	}

	.sec09:before {
		width: 18.8vw;
		height: 55vw;
		top: -11.3vw;
	}
}

.sec10 {
	padding: 0 0 130px;
	overflow: hidden;
}

.sec10-layout {
	max-width: 1600px;
	margin-inline: auto;
	position: relative;
	padding: 0 0 118px;
	width: 90%;
}

.sec10-layout .l-map {
	width: 94%;
}

.sec10-layout .l-desc {
	background-color: var(--color_tertiary);
	padding: 0 50px 50px;
	border-radius: 10px;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 480px;
	z-index: 5;
}

.sec10-layout .l-desc::after {
	content: "";
	display: block;
	background: url(../images/sec10_leaf.png) no-repeat center/contain;
	width: 159px;
	height: 140px;
	position: absolute;
	right: -40px;
	bottom: -60px;
}

.sec10-layout .l-ttl {
	margin-top: -5rem;
}

.sec10-layout .l-ttl .t-ttl01 {
	margin-bottom: 30px;
}

.sec10-layout .dl-access {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 28px 10px 1fr;
	grid-template-columns: 28px 1fr;
	gap: 10px;
}

.sec10-layout .dl-access dd {
	font-family: var(--font_jp);
	font-size: 1.6rem;
	line-height: 1.75;
}

@media (max-width: 800px) {
	.sec10 {
		padding: 0 0 60px;
	}

	.sec10-layout {
		padding: 0;
	}

	.sec10-layout .l-map {
		width: 100%;
		margin-bottom: 20px;
	}

	.sec10-layout .l-desc {
		background-color: var(--color_tertiary);
		padding: 25px;
		position: static;
		width: 100%;
	}

	.sec10-layout .l-desc::after {
		width: 80px;
		height: 70px;
		right: -10px;
		bottom: -30px;
	}

	.sec10-layout .l-ttl {
		margin-top: 0;
	}
}

.sec11 {
	background: url(../images/sec11_bg.jpg) no-repeat center/cover;
	padding: 85px 0;
}

.sec11-card-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 20px 1fr 20px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.sec11-card-layout .card-item {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	font-size: 1.5rem;
}

.sec11-card-layout .card-ttl {
	color: var(--color_primary);
	font-family: var(--font_jp);
	font-size: 2.1rem;
	padding: 0 0 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid var(--color_primary);
	text-align: center;
}

@media (max-width: 800px) {
	.sec11 {
		padding: 40px 0;
	}

	.sec11-card-layout {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}

	.sec11-card-layout .card-item {
		padding: 25px;
		font-size: 1.4rem;
	}

	.sec11-card-layout .card-ttl {
		font-size: 1.9rem;
	}
}

.sec12 {
	padding: 85px 0;
}

.sec12-card-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 45px 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 45px;
}

.sec12-card-layout .card-item {
	background: var(--color_primary);
	color: #fff;
	padding: 50px;
	border-radius: 10px;
	font-size: 1.5rem;
}

.sec12-card-layout .card-item .link {
	color: #fff;
}

.sec12-card-layout .card-ttl {
	font-family: var(--font_jp);
	font-size: 2.1rem;
	padding: 0 0 15px;
	margin-bottom: 25px;
	text-align: center;
	position: relative;
}

.sec12-card-layout .card-ttl::after {
	content: "";
	background: #fff;
	width: 40px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.sec12-card-layout .tel-link {
	color: #fff;
}

.sec12-card-layout .tel-link:before {
	background: #fff;
	-webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
	mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
}

.sec12-card-layout .dl-time {
	color: #fff;
}

.sec12-card-layout .card-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 14px;
}
.sec12-card-layout .card-btn .btn-style02 {
	min-width: 190px;
}

@media (max-width: 800px) {
	.sec12 {
		padding: 85px 0;
	}

	.sec12-card-layout {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.sec12-card-layout .card-item {
		padding: 25px;
		font-size: 1.4rem;
	}

	.sec12-card-layout .card-ttl {
		font-size: 1.9rem;
	}

	.sec12-card-layout .card-btn {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.sec12-card-layout .card-btn .btn-style02 {
		min-width: 0;
	}
}

/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/
.footer {
	background: #F8F3ED;
	position: relative;
	padding: 80px 0 60px;
}

.pagetop {
	display: block;
	width: 60px;
	position: fixed;
	bottom: 45px;
	right: 45px;
	z-index: 10;
}

.f-wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	max-width: 1024px;
	width: 90%;
	margin: 0 auto 40px;
}

.f-logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 0 30px;
	margin-bottom: 20px;
}

.f-logo .sns {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30px;
	flex: 0 0 30px;
}

.sitemap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1024px;
	width: 90%;
	margin-inline: auto;
	margin-bottom: 40px;
}

.sitemap>ul>li {
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
}

.sitemap>ul>li>a,
.sitemap>ul>li>span {
	font-family: var(--font_jp);
	font-size: 1.6rem;
	background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
	background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
	padding-bottom: 3px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}

@media (hover: hover) {

	.sitemap>ul>li>a:is(:hover, :focus),
	.sitemap>ul>li>span:is(:hover, :focus) {
		background-size: 100% 1px;
		background-position: bottom left;
	}
}

.sitemap>ul>li>ul {
	margin-top: 5px;
	-webkit-column-break-inside: avoid;
	-moz-column-break-inside: avoid;
	break-inside: avoid;
}

.sitemap>ul>li>ul>li {
	padding: 0 0 0 15px;
	position: relative;
}

.sitemap>ul>li>ul>li:before {
	content: "";
	display: block;
	width: 8px;
	height: 1px;
	background: #C7C3BB;
	position: absolute;
	left: 0;
	top: 50%;
}

.sitemap>ul>li>ul>li>a {
	font-family: var(--font_jp);
	font-size: 1.5rem;
	background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
	background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
	padding-bottom: 3px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
	.sitemap>ul>li>ul>li>a:is(:hover, :focus) {
		background-size: 100% 1px;
		background-position: bottom left;
	}
}

.copyright {
	text-align: right;
	font-size: 1.2rem;
	font-family: var(--font_jp), Verdana, "Droid Sans";
	max-width: 1024px;
	width: 90%;
	margin-inline: auto;
}

@media (max-width: 800px) {

	/*-----------------------------------------------------------
	footer SP
	-----------------------------------------------------------*/
	.pagetop {
		width: 40px;
		bottom: 15px;
		right: 65px;
	}

	.footer {
		padding: 50px 0;
	}

	.f-wrapper {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 40px;
		margin: 0 auto 40px;
		width: 90%;
	}

	.f-logo {
		max-width: 270px;
		margin: 0 auto 40px;
	}

	.f-tel {
		text-align: center;
	}

	.sitemap {
		display: block;
	}

	.sitemap ul+ul {
		margin-top: 15px;
		padding-top: 15px;
		border-top: 1px dotted var(--color_border);
	}

	.sitemap>ul {
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}

	.sitemap>ul:has(ul) {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}

	.sitemap>ul>li>a,
	.sitemap>ul>li>span {
		font-size: 1.4rem;
	}

	.sitemap>ul>li>ul {
		margin-top: 5px;
		-webkit-column-break-inside: avoid;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
		-webkit-column-count: 2;
		-moz-column-count: 2;
		column-count: 2;
	}

	.sitemap>ul>li>ul>li {
		margin-bottom: 5px;
		padding: 0 0 0 15px;
		position: relative;
	}

	.sitemap>ul>li>ul>li:before {
		content: "";
		display: block;
		width: 8px;
		height: 1px;
		background: #C7C3BB;
		position: absolute;
		left: 0;
		top: 50%;
	}

	.sitemap>ul>li>ul>li>a {
		font-size: 1.3rem;
	}

	.copyright {
		padding: 2px 2px 67px;
	}
}

/*-----------------------------------------------------------
under
-----------------------------------------------------------*/
.u-contents p+p {
	margin-top: 15px;
}

/*------------
パンくず
--------------*/
.breadcrumb {
	margin: 5px 0 55px;
	width: 100%;
}

.breadcrumb ul {
	margin-inline: auto;
	max-width: 1024px;
	width: 90%;
}

.breadcrumb ul li {
	color: #888;
	font-size: 1.3rem;
	display: inline;
}

.breadcrumb ul li a {
	text-decoration: underline;
}

@media (hover: hover) {
	.breadcrumb ul li a:is(:hover, :focus) {
		text-decoration: none;
	}
}

.breadcrumb ul li+li:before {
	content: "> ";
	padding: 0 5px;
	color: #ccc;
}

@media (max-width: 800px) {
	.breadcrumb {
		margin: 5px 0 30px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

	.breadcrumb ul {
		margin-inline: auto;
		max-width: 1024px;
		width: 90%;
	}
}

/*------------
page ttl
--------------*/
.page-ttl-wrap {
	position: relative;
	padding: 100px 0 70px;
}

.page-ttl-wrap:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 37.8vw;
	height: 100%;
	background: url(../images/under/page-ttl_leaf.png) no-repeat left bottom/7.6vw auto, url(../images/share/bg_dot.png);
	z-index: -1;
}

.page-ttl-wrap .page-ttl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	position: relative;
	height: 320px;
	padding: 0 5%;
	z-index: 1;
}

.page-ttl-wrap .page-ttl:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 88.8%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.36))), url(../images/under/page-ttl.jpg) no-repeat center/cover;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.36)), url(../images/under/page-ttl.jpg) no-repeat center/cover;
	z-index: -1;
}

.page-ttl-wrap .page-ttl .ttl {
	display: block;
	color: #fff;
	font-family: var(--font_jp);
	font-size: 3.2rem;
	line-height: 1.4;
}

@media (max-width: 800px) {
	.page-ttl-wrap {
		padding: 82px 0 11.3vw;
	}

	.page-ttl-wrap:before {
		width: 45.8vw;
		background: url(../images/under/page-ttl_leaf.png) no-repeat left bottom/17.3vw auto, url(../images/share/bg_dot.png);
	}

	.page-ttl-wrap .page-ttl {
		height: 160px;
	}

	.page-ttl-wrap .page-ttl .ttl {
		font-size: 2.5rem;
	}
}

/*------------
見出し
--------------*/
.u-h2,
.postdata h2 {
	font-family: var(--font_jp);
	font-size: 3rem;
	text-align: center;
	padding: 0 0 15px;
	margin: 0 0 40px;
	position: relative;
}

.u-h2::after,
.postdata h2::after {
	content: "";
	background: var(--color_primary);
	width: 40px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.u-h3,
.postdata h3 {
	border-bottom: 1px solid #000;
	font-family: var(--font_jp);
	font-size: 2.4rem;
	padding: 0 0 10px;
	margin: 0 0 30px;
}

.u-h4,
.postdata h4 {
	color: var(--color_primary);
	font-family: var(--font_jp);
	font-size: 2rem;
	margin: 0 0 20px;
}

.u-catch {
	font-family: var(--font_jp);
	font-size: 1.8rem;
	line-height: 1.5;
}

.icon-ttl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-family: var(--font_jp);
	font-size: 2.2rem;
	gap: 15px;
	margin: 0 0 20px;
}

.icon-ttl .icon {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 34px;
	flex: 0 0 34px;
}

@media (max-width: 800px) {

	.u-h2,
	.postdata h2 {
		font-size: 2.3rem;
		padding: 0 0 15px;
		margin: 0 0 30px;
	}

	.u-h3,
	.postdata h3 {
		font-size: 2rem;
		padding: 0 0 10px;
		margin: 0 0 20px;
	}

	.u-h4,
	.postdata h4 {
		font-size: 1.8rem;
		margin: 0 0 15px;
	}

	.u-catch {
		font-size: 1.7rem;
	}

	.icon-ttl {
		font-size: 1.9rem;
		margin: 0 0 20px;
		gap: 10px;
	}

	.icon-ttl .icon {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 34px;
		flex: 0 0 34px;
	}
}

/*------------
section
--------------*/
.x-short+.x-short {
	margin-top: 40px;
}

.short+.short {
	margin-top: 60px;
}

.tall {
	margin: 0 0 90px;
}

.tall.hidden {
	overflow: hidden;
}

@media (max-width: 800px) {
	.short+.short {
		margin-top: 40px;
	}

	.tall {
		margin: 0 0 60px;
	}
}

/*------------
column
--------------*/
.col2,
.col2-col2,
.col3,
.col3-col2,
.col4,
.col4-col2 {
	display: -ms-grid;
	display: grid;
}

.col2,
.col2-col2 {
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.col3,
.col3-col2 {
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.col4,
.col4-col2 {
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px 30px;
}

@media (max-width: 800px) {

	.col2,
	.col3,
	.col4 {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.col2-col2,
	.col3-col2,
	.col4-col2 {
		-ms-grid-columns: 1fr 20px 1fr;
		grid-template-columns: repeat(2, 1fr);
		gap: 15px 20px;
	}
}

/*------------
layout
--------------*/
/*l-imgR l-imgL*/
.l-imgR,
.l-imgL {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.l-imgR.center,
.l-imgL.center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.l-imgR .l-img,
.l-imgL .l-img {
	margin: 0 4% 0 0;
	width: 40%;
}

.l-imgR .l-img.half,
.l-imgL .l-img.half {
	width: 48%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
	width: 30%;
}

.l-imgR .l-img img,
.l-imgL .l-img img {
	border-radius: 10px;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.l-imgR {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.l-imgR .l-img {
	margin: 0 0 0 4%;
}

.l-imgR.center,
.l-imgL.center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.fl-imgR,
.fl-imgL {
	display: flow-root;
}

.fl-imgR .l-img,
.fl-imgL .l-img {
	width: 40%;
}

.fl-imgR .l-img.half,
.fl-imgL .l-img.half {
	width: 48%;
}

.fl-imgR .l-img.small,
.fl-imgL .l-img.small {
	width: 30%;
}

.fl-imgR .l-img img,
.fl-imgL .l-img img {
	border-radius: 10px;
}

.fl-imgR .l-img {
	float: right;
	margin: 0 0 15px 4%;
}

.fl-imgL .l-img {
	float: left;
	margin: 0 4% 15px 0;
}

@media (max-width: 800px) {

	.l-imgR,
	.l-imgL {
		display: block;
	}

	.l-imgR .l-img,
	.l-imgL .l-img {
		margin: 0 0 15px;
		text-align: center;
		width: 100%;
	}

	.l-imgR .l-img.half,
	.l-imgL .l-img.half {
		width: 100%;
	}

	.l-imgR .l-img.small,
	.l-imgL .l-img.small {
		width: 100%;
	}

	.l-imgR .l-img {
		margin: 0 0 15px;
	}

	.fl-imgR .l-img,
	.fl-imgL .l-img {
		float: none;
		margin: 0 0 15px;
		text-align: center;
		width: 100%;
	}

	.fl-imgR .l-img.half,
	.fl-imgL .l-img.half {
		width: 100%;
	}

	.fl-imgR .l-img.small,
	.fl-imgL .l-img.small {
		width: 100%;
	}
}

/*------------
list
--------------*/
.list-disc li {
	position: relative;
	padding: 0 0 0 1em;
}

.list-disc li:before {
	background: var(--color_primary);
	border-radius: 50%;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0.8em;
	width: 0.4em;
	height: 0.4em;
}

.list-disc li+li {
	margin-top: 3px;
}

.list-decimal {
	padding-left: 1.4em;
}

.list-decimal li {
	list-style: decimal;
}

.list-decimal li+li {
	margin-top: 3px;
}

.list-num {
	counter-reset: number;
}

.list-num li {
	padding: 0 0 0 2em;
	position: relative;
}

.list-num li:before {
	background: var(--color_primary);
	border-radius: 15px;
	color: #fff;
	counter-increment: number;
	content: counter(number);
	font-family: var(--font_en);
	font-size: 1rem;
	font-weight: bold;
	position: absolute;
	top: 0.8em;
	left: 0;
	line-height: 2em;
	text-align: center;
	width: 2em;
	height: 2em;
}

.list-num li+li {
	margin-top: 3px;
}

.list-check li {
	position: relative;
	padding: 0 0 0 1.5625em;
}

.list-check li:before {
	content: "";
	background: url(../images/share/icon_check.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 1.0625em;
	height: 0.875em;
}

.list-check li+li {
	margin-top: 3px;
}

.list-col2 {
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}

.list-col3 {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
}

@media (max-width: 800px) {
	.list-disc li:before {
		top: 0.65em;
	}

	.list-num li:before {
		top: 0.2em;
	}

	.list-col2 {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}

	.list-col3 {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
	}
}

/*------------
table
--------------*/
.table-style01 {
	border-collapse: collapse;
	width: 100%;
}

.table-style01 th,
.table-style01 td {
	padding: 15px;
	border: 1px solid var(--color_border);
	vertical-align: middle;
}

.table-style01 th {
	background: var(--color_primary);
	color: #fff;
	font-family: var(--font_jp);
	font-size: 1.5rem;
	text-align: center;
}

.table-style01 td {
	background: #fff;
}

.table-style02 {
	border-collapse: collapse;
	width: 100%;
}

.table-style02 th,
.table-style02 td {
	padding: 15px;
	border: 1px solid var(--color_border);
	vertical-align: middle;
}

.table-style02 th {
	background: var(--color_tertiary);
	font-family: var(--font_jp);
	font-size: 1.5rem;
	text-align: center;
}

.table-style02 thead th {
	background: var(--color_primary);
	color: #fff;
}

.table-style02 td {
	background: #fff;
}

@media (max-width: 800px) {
	.table-style01.sp-block {
		border: 1px solid var(--color_border);
	}

	.table-style01.sp-block colgroup {
		display: none;
	}

	.table-style01.sp-block th,
	.table-style01.sp-block td {
		border: none;
		display: block;
		width: 100%;
	}

	.table-style01 th,
	.table-style01 td {
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.table-style02 th,
	.table-style02 td {
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.table-scroll {
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}

	.table-scroll table {
		width: 800px;
	}

	.table-scroll:before {
		content: "横にスクロールできます。";
		display: block;
		background: url(../images/share/icon_scroll.svg) no-repeat left center/20px;
		min-height: 16px;
		font-size: 1.3rem;
		padding: 0 0 0 30px;
		margin-bottom: 5px;
	}
}

/*------------
アンカーリンク
--------------*/
.list-anchor-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	font-family: var(--font_jp);
	font-size: 1.5rem;
}

.list-anchor-link.center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.list-anchor-link li {
	position: relative;
}

.list-anchor-link li::after {
	content: "";
	display: inline-block;
	background: #e0e0e0;
	width: 2px;
	height: 15px;
	margin: 0 20px;
	vertical-align: -1px;
}

.list-anchor-link li:last-child::after {
	display: none;
}

.list-anchor-link a {
	display: inline-block;
	position: relative;
	padding-right: 25px;
}

.list-anchor-link a::before {
	content: "";
	background: var(--color_primary);
	-webkit-mask: url(../images/share/icon_arrow_bottom.svg) no-repeat 0 0/contain;
	mask: url(../images/share/icon_arrow_bottom.svg) no-repeat 0 0/contain;
	width: 14px;
	height: 14px;
	position: absolute;
	right: 0;
	top: 9px;
}

@media (hover: hover) {
	.list-anchor-link a:is(:hover, :focus) {
		text-decoration: underline;
	}
}

@media (max-width: 800px) {
	.list-anchor-link {
		display: block;
	}

	.list-anchor-link li {
		margin: 0;
	}

	.list-anchor-link li::after {
		display: none;
	}

	.list-anchor-link a {
		padding: 0 0 0 25px;
	}

	.list-anchor-link a::before {
		right: inherit;
		left: 0;
		top: 6px;
	}
}

/*------------
tel-layout
--------------*/
.tel-layout {
	background: var(--color_tertiary);
	padding: 50px;
	margin: 0 auto;
	max-width: 900px;
}

.tel-layout .l-ttl {
	font-family: var(--font_jp);
	font-size: 2.5rem;
	margin-bottom: 50px;
	position: relative;
	text-align: center;
}

.tel-layout .wrap {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 120px;
}

.tel-layout .wrap .col+.col {
	position: relative;
}

.tel-layout .wrap .col+.col::before {
	content: "";
	width: 2px;
	height: 100%;
	background: linear-gradient(to bottom, var(--color_primary) 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
	background-repeat: repeat-y;
	background-size: 2px 9px;
	position: absolute;
	top: 0;
	left: -60px;
}

.tel-layout .col-ttl {
	font-family: var(--font_jp);
	font-size: 1.6rem;
	text-align: center;
	margin-bottom: 10px;
}

.tel-layout .dl-time {
	margin: 20px auto 0;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

@media (max-width: 800px) {
	.tel-layout {
		padding: 35px 25px;
	}

	.tel-layout .l-ttl {
		margin: 0 auto 25px;
	}

	.tel-layout .wrap {
		-ms-grid-columns: minmax(0, 1fr);
		grid-template-columns: minmax(0, 1fr);
		gap: 60px;
	}

	.tel-layout .wrap .col+.col::before {
		width: 100%;
		height: 2px;
		background: linear-gradient(to right, #333 2px, rgba(255, 255, 255, 0) 2px, rgba(255, 255, 255, 0) 8px);
		background-repeat: repeat-x;
		background-size: 10px 2px;
		top: -30px;
		left: 0;
	}
}

/*------------
カードデザイン
--------------*/
/*card-layout01*/
.card-layout01>.card-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: var(--color_tertiary);
	padding: 25px;
	position: relative;
	border-radius: 10px;
}

.card-layout01 .card-ttl {
	display: block;
	font-family: var(--font_jp);
	font-size: 1.8rem;
	letter-spacing: 0;
	text-align: center;
	margin-bottom: 20px;
}

.card-layout01 .card-num {
	background: var(--color_primary);
	border-radius: 50px;
	display: table;
	color: #fff;
	font-family: var(--font_en);
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 25px;
	padding: 0 20px;
	margin: 0 auto 10px;
}

.card-layout01 .card-img {
	text-align: center;
	margin-bottom: 15px;
}

.card-layout01 .card-img img {
	border-radius: 10px;
}

.card-layout01 .card-desc {
	margin-bottom: 15px;
}

.card-layout01 .card-btn {
	text-align: center;
	margin-top: auto;
}

/*card-layout02*/
.card-layout02>.card-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border: 1px solid var(--color_border);
	background: #fff;
	padding: 25px;
	border-radius: 10px;
}

.card-layout02 .card-img {
	text-align: center;
	margin-bottom: 15px;
}

.card-layout02 .card-img img {
	border-radius: 10px;
}

.card-layout02 .card-num {
	display: block;
	color: var(--color_secondary);
	font-family: var(--font_en);
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1;
	margin-bottom: 5px;
}

.card-layout02 .card-ttl {
	border-bottom: 1px solid var(--color_primary);
	font-family: var(--font_jp);
	font-size: 1.8rem;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.card-layout02 .card-desc {
	margin-bottom: 15px;
}

.card-layout02 .card-btn {
	text-align: center;
	margin-top: auto;
}

@media (max-width: 800px) {
	.card-layout02>.card-item {
		padding: 15px;
	}

	.card-layout02 .card-ttl {
		font-size: 1.8rem;
	}
}

/*------------
flow
--------------*/
/*flow-layout01*/
.flow-layout01>.flow-item {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 7.6rem 50px 1fr;
	grid-template-columns: 7.6rem 1fr;
	grid-gap: 50px;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	position: relative;
	padding-bottom: 50px;
}

.flow-layout01>.flow-item:not(:last-child)::before {
	content: "";
	border-left: 2px dotted var(--color_secondary);
	position: absolute;
	top: 9rem;
	bottom: 1.5rem;
	left: 3.5rem;
}

.flow-layout01 .flow-num {
	color: #fff;
	font-family: var(--font_en);
	font-size: 3rem;
	font-weight: bold;
	background: url(../images/under/num.svg) no-repeat center center/contain;
	text-align: center;
	display: -ms-grid;
	display: grid;
	place-items: center;
	line-height: 1;
	width: 7.6rem;
	height: 7.5rem;
}

.flow-layout01 .flow-ttl {
	padding: 20px 0 0;
	font-family: var(--font_jp);
	font-size: 2.3rem;
	margin-bottom: 15px;
}

@media (max-width: 800px) {
	.flow-layout01>.flow-item {
		-ms-grid-columns: 5rem 20px 1fr;
		grid-template-columns: 5rem 1fr;
		grid-gap: 20px;
		padding-bottom: 30px;
	}

	.flow-layout01>.flow-item:not(:last-child)::before {
		top: 6.2rem;
		bottom: 1.2rem;
		left: 2.5rem;
	}

	.flow-layout01 .flow-num {
		font-size: 2rem;
		width: 5rem;
		height: 5rem;
	}

	.flow-layout01 .flow-ttl {
		padding: 0.8rem 0 0;
		font-size: 2rem;
		margin-bottom: 10px;
	}
}

/*flow-layout02*/
.flow-layout02 {
	grid-gap: 30px;
}

.flow-layout02>.flow-item {
	background: var(--color_tertiary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 25px 20px;
	position: relative;
	border-radius: 10px;
}

.flow-layout02>.flow-item::after {
	content: "";
	border-style: solid;
	border-width: 12px 0 12px 12px;
	border-color: transparent transparent transparent var(--color_primary);
	position: absolute;
	right: -22px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.flow-layout02>.flow-item:last-of-type::after {
	content: none;
}

.flow-layout02 .flow-img {
	text-align: center;
	margin-bottom: 25px;
}

.flow-layout02 .flow-img img {
	border-radius: 20px;
}

.flow-layout02 .flow-num {
	background: var(--color_primary);
	border-radius: 50px;
	display: table;
	color: #fff;
	font-family: var(--font_en);
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 25px;
	padding: 0 20px;
	margin: 0 auto 10px;
}

.flow-layout02 .flow-ttl {
	display: block;
	font-family: var(--font_jp);
	font-size: 1.8rem;
	letter-spacing: 0.15em;
	text-align: center;
	margin-bottom: 15px;
}

.flow-layout02 .flow-btn {
	text-align: center;
	margin-top: auto;
	padding-top: 15px;
}

@media (max-width: 800px) {
	.flow-layout02 {
		grid-gap: 30px;
	}

	.flow-layout02>.flow-item::after {
		right: 50%;
		top: auto;
		bottom: -27px;
		-webkit-transform: translateX(50%) rotate(90deg);
		transform: translateX(50%) rotate(90deg);
	}
}

/*------------
ボックスデザイン
--------------*/
/*box-style01*/
.box-style01 {
	background: #fff;
	border: 1px solid var(--color_text);
	padding: 50px;
	border-radius: 10px;
}

.box-style01 .box-ttl {
	font-family: var(--font_jp);
	font-size: 2.7rem;
	margin-bottom: 30px;
	text-align: center;
}

@media (max-width: 800px) {
	.box-style01 {
		padding: 25px;
	}

	.box-style01 .box-ttl {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
}

/*box-style02*/
.box-style02 {
	background: #DEEFE5;
	padding: 50px;
	border-radius: 10px;
}

.box-style02 .box-ttl {
	background-color: #fff;
	font-family: var(--font_jp);
	font-size: 1.8rem;
	padding: 5px 20px;
	border-radius: 5px;
	margin-bottom: 20px;
}

@media (max-width: 800px) {
	.box-style02 {
		padding: 25px;
	}

	.box-style02 .box-ttl {
		font-size: 1.8rem;
		margin-bottom: 15px;
	}
}

/*------------
メリット、デメリット
--------------*/
.merit-demerit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.merit-demerit .item {
	background: var(--color_tertiary);
	border-top: 5px solid var(--color_primary);
	padding: 35px;
	width: 48.43%;
}

.merit-demerit .item-ttl {
	margin: 0 0 15px;
}

.merit-demerit .item-ttl p[lang=en] {
	display: inline;
	color: var(--color_primary);
	font-family: var(--font_en);
	font-size: 3.5rem;
	font-weight: bold;
	margin: 0 20px 0 0;
}

.merit-demerit .item-ttl .jp {
	display: inline;
	font-family: var(--font_jp);
	font-size: 1.5rem;
}

.merit-demerit .item:nth-child(even) {
	border-color: #BE9E73;
}

.merit-demerit .item:nth-child(even) .item-ttl .en {
	color: #BE9E73;
}

@media (max-width: 800px) {
	.merit-demerit {
		display: block;
	}

	.merit-demerit .item {
		padding: 20px 25px;
		width: 100%;
	}

	.merit-demerit .item+.item {
		margin-top: 30px;
	}

	.merit-demerit .item-ttl {
		margin: 0 0 15px;
	}

	.merit-demerit .item-ttl p[lang=en] {
		font-size: 2.7rem;
	}
}

/*------------
スタッフページ
--------------*/
.staff-layout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.staff-layout .l-img {
	width: 410px;
	margin-left: 65px;
}

.staff-layout .l-img img {
	border-radius: 10px;
}

.staff-layout .l-desc {
	margin-top: 20px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.staff-layout .job {
	color: var(--color_primary);
	font-family: var(--font_jp);
	font-size: 1.8rem;
	margin-bottom: 5px;
}

.staff-layout .name {
	border-bottom: 1px solid #ddd;
	line-height: 1;
	padding-bottom: 35px;
	margin-bottom: 30px;
}

.staff-layout .jp {
	display: inline;
	font-family: var(--font_jp);
	font-size: 3rem;
	margin-right: 25px;
}

.staff-layout p[lang=en] {
	display: inline;
	color: var(--color_secondary);
	font-family: var(--font_en);
	font-size: 1.8rem;
	font-weight: bold;
}

@media (max-width: 800px) {
	.staff-layout {
		display: block;
	}

	.staff-layout .l-img {
		text-align: center;
		margin: 0 0 30px;
		width: 100%;
	}

	.staff-layout .l-desc {
		margin: 0;
	}

	.staff-layout .job {
		font-size: 1.4rem;
		margin-bottom: 10px;
	}

	.staff-layout .name {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.staff-layout .jp {
		display: block;
		font-size: 2.5rem;
		margin: 0 0 10px;
	}

	.staff-layout p[lang=en] {
		font-size: 1.4rem;
	}
}

/*------------
初めての方へ
--------------*/
.concept-layout-wrap {
	background: url(../images/under/concept-layout_wave.svg) no-repeat center top/100% auto, -webkit-gradient(linear, left top, left bottom, from(#F8F3ED), to(#FFFFFF));
	background: url(../images/under/concept-layout_wave.svg) no-repeat center top/100% auto, linear-gradient(to bottom, #F8F3ED, #FFFFFF);
	padding: 135px 0 90px;
	position: relative;
	z-index: 1;
}

.concept-layout-wrap:before {
	content: "";
	display: block;
	position: absolute;
	top: -2.8vw;
	left: 0;
	width: 10.6vw;
	height: 24.4vw;
	background: url(../images/under/concept-layout_leaf01.png) no-repeat left center/contain;
	z-index: -1;
}

.concept-layout-wrap:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 7.7vw;
	height: 18.3vw;
	background: url(../images/under/concept-layout_leaf02.png) no-repeat right center/contain;
	z-index: -1;
}

.concept-layout-wrap .concept-layout {
	max-width: 1200px;
	width: 90%;
	margin-inline: auto;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 43rem 10% 1fr;
	grid-template-columns: 43rem 1fr;
	gap: 0 10%;
}

.concept-layout-wrap .concept-layout .l-ttl {
	margin-bottom: 30px;
	position: relative;
	text-align: center;
}

.concept-layout-wrap .concept-layout .l-ttl p[lang=en] {
	font-family: var(--font_en);
	font-size: 8rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 20px;
}

.concept-layout-wrap .concept-layout .l-ttl .ttl {
	font-family: var(--font_jp);
	font-size: 2.6rem;
}

.concept-layout-wrap .concept-layout .l-desc {
	padding: 10.9rem 0 0;
}

@media (max-width: 800px) {
	.concept-layout-wrap {
		padding: 80px 0 60px;
	}

	.concept-layout-wrap:before {
		top: -6.3vw;
		width: 21.3vw;
		height: 55vw;
	}

	.concept-layout-wrap:after {
		width: 17.5vw;
		height: 41.3vw;
	}

	.concept-layout-wrap .concept-layout {
		display: block;
	}

	.concept-layout-wrap .concept-layout .l-ttl p[lang=en] {
		font-size: 5rem;
		margin-bottom: 10px;
	}

	.concept-layout-wrap .concept-layout .l-ttl .ttl {
		font-size: 2rem;
	}

	.concept-layout-wrap .concept-layout .l-desc {
		padding: 0;
	}
}

/*------------
feature-layout
--------------*/
.feature-layout {
	background-color: var(--color_tertiary);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100cqi;
	margin-inline: calc(50% - 50cqi);
	padding: 80px max(5%, 50vw - 512px);
}

.feature-layout.small {
	padding: 40px max(5%, 50vw - 512px);
}

.feature-layout .l-ttl {
	margin-bottom: 20px;
	padding: 1.6rem 0 0 6.7rem;
	position: relative;
	width: 100%;
}

.feature-layout .l-ttl .num {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: url(../images/under/num.svg) no-repeat left center/contain;
	color: #fff;
	font-family: var(--font_en);
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.1;
	width: 7.6rem;
	height: 7.5rem;
	position: absolute;
	left: -2.4rem;
	top: 0;
	z-index: 2;
}

.feature-layout .l-ttl .num:before {
	content: attr(data-en);
	font-size: 1.2rem;
	display: block;
}

.feature-layout .l-ttl .ttl {
	font-family: var(--font_jp);
	font-size: 2.2rem;
	line-height: 1.4;
}

.feature-layout .l-img {
	width: 30%;
	margin-right: 4.8%;
}

.feature-layout .l-img img {
	border-radius: 10px;
}

.feature-layout .l-desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

@media (max-width: 800px) {
	.feature-layout {
		display: block;
		padding: 40px 5%;
	}

	.feature-layout.small {
		padding: 40px 5%;
	}

	.feature-layout .l-ttl {
		margin-bottom: 15px;
		padding: 1rem 0 0 7rem;
		min-height: 6rem;
	}

	.feature-layout .l-ttl .num {
		font-size: 2.2rem;
		width: 6.1rem;
		height: 6rem;
		left: 0;
	}

	.feature-layout .l-ttl .num:before {
		font-size: 1rem;
	}

	.feature-layout .l-ttl .ttl {
		font-family: var(--font_jp);
		font-size: 2.2rem;
		line-height: 1.4;
	}

	.feature-layout .l-img {
		width: 100%;
		margin: 0 0 20px;
	}
}

/*------------
.intro-layout
--------------*/
.intro-layout-wrap {
	position: relative;
	z-index: 1;
	padding: 70px 0 100px;
}

.intro-layout-wrap:before {
	content: "";
	background-color: var(--color_tertiary);
	position: absolute;
	inset: 0 0 0 max(2.5%, 50% - 600px);
	display: block;
	z-index: -2;
}

.intro-layout-wrap:after {
	content: attr(data-en);
	color: #fff;
	font-family: var(--font_en);
	font-size: min(4.4vw, 8rem);
	font-weight: bold;
	line-height: 1;
	position: absolute;
	right: max(5%, 50% - 512px - 0.5em);
	bottom: 0;
	z-index: -1;
	white-space: nowrap;
}

.intro-layout {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 40% 4.8% 1fr;
	grid-template-columns: 40% 1fr;
	-ms-grid-rows: auto 0 1fr;
	grid-template-rows: auto 1fr;
	gap: 0 4.8%;
}

.intro-layout>*:nth-child(1) {
	-ms-grid-row: 1;
	-ms-grid-column: 1;
}

.intro-layout>*:nth-child(2) {
	-ms-grid-row: 1;
	-ms-grid-column: 3;
}

.intro-layout>*:nth-child(3) {
	-ms-grid-row: 3;
	-ms-grid-column: 1;
}

.intro-layout>*:nth-child(4) {
	-ms-grid-row: 3;
	-ms-grid-column: 3;
}

.intro-layout .l-ttl {
	-ms-grid-row: 1;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 1/2/2/3;
	font-family: var(--font_jp);
	font-size: 2.6rem;
	line-height: 1.4;
	margin-bottom: 25px;
}

.intro-layout .l-img {
	-ms-grid-row: 1;
	-ms-grid-row-span: 2;
	-ms-grid-column: 1;
	-ms-grid-column-span: 1;
	grid-area: 1/1/3/2;
}

.intro-layout .l-img img {
	border-radius: 10px;
}

.intro-layout .l-desc {
	-ms-grid-row: 2;
	-ms-grid-row-span: 1;
	-ms-grid-column: 2;
	-ms-grid-column-span: 1;
	grid-area: 2/2/3/3;
}

@media (max-width: 800px) {
	.intro-layout-wrap {
		padding: 60px 0;
	}

	.intro-layout-wrap:before {
		inset: 0;
	}

	.intro-layout-wrap:after {
		font-size: min(8vw, 3rem);
		right: 2.5%;
	}

	.intro-layout {
		display: block;
	}

	.intro-layout .l-ttl {
		font-size: 2.3rem;
		margin-bottom: 25px;
	}

	.intro-layout .l-img {
		margin-bottom: 20px;
	}
}

/*------------
投稿パーツ
--------------*/
.no-post {
	white-space: nowrap;
}

/*TOP投稿 top-post-news*/
.top-post-news .article {
	border-bottom: 1px solid #DEDCD9;
}

.top-post-news .article a {
	display: block;
	padding: 15px 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.top-post-news .article.no-post {
	padding: 15px 0;
}

.top-post-news .article time {
	color: #BE9E73;
	font-size: 1.2rem;
	font-family: var(--font_en);
	font-weight: 500;
}

.top-post-news .article .ttl {
	display: block;
	font-size: 1.6rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	padding: 0 30px 0 0;
}

.top-post-news .article .ttl:after {
	content: "";
	display: block;
	border-top: 1px solid #BE9E73;
	border-right: 1px solid #BE9E73;
	width: 0.7rem;
	height: 0.7rem;
	position: absolute;
	right: 7px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media (hover: hover) {
	.top-post-news .article a:is(:hover, :focus) {
		background-color: var(--color_tertiary);
	}
}

@media (max-width: 800px) {
	.top-post-news .article a {
		padding: 10px 0;
	}

	.top-post-news .article time {
		font-size: 1.4rem;
	}

	.top-post-news .article .ttl {
		font-size: 1.4rem;
	}
}

/*TOP投稿 top-post-column*/
.top-post-column-wrap {
	background-color: #fff;
	border-radius: 10px;
	padding: 60px 88px;
}

.top-post-column {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (minmax(0, 1fr))[3];
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.top-post-column .article {
	border-right: 1px solid #DEDCD9;
	background-color: #fff;
}

.top-post-column .article:first-child {
	border-left: 1px solid #DEDCD9;
}

.top-post-column .article a {
	display: block;
	padding: 22px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.top-post-column .article.no-post {
	padding: 22px;
}

.top-post-column .article time {
	font-size: 1.2rem;
	font-family: var(--font_en);
	font-weight: 500;
}

.top-post-column .article .ttl {
	display: block;
	font-size: 1.6rem;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-decoration: underline;
}

@media (hover: hover) {
	.top-post-column .article a:is(:hover, :focus) .ttl {
		text-decoration: none;
	}
}

@media (max-width: 800px) {
	.top-post-column-wrap {
		padding: 35px 25px;
	}

	.top-post-column {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: minmax(0, 1fr);
		grid-template-columns: minmax(0, 1fr);
	}

	.top-post-column .article {
		border-right: none;
		border-bottom: 1px solid #DEDCD9;
	}

	.top-post-column .article:first-child {
		border-left: none;
		border-top: 1px solid #DEDCD9;
	}

	.top-post-column .article a {
		padding: 15px 0;
	}

	.top-post-column .article.no-post {
		padding: 15px 0;
	}

	.top-post-column .article time {
		font-size: 1.4rem;
	}

	.top-post-column .article .ttl {
		font-size: 1.4rem;
	}
}

/*list-post-type01*/
.list-post-type01 {
	border-top: 1px solid var(--color_border);
}

.list-post-type01>.article {
	border-bottom: 1px solid var(--color_border);
}

.list-post-type01 a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	padding: 15px 35px 15px 0;
	position: relative;
}

.list-post-type01 a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color_primary);
	border-right: 2px solid var(--color_primary);
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(50%) rotate(45deg);
	transform: translateY(50%) rotate(45deg);
}

@media (hover: hover) {
	.list-post-type01 a:is(:hover, :focus) {
		background-color: var(--color_tertiary);
	}

	.list-post-type01 a:is(:hover, :focus) .list-ttl {
		text-decoration: underline;
	}
}

.list-post-type01 .list-img {
	width: 150px;
	margin-right: 25px;
}

.list-post-type01 .list-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 105px;
	border: 1px solid var(--color_border);
}

.list-post-type01 .list-desc {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 1.4rem;
}

.list-post-type01 time {
	display: block;
	display: inline-block;
	font-family: var(--font_en);
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
}

.list-post-type01 .list-ttl {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.list-post-type01 .category {
	background: #BE9E73;
	border: 1px solid #BE9E73;
	color: #fff;
	border-radius: 3px;
	display: inline-block;
	font-family: var(--font_jp);
	font-size: 1.1rem;
	line-height: 1;
	padding: 5px 8px;
	margin: 5px 10px 0 0;
}

.list-post-type01 .no-post {
	padding: 25px 0;
}

@media (max-width: 800px) {
	.list-post-type01 a {
		padding: 20px 25px 20px 0;
	}

	.list-post-type01 a::before {
		right: 0;
	}

	.list-post-type01 .list-img {
		width: 120px;
		margin-right: 20px;
	}

	.list-post-type01 .list-img img {
		height: 90px;
	}

	.list-post-type01 .list-desc {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	.list-post-type01 time {
		font-size: 1rem;
	}

	.list-post-type01 .list-ttl {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}

	.list-post-type01 .category {
		font-size: 1rem;
	}

	.list-post-type01 .no-post {
		padding: 25px 0;
	}
}

/*list-post-type02*/
.list-post-type02 .article {
	border-bottom: 1px solid #DEDCD9;
}

.list-post-type02 .article a {
	display: block;
	padding: 15px 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.list-post-type02 .article.no-post {
	padding: 15px 0;
}

.list-post-type02 .article time {
	color: #BE9E73;
	font-size: 1.2rem;
	font-family: var(--font_en);
	font-weight: 500;
}

.list-post-type02 .article .ttl {
	display: block;
	font-size: 1.6rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	padding: 0 30px 0 0;
}

.list-post-type02 .article .ttl:after {
	content: "";
	display: block;
	border-top: 1px solid #BE9E73;
	border-right: 1px solid #BE9E73;
	width: 0.7rem;
	height: 0.7rem;
	position: absolute;
	right: 7px;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media (hover: hover) {
	.list-post-type02 .article a:is(:hover, :focus) {
		background-color: var(--color_tertiary);
	}
}

@media (max-width: 800px) {
	.list-post-type02 .article a {
		padding: 10px 0;
	}

	.list-post-type02 .article time {
		font-size: 1.4rem;
	}

	.list-post-type02 .article .ttl {
		font-size: 1.4rem;
	}
}

/*症例紹介*/
.cases-layout {
	border: 1px solid var(--color_text);
	border-radius: 10px;
	background: #fff;
	padding: 55px 80px;
}

.cases-layout time {
	display: inline-block;
	font-family: var(--font_en);
	font-weight: 500;
	font-size: 1.2rem;
	line-height: 1;
	margin: 0 20px 0 0;
}

.cases-layout .category {
	background: #BE9E73;
	border: 1px solid #BE9E73;
	color: #fff;
	border-radius: 3px;
	display: inline-block;
	font-family: var(--font_jp);
	font-size: 1.3rem;
	line-height: 1;
	padding: 5px 8px;
	margin: 0 10px 0 0;
}

.cases-layout .l-ttl {
	font-family: var(--font_jp);
	font-size: 2.2rem;
	border-bottom: 1px solid var(--color_text);
	padding-bottom: 10px;
	margin-bottom: 30px;
}

.cases-layout .post-data {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}

.cases-layout .before-after {
	margin-bottom: 30px;
}

.cases-layout .l-table {
	background-color: #fff;
	border: none;
}

.cases-layout .l-table:not(:last-child) {
	margin-bottom: 60px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.cases-layout .l-table th,
.cases-layout .l-table td {
	border: 1px solid var(--color_border);
	background: #fff;
	line-height: 1.5;
	font-size: 1.5rem;
	padding: 15px;
}

.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.cases-layout .l-table th {
	background: var(--color_primary);
	color: #fff;
	font-family: var(--font_jp);
	font-size: 1.6rem;
	vertical-align: top;
	text-align: left;
	width: 25%;
}

.cases-layout .l-btn {
	text-align: center;
	margin-top: 50px;
}

.cases-layout .l-btn .btn {
	text-decoration: none;
	display: inline-block;
	background: var(--color_text);
	color: #fff;
	font-family: var(--font_jp);
	font-size: 1.6rem;
	border-radius: 100px;
	line-height: 1.1;
	letter-spacing: 0.1em;
	padding: 22px 30px;
	position: relative;
	min-width: 230px;
	text-align: center;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.cases-layout .l-btn .btn:after {
	content: "";
	display: block;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	width: 0.7rem;
	height: 0.7rem;
	position: absolute;
	right: 1.5rem;
	top: 50%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media (hover: hover) {
	.cases-layout .l-btn .btn:is(:hover, :focus) {
		background-color: oklch(from var(--color_text) calc(l + 0.2) c h);
	}
}

.cases-layout .l-item {
	margin-top: 50px;
}

.cases-layout .item-ttl {
	border-bottom: 1px solid var(--color_text);
	font-family: var(--font_jp);
	font-size: 1.8rem;
	position: relative;
	padding: 0 0 12px;
	margin: 0 0 25px;
}

.cases-layout .item-ttl::after {
	content: "";
	width: 25px;
	height: 1px;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.cases-layout+.cases-layout {
	margin-top: 50px;
}

.before-after {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 60px 1fr;
	grid-template-columns: 1fr 1fr;
	grid-gap: 60px;
}

.before-after .item {
	text-align: center;
	position: relative;
	display: -ms-grid;
	display: grid;
	place-items: center;
	position: relative;
}

.before-after .item+.item:before {
	content: "";
	display: block;
	border-top: 2px solid var(--color_text);
	border-right: 2px solid var(--color_text);
	width: 15px;
	height: 15px;
	position: absolute;
	left: -45px;
	top: calc(50% - 1.5em);
	rotate: 45deg;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.before-after .item img {
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
	max-height: 328px;
	border-radius: 10px;
}

.before-after p {
	text-align: center;
	font-family: var(--font_en);
	font-size: 2rem;
	font-weight: 500;
	margin: 10px 0 0 !important;
}

@media (max-width: 800px) {
	.cases-layout {
		padding: 30px 25px;
	}

	.cases-layout .l-ttl {
		font-size: 2.3rem;
		margin-bottom: 20px;
	}

	.cases-layout .post-data {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 10px;
	}

	.cases-layout .before-after {
		margin-bottom: 30px;
	}

	.cases-layout .l-table:not(:last-child) {
		margin-bottom: 40px;
	}

	.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table,
	.cases-layout table {
		border: 1px solid var(--color_border);
	}

	.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
	.cases-layout .l-table th,
	.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
	.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
	.cases-layout .l-table th,
	.cases-layout .l-table td {
		display: block;
		border: none;
		padding: 10px;
		font-size: 1.4rem;
		width: 100%;
	}

	.cases-layout .l-btn {
		margin-top: 30px;
	}

	.cases-layout .l-item {
		margin-top: 30px;
	}

	.cases-layout .item-ttl {
		border-bottom: 1px solid var(--color_text);
		font-size: 1.8rem;
		position: relative;
		padding: 0 0 12px;
		margin: 0 0 25px;
	}

	.cases-layout .item-ttl::after {
		content: "";
		width: 25px;
		height: 1px;
		position: absolute;
		bottom: -1px;
		left: 0;
	}

	.cases-layout+.cases-layout {
		margin-top: 30px;
	}

	.before-after {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		grid-gap: 40px;
	}

	.before-after .item {
		height: auto;
	}

	.before-after p {
		font-size: 1.8rem;
	}

	.before-after .item+.item:before {
		left: 50%;
		top: -40px;
		rotate: 135deg;
		-webkit-transform: translate(50%, 0);
		transform: translate(50%, 0);
	}
}

/*詳細ページ*/
.l-post-single .l-ttl {
	font-family: var(--font_jp);
	font-size: 3.5rem;
	margin: 0 0 40px;
}

.l-post-single .post-data {
	margin: 0 0 20px;
}

.l-post-single .post-data time {
	display: inline-block;
	font-family: var(--font_en);
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
	vertical-align: -1px;
	margin: 0 20px 0 0;
}

.l-post-single .post-data .category {
	background: #BE9E73;
	border: 1px solid #BE9E73;
	color: #fff;
	border-radius: 3px;
	display: inline-block;
	font-family: var(--font_jp);
	font-size: 1.1rem;
	line-height: 1;
	padding: 5px 8px;
	margin: 0 10px 0 0;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media (hover: hover) {
	.l-post-single .post-data a.category:is(:hover, :focus) {
		background: var(--color_primary);
		color: #fff;
	}
}

@media (max-width: 800px) {
	.l-post-single .l-ttl {
		font-size: 2.8rem;
		margin: 0 0 30px;
	}
}

/*postdata*/
.postdata {
	overflow-wrap: break-word;
}

.postdata .screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.postdata .screen-reader-text:focus {
	background-color: #eee;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.postdata iframe {
	max-width: 100%;
}

.postdata p,
.postdata ul,
.postdata ol {
	margin-bottom: 15px;
}

.postdata a:not(.wp-block-button__link) {
	text-decoration: underline;
}

.postdata a:focus-visible {
	text-decoration: none;
}

.postdata strong {
	font-weight: bold;
	font-family: var(--font_jp);
}

.postdata em {
	font-style: italic;
}

.postdata ul li {
	position: relative;
	padding-left: 15px;
}

.postdata ul li:before {
	content: "";
	background: var(--color_primary);
	border-radius: 50%;
	display: block;
	position: absolute;
	left: 0;
	top: 1em;
	width: 5px;
	height: 5px;
}

.postdata ol {
	counter-reset: number;
}

.postdata ol li {
	padding-left: 30px;
	position: relative;
}

.postdata ol li::before {
	background-color: var(--color_primary);
	border-radius: 15px;
	color: #fff;
	counter-increment: number;
	content: counter(number);
	font-size: 1.1rem;
	position: absolute;
	top: 2px;
	left: 0;
	line-height: 20px;
	text-align: center;
	padding-left: 2px;
	width: 20px;
	height: 20px;
}

.postdata ol li>ol {
	counter-reset: number;
}

.postdata ul li {
	position: relative;
	padding: 0 0 0 1em;
}

.postdata ul li:before {
	background: var(--color_primary);
	border-radius: 50%;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0.8em;
	width: 0.4em;
	height: 0.4em;
}

.postdata ol {
	counter-reset: number;
}

.postdata ol li {
	padding: 0 0 0 2em;
	position: relative;
}

.postdata ol li:before {
	background: var(--color_primary);
	border-radius: 15px;
	color: #fff;
	counter-increment: number;
	content: counter(number);
	font-family: var(--font_en);
	font-size: 1rem;
	font-weight: bold;
	position: absolute;
	top: 0.8em;
	left: 0;
	line-height: 2em;
	text-align: center;
	width: 2em;
	height: 2em;
}


.postdata sub {
	font-size: 1.1rem;
	position: relative;
	bottom: -0.1em;
}

.postdata sup {
	font-size: 1.1rem;
	position: relative;
	top: -0.1em;
}

@media (any-hover: hover) {
	.postdata a:hover {
		text-decoration: none;
	}
}

.postdata sub {
	font-size: 1.1rem;
	position: relative;
	bottom: -0.1em;
}

.postdata .wp-block-button__link {
	background-color: var(--color_primary);
	border: 1px solid var(--color_primary);
	border-radius: 2px;
	color: #fff;
	font-size: 1.6rem;
	padding: 5px 35px;
	min-width: 200px;
	position: relative;
	text-decoration: none;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.postdata .wp-block-button__link::after {
	content: "";
	width: 7px;
	height: 7px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	-webkit-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
	position: absolute;
	top: 50%;
	right: 20px;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
}

.wp-block-button__link:hover {
	opacity: 1;
	background-color: #fff;
	color: var(--color_primary);
}

@media (max-width: 800px) {
	.postdata ul li:before {
		top: 0.65em;
	}

	.postdata ol li:before {
		top: 0.2em;
		padding: 0;
	}
}

/*セレクト式カテゴリー*/
.select-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 50px;
}

.select-area .select-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 30px 0 0;
}

.select-area .select-ttl {
	display: inline-block;
	font-family: var(--font_jp);
	font-size: 1.6rem;
	margin: 0 15px 0 0;
}

.select-area .select-category {
	-webkit-appearance: none;
	-moz-appearance: none;
	outline: none;
	text-overflow: "";
	background: #fff url(../images/share/icon_arrow_down.svg) no-repeat;
	background-size: 20px;
	background-position: right center;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	color: var(--color_text);
	font-size: 1.6rem;
	vertical-align: middle;
	height: 35px;
	min-width: 150px;
	padding: 5px 20px 5px 0;
}

.select-area .select-category::-ms-expand {
	display: none;
}

.select-area .select-category-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	display: inline-block;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid var(--color_primary);
	background: #fff;
	border-radius: 50px;
	color: var(--color_primary);
	padding: 8px 20px;
	font-family: var(--font_jp);
	font-size: 1.3rem;
	line-height: 1;
	text-align: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	margin-left: 15px;
	cursor: pointer;
}

@media (hover: hover) {
	.select-area .select-category-button:is(:hover, :focus) {
		background: var(--color_primary);
		color: #fff;
	}
}

@media (max-width: 800px) {
	.select-area {
		display: block;
		margin: 0 0 30px;
	}

	.select-area .select-item {
		margin: 0;
	}

	.select-area .select-item+.select-item {
		margin-top: 10px;
	}

	.select-area .select-ttl {
		font-size: 1.5rem;
	}
}

/*ページャー*/
.post-number {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 50px 0 0;
}

.post-number a {
	background: var(--color_tertiary);
	color: var(--color_text);
	display: block;
	padding: 0 10px;
	margin: 0 5px 10px;
	line-height: 40px;
	text-align: center;
	min-width: 40px;
	font-family: var(--font_en);
	font-weight: bold;
	text-decoration: none;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

@media (hover: hover) {
	.post-number a:is(:hover, :focus) {
		background: var(--color_primary);
		color: #fff;
	}
}

.post-number .current {
	background: var(--color_primary);
	color: #fff;
	display: block;
	font-family: var(--font_en);
	font-weight: bold;
	margin: 0 5px 10px;
	line-height: 40px;
	text-align: center;
	min-width: 40px;
}

.post-number-single {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	font-family: var(--font_en);
	font-weight: bold;
	line-height: 1;
	overflow: hidden;
	margin: 50px 0 0;
}

.post-number-single a {
	display: inline-block;
}

.post-number-single a.next {
	margin-top: 0;
}

.post-number-single a.next::before {
	content: "";
	background: url(../images/share/icon_arrow_post_left.svg) no-repeat center center/contain;
	display: inline-block;
	margin-right: 1.5rem;
	width: 2.2rem;
	height: 2.2rem;
}

.post-number-single a.prev {
	margin-top: 0;
}

.post-number-single a.prev::after {
	content: "";
	background: url(../images/share/icon_arrow_post_right.svg) no-repeat center center/contain;
	display: inline-block;
	margin-left: 1.5rem;
	width: 2.2rem;
	height: 2.2rem;
}

.post-number-single a.all {
	padding: 0.2rem 0 0;
}

@media (hover: hover) {

	.post-number-single a:hover,
	.post-number-single a:focus {
		opacity: 0.5;
	}
}

/*-----------------------------------------------------------
common
-----------------------------------------------------------*/
.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.fade {
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

@media (hover: hover) {
	.fade:is(:hover, :focus) {
		opacity: 0.5;
	}
}

.underline {
	text-decoration: underline;
}

.bold,
strong {
	font-weight: bolder;
	font-family: var(--font_jp);
}

.marker {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #ffe7a5));
	background: linear-gradient(transparent 50%, #ffe7a5 50%);
}

.red {
	color: #F44336;
}

.notice {
	font-size: 1.3rem;
	text-indent: -1rem;
	padding: 0 0 0 15px;
}

.sp-map iframe,
.sp-map object,
.sp-map embed {
	vertical-align: top;
}

.youtube {
	width: 100%;
	aspect-ratio: 16/9;
}

.youtube iframe {
	width: 100% !important;
	height: 100% !important;
	vertical-align: top;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mbS {
	margin-bottom: 15px !important;
}

.mbM {
	margin-bottom: 30px !important;
}

.mbL {
	margin-bottom: 60px !important;
}

.mt0 {
	margin-top: 0 !important;
}

.tac {
	text-align: center;
}

.tar {
	text-align: right;
}

.tal {
	text-align: left;
}

@media (max-width: 800px) {

	/*-----------------------------------------------------------
	common SP
	-----------------------------------------------------------*/
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	.sp-tac {
		text-align: center !important;
	}

	.sp-tar {
		text-align: right !important;
	}

	.sp-tal {
		text-align: left !important;
	}

	.mbL {
		margin-bottom: 30px !important;
	}

	.sp-map {
		position: relative;
		padding-bottom: 56.25%;
		padding-top: 30px;
		height: 0;
		overflow: hidden;
	}

	.sp-map iframe,
	.sp-map object,
	.sp-map embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
}

/*------------
btn
--------------*/
/*btn-style01 */
.btn-style01 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	min-width: 0;
	font-family: var(--font_jp);
	font-size: 1.6rem;
	line-height: 1.2;
	position: relative;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	gap: 15px;
}

.btn-style01:after {
	content: "";
	display: block;
	background: url(../images/share/btn_arrow.svg) no-repeat center/contain;
	width: 6rem;
	height: 6rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 6rem;
	flex: 0 0 6rem;
}

.btn-style01 .btn-txt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background: -webkit-gradient(linear, left top, left bottom, from(currentColor)) no-repeat bottom right/0 1px;
	background: linear-gradient(currentColor) no-repeat bottom right/0 1px;
	padding-bottom: 5px;
	-webkit-transition: background-size 0.3s ease-out;
	transition: background-size 0.3s ease-out;
}

@media (hover: hover) {
	.btn-style01:is(:hover, :focus) .btn-txt {
		background-size: 100% 1px;
		background-position: bottom left;
	}
}

.btn-style02 {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 0 7px;
	background: var(--color_text);
	color: #fff;
	font-family: var(--font_jp);
	font-size: 1.6rem;
	line-height: 1.1;
	border-radius: 100px;
	padding: 15px;
	position: relative;
	min-width: 156px;
	text-align: center;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.btn-style02 .icon {
	flex: 0 0 auto;
}

@media (hover: hover) {
	.btn-style02:is(:hover, :focus) {
		background-color: oklch(from var(--color_text) calc(l + 0.2) c h);
	}
}

.tel-link {
	display: inline-block;
	font-family: var(--font_en);
	font-weight: 500;
	font-size: 3.2rem;
	line-height: 1;
}

.tel-link:before {
	content: "" /"Tel";
	background: url(../images/share/icon_tel.svg) no-repeat center/contain;
	width: 2.7rem;
	height: 2.7rem;
	display: inline-block;
	margin-right: 5px;
	vertical-align: -2px;
}

.btn-wrap {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.btn-wrap.top-btn-wrap {
	margin-top: 50px;
}

.btn-wrap.tac {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.btn-wrap.tar {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

@media (max-width: 800px) {
	.btn-wrap {
		margin-top: 30px;
	}

	.btn-wrap.top-btn-wrap {
		margin-top: 30px;
	}

	.btn-wrap.sp-tac {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.btn-wrap.sp-tal {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}

/*------------
診療時間
--------------*/
.time-table {
	font-family: var(--font_jp);
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.time-table th,
.time-table td {
	text-align: center;
	line-height: 1;
	vertical-align: middle;
}

.time-table th {
	color: #fff;
	background: var(--color_primary);
	padding: 15px 5px;
}

.time-table th:first-child {
	width: 26.5%;
}

.time-table th:last-child {
	width: 10.5%;
}

.time-table td {
	background: #fff;
	border: 1px solid var(--color_border);
	padding: 15px 5px;
}

.time-table td:first-child {
	background-color: #DEEFE5;
}

.time-table td:not(:first-child) {
	font-size: 1.4rem;
}

.table-txt {
	font-size: 1.5rem;
}

.dl-time {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 65px 15px 1fr;
	grid-template-columns: 65px 1fr;
	gap: 15px;
}

.dl-time dt {
	border: 1px solid Currentcolor;
	border-radius: 2px;
	font-family: var(--font_jp);
	font-size: 1.2rem;
	text-align: center;
	-ms-flex-item-align: start;
	align-self: flex-start;
	line-height: 1.2;
	padding: 2px;
}

.dl-time dd {
	font-size: 1.4rem;
	line-height: 1.7;
}

.dl-time dd .small {
	font-size: 1.2rem;
}

@media (max-width: 800px) {
	.time-table {
		font-size: 1.2rem;
	}

	.time-table th {
		padding: 10px 0;
	}

	.time-table .txt {
		font-size: 1.1rem;
		letter-spacing: 0;
	}

	.time-table td {
		padding: 15px 0;
	}
}

/*------------
ビジネスカレンダー
--------------*/
.business-calendar-hidden01 {
	display: none;
	font-family: var(--font_base);
}

.business-calendar-hidden02 {
	display: none;
	font-family: var(--font_jp);
}

.business-calendar-wrap .business-calendar-box>div {
	background: var(--color_tertiary);
	border-radius: 10px;
	padding: 25px 15px;
}

.business-calendar-wrap.calendar-col2 .business-calendar-box {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 32px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}

.business-calendar-box {
	margin: 0 0 15px;
}

.business-calendar-box .business-calendar {
	text-align: center;
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.business-calendar-box .business-calendar caption {
	font-family: var(--font_jp);
	font-size: 1.8rem;
	text-align: center;
	margin: 0 0 10px;
	padding: 0 0 10px;
}

.business-calendar-box .business-calendar caption span {
	line-height: 1;
	font-size: 2.5rem;
	vertical-align: -7px;
	margin: 0 10px;
}

.business-calendar-box .business-calendar-past a,
.business-calendar-box .business-calendar-future a {
	display: inline-block;
	cursor: pointer;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	width: 25px;
	height: 25px;
}

.business-calendar-box .business-calendar-past a::before,
.business-calendar-box .business-calendar-future a::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color_primary);
	border-right: 2px solid var(--color_primary);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 7px;
	left: 7px;
}

.business-calendar-box .business-calendar-past a::before {
	-webkit-transform: rotate(45deg) scale(-1);
	transform: rotate(45deg) scale(-1);
}

.business-calendar-box .business-calendar th {
	background-color: var(--color_primary);
	color: #fff;
	font-family: var(--font_jp);
	font-size: 1.6rem;
	padding: 8px 5px;
	width: 14%;
}

.business-calendar-box .business-calendar td {
	background: var(--color_tertiary);
	background-clip: padding-box;
	position: relative;
	font-size: 1.4rem;
	padding: 8px 5px;
	z-index: 0;
}

.business-calendar-box .business-calendar td::after {
	content: "";
	display: block;
	min-height: 1em;
	line-height: 1;
	text-align: center;
	opacity: 0;
}

.business-calendar-box .business-calendar .today {
	text-decoration: underline;
}

.business-calendar-box .business-calendar .saturday {
	color: #3784BB;
}

.business-calendar-box .business-calendar .sunday {
	color: #E44747;
}

.business-calendar-box .business-calendar .attr0::after,
.business-calendar-box .business-calendar .attr1::after,
.business-calendar-box .business-calendar .attr2::after {
	opacity: 1;
}

.business-calendar-box .business-calendar .attr0::after {
	content: "×";
}

.business-calendar-box .business-calendar .attr1::after {
	content: "▲";
}

.business-calendar-box .business-calendar .attr2::after {
	content: "■";
}

.list-event {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0 20px;
}

.list-event li {
	font-size: 1.4rem;
	line-height: 1.5;
}

.list-event i {
	margin: 0 5px 0 0;
}

@media (max-width: 800px) {
	.business-calendar-wrap .business-calendar-box>div {
		padding: 30px 20px;
	}

	.business-calendar-wrap.calendar-col2 {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.business-calendar-box .business-calendar caption span {
		margin: 0 30px;
	}
}

/*-----------------------------------------------------------
アニメーション
-----------------------------------------------------------*/
.is-mask {
	display: inline-block;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
	-webkit-transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
	transition: all 1s cubic-bezier(0.5, 1, 0.89, 1);
	vertical-align: middle;
}

.is-mask.is-action {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

.is-fade {
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	-webkit-transform: translate(0, 15%);
	transform: translate(0, 15%);
}

.is-fade.is-action {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.is-fade-l {
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	-webkit-transform: translate(-15%, 0);
	transform: translate(-15%, 0);
}

.is-fade-l.is-action {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.is-fade-r {
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	-webkit-transform: translate(15%, 0);
	transform: translate(15%, 0);
}

.is-fade-r.is-action {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.is-card>* {
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	-webkit-transform: translate(0, 15%);
	transform: translate(0, 15%);
}

.is-card>*:nth-child(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.is-card>*:nth-child(3) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.is-card>*:nth-child(4) {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.is-card>*:nth-child(5) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.is-card>*:nth-child(6) {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.is-card.is-action>* {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
}

.is-ttl span {
	opacity: 0;
	-webkit-transition: 0.7s;
	transition: 0.7s;
}

.is-ttl.is-action span {
	opacity: 1;
}

.js-parallax-bg {
	overflow: hidden;
}

.js-parallax-bg img {
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

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

	.is-mask,
	.is-fade,
	.is-fade-l,
	.is-fade-r,
	.is-card>*,
	.is-ttl span {
		transition: none !important;
		-webkit-transition: none !important;
		opacity: 1 !important;
		clip-path: none !important;
		transform: none !important;
		-webkit-transform: none !important;
		-webkit-transition-delay: 0s !important;
		transition-delay: 0s !important;
	}
}

/*------------
gallery-slider01
--------------*/
.gallery-slider01 .splide {
	margin: 0 auto;
}

.gallery-slider01 .splide__track {
	overflow: visible;
}

.gallery-slider01 .splide__slide {
	opacity: 0.2;
	-webkit-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}

.gallery-slider01 .splide__slide.is-active {
	opacity: 1;
}

.gallery-slider01 .splide__arrow--prev {
	top: 220px;
	left: calc((100% - 872px) / 2);
}

.gallery-slider01 .splide__arrow--next {
	top: 220px;
	right: calc((100% - 872px) / 2);
}

.gallery-slider01 .item-desc {
	margin-top: 25px;
}

.gallery-slider01 .item-ttl {
	font-family: var(--font_jp);
	font-size: 1.8rem;
	line-height: 1.7;
	margin-bottom: 5px;
}

@media (max-width: 800px) {
	.gallery-slider01 .splide__arrow--prev {
		top: 22.5vw;
		left: 2.5%;
	}

	.gallery-slider01 .splide__arrow--next {
		top: 22.5vw;
		right: 2.5%;
	}

	.gallery-slider01 .item-desc {
		margin-top: 15px;
	}

	.gallery-slider01 .item-ttl {
		font-family: var(--font_jp);
		font-size: 1.6rem;
		line-height: 1.4;
	}
}

/*------------
img-slider
--------------*/
.img-slider .item-img {
	position: relative;
}

.img-slider .item-img figcaption {
	background: #fff;
	font-family: var(--font_en);
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: left;
	padding: 3px 5px;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

.img-slider .item-img {
	position: relative;
}

.img-slider .item-img figcaption {
	background: #fff;
	font-family: var(--font_en);
	font-size: 1.3rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: left;
	padding: 3px 5px;
	position: absolute;
	bottom: 10px;
	left: 10px;
}

/*-----------------------------------------------------------
splide
-----------------------------------------------------------*/
/*各種色設定*/
:root {
	--splide-arrow-color: #63AA6E;
	/*矢印*/
	--splide-focus-color: #63AA6E;
	/*タブ移動によるフォーカス時のアウトライン*/
	--splide-pagination-color: #333333;
	/*アクティブ時のページネーション*/
	--splide-progress-color: #333333;
	/*プログレスバー*/
	--splide-toggle-color: #333333;
	/*再生ボタン*/
	--splide-track-color: #63AA6E;
	/*サムネイルの枠*/
}

.splide__container {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	-ms-flex-align: center;
	-webkit-box-align: center;
	align-items: center;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress {
	background: #ddd;
	margin-top: 10px;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	-webkit-animation: splide-loading 1s linear infinite;
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: inline;
}

.splide__controls {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 15px;
}

.splide__controls .splide__pagination {
	position: static;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

@-webkit-keyframes splide-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

@keyframes splide-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	to {
		-webkit-transform: rotate(1turn);
		transform: rotate(1turn);
	}
}

.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
	margin: 0 !important;
	opacity: 0;
	z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb>.splide__list {
	display: block;
}

.splide__arrow {
	background: none;
	border: none;
	cursor: pointer;
	width: 35px;
	height: 35px;
	opacity: 1;
	padding: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 1;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}

.splide__arrow svg {
	width: 100%;
	height: 100%;
	fill: var(--splide-arrow-color);
}

.splide__arrow:hover:not(:disabled) {
	opacity: 0.3;
}

.splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow:focus-visible {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: 20px;
	-webkit-transform: translateY(-50%) scaleX(-1);
	transform: translateY(-50%) scaleX(-1);
}

.splide__arrow--next {
	right: 20px;
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide__pagination {
	bottom: 15px;
	left: 0;
	padding: 0;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #fff;
	border: 1px solid #333333;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 5px;
	opacity: 1;
	padding: 0;
	position: relative;
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	transition: transform 0.2s linear, -webkit-transform 0.2s linear;
	width: 8px;
}

.splide__pagination__page.is-active {
	background: var(--splide-pagination-color);
	z-index: 1;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide__progress__bar {
	background: var(--splide-progress-color);
	height: 3px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid var(--splide-focus-color);
		outline-offset: -3px;
	}
}

@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid var(--splide-focus-color);
		outline-offset: -3px;
	}
}

.splide__toggle {
	border: 0;
	padding: 0;
	cursor: pointer;
	background: #737e80;
	border-radius: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 10px;
	-webkit-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
	height: 29px;
	width: 29px;
}

.splide__toggle:hover {
	background: var(--splide-toggle-color);
}

.splide__toggle svg {
	fill: #fff;
	-webkit-transition: fill 0.2s ease;
	transition: fill 0.2s ease;
	width: 12px;
	height: auto;
}

.splide__toggle:focus-visible {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid var(--splide-focus-color);
	outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
	border: 3px solid var(--splide-track-color);
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	-webkit-transform: translate(-50%);
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}

@media (max-width: 800px) {
	.splide__arrow {
		width: 25px;
		height: 25px;
	}

	.splide__arrow--prev {
		left: 10px;
	}

	.splide__arrow--next {
		right: 10px;
	}
}
