@charset "UTF-8";
@import "oc-theme-base.css";

:root {
	--oc-link-color: #0d6efd;
	--oc-primary-color: #233b68;
	--oc-btn-primary-color: #233b68;
	--oc-btn-alt-color: #233b68;

	--oc-blog-heading-mt: 1.9rem;
	--oc-blog-heading-mb: 1.625rem;
	--oc-blog-heading-pt: 1.625rem;
	--oc-blog-font-size: calc(1rem + .069vw);
	--oc-blog-heading1-fs: calc(1.6rem + .069vw);
	--oc-blog-heading2-fs: calc(1.5rem + .069vw);
	--oc-blog-heading3-fs: calc(1.35rem + .069vw);
	--oc-blog-line-height: 1.625rem;
}

body {
	font-size: 16px;
	line-height: 1.8;
}

.text-primary-color {
	color: var(--oc-primary-color);
}

.clear-fix {
	clear: both;
}

a {
	text-decoration: none;
	color: var(--oc-link-color);
	;
}

a:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
}

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

.text-bg-top {
	z-index: 0;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-bg-top .caption {}

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

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

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

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

/* OC Button Style */
.site-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 375px;
	height: 73px;
	max-width: 90%;
	border: 1px solid #fff;
	color: #fff;
	background-color: transparent;
	transition: all 0.5s;
}

.site-btn {
	color: var(--oc-primary-color);
	border-color: var(--oc-primary-color);
}

/* END - OC Button Style */

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

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

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

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

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

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

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400;
	/* 枠の調整 */
	border-radius: 50%;
	/* 丸みの度合い */
	background: #fff;
	/* ボタンの背景色 */
}

.round_btn::before,
.round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	/* 棒の幅（太さ） */
	height: 22px;
	/* 棒の高さ */
	background: #AA8400;
	/* バツ印の色 */
}

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

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

/* END - OC Modal Style */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
追加css
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
	margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Set core root defaults */
html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* 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;
	}
}

html {
	font-size: 16px;
}

@media (max-width: 1140px) {
	html {
		font-size: 1.4035087719vw;
	}
}

@media screen and (max-width: 768px) {
	html {
		font-size: 16px;
	}
}

@media (max-width: 375px) {
	html {
		font-size: 4.0533333333vw;
	}
}

body {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0em;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #333;
	background: #fff;
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
	color: transparent;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 4vw;
		line-height: 1.8;
	}
}

.drawer {
	position: relative;
	z-index: 100;
}

.drawer .icon {
	position: fixed;
	width: 50px;
	height: 50px;
	top: 50%;
	right: 4vw;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #254F38;
	border-radius: 50%;
	cursor: pointer;
	z-index: 1000;
	z-index: 250;
}

.drawer .icon-bars {
	position: relative;
	width: 24px;
	height: 10px;
	top: 20px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1000;
}

.drawer .icon-bar1,
.drawer .icon-bar2 {
	position: absolute;
	width: 24px;
	height: 2px;
	background: #fff;
	top: 0;
	left: 0;
	-webkit-transition: ease 0.5s;
	transition: ease 0.5s;
}

.drawer .icon-bar1 {
	top: 0;
}

.drawer .icon-bar2 {
	top: 10px;
}

.drawer .icon.is-active .icon-bar1 {
	width: 24px;
	top: calc(50% - 1px);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.drawer .icon.is-active .icon-bar2 {
	width: 24px;
	top: calc(50% - 1px);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.drawer .icon.is-active {
	z-index: 251;
}

.drawer .contents {
	position: fixed;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	background: #fff;
	margin-top: 84px;
	cursor: auto;
	opacity: 0;
	pointer-events: none;
	overflow-y: scroll;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 250;
}

.drawer .contents.is-active {
	opacity: 1;
	pointer-events: auto;
}

.drawer .text {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0em;
	font-size: 3.73vw;
}

.drawer .nav {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8vw;
	margin-top: 7.2vw;
}

.drawer .nav__title {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.1875;
	letter-spacing: 0em;
	font-size: 4.27vw;
	padding-left: 2.67vw;
}

.drawer .nav__title::before {
	content: "";
	width: 1.07vw;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #2c7d51;
}

.drawer .nav__items {
	margin-top: 1.6vw;
}

.drawer .nav__item a {
	position: relative;
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.1875;
	letter-spacing: 0.05em;
	font-size: 4.27vw;
	color: #2b8454;
	border-bottom: 1px solid #d8d8d8;
	padding: 2.67vw 8vw 2.4vw 2.67vw;
}

.drawer .nav__item a::before {
	content: "";
	position: absolute;
	width: 1.87vw;
	height: 1.87vw;
	top: 50%;
	right: 4vw;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	border-right: 2px solid #d1d1d1;
	border-bottom: 2px solid #d1d1d1;
	z-index: 1;
}

.drawer .nav__items--sub {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.13vw 2.67vw;
	margin-top: 0;
}

.drawer .box {
	position: relative;
	width: 100%;
	background: #fff5eb;
	padding: 5.6vw 4vw;
	margin-top: 13.33vw;
}

.drawer .box__title-wrap {
	position: absolute;
	width: 100%;
	top: -3.73vw;
	left: calc(50% - 2.13vw);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	text-align: center;
}

.drawer .box__title {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0em;
	font-size: 3.73vw;
	color: #2c7d51;
	background: #fff;
	-webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
	padding: 1.07vw 5.6vw 1.07vw 3.73vw;
}

.drawer .box__title .accent {
	color: #e33030;
}

.drawer .btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.4vw;
}

.drawer .btn a {
	gap: 1.6vw;
	border: 1px solid #254F38;
	border-radius: 1.33vw;
	-webkit-box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.2);
	box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.2);
	padding: 2.13vw 2.67vw 2.4vw 1.33vw;
}

.drawer .btn__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.drawer .btn__icon img {
	width: 4.27vw;
	height: 4.27vw;
	-o-object-fit: contain;
	object-fit: contain;
}

.drawer .btn__text {
	font-family: "Noto Serif JP", serif;
}

.drawer .tel a {
	background: #fff;
}

.drawer .tel .btn__text {
	color: #254F38;
}

.drawer .web a {
	background: #254F38;
}

.drawer .web .btn__text {
	color: #fff;
}

#footer .body {
	background: #f3efeb;
	padding: 5.5rem 0 4.5rem;
}

#footer .logo {
	width: 100%;
	max-width: 37.125rem;
	margin-inline: auto;
	padding-left: 2.8125rem;
}

#footer .logo a {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#footer .logo a:hover {
	opacity: 0.8;
}

#footer .contents {
	gap: 3.5rem;
	background: #fff;
	padding: 2.1875rem 2.25rem 1.25rem 1.75rem;
	margin-top: 2.8125rem;
}

#footer .contact {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#footer .tel {
	gap: 0.375rem;
	padding-left: 0.625rem;
}

#footer .tel__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#footer .tel__icon img {
	width: 2rem;
	height: 2rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#footer .tel__number {
	font-family: "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 400;
	line-height: 1.06;
	letter-spacing: 0.1em;
	color: #254F38;
}

#footer .btn {
	margin-top: 0.5rem;
}

#footer .btn__catch {
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
	letter-spacing: 0.08em;
	text-align: center;
}

#footer .btn a {
	position: relative;
	gap: 0.8125rem;
	background: #254F38;
	border-radius: 2.5rem;
	padding: 1.25rem 5rem 1.25rem 2.125rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#footer .btn a:hover {
	opacity: 0.8;
}

#footer .btn a::before {
	content: "";
	position: absolute;
	width: 0.4375rem;
	height: 0.4375rem;
	top: calc(50% + 0.0625rem);
	right: 3.75rem;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	z-index: 1;
}

#footer .web__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#footer .web__icon img {
	width: 2.0625rem;
	height: 2.0625rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#footer .web__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.064em;
	color: #fff;
}

#footer .hour {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 34.375rem;
	flex: 0 0 34.375rem;
}

#footer .hour__table {
	width: 100%;
	border-collapse: collapse;
}

#footer .hour__table th {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #fff;
	background: #254F38;
	padding: 0.75rem;
	border: 1px solid #fff;
}

#footer .hour__table th:first-of-type {
	min-width: 8.75rem;
}

#footer .hour__table td {
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.6666666667;
	letter-spacing: 0.0611111111em;
	color: #1c3c29;
	border: 1px solid #254F38;
	border-top: none;
	border-bottom: none;
	padding: 0.625rem;
	text-align: center;
}

#footer .hour__table td:first-of-type {
	border-left: none;
}

#footer .hour__table td:last-of-type {
	border-right: none;
}

#footer .hour__table td:not(:first-of-type) {
	font-size: 0.875rem;
}

#footer .hour__table tr:nth-of-type(2) td {
	padding: 0.3125rem 0.75rem;
}

#footer .hour__lists {
	margin-top: 0.9375rem;
}

#footer .hour__list {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1.875rem;
}

#footer .hour__title {
	min-width: 4.375rem;
	font-size: 1rem;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.08em;
}

#footer .hour__text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.08em;
}

#footer .copyright {
	display: block;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.08em;
	color: #fff;
	background: #254F38;
	padding: 0.8125rem 0 0.5625rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#footer {
		padding-bottom: 16vw;
	}

	#footer .fix-btn {
		position: fixed;
		width: 100%;
		bottom: 0;
		left: 0;
		background: #fff;
		padding: 1.87vw 0.8vw;
		z-index: 100;
	}

	#footer .fix-btn__btns {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0.8vw;
	}

	#footer .fix-btn__btn a {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		gap: 1.6vw;
		border: 1px solid #254F38;
		border-radius: 1.33vw;
		-webkit-box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.05);
		box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.05);
		padding: 3.2vw 2.67vw 3.2vw 1.33vw;
	}

	#footer .fix-btn__icon {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}

	#footer .fix-btn__icon img {
		width: 4.27vw;
		height: 4.27vw;
		-o-object-fit: contain;
		object-fit: contain;
	}

	#footer .fix-btn__text {
		font-family: "Noto Serif JP", serif;
		font-size: 4vw;
		line-height: 1.23;
	}

	#footer .fix-tel a {
		background: #fff;
	}

	#footer .fix-tel .fix-btn__text {
		color: #254F38;
	}

	#footer .fix-web a {
		background: #254F38;
	}

	#footer .fix-web .fix-btn__text {
		font-size: 4.27vw;
		line-height: 1.2;
		color: #fff;
	}

	#footer .fix-btn__text .small {
		position: relative;
		display: inline-block;
		top: -0.27vw;
		font-size: 2.67vw;
		padding-right: 0.8vw;
	}

	#footer .body {
		padding: 14.4vw 0 9.33vw;
	}

	#footer .logo {
		max-width: 76.8vw;
		padding-left: 0;
	}

	#footer .logo a:hover {
		opacity: 1;
	}

	#footer .contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 6.4vw;
		padding: 7.73vw 4vw 8.53vw;
		margin-top: 4.53vw;
	}

	#footer .contact {
		width: 100%;
	}

	#footer .tel {
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		gap: 1.6vw;
		padding-left: 1.87vw;
	}

	#footer .tel__icon {
		position: relative;
		top: -0.8vw;
	}

	#footer .tel__icon img {
		width: 6.4vw;
		height: 6.4vw;
	}

	#footer .tel__number {
		font-size: 8.53vw;
		line-height: 1.19;
	}

	#footer .btn {
		margin-top: 4.8vw;
	}

	#footer .btn__catch {
		font-size: 4.27vw;
	}

	#footer .btn a {
		gap: 1.6vw;
		border-radius: 10.67vw;
		padding: 5.07vw 10.67vw 5.07vw 1.6vw;
	}

	#footer .btn a:hover {
		opacity: 1;
	}

	#footer .btn a::before {
		width: 1.87vw;
		height: 1.87vw;
		top: 50%;
		right: 10.67vw;
	}

	#footer .web__icon img {
		width: 5.87vw;
		height: 5.87vw;
	}

	#footer .web__text {
		font-size: 4.27vw;
		line-height: 2;
	}

	#footer .hour {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	#footer .hour__table {
		width: 100%;
		border-collapse: collapse;
	}

	#footer .hour__table th {
		font-size: 3.2vw;
		line-height: 1.72;
		padding: 2.67vw 2.8vw;
	}

	#footer .hour__table th:first-of-type {
		min-width: 20.53vw;
	}

	#footer .hour__table td {
		font-family: "Noto Serif JP", serif;
		font-size: 1.125rem;
		font-weight: 600;
		line-height: 1.6666666667;
		letter-spacing: 0.0611111111em;
		font-size: 2.67vw;
		line-height: 1.83;
		padding: 1.73vw;
	}

	#footer .hour__table td:not(:first-of-type) {
		font-size: 2.67vw;
		line-height: 1.83;
	}

	#footer .hour__table tr:nth-of-type(2) td {
		padding: 1.73vw;
	}

	#footer .hour__lists {
		padding-left: 1vw;
		margin-top: 5.33vw;
	}

	#footer .hour__list {
		gap: 2.4vw;
	}

	#footer .hour__list:not(:first-of-type) {
		margin-top: 1.33vw;
	}

	#footer .hour__title {
		min-width: 17.07vw;
		font-size: 3.73vw;
		line-height: 1.5;
	}

	#footer .hour__text {
		font-size: 3.73vw;
		line-height: 1.5;
	}

	#footer .copyright {
		font-size: 3.2vw;
		line-height: 2.67;
		letter-spacing: 0.1em;
		padding: 2.93vw 5.33vw;
	}
}

#pc-header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #fff;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
	padding: 0.75rem 0 0.75rem;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	z-index: 100;
}

#pc-header.is-hidden {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

#pc-header .body {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#pc-header .meta {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
}

#pc-header .logo {
	width: 100%;
	max-width: 19.5rem;
	margin-top: 0.6875rem;
}

#pc-header .logo a {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#pc-header .logo a:hover {
	opacity: 0.8;
}

#pc-header .contents {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 0.9375rem;
}

#pc-header .tel__title {
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.7307692308;
	letter-spacing: 0.05em;
}

#pc-header .tel__row {
	gap: 0.125rem;
}

#pc-header .tel__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#pc-header .tel__icon img {
	width: 2.3125rem;
	height: 2.3125rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#pc-header .tel__number {
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.03em;
	color: #254F38;
}

#pc-header .tel__hour {
	gap: 0.625rem;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
	margin-top: 0.46875rem;
}

#pc-header .web__btn {
	position: relative;
}

#pc-header .web__catch {
	position: absolute;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	top: -1rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0em;
	color: #254F38;
	background: #fff;
	-webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
	padding: 0.375rem 0.5625rem;
	z-index: 1;
}

#pc-header .web__btn a {
	position: relative;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.4375rem;
	color: #fff;
	background: #254F38;
	border-radius: 0.625rem;
	-webkit-box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.2);
	box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.2);
	padding: 1.125rem 2.1875rem 0.75rem 0.875rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#pc-header .web__btn a:hover {
	opacity: 0.8;
}

#pc-header .web__btn a::before {
	content: "";
	position: absolute;
	width: 0.4375rem;
	height: 0.4375rem;
	top: 50%;
	right: 0.9375rem;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	z-index: 1;
}

#pc-header .web__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#pc-header .web__icon img {
	width: 1.5rem;
	height: 1.5rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#pc-header .web__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
}

#pc-header .web__text .small {
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.1066666667em;
}

#pc-header .web__text .big {
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.25;
	letter-spacing: 0em;
}

#sp-header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	background: #fff;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
	padding: 20.5px 0;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	z-index: 300;
}

#sp-header.is-hidden {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

#sp-header .logo {
	position: relative;
	width: 100%;
	max-width: 230px;
	z-index: 200;
}

.l-inner,
.l-inner-m,
.l-inner-l {
	width: 100%;
	margin-inline: auto;
	padding: 0 1.25rem;
}

.l-inner {
	max-width: 1140px;
}

.l-inner-m {
	max-width: 1286px;
}

.l-inner-l {
	max-width: 1420px;
}

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

	.l-inner,
	.l-inner-m,
	.l-inner-l {
		max-width: 100%;
		padding: 0 1rem;
		padding: 0 4vw;
	}
}

.c-title {
	text-align: center;
}

.c-title .c-title__en {
	font-family: "Sorts Mill Goudy", serif;
	font-size: 5rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
	color: #f3efeb;
}

.c-title .c-title__catch {
	font-family: "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.1944444444;
	letter-spacing: 0.05em;
	margin-top: -2.1875rem;
}

.c-title .c-title__ja {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.0476190476em;
	background: -webkit-linear-gradient(88deg, #2b8454 16.93%, #12b174 70.81%);
	background: linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: -1.875rem;
}

.c-title .c-title__ja span {
	background: -webkit-linear-gradient(88deg, #2b8454 16.93%, #12b174 70.81%);
	background: linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.c-title .c-title__ja .middle {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.2083333333;
	letter-spacing: 0.05em;
}

.c-title .c-title__ja .big {
	font-size: 3.25rem;
	font-weight: 600;
	line-height: 1.1923076923;
	letter-spacing: 0.05em;
}

.c-title .c-title__row {
	gap: 0.8125rem;
}

@media screen and (max-width: 768px) {
	.c-title .c-title__en {
		font-size: 10.67vw;
		line-height: 1.45;
	}

	.c-title .c-title__catch {
		font-size: 5.33vw;
		line-height: 1.2;
		margin-top: -5.33vw;
	}

	.c-title .c-title__ja {
		font-size: 7.47vw;
		line-height: 1.5;
		margin-top: -8.53vw;
	}

	.c-title .c-title__ja .middle {
		font-size: 8.53vw;
		line-height: 1.19;
	}

	.c-title .c-title__ja .big {
		font-size: 6.93vw;
		line-height: 1.19;
	}

	.c-title .c-title__row {
		gap: 0.88vw;
	}
}

.common-cta {
	position: relative;
	background-image: url("../img/common-cta-bg.webp");
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: -8.2vw;
}

.common-cta .head {
	position: relative;
	left: 1.25rem;
	width: 100%;
	max-width: 47.1875rem;
	margin-inline: auto;
	padding: 11.2vw 0 0;
}

.common-cta .title {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0em;
	background: -webkit-gradient(linear, left top, right top, color-stop(58.36%, #254f38), color-stop(95.71%, #22976a));
	background: -webkit-linear-gradient(left, #254f38 58.36%, #22976a 95.71%);
	background: linear-gradient(90deg, #254f38 58.36%, #22976a 95.71%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	border-bottom: 1px solid #254F38;
	padding-bottom: 0.875rem;
	text-align: center;
}

.common-cta .title .big {
	font-size: 4.375rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0em;
}

.common-cta .text {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0em;
	padding-left: 0.3125rem;
	margin-top: 2.25rem;
}

.common-cta .text .accent {
	color: #da0c0c;
}

.common-cta .contents {
	position: relative;
	top: 0.9375rem;
	width: 100%;
	max-width: 59.5rem;
	margin-inline: auto;
	background: #f9eee1;
	border: 1px solid #d8d8d8;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
	padding: 3.90625rem 2rem 0;
	margin-top: 3.4375rem;
}

.common-cta .catch {
	position: absolute;
	width: 100%;
	top: -1.25rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.common-cta .catch span {
	position: relative;
	display: block;
	width: 100%;
	max-width: 40.375rem;
	margin-inline: auto;
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	color: #fff;
	background: -webkit-gradient(linear, left top, right top, from(#2b8454), to(#12b174));
	background: -webkit-linear-gradient(left, #2b8454, #12b174);
	background: linear-gradient(to right, #2b8454, #12b174);
	padding: 1.03125rem 0.625rem;
	text-align: center;
}

.common-cta .catch span::before {
	content: "";
	position: absolute;
	width: 0.75rem;
	height: 100%;
	top: 50%;
	left: -0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	background: #2b8454;
}

.common-cta .catch span::after {
	content: "";
	position: absolute;
	width: 0.75rem;
	height: 100%;
	top: 50%;
	right: -0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #12b174;
}

.common-cta .btns {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4.25rem;
}

.common-cta .btn {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.common-cta .btn:hover {
	opacity: 0.8;
}

.common-cta .btn a {
	-webkit-box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.2);
	box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.2);
	border-radius: 0.625rem;
	border: 2px solid #254f38;
}

.common-cta .tel a {
	display: block;
	color: #254F38;
	background: #fff;
	padding: 1.09375rem 1rem 0.9375rem;
}

.common-cta .tel__row {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 0.8125rem;
}

.common-cta .tel__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.common-cta .tel__icon img {
	width: 1.875rem;
	height: 1.875rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.common-cta .tel__number {
	font-family: "Noto Serif JP", serif;
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.03em;
}

.common-cta .tel__hour {
	gap: 0.1875rem;
	font-family: "Noto Serif JP", serif;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	margin-top: 0.5625rem;
}

.common-cta .tel__hour .big {
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
}

.common-cta .web {
	position: relative;
}

.common-cta .web__catch {
	position: relative;
	top: -0.125rem;
	width: 100%;
	max-width: 13.8125rem;
	margin-inline: auto;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0em;
	color: #2c7d51;
	background: #fff;
	-webkit-box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.25);
	padding: 0.375rem 0.75rem 0.3125rem 0.5625rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	z-index: 1;
}

.common-cta .web__catch .accent {
	color: #e33030;
}

.common-cta .web a {
	position: relative;
	top: -2rem;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.4375rem;
	color: #fff;
	background: #254F38;
	padding: 2.125rem 3.4375rem 1.75rem 2.125rem;
}

.common-cta .web a::before {
	content: "";
	position: absolute;
	width: 0.4375rem;
	height: 0.4375rem;
	top: calc(50% + 0.125rem);
	right: 2.8125rem;
	-webkit-transform: translateY(-50%) rotate(-45deg);
	transform: translateY(-50%) rotate(-45deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	z-index: 1;
}

.common-cta .web__icon {
	position: relative;
	top: 0.125rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.common-cta .web__icon img {
	width: 1.5rem;
	height: 1.5rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.common-cta .web__text {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 0.5rem;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.064em;
}

.common-cta .web__text .big {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
	.common-cta {
		background-image: url("../img/common-cta-bg-sp.webp");
		padding-top: 53.33vw;
		margin-top: -16vw;
	}

	.common-cta .text {
		font-size: 4.27vw;
		line-height: 1.6;
		padding-left: 0;
		margin-top: 0;
	}

	.common-cta .contents {
		top: 0;
		width: 100%;
		max-width: 100%;
		padding: 13.87vw 4vw 6.93vw;
		margin-top: 13.33vw;
	}

	.common-cta .catch {
		top: -5.33vw;
	}

	.common-cta .catch span {
		max-width: 65.6vw;
		font-size: 4vw;
		line-height: 1.4;
		padding: 1.87vw 2.67vw;
	}

	.common-cta .catch span::before {
		width: 4.8vw;
		left: -4.53vw;
	}

	.common-cta .catch span::after {
		width: 4.8vw;
		right: -4.53vw;
	}

	.common-cta .btns {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.common-cta .btn:hover {
		opacity: 1;
	}

	.common-cta .btn a {
		border-radius: 1.33vw;
		border: 1px solid #254f38;
	}

	.common-cta .tel a {
		padding: 2.27vw 2.67vw 3.33vw 2.67vw;
	}

	.common-cta .tel__row {
		gap: 2.67vw;
	}

	.common-cta .tel__icon img {
		width: 6.4vw;
		height: 6.4vw;
	}

	.common-cta .tel__number {
		font-size: 6.4vw;
	}

	.common-cta .tel__hour {
		gap: 1.07vw;
		font-size: 2.67vw;
		margin-top: 2.13vw;
	}

	.common-cta .tel__hour .big {
		font-size: 2.67vw;
	}

	.common-cta .web__catch {
		top: 4.27vw;
		max-width: 45.33vw;
		font-size: 3.73vw;
		padding: 1.07vw 3.73vw 1.07vw 4.27vw;
	}

	.common-cta .web a {
		top: 0;
		gap: 1.33vw;
		padding: 1.4375rem 3.6875rem 0.625rem 1.6875rem;
		padding: 5.6vw 10.67vw 3.2vw 7.2vw;
	}

	.common-cta .web a::before {
		width: 1.87vw;
		height: 1.87vw;
		top: calc(50% + 1.07vw);
		right: 6.67vw;
	}

	.common-cta .web__icon {
		top: 0;
	}

	.common-cta .web__icon img {
		width: 6.4vw;
		height: 6.4vw;
	}

	.common-cta .web__text {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 1.6vw;
		font-size: 3.73vw;
		letter-spacing: 0.1em;
		line-height: 2.29;
	}

	.common-cta .web__text .big {
		font-size: 5.87vw;
		line-height: 1.2;
	}
}

.section-bg {
	position: relative;
}

.section-bg::before {
	content: "";
	position: absolute;
	width: 100%;
	height: calc(100% - 10vw);
	top: 10vw;
	left: 0;
	background-image: url("../img/section-bg.webp");
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -11;
}

#about {
	margin-top: -10vw;
	overflow: hidden;
}

#about .head-wrap {
	position: relative;
	-webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
	z-index: 2;
}

#about .head {
	font-family: "Noto Serif JP", serif;
	color: #fff;
	background: -webkit-linear-gradient(70deg, #2b8454 0%, #2b8454 40%, #12b174 80%, #12b174 100%);
	background: linear-gradient(20deg, #2b8454 0%, #2b8454 40%, #12b174 80%, #12b174 100%);
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
	clip-path: polygon(0 0, 100% 0, 100% 68%, 50% 100%, 0 68%);
	padding: 2.125rem 2.125rem 6.9375rem;
	text-align: center;
}

#about .head__sub-title {
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

#about .head__title {
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1.1904761905;
	letter-spacing: 0.05em;
	margin-top: 1.625rem;
}

#about .head__title span {
	position: relative;
	display: inline-block;
}

#about .head__title span::before {
	content: "";
	width: 0.4375rem;
	height: 0.4375rem;
	position: absolute;
	top: -0.75rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #fff;
	border-radius: 50%;
}

#about .body {
	padding: 4vw 0;
}

#about .item {
	position: relative;
	padding-top: 7.1875rem;
	padding-left: 4.0625rem;
	z-index: 1;
}

#about .item__contents {
	width: 100%;
	max-width: 52.5rem;
	background: #fff;
	-webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	padding: 3.5625rem 4.9375rem 3.9375rem 4.5625rem;
}

#about .item__title {
	font-family: "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.05em;
	color: #2c7d51;
}

#about .item__text {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.02em;
	margin-top: 1.5rem;
}

#about .item__text .accent {
	font-weight: 700;
	color: #2c7d51;
}

#about .item__image {
	position: absolute;
	width: 46.125rem;
	height: auto;
	top: 0;
	right: 0;
	z-index: -1;
}

#about .item__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 738/520;
}

#about .item__badge {
	position: absolute;
	width: 14.9375rem;
	height: auto;
	bottom: -2.5rem;
	right: 4.375rem;
	z-index: 1;
}

#about .item__badge img {
	width: 100%;
	height: auto;
	-o-object-fit: contain;
	object-fit: contain;
	aspect-ratio: 1/1;
}

#about .item:not(:first-of-type) {
	margin-top: 5rem;
}

#about .item:nth-of-type(even) {
	padding-top: 8.1875rem;
}

#about .item:nth-of-type(even) .item__contents {
	margin-left: auto;
	margin-right: 4.375rem;
}

#about .item:nth-of-type(even) .item__contents {
	padding: 4.5rem 3.5rem 4.5rem 4.125rem;
}

#about .item:nth-of-type(even) .item__image {
	bottom: 0.9375rem;
	right: auto;
	left: 0;
}

@media screen and (min-width: 769px) and (max-width: 1340px) {
	#about .item {
		padding-top: 6.25rem;
		padding-left: 3.125rem;
	}

	#about .item__contents {
		max-width: 37.5rem;
		padding: 3.125rem;
	}

	#about .item__title {
		font-size: 1.875rem;
	}

	#about .item__text {
		font-size: 1rem;
	}

	#about .item:nth-of-type(even) {
		padding-top: 6.25rem;
	}

	#about .item:nth-of-type(even) .item__contents {
		margin-right: 3.125rem;
	}
}

#about .block {
	margin-top: 8.75rem;
}

#about .block__body {
	width: 100%;
	max-width: 1250px;
	margin-inline: auto;
	position: relative;
	background: #fff;
	border: 3px solid #2b8454;
	padding: 2rem 3.75rem 3.75rem;
}

#about .block__sub-image {
	position: absolute;
	width: 24.6875rem;
	top: -5.9375rem;
	right: -2.125rem;
}

#about .block__title {
	position: absolute;
	width: 100%;
	top: -1.875rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

#about .block__title span {
	position: relative;
	display: block;
	width: 100%;
	max-width: 35.3125rem;
	margin-inline: auto;
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.1875;
	letter-spacing: 0.05em;
	color: #fff;
	background: -webkit-gradient(linear, left top, right top, from(#2b8454), to(#12b174));
	background: -webkit-linear-gradient(left, #2b8454, #12b174);
	background: linear-gradient(to right, #2b8454, #12b174);
	padding: 0.625rem 0.625rem;
	text-align: center;
}

#about .block__title span::before {
	content: "";
	position: absolute;
	width: 0.75rem;
	height: 100%;
	top: 50%;
	left: -0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	background: #2b8454;
}

#about .block__title span::after {
	content: "";
	position: absolute;
	width: 0.75rem;
	height: 100%;
	top: 50%;
	right: -0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #12b174;
}

#about .block__images {
	position: relative;
	width: 100%;
	max-width: 53.75rem;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 1.875rem;
	z-index: 1;
}

#about .block__image img {
	width: 100%;
}

#about .block__texts {
	width: 100%;
	max-width: 65.625rem;
	margin-inline: auto;
	margin-top: 2.1875rem;
	text-align: center;
}

#about .block__sub-title {
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #333;
	padding-bottom: 0.5rem;
}

#about .lists {
	margin-top: 1.625rem;
}

#about .list {
	position: relative;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	padding-left: 2rem;
	text-align: left;
}

#about .list::before {
	content: "";
	position: absolute;
	width: 0.375rem;
	height: 0.375rem;
	top: 1rem;
	left: 0.8125rem;
	background: #333;
	border-radius: 50%;
}

@media screen and (max-width: 768px) {
	.section-bg::before {
		height: calc(100% - 10vw);
		top: 10vw;
		background-image: url("../img/section-bg-sp.webp");
	}

	#about {
		margin-top: -24vw;
	}

	#about .head {
		padding: 8vw 1.33vw 22.13vw;
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%);
		clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%);
	}

	#about .head__sub-title {
		position: relative;
		left: 1.33vw;
		font-size: 5vw;
		line-height: 1.8;
	}

	#about .head__title {
		font-size: 6.93vw;
		line-height: 1.5;
		margin-top: 5.87vw;
	}

	#about .head__title span::before {
		width: 1.33vw;
		height: 1.33vw;
		top: -1.33vw;
	}

	#about .body {
		padding: 11.2vw 0;
	}

	#about .item {
		padding-top: 53.33vw;
		padding-left: 0;
	}

	#about .item__contents {
		position: relative;
		left: -4vw;
		width: calc(100% + 4vw);
		max-width: calc(100% + 4vw);
		padding: 6.4vw 4vw;
	}

	#about .item__title {
		font-size: 5.87vw;
		line-height: 1.5;
	}

	#about .item__text {
		font-size: 4vw;
		line-height: 1.8;
		margin-top: 3.2vw;
	}

	#about .item__image {
		width: 86.93vw;
		right: -4vw;
	}

	#about .item__image img {
		aspect-ratio: 326/220;
	}

	#about .item__badge {
		width: 33.6vw;
		bottom: 0;
		top: 25.33vw;
		right: 0vw;
	}

	#about .item__badge img {
		width: 100%;
		height: auto;
		-o-object-fit: contain;
		object-fit: contain;
		aspect-ratio: 1/1;
	}

	#about .item:not(:first-of-type) {
		margin-top: 13.33vw;
	}

	#about .item:nth-of-type(even) {
		padding-top: 54.67vw;
	}

	#about .item:nth-of-type(even) .item__contents {
		margin-left: auto;
		margin-right: 4.375rem;
	}

	#about .item:nth-of-type(even) .item__contents {
		left: auto;
		right: 0;
		padding: 6.4vw 4vw;
	}

	#about .item:nth-of-type(even) .item__image {
		bottom: auto;
		top: 0;
		left: -4vw;
	}

	#about .block {
		padding-top: 22.13vw;
		margin-top: 0;
	}

	#about .block__body {
		max-width: calc(100% - 7.47vw);
		padding: 5.33vw 2.67vw 7.47vw;
	}

	#about .block__title {
		top: -7.2vw;
	}

	#about .block__title span {
		max-width: 77.33vw;
		font-size: 4.53vw;
		line-height: 1.22;
		padding: 2.67vw;
	}

	#about .block__title span::before {
		width: 2.67vw;
		left: -2.4vw;
	}

	#about .block__title span::after {
		width: 2.67vw;
		right: -2.4vw;
	}

	#about .block__images {
		max-width: 100%;
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	#about .block__image:nth-of-type(2) {
		margin-top: -4.27vw;
	}

	#about .block__texts {
		max-width: 100%;
		margin-top: 1.6vw;
	}

	#about .block__sub-title {
		font-size: 4.27vw;
		line-height: 1.8;
		padding-bottom: 1.6vw;
	}

	#about .lists {
		margin-top: 3.2vw;
	}

	#about .list {
		font-size: 3.73vw;
		line-height: 1.8;
		padding: 0 3.2vw 0 7.47vw;
	}

	#about .list::before {
		width: 1.07vw;
		height: 1.07vw;
		top: 2.93vw;
		left: 4vw;
	}
}

#access {
	background: #fff5eb;
	padding: 5.5vw 0 9.5vw;
}

#access .c-title__en {
	color: #f1ebe4;
}

#access .title-wrap {
	text-align: center;
}

#access .title {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.02em;
	border-bottom: 1px solid #254F38;
	padding-bottom: 0.625rem;
	margin-top: 1.75rem;
	text-align: center;
}

#access .body {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 2.3125rem;
	margin-top: 2.625rem;
}

#access .image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 34.375rem;
	flex: 0 0 34.375rem;
}

#access .contents {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-top: 0.1875rem;
}

#access .item:not(:first-of-type) {
	margin-top: 1.125rem;
}

#access .item__row {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.625rem;
}

#access .item__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#access .item__icon img {
	width: 2.5rem;
	height: 2.5rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#access .item__text {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.1111111111em;
}

#access .item__btn {
	padding-left: 2.5rem;
	margin-top: 0.4375rem;
}

#access .item__btn a {
	width: 100%;
	max-width: 21.875rem;
	gap: 0.25rem;
	background: #fff;
	border: 2px solid #254F38;
	border-radius: 6.25rem;
	padding: 0.6875rem 0.9375rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#access .item__btn a:hover {
	background: #254F38;
}

#access .item__btn-text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.125em;
	color: #254F38;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#access .item__btn a:hover .item__btn-text {
	color: #fff;
}

#access .item__btn-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#access .item__btn-icon img {
	width: 0.9375rem;
	height: 0.9375rem;
	-o-object-fit: contain;
	object-fit: contain;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#access .item__btn a:hover .item__btn-icon img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

#access .banner {
	margin-top: 1.0625rem;
}

#access .banner a {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#access .banner a:hover {
	opacity: 0.8;
}

#access .gallery {
	margin-top: 4.5rem;
}

#access .gallery__title {
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #d7964a;
	text-align: center;
}

#access .swiper-container {
	position: relative;
	margin-top: 2.625rem;
}

#access .swiper-slide {
	height: auto;
}

#access .unit {
	height: 100%;
}

#access .unit__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 443/248;
}

#access .unit__title {
	margin-top: 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.02em;
}

#access .pagination-bullets,
#access .swiper-pagination-bullets.swiper-pagination-horizontal,
#access .swiper-pagination-custom,
.swiper-pagination-fraction {
	left: 0.5rem;
	bottom: -3.75rem;
}

#access .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
#access .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 0.375rem;
}

#access .swiper-pagination-bullet {
	width: 0.625rem;
	height: 0.625rem;
	background: #d8d8d8;
	opacity: 1;
}

#access .swiper-pagination-bullet-active {
	background: #254F38;
}

#access .swiper-button-prev,
#access .swiper-button-next {
	width: 3.125rem;
	height: 3.125rem;
	position: absolute;
	top: auto;
	bottom: -4.6875rem;
	background: #fff;
	border-radius: 50%;
	z-index: 11;
}

#access .swiper-button-prev {
	left: calc(50% - 5.125rem);
}

#access .swiper-button-next {
	right: calc(50% - 6.125rem);
}

#access .swiper-button-prev,
#access .swiper-button-next {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#access .swiper-button-prev:hover,
#access .swiper-button-next:hover {
	opacity: 0.5;
}

#access .swiper-button-prev:hover {
	left: calc(50% - 5.625rem);
}

#access .swiper-button-next:hover {
	right: calc(50% - 6.625rem);
}

#access .swiper-button-prev::after,
#access .swiper-button-next::after {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

#access .swiper-button-prev::after {
	background-image: url("../img/swiper-button-prev.svg");
}

#access .swiper-button-next::after {
	background-image: url("../img/swiper-button-next.svg");
}

@media screen and (max-width: 768px) {
	#access {
		padding: 10.67vw 0 33.33vw;
	}

	#access .c-title__ja {
		font-size: 6.4vw;
		line-height: 1.5;
	}

	#access .title {
		font-size: 4.27vw;
		line-height: 1.19;
		padding-bottom: 2.13vw;
		margin-top: 5.07vw;
	}

	#access .body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 4.27vw;
		margin-top: 3.2vw;
	}

	#access .image {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	#access .contents {
		padding-top: 0;
	}

	#access .item:not(:first-of-type) {
		margin-top: 3.73vw;
	}

	#access .item__row {
		gap: 2.67vw;
	}

	#access .item__icon img {
		width: 10.67vw;
		height: 10.67vw;
	}

	#access .item__text {
		font-size: 4.27vw;
		line-height: 1.5;
		letter-spacing: 0.08em;
	}

	#access .item__btn {
		padding-left: 0;
		margin-top: 4.27vw;
	}

	#access .item__btn a {
		max-width: 41.87vw;
		gap: 1.6vw;
		border: 1px solid #adafb5;
		border-radius: 266.4vw;
		padding: 2.93vw 2.67vw;
	}

	#access .item__btn a:hover {
		background: #fff;
	}

	#access .item__btn-text {
		font-size: 4.27vw;
		line-height: 1;
		letter-spacing: 0.06em;
		color: #333;
	}

	#access .item__btn a:hover .item__btn-text {
		color: #333;
	}

	#access .item__btn-icon img {
		width: 4.8vw;
		height: 4.8vw;
	}

	#access .item__btn a:hover .item__btn-icon img {
		-webkit-filter: none;
		filter: none;
	}

	#access .banner {
		margin-top: 4.8vw;
	}

	#access .banner a:hover {
		opacity: 1;
	}

	#access .banner img {
		width: 100%;
		height: auto;
		-o-object-fit: cover;
		object-fit: cover;
		aspect-ratio: 345/108;
	}

	#access .l-inner-l {
		padding: 0;
	}

	#access .gallery {
		margin-top: 8vw;
	}

	#access .gallery__title {
		font-size: 5.33vw;
		line-height: 1.5;
	}

	#access .swiper-container {
		margin-top: 11.2vw;
	}

	#access .unit__image img {
		width: 100%;
		height: auto;
		-o-object-fit: cover;
		object-fit: cover;
		aspect-ratio: 443/248;
	}

	#access .unit__title {
		font-size: 4.27vw;
		margin-top: 1.6vw;
	}

	#access .pagination-bullets,
	#access .swiper-pagination-bullets.swiper-pagination-horizontal,
	#access .swiper-pagination-custom,
	.swiper-pagination-fraction {
		left: 0;
		bottom: -16.53vw;
	}

	#access .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
	#access .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 1.6vw;
	}

	#access .swiper-pagination-bullet {
		width: 2.67vw;
		height: 2.67vw;
	}

	#access .swiper-button-prev,
	#access .swiper-button-next {
		width: 13.33vw;
		height: 13.33vw;
		bottom: -20vw;
	}

	#access .swiper-button-prev {
		left: calc(50% - 25.07vw);
	}

	#access .swiper-button-next {
		right: calc(50% - 25.07vw);
	}

	#access .swiper-button-prev:hover,
	#access .swiper-button-next:hover {
		opacity: 1;
	}

	#access .swiper-button-prev:hover {
		left: calc(50% - 25.07vw);
	}

	#access .swiper-button-next:hover {
		right: calc(50% - 25.07vw);
	}
}

#after-care {
	padding: 4vw 0 4.7vw;
}

#after-care .c-title__ja {
	margin-top: 0.5rem;
}

#after-care .c-title__ja .adjustment {
	display: inline-block;
	margin-top: 0.3125rem;
}

#after-care .body {
	width: 100%;
	max-width: 53.125rem;
	margin-inline: auto;
	margin-top: 2.8125rem;
}

#after-care .title {
	font-family: "Noto Serif JP", serif;
	font-size: 2.125rem;
	font-weight: 600;
	line-height: 1.2058823529;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #333;
	padding-bottom: 0.8125rem;
}

#after-care .title .accent {
	color: #2c7d51;
}

#after-care .image {
	margin-top: 2.125rem;
}

#after-care .text {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.02em;
	margin-top: 2.125rem;
}

#after-care .text .accent {
	font-weight: 700;
	color: #2c7d51;
}

@media screen and (max-width: 768px) {
	#after-care {
		padding: 5.87vw 0 14.93vw;
	}

	#after-care .c-title__catch {
		position: relative;
		left: -1.33vw;
		margin-top: -8vw;
	}

	#after-care .c-title__ja {
		font-size: 6.4vw;
		margin-top: 1.33vw;
	}

	#after-care .c-title__ja .adjustment {
		margin-top: 0;
	}

	#after-care .body {
		max-width: 100%;
		margin-top: 8vw;
	}

	#after-care .title {
		font-size: 5.87vw;
		line-height: 1.5;
		padding-bottom: 2.67vw;
		text-align: center;
	}

	#after-care .title .accent {
		font-size: 6.4vw;
		line-height: 1.5;
	}

	#after-care .image {
		margin-top: 6.4vw;
	}

	#after-care .image img {
		width: 100%;
		height: auto;
		-o-object-fit: cover;
		object-fit: cover;
		aspect-ratio: 344/162;
	}

	#after-care .text {
		font-size: 4vw;
		line-height: 1.8;
		margin-top: 6.4vw;
	}
}

#case {
	background-image: url("../img/case-bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 21.32vw 0 8.12vw;
	margin-top: -11.82vw;
}

#case .inner {
	max-width: 1280px;
	padding: 0 5.3125rem;
}

#case .swiper-container {
	position: relative;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
	margin-top: 2.1875rem;
}

#case .swiper-slide {
	height: auto;
}

#case .card {
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 0.75rem;
	height: 100%;
	background: #fff;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
	padding: 1.5rem 1.125rem;
}

#case .card__title {
	width: 100%;
	max-width: 18.0625rem;
	margin-inline: auto;
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
	background: -webkit-linear-gradient(316deg, #2b8454 52.38%, #12b174 89.69%);
	background: linear-gradient(134deg, #2b8454 52.38%, #12b174 89.69%);
	padding: 0.25rem 0.625rem;
	text-align: center;
}

#case .items {
	position: relative;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.75rem;
	padding: 0 0.625rem;
	margin-top: 0.625rem;
}

#case .items::before {
	content: "";
	position: absolute;
	width: 0.5625rem;
	height: 0.5625rem;
	top: 50%;
	left: calc(50% - 0.125rem);
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	border-right: 2px solid #254F38;
	border-bottom: 2px solid #254F38;
	z-index: 1;
}

#case .item {
	position: relative;
}

#case .item__label {
	position: absolute;
	top: 6px;
	left: 6px;
	font-family: "Sorts Mill Goudy", serif;
	font-size: 0.79375rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
	color: #fff;
}

#case .item__image img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	-o-object-fit: cover;
	object-fit: cover;
}

#case .contents {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.625rem;
}

#case .catch {
	-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;
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #254F38;
	text-align: center;
}

#case .lists {
	width: 100%;
}

#case .list {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0.375rem;
}

#case .list:not(:first-of-type) {
	margin-top: 0.5rem;
}

#case .list__title {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: inline-block;
	min-width: 4.6875rem;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	border: 1px solid #d8d8d8;
	padding: 0.0625rem 0.4375rem;
	text-align: center;
}

#case .list__text {
	position: relative;
	top: 0.0625rem;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0em;
}

#case .box {
	background: #f7f7f7;
	padding: 0.5rem 0.75rem;
}

#case .box__title {
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0em;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #d8d8d8;
}

#case .box__text {
	font-family: "Noto Serif JP", serif;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0em;
	margin-top: 0.5rem;
}

#case .pagination-bullets,
#case .swiper-pagination-bullets.swiper-pagination-horizontal,
#case .swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: -3.125rem;
}

#case .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
#case .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 0.375rem;
}

#case .swiper-pagination-bullet {
	width: 0.625rem;
	height: 0.625rem;
	background: #d8d8d8;
	opacity: 1;
}

#case .swiper-pagination-bullet-active {
	background: #254F38;
}

#case .swiper-button-prev,
#case .swiper-button-next {
	width: 3.125rem;
	height: 3.125rem;
	position: absolute;
	top: calc(50% + 1.5625rem);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #fff;
	border-radius: 50%;
	z-index: 11;
}

#case .swiper-button-prev {
	left: -4rem;
}

#case .swiper-button-next {
	right: -4rem;
}

#case .swiper-button-prev,
#case .swiper-button-next {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#case .swiper-button-prev:hover,
#case .swiper-button-next:hover {
	opacity: 0.5;
}

#case .swiper-button-prev:hover {
	left: -4.5rem;
}

#case .swiper-button-next:hover {
	right: -4.5rem;
}

#case .swiper-button-prev::after,
#case .swiper-button-next::after {
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

#case .swiper-button-prev::after {
	background-image: url("../img/swiper-button-prev.svg");
}

#case .swiper-button-next::after {
	background-image: url("../img/swiper-button-next.svg");
}

@media screen and (max-width: 768px) {
	#case {
		background-image: url("../img/case-bg-sp.webp");
		padding: 10.67vw 0 50.67vw;
		margin-top: 0;
	}

	#case .inner {
		max-width: 100%;
		padding: 0 4vw;
	}

	#case .swiper-container {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		margin-top: 5.33vw;
	}

	#case .case-swiper {
		padding-left: 4vw;
	}

	#case .card {
		gap: 4vw;
		padding: 6.4vw 4.8vw 2.67vw;
	}

	#case .card__title {
		max-width: 70.4vw;
		font-size: 5.33vw;
		padding: 1.07vw 2.67vw;
	}

	#case .items {
		gap: 7.47vw;
		padding: 0;
		margin-top: 2.67vw;
	}

	#case .items::before {
		width: 2.4vw;
		height: 2.4vw;
		left: calc(50% - 0.53vw);
	}

	#case .item__label {
		top: 2.13vw;
		left: 1.6vw;
		font-size: 3.73vw;
	}

	#case .contents {
		gap: 3.2vw;
	}

	#case .catch {
		font-size: 4.27vw;
	}

	#case .list {
		gap: 1.6vw;
	}

	#case .list:not(:first-of-type) {
		margin-top: 2.13vw;
	}

	#case .list__title {
		min-width: 16vw;
		font-size: 3.2vw;
		padding: 0 1.07vw 0.53vw;
	}

	#case .list__text {
		top: 0;
		font-size: 3.73vw;
	}

	#case .box {
		padding: 0.5rem 0.75rem;
	}

	#case .box__title {
		font-size: 3.73vw;
		padding-bottom: 2.13vw;
	}

	#case .box__text {
		font-size: 4vw;
		margin-top: 2.13vw;
	}

	#case .pagination-bullets,
	#case .swiper-pagination-bullets.swiper-pagination-horizontal,
	#case .swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: -17.33vw;
	}

	#case .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
	#case .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 1.6vw;
	}

	#case .swiper-pagination-bullet {
		width: 2.67vw;
		height: 2.67vw;
	}

	#case .swiper-button-prev,
	#case .swiper-button-next {
		width: 13.33vw;
		height: 13.33vw;
		top: auto;
		bottom: -28vw;
	}

	#case .swiper-button-prev {
		left: calc(50% - 25.07vw);
	}

	#case .swiper-button-next {
		right: calc(50% - 25.07vw);
	}

	#case .swiper-button-prev:hover,
	#case .swiper-button-next:hover {
		opacity: 1;
	}

	#case .swiper-button-prev:hover {
		left: calc(50% - 25.07vw);
	}

	#case .swiper-button-next:hover {
		right: calc(50% - 25.07vw);
	}
}

#faq {
	padding: 7.4vw 0 6.5vw;
}

#faq .c-title__ja {
	margin-top: -2.1875rem;
}

#faq .items {
	margin-top: 2.8125rem;
}

#faq .item {
	border-bottom: 1px solid #d8d8d8;
	cursor: pointer;
}

#faq .item__question {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 1.6875rem;
	padding: 2.0625rem 1.75rem 2.0625rem 1.5625rem;
}

#faq .item__row {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1.1875rem;
}

#faq .item__en {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	font-family: "Sorts Mill Goudy", serif;
	font-size: 1.5rem;
	font-weight: 400;
	line-height: 1.3333333333;
	letter-spacing: 0.01em;
	color: #2c7d51;
}

#faq .item__title {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	letter-spacing: 0.02em;
}

#faq .item__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #2c7d51;
	border-radius: 50%;
}

#faq .item__icon::before,
#faq .item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #2c7d51;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#faq .item__icon::before {
	width: 1px;
	height: 0.6875rem;
}

#faq .item__icon::after {
	width: 0.6875rem;
	height: 1px;
}

#faq .item.is-open .item__icon::before {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}

#faq .item__answer {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#faq .item__text {
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.02em;
	padding: 0.3125rem 5rem 2.5rem 4.125rem;
}

#faq .box {
	background: #fff5eb;
	border: 1px solid #d8d8d8;
	padding: 1.875rem 4.5rem;
	margin-top: 4.375rem;
}

#faq .box__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
}

#faq .box__lists {
	margin-top: 1.8125rem;
}

#faq .box__list {
	position: relative;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.02em;
	padding-left: 1.4375rem;
}

#faq .box__list::before {
	content: "";
	width: 0.25rem;
	height: 0.25rem;
	position: absolute;
	top: 0.875rem;
	left: 0.5rem;
	background: #333;
	border-radius: 50%;
}

@media screen and (max-width: 768px) {
	#faq {
		padding: 12.8vw 0 10.13vw;
		overflow: hidden;
	}

	#faq .c-title__ja {
		margin-top: -9.33vw;
	}

	#faq .items {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		margin-top: 3.2vw;
	}

	#faq .item__question {
		gap: 5.33vw;
		padding: 6.13vw 4vw 6.13vw 5.33vw;
	}

	#faq .item__row {
		gap: 5.07vw;
	}

	#faq .item__en {
		font-size: 6.4vw;
	}

	#faq .item__title {
		font-size: 4.27vw;
	}

	#faq .item__icon {
		width: 6.4vw;
		height: 6.4vw;
	}

	#faq .item__icon::before {
		height: 2.93vw;
	}

	#faq .item__icon::after {
		width: 2.93vw;
	}

	#faq .item__text {
		font-size: 4vw;
		padding: 1.33vw 4vw 6.67vw;
		margin-top: -1.33vw;
	}

	#faq .box {
		padding: 8.53vw 4vw 8vw;
		margin-top: 12vw;
	}

	#faq .box__title {
		font-size: 4.27vw;
		line-height: 1.8;
	}

	#faq .box__lists {
		margin-top: 7.73vw;
	}

	#faq .box__list {
		font-size: 3.73vw;
		line-height: 1.8;
		padding-left: 5.33vw;
	}

	#faq .box__list::before {
		width: 1.07vw;
		height: 1.07vw;
		top: 3.2vw;
		left: 2.13vw;
	}
}

#flow {
	padding: 6vw 0 14.2vw;
}

#flow .c-title__ja {
	margin-top: -2.5rem;
}

#flow .items {
	margin-top: 2.8125rem;
}

#flow .item {
	position: relative;
	gap: 3.125rem;
}

#flow .item:not(:first-of-type) {
	margin-top: 5rem;
}

#flow .item::before {
	content: "";
	width: 1.25rem;
	height: 1.25rem;
	position: absolute;
	bottom: -3.625rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #d8d8d8;
	-webkit-clip-path: polygon(0 0, 50% 80%, 100% 0);
	clip-path: polygon(0 0, 50% 80%, 100% 0);
}

#flow .item:last-of-type::before {
	display: none;
}

#flow .item__image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14.375rem;
	flex: 0 0 14.375rem;
}

#flow .item__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 230/190;
}

#flow .item__contents {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#flow .item__number {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.75;
	letter-spacing: 0.1em;
	background: var(--gr, linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#flow .item__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.1666666667;
	letter-spacing: 0.02em;
	color: #2c7d51;
	margin-top: 0.625rem;
}

#flow .item__text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.02em;
	margin-top: 0.625rem;
}

#flow .item__text .accent {
	color: #b01414;
}

@media screen and (max-width: 768px) {
	#flow {
		padding: 17.07vw 0 29.33vw;
	}

	#flow .c-title__ja {
		margin-top: -10.67vw;
	}

	#flow .items {
		margin-top: 6.4vw;
	}

	#flow .item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 3.2vw;
	}

	#flow .item:not(:first-of-type) {
		margin-top: 19.2vw;
	}

	#flow .item::before {
		width: 5.33vw;
		height: 5.33vw;
		bottom: -14.67vw;
	}

	#flow .item__image {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	#flow .item__image img {
		aspect-ratio: 345/190;
	}

	#flow .item__number {
		font-size: 4.27vw;
	}

	#flow .item__title {
		font-size: 5.87vw;
		line-height: 1.27;
		margin-top: 0;
	}

	#flow .item__text {
		font-size: 4vw;
		line-height: 1.5;
		margin-top: 2.67vw;
	}
}

#fv {
	position: relative;
	z-index: 1;
}

#fv .body {
	position: relative;
	height: auto;
	padding: 0 0 2.5vw;
}

#fv .bg-image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	z-index: -1;
}

#fv .bg-image img,
#fv .bg-image picture {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

#fv .title-wrap {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 2.1875rem;
	padding: 6.25vw 0 0;
	padding-top: calc(var(--header-height, 6.875rem) + 6.25vw);
}

#fv .sub-title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.25em;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	padding-top: 5.35vw;
}

#fv .sub-title .border {
	position: relative;
	display: inline-block;
}

#fv .sub-title .border::before {
	content: "";
	width: 2px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -2px;
	background: #c7a57d;
}

#fv .main-title {
	font-family: "Noto Serif JP", serif;
	font-size: 3.125rem;
	font-weight: 600;
	line-height: 1.36;
	letter-spacing: 0.106em;
	color: #2c7d51;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#fv .main-title .small {
	font-size: 2.75rem;
	font-weight: 600;
	line-height: 1.5454545455;
	letter-spacing: 0.0909090909em;
}

#fv .main-title .gradation {
	background: -webkit-linear-gradient(49deg, #2b8454 34.75%, #12b174 68.01%);
	background: linear-gradient(41deg, #2b8454 34.75%, #12b174 68.01%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#fv .box {
	color: #fff;
	text-shadow: 0 0 9.6px rgba(0, 0, 0, 0.41), 0 0 4px rgba(0, 0, 0, 0.84);
	padding-left: 1.375rem;
	margin-top: -2.5rem;
}

#fv .company {
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0em;
}

#fv .name {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.5625rem;
	font-family: "Noto Serif JP", serif;
	margin-top: 0.375rem;
}

#fv .name__title {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0em;
}

#fv .name__text {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0em;
}

#fv .scroll {
	position: absolute;
	width: 1.875rem;
	bottom: -3.125rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

#fv .scroll a {
	display: block;
}

#fv .scroll__arrow img {
	margin-inline: auto;
}

@media screen and (max-width: 768px) {
	#fv .body {
		padding: 0 0 22.67vw;
		margin-top: 84px;
	}

	#fv .title-wrap {
		gap: 0;
		padding: 19.47vw 0 0;
	}

	#fv .main-title {
		position: relative;
		left: 0.53vw;
		font-size: 6.4vw;
		letter-spacing: 0.18em;
	}

	#fv .main-title .small {
		display: inline-block;
		font-size: 4.8vw;
		letter-spacing: 0.3em;
		padding-left: 1.33vw;
	}

	#fv .box {
		padding-left: 0;
		margin-top: 9.87vw;
	}

	#fv .company {
		font-size: 2.67vw;
		line-height: 1.5;
	}

	#fv .name {
		gap: 1.07vw;
		font-family: "Noto Serif JP", serif;
		margin-top: 0.71vw;
	}

	#fv .name__title {
		font-size: 2.67vw;
	}

	#fv .name__text {
		font-size: 3.2vw;
	}
}

#implant {
	background-image: url("../img/implant-bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5.4vw 0 13vw;
}

#implant .title {
	font-family: "Noto Serif JP", serif;
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.05em;
	background: var(--Linear, linear-gradient(41deg, #2b8454 34.75%, #12b174 68.01%));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

#implant .title .border {
	display: inline-block;
	font-size: 2.875rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	border: 1px solid #2b8454;
	padding: 0.6875rem 0.375rem;
	margin-right: 0.5625rem;
}

#implant .title .big {
	font-size: 3.25rem;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

#implant .contents {
	position: relative;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 3.125rem;
	width: 100%;
	max-width: 71.875rem;
	margin-inline: auto;
	margin-top: 3.125rem;
}

#implant .image {
	position: absolute;
	width: 42rem;
	height: 42rem;
	top: calc(50% + 0.625rem);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#implant .image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 1/1;
}

#implant .item {
	position: relative;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

#implant .item__body {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2.1;
	letter-spacing: 0.05em;
	background: #fff;
	-webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
	padding: 0.90625rem 2.0625rem;
}

#implant .item__body .border {
	display: inline-block;
	line-height: 1;
	border-bottom: 1px solid #333;
	padding-bottom: 0.3125rem;
}

#implant .item__body .accent {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	background: -webkit-linear-gradient(340deg, #2b8454 24.7%, #12b174 75.5%);
	background: linear-gradient(110deg, #2b8454 24.7%, #12b174 75.5%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#implant .items01 {
	padding-left: 1.5625rem;
}

#implant .items01 .item:not(:first-of-type) {
	margin-top: 3.3125rem;
}

#implant .items01 .item:nth-of-type(1),
#implant .items01 .item:nth-of-type(3) {
	padding-left: 1.875rem;
}

#implant .items01 .item:nth-of-type(4) {
	margin-top: 2.5625rem;
}

#implant .items02 {
	margin-top: 2.6875rem;
}

#implant .items02 .item {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#implant .items02 .item:not(:first-of-type) {
	margin-top: 4.4375rem;
}

#implant .items02 .item:nth-of-type(2) {
	padding-right: 1.25rem;
}

#implant .items02 .item:nth-of-type(3) {
	margin-top: 4.6875rem;
}

#implant .catch {
	font-family: "Noto Serif JP", serif;
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	background: -webkit-linear-gradient(88deg, #2b8454 16.93%, #12b174 70.81%);
	background: linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: 7.5rem;
	text-align: center;
}

#implant .catch .accent {
	font-size: 3.25rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #d7964a;
	-webkit-text-fill-color: #d7964a;
}

@media screen and (max-width: 768px) {
	#implant {
		background-image: url("../img/implant-bg-sp.webp");
		padding: 13.87vw 0 26.13vw;
		overflow: hidden;
	}

	#implant .title {
		font-size: 6.93vw;
		line-height: 2.2;
	}

	#implant .title .border {
		font-size: 8.53vw;
		line-height: 1;
		padding: 1.87vw 1.6vw 2.4vw;
		margin-right: 1.87vw;
	}

	#implant .title .big {
		font-size: 8.53vw;
		line-height: 1.6;
	}

	#implant .contents {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		margin-top: 12vw;
		display: block;
	}

	#implant .image {
		position: static;
		width: 100%;
		max-width: 95.47vw;
		margin-inline: auto;
		height: auto;
		-webkit-transform: none;
		transform: none;
	}

	#implant .image img {
		-o-object-fit: contain;
		object-fit: contain;
	}

	#implant .item__body {
		font-size: 3.73vw;
		line-height: 1.9;
		padding: 1.87vw 9.07vw;
	}

	#implant .item__body .border {
		padding-inline: 0.53vw;
		padding-bottom: 1.33vw;
	}

	#implant .item__body .accent {
		font-size: 4.8vw;
		line-height: 1.9;
	}

	#implant .items {
		margin-top: -20vw;
	}

	#implant .item:not(:first-of-type) {
		margin-top: 2.67vw;
	}

	#implant .item:nth-of-type(even) {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	#implant .catch {
		font-size: 7.47vw;
		line-height: 1.6;
		padding-left: 2.67vw;
		margin-top: 10.67vw;
	}

	#implant .catch .accent {
		font-size: 9.07vw;
		line-height: 1.6;
	}
}

#options {
	position: relative;
	z-index: 1;
}

#options .head {
	position: relative;
	background: #fff;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
	z-index: 1;
}

#options .head__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 1246/346;
}

#options .head__body {
	gap: 1.875rem;
	padding: 2.5rem 4.5625rem 3.75rem 4.75rem;
}

#options .head__title {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 27.625rem;
	flex: 0 0 27.625rem;
}

#options .head__sub-title {
	position: relative;
	display: block;
	left: -0.3125rem;
	width: 100%;
	max-width: 25.375rem;
	margin-inline: auto;
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	color: #fff;
	background: #2b8454;
	padding: 1.03125rem 0.625rem;
	text-align: center;
}

#options .head__sub-title span::before {
	content: "";
	position: absolute;
	width: 0.75rem;
	height: 100%;
	top: 50%;
	left: -0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	background: #2b8454;
}

#options .head__sub-title span::after {
	content: "";
	position: absolute;
	width: 0.75rem;
	height: 100%;
	top: 50%;
	right: -0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #2b8454;
}

#options .head__main-title {
	font-family: "Noto Serif JP", serif;
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	background: -webkit-linear-gradient(88deg, #2b8454 16.93%, #12b174 70.81%);
	background: linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-top: 1.5rem;
}

#options .head__text {
	position: relative;
	top: 0.3125rem;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.02em;
}

#options .body {
	position: relative;
	background-image: url("../img/options-bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 25vw 0 18.2vw;
	margin-top: -19.7vw;
}

#options .block:not(:first-of-type) {
	margin-top: 4.375rem;
}

#options .block__en {
	font-family: "Sorts Mill Goudy", serif;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
	background: -webkit-linear-gradient(88deg, #2b8454 16.93%, #12b174 70.81%);
	background: linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#options .block__en .number {
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	padding-left: 0.1875rem;
}

#options .block__ja {
	font-family: "Noto Serif JP", serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	margin-top: 0.75rem;
}

#options .block__ja .accent {
	position: relative;
	top: 0.3125rem;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 0.8888888889;
	letter-spacing: 0.05em;
	background: #fffee9;
	padding: 0.625rem 0.75rem 0.8125rem 1.125rem;
}

#options .block__ja .small {
	font-size: 1.625rem;
	font-weight: 500;
	line-height: 1.1923076923;
	letter-spacing: 0.05em;
}

#options .block__row {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 0.1875rem;
}

#options .items {
	display: grid;
	gap: 1.3125rem;
	margin-top: 2.1875rem;
}

#options .items--row3 {
	grid-template-columns: repeat(3, 1fr);
	padding-right: 3.5rem;
}

#options .items--row1 {
	grid-template-columns: 1fr;
}

#options .item {
	background: #fff;
	-webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
	padding: 1.125rem 1.0625rem;
}

#options .item__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 300/160;
}

#options .item__contents {
	margin-top: 1rem;
}

#options .item__title {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.05em;
	text-align: center;
}

#options .item__sub-title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #2c7d51;
	margin-top: 1.25rem;
}

#options .item__text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.02em;
	margin-top: 0.625rem;
}

#options .block__items {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1.3125rem;
}

#options .block__items .items {
	margin-top: 0.9375rem;
}

#options .block__items .item {
	width: 100%;
	max-width: 31rem;
	padding: 1.125rem 1.0625rem 2.8125rem;
}

#options .block__items .block__ja {
	line-height: 1.5;
}

#options .block__items .item__image img {
	aspect-ratio: 462/160;
}

@media screen and (max-width: 768px) {
	#options {
		background-image: url("../img/options-bg-sp.webp");
		background-repeat: no-repeat;
		background-size: cover;
		padding: 0 0 37.6vw;
	}

	#options .inner {
		padding: 0;
	}

	#options .head {
		background: transparent;
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	#options .head__image {
		position: relative;
		z-index: 1;
	}

	#options .head__image img {
		aspect-ratio: 375/194;
	}

	#options .head__body {
		position: relative;
		display: block;
		width: calc(100% - 8vw);
		margin-inline: auto;
		background: #fff;
		padding: 23.47vw 4vw 7.47vw;
		margin-top: -13.33vw;
	}

	#options .head__sub-title {
		position: absolute;
		top: 9.33vw;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		max-width: 73.6vw;
		font-size: 4.27vw;
		line-height: 1.18;
		padding: 2.67vw;
		z-index: 1;
	}

	#options .head__sub-title span::before {
		width: 3.73vw;
		left: -3.47vw;
	}

	#options .head__sub-title span::after {
		width: 3.73vw;
		right: -3.47vw;
	}

	#options .head__main-title {
		font-size: 6.93vw;
		line-height: 1.19;
		margin-top: 0;
		text-align: center;
	}

	#options .head__text {
		top: 0;
		font-size: 4.27vw;
		line-height: 1.5;
		margin-top: 3.2vw;
	}

	#options .body {
		background-image: none;
		padding: 0;
		margin-top: 18.67vw;
	}

	#options .block:not(:first-of-type) {
		margin-top: 34.67vw;
	}

	#options .block__en {
		position: relative;
		left: -1.33vw;
		font-size: 6.4vw;
		line-height: 1.45;
		text-align: center;
	}

	#options .block__en .number {
		padding-left: 1.07vw;
	}

	#options .block__ja {
		font-size: 5.33vw;
		line-height: 1.5;
		margin-top: 0;
		text-align: center;
	}

	#options .block__ja .accent {
		top: 1.33vw;
		font-size: 6.4vw;
		line-height: 1.21;
		padding: 2.27vw 1.6vw;
	}

	#options .block__ja .small {
		font-size: 5.33vw;
		line-height: 1.2;
	}

	#options .block__row {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 2.67vw 0.53vw;
		padding-right: 1.33vw;
	}

	#options .item {
		height: 100%;
		-webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
		padding: 4.8vw 4.53vw 7.47vw;
	}

	#options .item__contents {
		margin-top: 3.2vw;
	}

	#options .item__title {
		line-height: 1.19;
		font-size: 4.27vw;
	}

	#options .item__sub-title {
		font-size: 5.33vw;
		line-height: 1.5;
		margin-top: 3.2vw;
		text-align: center;
	}

	#options .item__text {
		font-size: 4vw;
		line-height: 1.8;
		margin-top: 2.13vw;
	}

	#options .block__items {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 14.93vw;
	}

	#options .block__items .items {
		margin-top: 4.27vw;
	}

	#options .block__items .item {
		max-width: calc(100% - 8vw);
		margin-inline: auto;
		padding: 4.8vw 4.53vw 7.47vw;
	}

	#options .block__items .block__ja {
		line-height: 1.5;
	}

	#options .block__items .block__ja .accent {
		font-size: 6.93vw;
		padding: 2vw 1.6vw;
	}

	#options .block__items .block__ja .adjustment {
		position: relative;
		top: 1.33vw;
	}

	#options .block__items .item__image img {
		aspect-ratio: 300/160;
	}

	#options .swiper-container {
		position: relative;
		padding-left: 4vw;
		margin-top: 6.67vw;
	}

	#options .swiper-slide {
		height: auto;
	}

	#options .pagination-bullets,
	#options .swiper-pagination-bullets.swiper-pagination-horizontal,
	#options .swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: -17.33vw;
	}

	#options .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
	#options .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
		margin: 0 1.6vw;
	}

	#options .swiper-pagination-bullet {
		width: 2.67vw;
		height: 2.67vw;
		background: #d8d8d8;
		opacity: 1;
	}

	#options .swiper-pagination-bullet-active {
		background: #254F38;
	}

	#options .swiper-button-prev,
	#options .swiper-button-next {
		position: absolute;
		width: 13.33vw;
		height: 13.33vw;
		top: auto;
		bottom: -20.53vw;
		background: #fff;
		border-radius: 50%;
		z-index: 11;
	}

	#options .swiper-button-prev {
		left: calc(50% - 25.07vw);
	}

	#options .swiper-button-next {
		right: calc(50% - 25.07vw);
	}

	#options .swiper-button-prev::after,
	#options .swiper-button-next::after {
		width: 100%;
		height: 100%;
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
	}

	#options .swiper-button-prev::after {
		background-image: url("../img/swiper-button-prev.svg");
	}

	#options .swiper-button-next::after {
		background-image: url("../img/swiper-button-next.svg");
	}

	#options .swiper-button-prev:hover {
		left: calc(50% - 25.07vw);
	}

	#options .swiper-button-next:hover {
		right: calc(50% - 25.07vw);
	}
}

#philosophy {
	position: relative;
	padding: 5.4vw 0 0;
	overflow: hidden;
}

#philosophy::before {
	content: "";
	width: 84.9%;
	height: 29.375rem;
	position: absolute;
	top: 60%;
	left: 0;
	-webkit-transform: translateY(-60%);
	transform: translateY(-60%);
	background: #fff5eb;
	aspect-ratio: 1223/470;
	z-index: -1;
}

#philosophy .body {
	width: 100%;
	max-width: 50.1875rem;
	margin-inline: auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 6.25rem;
}

#philosophy .contents {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 0.3125rem;
}

#philosophy .contents__image {
	position: absolute;
	width: 18.9375rem;
	height: auto;
	bottom: -1.6875rem;
	left: -21.25rem;
	z-index: -1;
}

#philosophy .contents__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 303/194;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

#philosophy .texts {
	margin-top: 1.5625rem;
}

#philosophy .text {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0em;
	margin-top: 1rem;
}

#philosophy .text:first-of-type {
	margin-top: 0;
}

#philosophy .box {
	margin-top: 3.25rem;
}

#philosophy .box__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0em;
}

#philosophy .group {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10.6875rem;
	flex: 0 0 10.6875rem;
	padding-bottom: 23.125rem;
}

#philosophy .head {
	position: relative;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 2.5rem;
	padding-left: 0.625rem;
}

#philosophy .head::before {
	content: "";
	width: 20.1875rem;
	height: 8.5625rem;
	position: absolute;
	bottom: -1.875rem;
	left: -2.5rem;
	background-image: url("../img/philosophy-en.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

#philosophy .head__title {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.2111111111em;
	padding-bottom: 5.8125rem;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#philosophy .head__title::before {
	content: "";
	width: 1px;
	height: 5rem;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #333;
}

#philosophy .head__sub-title {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 1.875rem;
}

#philosophy .head__sub-title span {
	font-family: "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.1805555556em;
	background: -webkit-linear-gradient(88deg, #2b8454 16.93%, #12b174 70.81%);
	background: linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}

#philosophy .group__image {
	position: absolute;
	width: 31.5625rem;
	height: auto;
	bottom: 0;
	left: -2.8125rem;
}

#philosophy .group__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 505/324;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
}

@media screen and (min-width: 769px) and (max-width: 1340px) {
	#philosophy .group {
		padding-bottom: 31.25rem;
	}

	#philosophy .contents__image {
		bottom: -15.625rem;
		left: 0;
	}

	#philosophy .group__image {
		bottom: 0;
		left: -13.75rem;
	}
}

@media screen and (max-width: 768px) {
	#philosophy {
		padding: 10.67vw 0 9.6vw;
	}

	#philosophy::before {
		width: 100%;
		height: 125.33vw;
		position: absolute;
		top: auto;
		left: 0;
		bottom: 38.4vw;
		-webkit-transform: none;
		transform: none;
		aspect-ratio: 375/470;
	}

	#philosophy .body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		max-width: 100%;
		gap: 0vw;
	}

	#philosophy .contents {
		padding-left: 0;
	}

	#philosophy .contents__image {
		width: 57.33vw;
		top: -61.33vw;
		bottom: auto;
		left: -4vw;
	}

	#philosophy .contents__image img {
		aspect-ratio: 215/209;
	}

	#philosophy .texts {
		margin-top: 4.27vw;
	}

	#philosophy .text {
		font-size: 4vw;
		line-height: 1.8;
		margin-top: 4.27vw;
	}

	#philosophy .box {
		margin-top: 6.4vw;
	}

	#philosophy .box__text {
		font-size: 4.27vw;
		line-height: 1.8;
	}

	#philosophy .group {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		width: 100%;
		padding-bottom: 0;
	}

	#philosophy .head {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		gap: 5.33vw;
		padding-right: 5.33vw;
	}

	#philosophy .head::before {
		width: 45.33vw;
		height: 22.4vw;
		bottom: -5.33vw;
		left: auto;
		right: -6.67vw;
	}

	#philosophy .head__title {
		font-size: 3.73vw;
		line-height: 1.21;
		padding-bottom: 10.67vw;
	}

	#philosophy .head__title::before {
		width: 1px;
		height: 8.53vw;
	}

	#philosophy .head__sub-title {
		gap: 3.2vw;
	}

	#philosophy .head__sub-title span {
		font-size: 6.4vw;
	}

	#philosophy .group__image {
		position: static;
		width: 74.67vw;
		margin-left: auto;
		margin-top: 8.53vw;
	}
}

#price {
	position: relative;
	padding: 4.7vw 0 7vw;
}

#price::before {
	content: "";
	width: 100%;
	height: 44.6%;
	position: absolute;
	top: 34%;
	left: 0;
	-webkit-transform: translateY(-34%);
	transform: translateY(-34%);
	background-image: url("../img/price-bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -1;
}

#price .c-title__ja {
	line-height: 1.4;
	margin-top: -3.125rem;
}

#price .c-title__ja .adjustment {
	padding-left: 2.1875rem;
}

#price .head {
	position: relative;
	border: 1px solid #2b8454;
	background: #edfef7;
	padding: 3.9375rem 3.125rem 4.875rem;
	margin-top: 4.875rem;
}

#price .head__title {
	position: absolute;
	width: 100%;
	top: -2rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

#price .head__title span {
	position: relative;
	display: block;
	width: 100%;
	max-width: 22.8125rem;
	margin-inline: auto;
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5833333333;
	letter-spacing: 0.05em;
	color: #fff;
	background: #2b8454;
	padding: 0.5625rem 0.625rem;
	text-align: center;
}

#price .head__title span::before {
	content: "";
	position: absolute;
	width: 0.75rem;
	height: 100%;
	top: 50%;
	left: -0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(100% 0, 0 50%, 100% 100%);
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	background: #2b8454;
}

#price .head__title span::after {
	content: "";
	position: absolute;
	width: 0.75rem;
	height: 100%;
	top: 50%;
	right: -0.6875rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background: #2b8454;
}

#price .head__title .accent {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #ebef77;
}

#price .head__image {
	position: absolute;
	width: 12.5rem;
	top: -3.125rem;
	right: 5.3125rem;
}

#price .head__box {
	text-align: center;
}

#price .head__sub-title {
	font-family: "Noto Serif JP", serif;
	font-size: 2.625rem;
	font-weight: 500;
	line-height: 1.1904761905;
	letter-spacing: 0.05em;
}

#price .head__price {
	font-family: "Noto Serif JP", serif;
	font-size: 2.46875rem;
	font-weight: 500;
	line-height: 1.1898734177;
	letter-spacing: 0.05em;
}

#price .head__price .big {
	position: relative;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.2083333333;
	letter-spacing: 0.05em;
}

#price .head__price .big::before {
	content: "（税込）";
	position: absolute;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	top: -0.75rem;
	left: -0.625rem;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.05em;
}

#price .head__price .accent {
	font-size: 5.25rem;
	font-weight: 500;
	line-height: 1.2023809524;
	letter-spacing: -0.03em;
	background: -webkit-linear-gradient(349deg, #f49d22 14.58%, #f77a05 50.97%);
	background: linear-gradient(101deg, #f49d22 14.58%, #f77a05 50.97%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#price .head__contents {
	width: 100%;
	max-width: 51.125rem;
	margin-inline: auto;
	margin-top: 1.5625rem;
}

#price .head__lists {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.1875rem;
}

#price .head__list {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.1875;
	letter-spacing: 0.05em;
	background: #fff;
	padding: 0.78125rem 0.5rem;
	text-align: center;
}

#price .head__list .accent {
	display: inline-block;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.05em;
	color: #2c7d51;
	padding-right: 0.1875rem;
}

#price .head__list--ls .accent {
	letter-spacing: -0.1em;
}

#price .head__text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.02em;
	margin-top: 1rem;
}

#price .head__catch {
	position: absolute;
	bottom: -2.625rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}

#price .head__catch-title {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #fff;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	text-align: center;
}

#price .head__catch-title::before {
	content: "";
	position: absolute;
	width: 31.25rem;
	height: 8.125rem;
	top: calc(50% + 0.625rem);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 132, 84, 0)), color-stop(3%, rgba(43, 132, 84, 0.1882352941)), color-stop(15%, rgba(18, 177, 116, 0.5647058824)), color-stop(35%, #12b174), to(#12b174));
	background: -webkit-linear-gradient(top, rgba(43, 132, 84, 0) 0%, rgba(43, 132, 84, 0.1882352941) 3%, rgba(18, 177, 116, 0.5647058824) 15%, #12b174 35%, #12b174 100%);
	background: linear-gradient(to bottom, rgba(43, 132, 84, 0) 0%, rgba(43, 132, 84, 0.1882352941) 3%, rgba(18, 177, 116, 0.5647058824) 15%, #12b174 35%, #12b174 100%);
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	z-index: -1;
}

#price .body {
	margin-top: 7.5rem;
}

#price .body__title {
	font-family: "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 500;
	line-height: 1.3888888889;
	letter-spacing: 0.05em;
	background: -webkit-linear-gradient(88deg, #2b8454 16.93%, #12b174 70.81%);
	background: linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}

#price .body__title .big {
	font-size: 2.625rem;
	font-weight: 500;
	line-height: 1.1904761905;
	letter-spacing: 0.05em;
}

#price .body__box {
	width: 100%;
	max-width: 25.875rem;
	margin-inline: auto;
	margin-top: 3.125rem;
	text-align: center;
}

#price .body__sub-title {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.1875;
	letter-spacing: 0.05em;
	color: #fff;
	background: #787878;
	padding: 0.5rem 0.875rem 0.5625rem;
}

#price .body__price {
	position: relative;
	left: -2.1875rem;
	font-family: "Noto Serif JP", serif;
	font-size: 2.46875rem;
	font-weight: 500;
	line-height: 1.1898734177;
	letter-spacing: 0.05em;
}

#price .body__price .big {
	position: relative;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.2083333333;
	letter-spacing: 0.05em;
}

#price .body__price .adjustment {
	position: relative;
	left: 0.875rem;
}

#price .body__price .big::before {
	content: "（税込）";
	position: absolute;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	top: 1.875rem;
	right: -4.375rem;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.05em;
}

#price .body__price .accent {
	font-size: 5.25rem;
	font-weight: 500;
	line-height: 1.2023809524;
	letter-spacing: -0.03em;
	background: -webkit-linear-gradient(349deg, #f49d22 14.58%, #f77a05 50.97%);
	background: linear-gradient(101deg, #f49d22 14.58%, #f77a05 50.97%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#price .body__text {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.05em;
	margin-top: 1.375rem;
	text-align: left;
}

#price .block {
	width: 100%;
	max-width: 51.25rem;
	margin-inline: auto;
	margin-top: 5.875rem;
}

#price .block__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 600;
	line-height: 1.2142857143;
	letter-spacing: 0.05em;
	color: #fff;
	background: #254f38;
	padding: 0.71875rem 1.25rem;
	text-align: center;
}

#price .items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 1.25rem;
}

#price .item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	gap: 0.75rem;
	background: #fff5eb;
	padding: 1.5rem 0.75rem 1.25rem;
}

#price .item__icon img {
	width: 3.5625rem;
	height: 3.5625rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#price .item__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.2142857143;
	letter-spacing: 0.05em;
	color: #2c7d51;
}

#price .item__texts {
	text-align: center;
}

#price .item__text {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.02em;
	margin-top: 0.25rem;
}

#price .box {
	border: 1px solid #333;
	padding: 2rem 4.375rem;
	margin-top: 4.375rem;
}

#price .box__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: center;
}

#price .box__text {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	margin-top: 1.8125rem;
}

#price .box__text a {
	word-break: break-all;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#price .box__text a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	#price {
		padding: 12vw 0 10.67vw;
		overflow: hidden;
	}

	#price::before {
		display: none;
	}

	#price .c-title__ja {
		font-size: 5.87vw;
		line-height: 1.4;
		margin-top: -8vw;
	}

	#price .c-title__ja .middle {
		display: inline-block;
		padding-right: 1.33vw;
		margin-top: 0.53vw;
		margin-left: 2.67vw;
	}

	#price .c-title__ja .adjustment {
		padding-left: 2.67vw;
	}

	#price .head {
		padding: 12.8vw 3.73vw 24.53vw;
		margin-top: 17.33vw;
	}

	#price .head__title {
		top: -6.53vw;
	}

	#price .head__title span {
		max-width: 81.07vw;
		font-size: 5.33vw;
		line-height: 1.2;
		padding: 0.5625rem 0.625rem;
	}

	#price .head__title span::before {
		width: 4vw;
		left: -3.73vw;
	}

	#price .head__title span::after {
		width: 4vw;
		right: -3.73vw;
	}

	#price .head__title .accent {
		font-size: 6.4vw;
		line-height: 1.2;
	}

	#price .head__image {
		width: 24vw;
		top: 2.67vw;
		right: -5.33vw;
	}

	#price .head__sub-title {
		font-size: 8.53vw;
		line-height: 1.19;
	}

	#price .head__price {
		font-size: 6.93vw;
		line-height: 1.19;
	}

	#price .head__price .big {
		font-size: 6.93vw;
		line-height: 1.19;
	}

	#price .head__price .big::before {
		top: -2.67vw;
		left: -1.33vw;
		font-size: 3.73vw;
		line-height: 1.21;
	}

	#price .head__price .accent {
		font-size: 14.93vw;
		line-height: 1.2;
	}

	#price .head__contents {
		max-width: 100%;
		margin-top: 5.6vw;
	}

	#price .head__lists {
		grid-template-columns: 1fr;
		gap: 1.6vw;
		padding: 0 4vw;
	}

	#price .head__list {
		font-size: 3.73vw;
		line-height: 1.21;
		padding: 1.6vw 2.13vw;
	}

	#price .head__list .accent {
		font-size: 4.27vw;
		line-height: 1.19;
		padding-right: 1.07vw;
	}

	#price .head__text {
		font-size: 3.73vw;
		line-height: 1.8;
		margin-top: 4.27vw;
	}

	#price .head__catch {
		bottom: -4vw;
	}

	#price .head__catch-title {
		font-size: 4.8vw;
		line-height: 1.5;
	}

	#price .head__catch-title::before {
		width: 74.67vw;
		height: 26.67vw;
		top: calc(50% + 2.67vw);
	}

	#price .body {
		position: relative;
		margin-top: 22.67vw;
	}

	#price .body::before {
		content: "";
		position: absolute;
		width: calc(100% + 8vw);
		height: 58.67vw;
		top: -42.67vw;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		background-image: url("../img/price-bg-sp.webp");
		background-repeat: no-repeat;
		background-size: cover;
		z-index: -1;
	}

	#price .body__title {
		font-size: 6.4vw;
		line-height: 1.4;
	}

	#price .body__title .big {
		font-size: 8.53vw;
		line-height: 1.5;
	}

	#price .body__box {
		max-width: 100%;
		margin-top: 6.4vw;
	}

	#price .body__sub-title {
		font-size: 4.27vw;
		padding: 0.5rem 0.875rem 0.5625rem;
		padding: 2.13vw 3.73vw 2.4vw;
	}

	#price .body__price {
		left: -8vw;
		font-size: 6.93vw;
		line-height: 1.19;
		margin-top: 2.13vw;
	}

	#price .body__price .big {
		font-size: 6.93vw;
		line-height: 1.19;
	}

	#price .body__price .adjustment {
		left: 3.2vw;
	}

	#price .body__price .big::before {
		top: 3.2vw;
		right: -15.47vw;
		font-size: 4.27vw;
		line-height: 1.19;
	}

	#price .body__price .accent {
		font-size: 14.93vw;
		line-height: 1.2;
	}

	#price .body__text {
		font-size: 4.27vw;
		line-height: 1.5;
		margin-top: 4.27vw;
	}

	#price .block {
		max-width: 100%;
		margin-top: 7.2vw;
	}

	#price .block__title {
		font-size: 4.27vw;
		line-height: 1.5;
		padding: 3.47vw 5.6vw;
	}

	#price .items {
		grid-template-columns: 1fr;
		gap: 3.2vw;
		margin-top: 5.33vw;
	}

	#price .item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 3.2vw;
		padding: 6.4vw 5.33vw 6.4vw 6.4vw;
	}

	#price .item__icon {
		-ms-flex-negative: 0;
		flex-shrink: 0;
	}

	#price .item__icon img {
		width: 9.6vw;
		height: 9.6vw;
	}

	#price .item__title {
		font-size: 5.33vw;
		line-height: 1.2;
	}

	#price .item__texts {
		text-align: left;
	}

	#price .item__text {
		font-size: 4vw;
		line-height: 1.5;
		margin-top: 1.33vw;
	}

	#price .box {
		padding: 8.53vw 4vw 7.2vw;
		margin-top: 7.2vw;
	}

	#price .box__title {
		font-size: 4.27vw;
		line-height: 1.8;
	}

	#price .box__text {
		font-size: 3.73vw;
		line-height: 1.8;
		margin-top: 3.2vw;
	}

	#price .box__text a:hover {
		opacity: 1;
	}
}

#qualification {
	padding: 9.72vw 0 11.11vw;
	background-image: url("../img/qualification-bg.webp");
	background-position: center;
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
}

#qualification .lead {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1.2857142857;
	letter-spacing: 0.05em;
	margin-top: 1.5625rem;
	text-align: center;
}

#qualification .row {
	width: 100%;
	max-width: 60.625rem;
	margin-inline: auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 1.6875rem;
	margin-top: 1.6875rem;
}

#qualification .items {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 21.25rem;
	flex: 0 0 21.25rem;
	padding-top: 1.375rem;
}

#qualification .item:not(:first-of-type) {
	margin-top: 2.8125rem;
}

#qualification .item__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid #254F38;
}

#qualification .item__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0em;
	margin-top: 0.75rem;
}

#qualification .image {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

@media screen and (max-width: 768px) {
	#qualification {
		padding: 5.33vw 0 26.67vw;
		background-image: url("../img/qualification-bg-sp.webp");
		overflow: hidden;
	}

	#qualification .sub-title {
		position: relative;
		left: 2.13vw;
		font-family: "Noto Serif JP", serif;
		font-size: 4vw;
		line-height: 1.8;
	}

	#qualification .sub-title .border {
		display: inline-block;
		border-bottom: 1px solid #c7a57d;
	}

	#qualification .c-title {
		margin-top: 9.33vw;
	}

	#qualification .lead {
		font-size: 4.27vw;
		line-height: 1.5;
		margin-top: 4.53vw;
	}

	#qualification .row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		max-width: 100%;
		gap: 8vw;
		margin-top: 4.27vw;
	}

	#qualification .items {
		width: 100%;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding-top: 0;
	}

	#qualification .item:not(:first-of-type) {
		margin-top: 7.2vw;
	}

	#qualification .item__title {
		font-size: 4.8vw;
		padding-bottom: 2.13vw;
	}

	#qualification .item__text {
		font-size: 4vw;
		margin-top: 4vw;
	}

	#qualification .image {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}
}

#reasons {
	padding: 10vw 0 8.5vw;
}

#reasons .c-title__ja {
	margin-top: -2.5rem;
}

#reasons .items {
	width: calc(100% - 1.25rem);
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4.6875rem 2.625rem;
	margin-top: 7rem;
}

#reasons .item {
	position: relative;
}

#reasons .item__number {
	position: absolute;
	top: -2.5rem;
	left: 1rem;
	font-family: "Noto Serif JP", serif;
	font-size: 5rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
	background: -webkit-linear-gradient(88deg, #2b8454 16.93%, #12b174 70.81%);
	background: linear-gradient(2deg, #2b8454 16.93%, #12b174 70.81%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

#reasons .item:first-of-type .image {
	position: relative;
	width: 22.8125rem;
	margin-inline: auto;
}

#reasons .item__title {
	font-family: "Noto Serif JP", serif;
	font-size: 1.75rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.05em;
	color: #2c7d51;
	margin-top: 2rem;
}

#reasons .item__box {
	margin-top: 1.5rem;
}

#reasons .item__text {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	padding: 0 0.75rem;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	-webkit-transition: max-height 0.5s ease, opacity 0.5s ease;
	transition: max-height 0.5s ease, opacity 0.5s ease;
}

#reasons .accent {
	font-weight: 700;
	color: #2c7d51;
}

#reasons .item__btn {
	margin-top: 0.75rem;
	text-align: center;
}

#reasons .item__btn a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 0.625rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#reasons .item__btn a:hover {
	opacity: 0.8;
}

#reasons .item__link-text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #2c7d51;
}

#reasons .item__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	width: 1.5rem;
	height: 1.5rem;
	border: 1px solid #2c7d51;
	border-radius: 50%;
}

#reasons .item__icon::before,
#reasons .item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #2c7d51;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

#reasons .item__icon::before {
	width: 1px;
	height: 0.6875rem;
}

#reasons .item__icon::after {
	width: 0.6875rem;
	height: 1px;
}

#reasons .item.is-open .item__icon::before,
#reasons .item.is-open .item__icon::after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
	#reasons {
		padding: 19.47vw 0 30.67vw;
	}

	#reasons .c-title__ja {
		margin-top: -9.33vw;
	}

	#reasons .items {
		width: 100%;
		grid-template-columns: 1fr;
		gap: 0;
		margin-top: 12.27vw;
		margin-top: 19.73vw;
	}

	#reasons .item {
		position: relative;
	}

	#reasons .item:not(:first-of-type) {
		margin-top: 19.73vw;
	}

	#reasons .item__number {
		top: -11.2vw;
		left: 0;
		font-size: 16.53vw;
		line-height: 1.19;
	}

	#reasons .item:first-of-type .image {
		width: 65.07vw;
	}

	#reasons .image picture {
		height: 100%;
	}

	#reasons .image img {
		width: 100%;
		height: auto;
		aspect-ratio: 345/162;
		-o-object-fit: cover;
		object-fit: cover;
	}

	#reasons .item:first-of-type .image img {
		aspect-ratio: 244/162;
	}

	#reasons .item__title {
		font-size: 5.87vw;
		line-height: 1.5;
		margin-top: 3.2vw;
		text-align: center;
	}

	#reasons .item__box {
		margin-top: 2.67vw;
	}

	#reasons .item__text {
		font-size: 4vw;
		line-height: 1.8;
		padding: 0 4vw;
	}

	#reasons .item__btn {
		margin-top: 3.2vw;
	}

	#reasons .item__btn a {
		gap: 4vw;
	}

	#reasons .item__btn a:hover {
		opacity: 1;
	}

	#reasons .item__link-text {
		font-size: 4vw;
		line-height: 1.8;
	}

	#reasons .item__icon {
		width: 5.33vw;
		height: 5.33vw;
	}

	#reasons .item__icon::before {
		height: 2.93vw;
	}

	#reasons .item__icon::after {
		width: 2.93vw;
	}
}

#worries {
	padding: 3vw 0 0;
}

#worries .l-inner {
	max-width: 1100px;
	padding: 0;
}

#worries .body {
	position: relative;
	background-image: url("../img/worries-bg.webp");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5.1875rem 6.875rem 8.125rem;
}

#worries .title-wrap {
	text-align: center;
}

#worries .title {
	position: relative;
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	border-bottom: 1px solid #333;
	padding-bottom: 1.5625rem;
	text-align: center;
}

#worries .title::before {
	content: "";
	width: 0.625rem;
	height: 2px;
	position: absolute;
	bottom: -1px;
	left: calc(50% - 2.1875rem);
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #ddd;
}

#worries .title::after {
	content: "";
	width: 0.9375rem;
	height: 1px;
	position: absolute;
	bottom: -0.4375rem;
	left: calc(50% - 2.8125rem);
	-webkit-transform: translateX(-50%) rotate(-55deg);
	transform: translateX(-50%) rotate(-55deg);
	background: #333;
}

#worries .title .big {
	font-size: 2.625rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
}

#worries .title .adjustment {
	margin-left: -0.9375rem;
}

#worries .items {
	margin-top: 4.125rem;
}

#worries .item {
	position: relative;
	left: 1.25rem;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

#worries .box {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 22.75rem;
	flex: 0 0 22.75rem;
}

#worries .image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 364/211;
}

#worries .item__title {
	position: absolute;
	top: -1.125rem;
	right: -0.125rem;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	gap: 0.125rem;
	z-index: 1;
}

#worries .item__title span {
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	font-family: "Noto Serif JP", serif;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.12;
	letter-spacing: 0.02em;
	color: #fff;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	background: #333;
	padding: 0.8125rem 0.21875rem;
}

#worries .item__title span:nth-of-type(2) {
	margin-top: 2.3125rem;
}

#worries .lists {
	width: 100%;
	max-width: 31.25rem;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	position: relative;
	top: 2rem;
	left: -2.1875rem;
	background: rgba(51, 51, 51, 0.3019607843);
	padding: 2.625rem 1.625rem 2rem 2.8125rem;
}

#worries .list {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0.625rem;
}

#worries .list:not(:first-of-type) {
	margin-top: 0.875rem;
}

#worries .list__icon {
	position: relative;
	top: 0.25rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#worries .list__icon img {
	width: 1.25rem;
	height: 1.25rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#worries .list__title {
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #fff;
}

#worries .list__title .accent {
	display: inline-block;
	color: #ebef77;
	border-bottom: 1px solid #fff;
	padding-bottom: 0.1875rem;
}

#worries .list__title .name {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #d8d8d8;
	padding-left: 0.75rem;
}

#worries .item:not(:first-of-type) {
	margin-top: 3.75rem;
	left: 2.1875rem;
}

#worries .item:nth-of-type(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

#worries .item:nth-of-type(even) .box {
	left: -2.5rem;
	z-index: 1;
}

#worries .item:nth-of-type(even) .lists {
	max-width: 100%;
	top: 1.5625rem;
	padding: 1.25rem 1.25rem 1.875rem 2.8125rem;
}

#worries .item:nth-of-type(even) .lists::before {
	content: "";
	width: 1.875rem;
	height: 100%;
	position: absolute;
	top: 0;
	right: -1.875rem;
	background: rgba(51, 51, 51, 0.3019607843);
}

#worries .item:nth-of-type(even) .list:not(:first-of-type) {
	margin-top: 1rem;
}

#worries .item:nth-of-type(even) .item__title {
	top: -1.5rem;
	right: auto;
	left: -2.625rem;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

#worries .catch {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1;
}

#worries .catch__title {
	position: relative;
	font-family: "Noto Serif JP", serif;
	font-size: 1.625rem;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #fff;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	text-align: center;
}

#worries .catch::before {
	content: "";
	position: absolute;
	width: 31.25rem;
	height: 8.125rem;
	top: calc(50% + 0.625rem);
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 177, 116, 0)), color-stop(10%, rgba(18, 177, 116, 0.3137254902)), color-stop(55%, #2b8454), color-stop(55%, #2b8454), to(#2b8454));
	background: -webkit-linear-gradient(top, rgba(18, 177, 116, 0) 0%, rgba(18, 177, 116, 0.3137254902) 10%, #2b8454 55%, #2b8454 55%, #2b8454 100%);
	background: linear-gradient(to bottom, rgba(18, 177, 116, 0) 0%, rgba(18, 177, 116, 0.3137254902) 10%, #2b8454 55%, #2b8454 55%, #2b8454 100%);
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	z-index: -1;
}

#worries .block {
	background-image: url("../img/worries-block-bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 4.6875rem 2.875rem 2.875rem;
	margin-top: 7.25rem;
}

#worries .block__texts {
	position: relative;
	max-width: 50rem;
	margin-inline: auto;
	text-align: center;
}

#worries .block__texts::before {
	content: "";
	width: 20.125rem;
	height: 27.6875rem;
	position: absolute;
	top: calc(50% - 0.9375rem);
	left: -13.125rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url("../img/worries-block-img.webp");
	background-repeat: no-repeat;
	background-size: contain;
}

#worries .block__title {
	display: inline-block;
	font-family: "Noto Serif JP", serif;
	font-size: 2.25rem;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #78644b;
}

#worries .block__title .border {
	display: inline-block;
	border-bottom: 1px solid #333;
}

#worries .block__text {
	font-family: "Noto Serif JP", serif;
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.05em;
	padding-left: 1.25rem;
	margin-top: 0.3125rem;
}

@media screen and (max-width: 768px) {
	#worries {
		padding: 0 0 10.67vw;
		overflow: hidden;
	}

	#worries .l-inner {
		max-width: 100%;
		padding: 0;
	}

	#worries .body {
		background-image: url("../img/worries-bg-sp.webp");
		background-position: top;
		padding: 10.67vw 0 11.2vw;
	}

	#worries .title {
		font-size: 6.4vw;
		line-height: 1.2;
		padding-bottom: 3.2vw;
	}

	#worries .title::before {
		width: 1.33vw;
		height: 2px;
		bottom: -1px;
		left: calc(50% - 1.87vw);
	}

	#worries .title::after {
		width: 4vw;
		bottom: -1.87vw;
		left: calc(50% - 3.2vw);
		-webkit-transform: translateX(-50%) rotate(-75deg);
		transform: translateX(-50%) rotate(-75deg);
	}

	#worries .title .big {
		font-size: 7.47vw;
		line-height: 1.2;
	}

	#worries .title .adjustment {
		margin-left: -4vw;
	}

	#worries .title .adjustment-sp {
		position: relative;
		left: 3.2vw;
	}

	#worries .items {
		margin-top: 14.93vw;
	}

	#worries .item {
		left: 0;
		display: block;
	}

	#worries .box {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	#worries .image {
		position: relative;
		left: -2.67vw;
		width: calc(100% + 2.67vw);
		padding-right: 10.67vw;
	}

	#worries .image img {
		aspect-ratio: 345/210;
	}

	#worries .item__title {
		top: 13.33vw;
		right: 4vw;
		gap: 0.53vw;
	}

	#worries .item__title span {
		font-size: 4.8vw;
		letter-spacing: 0.1em;
		padding: 2.67vw 0.93vw;
	}

	#worries .item__title span:nth-of-type(2) {
		margin-top: 9.87vw;
	}

	#worries .lists {
		max-width: calc(100% - 4vw);
		top: -5.33vw;
		left: 4vw;
		padding: 11.2vw 2.67vw 7.2vw 1.07vw;
	}

	#worries .list {
		gap: 2.13vw;
	}

	#worries .list:not(:first-of-type) {
		margin-top: 2.93vw;
	}

	#worries .list__icon {
		top: 1.07vw;
	}

	#worries .list__icon img {
		width: 4.8vw;
		height: 4.8vw;
	}

	#worries .list__title {
		font-size: 4.27vw;
	}

	#worries .list__title .accent {
		padding-bottom: 0.8vw;
	}

	#worries .list__title .name {
		font-size: 3.73vw;
		padding-left: 1.6vw;
	}

	#worries .item:not(:first-of-type) {
		margin-top: 2.67vw;
		left: 0;
	}

	#worries .item:nth-of-type(even) {
		display: block;
	}

	#worries .item:nth-of-type(even) .box {
		left: 0;
	}

	#worries .item:nth-of-type(even) .lists {
		max-width: calc(100% - 4vw);
		top: -5.33vw;
		left: 0;
		padding: 10.4vw 4vw 9.33vw 4.8vw;
		z-index: 1;
	}

	#worries .item:nth-of-type(even) .lists::before {
		display: none;
	}

	#worries .item:nth-of-type(even) .list:not(:first-of-type) {
		margin-top: 3.73vw;
	}

	#worries .item:nth-of-type(even) .image {
		padding-left: 10.67vw;
		padding-right: 0;
	}

	#worries .item:nth-of-type(even) .item__title {
		top: -1.33vw;
		left: 2.67vw;
	}

	#worries .catch {
		position: absolute;
		bottom: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		z-index: 1;
	}

	#worries .catch__title {
		font-size: 4.8vw;
		line-height: 1.22;
	}

	#worries .catch::before {
		width: 93.33vw;
		height: 23.47vw;
		top: calc(50% + 3.2vw);
	}

	#worries .block {
		background-image: url("../img/worries-block-bg-sp.webp");
		padding: 11.2vw 1.6vw;
		margin-top: 17.6vw;
	}

	#worries .block__texts {
		max-width: 100%;
	}

	#worries .block__texts::before {
		width: 44vw;
		height: 60.53vw;
		top: calc(50% + 18.67vw);
		left: -14.67vw;
	}

	#worries .block__title {
		font-size: 5vw;
		line-height: 1.8;
	}

	#worries .block__text {
		font-size: 4.27vw;
		line-height: 2;
		padding-left: 28vw;
		margin-top: 5.07vw;
		text-align: left;
	}
}

.u-target {
	opacity: 0;
	-webkit-transform: translateY(3.125rem);
	transform: translateY(3.125rem);
	-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.u-target.SlideUp {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.u-pc {
	display: block;
}

.u-sp {
	display: none;
}

.u-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.u-br {
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.u-pc {
		display: none;
	}

	.u-sp {
		display: block;
	}
}