* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	background: #f9f4ef;
}

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

img {
	max-width: 100%;
	height: auto;
}

video {
	max-width: 100%;
}

.sp-only {
	display: none;
}

@media screen and (max-width: 768px) {
	.sp-only {
		display: block;
	}
	.pc-only {
		display: none;
	}
}

.site-header {
	padding: 30px 20px;
	display: flex;
	align-items: center;
	    justify-content: flex-end;
    position: relative;
	    border-bottom: 1px solid;
}

.site-branding {
	    width: 80px;
    position: absolute;
        top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.site-branding a {
	    display: flex;
}

.site-header-right {
	    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.site-header-contact {
	font-family: "Belanosima", sans-serif;
}

/* #primary-menu {
	display: flex;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#primary-menu a {
	text-decoration: none;
	color: #333;
} */


/* =========================
Hamburger
========================= */

.sp-nav {
	display: none;
}

.drawer-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 320px;
	max-width: 80%;
	height: 100vh;
	background: #fff;
	padding: 100px 30px;
	z-index: 1001;
	transition: right .3s ease;
	overflow-y: auto;
}

.drawer-menu.active {
	right: 0;
}

.menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	z-index: 1000;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

#drawer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

#drawer-menu li {
	margin-bottom: 20px;
}

#drawer-menu a {
	display: block;
	font-size: 14px;
	text-decoration: none;
	color: #333;
}

.hamburger {
	position: relative;
	width: 30px;
	height: 20px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 1002;
	    margin-top: 10px;
}

.hamburger::before {
	content: "MENU";
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 10px;
	letter-spacing: .1em;
	font-family: "Belanosima", sans-serif;
}

.hamburger.active::before {
	content: "CLOSE";
}

.hamburger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #333;
	transition: .3s;
}

.hamburger span:nth-child(1) {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 9px;
}

.hamburger span:nth-child(3) {
	bottom: 0;
}

.hamburger.active span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	bottom: 9px;
	transform: rotate(-45deg);
}

/* スクロール禁止 */
body.menu-open {
	overflow: hidden;
}

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

	.pc-nav {
		display: none;
	}

	.sp-nav {
		display: block;
	}
}

/* =========================
Hero Section
========================= */
.hero {
	padding: 60px 0;
}

.hero-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 5vw;
}

.hero h1 {
	font-size: 5vw;
	line-height: 1.2;
	width: 50%;
}

.hero-container-img {
	width: 50%;
}

/* Responsive */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 7vw;
	}
}

.section {
	padding: 80px 0;
}

.inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.section-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background: #e07575;
	margin: 20px auto 0;
}

.section-title h2 {
	font-size: 60px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	font-family: Belanosima, serif;
}

.section-title p {
	margin-top: 12px;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: #e07575;
}

.section-link {
	text-align: center;
}

.section-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 220px;
	height: 60px;
	border: 2px solid;
	text-decoration: none;
	transition: .3s;
	background: #7cd6fd;
	font-weight: 500;
	border-radius: 100px;
}

.section-link a:hover {
	background: #333;
	color: #fff;
}

/* =========================
concept
========================= */
.concept {
	padding: 120px 0;
}

.concept-box h3 {
	margin-bottom: 40px;
	font-size: 42px;
	line-height: 1.6;
	text-align: center;
	color: #e07575;
}

.concept-box p {
	font-size: 16px;
	line-height: 2.2;
}

/* =========================
service
========================= */
.service {
	padding: 120px 0;
}

.service-list {
	display: flex;
	flex-direction: column;
	gap: 100px;
}

.service-item {
	display: flex;
	align-items: center;
	gap: 60px;
}

.service-item:nth-child(even) {
	flex-direction: row-reverse;
}

.service-image {
	width: 50%;
}

.service-image img {
	width: 100%;
	display: block;
	border-radius: 20px;
}

.service-content {
	width: 50%;
}

.service-content h3 {
	margin-bottom: 25px;
	font-size: 32px;
	color: #e07575;
}

.service-content p {
	margin-bottom: 30px;
}

.service .section-link {
	text-align: left;
}

/* =========================
case
========================= */
.case {
	padding: 120px 0;
}

.case-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.case-item a {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: .3s;
}

.case-item a:hover {
	transform: translateY(-5px);
}

.case-thumbnail {
	margin-bottom: 20px;
	overflow: hidden;
	border-radius: 20px;
}

.case-thumbnail img {
	display: block;
	width: 100%;
	height: auto;
	transition: .3s;
}

.case-item a:hover .case-thumbnail img {
	transform: scale(1.05);
}

.case-item h3 {
	font-size: 24px;
}

/* =========================
faq
========================= */

.faq {
	padding: 120px 0;
}

.faq-list {
	max-width: 900px;
	margin: 0 auto 60px;
}

.faq-list li {
	padding: 30px;
	border-bottom: 1px solid #ddd;
}

.faq-list li:first-child {
	border-top: 1px solid #ddd;
}

.faq-list h3 {
	position: relative;
	padding-left: 40px;
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 700;
}

.faq-list h3::before {
	content: "Q";
	position: absolute;
	top: 0;
	left: 0;
	font-size: 24px;
	font-weight: 700;
	color: #2b6cb0;
}

.faq-list p {
	position: relative;
	padding-left: 40px;
}

.faq-list p::before {
	content: "A";
	position: absolute;
	top: 0;
	left: 0;
	font-weight: 700;
	color: #2b6cb0;
}

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

	.faq {
		padding: 80px 0;
	}

	.faq-list {
		margin-bottom: 40px;
	}

	.faq-list li {
		padding: 20px 0;
	}

	.faq-list h3 {
		padding-left: 30px;
		font-size: 20px;
	}

	.faq-list h3::before,
	.faq-list p::before {
		font-size: 20px;
	}

	.faq-list p {
		padding-left: 30px;
	}

}

/* =========================
company
========================= */

.company {
	padding: 120px 0;
}

.company-table {
	width: 100%;
	max-width: 900px;
	margin: 0 auto 60px;
	border-top: 1px solid #ddd;
	border-collapse: collapse;
}

.company-table th,
.company-table td {
	padding: 25px 30px;
	border-bottom: 1px solid #ddd;
	text-align: left;
	vertical-align: top;
}

.company-table th {
	width: 220px;
	font-weight: 700;
	background: #f8f8f8;
}

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

	.company {
		padding: 80px 0;
	}

	.company-table {
		margin-bottom: 40px;
	}

	.company-table th,
	.company-table td {
		display: block;
		width: 100%;
		padding: 15px;
	}

	.company-table th {
		border-bottom: none;
	}

}

/* Footer */
.site-footer {
	background: #333;
	color: #fff;
	padding: 40px 0;
	text-align: center;
}

#hand {
  transform-origin: 60px 150px;
  animation: handMove 2s ease-in-out infinite;
}

@keyframes handMove {
  0%,100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

#hand2 {
  transform-origin: 250px 150px;
  animation: handMove2 2s ease-in-out infinite;
}

@keyframes handMove2 {
  0%,100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-8deg);
  }
}

#leaf {
  transform-origin: center bottom;
  animation: leafMove 4s ease-in-out infinite;
}

@keyframes leafMove {
  0%,100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(2deg);
  }
}

#face {
  transform-origin: 435px 125px;
  animation: faceMove 4s ease-in-out infinite;
}

@keyframes faceMove {
  0%,100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(2deg);
  }
}