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

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
	background: #f9f4ef;
	letter-spacing: .1em;
}

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

p {
	    line-height: 2;
}

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

video {
	max-width: 100%;
}

.sp-only {
	display: none;
}

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

/* =========================
   Loading
========================= */

#loading {
	position: fixed;
	inset: 0;
	background: #333;
	z-index: 99999;

	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-logo {
	opacity: 0;
	animation: logoFadeIn .6s forwards;
}

.loading-logo img {
	width: 220px;
	height: auto;
	display: block;

	/* ロゴが黒い場合 */
	filter: brightness(0) invert(1);
}

@keyframes logoFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

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

#loading.reveal {
	animation: loadingReveal .9s ease forwards;
}

@keyframes loadingReveal {
	to {
		transform: translateY(100%);
	}
}

#page-wrap {
	opacity: 0;
	transform: translateY(30px);
	filter: blur(8px);
}

#page-wrap.show {
	animation: pageFade 1s ease forwards;
}

@keyframes pageFade {
	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}

@media screen and (max-width: 768px) {
.loading-logo img {
	width: 150px;
}
}
	
.site-header {
	padding: 30px 20px;
	display: flex;
	align-items: center;
	    justify-content: flex-end;
    position: relative;
	    border-bottom: 1px solid;
}

.site-branding {
	    width: 120px;
    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;
	    background: #333;
    padding: 10px 30px;
    color: #fff;
    border-radius: 999px;
	    transition: .3s;
	border: 2px solid #333;
	position: relative;
}

.site-header-contact span {
	position: relative;
	z-index: 2;
}

.site-header-contact::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #7cd6fd;
	border-radius: inherit;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .4s ease;
	z-index: 1;
}

.site-header-contact:hover::before {
	transform: scaleX(1);
}

.site-header-contact:hover span {
/* 	    background: #7cd6fd; */
	color: #333;
}

@media (max-width: 768px) {
	.site-branding {
    width: 100px;
	}
	.site-header {
    padding: 15px 15px;
}
}

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

.sp-nav {
	display: none;
}

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

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

#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;
	transition: .3s;
}

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

.hamburger:hover::before {
	color: #7cd6fd;
}

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

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

.hamburger:hover span {
	background: #7cd6fd;
}

.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 {
	padding: 0 5vw;
	text-align: center;
}

.hero h1 {
	font-size: 5vw;
	margin-bottom: 4vw;
}

.hero-container-img {
	    width: 70%;
    margin: 0 auto;
}

.fv-title span {
	display: inline-block;
	opacity: 0;
	transform: translateY(30px);
/* 	filter: blur(5px); */
	    letter-spacing: -1vw;
}

.fv-title .ai {
	background: #333;
	color: #fff;
	font-size: 6vw;
	    line-height: 1;
    letter-spacing: 0px;
    padding: 0 0 0 .5vw;
    margin-right: -1vw;
}

.fv-title.start span {
	animation: charFade .6s ease forwards;
}

.fv-title.start span:nth-of-type(1)  { animation-delay: .05s; }
.fv-title.start span:nth-of-type(2)  { animation-delay: .10s; }
.fv-title.start span:nth-of-type(3)  { animation-delay: .15s; }
.fv-title.start span:nth-of-type(4)  { animation-delay: .20s; }
.fv-title.start span:nth-of-type(5)  { animation-delay: .25s; }
.fv-title.start span:nth-of-type(6)  { animation-delay: .30s; }
.fv-title.start span:nth-of-type(7)  { animation-delay: .35s; }
.fv-title.start span:nth-of-type(8)  { animation-delay: .40s; }
.fv-title.start span:nth-of-type(9)  { animation-delay: .45s; }
.fv-title.start span:nth-of-type(10) { animation-delay: .50s; }
.fv-title.start span:nth-of-type(11) { animation-delay: .55s; }
.fv-title.start span:nth-of-type(12) { animation-delay: .60s; }
.fv-title.start span:nth-of-type(13) { animation-delay: .65s; }
.fv-title.start span:nth-of-type(14) { animation-delay: .70s; }
.fv-title.start span:nth-of-type(15) { animation-delay: .75s; }
.fv-title.start span:nth-of-type(16) { animation-delay: .80s; }

@keyframes charFade {
	from {
		opacity: 0;
		transform: translateY(30px);
/* 		filter: blur(5px); */
	}

	to {
		opacity: 1;
		transform: translateY(0);
/* 		filter: blur(0); */
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 7vw;
		    margin-bottom: 8vw;
	}
	.fv-title .ai {
    font-size: 8vw;
}
	.hero-container-img {
    width: 90%;
}
}

.section {
	padding: 80px 0;
}

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

.section-title {
	margin-bottom: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}

.section-title h2 {
	font-size: 120px;
	font-weight: 700;
	font-family: Belanosima, serif;
	    line-height: 1;
}

.section-title p {
	font-weight: 500;
	    font-size: 18px;
}

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

.section-link a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: #333;
	font-weight: 600;
	font-family: "Belanosima", sans-serif;
}

/* 丸 */
.arrow {
	position: relative;
	width: 32px;
	height: 32px;
	border: 1px solid #333;
	border-radius: 50%;
	background: #333;
	overflow: hidden;
	flex-shrink: 0;
	transition: transform .3s ease;
}

/* 真ん中から広がる色 */
.arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: #7cd6fd;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: .35s ease;
	z-index: 1;
}

/* 矢印 */
.arrow::after {
	content: "➜";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #fff;
	font-size: 14px;
	line-height: 1;
	z-index: 2;
	transition: color .3s ease;
}

/* ホバー */
.section-link a:hover .arrow::before {
	width: 120%;
	height: 120%;
}

.section-link a:hover .arrow {
	transform: translateX(4px);
}

/* ホバー時の矢印色 */
.section-link a:hover .arrow::after {
	color: #333;
}

@media (max-width: 768px) {
	.section-title {
    margin-bottom: 30px;
    align-items: flex-start;
    gap: 0;
    flex-direction: column;
}
	.section-title h2 {
    font-size: 40px;
}
	.section-title p {
    font-size: 12px;
}
}

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

.concept-box h3 {
	margin-bottom: 40px;
	font-size: 40px;
}

@media (max-width: 768px) {
	.concept {
		padding: 50px 0;
	}
	.concept-box h3 {
    margin-bottom: 20px;
    font-size: 20px;
}
}

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

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

.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;
}

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

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

@media (max-width: 768px) {
	.service-list {
    gap: 40px;
}
	.service-item {
    gap: 20px;
    flex-direction: column;
}
	.service-item:nth-child(even) {
    flex-direction: column;
}
	.service-image {
    width: 100%;
}
	.service-content {
    width: 100%;
}
	.service-content h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
	.service-content p {
    margin-bottom: 20px;
}
}

/* =========================
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: 18px;
}

@media (max-width: 768px) {
    .case-list {
        grid-template-columns: 1fr;
        gap: 20px;
		    margin-bottom: 30px;
    }
}

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