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

/**
 * px -> rem を CSS変数 --rem 経由で出力するヘルパ
 * 例: r(20) => calc(20 * var(--rem))  // 1.25rem 相当（基準16px）
 */

:root {
	--rem: 1rem / 16;
	--em: 1em / 16;
	--vw: 1440 * 100vw;
}

:root {
	--inner-value: 1100;
	--inner: 1100px;
	--padding-pc: 25px;
	--padding-sp: 20px;
}

:root {
	--base-font: "Zen Maru Gothic", "Noto Sans JP", system-ui, -apple-system,"Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	--en-font: "Lato", "Helvetica Neue", Arial, system-ui, sans-serif;
	--fw-light: 300;
	--fw-regular: 400;
	--fw-medium: 500;
	--fw-semi-bold: 600;
	--fw-bold: 700;
	--fw-extrabold: 800;
	--fw-black: 900;
	--leading-trim: calc((1em - 1lh) / 2);
}

:root {
	--fs-14: rem(14);
}

:root {
	--white: #fff;
	--black: #000;
	--text-black: #574133;
	--orange: #f28949;
	--green: #91bf31;
	--green02: #e3f3c9;
	--yellow: #fbac1f;
	--light-yellow: #fff1bf;
	--beige: #e6d8b6;
	--cream: #fef6e3;
	--gray: #CCCCCC;
	--gray02: #979797;
	--gray03: #C2C2C2;
	--bg-light-gray: #f5f5f5;
}

:root {
	--z-index-loader: 1000;
	--z-index-header: 100;
	--z-index-pagetop: 90;
}

:root {
	--header-height: calc(70 * var(--rem));
	--scrollbar-width: 0;
}

@property --scrollbar {
	syntax: "<length>";
	initial-value: 0;
	inherits: true;
}

:root:has(:modal[open],
.is-scroll-lock,
.loader) {
	overflow: hidden;
	scrollbar-gutter: stable;
}

body {
	background-color: var(--white);
	font-family: var(--base-font);
	color: var(--text-black);
	font-weight: var(--fw-medium);
	line-height: 1.5;
}

html {
	font-size: 16px;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

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

/* Set core body defaults */

body {
	min-height: 100svh;
	text-rendering: optimizeLegibility;
	line-height: 1.5;
	line-break: strict;
	overflow-wrap: anywhere;
}

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

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

/* Inherit fonts for inputs and buttons */

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

/* picture*/

picture {
	display: block;
	width: 100%;
	height: 100%;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

:where(dialog) {
	width: unset;
	max-width: unset;
	height: unset;
	max-height: unset;
	padding: unset;
	color: unset;
	background-color: unset;
	border: unset;
	overflow: unset;
}

:where(dialog:focus-visible) {
	outline: none;
}

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

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

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

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

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

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

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

.l-inner {
	width: 100%;
	max-width: 600px;
	margin-inline: auto;
	padding-inline: var(--padding-sp);
}

.l-outer {
	--scrollbar: calc(100vw - 100cqw);
	min-height: 100vh;
}

body:has(.loader) .l-outer {
	opacity: 0;
}

.c-button {
	display: inline-flex;
	justify-content: center;
	font-size: 0.9375rem;
	font-weight: var(--fw-bold);
	padding: 1.125rem 2rem 1.125rem 1.375rem;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	color: var(--white);
	background-color: var(--orange);
	border: 2px solid var(--orange);
	border-radius: 6.25rem;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 16.25rem;
	position: relative;
	transform: translateZ(0) translateY(0);
	transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
	will-change: transform, box-shadow;
}

.c-button.c-button--white {
	color: var(--orange);
	background-color: var(--white);
	border: 2px solid var(--white);
}

.c-button.c-button--cta {
	border: 2px solid var(--white);
	background-color: var(--green);
}

.c-button.c-button--green {
	background-color: var(--green);
	border: 2px solid var(--green);
}

.c-button.c-button--yellow {
	background-color: var(--yellow);
	border: 2px solid var(--yellow);
}

.c-button::before {
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	content: "";
	width: 6px;
	height: 6px;
	aspect-ratio: 1/1;
	background-color: var(--white);
	border-radius: 3.125rem;
	transform: translateY(-50%);
	transition: transform 0.3s, opacity 0.3s, width 0.3s, height 0.3s, right 0.3s;
}

.c-button::after {
	position: absolute;
	top: 50%;
	right: 12px;
	content: "";
	width: 0.9375rem;
	aspect-ratio: 20/16;
	-webkit-mask-image: url(../../assets/images/common/arrow_white.svg);
	mask-image: url(../../assets/images/common/arrow_white.svg);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	opacity: 0;
	background-color: var(--white);
	transform: translateY(-50%) scale(0);
	transition: transform 0.3s, opacity 0.3s;
}

.c-button.c-button--white::before {
	background-color: var(--orange);
}

.c-button.c-button--green-footer {
	padding: 1.125rem 1.875rem;
	width: 100%;
	max-width: 15rem;
	background-color: var(--green);
	border: 2px solid var(--green);
	min-width: initial;
}

.c-button.c-button--orange-footer {
	padding: 1.125rem 1.875rem;
	width: 100%;
	max-width: 15rem;
	min-width: initial;
}

.c-button.c-button--green-footer::before,
.c-button.c-button--orange-footer::before {
	display: none;
}

/* 動きが苦手な利用者配慮 */

.c-lower-mv {
	padding-top: 6.875rem;
	background-color: var(--cream);
	position: relative;
	padding-bottom: 5rem;
}

.c-lower-mv::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: inherit;
	aspect-ratio: 1440/117;
	background-image: url(../../assets/images/top/curve_white.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.c-lower-mv__inner {
	display: flex;
	gap: 1.25rem;
	flex-direction: column;
	align-items: center;
}

.c-lower-mv__title {
	font-size: 2.25rem;
	font-weight: var(--bold);
	text-align: center;
	text-transform: uppercase;
}

.c-lower-mv__img {
	max-width: 29.625rem;
	width: 60%;
}

.c-note {
	position: relative;
	background-color: var(--white);
	border-radius: 1.25rem;
	background-image: url(../../assets/images/top/note.png);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 3rem 1.25rem;
}

.c-note__title {
	font-size: 1.25rem;
	font-weight: var(--fw-bold);
	line-height: 1.6;
}

.c-note__deco {
	position: absolute;
	top: -1.25rem;
	right: 1.25rem;
	content: "";
	width: 100%;
	height: auto;
	aspect-ratio: 176/122;
	max-width: 6.25rem;
}

.c-note__deco img {
	display: block;
	will-change: transform;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.c-note__list {
	margin-top: 1.5rem;
	margin-top: 1.5rem;
}

.c-note__list li {
	padding-left: 1.25rem;
	position: relative;
	font-size: 1rem;
	line-height: 1.6;
}

.c-note__list li + li {
	margin-top: 0.5rem;
}

.c-note__list li::before {
	position: absolute;
	top: 0.75rem;
	left: 0;
	content: "";
	width: 0.375rem;
	height: 0.375rem;
	aspect-ratio: 1/1;
	background-color: var(--orange);
	border-radius: 1.25rem;
}

.c-note__text {
	margin-top: 1rem;
	font-size: 1rem;
}

.c-note__title.c-note__title--bottom {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 2px dotted var(--text-black);
}

.c-pagination {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	text-align: center;
}

/* WP標準の .navigation の余白リセット */

.c-pagination .navigation {
	margin: 0;
}

/* ==========================================
   1) 前後リンクタイプ
   （the_post_navigation / the_posts_navigation）
   ========================================== */

.c-pagination .post-navigation .nav-links,
.c-pagination .posts-navigation .nav-links {
	display: flex;
	gap: 1rem;
	justify-content: space-between;
}

.c-pagination .post-navigation .nav-previous a,
.c-pagination .post-navigation .nav-next a,
.c-pagination .posts-navigation .nav-previous a,
.c-pagination .posts-navigation .nav-next a {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.875rem;
	line-height: 1.6;
	text-decoration: none;
	color: var(--text-black);
	padding: 0.375rem 0;
	word-break: break-all;
}

/* 前：左寄せ／次：右寄せ */

.c-pagination .post-navigation .nav-previous a,
.c-pagination .posts-navigation .nav-previous a {
	justify-content: flex-start;
}

.c-pagination .post-navigation .nav-next a,
.c-pagination .posts-navigation .nav-next a {
	justify-content: flex-end;
}

.c-pagination .post-navigation a:hover,
.c-pagination .post-navigation a:focus,
.c-pagination .posts-navigation a:hover,
.c-pagination .posts-navigation a:focus {
	opacity: 0.8;
}

/* ==========================================
   2) 数字タイプ（the_posts_pagination 用）
   ========================================== */

.c-pagination .pagination .nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.c-pagination .pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	padding: 0 0.5rem;
	border-radius: 62.4375rem;
	font-size: 0.875rem;
	line-height: 1;
	text-decoration: none;
	border: 1px solid var(--beige);
	color: var(--text-black);
	background-color: var(--white);
}

.c-pagination .pagination .page-numbers.current {
	border-color: var(--orange);
	background-color: var(--orange);
	color: var(--white);
}

/* 前へ / 次へ */

.c-pagination .pagination .page-numbers.prev,
.c-pagination .pagination .page-numbers.next {
	padding: 0 0.875rem;
}

.c-pagination .pagination .page-numbers:hover,
.c-pagination .pagination .page-numbers:focus {
	opacity: 0.85;
}

/* ==========================================
   3) paginate_links（home.php など）用
   ========================================== */

/* 数字（全体共通） */

.c-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	height: 2rem;
	margin: 0 0.25rem;
	border-radius: 50%;
	font-size: 0.875rem;
	line-height: 1;
	text-decoration: none;
	border: 1px solid var(--beige);
	color: var(--text-black);
	background-color: var(--white);
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

/* 現在ページ（表示中のページ）：ホバーしても変化させない */

.c-pagination .page-numbers.current {
	border-color: var(--orange);
	background-color: var(--orange);
	color: var(--white);
	font-weight: var(--bold);
	cursor: default;
	pointer-events: none;
}

/* 「…」などの省略記号 */

.c-pagination .page-numbers.dots {
	border: none;
	background: transparent;
	color: var(--gray03);
	cursor: default;
	pointer-events: none;
}

/* ページ送りができる番号だけ、ホバーでカラー反転 */

.c-pagination .page-numbers:not(.current):not(.dots):hover,
.c-pagination .page-numbers:not(.current):not(.dots):focus {
	border-color: var(--orange);
	background-color: var(--orange);
	color: var(--white);
}

.c-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.c-title__en {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	font-size: 1.125rem;
	font-weight: var(--fw-bold);
	line-height: 1;
	letter-spacing: 0.05em;
	font-family: var(--en-font);
	color: var(--orange);
	text-transform: uppercase;
}

.c-title.c-title--white .c-title__en {
	color: var(--white);
}

.c-title__en::before,
.c-title__en::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	width: 0.375rem;
	height: 0.375rem;
	aspect-ratio: 1/1;
	background-color: var(--orange);
	border-radius: 3.125rem;
}

.c-title.c-title--white .c-title__en::before,
.c-title.c-title--white .c-title__en::after {
	background-color: var(--white);
}

.c-title__en::before {
	left: -1.625rem;
}

.c-title__en::after {
	right: -1.625rem;
}

.c-title__ja {
	margin-top: 0.75rem;
	font-size: 1.75rem;
	font-weight: var(--fw-bold);
	line-height: 1;
}

.p-contact__contents {
	background-color: var(--cream);
	border-radius: 1.25rem;
	padding: 2.5rem 1.25rem;
	box-shadow: 0.375rem 0.375rem 0 0 var(--beige);
}

.p-contact__content:first-child {
	border-top: 2px dotted var(--beige);
}

.p-contact__content {
	padding: 1rem 0;
	border-bottom: 2px dotted var(--beige);
}

.p-contact__head {
	font-size: 1rem;
	font-weight: var(--bold);
	line-height: 1.6;
}

.p-contact__head label {
	display: flex;
	align-items: center;
}

.p-contact__required {
	color: var(--orange);
}

.p-contact__item {
	width: 100%;
}

.p-contact__item p {
	margin-top: 0.625rem;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-date,
.p-contact__item-time,
.p-contact__item-textarea {
	width: 100%;
	border-radius: 0.3125rem;
	font-size: 1rem;
	padding: 0.625rem;
	line-height: 1.6;
	background-color: var(--white);
}

.p-contact__comment {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.9375rem;
	font-weight: var(--medium);
	line-height: 1.6;
}

::-moz-placeholder {
	color: var(--gray03);
}

::placeholder {
	color: var(--gray03);
}

.p-contact__item .p-contact__item-textarea {
	resize: none;
	overflow: auto;
	height: 13.4375rem;
}

.p-contact__policy {
	text-align: center;
	margin-top: 3rem;
}

.p-contact__policy-link {
	text-decoration: underline;
}

.p-contact__item-radio input[type=radio],
.p-contact__item-checkbox input[type=checkbox] {
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-contact__item-radio input[type=radio] + span,
.p-contact__item-checkbox input[type=checkbox] + span {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding: 0.5em 1em 0.5em 1.5em;
	font-feature-settings: normal;
	font-size: 1rem;
}

.p-contact__item-radio input[type=radio]:focus + span,
.p-contact__item-checkbox input[type=checkbox]:focus + span {
	opacity: 0.7;
}

.p-contact__item-radio input[type=radio] + span::before,
.p-contact__item-checkbox input[type=checkbox] + span::before {
	position: absolute;
	top: 50%;
	left: -1.25rem;
	width: 1.25rem;
	height: 1.25rem;
	content: "";
	transform: translateY(-50%);
	border: 1px solid var(--text-black);
	background-color: var(--white);
}

.p-contact__item-radio input[type=radio] + span::before {
	left: 0;
}

.p-contact__item-radio input[type=radio] + span::before {
	width: 1em;
	height: 1em;
}

.p-contact__item-checkbox input[type=checkbox] + span::after {
	border-bottom: 2px solid var(--orange);
	border-left: 2px solid var(--orange);
	content: "";
	display: block;
	height: 0.5rem;
	left: -1rem;
	margin-top: -0.1em;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 0.8em;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::after,
.p-contact__item-radio input[type=radio]:checked + span::after {
	opacity: 1;
}

.p-contact__item-checkbox input[type=checkbox] + span::before {
	border-radius: 0.125rem;
}

.p-contact__item-radio input[type=radio] + span::before {
	border-radius: 50%;
}

.p-contact__item-radio input[type=radio] + span::after {
	position: absolute;
	content: "";
	background: var(--text-black);
	border: 1px solid transparent;
	border-radius: 50%;
	height: 0.5em;
	left: 0.25em;
	opacity: 0;
	padding: 0.125em;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	width: 0.5em;
}

.p-contact__btn {
	margin: 2.625rem auto 0;
	text-align: center;
}

.p-contact__btn input[type=submit],
.p-contact__btn input[type=button] {
	transition: all 0.3s;
}

.p-contact__btn input[type=submit]:hover,
.p-contact__btn input[type=button]:hover,
.p-contact__btn input[type=submit]:focus,
.p-contact__btn input[type=button]:focus {
	color: var(--orange);
	background-color: var(--white);
	opacity: 1;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.c-button:disabled,
input.wpcf7-form-control.wpcf7-submit.has-spinner.c-button:disabled:hover {
	background-color: var(--gray03);
	border: 2px solid var(--gray03);
	background-image: initial;
	opacity: 1;
	transform: none;
	box-shadow: none;
	color: var(--white);
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.c-button:disabled:hover {
	opacity: 1;
}

.wpcf7-spinner {
	position: absolute;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.p-contact__btn-submit:disabled {
	background-color: var(--orange);
	color: var(--white);
}

.p-cta {
	background-image: url(../../assets/images/common/contact_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 6.25rem 0;
	background-position: bottom;
}

.p-cta__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1.875rem;
}

.p-cta__title {
	font-size: 1.75rem;
	font-weight: var(--fw-bold);
	line-height: 1;
	color: var(--white);
}

.p-cta__lead {
	font-size: 1.0625rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
	color: var(--white);
	margin-top: 1.25rem;
}

.p-download {
	background-color: var(--light-yellow);
	padding: 3.75rem 0 1.25rem;
}

.p-download__cols {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	background-color: var(--white);
	border-radius: 0.9375rem;
	padding: 2.5rem 1.25rem;
	flex-direction: row;
}

.p-download__col--left {
	border-bottom: 2px dotted var(--text-black);
	padding-bottom: 1.875rem;
}

.p-download__heading {
	position: relative;
	text-align: center;
	font-size: 1.25rem;
	font-weight: var(--fw-bold);
	padding-bottom: 1rem;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.p-download__heading span {
	font-size: 1rem;
	display: block;
}

.p-download__heading::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 3.125rem;
	height: 3px;
	border-radius: 0.625rem;
	background-color: var(--orange);
}

.p-download__col--right .p-download__heading::before {
	background-color: var(--green);
}

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

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

.p-download__link {
	display: flex;
	gap: 0.75rem;
	padding: 0.375rem 0;
	font-size: 0.9375rem;
	transition: color 0.3s;
}

.p-download__col--right {
	margin-top: 3rem;
}

.p-download__icon {
	display: inline-block;
	width: 100%;
	max-width: 1.25rem;
	transition: transform 0.3s;
}

.p-footer {
	background-color: var(--light-yellow);
	padding-bottom: 6.25rem;
	padding-top: 2.5rem;
}

.p-footer__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.p-footer__logo {
	display: block;
	width: 100%;
	max-width: 12.5rem;
}

.p-footer__logo img {
	width: 100%;
	height: auto;
	aspect-ratio: 200/48;
	object-fit: contain;
}

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

.p-footer__address {
	font-style: normal;
}

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

.p-footer__navs {
	margin-top: 2.5rem;
}

.p-footer__nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.p-footer__nav a {
	transition: color 0.3s;
}

.p-footer__menu-head a {
	font-size: 1rem;
	font-weight: var(--fw-bold);
	padding: 0.625rem;
	display: block;
}

.p-footer__menu-linkHead {
	margin-bottom: 0.625rem;
	padding-left: 0.625rem;
	font-weight: var(--fw-bold);
}

.p-footer__menu-link:first-of-type {
	margin-top: 1.5rem;
}

.p-footer__menu-link a {
	padding: 0.375rem 1.5rem;
	position: relative;
	display: block;
	font-weight: var(--fw-bold);
}

.p-footer__menu-link a::before {
	position: absolute;
	top: 50%;
	left: 0.625rem;
	transform: translateY(-50%);
	content: "";
	width: 0.375rem;
	height: 0.375rem;
	aspect-ratio: 1/1;
	background-color: var(--orange);
	border-radius: 3.125rem;
}

.p-footer__menu {
	margin-top: 0.625rem;
}

.p-footer__menu-link + .p-footer__menu-link {
	margin-top: 0.125rem;
}

.p-footer__menu-head + .p-footer__menu-head {
	margin-top: 0.25rem;
}

.p-footer__sns {
	display: flex;
	margin-top: 1.25rem;
}

.p-footer__sns-link {
	padding: 1.25rem;
	transition: 0.3s;
}

.p-footer__sns-link img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: cover;
	max-width: 1.875rem;
}

.p-footer__cta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	margin-top: 2.5rem;
}

.p-footer__copy {
	margin-top: 2.5rem;
}

.p-header {
	position: fixed;
	z-index: 900;
	top: 0;
	right: 0;
	left: 0;
	height: var(--header-height);
	background-color: var(--cream);
}

.p-header__inner {
	padding-left: 2.8vw;
	height: inherit;
	height: inherit;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.p-header__logo {
	position: relative;
	z-index: 1000;
	max-width: 10rem;
	width: 100%;
	height: inherit;
}

.p-header__logo img {
	width: 100%;
	height: auto;
	object-fit: contain;
	aspect-ratio: 401/97;
}

.p-header__logo-link {
	height: inherit;
	display: flex;
	align-items: center;
}

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

.p-header__nav-list {
	display: flex;
	height: inherit;
}

.p-header__nav-modal-wrap,
.p-header__nav-item {
	height: inherit;
}

.p-header__nav-modal-wrap {
	position: relative;
}

.p-header__nav-modal {
	background-color: var(--white);
	padding: 0.5rem 0.5rem 0.5rem 1rem;
	border-radius: 0.625rem;
	position: absolute;
	bottom: -7.5rem;
	right: 0;
	width: -moz-max-content;
	width: max-content;
	height: auto;
	transform: rotateX(90deg);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0.6s;
}

.p-header__nav-modal-wrap:is(:hover,
:focus-within) > .p-header__nav-modal {
	opacity: 1;
	transform: rotateX(0);
	visibility: visible;
	pointer-events: auto;
	transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s linear 0s;
}

.p-header__nav-modal-item > a {
	padding: 0.5rem 0.5rem 0.5rem 0.875rem;
	display: block;
	font-weight: var(--fw-bold);
	position: relative;
	transition: color 0.3s;
}

.p-header__nav-modal-item > a::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: "";
	width: 0.375rem;
	height: 0.375rem;
	background-color: var(--orange);
	border-radius: 3.125rem;
}

.p-header__nav-item:not(:first-child) {
	margin-left: 0.75rem;
}

.p-header__link,
.p-header__nav-modal-text {
	position: relative;
	padding: 0 0.625rem;
	height: inherit;
	display: flex;
	align-items: center;
	font-weight: var(--fw-bold);
	line-height: 1;
	transition: color 0.3s;
	cursor: pointer;
}

.p-header__cta {
	display: flex;
	height: inherit;
	align-items: center;
}

.p-header__telephone {
	height: inherit;
	margin-left: 2.8vw;
}

.p-header__telephone-link {
	position: relative;
	padding: 0 0.625rem;
	font-size: 1.25rem;
	height: inherit;
	display: flex;
	align-items: center;
	font-weight: var(--fw-bold);
	line-height: 1;
	transition: opacity 0.3s, transform 0.3s, color 0.3s;
}

.p-header__telephone-link::after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 1rem;
	height: 1.25rem;
	display: block;
	transform: translateY(-50%);
	aspect-ratio: 16/20;
	background-image: url(../../assets/images/common/phone.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.p-header__cta-instagram {
	margin-left: 2.8vw;
}

.p-header__cta-instagramLink {
	display: block;
	transition: opacity 0.3s;
}

.p-header__cta-line {
	margin-left: 1.6vw;
}

.p-header__cta-lineLink {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	background-color: #06c755;
	border-radius: 0.375rem;
	padding: 0.25rem 0.625rem;
	transition: opacity 0.3s;
}

.p-header__cta-lineLink img {
	aspect-ratio: 1/1;
	max-width: 1.25rem;
	width: 100%;
}

/* ロゴ・インスタは中のimgをフェード */

.p-header__logo a img,
.p-header__cta-instagramLink img {
	transition: opacity 0.3s ease;
	will-change: opacity;
	backface-visibility: hidden;
}

/* LINEボタンはテキストも含めて全体を薄くしたい場合は親でOK。
   Safari対策としてレイヤー昇格だけ付けます。 */

.p-header__cta-lineLink {
	transition: opacity 0.3s ease;
	will-change: opacity;
	transform: translateZ(0);
	backface-visibility: hidden;
}

.p-header__cta-lineText {
	font-size: 0.8125rem;
	color: var(--white);
	line-height: 1.2;
}

.p-header__hamburger {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	position: relative;
	z-index: 999;
	width: 4rem;
	height: inherit;
	background-color: var(--orange);
	cursor: pointer;
	transition: 0.3s;
}

.p-header__hamburger span {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	width: 1.5625rem;
	height: 2px;
	background-color: var(--white);
	transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
	top: -0.375rem;
}

.p-header__hamburger span:nth-of-type(2) {
	top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
	top: 0.375rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
	top: 0;
	transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
	opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
	top: -0.25rem;
	transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
	margin-top: 4.375rem;
	padding-bottom: 10rem;
	display: none;
	position: absolute;
	z-index: 900;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--cream);
	overflow-y: scroll;
	scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
	display: none;
}

.p-drawer__item {
	border-bottom: 1px solid var(--white);
}

.p-drawer__list {
	padding-top: 3.75rem;
}

.p-drawer__link,
.p-drawer__modal-text {
	padding: 1.25rem 3.125rem;
	display: block;
	font-size: 1rem;
	font-weight: var(--fw-medium);
	line-height: 1;
	letter-spacing: 0.05em;
	cursor: pointer;
}

.p-drawer__modal-item a {
	position: relative;
	padding: 1.25rem 4.375rem;
	display: block;
	font-size: 1rem;
	font-weight: var(--fw-medium);
	line-height: 1;
	letter-spacing: 0.05em;
	cursor: pointer;
	border-bottom: 1px solid var(--white);
}

.p-drawer__modal-item a::before {
	position: absolute;
	content: "";
	top: 50%;
	left: 3.125rem;
	transform: translateY(-50%);
	width: 0.375rem;
	height: 0.375rem;
	background-color: var(--orange);
	border-radius: 1.25rem;
}

.p-drawer__cta {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	margin-top: 0.625rem;
}

.p-drawer__telephone-number {
	margin-top: 1.25rem;
	padding: 1.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.25rem;
	font-size: 1.5rem;
	font-weight: var(--fw-medium);
	line-height: 1;
	letter-spacing: 0.05em;
	cursor: pointer;
}

.p-guide-content__item-img {
	width: 100%;
}

.p-drawer__telephone-number img {
	width: 100%;
	height: auto;
	aspect-ratio: 16/20;
	object-fit: contain;
	max-width: 1.5rem;
}

.p-drawer__cta-instagramLink {
	padding: 1.25rem;
	display: block;
	width: 100%;
}

.p-drawer__cta-instagramLink img {
	height: auto;
	width: 2.5rem;
	aspect-ratio: 1/1;
	object-fit: cover;
}

.p-drawer__cta-lineLink {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	background-color: #06c755;
	border-radius: 0.375rem;
	padding: 0.625rem 1.25rem;
}

.p-drawer__cta-lineLink img {
	aspect-ratio: 1/1;
	max-width: 1.875rem;
	width: 100%;
}

.p-drawer__cta-lineText {
	font-size: 0.875rem;
	color: var(--white);
	line-height: 1.2;
}

.p-lower-section {
	padding-top: 2.5rem;
	padding-bottom: 5rem;
}

.p-lower-section__container {
	margin: 0 auto;
}

.p-lower-section__title {
	font-size: 1.5rem;
	text-align: center;
}

.p-lower-section__text-wrap {
	margin-top: 1.875rem;
}

.p-lower-section__text {
	font-size: 1rem;
	line-height: 1.8;
}

.p-lower-section__text + .p-lower-section__text {
	margin-top: 0.625rem;
}

.p-lower-section__button {
	margin: 2.625rem auto 0;
	text-align: center;
}

.p-privacy__text {
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-top: 0.3125rem;
}

.p-privacy__text.p-privacy__text--top {
	margin-top: 0;
}

.p-privacy__text-head {
	font-size: 1.125rem;
	font-weight: var(--bold);
	margin-top: 1.25rem;
	padding-bottom: 0.625rem;
	border-bottom: dotted 2px var(--orange);
}

.p-privacy__text-box {
	margin-top: 1.25rem;
	width: -moz-fit-content;
	width: fit-content;
	padding: 0.625rem;
	border: 1px solid var(--text-black);
	border-radius: 0.625rem;
}

.p-single {
	margin-top: 1.5rem;
}

.p-single__listItemDate {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--gray03);
	margin-top: 0;
}

.p-single__listItemTitle {
	font-size: 1.375rem;
	font-weight: var(--bold);
	line-height: 1.6;
	margin-top: 0.75rem;
	color: var(--text-black);
}

.p-single__thumbnail {
	margin: 1.5rem auto 0;
	border-radius: 1rem;
	overflow: hidden;
	max-width: 56.25rem;
}

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

/* 本文全体のベース */

.p-single__content {
	font-size: 1rem;
	line-height: 1.9;
	color: var(--text-black);
	margin-top: 2rem;
}

/* 最初の要素だけは上マージンを 0 に */

.p-single__content > *:first-child {
	margin-top: 0;
}

/* 段落：余白は上に */

.p-single__content p {
	margin-top: 1.125rem;
	margin-bottom: 0;
}

/* 段落が続くときの微調整（p + p） */

.p-single__content p + p {
	margin-top: 0.625rem;
}

/* リスト：オレンジの点付きにする */

.p-single__content ul,
.p-single__content ol {
	margin-top: 1.25rem;
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
}

.p-single__content li {
	position: relative;
	padding-left: 1.25rem;
	margin-top: 0.5rem;
	line-height: 1.9;
}

/* オレンジの丸い点 */

.p-single__content li::before {
	content: "";
	position: absolute;
	top: 0.9em;
	left: 0;
	transform: translateY(-50%);
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background-color: var(--orange);
}

/* 強調・リンク */

.p-single__content strong {
	font-weight: var(--bold);
}

.p-single__content a {
	text-decoration: underline;
	text-underline-offset: 0.2em;
	color: var(--orange);
}

.p-single__content a:hover,
.p-single__content a:focus {
	opacity: 0.8;
}

/* 改行 <br> が続く時に詰まりすぎないように */

.p-single__content br {
	line-height: 2;
}

.p-single__button {
	margin-top: 2.5rem;
	text-align: center;
}

.p-top-about {
	background-color: var(--cream);
	position: relative;
	padding-top: 1.25rem;
	padding-bottom: 7.5rem;
}

.p-top-about::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: auto;
	aspect-ratio: 1440/167;
	background-image: url(../../assets/images/top/curve_white.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
}

.p-top-about__inner {
	position: relative;
}

.p-top-about__container {
	position: relative;
	z-index: 10;
}

.p-top-about__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	font-size: min(20px, 4.8vw);
}

.p-top-about__title span {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.p-top-about__title-top {
	padding-bottom: 0.9375rem;
	padding-left: 0.3125rem;
}

.p-top-about__title-top::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: calc(100% - 10px);
	height: 0.1875rem;
	background-image: url(../../assets/images/top/top_about_line_short.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.p-top-about__title-bottom {
	padding: 0.9375rem 0.25rem;
}

.p-top-about__title-bottom::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 0.1875rem;
	background-image: url(../../assets/images/top/top_about_line_long.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.p-top-about__text-wrap {
	margin-top: 2.5rem;
}

.p-top-about__head {
	font-size: min(20px, 4.8vw);
	font-weight: var(--fw-bold);
	line-height: 1.8;
}

.p-top-about__text {
	margin-top: 1.25rem;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	line-height: 1.8;
}

.p-top-about__button {
	margin-top: 3rem;
	text-align: center;
}

.p-top-about__bg {
	position: absolute;
	top: 21%;
	content: "";
	width: 90%;
	left: 50%;
	transform: translateX(-50%);
	height: inherit;
	max-width: 41.25rem;
}

.p-top-blog {
	position: relative;
	padding-top: 7.5rem;
	padding-bottom: 5rem;
	background-color: var(--cream);
}

.p-top-blog__inner {
	position: relative;
	z-index: 1;
}

.p-top-blog__deco {
	position: absolute;
	top: 0;
	left: 1.25rem;
	content: "";
	max-width: 27.25rem;
	width: 60vw;
	aspect-ratio: 436/187;
	z-index: 1;
}

.p-top-blog__lead {
	margin-top: 2.5rem;
}

.p-top-blog__items {
	margin-top: 2.5rem;
	display: grid;
	gap: 1.875rem;
	grid-template-columns: repeat(1, 1fr);
}

.p-top-blog__link {
	transition: opacity 0.3s;
	display: block;
}

.p-top-blog__thumb {
	border-radius: 1.25rem;
	overflow: hidden;
}

.p-top-blog__thumb img {
	width: 100%;
	height: auto;
	aspect-ratio: 340/225;
	object-fit: cover;
}

.p-top-blog__date {
	margin-top: 0.5rem;
	display: block;
	font-size: 0.875rem;
	font-weight: var(--fw-medium);
	line-height: 1.6;
	color: var(--gray02);
}

.p-top-blog__item-title {
	margin-top: 0.25rem;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	line-height: 1.6;
}

.p-top-blog__more {
	text-align: center;
	margin-top: 2.5rem;
}

.p-top-blog__sns {
	margin-top: 3.75rem;
}

.p-top-blog__insta {
	transition: opacity 0.3s;
	display: block;
}

.p-top-flow {
	position: relative;
	background-color: var(--cream);
	padding-top: 7.5rem;
	padding-bottom: 10rem;
	overflow: hidden;
}

.p-top-flow__inner {
	position: relative;
	z-index: 1;
}

.p-top-flow::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: auto;
	aspect-ratio: 1440/167;
	background-image: url(../../assets/images/top/curve_white.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
}

.p-top-flow__deco-clouds {
	position: absolute;
	content: "";
	height: auto;
	aspect-ratio: 170/123;
	width: 100%;
	max-width: 7.5rem;
	pointer-events: none;
	will-change: transform;
	backface-visibility: hidden;
}

.p-top-flow__deco-clouds img {
	width: 100%;
	height: auto;
	aspect-ratio: 170/123;
	object-fit: cover;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--01 {
	left: 0;
	top: 2.5rem;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--02 {
	display: none;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--03 {
	left: 0;
	bottom: 18%;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--04 {
	display: none;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--05 {
	right: 0;
	bottom: 1.5%;
}

.p-top-flow__lead {
	margin-top: 2.5rem;
	font-size: 1rem;
	font-weight: var(--fz-medium);
	line-height: 1.8;
}

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

.p-flow-step {
	position: relative;
	background-color: var(--white);
	box-shadow: 0.375rem 0.375rem 0 0 var(--beige);
	border-radius: 0.9375rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4vw;
	max-width: 56.25rem;
	margin: auto;
	padding: 2.5rem 1.25rem;
}

.p-flow-step:not(:last-of-type)::after {
	position: absolute;
	bottom: -1.875rem;
	left: 50%;
	transform: translateX(-50%);
	content: "";
	width: 1.5rem;
	height: 1rem;
	aspect-ratio: 24/16;
	background-image: url(../../assets/images/common/triangle.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.p-flow-step + .p-flow-step {
	margin-top: 2.5rem;
}

.p-flow-step__icon {
	width: 6.25rem;
	height: 6.25rem;
	aspect-ratio: 1/1;
	background-color: var(--cream);
	border-radius: 6.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-flow-step img {
	width: 50%;
}

.p-flow-step:nth-child(1) img {
	aspect-ratio: 66/67;
	max-width: 4.125rem;
}

.p-flow-step:nth-child(2) img {
	aspect-ratio: 59/64;
	max-width: 3.6875rem;
}

.p-flow-step:nth-child(3) img {
	aspect-ratio: 54/58;
	max-width: 3.375rem;
}

.p-flow-step:nth-child(4) img {
	aspect-ratio: 69/45;
	max-width: 4.3125rem;
}

.p-flow-step__title-wrap {
	position: relative;
	display: flex;
	gap: 1.5rem;
	align-items: center;
	padding-bottom: 0.875rem;
}

.p-flow-step__title-wrap::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	border-bottom: 2px dotted #dddddd;
	border-radius: 10px;
}

.p-flow-step__title-wrap::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 4.0625rem;
	height: 2px;
	border-bottom: 2px solid var(--orange);
	border-radius: 10px;
}

.p-flow-step__stage-label {
	font-size: 1.25rem;
	font-weight: var(--fw-bold);
	line-height: 1;
	font-family: var(--en-font);
	color: var(--orange);
	position: relative;
}

.p-flow-step__stage-label span {
	font-size: 1rem;
	text-transform: uppercase;
}

.p-flow-step__title {
	font-size: 1.25rem;
	font-weight: var(--fw-bold);
	line-height: 1.6;
}

.p-flow-step__title span {
	font-size: 1rem;
	display: block;
}

.p-flow-step__text {
	margin-top: 1.5rem;
	font-size: 1rem;
	font-weight: var(--fw-medium);
	line-height: 1.8;
}

.p-top-flow__notice {
	margin-top: 3.75rem;
}

.p-top-flow__area {
	background-color: var(--green02);
	border-radius: 0.9375rem;
	display: flex;
	overflow: hidden;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 7.5rem;
}

.p-top-flow__area-title {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-weight: var(--fw-bold);
	line-height: 1.6;
	font-size: 1.5rem;
}

.p-top-flow__pin {
	width: 1.25rem;
	aspect-ratio: 27/38;
}

.p-top-flow__area-body {
	padding: 2rem 1.25rem;
}

.p-top-flow__area-text {
	margin-top: 1.25rem;
	font-size: 1rem;
	line-height: 1.8;
}

.p-top-mv {
	background-color: var(--cream);
	height: 100vh;
	min-height: 37.5rem;
	padding-top: 4.375rem;
	position: relative;
	z-index: 1;
}

.p-top-mv__deco {
	position: absolute;
	bottom: 30px;
	left: 1.25rem;
	content: "";
	max-width: 27.25rem;
	width: 60vw;
	aspect-ratio: 436/187;
	z-index: -1;
}

.p-top-mv__inner {
	height: calc(100vh - 11.25rem);
	padding: 0 1.25rem;
}

.p-top-mv__container {
	position: relative;
}

.p-top-mv__media {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
}

.splide__slide {
	border-radius: 1.25rem;
	overflow: hidden;
}

.p-top-mv__container,
.p-top-mv__media,
.splide__track,
.splide__list,
.p-top-mv .splide__slide,
.p-top-mv .p-top-mv__img {
	height: inherit;
	min-height: inherit;
}

.p-top-mv .p-top-mv__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-top-mv__content {
	position: absolute;
	bottom: 5rem;
	left: 2.8vw;
	content: "";
	width: -moz-fit-content;
	width: fit-content;
	color: var(--white);
}

.p-top-mv__badge {
	width: 6.25rem;
	aspect-ratio: 1/1;
	background-color: var(--yellow);
	border-radius: 6.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-left: auto;
	margin-right: 0.625rem;
}

.p-top-mv__badge-line1 {
	font-size: 1.75rem;
	font-weight: var(--fw-bold);
	font-family: var(--en-font);
	line-height: 1;
}

.p-top-mv__badge-line1 span {
	font-size: 1.0625rem;
	font-family: var(--base-font);
}

.p-top-mv__badge-line2 {
	font-size: 0.875rem;
}

.p-top-mv__title {
	margin-top: 2.5rem;
	font-size: 1.5rem;
	font-weight: var(--fw-bold);
	line-height: 1.6;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.p-top-mv__lead {
	margin-top: 1.875rem;
	font-size: 0.9375rem;
	font-weight: var(--fw-bold);
	line-height: 2;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.c-cta-wrap {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	width: 100%;
	max-width: 18.75rem;
	z-index: 1000;
	justify-content: center;
}

/* 親ではなく img をフェードさせる */

.c-cta-wrap__link {
	display: block;
}

.c-cta-wrap__link img,
.c-cta-wrap__link picture img {
	transition: opacity 0.3s ease;
	will-change: opacity;
	backface-visibility: hidden;
}

/* ==== MV 画像ゆるズーム（Ken Burns） ==== */

/* デフォ値：4秒。JSで --mv-interval を上書きできます */

:root {
	--mv-interval: 4000ms;
}

.p-top-mv .p-top-mv__img {
	transform: scale(1.05); /* 開始時ちょい拡大（縁カット対策） */
	will-change: transform;
	backface-visibility: hidden; /* 非アクティブ時はアニメ無効 */
	animation: none;
}

/* アクティブスライドのみ、ゆるズームを実行 */

.p-top-mv .splide__slide.is-active .p-top-mv__img { /* interval に合わせて自動で時間が決まる */
	animation: mv-kenburns var(--mv-interval) linear forwards;
}

/* 好みでSPは弱めに */

/* キーフレーム：1.05 -> 1.12（お好みで微調整）*/

.p-top-news {
	padding-bottom: 5rem;
	padding-top: 4rem;
}

.p-top-news__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.p-top-news__head {
	display: contents;
}

.p-top-news__more {
	order: 1;
	margin-top: 3rem;
	text-align: center;
}

.p-top-news__body {
	width: 100%;
	max-width: 38.75rem;
	margin-top: 2rem;
}

.p-news-list__link {
	display: block;
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--gray);
}

.p-news-list__item:first-of-type .p-news-list__link {
	padding: 0 0 1.5rem;
}

.p-news-list__date {
	font-size: 0.875rem;
	font-weight: var(--fw-medium);
	line-height: 1.6;
	color: var(--gray02);
}

.p-news-list__cat {
	margin-left: 1.5rem;
	font-size: 0.875rem;
	font-weight: var(--fw-medium);
	line-height: 1.6;
	background-color: var(--cream);
	border-radius: 4px;
	padding: 0.125rem 0.75rem;
	display: inline-block;
}

.p-news-list__title,
.p-top-news__empty {
	font-size: 1rem;
	font-weight: var(--fw-medium);
	line-height: 1.6;
	margin-top: 0.5rem;
	transition: color 0.3s;
}

.p-top-recruit {
	background-image: url(../../assets/images/top/top_recruit_bg_sp.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding: 12.5rem 0 5rem;
	background-position: 27%;
}

.p-top-recruit__media {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: inherit;
}

.p-top-recruit__card {
	color: var(--white);
	max-width: 31.25rem;
	margin-left: auto;
	position: relative;
}

.p-top-recruit__desc {
	margin-top: 3rem;
	text-align: center;
	font-size: 1.125rem;
	font-weight: var(--fw-medium);
	line-height: 1.8;
}

.p-top-recruit__cta {
	margin-top: 2rem;
	text-align: center;
}

.p-top-recruit__deco-pumpkin {
	position: absolute;
	top: -7.5rem;
	right: 0;
	content: "";
	width: 100%;
	height: inherit;
	max-width: 6.25rem;
	aspect-ratio: 134/108;
}

.p-top-recruit__deco-birds {
	position: absolute;
	bottom: -3.125rem;
	left: -0.625rem;
	content: "";
	width: 100%;
	height: inherit;
	max-width: 5rem;
	aspect-ratio: 120/83;
}

.p-top-service {
	padding-top: 3rem;
	padding-bottom: 6.25rem;
	position: relative;
}

.p-top-service::before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: auto;
	aspect-ratio: 1440/167;
	background-image: url(../../assets/images/top/curve_yellow.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
	z-index: 1;
}

.p-top-service .p-top-service__inner {
	padding: 0 1.875rem;
}

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

.p-top-service__deco {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.p-top-service__deco::before,
.p-top-service__deco::after {
	position: absolute;
	top: 30vw;
	bottom: 0; /* 高さ100%の代わりに上下固定 */
	content: "";
	width: min(3.125rem, 4vw);
	background-repeat: repeat-y;
	background-size: contain;
}

/* 左帯 */

.p-top-service__deco::before {
	left: 0;
	background-image: url(../../assets/images/top/top_service_decoLeft_sp.png);
}

/* 右帯（画像パスは適宜） */

.p-top-service__deco::after {
	right: 0;
	background-image: url(../../assets/images/top/top_service_decoRight_sp.png);
}

.p-top-service__list {
	margin: 4rem auto 0;
}

.p-service-card {
	background-color: var(--light-yellow);
	border-radius: 0.9375rem;
	padding: 1.875rem 0.9375rem;
	box-shadow: 0.375rem 0.375rem 0 0 #f0de92;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.2vw;
}

.p-service-card + .p-service-card {
	margin-top: 2rem;
}

.p-service-card__head {
	display: flex;
	align-items: flex-end;
	gap: 1rem;
}

.p-service-card__num {
	width: 100%;
	max-width: 2.5rem;
}

.p-service-card__num img {
	width: 100%;
	height: auto;
	aspect-ratio: 111/101;
	object-fit: contain;
}

.p-service-card__title {
	font-size: min(7vw, 1.25rem);
	font-weight: var(--fw-bold);
	line-height: 1.6;
}

.p-service-card__bullets {
	margin-top: 1.25rem;
	background-color: var(--white);
	border-radius: 0.625rem;
	padding: 1rem;
}

.p-service-card__bullet {
	padding-left: 0.75rem;
	position: relative;
	font-size: 1rem;
	font-weight: var(--fw-bold);
	line-height: 1.6;
}

.p-service-card__bullet + .p-service-card__bullet {
	margin-top: 0.5rem;
}

.p-service-card__bullet::before {
	position: absolute;
	top: 0.625rem;
	left: 0;
	content: "";
	width: 0.375rem;
	height: 0.375rem;
	aspect-ratio: 1/1;
	border-radius: 3.125rem;
	background-color: var(--orange);
}

.p-service-card.p-service-card--02 .p-service-card__bullet::before {
	background-color: var(--green);
}

.p-service-card.p-service-card--03 .p-service-card__bullet::before {
	background-color: var(--yellow);
}

.p-service-card__cta {
	margin-top: 1.25rem;
	text-align: center;
}

.p-service-card__thumb {
	width: 100%;
}

.inline-block {
	display: inline-block;
}

.pc-only {
	display: none;
}

.sp-only {
	display: block;
}

/* アニメーション前 */

.u-blur,
.u-blur-delay,
.u-blur-delay02,
.u-blur-fast {
	opacity: 0;
}

.u-blur.is-active {
	animation: blur 1.5s ease-out forwards;
}

.u-blur-fast.is-active {
	animation: blur 1s ease-out forwards;
}

.u-blur-delay.is-active {
	animation: blur 1.5s ease-out 1.5s forwards;
}

.u-blur-delay02.is-active {
	animation: blur 1.5s ease-out 2.5s forwards;
}

.u-slideLeft {
	opacity: 0;
	transform: translateX(-10px);
}

.u-slideLeft.is-active {
	animation: slideLeft ease-out 1s forwards;
}

/* アニメーション前 */

.u-fadeIn-fast,
.u-fadeIn,
.u-fadeIn-slow,
.u-fadeIn-delay,
.u-fadeIn-delay02 {
	opacity: 0;
}

.u-fadeIn-fast.is-active {
	animation: fadeIn 1s ease-out 0.2s forwards;
}

.u-fadeIn.is-active {
	animation: fadeIn 3s ease-out 0.3s forwards;
}

.u-fadeIn-delay.is-active {
	animation: fadeIn 3s ease-out 0.6s forwards;
}

.u-fadeIn-delay02.is-active {
	animation: fadeIn 2.5s ease-out 1.2s forwards;
}

.u-fadeIn-slow.is-active {
	animation: fadeIn 3s ease-out 0.5s forwards;
}

/* アニメーション前 */

.u-fadeUp,
.u-fadeUp-delay,
.u-fadeUp-slow,
.u-fadeUp-slow-delay {
	opacity: 0;
}

.u-fadeUp.is-active {
	animation: fadeUp 0.6s ease-out forwards;
}

.u-fadeUp-delay.is-active {
	animation: fadeUp 0.6s ease-out 2s forwards;
}

.u-fadeUp-slow.is-active {
	animation: fadeUpLong 0.6s ease-out forwards;
}

.u-fadeUp-slow-delay.is-active {
	animation: fadeUpLong 0.6s ease-out 0.5s forwards;
}

.u-revealLeft {
	position: relative;
	overflow: hidden;
}

.u-revealLeft picture,
.u-revealLeft img {
	display: block;
	width: 100%;
	height: auto;
	transform: scale(1.05);
	transition: transform 2s ease-out;
}

.u-revealLeft::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #fff;
	transform: translateX(0%);
	z-index: 2;
	transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.u-revealLeft.is-active::before {
	transform: translateX(100%);
}

.u-revealLeft.is-active img {
	transform: scale(1);
}

/* --- 帯つきラッパ --- */

.u-wipeLeft {
	position: relative;
	overflow: hidden;
	display: inline-block; /* カスタマイズ可能 */
	--wipe-bg: #c52b3e; /* 帯色 */
	--title-color: #c52b3e; /* 表示後は元の色を使う（= .c-title__en の赤） */
	--wipe-dur: .9s;
	--wipe-ease: cubic-bezier(.77, 0, .175, 1);
	--stagger: 0s; /* 親から受け取る */
}

/* 帯（テキストの上を横移動） */

.u-wipeLeft::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--wipe-bg);
	transform: translateX(-101%); /* 左の外から入る */
	z-index: 1; /* テキストの上を走る */
	will-change: transform;
}

/* 発火時：帯を横にアニメ（横ワイプは現行のまま） */

.u-titleStagger.is-active .u-wipeLeft::before {
	animation: wipeX var(--wipe-dur) var(--wipe-ease) var(--stagger) both;
}

/* --- テキスト本体（子要素）--- */

/* 初期は見えない（※子要素だけを透明にするので帯は消えません） */

.u-wipeLeft__text {
	opacity: 0;
	transform: translateY(4px); /* ほんの少しだけ下から */
	transition: opacity 0.32s ease-out calc(var(--stagger) + var(--wipe-dur)), transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--stagger) + var(--wipe-dur));
	color: var(--title-color); /* 表示後は親の色（= .c-title__en の赤）を利用 */
}

/* 帯が抜けた“後”にふわっと表示 */

.u-titleStagger.is-active .u-wipeLeft__text {
	opacity: 1;
	transform: translateY(0);
}

/* スタッガー配布（最大4つ） */

.u-titleStagger.is-active > *:nth-child(1) {
	--stagger: 0s;
}

.u-titleStagger.is-active > *:nth-child(2) {
	--stagger: 0.12s;
}

.u-titleStagger.is-active > *:nth-child(3) {
	--stagger: 0.24s;
}

.u-titleStagger.is-active > *:nth-child(4) {
	--stagger: 0.36s;
}

/* reduce 配慮：帯は即退場、文字は即表示 */

/* ================================
   左からふわっとスライド表示
   ================================ */

.u-slideH {
	opacity: 0;
	transform: translateX(-16px); /* 初期位置：左に16px */
	will-change: transform, opacity; /* パフォーマンス配慮 */
}

/* 発火（親に .is-active が付与されたら動く） */

.u-titleStagger.is-active .u-slideH {
	animation: slideH 0.6s ease-out forwards;
	animation-delay: var(--stagger, 0s); /* 親のスタッガーを継承 */
}

/* 動きが苦手な人向け：即時表示 */

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

@media (any-hover: hover) {

.c-button:hover,
.c-button:focus-visible { /* 任意：少しだけ明るくしたい場合は次行を解放
       background-color: color-mix(in oklab, var(--orange), white 8%); */
	transform: translateY(-0.0625rem);
	box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.12);
	color: var(--orange);
	background-color: var(--white);
}

.c-button:hover::before,
.c-button:focus-visible::before {
	transform: translateY(-50%);
	height: 24px;
	width: 24px;
	right: 8px;
	opacity: 1;
	background-color: var(--orange);
}

.c-button:hover::after,
.c-button:focus-visible::after {
	transform: translateY(-50%) scale(1);
	opacity: 1;
}

.c-button.c-button--green-footer:hover,
.c-button.c-button--green-footer:focus-visible,
.c-button.c-button--cta:hover,
.c-button.c-button--cta:focus-visible {
	border: 2px solid var(--green);
}

.c-button.c-button--green-footer:hover,
.c-button.c-button--green-footer:focus-visible,
.c-button.c-button--cta:hover,
.c-button.c-button--cta:focus-visible,
.c-button.c-button--green:hover,
.c-button.c-button--green:focus-visible {
	color: var(--green);
}

.c-button.c-button--cta:hover::before,
.c-button.c-button--cta:focus-visible::before,
.c-button.c-button--green:hover::before,
.c-button.c-button--green:focus-visible::before {
	background-color: var(--green);
}

.c-button.c-button--yellow:hover,
.c-button.c-button--yellow:focus-visible {
	color: var(--yellow);
}

.c-button.c-button--white:hover::before,
.c-button.c-button--yellow:focus-visible::before {
	background-color: var(--orange);
}

.c-button.c-button--yellow:hover::before,
.c-button.c-button--yellow:focus-visible::before {
	background-color: var(--yellow);
}

.p-download__link:hover .p-download__icon {
	transform: translateX(5px) scale(1.1);
}

.p-download__link:hover {
	color: var(--orange);
}

.p-download__col--right .p-download__link:hover {
	color: var(--green);
}

.p-footer__logo:hover {
	opacity: 0.7;
}

.p-footer__sns-link:hover {
	opacity: 0.7;
}

.p-footer__nav a:hover {
	color: var(--orange);
}

.p-header__link:hover,
.p-header__nav-modal-item a:hover {
	color: var(--orange);
}

.p-header__logo a:hover,
.p-header__cta-lineLink:hover,
.p-header__cta-instagramLink:hover {
	opacity: 0.7;
}

.p-header__logo a:hover img,
.p-header__cta-instagramLink:hover img {
	opacity: 0.7;
}

.p-header__cta-lineLink:hover {
	opacity: 0.7;
}

.p-top-blog__link:hover {
	opacity: 0.7;
}

.p-top-blog__insta:hover {
	opacity: 0.7;
}

.c-cta-wrap__link:hover img,
.c-cta-wrap__link:hover picture img {
	opacity: 0.7;
}

.c-cta-wrap__link:hover {
	opacity: 0.7;
}

.p-news-list__link:hover .p-news-list__title {
	color: var(--orange);
}

}

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

.c-button,
.c-button::before {
	transition: none;
}

.u-wipeLeft::before {
	animation: none !important;
	transform: translateX(101%) !important;
}

.u-wipeLeft__text {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

.u-slideH {
	opacity: 1 !important;
	transform: none !important;
	animation: none !important;
}

}

@media (prefers-reduced-motion: reduce) and (any-hover: hover) {

.c-button:hover {
	transform: none;
	box-shadow: none;
}

}

@media (hover: hover) {

input.wpcf7-form-control.wpcf7-submit.has-spinner.c-button:disabled:hover {
	opacity: 1;
}

}

@media (hover: none) {

input.wpcf7-form-control.wpcf7-submit.has-spinner.c-button:disabled:active {
	opacity: 1;
}

}

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

.p-top-about {
	padding-top: 8.125rem;
	padding-bottom: 14.375rem;
}

.p-top-mv__deco {
	bottom: -8.75rem;
}

.p-top-mv__inner {
	padding: 0 9.375rem 0 2.5rem;
	height: calc(100vh - 4.375rem);
}

.c-cta-wrap {
	max-width: 7.1875rem;
	display: block;
	right: 0.625rem;
	left: initial;
	transform: initial;
}

.c-cta-wrap__item + .c-cta-wrap__item {
	margin-top: 0.625rem;
}

}

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

:root {
	--vw: 375 * 100vw;
}

:root {
	--header-height: calc(110 * var(--rem));
}

html {
	font-size: calc(16 / var(--inner-value) * 100vw);
}

.l-inner {
	max-width: calc(var(--inner) + var(--padding-pc) * 2);
	padding-inline: var(--padding-pc);
}

.c-button {
	line-height: 1;
	padding: 1.375rem 3.5rem;
	font-size: 1.125rem;
}

.c-button.c-button--fit {
	min-width: initial;
}

.c-button::before {
	right: 24px;
}

.c-button::after {
	right: 20px;
}

.c-button.c-button--green-footer {
	max-width: 12.5rem;
}

.c-button.c-button--orange-footer {
	max-width: 12.5rem;
}

.c-lower-mv {
	padding-top: 6.875rem;
	padding-bottom: 9.75rem;
}

.c-lower-mv__inner {
	flex-direction: row;
	justify-content: space-between;
}

.c-lower-mv__title {
	font-size: min(56px, 4vw);
	white-space: nowrap;
	line-height: 1;
}

.c-lower-mv__img {
	width: 100%;
}

.c-note {
	padding: 4rem;
	border-radius: 2.5rem;
}

.c-note__title {
	font-size: 1.5rem;
}

.c-note__deco {
	max-width: 11rem;
	right: 2.8125rem;
}

.c-note__list li {
	font-size: 1.125rem;
	line-height: 1.8;
}

.c-note__text {
	margin-top: 1.875rem;
	font-size: 1.125rem;
}

.c-note__title.c-note__title--bottom {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
}

.c-pagination {
	margin-top: 3rem;
	padding-top: 1.75rem;
}

.c-pagination .post-navigation .nav-previous a,
.c-pagination .post-navigation .nav-next a,
.c-pagination .posts-navigation .nav-previous a,
.c-pagination .posts-navigation .nav-next a {
	font-size: 0.9375rem;
}

.c-pagination .pagination .page-numbers {
	min-width: 2.25rem;
	height: 2.25rem;
	font-size: 0.9375rem;
}

.c-pagination .page-numbers {
	min-width: 2.25rem;
	height: 2.25rem;
	margin: 0 0.375rem;
	font-size: 0.9375rem;
}

.c-title__en {
	font-size: 1.25rem;
}

.c-title__ja {
	font-size: 2.5rem;
	margin-top: 1.5rem;
}

.p-contact__contents {
	border-radius: 1.875rem;
	padding: 5rem;
}

.p-contact__content {
	padding: 1.5rem 0;
	display: flex;
	gap: 1.75rem;
}

.p-contact__head {
	font-size: 1.125rem;
	line-height: 1.8;
	min-width: 17.5rem;
}

.p-contact__item p {
	margin-top: 0;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-date,
.p-contact__item-time,
.p-contact__item-textarea {
	font-size: 1.125rem;
	padding: 0.9375rem 1.125rem;
}

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

.p-contact__item .p-contact__item-textarea {
	height: 15.625rem;
}

.p-contact__policy {
	margin-top: 4rem;
	padding-left: 1.625rem;
}

.p-contact__item-radio input[type=radio] + span,
.p-contact__item-checkbox input[type=checkbox] + span {
	font-size: 1.125rem;
}

.p-contact__btn {
	margin: 4.375rem auto 0;
}

.p-cta {
	background-position: left;
}

.p-cta__container {
	flex-direction: row;
	gap: 7vw;
	max-width: 56.25rem;
	margin: auto;
}

.p-cta__body {
	max-width: 28.75rem;
}

.p-cta__title {
	font-size: 2.5rem;
}

.p-cta__lead {
	font-size: 1.25rem;
	margin-top: 2.5rem;
}

.p-download {
	padding: 6.25rem 0 1.25rem;
}

.p-download__cols {
	border-radius: 1.875rem;
	padding: 3rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-download__col {
	display: grid;
	gap: 0;
	grid-row: span 3;
	grid-template-rows: subgrid;
}

.p-download__col--left {
	padding-right: 3.4375rem;
	padding-bottom: 0;
	border-right: 2px dotted var(--text-black);
	border-bottom: initial;
}

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

.p-download__heading span {
	font-size: 1.125rem;
}

.p-download__lead {
	margin-top: 1.5rem;
}

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

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

.p-download__col--right {
	padding-left: 3.4375rem;
	margin-top: initial;
}

.p-download__icon {
	max-width: 1.5rem;
}

.p-footer {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.p-footer__container {
	flex-direction: row;
	justify-content: space-between;
}

.p-footer__brand {
	max-width: 20rem;
}

.p-footer__navs {
	margin-top: initial;
}

.p-footer__nav {
	gap: 4.4vw;
	flex-direction: row;
	justify-content: space-between;
}

.p-footer__menu-link a {
	padding: 0.375rem 1.125rem;
}

.p-footer__menu-link a::before {
	left: 0;
}

.p-footer__menu {
	margin-top: initial;
}

.p-footer__sns {
	justify-content: flex-end;
}

.p-footer__cta {
	justify-content: flex-end;
	flex-direction: row;
	margin-top: 1.25rem;
}

.p-footer__copy {
	margin-top: 3.875rem;
}

.p-header__inner {
	padding: 0 2.8vw;
}

.p-header__logo {
	max-width: 14vw;
}

.p-header__nav {
	display: flex;
}

.p-header__link,
.p-header__nav-modal-text {
	padding: 0 0.625rem;
}

.p-header__telephone-link {
	padding: 0 0.625rem 0 1.375rem;
}

.p-drawer__link,
.p-drawer__modal-text {
	font-size: 16px;
}

.p-drawer__modal-item a {
	font-size: 16px;
}

.p-lower-section {
	padding-top: 3.75rem;
	padding-bottom: 7.5rem;
}

.p-lower-section__container {
	max-width: 50rem;
}

.p-lower-section__title {
	font-size: 1.75rem;
}

.p-lower-section__text-wrap {
	margin-top: 3.75rem;
}

.p-lower-section__text {
	font-size: 1.125rem;
}

.p-lower-section__text + .p-lower-section__text {
	margin-top: 1.25rem;
}

.p-lower-section__button {
	margin: 4.375rem auto 0;
}

.p-privacy__text {
	font-size: 1rem;
	line-height: 1.8;
}

.p-privacy__text-head {
	font-size: 1.5rem;
	margin-top: 1.875rem;
}

.p-single {
	margin-top: 2.5rem;
}

.p-single__listItemDate {
	font-size: 0.9375rem;
}

.p-single__listItemTitle {
	font-size: 1.625rem;
	margin-top: 1rem;
}

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

.p-single__content {
	font-size: 1.125rem;
	line-height: 2;
	margin-top: 2.5rem;
}

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

.p-single__content p + p {
	margin-top: 0.75rem;
}

.p-single__content ul,
.p-single__content ol {
	margin-top: 1.5rem;
}

.p-single__content li {
	margin-top: 0.625rem;
}

.p-single__button {
	margin-top: 3.75rem;
}

.p-top-about__title {
	font-size: 1.875rem;
}

.p-top-about__text-wrap {
	margin-top: 7.3125rem;
	max-width: 38.125rem;
	padding-left: 6.25rem;
}

.p-top-about__head {
	font-size: 1.75rem;
}

.p-top-about__text {
	margin-top: 2.125rem;
	font-size: 1.25rem;
	line-height: 2;
}

.p-top-about__button {
	text-align: left;
}

.p-top-blog {
	padding-top: 8.9375rem;
	padding-bottom: 7.5rem;
}

.p-top-blog__deco {
	width: 100%;
	max-width: 27.25rem;
	left: 3.875rem;
}

.p-top-blog__lead {
	margin-top: 4rem;
}

.p-top-blog__items {
	margin-top: 4rem;
	gap: 2.5rem;
	grid-template-columns: repeat(3, 1fr);
}

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

.p-top-blog__item-title {
	font-size: 1.125rem;
}

.p-top-blog__more {
	margin-top: 4rem;
}

.p-top-blog__sns {
	margin: 5rem auto 0;
	max-width: 43.75rem;
}

.p-top-flow {
	padding-bottom: 16.5rem;
	padding-top: 1.25rem;
}

.p-top-flow__deco-clouds {
	max-width: 10.625rem;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--01 {
	top: 10.625rem;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--02 {
	left: 0;
	top: 45%;
	display: block;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--03 {
	left: 0;
	top: 91%;
	bottom: initial;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--04 {
	display: block;
	right: 0;
	top: 30%;
}

.p-top-flow__deco-clouds.p-top-flow__deco-clouds--05 {
	top: 65%;
	bottom: initial;
}

.p-top-flow__lead {
	margin-top: 4rem;
	font-size: 1.125rem;
	text-align: center;
}

.p-top-flow__steps {
	margin-top: 4rem;
}

.p-flow-step {
	border-radius: 1.875rem;
	flex-direction: row;
	padding: 2.5rem 2.5rem 2.5rem 3.75rem;
}

.p-flow-step__icon {
	width: 7.5rem;
	height: 7.5rem;
}

.p-flow-step img {
	width: 100%;
}

.p-flow-step__title {
	font-size: 1.5rem;
}

.p-flow-step__title span {
	font-size: 1.125rem;
	display: inline-block;
}

.p-flow-step__text {
	font-size: 1.125rem;
}

.p-top-flow__notice {
	margin-top: 4.6875rem;
}

.p-top-flow__area {
	margin-top: 4rem;
	flex-direction: row;
	border-radius: 1.875rem;
}

.p-top-flow__area-title {
	line-height: 1.8;
	font-size: 1.875rem;
}

.p-top-flow__pin {
	width: 1.6875rem;
	height: 2.375rem;
}

.p-top-flow__area-body {
	padding: 3rem 2.4375rem 3rem 4rem;
	width: 100%;
}

.p-top-flow__area-text {
	font-size: 1.25rem;
	margin-top: 2rem;
}

.p-top-mv {
	padding-top: 6.875rem;
}

.p-top-mv__deco {
	width: 100%;
	max-width: 27.25rem;
	left: 3.875rem;
}

.p-top-mv__inner {
	height: calc(100vh - 6.875rem);
}

.splide__slide {
	border-radius: 1.875rem;
}

.p-top-mv__content {
	bottom: 3.75rem;
}

.p-top-mv__badge {
	width: 7.5rem;
	margin-left: initial;
}

.p-top-mv__badge-line1 {
	font-size: 2.25rem;
}

.p-top-mv__badge-line1 span {
	font-size: 1.25rem;
}

.p-top-mv__badge-line2 {
	font-size: 1.125rem;
}

.p-top-mv__title {
	font-size: 4vw;
	margin-top: 0.5rem;
}

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

.p-top-news {
	padding-top: 1.875rem;
	padding-bottom: 8.75rem;
}

.p-top-news__container {
	flex-direction: row;
	justify-content: space-between;
}

.p-top-news__head {
	display: block;
}

.p-top-news__more {
	margin-top: 5rem;
	order: initial;
	text-align: left;
}

.p-top-news__body {
	margin-top: initial;
}

.p-news-list__title,
.p-top-news__empty {
	font-size: 1.125rem;
}

.p-top-recruit {
	background-image: url(../../assets/images/top/top_recruit_bg.jpg);
	padding: 8.125rem 0;
	background-position: left;
}

.p-top-recruit__deco-pumpkin {
	top: -1.875rem;
	max-width: 8.375rem;
	right: -1.25rem;
}

.p-top-recruit__deco-birds {
	bottom: -5rem;
	left: -1rem;
	max-width: 7.5rem;
}

.p-top-service {
	padding-bottom: 16.25rem;
	padding-top: 1.5rem;
}

.p-top-service__deco::before,
.p-top-service__deco::after {
	background-repeat: no-repeat;
	top: 7vw;
	width: min(4.3125rem, 5vw);
}

.p-top-service__deco::before {
	background-image: url(../../assets/images/top/top_service_decoLeft.png);
}

.p-top-service__deco::after {
	background-image: url(../../assets/images/top/top_service_decoRight.png);
}

.p-top-service__list {
	width: min(1200px, 100% - 7vw);
}

.p-service-card {
	padding: 2.2vw 3.3vw;
	flex-direction: row;
	border-radius: 1.875rem;
}

.p-service-card__text-wrap {
	max-width: 29.25rem;
	width: 100%;
	min-width: 25rem;
}

.p-service-card__num {
	max-width: 3.4375rem;
}

.p-service-card__title {
	font-size: 1.875rem;
}

.p-service-card__bullets {
	margin-top: 2rem;
	padding: 1.5rem;
	border-radius: 1.25rem;
}

.p-service-card__bullet {
	font-size: 1.125rem;
	padding-left: 1.25rem;
}

.p-service-card__bullet::before {
	top: 50%;
	transform: translateY(-50%);
}

.p-service-card__cta {
	text-align: left;
	margin-top: 2.5rem;
}

.p-service-card__thumb {
	max-width: 30.5rem;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none;
}

.u-fadeUp-slow.is-active {
	animation: fadeUpLong 1s ease-out forwards;
}

.u-fadeUp-slow-delay.is-active {
	animation: fadeUpLong 1s ease-out 1s forwards;
}

}

@media (min-width: 768px) {

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

}

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

.c-button:hover::before,
.c-button:focus-visible::before {
	right: 15px;
}

}

@media (min-width: 1000px) {

html {
	font-size: 16px;
}

}

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

.p-header__hamburger {
	display: none;
}

.u-fadeIn-slow.is-active {
	animation: fadeIn 3s ease-out 1s forwards;
}

}

@media (min-width: 1200px) {

.p-top-about__bg {
	right: 1.5625rem;
	left: initial;
	transform: initial;
	width: 100%;
}

}

@media (min-width: 1300px) {

.p-top-service__list {
	width: 100%;
}

}

@media (max-width: 767px) {

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

.p-top-mv .splide__slide.is-active .p-top-mv__img {
	animation-duration: calc(var(--mv-interval) * 0.9);
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes mv-kenburns {

from {
	transform: scale(1.05);
}

to {
	transform: scale(1.12);
}

}

@keyframes blur {

0% {
	opacity: 0;
	filter: blur(10px);
}

100% {
	opacity: 1;
	filter: blur(0);
}

}

@keyframes slideLeft {

0% {
	opacity: 0;
	transform: translateX(-10px);
}

100% {
	opacity: 1;
	transform: translateX(0);
}

}

@keyframes fadeIn {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

@keyframes fadeUp {

0% {
	opacity: 0;
	transform: translateY(6px);
}

100% {
	opacity: 1;
	transform: translateY(0); /* 元の位置 */
}

}

@keyframes fadeUpLong {

0% {
	opacity: 0;
	transform: translateY(20px);
}

100% {
	opacity: 1;
	transform: translateY(0); /* 元の位置 */
}

}

@keyframes wipeX {

0% {
	transform: translateX(-101%);
}

40%,60% {
	transform: translateX(0%);
}

100% {
	transform: translateX(101%);
}

}

@keyframes slideH {

from {
	opacity: 0;
	transform: translateX(-16px);
}

to {
	opacity: 1;
	transform: translateX(0);
}

}

