body {
	background: #fbfaf9;
	color: #1a1a1a;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.u-mobile {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

/* pcの電話番号発信対応 */

/* ホバー */

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

p,
a,
li {
	font-weight: 700;
	letter-spacing: 0.04em;
}

/* フェードイン(初期値) */

.js-fadeUp {
	-webkit-transform: translateY(30px);
	-webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
	opacity: 0; /* 最初は非表示 */
	transform: translateY(30px); /* 下に30pxの位置から */
	transition: opacity 0.8s, -webkit-transform 0.8s;
	transition: opacity 0.8s, transform 0.8s;
	transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */

.js-fadeUp.is-inview {
	-webkit-transform: translateY(0);
	-webkit-transition-delay: 0.2s;
	opacity: 1; /* 表示領域に入ったら表示 */
	transform: translateY(0); /* 30px上に移動する */
	transition-delay: 0.2s; /* フェード開始を0.5秒遅らせる */
}

/* バウンスアニメーション(初期値) */

.js-bounce {
	-webkit-transform: scale(0.5);
	opacity: 0; /* 最初は非表示 */
	transform: scale(0.5); /* 最初は0.5倍 */
}

/* バウンスアニメーション(スクロールした後) */

.js-bounce.is-inview {
	-webkit-animation: bounce 0.6s ease-out forwards;
	-webkit-animation-delay: 0.4s;
	animation: bounce 0.6s ease-out forwards;
	animation-delay: 0.4s; /* アニメーション開始を0.5秒遅らせる */
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

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

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* 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 {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

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

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

.c-btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-transition: color 0.3s;
	align-items: center;
	background: #fff;
	border: 2px solid #a2bab4;
	border: 0.125rem solid #a2bab4;
	border-radius: 3.125rem;
	color: #1a1a1a;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: bold;
	gap: 4px;
	gap: 0.25rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	overflow: hidden;
	padding: 7px 44px 7px 30px;
	padding: 0.4375rem 2.75rem 0.4375rem 1.875rem;
	position: relative;
	text-align: center;
	transition: color 0.3s;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
	z-index: 1;
}

.c-btn::before {
	-webkit-transform: translateY(-50%);
	-webkit-mask-image: url(../images/icon/arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-transition: background-color 0.3s;
	background-color: #028969;
	content: "";
	height: 12px;
	height: 0.75rem;
	mask-image: url(../images/icon/arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 22px;
	right: 1.375rem;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.3s;
	width: 8px;
	width: 0.5rem;
}

.c-btn::after {
	-webkit-transform: scale(0, 1.1);
	-webkit-transform-origin: left top;
	-webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	background: #028969;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1.1);
	transform-origin: left top;
	transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	width: 100%;
	z-index: -1;
}

.c-btn.--reverse {
	background: #028969;
	color: #fff;
}

.c-btn.--reverse::before,
.c-btn.--reverse span {
	background-color: #fff;
}

.c-btn.--reverse::after {
	background: #fff;
}

.c-btn.--window::before {
	-webkit-transform: translateY(-50%);
	-webkit-mask-image: url(../images/icon/window.svg);
	content: "";
	height: 19px;
	height: 1.1875rem;
	mask-image: url(../images/icon/window.svg);
	position: absolute;
	right: 22px;
	right: 1.375rem;
	top: 50%;
	transform: translateY(-50%);
	width: 19px;
	width: 1.1875rem;
}

.c-btn span {
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-transition: background-color 0.3s;
	background: #028969;
	content: "";
	display: inline-block;
	height: 19px;
	height: 1.1875rem;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transition: background-color 0.3s;
	width: 19px;
	width: 1.1875rem;
}

.c-btn span.document {
	-webkit-mask-image: url(../images/icon/document.svg);
	height: 25px;
	height: 1.5625rem;
	mask-image: url(../images/icon/document.svg);
	width: 16px;
	width: 1rem;
}

.c-btn span.contact {
	-webkit-mask-image: url(../images/icon/contact.svg);
	height: 18px;
	height: 1.125rem;
	mask-image: url(../images/icon/contact.svg);
	width: 24px;
	width: 1.5rem;
}

/* 背景画像の見えている高さ */

.c-parallax {
	-webkit-clip-path: inset(0);
	clip-path: inset(0); /* 切り抜き */
	height: 100svh;
}

/* 背景画像 */

.c-parallax::before {
	background-image: url(../images/parallax.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: -1;
}

.c-title {
	display: inline-block;
	font-size: 40px;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.45;
	padding-bottom: 4px;
	padding-bottom: 0.25rem;
	position: relative;
}

.c-title::after {
	-webkit-mask-image: url(../images/line.svg);
	-webkit-mask-position: center;
	-webkit-mask-repeat: repeat-x;
	-webkit-mask-size: auto;
	background: #028969;
	bottom: 0;
	content: "";
	height: 6px;
	height: 0.375rem;
	left: 0;
	mask-image: url(../images/line.svg);
	mask-position: center;
	mask-repeat: repeat-x;
	mask-size: auto;
	position: absolute;
	width: 100%;
}

.c-title.--white {
	color: #fff;
}

.c-title.--white::after {
	background: #fff;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 1250px;
	padding-left: 25px;
	padding-right: 25px;
	width: 100%;
}

.l-inner.--small {
	max-width: 950px;
}

.block-editor * + * {
	margin-top: 1em;
}

.block-editor p {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.block-editor a {
	color: blue;
	letter-spacing: 0.01em;
	text-decoration: underline;
}

.block-editor ul {
	list-style: disc;
	padding-left: 2em;
}

.block-editor ol {
	list-style: decimal;
	padding-left: 2em;
}

.block-editor li {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin: 0;
}

.block-editor h2 {
	font-size: 26px;
	font-size: 1.625rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 40px;
	margin-top: 2.5rem;
}

.block-editor h3 {
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 30px;
	margin-top: 1.875rem;
}

.block-editor h4 {
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.block-editor img {
	height: auto;
	height: initial;
	max-width: 100%;
	width: auto;
	width: initial;
}

.p-archive {
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-archive__tags {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-ms-flex-wrap: wrap;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	gap: 0.5rem;
	justify-content: center;
}

.p-archive__tag a {
	-webkit-transition: color 0.3s;
	background: #fff;
	border: 1px solid #028969;
	border: 0.0625rem solid #028969;
	border-radius: 3.125rem;
	color: #028969;
	display: inline-block;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.8;
	overflow: hidden;
	padding: 3px 23px;
	padding: 0.1875rem 1.4375rem;
	position: relative;
	transition: color 0.3s;
	z-index: 1;
}

.p-archive__tag a::after {
	-webkit-transform: scale(0, 1);
	-webkit-transform-origin: left top;
	-webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	background: #028969;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	width: 100%;
	z-index: -1;
}

.p-archive__tag.is-current a {
	background: #028969;
	color: #fff;
}

.p-archive__content {
	margin-top: 51px;
	margin-top: 3.1875rem;
}

.p-archive__pagination {
	margin-top: 56px;
	margin-top: 3.5rem;
}

.p-breadcrumb span a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 7px;
	gap: 0.4375rem;
	height: 100%;
}

.p-breadcrumb span:not(:last-child) a::after {
	-webkit-mask-image: url(../images/icon/arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background: #e7caa7;
	content: "";
	display: inline-block;
	height: 9px;
	height: 0.5625rem;
	mask-image: url(../images/icon/arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 10px;
	width: 0.625rem;
}

.p-breadcrumb .home::before {
	background-image: url(../images/icon/home.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 14px;
	height: 0.875rem;
	width: 16px;
	width: 1rem;
}

.p-breadcrumb__inner {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	color: #d79440;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 12px;
	gap: 0.75rem;
	justify-content: flex-end;
	line-height: 1.5;
	padding-bottom: 4px;
	padding-bottom: 0.25rem;
	padding-top: 4px;
	padding-top: 0.25rem;
}

.p-btnSection {
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-btnSection__title {
	text-align: center;
}

.p-btnSection__btn {
	display: block;
	margin-top: 74px;
	margin-top: 4.625rem;
}

.p-btnSection__wrapper {
	-webkit-transition: color 0.3s, -webkit-transform 0.3s;
	background: #fff;
	border-radius: 0.9375rem;
	color: #028969;
	overflow: hidden;
	padding: 56px 64px;
	padding: 3.5rem 4rem;
	position: relative;
	transition: color 0.3s, -webkit-transform 0.3s;
	transition: color 0.3s, transform 0.3s;
	transition: color 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.p-btnSection__wrapper::before {
	-webkit-transform: translateY(-50%);
	-webkit-mask-image: url(../images/icon/circle_arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-transition: background-color 0.3s;
	background: #028969;
	content: "";
	height: 73px;
	height: 4.5625rem;
	mask-image: url(../images/icon/circle_arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 64px;
	right: 4rem;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.3s;
	width: 73px;
	width: 4.5625rem;
}

.p-btnSection__wrapper::after {
	-webkit-transform: scale(0, 1);
	-webkit-transform-origin: left top;
	-webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	background: #028969;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	width: 100%;
	z-index: -1;
}

.p-btnSection__main {
	font-size: 40px;
	font-size: 2.5rem;
	letter-spacing: 0.01em;
	line-height: 1.45;
}

.p-btnSection__text {
	font-size: 24px;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 16px;
	margin-top: 1rem;
}

.p-cancellation {
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-cancellation__box {
	background: #f6ede3;
	border-radius: 1.875rem;
	padding: 56px 20px;
	padding: 3.5rem 1.25rem;
}

.p-cancellation__title {
	text-align: center;
}

.p-cancellation__text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 62px;
	margin-top: 3.875rem;
	text-align: center;
}

.p-cancellation__tel {
	display: block;
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin: 14px auto 0;
	margin: 0.875rem auto 0;
	text-align: center;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-cancellation__btn {
	margin-top: 31px;
	margin-top: 1.9375rem;
}

.p-cancellation__btn .c-btn {
	border-color: #028969;
	color: #028969;
	font-size: 20px;
	font-size: 1.25rem;
	margin: 0 auto;
	padding: 11px 57px 11px 36px;
	padding: 0.6875rem 3.5625rem 0.6875rem 2.25rem;
}

.p-cancellation__note {
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.5;
	margin-top: 8px;
	margin-top: 0.5rem;
	text-align: center;
}

.p-commonContact {
	background: #fbfaf9;
	padding: 80px 0;
	padding: 5rem 0;
}

.p-commonContact__btn {
	display: block;
}

.p-commonContact__wrapper {
	-webkit-transition: -webkit-transform 0.3s;
	background: #028969;
	border-radius: 0.9375rem;
	color: #fff;
	overflow: hidden;
	padding: 56px 64px;
	padding: 3.5rem 4rem;
	position: relative;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.p-commonContact__wrapper::before {
	-webkit-transform: translateY(-50%);
	-webkit-mask-image: url(../images/icon/circle_arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	background: #fff;
	content: "";
	height: 73px;
	height: 4.5625rem;
	mask-image: url(../images/icon/circle_arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 64px;
	right: 4rem;
	top: 50%;
	transform: translateY(-50%);
	width: 73px;
	width: 4.5625rem;
}

.p-commonContact__wrapper::after {
	-webkit-transform: scale(0, 1);
	-webkit-transform-origin: left top;
	-webkit-transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	background: #18ad56;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
	width: 100%;
	z-index: -1;
}

.p-commonContact__title {
	font-size: 40px;
	font-size: 2.5rem;
	letter-spacing: 0.01em;
	line-height: 1.45;
}

.p-commonContact__text {
	font-size: 24px;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 16px;
	margin-top: 1rem;
}

.p-commonRecruit {
	background: #028969;
	padding: 120px 0;
	padding: 7.5rem 0;
}

.p-commonRecruit__box {
	background: #fff;
	border-radius: 0.9375rem;
	padding: 80px 20px;
	padding: 5rem 1.25rem;
}

.p-commonRecruit__subTitle {
	font-size: 32px;
	font-size: 2rem;
	letter-spacing: 0;
	line-height: 1.4375;
	text-align: center;
}

.p-commonRecruit__title {
	margin-top: 16px;
	margin-top: 1rem;
	text-align: center;
}

.p-commonRecruit__list {
	margin: 64px auto 0;
	margin: 4rem auto 0;
	max-width: 490px;
	max-width: 30.625rem;
}

.p-commonRecruit__list li {
	background-image: linear-gradient(to right, #9b9b9b, #9b9b9b 5px, transparent 5px, transparent 10px);
	background-position: left bottom; /* 背景の開始位置を指定 */
	background-repeat: repeat-x; /* 横向きにのみ繰り返す */
	background-size: 10px 1px; /* グラデーションの幅・高さを指定 */
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
	padding-left: 1em;
	position: relative;
}

.p-commonRecruit__list li::before {
	background: #028969;
	border-radius: 50%;
	content: "";
	height: 12px;
	height: 0.75rem;
	left: 0.1em;
	position: absolute;
	top: 0.55em;
	width: 12px;
	width: 0.75rem;
}

.p-commonRecruit__items {
	-webkit-box-align: end;
	-ms-flex-align: end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 103px;
	gap: 6.4375rem;
	justify-content: center;
	margin-top: 57px;
	margin-top: 3.5625rem;
	padding-left: 5.4%;
}

.p-commonRecruit__item {
	text-align: center;
}

.p-commonRecruit__copy {
	font-size: 20px;
	font-size: 1.25rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.p-commonRecruit__btn {
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-commonRecruit__btn .c-btn {
	font-size: 20px;
	font-size: 1.25rem;
	margin: 0 auto;
	padding: 10px 44px 10px 30px;
	padding: 0.625rem 2.75rem 0.625rem 1.875rem;
}

.p-contact {
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-contact__text {
	background-image: linear-gradient(to right, #f6ede3, #f6ede3 8px, transparent 8px, transparent 16px);
	background-position: left bottom; /* 背景の開始位置を指定 */
	background-repeat: repeat-x; /* 横向きにのみ繰り返す */
	background-size: 16px 0.25rem; /* グラデーションの幅・高さを指定 */
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.8;
	padding-bottom: 33px;
	padding-bottom: 2.0625rem;
	text-align: center;
}

.p-contact__form {
	margin-top: 18px;
	margin-top: 1.125rem;
}

.p-drawer {
	-webkit-transition: opacity 0.3s, visibility 0.3s;
	-webkit-overflow-scrolling: touch;
	background: #fbfaf9;
	height: 100%;
	opacity: 0;
	overflow-y: auto;
	padding: 112px 18px 50px;
	padding: 7rem 1.125rem 3.125rem;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 99;
}

.p-drawer > ul {
	margin: 0 auto;
	padding: 0 16px;
	padding: 0 1rem;
	width: 100%;
}

.p-drawer__link {
	-webkit-transition: 0.4s all;
	border-bottom: 1px solid #ddd;
	list-style-type: none;
	padding: 0;
	transition: 0.4s all;
	width: 100%;
}

.p-drawer__link:last-child {
	padding-bottom: 0;
}

.p-drawer__link > a,
.p-drawer__toggle {
	display: block;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
	padding: 16px 0;
	padding: 1rem 0;
	position: relative;
	text-decoration: none;
}

.p-drawer__link > a::before {
	-webkit-transform: translateY(-50%);
	background-image: url(../images/drawer_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 9px;
	height: 0.5625rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	width: 0.375rem;
}

.p-drawer__btn a {
	background: #ea7d3d;
	border-radius: 3.125rem;
	color: #fff;
	display: inline-block;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1;
	margin-top: 14px;
	margin-top: 0.875rem;
	padding: 16px 0;
	padding: 1rem 0;
	text-align: center;
	width: 100%;
}

.p-drawer__policy a {
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 64px;
	margin-top: 4rem;
}

.p-drawer__toggle {
	position: relative;
}

.p-drawer__toggle::before,
.p-drawer__toggle::after {
	-webkit-transform: translateY(-50%);
	-webkit-transition: -webkit-transform 0.3s;
	background: #1a1a1a;
	border-radius: 0.125rem;
	content: "";
	height: 2px;
	height: 0.125rem;
	position: absolute;
	right: 2px;
	right: 0.125rem;
	top: 50%;
	transform: translateY(-50%);
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 12px;
	width: 0.75rem;
}

.p-drawer__toggle::after {
	-webkit-transform: translateY(-50%) rotate(90deg);
	transform: translateY(-50%) rotate(90deg);
}

.p-drawer__toggle.is-open::after {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.p-drawer__list {
	display: none;
	padding: 4px 0 11px;
	padding: 0.25rem 0 0.6875rem;
}

.p-drawer__list a {
	display: block;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
	padding: 3px 23px 4px 15px;
	padding: 0.1875rem 1.4375rem 0.25rem 0.9375rem;
	position: relative;
	text-decoration: none;
}

.p-drawer__list a::before {
	-webkit-transform: translateY(-50%);
	background-image: url(../images/icon/circle_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 21px;
	height: 1.3125rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 21px;
	width: 1.3125rem;
}

/* active */

.p-drawer.active {
	opacity: 1;
	visibility: visible;
}

.p-facility {
	padding-bottom: 108px;
	padding-bottom: 6.75rem;
}

.p-facility__title {
	text-align: center;
}

.p-facility__items {
	display: grid;
	gap: 32px 42px;
	gap: 2rem 2.625rem;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 63px;
	margin-top: 3.9375rem;
}

.p-facility__img img {
	-o-object-fit: cover;
	aspect-ratio: 372/280;
	border-radius: 0.9375rem;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-features {
	background: #f6ede3;
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-features__title {
	text-align: center;
}

.p-features__items {
	counter-reset: listnum;
	margin-top: 64px;
	margin-top: 4rem;
}

.p-features__item {
	background: #fff;
	border-radius: 1.875rem;
	margin-top: 32px;
	margin-top: 2rem;
	padding: 26px 32px 31px;
	padding: 1.625rem 2rem 1.9375rem;
}

.p-features__main {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	background-image: linear-gradient(to right, #f6ede3, #f6ede3 8px, transparent 8px, transparent 16px);
	background-position: left bottom; /* 背景の開始位置を指定 */
	background-repeat: repeat-x; /* 横向きにのみ繰り返す */
	background-size: 16px 0.25rem; /* グラデーションの幅・高さを指定 */
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.4375;
	margin: 0 auto;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-features__main::before {
	color: #028969;
	content: counter(listnum, decimal-leading-zero); /* カウントした数に応じて番号を表示 */
	counter-increment: listnum; /* counter-resetと同じ文字列 */
	font-family: "Outfit", sans-serif;
	font-size: 40px;
	font-size: 2.5rem;
	margin-right: 24px;
	margin-right: 1.5rem;
}

.p-features__text {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 20px;
	margin-top: 1.25rem;
	text-align: center;
}

.p-footer {
	background: #faf6f1;
	padding-top: 100px;
	padding-top: 6.25rem;
}

.p-footer__container {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
}

.p-footer__wrapper.--ml-auto {
	margin-left: auto;
	margin-right: 43px;
	margin-right: 2.6875rem;
}

.p-footer__logo {
	max-width: 292px;
	max-width: 18.25rem;
}

.p-footer__text {
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5;
	margin-top: 7px;
	margin-top: 0.4375rem;
}

.p-footer__text.--big {
	font-size: 16px;
	font-size: 1rem;
	letter-spacing: 0.01em;
	margin-top: 23px;
	margin-top: 1.4375rem;
}

.p-footer__link {
	-webkit-transition: color 0.3s;
	display: block;
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.0833em;
	line-height: 2;
	transition: color 0.3s;
}

.p-footer__link.--none {
	pointer-events: none;
}

.p-footer__list li {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-footer__list li a {
	-webkit-transition: color 0.3s;
	display: block;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.5;
	transition: color 0.3s;
}

.p-footer__list li::before {
	color: #028969;
	content: "-";
	margin-right: 8px;
	margin-right: 0.5rem;
}

.p-footer__btn {
	background: #ea7d3d;
	border-radius: 3.125rem;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.0833em;
	line-height: 2;
	margin-top: 15px;
	margin-top: 0.9375rem;
	padding: 8px 23px;
	padding: 0.5rem 1.4375rem;
}

.p-footer__bottom {
	margin: 110px auto 0;
	margin: 6.875rem auto 0;
	max-width: 884px;
	max-width: 55.25rem;
	position: relative;
}

.p-footer__img img {
	-o-object-fit: contain;
	object-fit: contain;
}

.p-footer__message {
	-webkit-transform: translateX(-50%);
	left: 50%;
	max-width: 355px;
	max-width: 22.1875rem;
	position: absolute;
	top: -70px;
	top: -4.375rem;
	transform: translateX(-50%);
}

.p-footer__copyright {
	background: #028969;
	color: #fff;
	padding: 7px 0;
	padding: 0.4375rem 0;
	text-align: center;
}

.p-footer__copyright small {
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 700;
}

.p-form .wpcf7-list-item {
	display: block;
}

.p-form input[type=radio] {
	border: 1px solid #999;
	border-radius: 50%;
	height: 24px;
	height: 1.5rem;
	margin: 0;
	position: relative;
	width: 24px;
	width: 1.5rem;
}

.p-form input[type=radio]:checked {
	background: #999;
}

.p-form input[type=radio]:checked::before {
	-webkit-transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 50%;
	content: "";
	display: block;
	height: 11px;
	height: 0.6875rem;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 11px;
	width: 0.6875rem;
}

.p-form input[type=checkbox] {
	border: 1px solid #999;
	border-radius: 0.125rem;
	height: 15px;
	height: 0.9375rem;
	margin: 0;
	position: relative;
	width: 15px;
	width: 0.9375rem;
}

.p-form input[type=checkbox]:checked::before {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 2px solid #ea7d3d;
	border-bottom: 0.125rem solid #ea7d3d;
	border-left: 2px solid #ea7d3d;
	border-left: 0.125rem solid #ea7d3d;
	content: "";
	display: block;
	height: 7px;
	height: 0.4375rem;
	left: 0;
	margin-top: -0.2em;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	width: 15px;
	width: 0.9375rem;
}

.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form textarea,
.p-form select {
	-webkit-box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 1px solid #1a1a1a;
	border-radius: 0.5rem;
	box-shadow: none;
	color: inherit;
	font-family: inherit;
	font-size: 18px;
	font-size: 1.125rem;
	padding: 10px 16px;
	padding: 0.625rem 1rem;
	width: 100%;
}

.p-form input[type=text]::-moz-placeholder,
.p-form input[type=email]::-moz-placeholder,
.p-form input[type=tel]::-moz-placeholder,
.p-form textarea::-moz-placeholder,
.p-form select::-moz-placeholder {
	color: #b1b1b1;
}

.p-form input[type=text]::-webkit-input-placeholder,
.p-form input[type=email]::-webkit-input-placeholder,
.p-form input[type=tel]::-webkit-input-placeholder,
.p-form textarea::-webkit-input-placeholder,
.p-form select::-webkit-input-placeholder {
	color: #b1b1b1;
}

.p-form input[type=text]::-moz-placeholder,
.p-form input[type=email]::-moz-placeholder,
.p-form input[type=tel]::-moz-placeholder,
.p-form textarea::-moz-placeholder,
.p-form select::-moz-placeholder {
	color: #b1b1b1;
}

.p-form input[type=text]::-ms-input-placeholder,
.p-form input[type=email]::-ms-input-placeholder,
.p-form input[type=tel]::-ms-input-placeholder,
.p-form textarea::-ms-input-placeholder,
.p-form select::-ms-input-placeholder {
	color: #b1b1b1;
}

.p-form input[type=text]::placeholder,
.p-form input[type=email]::placeholder,
.p-form input[type=tel]::placeholder,
.p-form textarea::placeholder,
.p-form select::placeholder {
	color: #b1b1b1;
}

.p-form textarea {
	height: 246px;
	height: 15.375rem;
	resize: vertical;
}

.p-form input[type=submit] {
	-webkit-box-shadow: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-transition: opacity 0.3s;
	appearance: none;
	background: #ea7d3d;
	border: none;
	border-radius: 3.125rem;
	box-shadow: none;
	color: #fff;
	display: inline-block;
	font-family: inherit;
	font-size: 20px;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
	padding: 10px 40px;
	padding: 0.625rem 2.5rem;
	transition: opacity 0.3s;
}

.p-form__item {
	display: grid;
	gap: 8px;
	gap: 0.5rem;
	grid-template-columns: 15.625rem 1fr;
}

.p-form__item:not(:last-child) {
	margin-bottom: 40px;
	margin-bottom: 2.5rem;
}

.p-form__label {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 8px;
	margin-top: 0.5rem;
}

.p-form__required {
	background: #d74b5b;
	border-radius: 3.125rem;
	color: #fff;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 700;
	margin-left: 13px;
	margin-left: 0.8125rem;
	padding: 2px 10px;
	padding: 0.125rem 0.625rem;
}

.p-form__input.--radio {
	padding: 0 32px;
	padding: 0 2rem;
}

.p-form__input.--radio label {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	gap: 12px;
	gap: 0.75rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.p-form__privacy {
	background: #fff;
	border-radius: 0.5rem;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
	height: 246px;
	height: 15.375rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 29px;
	margin-top: 1.8125rem;
	overflow-x: auto;
	padding: 22px 40px;
	padding: 1.375rem 2.5rem;
}

.p-form__privacy span {
	font-weight: 700;
}

.p-form__checkbox {
	margin-left: 0;
	margin-top: 34px;
	margin-top: 2.125rem;
}

.p-form__checkbox label {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 500;
	gap: 8px;
	gap: 0.5rem;
	justify-content: center;
	letter-spacing: 0;
	line-height: 1.2142857143;
	margin: 0 auto;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-form__btn {
	margin-top: 54px;
	margin-top: 3.375rem;
	text-align: center;
}

.p-form__note {
	color: #ea7d3d;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0;
	margin-top: 15px;
	margin-top: 0.9375rem;
	text-align: center;
}

.p-form .wpcf7-spinner {
	position: absolute;
}

.p-fv {
	background: #fff;
	height: 100svh;
}

.p-fv__inner {
	max-width: 1350px;
	padding-top: 109px;
	padding-top: 6.8125rem;
}

.p-fv__wrapper {
	background-image: url(../images/fv.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 1.875rem;
	height: 100%;
	overflow: hidden;
	padding: 14.8% 63px 0;
	padding: 14.8% 3.9375rem 0;
}

.p-fv__text {
	color: #fff;
	font-size: 54px;
	font-size: 3.375rem;
	font-weight: 700;
	letter-spacing: 0.0233em;
	line-height: 1.4444444444;
}

.p-hamburger {
	display: none;
}

.p-hamburger span {
	-webkit-transition: 0.3s -webkit-transform;
	background: #fff;
	border-radius: 0.125rem;
	display: block;
	height: 2px;
	height: 0.125rem;
	left: 9px;
	left: 0.5625rem;
	position: absolute;
	transition: 0.3s -webkit-transform;
	transition: 0.3s transform;
	transition: 0.3s transform, 0.3s -webkit-transform;
	width: 38px;
	width: 2.375rem;
}

.p-hamburger span:nth-child(1) {
	top: 16px;
	top: 1rem;
}

.p-hamburger span:nth-child(2) {
	top: 24px;
	top: 1.5rem;
}

.p-hamburger::before {
	-webkit-transform: translateX(-50%);
	color: #fff;
	content: "MENU";
	font-size: 13px;
	font-size: 0.8125rem;
	font-weight: 700;
	left: 50%;
	letter-spacing: 0.015em;
	line-height: 1;
	position: absolute;
	top: 28px;
	top: 1.75rem;
	transform: translateX(-50%);
}

/* active */

.p-hamburger.active span:nth-child(1) {
	-webkit-transform: rotate(-45deg);
	top: 28px;
	top: 1.75rem;
	transform: rotate(-45deg);
}

.p-hamburger.active span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	top: 28px;
	top: 1.75rem;
	transform: rotate(45deg);
}

.p-hamburger.active::before {
	display: none;
}

.p-header {
	-webkit-transform: translateX(-50%);
	background: #fff;
	border-radius: 0 0 1.875rem 1.875rem;
	height: 88px;
	height: 5.5rem;
	left: 50%;
	max-width: 1200px;
	max-width: 75rem;
	padding: 0 32px;
	padding: 0 2rem;
	position: fixed;
	top: 0;
	transform: translateX(-50%);
	width: 100%;
	z-index: 100;
}

.p-header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.p-header__logo {
	height: inherit;
}

.p-header__logo a {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.p-header__logo img {
	-o-object-fit: contain;
	object-fit: contain;
	width: 264px;
	width: 16.5rem;
}

.p-header__nav {
	height: inherit;
	margin-left: auto;
}

.p-header__items {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
}

.p-header__item {
	height: inherit;
	margin-left: 36px;
	margin-left: 2.25rem;
	position: relative;
}

.p-header__item > a,
.p-header__item > p {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-transition: color 0.3s;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-size: 1.125rem;
	height: inherit;
	letter-spacing: 0.0833em;
	transition: color 0.3s;
}

.p-header__item > p {
	cursor: pointer;
	gap: 8px;
	gap: 0.5rem;
	margin-right: 24px;
	margin-right: 1.5rem;
}

.p-header__item > p.is-hover {
	color: #028969;
	opacity: 1;
}

.p-header__item > p::after {
	-webkit-mask-image: url(../images/icon/arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-transform: rotate(90deg);
	background: #1a1a1a;
	content: "";
	height: 11px;
	height: 0.6875rem;
	margin-bottom: -5px;
	margin-bottom: -0.3125rem;
	mask-image: url(../images/icon/arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	transform: rotate(90deg);
	width: 7px;
	width: 0.4375rem;
}

.p-header__btn a {
	-webkit-transition: color 0.3s, background-color 0.3s;
	background: #ea7d3d;
	border: 3px solid #ea7d3d;
	border: 0.1875rem solid #ea7d3d;
	border-radius: 3.125rem;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.2em;
	letter-spacing: 0.0833em;
	margin-left: 30px;
	margin-left: 1.875rem;
	padding: 12px 23px;
	padding: 0.75rem 1.4375rem;
	transition: color 0.3s, background-color 0.3s;
}

.p-header__subItems {
	-webkit-transform: translate(-50%, 100%);
	-webkit-box-shadow: 0.1875rem 0.1875rem 0.89375rem 0 rgba(0, 0, 0, .17);
	background: #fff;
	border-radius: 0.3125rem;
	bottom: 18px;
	bottom: 1.125rem;
	box-shadow: 0.1875rem 0.1875rem 0.89375rem 0 rgba(0, 0, 0, .17);
	content: "";
	display: none;
	left: 55%;
	overflow: hidden;
	position: absolute;
	transform: translate(-50%, 100%);
}

.p-header__subItem {
	position: relative;
}

.p-header__subItem + .p-header__subItem {
	border-top: 1px solid #028969;
}

.p-header__subItem a {
	-webkit-transition: color 0.3s, background-color 0.3s;
	display: block;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	padding: 14px 41px 14px 10px;
	padding: 0.875rem 2.5625rem 0.875rem 0.625rem;
	transition: color 0.3s, background-color 0.3s;
	white-space: nowrap;
}

.p-header__subItem a::before {
	-webkit-transform: translateY(-50%);
	-webkit-transition: background-color 0.3s;
	background: #028969;
	border: 1px solid #028969;
	border-radius: 50%;
	content: "";
	height: 21px;
	height: 1.3125rem;
	position: absolute;
	right: 10px;
	right: 0.625rem;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.3s;
	width: 21px;
	width: 1.3125rem;
}

.p-header__subItem a::after {
	-webkit-mask-image: url(../images/icon/arrow.svg);
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	-webkit-transform: translateY(-50%);
	-webkit-transition: background-color 0.3s;
	background: #fff;
	content: "";
	height: 9px;
	height: 0.5625rem;
	mask-image: url(../images/icon/arrow.svg);
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 17px;
	right: 1.0625rem;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.3s;
	width: 6px;
	width: 0.375rem;
}

.p-instagram {
	padding-bottom: 100px;
	padding-bottom: 6.25rem;
}

.p-instagram__title {
	text-align: center;
}

.p-instagram__title .c-title::after {
	-webkit-mask-size: 210% 100%;
	mask-size: 210% 100%;
}

.p-instagram__feed {
	margin: 70px auto 0;
	margin: 4.375rem auto 0;
	max-width: 900px;
	max-width: 56.25rem;
}

.p-instagram__btn {
	margin-top: 32px;
	margin-top: 2rem;
}

.p-instagram__btn .c-btn {
	margin: 0 auto;
}

.p-list__item {
	border-bottom: 1px solid #f6ede3;
	display: grid;
	gap: 10px;
	gap: 0.625rem;
	grid-template-columns: 15rem 1fr;
	padding: 20px 0;
	padding: 1.25rem 0;
}

.p-list__term {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.p-list__description {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.p-list__description.--map {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.p-list__description .c-btn {
	font-size: 14px;
	font-size: 0.875rem;
	margin-left: 16px;
	margin-left: 1rem;
	padding: 4px 41px 4px 18px;
	padding: 0.25rem 2.5625rem 0.25rem 1.125rem;
}

.p-list__description .c-btn::before {
	height: 16px;
	height: 1rem;
	right: 18px;
	right: 1.125rem;
	width: 16px;
	width: 1rem;
}

.p-newsList {
	display: grid;
	gap: 56px 32px;
	gap: 3.5rem 2rem;
	grid-template-columns: repeat(3, 1fr);
}

.p-newsList__item {
	background: #fff;
	border-radius: 0.9375rem;
	overflow: hidden;
}

.p-newsList__img {
	overflow: hidden;
}

.p-newsList__img img {
	-o-object-fit: cover;
	-webkit-transition: -webkit-transform 0.3s;
	aspect-ratio: 379/246;
	height: 100%;
	object-fit: cover;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
	width: 100%;
}

.p-newsList__body {
	padding: 24px 23px 31px;
	padding: 1.5rem 1.4375rem 1.9375rem;
}

.p-newsList__info {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 12px;
	gap: 0.75rem;
	justify-content: flex-start;
}

.p-newsList__date {
	color: #028969;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
}

.p-newsList__tag {
	border: 1px solid #028969;
	border-radius: 3.125rem;
	color: #028969;
	font-size: 12px;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1;
	padding: 6px 11px;
	padding: 0.375rem 0.6875rem;
}

.p-newsList__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	font-size: 20px;
	font-size: 1.25rem;
	line-height: 1.8;
	margin-top: 13px;
	margin-top: 0.8125rem;
	overflow: hidden;
}

.p-newsList__no-posts.--white {
	color: #fff;
}

.p-pagination {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	gap: 2rem;
	justify-content: center;
}

.p-pagination .page-numbers {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	align-items: center;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 700;
	justify-content: center;
}

.p-pagination .current {
	background: #028969;
	color: #fff;
	height: 32px;
	height: 2rem;
	width: 32px;
	width: 2rem;
}

.p-policy {
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-policy__content p {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.p-policy__content ol {
	list-style: decimal;
	margin-top: 54px;
	margin-top: 3.375rem;
	padding-left: 1.1em;
}

.p-policy__content li {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 10px;
	margin-top: 0.625rem;
	padding-left: 0.4em;
}

.p-recruit {
	background-image: url(../images/recruit_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 188px 0 274px;
	padding: 11.75rem 0 17.125rem;
}

.p-recruit__inner {
	position: relative;
}

.p-recruit__inner::after {
	background-image: url(../images/recruit_img.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -224px;
	bottom: -14rem;
	content: "";
	height: 606px;
	height: 37.875rem;
	position: absolute;
	right: 22px;
	right: 1.375rem;
	width: 489px;
	width: 30.5625rem;
}

.p-recruit__title {
	color: #028969;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.p-recruit__lead {
	font-size: 40px;
	font-size: 2.5rem;
	letter-spacing: 0.01em;
	line-height: 1.45;
	margin-top: 33px;
	margin-top: 2.0625rem;
}

.p-recruit__message {
	color: #028969;
	font-size: 24px;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 31px;
	margin-top: 1.9375rem;
}

.p-recruit__text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 28px;
	margin-top: 1.75rem;
}

.p-service {
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-service__title {
	text-align: center;
}

.p-service__items {
	margin-top: 64px;
	margin-top: 4rem;
}

.p-service__item {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: grid;
	gap: 56px;
	gap: 3.5rem;
	grid-template-columns: 580fr 564fr;
	margin-top: 56px;
	margin-top: 3.5rem;
}

.p-service__img img {
	-o-object-fit: cover;
	aspect-ratio: 580/441;
	border-radius: 2rem;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-service__main {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0em;
	line-height: 1.4375;
}

.p-service__text {
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 18px;
	margin-top: 1.125rem;
}

.p-serviceAbout {
	overflow-x: hidden;
	padding: 123px 0 282px;
	padding: 7.6875rem 0 17.625rem;
}

.p-serviceAbout__inner {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	display: grid;
	gap: 91px;
	gap: 5.6875rem;
	grid-template-columns: 33.8125rem 31rem 1fr;
	max-width: 1316px;
	max-width: 82.25rem;
	position: relative;
}

.p-serviceAbout__inner::before {
	background: #fff;
	border-radius: 50%;
	content: "";
	height: 775px;
	height: 48.4375rem;
	left: calc(50% - 8.875rem);
	position: absolute;
	top: -28px;
	top: -1.75rem;
	width: 775px;
	width: 48.4375rem;
	z-index: -1;
}

.p-serviceAbout__img img {
	-o-object-fit: cover;
	aspect-ratio: 541/411;
	border-radius: 1.875rem;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-serviceAbout__content {
	margin-top: 151px;
	margin-top: 9.4375rem;
}

.p-serviceAbout__lead {
	font-size: 24px;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.p-serviceAbout__text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 32px;
	margin-top: 2rem;
}

.p-serviceFv {
	overflow-x: hidden;
	padding-bottom: 52px;
	padding-bottom: 3.25rem;
}

.p-serviceFv__inner {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	display: grid;
	gap: 0;
	grid-template-columns: 1fr 41vw;
	margin-right: 0;
	max-width: none;
	max-width: initial;
	padding-right: 0;
	width: calc(50vw + 39.0625rem);
}

.p-serviceFv__content {
	padding-top: 168px;
	padding-top: 10.5rem;
}

.p-serviceFv__title {
	color: #028969;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.p-serviceFv__lead {
	font-size: 40px;
	font-size: 2.5rem;
	letter-spacing: 0.01em;
	line-height: 1.45;
}

.p-serviceFv__text {
	font-size: 24px;
	font-size: 1.5rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 32px;
	margin-top: 2rem;
}

.p-serviceFv__img {
	padding-bottom: 6px;
	padding-bottom: 0.375rem;
}

.p-serviceFv__img img {
	-o-object-fit: cover;
	aspect-ratio: 589/395;
	border-radius: 0 0 0 1.875rem;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-single {
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-single__info {
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 32px;
	gap: 2rem;
	justify-content: flex-start;
}

.p-single__date {
	color: #028969;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.8;
}

.p-single__tag {
	border: 1px solid #028969;
	border-radius: 3.125rem;
	color: #028969;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1;
	padding: 10px 23px;
	padding: 0.625rem 1.4375rem;
}

.p-single__title {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.4583333333;
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-single__thumbnail {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-single__thumbnail img {
	-o-object-fit: cover;
	aspect-ratio: 900/473;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-single__content {
	margin-top: 40px;
	margin-top: 2.5rem;
}

.p-subFv {
	padding: 193px 0 99px;
	padding: 12.0625rem 0 6.1875rem;
	text-align: center;
}

.p-subFv:has(.p-subFv__text) {
	padding-top: 227px;
	padding-top: 14.1875rem;
}

.p-subFv__title {
	font-size: 40px;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.45;
}

.p-subFv__title.--small {
	font-size: 32px;
	font-size: 2rem;
	letter-spacing: 0.015em;
	line-height: 1.5;
}

.p-subFv__text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 32px;
	margin-top: 2rem;
}

.p-subFv__btn {
	margin-top: 32px;
	margin-top: 2rem;
}

.p-subFv__btn .c-btn {
	margin: 0 auto;
}

.p-topAbout {
	background: #fff;
	padding: 120px 0 105px;
	padding: 7.5rem 0 6.5625rem;
}

.p-topAbout__inner {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	display: grid;
	gap: 0;
	grid-template-columns: 1fr 49.4vw;
	margin-right: 0;
	max-width: none;
	max-width: initial;
	padding-right: 0;
	width: calc(50vw + 38.5625rem);
}

.p-topAbout__text1 {
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 1.8;
}

.p-topAbout__main {
	font-size: 30px;
	font-size: 1.875rem;
	line-height: 2.04;
	margin-top: 25px;
	margin-top: 1.5625rem;
}

.p-topAbout__main span {
	color: #028969;
}

.p-topAbout__text2 {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 2.04;
	margin-top: 23px;
	margin-top: 1.4375rem;
}

.p-topAbout__text2 span {
	color: #028969;
	font-size: 25px;
	font-size: 1.5625rem;
}

.p-topAbout__img img {
	-o-object-fit: cover;
	aspect-ratio: 720/553;
	border-radius: 3.0625rem 0 0 3.0625rem;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-topCompany {
	padding: 100px 0;
	padding: 6.25rem 0;
}

.p-topCompany__title {
	text-align: center;
}

.p-topCompany__box {
	background: #fff;
	border-radius: 1.875rem;
	margin-top: 73px;
	margin-top: 4.5625rem;
	padding: 20px 40px;
	padding: 1.25rem 2.5rem;
}

.p-topNews__inner {
	max-width: 1360px;
}

.p-topNews__box {
	background: #028969;
	border-radius: 0.9375rem;
	color: #fff;
	padding: 56px 56px 75px;
	padding: 3.5rem 3.5rem 4.6875rem;
}

.p-topNews__list {
	color: #1a1a1a;
	margin-top: 64px;
	margin-top: 4rem;
}

.p-topNews__btn {
	margin-top: 56px;
	margin-top: 3.5rem;
	text-align: center;
}

.p-topNews__btn .c-btn {
	margin: 0 auto;
}

.p-topService {
	padding: 100px 0 200px;
	padding: 6.25rem 0 12.5rem;
}

.p-topService__subTitle {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.4375;
	text-align: center;
}

.p-topService__title {
	margin-top: 19px;
	margin-top: 1.1875rem;
	text-align: center;
}

.p-topService__items {
	margin-top: 26px;
	margin-top: 1.625rem;
}

.p-topService__item {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	display: grid;
	gap: 56px;
	gap: 3.5rem;
	grid-template-columns: 644fr 500fr;
}

.p-topService__img img {
	-o-object-fit: contain;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-topService__item:nth-child(1) {
	grid-template-columns: 500fr 644fr;
	margin-bottom: 140px;
	margin-bottom: 8.75rem;
}

.p-topService__item:nth-child(1) .p-topService__img {
	-webkit-box-ordinal-group: 3;
	-ms-flex-order: 2;
	order: 2;
}

.p-topService__content {
	padding-bottom: 27px;
	padding-bottom: 1.6875rem;
}

.p-topService__name {
	font-size: 32px;
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.4375;
}

.p-topService__text {
	font-size: 18px;
	font-size: 1.125rem;
	letter-spacing: 0.01em;
	line-height: 1.8;
	margin-top: 20px;
	margin-top: 1.25rem;
}

.p-topService__btn {
	margin-top: 62px;
	margin-top: 3.875rem;
}

@media (any-hover: hover) {

a:hover {
	opacity: 0.7;
}

.c-btn:hover {
	color: #fff;
	opacity: 1;
}

.c-btn:hover::before,
.c-btn:hover span {
	background-color: #fff;
}

.c-btn:hover::after {
	-webkit-transform: scale(1, 1.1);
	transform: scale(1, 1.1);
}

.c-btn.--reverse:hover {
	color: #1a1a1a;
}

.c-btn.--reverse:hover::before,
.c-btn.--reverse:hover span {
	background-color: #028969;
}

.p-archive__tag a:hover {
	color: #fff;
	opacity: 1;
}

.p-archive__tag a:hover::before,
.p-archive__tag a:hover span {
	background-color: #fff;
}

.p-archive__tag a:hover::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.p-btnSection__btn:hover {
	opacity: 1;
}

.p-btnSection__btn:hover .p-btnSection__wrapper {
	-webkit-transform: scale(1);
	color: #fff;
	transform: scale(1);
}

.p-btnSection__btn:hover .p-btnSection__wrapper::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.p-btnSection__btn:hover .p-btnSection__wrapper::before {
	background: #fff;
}

.p-commonContact__btn:hover {
	opacity: 1;
}

.p-commonContact__btn:hover .p-commonContact__wrapper {
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

.p-commonContact__btn:hover .p-commonContact__wrapper::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.p-footer__link:hover {
	color: #028969;
	opacity: 1;
}

.p-footer__list li a:hover {
	color: #028969;
	opacity: 1;
}

.p-form input[type=submit]:hover {
	opacity: 0.8;
}

.p-header__item > a:hover {
	color: #028969;
	opacity: 1;
}

.p-header__btn a:hover {
	background: #fff;
	color: #ea7d3d;
	opacity: 1;
}

.p-header__subItem a:hover {
	background: #028969;
	color: #fff;
	opacity: 1;
}

.p-header__subItem a:hover::before {
	background: #fff;
}

.p-header__subItem a:hover::after {
	background: #028969;
}

.p-newsList__item:hover {
	opacity: 1;
}

.p-newsList__item:hover .p-newsList__img img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

}

@media (max-width: 1200px) {

html {
	font-size: 1.3333333333vw;
}

}

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

.u-desktop {
	display: none;
}

.u-mobile {
	display: block;
}

html {
	font-size: 16px;
}

a[href^="tel:"] {
	pointer-events: none;
}

.c-parallax {
	height: 23.875rem;
}

.c-parallax::before {
	background-image: url(../images/parallax_sp.jpg);
}

.c-title {
	font-size: 1.5rem;
	padding-bottom: 0.4375rem;
}

.c-title::after {
	-webkit-mask-image: url(../images/line_sp.svg);
	mask-image: url(../images/line_sp.svg);
}

.l-inner {
	max-width: 33.75rem;
	padding-left: 16px;
	padding-right: 16px;
}

.l-inner.--small {
	max-width: 33.75rem;
}

.block-editor p {
	font-size: 1rem;
}

.block-editor li {
	font-size: 1rem;
}

.block-editor h2 {
	font-size: 1.25rem;
}

.block-editor h3 {
	font-size: 1.125rem;
}

.block-editor h4 {
	font-size: 1rem;
}

.p-archive {
	padding: 3.5rem 0;
}

.p-archive__tags {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.p-archive__tag a {
	font-size: 1rem;
	padding: 0.125rem 1rem;
}

.p-breadcrumb span a {
	gap: 0.125rem;
}

.p-breadcrumb .home::before {
	height: 0.75rem;
	width: 0.875rem;
}

.p-breadcrumb__inner {
	font-size: 0.6875rem;
	gap: 0.3125rem;
}

.p-btnSection {
	padding-bottom: 5.375rem 0 4.75rem;
}

.p-btnSection__btn {
	margin-top: 2.75rem;
}

.p-btnSection__wrapper {
	padding: 3.5625rem 1rem;
}

.p-btnSection__wrapper::before {
	height: 3.125rem;
	right: 1rem;
	width: 3.125rem;
}

.p-btnSection__main {
	font-size: 1.5rem;
	line-height: 1.8;
}

.p-btnSection__text {
	font-size: 1rem;
	line-height: 1.5;
}

.p-cancellation {
	padding: 3.4375rem 0 3.75rem;
}

.p-cancellation__box {
	border-radius: 0.9375rem;
	padding: 3.9375rem 1rem 3.4375rem;
}

.p-cancellation__text {
	font-size: 1rem;
	margin-top: 1.875rem;
	text-align: left;
}

.p-cancellation__tel {
	margin-top: 1.125rem;
}

.p-commonContact__wrapper {
	padding: 3.5625rem 1rem;
}

.p-commonContact__wrapper::before {
	height: 3.125rem;
	right: 1rem;
	width: 3.125rem;
}

.p-commonContact__title {
	font-size: 1.5rem;
	line-height: 1.8;
}

.p-commonContact__text {
	font-size: 1rem;
	line-height: 1.5;
}

.p-commonRecruit {
	padding: 5rem 0;
}

.p-commonRecruit__subTitle {
	font-size: 1.25rem;
	line-height: 1.8;
}

.p-commonRecruit__list {
	margin-top: 1.875rem;
}

.p-commonRecruit__list li {
	font-size: 1.125rem;
	margin-bottom: 0.9375rem;
	padding-bottom: 0.75rem;
	padding-left: 0.8em;
}

.p-commonRecruit__list li::before {
	height: 0.625rem;
	left: -0.2em;
	width: 0.625rem;
}

.p-commonRecruit__items {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	flex-direction: column;
	gap: 3.5rem;
	padding-left: 0;
}

.p-commonRecruit__copy {
	font-size: 1.125rem;
}

.p-contact {
	padding: 3.5rem 0 4.8125rem;
}

.p-contact__text {
	font-size: 1rem;
}

.p-contact__form {
	margin-top: 1.375rem;
}

.p-facility {
	overflow: hidden;
	padding-bottom: 5.375rem;
}

.p-facility__items {
	display: block;
	margin-top: 2.0625rem;
	padding-bottom: 4rem;
}

.p-facility__items .slick-list {
	overflow: visible;
}

.p-facility__items .slide-arrow {
	background-image: url(../images/icon/circle_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	display: inline-block;
	height: 2.5rem;
	position: absolute;
	width: 2.5rem;
	z-index: 10;
}

.p-facility__items .prev-arrow {
	-webkit-transform: rotate(180deg);
	left: calc(50% - 3.125rem);
	transform: rotate(180deg);
}

.p-facility__items .next-arrow {
	right: calc(50% - 3.125rem);
}

.p-facility__item {
	margin: 0 0.75rem;
}

.p-facility__img img {
	aspect-ratio: 280/221;
}

.p-features {
	padding: 5.375rem 0 5rem;
}

.p-features__items {
	margin-top: 1.9375rem;
}

.p-features__item {
	border-radius: 0.9375rem;
	padding: 2.3125rem 1rem;
}

.p-features__main {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	font-size: 1.5rem;
	gap: 0.75rem;
	line-height: 1.8;
	padding-bottom: 1.625rem;
	text-align: center;
	width: 100%;
}

.p-features__main::before {
	font-size: 2.5rem;
	line-height: 1;
	margin: 0;
}

.p-features__text {
	font-size: 1rem;
	margin-top: 1.375rem;
	text-align: left;
}

.p-footer__container {
	display: block;
	padding: 0 1.125rem;
}

.p-footer__wrapper.--ml-auto {
	margin: 3.875rem 0 2.6875rem;
}

.p-footer__text {
	letter-spacing: 0;
}

.p-footer__btn {
	text-align: center;
	width: 100%;
}

.p-footer__bottom {
	margin-top: 5.375rem;
}

.p-footer__img {
	margin-top: -3rem;
}

.p-footer__message {
	-webkit-transform: none;
	left: auto;
	margin: 0 auto;
	position: relative;
	top: auto;
	transform: none;
}

.p-form input[type=radio] {
	height: 1.125rem;
	width: 1.125rem;
}

.p-form input[type=radio]:checked::before {
	height: 0.5625rem;
	width: 0.5625rem;
}

.p-form__item {
	grid-template-columns: 1fr;
}

.p-form__item:not(:last-child) {
	margin-bottom: 2rem;
}

.p-form__input.--radio {
	margin-top: 0.3125rem;
	padding: 0;
}

.p-form__input.--radio .wpcf7-list-item {
	margin: 0;
}

.p-form__privacy {
	font-size: 1rem;
	padding: 1.5rem 1rem;
}

.p-form__checkbox label {
	margin-left: 0;
}

.p-form__btn {
	margin-top: 3.5rem;
}

.p-fv__inner {
	padding-top: 3.3125rem;
}

.p-fv__wrapper {
	background-image: url(../images/fv.jpg);
	border-radius: 0.9375rem;
	padding: 21.8% 0 0;
}

.p-fv__text {
	font-size: 1.625rem;
	letter-spacing: 0.0485em;
	text-align: center;
}

.p-hamburger {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #028969;
	border: none;
	border-radius: 0.3125rem;
	cursor: pointer;
	display: block;
	height: 3.4375rem;
	outline: none;
	padding: 0;
	position: fixed;
	right: 0.5rem;
	text-align: center;
	top: 0.5rem;
	width: 3.5rem;
	z-index: 101;
}

.p-header {
	-webkit-transform: none;
	border-radius: 0 0 1rem 0;
	height: 3rem;
	left: 0;
	padding: 0 1.125rem;
	transform: none;
	width: -moz-fit-content;
	width: -webkit-fit-content;
	width: fit-content;
}

.p-header__logo img {
	width: 9.6875rem;
}

.p-instagram {
	padding-bottom: 3.75rem;
}

.p-instagram__feed {
	margin-top: 1.6875rem;
}

.p-list__item {
	grid-template-columns: 1fr;
}

.p-list__description {
	margin-top: -0.6875rem;
}

.p-list__description.--map {
	display: block;
}

.p-list__description .c-btn {
	margin-left: 0;
	margin-top: 0.4375rem;
}

.p-newsList {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.p-newsList__img img {
	aspect-ratio: 343/246;
}

.p-newsList__body {
	padding-bottom: 2.4375rem;
}

.p-newsList__title {
	font-size: 1.125rem;
}

.p-pagination {
	gap: 1rem;
}

.p-pagination .page-numbers {
	font-size: 1rem;
}

.p-pagination .current {
	height: 1.875rem;
	width: 1.875rem;
}

.p-policy {
	padding: 3.5rem 0;
}

.p-policy__content p {
	font-size: 1rem;
}

.p-policy__content ol {
	margin-top: 2rem;
}

.p-policy__content li {
	font-size: 1rem;
}

.p-recruit {
	background-image: url(../images/recruit_bg_sp.png);
	padding: 7.625rem 0 0.5625rem;
}

.p-recruit__inner::after {
	bottom: auto;
	display: block;
	height: 23.9375rem;
	margin: 0 auto;
	margin-top: 2.5rem;
	position: relative;
	right: auto;
	width: 19.3125rem;
}

.p-recruit__title {
	font-size: 1.5rem;
}

.p-recruit__lead {
	font-size: 1.5rem;
	line-height: 1.8;
	margin-top: 1.5625rem;
}

.p-recruit__message {
	font-size: 1.5rem;
}

.p-recruit__text {
	font-size: 1rem;
	margin-top: 1.75rem;
}

.p-service {
	padding: 5.375rem 0;
}

.p-service__items {
	margin-top: 1.875rem;
}

.p-service__item {
	gap: 2rem;
	grid-template-columns: 1fr;
	margin-top: 0;
}

.p-service__item + .p-service__item {
	margin-top: 3.375rem;
}

.p-service__img img {
	border-radius: 0.9375rem;
}

.p-service__main {
	font-size: 1.5rem;
	line-height: 1.8;
}

.p-service__text {
	font-size: 1rem;
}

.p-serviceAbout {
	padding: 9.875rem 0 3.75rem;
}

.p-serviceAbout__inner {
	gap: 2.8125rem;
	grid-template-columns: 1fr;
}

.p-serviceAbout__inner::before {
	-webkit-transform: translateX(-50%);
	height: 44.9375rem;
	left: 50%;
	top: -6.25rem;
	transform: translateX(-50%);
	width: 44.9375rem;
}

.p-serviceAbout__img img {
	aspect-ratio: 343/261;
	border-radius: 0.9375rem;
}

.p-serviceAbout__content {
	grid-row: 1/2;
	margin-top: 0;
}

.p-serviceAbout__lead {
	font-size: 1.25rem;
}

.p-serviceAbout__text {
	font-size: 1rem;
	margin-top: 2.1875rem;
}

.p-serviceFv {
	padding-bottom: 1.1875rem;
}

.p-serviceFv__inner {
	grid-template-columns: 1fr;
	margin-right: auto;
	width: 100%;
}

.p-serviceFv__content {
	padding-top: 5.625rem;
}

.p-serviceFv__title {
	font-size: 1rem;
}

.p-serviceFv__lead {
	font-size: 1.5rem;
	line-height: 1.8;
}

.p-serviceFv__text {
	font-size: 1.125rem;
	margin-top: 1.5625rem;
}

.p-serviceFv__img {
	margin: 2.375rem calc(50% - 50vw) 0;
	padding-left: 1rem;
	width: 100vw;
}

.p-serviceFv__img img {
	aspect-ratio: 359/251;
	border-radius: 0.9375rem 0 0 0.9375rem;
}

.p-single {
	padding: 3.5rem 0;
}

.p-single__info {
	gap: 1rem;
}

.p-single__date {
	font-size: 1rem;
}

.p-single__tag {
	font-size: 0.875rem;
	padding: 0.375rem 0.6875rem;
}

.p-single__title {
	font-size: 1.5rem;
	margin-top: 1.5rem;
}

.p-single__content {
	margin-top: 2rem;
}

.p-subFv {
	padding-bottom: 3.75rem;
	padding-top: 6.5rem;
	text-align: left;
}

.p-subFv:has(.p-subFv__text) {
	padding-top: 6.5rem;
}

.p-subFv__title {
	font-size: 1.5rem;
	line-height: 1.8;
}

.p-subFv__title.--small {
	font-size: 1.25rem;
}

.p-subFv__text {
	font-size: 1rem;
	margin-top: 1.4375rem;
}

.p-topAbout {
	padding: 1.0625rem 0 0;
}

.p-topAbout__inner {
	grid-template-columns: 1fr;
	margin-right: auto;
	padding: 0;
	width: 100%;
}

.p-topAbout__content {
	padding: 1rem;
}

.p-topAbout__text1 {
	font-size: 1.125rem;
}

.p-topAbout__main {
	font-size: 1.25rem;
	line-height: 1.8;
	margin-top: 1.6875rem;
}

.p-topAbout__text2 {
	line-height: 1.8;
	margin-top: 1.6875rem;
}

.p-topAbout__text2 span {
	display: block;
	font-size: 1.5rem;
	margin-top: 2.125rem;
}

.p-topAbout__img {
	margin: 3.3125rem calc(50% - 50vw) 0;
	width: 100vw;
}

.p-topAbout__img img {
	aspect-ratio: 375/245;
	border-radius: 3.0625rem 3.0625rem 0 0;
}

.p-topCompany {
	padding: 6.5625rem 0 6.25rem;
}

.p-topCompany__box {
	margin-top: 1.875rem;
	padding: 0.25rem 1rem 1.4375rem;
}

.p-topNews__inner {
	padding: 0;
}

.p-topNews__box {
	padding: 6.625rem 1rem 6.25rem;
}

.p-topNews__title {
	text-align: center;
}

.p-topNews__list {
	margin-top: 1.875rem;
}

.p-topService {
	padding-bottom: 3rem;
}

.p-topService__subTitle {
	font-size: 1.25rem;
	line-height: 1.8;
}

.p-topService__title {
	margin-top: 0.875rem;
}

.p-topService__items {
	margin-top: 1rem;
}

.p-topService__item {
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

.p-topService__img {
	grid-row: 1/2;
}

.p-topService__item:nth-child(1) {
	grid-template-columns: 1fr;
	margin-bottom: 0;
}

.p-topService__content {
	padding-bottom: 5.25rem;
}

.p-topService__name {
	font-size: 1.375rem;
	line-height: 1.4545454545;
}

.p-topService__text {
	font-size: 1rem;
}

.p-topService__btn {
	margin-top: 2rem;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@-webkit-keyframes bounce {

0% {
	-webkit-transform: scale(0.5);
	opacity: 0;
	transform: scale(0.5);
}

30% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

70% {
	-webkit-transform: scale(0.9);
	opacity: 1;
	transform: scale(0.9);
}

100% {
	-webkit-transform: scale(1);
	opacity: 1;
	transform: scale(1);
}

}

@keyframes bounce {

0% {
	-webkit-transform: scale(0.5);
	opacity: 0;
	transform: scale(0.5);
}

30% {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

70% {
	-webkit-transform: scale(0.9);
	opacity: 1;
	transform: scale(0.9);
}

100% {
	-webkit-transform: scale(1);
	opacity: 1;
	transform: scale(1);
}

}


/*# sourceMappingURL=style.css.map */
