* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: #333;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 16px;
	font-weight: 500;
}

body.is-menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	cursor: pointer;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.inner {
	width: min(1020px, calc(100% - 40px));
	margin: 0 auto;
}

/*========================================
ヘッダー共通
========================================*/
.site-header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	background: transparent;
	box-shadow: none;
	transition: background-color .4s ease,
		box-shadow .4s ease,
		transform .4s ease;
}

.site-header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	background: #FCFCE5;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
	animation: headerShow .45s cubic-bezier(.22, 1, .36, 1) forwards;
}

@keyframes headerShow {
	0% {
		transform: translateY(-100%);
	}

	100% {
		transform: translateY(0);
	}
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 100px;
	padding: 10px 30px;
	margin: 0 auto;
	max-width: 1600px;
}

.header-brand {
	margin: 0;
	padding: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1;
}

/*ファーストビュー用ロゴ*/
.logo-fv {
	display: block;
	color: #fff;
	font-size: 40px;
	font-weight: 900;
	line-height: 1.5;
	text-shadow: 0 1px 5px rgba(0, 0, 0, .29);
	transition: opacity .3s ease,
		visibility .3s ease;
}

/*スクロール後の横長ロゴ*/
.logo-header {
	display: none;
	width: 390px;
}

.logo-header img {
	display: block;
	width: 130px;
}

/*ファーストビューではナビを隠す*/
.header-right {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/*スクロール後*/
.site-header.is-fixed .logo-fv {
	display: none;
}

.site-header.is-fixed .logo-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-header.is-fixed .logo-header span {
	display: block;
	line-height: 1.5;
	font-size: 30px;
	font-weight: 700;
}

.site-header.is-fixed .logo-header small {
	font-size: 24px;
}

.site-header.is-fixed .header-right {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.header-tel {
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 10px;
	color: #111;
	font-family: Arial, sans-serif;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 9%;
	line-height: 1;
}

.tel-icon {
	content: url("../images/top/i-tel.png");
	height: 22px;
}

.header-nav-list {
	display: flex;
	align-items: center;
	gap: 42px;
}

.header-nav-item {
	position: relative;
}

.header-nav-item>a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 3px;
	font-weight: 500;
	white-space: nowrap;
}

.header-nav-item>a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	margin: auto;
	background: #f493a7;
	transition: width .3s ease;
}

.header-nav-item>a:hover::after,
.header-nav-item.is-current>a::after {
	width: 100%;
}

/*========================================
PCプルダウン
========================================*/
.header-nav-dropdown {
	position: relative;
}

.header-nav-parent::before {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 50%;
	z-index: 2;
	width: 18px;
	height: 18px;
	background: #ffe8ec;
	opacity: 0;
	transform: translateX(-50%) rotate(45deg);
	transition: opacity .25s ease;
}

.dropdown-icon {
	display: none;
}

.header-dropdown-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	width: 305px;
	padding: 15px;
	background: #ffe8ec;
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, 10px);
	transition: opacity .25s ease,
		visibility .25s ease,
		transform .25s ease;
	pointer-events: none;
}

.header-nav-dropdown:hover .header-dropdown-menu,
.header-nav-dropdown:focus-within .header-dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
	pointer-events: auto;
}

.header-nav-dropdown:hover .header-nav-parent::before,
.header-nav-dropdown:focus-within .header-nav-parent::before {
	opacity: 1;
}

.header-dropdown-menu li {
	border-bottom: 1px dotted #FC80DD;
}

.header-dropdown-menu li:last-child {
	border-bottom: 0;
}

.header-dropdown-menu a {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	padding: 10px 0;
	line-height: 1.6;
	transition: color .25s ease,
		padding-left .25s ease;
	font-weight: 500;
}

.header-dropdown-menu a:hover {
	padding-left: 5px;
	color: #d5687f;
}

.header-dropdown-menu a span {
	flex-shrink: 0;
	font-size: 20px;
}

.hamburger {
	display: none;
}

/*========================================
ファーストビュー
========================================*/
.main-visual {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.main-visual-slider {
	position: relative;
	width: 100%;
	aspect-ratio: 1440 / 755;
	background: #fff;
}

.main-visual-slide {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0;
	pointer-events: none;
	transition: opacity 2s ease-in-out;
	will-change: opacity;
}

.main-visual-slide.is-active {
	z-index: 2;
	opacity: 1;
}

.main-visual-slide picture {
	display: block;
	width: 100%;
	height: 100%;
}

.main-visual-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	transform: none;
}

.main-visual-logo {
	position: absolute;
	top: 20%;
	left: 50%;
	z-index: 5;
	width: min(25vw, 360px);
	transform: translateX(-50%);
}

.main-visual-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.main-visual-copy {
	position: absolute;
	left: 7%;
	bottom: 10%;
	z-index: 5;
	color: #FC41CD;
	font-size: clamp(32px, 3vw, 60px);
	font-weight: 700;
	line-height: 1.5;
	-webkit-text-stroke: 3px #fff;
	paint-order: stroke;
}

.main-visual-copy p {
	margin: 0;
}

/*========================================
フェードアップ
========================================*/
.js-fade-up.is-show {
	opacity: 1;
	transform: translateY(0);
}

.js-fade-up:nth-child(2) {
	transition-delay: .1s;
}

.js-fade-up:nth-child(3) {
	transition-delay: .2s;
}

.js-fade-up:nth-child(4) {
	transition-delay: .3s;
}

/*========================================
スマホ・タブレット
固定後にロゴ＋ハンバーガー表示
========================================*/
:root {
	--main-pink: #FC41CD;
	--light-pink: #FEDFE1;
	--cream: #FEFEEC;
	--text: #333;
}

.section-grid {
	background-color: #fff;
	background-image: linear-gradient(rgba(255, 210, 220, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 210, 220, .2) 1px, transparent 1px);
	background-size: 24px 24px;
}

.section-heading {
	position: relative;
	padding-top: 70px;
	margin-bottom: 50px;
	text-align: center;
}

.section-heading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: 53px;
	height: 66px;
	transform: translateX(-50%);
	background: url("../images/top/i-flower.png") center / contain no-repeat;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(32px, 3vw, 40px);
	font-weight: 700;
	letter-spacing: 5%;
	line-height: 1.5;
}

.section-heading span {
	display: block;
	font-weight: 700;
	color: #FEDFE1;
	font-size: 20px;
	letter-spacing: 5%;
}

.section-heading-left {
	text-align: left;
}

.common-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	min-width: 260px;
	height: 60px;
	padding: 0 24px;
	border-radius: 5px;
	background: var(--main-pink);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	box-shadow: 0 5px 12px rgba(255, 66, 173, .2);
	transition: opacity .3s ease, transform .3s ease;
}

.common-button:hover {
	transform: translateY(-3px);
	background: #FFB4BF;
}

.common-button i {
	position: relative;
	display: block;
	width: 61px;
	height: 2px;
	background: #fff;
	margin-top: 15px;
}

.common-button i::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 17px;
	height: 2px;
	background: #fff;
	transform: rotate(50deg);
	transform-origin: right;
}

.common-button-gray {
	background: #dddcd9;
	box-shadow: none;
}

.intro {
	position: relative;
	padding: 68px 0;
	background: url("../images/top/bg-town.png") top center / contain no-repeat;
	aspect-ratio: 1440 / 536;
}

.intro-inner {
	position: relative;
	z-index: 2;
}

.intro-box {
	width: min(700px, 100%);
	min-height: 320px;
	margin: 0 auto;
	padding: 20px 44px;
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 7px 15px rgba(150, 120, 100, .12);
}

.intro-title {
	margin: 0 0 25px;
	color: #FC80DD;
	font-size: 24px;
	font-weight: 700;
	line-height: 2;
	border-bottom: dotted 1px #FC80DD;
}

.intro-title span {
	font-size: 30px;
	color: #FC41CD;
}

.intro-text {
	line-height: 2.5;
}

.intro-text+.intro-text {
	margin-top: 6px;
}

.business-section {
	position: relative;
	padding: 70px 0;
	overflow: hidden;
}

.business-section::before {
	content: "";
	position: absolute;
	bottom: 5%;
	right: 3%;
	width: 158px;
	height: 180px;
	background: url("../images/top/sakura01.png") center / contain no-repeat;
}

.business-description {
	margin-bottom: 50px;
	line-height: 2;
}

.business-description p {
	margin: 0;
}

.business-description p+p {
	margin-top: 12px;
}

.business-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px 84px;
}

.business-card {
	position: relative;
	display: block;
	height: 237px;
	overflow: hidden;
	border-radius: 18px;
}

.business-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.business-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .35);
	transition: background .3s ease;
}

.business-card-overlay04 {
	position: absolute;
	inset: 0;
	background: #000;
	opacity: 0.8;
}

.business-card-content {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	color: #fff;
	text-align: center;
	transform: translate(-50%, -50%);
}

.business-card-content h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 5%;
}

.business-card-content p {
	margin: 5px 0 0;
}

.business-card-content i {
	position: relative;
	display: block;
	width: 53px;
	height: 2px;
	background: #fff;
	margin: 20px auto 0;
}

.business-card-content i::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 16px;
	height: 2px;
	background: #fff;
	transform: rotate(50deg);
	transform-origin: right;
}

.business-card:hover img {
	transform: scale(1.07);
}

.business-card:hover .business-card-overlay {
	background: rgba(255, 66, 173, .45);
}

.section-button-wrap {
	margin-top: 55px;
	text-align: center;
}

.business-flower {
	position: absolute;
	right: 2%;
	bottom: 50px;
	width: 75px;
}

.recruit-section {
	position: relative;
	min-height: 626px;
	overflow: hidden;
	background: var(--cream);
	padding: 86px 0;
}

/*上*/
.recruit-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 51px;
	background: repeating-linear-gradient(90deg,
			#efe5a7 0,
			#efe5a7 2px,
			transparent 2px,
			transparent 12px);
}

/*下*/
.recruit-section::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 51px;
	background: repeating-linear-gradient(90deg,
			#efe5a7 0,
			#efe5a7 2px,
			transparent 2px,
			transparent 12px);
}

.recruit-inner {
	max-width: 1600px;
	display: grid;
	grid-template-columns: 53% 47%;
	align-items: center;
	margin: 0 auto;
}

.recruit-image {
	position: relative;
}

.recruit-image::before {
	content: "";
	position: absolute;
	bottom: -10%;
	right: 0;
	width: 107px;
	height: 164px;
	background: url("../images/top/sakura02.png") center / contain no-repeat;
}

.recruit-content {
	text-align: center;
	padding: 60px 12%;
}

.recruit-content .section-heading {
	margin-bottom: 25px;
}

.recruit-content p {
	margin: 0;
	line-height: 2;
	font-weight: 700;
}

.recruit-content .common-button {
	margin-top: 45px;
}

.recruit-decoration {
	position: absolute;
}

.service-section {
	position: relative;
	padding: 87px 0;
	overflow: hidden;
	background-color: #FFF1F2;
	background-image: radial-gradient(rgba(255, 255, 255, .9) 1.5px, transparent 1.5px);
	background-size: 12px 12px;
}

.service-section::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 3%;
	width: 143px;
	height: 117px;
	background: url("../images/top/sakura03.png") center / contain no-repeat;
}

.service-inner {
	max-width: 1600px;
	margin: 0 auto;
}

.service-section .section-heading span {
	color: #FFB4BF;
}

.service-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 100px;
}

.service-content {
	padding-left: 100px;
	text-align: center;
}

.service-content p {
	margin: 0;
	line-height: 35px;
	font-weight: 700;
	text-align: left;
}

.service-content p+p {
	margin-top: 8px;
}

.service-content .common-button {
	margin-top: 77px;
}

.service-image {
	position: relative;
}

.service-image img {
	width: 100%;
	height: 455px;
	object-fit: cover;
}

.company-section {
	position: relative;
	padding: 60px 0;
	overflow: hidden;
	background: #fff;
}

.company-section::before {
	content: "";
	position: absolute;
	top: 20%;
	right: 5%;
	width: 34px;
	height: 38px;
	background: url("../images/top/sakura04.png") center / contain no-repeat;
}

.company-inner {
	max-width: 1600px;
	margin: 0 auto;
}

.company-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 120px;
}

.company-content {
	padding-right: 100px;
	text-align: center;
}

.company-image {
	position: relative;
}

.company-image::before {
	content: "";
	position: absolute;
	bottom: -13%;
	right: -3%;
	width: 141px;
	height: 133px;
	background: url("../images/top/sakura05.png") center / contain no-repeat;
}

.company-image img {
	width: 100%;
	height: 455px;
	object-fit: cover;
}

.company-list {
	margin: 0;
	text-align: left;
}

.company-list div {
	display: grid;
	grid-template-columns: 110px 1fr;
	gap: 15px;
	padding: 15px 0;
	border-bottom: 1px dotted #aaa;
}

.company-button {
	margin-top: 57px;
}

.access-section {
	width: 100%;
	height: 483px;
}

.access-section iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	filter: saturate(.75);
}

.js-fade-up {
	will-change: opacity, transform;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1);
}

.business-card:nth-child(2) {
	transition-delay: .1s;
}

.business-card:nth-child(3) {
	transition-delay: .15s;
}

.business-card:nth-child(4) {
	transition-delay: .25s;
	pointer-events: none;
}

.site-footer {
	position: relative;
	min-height: 430px;
	padding: 80px 0 30px;
	overflow: hidden;
	background: url("../images/top/footer-bg.png") center bottom/100% 100% no-repeat;
}

.footer-inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 320px 1fr 280px;
	align-items: start;
	max-width: 1600px;
	width: 90%;
	margin: 0 auto;
}

.footer-brand {
	grid-column: 1;
	align-self: start;
}

.footer-logo {
	display: block;
	width: 250px;
	margin: 0 auto;
}

.footer-logo img {
	display: block;
	width: 100%;
	height: auto;
}

.footer-company-name {
	margin: 20px 0 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 5%;
	text-shadow: 2px 3px 3px rgba(255, 255, 255);
}

.footer-main {
	grid-column: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 46px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav-list a {
	position: relative;
	display: block;
	padding: 5px 0;
	font-weight: 500;
	white-space: nowrap;
	transition: color .3s ease;
}

.footer-nav-list a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	margin: auto;
	background: #ff42ad;
	transition: width .3s ease;
}

.footer-nav-list a:hover::after {
	width: 100%;
}

.footer-contact {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 276px;
	height: 89px;
	margin-top: 60px;
	background: var(--main-pink);
	color: #fff;
	border-radius: 5px;
	transition: transform .3s ease,
		box-shadow .3s ease;
}

.footer-contact:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
	background: #FFB4BF;
}

.footer-contact-number {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-top: 5px;
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
}

.footer-copyright {
	position: relative;
	z-index: 2;
	margin: 75px 0 0;
	text-align: center;
}

.page-top {
	position: fixed;
	right: 5%;
	bottom: 5%;
	z-index: 999;
	display: block;
	width: 77px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	pointer-events: none;
	transition: opacity .4s ease,
		visibility .4s ease,
		transform .4s ease;
}

.page-top.is-show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.page-top img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform .3s ease;
}

.page-top:hover img {
	transform: translateY(-6px);
}

.pc {
	display: block;
}

.sp {
	display: none;
}

.sp-fixed-nav {
	display: none;
}

/*========================================
1200px以下
========================================*/
@media (max-width:1200px) {
	.header-tel {
		font-size: 22px;
	}

	.header-nav-list {
		gap: 24px;
	}

	.header-nav-item>a {
		font-size: 14px;
	}

	.header-dropdown-menu a {
		font-size: 14px;
	}

	.business-section::before {
		bottom: 0;
	}
}

@media (max-width:1000px) {
	.site-footer {
		min-height: 400px;
		padding-top: 70px;
	}

	.footer-inner {
		grid-template-columns: 230px 1fr;
		align-items: start;
	}

	.footer-brand {
		grid-column: 1;
	}

	.footer-main {
		grid-column: 2;
	}

	.footer-logo {
		width: 190px;
	}

	.footer-company-name {
		font-size: 18px;
	}

	.footer-nav-list {
		gap: 24px;
	}

	.footer-nav-list a {
		font-size: 14px;
	}

	.footer-contact {
		margin-top: 38px;
	}
}

@media (max-width:900px) {
	.header-inner {
		position: relative;
		min-height: 84px;
		padding: 10px 20px;
	}

	.header-logo {
		position: relative;
		z-index: 1002;
		width: min(72vw, 390px);
		flex-shrink: 1;
	}

	.site-header.is-menu-open .header-right {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
	}

	.header-tel {
		justify-content: center;
		margin-bottom: 35px;
		padding: 17px 10px;
		border: 1px solid #f5afc2;
		font-size: 22px;
	}

	.header-nav-list {
		display: block;
	}

	.header-nav-item {
		border-bottom: 1px dotted #e5a6b5;
	}

	.header-nav-item:first-child {
		border-top: 1px dotted #e5a6b5;
	}

	.header-nav-item>a,
	.header-nav-parent {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 0;
		padding: 18px 8px;
		font-size: 16px;
		font-weight: 500;
		text-align: left;
	}

	.header-nav-item>a::after,
	.header-nav-parent::after,
	.header-nav-parent::before {
		display: none;
	}

	.header-nav-parent .dropdown-icon {
		position: relative;
		display: block;
		width: 18px;
		height: 18px;
		margin-left: 15px;
		flex-shrink: 0;
	}

	.dropdown-icon::before,
	.dropdown-icon::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 2px;
		background: #ff48b5;
		transition: transform .3s ease;
	}

	.dropdown-icon::before {
		transform: translate(-50%, -50%);
	}

	.dropdown-icon::after {
		transform: translate(-50%, -50%) rotate(90deg);
	}

	.header-nav-dropdown.is-open .dropdown-icon::after {
		transform: translate(-50%, -50%);
	}

	.header-dropdown-menu {
		position: static;
		width: 100%;
		max-height: 0;
		padding: 0 15px;
		overflow: hidden;
		background: #ffe7ec;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: max-height .4s ease,
			padding .4s ease;
		pointer-events: auto;
	}

	.header-nav-dropdown:hover .header-dropdown-menu,
	.header-nav-dropdown:focus-within .header-dropdown-menu {
		transform: none;
	}

	.header-nav-dropdown.is-open .header-dropdown-menu {
		max-height: 400px;
		padding: 5px 15px 15px;
	}

	.header-dropdown-menu a {
		padding: 13px 5px 13px 25px;
		font-size: 14px;
	}

	.hamburger-lines {
		position: relative;
		display: block;
		width: 52px;
		height: 31px;
	}

	.hamburger-lines span {
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 5px;
		background: #ff48b5;
		transition: top .3s ease,
			transform .3s ease,
			opacity .3s ease;
	}

	.hamburger-lines span:nth-child(1) {
		top: 0;
	}

	.hamburger-lines span:nth-child(2) {
		top: 13px;
	}

	.hamburger-lines span:nth-child(3) {
		top: 26px;
	}

	.hamburger-text {
		display: block;
		margin-top: 5px;
		font-family: Arial, sans-serif;
		font-size: 18px;
		font-weight: 700;
		line-height: 1;
	}

	.site-header.is-menu-open .hamburger-lines span:nth-child(1) {
		top: 13px;
		transform: rotate(45deg);
	}

	.site-header.is-menu-open .hamburger-lines span:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-menu-open .hamburger-lines span:nth-child(3) {
		top: 13px;
		transform: rotate(-45deg);
	}

	.site-header.is-menu-open .hamburger-text {
		font-size: 0;
	}

	.site-header.is-menu-open .hamburger-text::after {
		content: "CLOSE";
		font-size: 15px;
	}

	.main-visual-company {
		top: 18px;
		left: 15px;
		font-size: 14px;
	}

	.main-visual-logo {
		top: 25%;
		width: 45vw;
		max-width: 250px;
	}

	.site-header {
		position: absolute;
		top: 0;
		background: transparent;
		box-shadow: none;
	}

	.site-header.is-fixed {
		position: fixed;
		top: 0;
		background: #ffffe9;
		box-shadow: 0 3px 12px rgba(0, 0, 0, .12);
	}

	/*ファーストビューの文字ロゴ*/
	.logo-fv {
		font-size: 24px;
	}

	/*固定後の画像ロゴ*/
	.logo-header {
		width: min(72vw, 390px);
	}

	/*スマホでは右側をドロワーメニューとして使用*/
	.header-right {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1002;
		display: block;
		width: min(88%, 400px);
		height: 100dvh;
		padding: 110px 30px 50px;
		overflow-y: auto;
		background: #ffffe9;
		opacity: 0;
		visibility: hidden;
		transform: translateX(100%);
		pointer-events: none;
		transition: opacity .35s ease,
			visibility .35s ease,
			transform .35s cubic-bezier(.22, 1, .36, 1);
	}

	/*固定された直後もドロワー自体は閉じておく*/
	.site-header.is-fixed .header-right {
		opacity: 0;
		visibility: hidden;
		transform: translateX(100%);
		pointer-events: none;
	}

	/*ハンバーガーを押したときだけ表示*/
	.site-header.is-fixed.is-menu-open .header-right {
		opacity: 1;
		visibility: visible;
		transform: translateX(0);
		pointer-events: auto;
	}

	/*ハンバーガーはファーストビュー中非表示*/
	.hamburger {
		position: relative;
		z-index: 1002;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 72px;
		height: 64px;
		margin-left: 15px;
		flex-shrink: 0;
		color: #ff48b5;
		display: none;
	}

	/*固定後のみハンバーガー表示*/
	.site-header.is-fixed .hamburger {
		position: relative;
		z-index: 1002;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 72px;
		height: 64px;
		margin-left: 15px;
		flex-shrink: 0;
		color: #ff48b5;
	}

	/*固定後のロゴを前面にする*/
	.site-header.is-fixed .header-brand {
		position: relative;
		z-index: 1002;
	}

	/*背景オーバーレイ*/
	.site-header::after {
		content: "";
		position: fixed;
		inset: 0;
		z-index: 999;
		background: rgba(0, 0, 0, .42);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity .35s ease,
			visibility .35s ease;
	}

	.site-header.is-menu-open::after {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		height: 100vh;
	}

	.header-nav-item>a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		min-height: 0;
		padding: 18px 8px;
		font-size: 16px;
		font-weight: 500;
		text-align: left;
	}

	.header-nav-item>a::after {
		display: none;
	}

	.section-heading h2 {
		font-size: 29px;
	}

	.business-grid {
		gap: 25px;
	}

	.recruit-content {
		padding: 50px 7%;
	}

	.service-layout {
		gap: 45px;
	}

	.service-content {
		padding-left: 7%;
	}

	.company-layout {
		gap: 45px;
		align-items: flex-start;
	}

	.company-content {
		padding-right: 7%;
	}

	.intro {
		background-size: cover;
		padding: 50px 0 110px;
	}

	.recruit-image img {
		width: 100%;
		height: 455px;
		object-fit: cover;
	}
}

@media (max-width:767px) {
	.header-inner {
		min-height: 50px;
		padding: 0 0 0 5px;
	}

	.header-logo {
		width: calc(100% - 78px);
		max-width: 390px;
	}

	.hamburger {
		width: 64px;
		height: 60px;
		margin-left: 8px;
	}

	.hamburger-lines {
		width: 46px;
		height: 27px;
	}

	.hamburger-lines span {
		height: 4px;
	}

	.hamburger-lines span:nth-child(1) {
		top: 0;
	}

	.hamburger-lines span:nth-child(2) {
		top: 11px;
	}

	.hamburger-lines span:nth-child(3) {
		top: 22px;
	}

	.site-header.is-menu-open .hamburger-lines span:nth-child(1),
	.site-header.is-menu-open .hamburger-lines span:nth-child(3) {
		top: 11px;
	}

	.hamburger-text {
		margin-top: 4px;
		font-size: 16px;
	}

	.header-right {
		padding-top: 95px;
	}

	.main-visual {
		height: 100svh;
		min-height: 600px;
		padding-top: 0;
	}

	.main-visual-copy {
		top: 55%;
		left: 10%;
	}

	.inner {
		width: min(100% - 30px, 600px);
	}

	.section-heading {
		margin-bottom: 30px;
	}

	.section-heading h2 {
		font-size: 25px;
	}

	.common-button {
		min-width: 190px;
		height: 48px;
		font-size: 14px;
	}

	.intro {
		padding-top: 50px;
	}

	.intro-box {
		padding: 30px 25px;
		border-radius: 18px;
	}

	.intro-title {
		font-size: 20px;
	}

	.intro-text {
		font-size: 16px;
		line-height: 35px;
	}

	.business-section {
		padding: 80px 0 65px;
	}

	.business-description {
		margin-bottom: 30px;
	}

	.business-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.business-card {
		height: 190px;
		border-radius: 12px;
	}

	.business-card-content h3 {
		font-size: 19px;
	}

	.section-button-wrap {
		margin-top: 35px;
	}

	.business-flower {
		width: 50px;
	}

	.recruit-section {
		display: block;
		min-height: 0;
	}

	.recruit-image {
		height: 320px;
	}

	.recruit-content {
		padding: 55px 30px 70px;
	}

	.recruit-content .common-button {
		margin-top: 30px;
	}

	.service-section {
		padding: 80px 0;
	}

	.service-layout {
		display: flex;
		flex-direction: column-reverse;
		gap: 35px;
	}

	.service-image::before {
		top: -10px;
		right: -10px;
	}

	.service-image img {
		height: 260px;
	}

	.service-content .common-button {
		margin-top: 30px;
	}

	.company-section {
		padding: 80px 0 50px;
	}

	.company-layout {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.company-image img {
		height: 280px;
	}

	.company-list div {
		grid-template-columns: 85px 1fr;
		gap: 10px;
		padding: 13px 0;
	}

	.company-button {
		text-align: center;
	}

	.access-section {
		height: 320px;
	}

	.logo-fv {
		font-size: 20px;
	}

	.logo-header {
		width: calc(78vw - 100px);
		max-width: 390px;
	}

	.site-header.is-fixed .hamburger {
		width: 64px;
		height: 60px;
		margin-left: 8px;
	}

	.site-footer {
		min-height: auto;
		padding: 55px 0 30px;
		background-position: center bottom;
		background-size: auto 100%;
	}

	.footer-inner {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: calc(100% - 30px);
	}

	.footer-brand {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-logo {
		width: 170px;
	}

	.footer-company-name {
		margin-top: 12px;
		font-size: 17px;
	}

	.footer-main {
		width: 100%;
		margin-top: 30px;
	}

	.footer-nav-list {
		flex-wrap: wrap;
		gap: 14px 22px;
	}

	.footer-nav-list li {
		width: calc(33.333% - 15px);
		text-align: center;
	}

	.footer-nav-list a {
		font-size: 12px;
		white-space: normal;
	}

	.footer-contact {
		width: 220px;
		height: 72px;
		margin-top: 30px;
	}

	.footer-contact-number {
		font-size: 23px;
	}

	.footer-copyright {
		margin-top: 55px;
	}

	.page-top {
		right: 15px;
		bottom: 15px;
		width: 60px;
	}
}

@media (max-width:480px) {

	.header-logo {
		width: calc(100% - 68px);
	}

	.hamburger {
		width: 58px;
		margin-left: 5px;
	}

	.hamburger-lines {
		width: 40px;
	}

	.hamburger-text {
		font-size: 14px;
	}

	.header-right {
		width: 90%;
		padding-right: 20px;
		padding-left: 20px;
	}

	.header-tel {
		font-size: 19px;
	}

	.main-visual-company {
		font-size: 12px;
	}

	.main-visual-logo {
		width: 238px;
	}

	.site-footer {
		padding-top: 45px;
	}

	.footer-logo {
		width: 195px;
	}

	.footer-company-name {
		font-size: 24px;
	}

	.footer-nav-list {
		gap: 12px 10px;
	}

	.footer-nav-list li {
		width: calc(50% - 5px);
	}

	.footer-contact {
		width: 210px;
		height: 68px;
	}

	.footer-contact-number {
		font-size: 21px;
	}

	.footer-copyright {
		margin-top: 45px;
	}

	.footer-copyright small {
		font-size: 10px;
	}

	.page-top {
		right: 0;
		bottom: 1px;
		width: 76px;
		z-index: 9999;
	}

	.sp {
		display: block;
	}

	.pc {
		display: none;
	}

	.main-visual-slide img {
		height: 100vh;
		object-fit: inherit;
	}

	.logo-header img {
		width: 61px;
	}

	.site-header.is-fixed .logo-header span {
		font-size: 20px;
	}

	.site-header.is-fixed .logo-header small {
		font-size: 16px;
	}

	.intro {
		background: url("../images/top/bg-town-sp.png") top center / contain no-repeat;
		aspect-ratio: 375 / 737;
		padding-top: 90px;
	}

	.business-section::before {
		top: 7%;
		right: 0;
	}

	.recruit-inner {
		display: flex;
		flex-direction: column;
		width: 90%;
	}

	.recruit-content {
		padding-top: 35px;
	}

	.recruit-image {
		height: 260px;
	}

	.recruit-image img {
		height: 260px;
	}

	.recruit-image::before {
		bottom: -105%;
		left: 0;
	}

	.service-inner {
		width: 90%;
	}

	.service-content {
		padding-left: 0;
	}

	.service-section::before {
		left: 60%;
	}

	.company-inner {
		width: 90%;
	}

	.company-content {
		padding-right: 0;
	}

	.company-list div {
		grid-template-columns: 1fr;
	}

	.company-list dd {
		margin-left: 0;
	}

	.footer-nav {
		display: none;
	}

	.footer-brand {
		margin: 0 auto;
	}

	body {
		padding-bottom: 80px;
	}

	.sp-fixed-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1100;
		display: grid;
		grid-template-columns: 1.5fr .8fr 77px;
		width: 100%;
		height: 80px;
		background: #FEDFE1;
		box-shadow: 0 -3px 12px rgba(0, 0, 0, .12);
	}

	.sp-fixed-item {
		text-align: center;
		height: 80px;
		border-right: 1px solid rgba(255, 255, 255, .7);
		background: #ffb4c5;
		font-weight: 700;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.sp-fixed-access {
		flex-direction: column;
		gap: 1px;
		background: #ffdce3;
	}

	.sp-fixed-tel .sp-fixed-icon {
		width: 34px;
		padding-top: 5px;
	}

	.sp-fixed-access .sp-fixed-icon {
		width: 34px;
		padding-top: 10px;
	}

	.sp-fixed-tel .sp-fixed-text {
		font-size: 30px;
		font-weight: 500;
	}

	.sp-fixed-access .sp-fixed-text {
		font-size: 22px;
		font-weight: 500;
		letter-spacing: -7%;
	}

	.sp-fixed-page-top {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 60px;
		height: 60px;
		background: #fc41cd;
	}

	.sp-fixed-page-top img {
		display: block;
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

	html {
		scroll-padding-bottom: 80px;
	}
}

@media (prefers-reduced-motion:reduce) {
	.js-fade-up {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.main-visual-slide {
		transform: none;
		transition: none;
	}
}

@media (max-width:375px) {
	.logo-header {
		width: calc(90vw - 100px);
	}
}