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

html,
body {
	height: 100%;
}

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

ul {
	list-style: none;
}

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

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);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

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

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

#primary {
	flex: 1;
}

@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;
	position: fixed;
	width: 100%;
	background: #f9f4ef;
	z-index: 1;
}

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

.site-branding a {
	display: flex;
}

.menu-open .site-branding img {
	filter: brightness(0) invert(1);
}

.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: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #333;
	padding: 200px 0px;
	z-index: 1001;
	transform: translateY(-100%);
	transition: transform 0.6s ease;
	overflow-y: auto;
}

.drawer-menu.active {
	transform: translateY(0);
}

#drawer-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

#drawer-menu li {
	margin-bottom: 20px;
	width: calc(100% / 3);
}

#drawer-menu a {
	display: block;
	font-size: 20px;
	color: #fff;
}

.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;
	color: #333;
}

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

.hamburger.active::before {
	content: "CLOSE";
	color: #fff;
}

.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 {
	background: #fff;
}

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

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

	.drawer-menu {
		padding: 150px 0px;
	}
	#drawer-menu li {
		width: 100%;
	}
	#drawer-menu a {
		font-size: 16px;
	}
	.hamburger:hover::before {
		color: #333;
	}
	.hamburger:hover span {
		background: #333;
	}
	.hamburger.active:hover span {
		background: #fff;
	}
	.hamburger.active:hover::before {
		color: #fff;
	}
}

/* =========================
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: 0.8;
    letter-spacing: 0px;
    padding: 0 0 .7vw .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%;
	}
}

main {
	padding-top: 109px;
}

@media screen and (max-width: 768px) {
	main {
		padding-top: 61px;
	}
}

.section {
	padding: 80px 0;
}

.inner {
	max-width: 1240px;
	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;
	}
}

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

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

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

/* =========================
top-service
========================= */
.top-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;
}

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

@media (max-width: 768px) {
	.top-service {
		padding: 50px 0;
	}
	.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;
	}
}

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

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

.case-item a {
	display: block;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	transition: .3s;
	border: 2px solid;
}

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

.case-thumbnail {
	overflow: hidden;
}

.case-thumbnail img {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: .3s;
}

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

.case-content {
	padding: 20px;
}

.case-item h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.case-excerpt p {
	font-size: 14px;
	line-height: 1.5;
}

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

/* =========================
top-member
========================= */

.top-member {
	padding: 120px 0;
}

.member-lead {
	display: flex;
	justify-content: center;
	margin: 0 0 60px;
	font-size: 18px;
}

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

.member-item {
	display: block;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	transition: .3s;
	border: 2px solid;
}

.member-item a:hover {
	transform: translateY(-20px);
}

.member-image img {
	width: 100%;
	display: block;
	aspect-ratio: 1 / 1;
	object-fit: cover;
}

.member-content {
	padding: 25px;
}

.member-position {
	font-size: 14px;
	margin-bottom: 10px;
	color: #666;
}

.member-content h3 {
	font-size: 24px;
	margin-bottom: 20px;
}

.member-skill {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.member-skill li {
	padding: 5px 12px;
	background: #f1f1f1;
	border-radius: 30px;
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.top-member {
		padding: 50px 0;
	}

	.member-lead {
		font-size: 16px;
		margin-bottom: 40px;
	}

	.member-list {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 40px;
	}

	.member-content {
		padding: 20px;
	}

	.member-content h3 {
		font-size: 20px;
	}

}

/* =========================
footer
========================= */
.footer {
	background: #333;
	color: #fff;
	padding: 70px 0 20px;
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 80px;
	margin-bottom: 60px;
}

.footer-logo img {
	width: 180px;
	height: auto;
	filter: brightness(0) invert(1);
}

.footer-nav {
	flex: 1;
}

.footer-menu{
	display:grid;
	grid-template-columns:repeat(5, max-content);
	justify-content:end;
	gap: 30px 40px; 
}

.footer-menu > li > a {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
}

.footer-menu > li a:hover {
	color: #7cd6fd;
}

.footer-menu .sub-menu li {
	    margin-top: 5px;
}

.footer-menu .sub-menu a {
	    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, .75);
    transition: .3s;
}

.footer-copy {
	text-align: center;
}

@media screen and (max-width:768px){
	.footer {
    padding: 40px 0 20px;
}
	.footer-container {
    gap: 40px;
    margin-bottom: 40px;
    flex-direction: column;
}
	.footer-logo {
		    margin: 0 auto;
	}
	.footer-logo img {
    width: 120px;
}
	.footer-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    justify-content: stretch;
}
	.footer-menu > li > a {
    font-size: 13px;
}
	.footer-menu .sub-menu a {
    font-size: 12px;
}
}

#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);
	}
}

/* =========================
   breadcrumb
========================= */

.breadcrumb {
	position: absolute;
	    top: 130px;
	right: 20px;
}

.breadcrumb ul {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	line-height: 1.5;
	flex-wrap: wrap;
}

.breadcrumb li:not(:last-child)::after {
	content: "-";
	margin-left: 5px;
}

.breadcrumb a {
	transition: .3s;
}

.breadcrumb a:hover {
	color: #7cd6fd;
}

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

	.breadcrumb{
	        top: 70px;
        right: initial;
        left: 10px;
	}

	.breadcrumb ul{
		font-size:10px;
	}

}

/* =========================
   page
========================= */

.page-fv {
	padding: 100px 0;
}

.page-title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}

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

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

@media (max-width: 768px) {
	.page-fv {
		padding: 70px 0 50px;
	}
	.page-title {
		align-items: flex-start;
		gap: 0;
		flex-direction: column;
	}
	.page-title h1 {
		font-size: 40px;
	}
	.page-title p {
		font-size: 12px;
	}
}

.page-title.page h1 {
	font-size: 40px;
	    font-family: "Noto Sans JP", sans-serif;
}

.entry-content {
	padding: 0 0 100px;
}

.entry-content h2 {
	margin: 80px 0 30px;
	font-size: 28px;
}

.entry-content h3 {
	margin: 50px 0 20px;
	font-size: 24px;
}

.entry-content h4 {
	margin: 50px 0 20px;
	font-size: 20px;
}

.entry-content  p {
	margin-bottom: 20px;
}

.entry-content ul,
.entry-content ol {
	margin: 30px 0;
	padding-left: 20px;
}

.entry-content li {
	margin-bottom: 10px;
}

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

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 40px 0;
}

.entry-content th,
.entry-content td {
	padding: 15px;
	border: 1px solid #ddd;
}

@media screen and (max-width: 768px) {
	
	.page-title.page h1 {
	font-size: 24px;
}
	
	.entry-content {
	padding: 0 0 50px;
}

	.entry-content h2 {
		font-size: 20px;
		margin: 30px 0 10px;
	}

	.entry-content h3 {
		font-size: 18px;
		margin: 30px 0 10px;
	}
	
	.entry-content h4 {
		font-size: 16px;
		margin: 30px 0 10px;
	}

}

/* =========================
service-page
========================= */

.service-page {
	padding: 0 0 100px;
}

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


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

	.service-page {
		padding: 0 0 50px;
	}

}

/* =========================
   service-detail
========================= */

.page-fv.service {
	    padding: 100px 0 20px;
}

.service-detail {
	padding: 0 0 100px;
}

.service-detail-head {
	display: flex;
	align-items: center;
	gap: 80px;
}

.service-detail-image,
.service-detail-content {
	width: 50%;
}

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

.service-detail-content h2 {
	margin-bottom: 30px;
	font-size: 40px;
}

.service-detail-content p {
	line-height: 2;
}

.service-problem {
	padding: 120px 0;
	background: #f3ebe2;
}

.service-problem-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-problem-item {
	padding: 40px 30px;
	background: #fff;
	border-radius: 20px;
}

.service-problem-item h3 {
	margin-bottom: 20px;
	font-size: 24px;
	text-align: center;
}

.service-problem-item p {
	line-height: 1.9;
}

.service-reason {
	padding: 120px 0;
}

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

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

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

.service-reason-image {
	width: 50%;
}

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

.service-reason-content {
	width: 50%;
}

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

.service-reason-content-number {
	    font-size: 50px;
    color: #fff;
    font-family: "Oi", serif;
    -webkit-text-stroke: 2px #333;
	    line-height: 1;
}

.service-flow {
	padding: 120px 0;
	background: #f3ebe2;
}

.flow-list {
	max-width: 1000px;
	margin: 0 auto;
}

.flow-list li {
	display: flex;
	align-items: center;
	gap: 50px;
	padding: 40px 0;
}

.flow-list li:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.flow-image {
	width: 220px;
	flex-shrink: 0;
}

.flow-image img {
	width: 100%;
	display: block;
}

.flow-content {
	flex: 1;
}

.flow-number {
	margin-bottom: 10px;
	    font-size: 40px;
    color: #fff;
    font-family: "Oi", serif;
    -webkit-text-stroke: 2px #333;
    line-height: 1;
}

.flow-content h3 {
	margin-bottom: 20px;
	font-size: 30px;
	line-height: 1.4;
}

.flow-content p:last-child {
	line-height: 2;
}

.service-price {
	padding: 120px 0;
}

.price-list{
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:30px;
}

.price-item{
	padding:40px 30px;
	background:#fff;
	border:1px solid #ddd;
	border-radius:20px;
	text-align:center;
}

.price-item h3{
	margin-bottom:10px;
	font-size:34px;
	color:var(--main-color);
}

.price-sub{
	margin-bottom:25px;
	font-size:20px;
	font-weight:700;
}

.price-item p:last-child{
	line-height:1.9;
}

.price-note{
	margin-top:40px;
	text-align:center;
	line-height:1.8;
	color:#666;
}

.service-cta {
		padding: 100px 0;
	}

.service-faq {
		padding: 100px 0;
	}

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

	.service-detail {
		padding: 0 0 50px;
	}
	
	.service-problem,
	.service-reason,
	.service-flow,
	.service-price{
		padding: 50px 0;
	}

	.service-detail-head{
		flex-direction: column;
		gap: 40px;
	}

	.service-detail-image,
	.service-detail-content{
		width: 100%;
	}

	.service-detail-content h2{
		margin-bottom: 20px;
		font-size: 24px;
	}

	.service-problem-list{
		grid-template-columns: 1fr;
	}

	.service-problem-item{
		padding: 30px 25px;
	}

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

	.flow-list li{
		flex-direction: column;
		align-items: flex-start;
		gap: 30px;
		padding: 30px 0;
	}

	.flow-image{
		width: 180px;
		margin: 0 auto;
	}

	.flow-content h3{
		margin-bottom: 15px;
		font-size: 24px;
	}

	.flow-content p:last-child{
		line-height: 1.8;
	}

	.price-list{
		grid-template-columns:1fr;
	}

	.price-item h3{
		font-size:28px;
	}

	.price-sub{
		font-size:18px;
	}
	
	.service-cta {
		padding: 50px 0;
	}

.service-faq {
		padding: 50px 0;
	}

}

/* =========================
faq-page
========================= */

.faq-page {
	padding: 0 0 100px;
}

.faq-list li {
	padding: 30px;
}

.faq-list h3 {
	position: relative;
	padding-left: 80px;
	padding-bottom: 20px;
	margin-bottom: 15px;
	font-size: 24px;
	font-weight: 700;
	border-bottom: 1px dashed #333;
}

.faq-list h3::before {
	content: "Q";
	position: absolute;
	top: -18px;
	left: 0;
	font-size: 50px;
	color: #fff;
	font-family: "Oi", serif;
	-webkit-text-stroke: 1px #333;
}

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

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

	.faq-page {
		padding: 0 0 50px;
	}

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

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

	.faq-list h3 {
		        padding-left: 35px;
        font-size: 16px;
	}

	.faq-list h3::before,
	.faq-list p::before {
		        font-size: 24px;
        top: -5px;
	}

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

}

/* =========================
company-page
========================= */

.company-page {
	padding: 0 0 100px;
}

.company-content {
	padding: 50px;
	background: #fff;
	    border-radius: 20px;
	    border: 2px solid;
}

.company-table {
	width: 100%;
	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 tr:last-child th,
.company-table tr:last-child td {
	border-bottom: none;
}

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

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

	.company {
		padding: 0 0 50px;
	}
	
	.company-content {
    padding: 20px;
}

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

	.company-table th {
		border-bottom: none;
				padding: 15px;
	}
	
	.company-table td {
		padding: 0 15px 15px;
	}

}

/* =========================
archive-post
========================= */

.archive-post {
	padding: 0 0 100px;
}

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

.post-item a {
	display: block;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	transition: .3s;
	border: 2px solid;
}

.post-item a:hover {
	transform: translateY(-20px);
}

.post-thumbnail {
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: .3s;
}

.post-item:hover img {
	transform: scale(1.05);
}

.post-content {
	padding: 20px;
}

.post-date {
	font-size: 14px;
	font-family: Belanosima, serif;
}

.post-title {
	font-size: 18px;
}

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

	.archive-post {
		padding: 0 0 50px;
	}

	.post-list {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.post-title {
		font-size: 18px;
	}

}

/* =========================
single-post
========================= */

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

main .single-post {
	padding: 0 0 100px;
}

.single-post h1 {
	font-size: 32px;
	margin-bottom: 15px;
}

.post-meta {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 15px;
}

.post-date {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.post-date i {
	font-size: 14px;
}

.post-author {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
}

.post-author img {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	object-fit: cover;
}

.single-thumbnail {
	margin-bottom: 60px;
}

.single-thumbnail img {
	width: 100%;
	display: block;
}

.single-content h2 {
	margin: 80px 0 30px;
	font-size: 28px;
}

.single-content h3 {
	margin: 50px 0 20px;
	font-size: 24px;
}

.single-content h4 {
	margin: 50px 0 20px;
	font-size: 20px;
}

.single-content p {
	margin-bottom: 20px;
}

.single-content ul,
.single-content ol {
	margin: 30px 0;
	padding-left: 20px;
}

.single-content li {
	margin-bottom: 10px;
}

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

.single-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 40px 0;
}

.single-content th,
.single-content td {
	padding: 15px;
	border: 1px solid #ddd;
}

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

	.page-title p.page-title-single {
		font-size: 40px;
	}

	main .single-post {
		padding: 0 0 50px;
	}

	.single-post h1 {
		font-size: 20px;
	}

	.single-thumbnail {
		margin-bottom: 40px;
	}

	.single-content h2 {
		font-size: 20px;
		margin: 30px 0 10px;
	}

	.single-content h3 {
		font-size: 18px;
		margin: 30px 0 10px;
	}
	
	.single-content h4 {
		font-size: 16px;
		margin: 30px 0 10px;
	}

}

/* =========================
archive-news
========================= */

.archive-news {
	padding: 0 0 100px;
}

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

.news-item a {
	display: block;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
	transition: .3s;
	border: 2px solid;
}

.news-item a:hover {
	transform: translateY(-20px);
}

.news-thumbnail {
	overflow: hidden;
}

.news-thumbnail img {
	width: 100%;
	display: block;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: .3s;
}

.news-item:hover img {
	transform: scale(1.05);
}

.news-content {
	padding: 20px;
}

.news-date {
	font-size: 14px;
	font-family: Belanosima, serif;
}

.news-title {
	font-size: 18px;
}

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

	.archive-news {
		padding: 0 0 50px;
	}

	.news-list {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.news-title {
		font-size: 18px;
	}

}

/* =========================
archive-case
========================= */

.archive-case {
	padding: 0 0 100px;
}

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

	.archive-case {
		padding: 0 0 50px;
	}
}

/* =========================
   cta
========================= */

.cta {
	padding: 120px 0;
}

.cta-box {
	display: flex;
	align-items: center;
	gap: 80px;
	padding: 60px;
	    background: #fff;
    border-radius: 20px;
    border: 2px solid;
}

.cta-image {
	width: 35%;
}

.cta-image img {
	width: 100%;
	display: block;
}

.cta-content {
	flex: 1;
}

.cta-subtitle {
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: 700;
}

.cta-content h2 {
	margin-bottom: 25px;
	font-size: 32px;
	line-height: 1.5;
}

.cta-text {
	margin-bottom: 30px;
}

.cta-point {
	margin-bottom: 40px;
}

.cta-point li {
	margin-bottom: 12px;
	font-size: 18px;
	font-weight: 700;
}

.cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 320px;
	height: 70px;
	background: #333;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 100px;
	transition: .3s;
	    border: 2px solid #333;
	    position: relative;
}

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

.cta-btn:hover::before {
    transform: scaleX(1);
}

.cta-btn span {
    position: relative;
    z-index: 2;
}

.cta-btn:hover span {
    color: #333;
}

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

	.cta {
		padding: 50px 0;
	}

	.cta-box {
		flex-direction: column;
		gap: 40px;
		padding: 40px 30px;
	}

	.cta-image {
		width: 220px;
	}

	.cta-content h2 {
		font-size: 22px;
	}

	.cta-btn {
		width: 100%;
	}

}

/* =========================
   contact-select
========================= */

.contact-select {
	padding: 0 0 100px;
}

.contact-select-list {
	display: flex;
	gap: 40px;
	    flex-direction: column;
}

.contact-select-item {
	flex: 1;
	padding: 50px;
	border: 2px solid;
	border-radius: 20px;
	background: #fff;
	transition: .3s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.contact-select-img {
	width: 40%;
	padding: 30px;
}

.contact-select-text {
	flex: 1;
}

.contact-select-item h2 {
	margin-bottom: 20px;
	font-size: 30px;
}

.contact-select-item p {
	margin-bottom: 30px;
}

.contact-select-point {
	margin-bottom: 40px;
}

.contact-select-point li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
}

.contact-select-point li::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #333;
}

.contact-select-item a {
	    background: #333;
    padding: 12px 30px;
    color: #fff;
    border-radius: 999px;
    transition: .3s;
    border: 2px solid #333;
    position: relative;
	    font-weight: bold;
	    display: block;
    max-width: 240px;
    text-align: center;
}

.contact-select-item a span {
	position: relative;
	z-index: 2;
}

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

.contact-select-item a:hover::before {
	transform: scaleX(1);
}

.contact-select-item a:hover span {
	color: #333;
}

.contact-select-button {
	    width: 30%;
}

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

	.contact-select {
		padding: 0 0 50px;
	}

	.contact-select-list {
		flex-direction: column;
		gap: 30px;
	}

	.contact-select-item {
		padding: 35px 25px;
		flex-direction: column;
	}
	
	.contact-select-img {
    width: 60%;
    padding: 0;
}

	.contact-select-item h2 {
		font-size: 20px;
	}
	
	.contact-select-item a {
    margin: 0 auto;
}
	
	.contact-select-item:nth-child(2) p {
    margin-bottom: 0;
}
	
	.contact-select-button {
    width: 100%;
}

}

/* =========================
   contact-consult-page
========================= */

.contact-consult-page {
	padding: 0 0 100px;
}

.contact-consult-content {
	display: flex;
	align-items: flex-start;
	gap: 80px;
}

.contact-consult-info {
	width: 40%;
	position: sticky;
	top: 150px;
}

.contact-consult-image {
	    margin: 0 auto 40px;
    width: 70%;
}

.contact-consult-image img {
	display: block;
	width: 100%;
}

.contact-consult-info h2 {
	margin-bottom: 25px;
	font-size: 38px;
}

.contact-consult-text {
	margin-bottom: 30px;
}

.contact-consult-point li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 15px;
}

.contact-consult-point li::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #333;
}

.contact-consult-form {
	flex: 1;
	padding: 50px;
	background: #fff;
	    border-radius: 20px;
    border: 2px solid;
}

.contact-consult-form label,
.contact-consult-form fieldset {
	display: block;
	margin-bottom: 24px;
	padding: 0;
	border: none;
	font-size: 16px;
	font-weight: 700;
}

.contact-consult-form legend {
	margin-bottom: 12px;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
}

.contact-consult-form input[type="text"],
.contact-consult-form input[type="email"],
.contact-consult-form input[type="tel"],
.contact-consult-form textarea {
	width: 100%;
	margin-top: 8px;
	padding: 14px 16px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	font-size: 16px;
	box-sizing: border-box;
}

.contact-consult-form textarea {
	min-height: 180px;
	resize: vertical;
}

.contact-consult-form .wpcf7-list-item {
	display: block;
	margin: 10px 0;
}

.contact-consult-form .wpcf7-list-item label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 0;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
}

.contact-consult-form input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 3px;
}

.contact-consult-form .contact-submit {
	margin-top: 40px;
	text-align: center;
}

.contact-consult-form .wpcf7-spinner {
	display: none;
}

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

	.contact-consult-page {
		padding: 0 0 50px;
	}

	.contact-consult-content {
		flex-direction: column;
		gap: 50px;
	}

	.contact-consult-info {
		width: 100%;
		position: static;
	}

	.contact-consult-info h2 {
		font-size: 20px;
	}

	.contact-consult-form {
		padding: 30px 20px;
	}
	
	.contact-consult-form label {
        margin-bottom: 24px;
        font-size: 14px;
    }

}

/* =========================
   contact-other-page
========================= */

.contact-other-page {
	padding: 0 0 100px;
}

.contact-other-content {
	    background: #fff;
    border-radius: 20px;
	    border: 2px solid;
	    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.contact-other-head {
	margin: 0 auto 60px;
	    display: flex;
    justify-content: center;
}

.contact-other-form {
	max-width: 800px;
	margin: 0 auto;
}

.contact-other-form label,
.contact-other-form fieldset {
	display: block;
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: 700;
	    border: none;
}

.contact-other-form input:not([type="submit"]),
.contact-other-form textarea {
	width: 100%;
	margin-top: 10px;
	padding: 15px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
	font-size: 16px;
	box-sizing: border-box;
}

.contact-other-form textarea {
	min-height: 220px;
	resize: vertical;
}

.contact-other-form .wpcf7-list-item {
	display: block;
	margin: 12px 0;
}

.contact-other-form .wpcf7-list-item label {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-weight: 400;
	cursor: pointer;
}

.contact-other-form input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 0;
}

.contact-submit {
	position: relative;
	overflow: hidden;
	border-radius: 999px;
	background: #333;
	    width: 320px;
    text-align: center;
    margin: 0 auto;
}

.contact-submit::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: #7cd6fd;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width .5s ease, height .5s ease;
	z-index: 1;
}

.contact-submit:hover::before {
	width: 500px;
	height: 500px;
}

.contact-submit input[type="submit"] {
	position: relative;
	z-index: 2;
	padding: 18px 0;
	background: transparent;
	border: 2px solid #333;
	color: #fff;
	cursor: pointer;
	transition: color .3s;
	    border-radius: 999px;
	font-weight: bold;
	    width: 100%;
	    font-size: 16px;
}

.contact-submit:hover input[type="submit"] {
	color: #333;
}

.wpcf7-spinner {
	display: none;
}

.contact-other-form .wpcf7-not-valid-tip {
	margin-top: 8px;
	font-size: 14px;
}

.contact-other-form .wpcf7-response-output {
	margin: 30px 0 0 !important;
	padding: 15px !important;
}

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

	.contact-other-page {
		padding: 0 0 50px;
	}

	.contact-other-head {
		margin-bottom: 40px;
	}
	
	.contact-other-content {
    padding: 30px 20px;
}

	.contact-other-form label {
		margin-bottom: 24px;
		font-size: 14px;
	}

	.contact-other-form input:not([type="submit"]),
	.contact-other-form textarea {
		padding: 14px 16px;
		font-size: 14px;
	}
	
	.contact-submit {
	    width: 240px;
}
	
	.contact-submit input[type="submit"] {
    padding: 14px 0;
    font-size: 14px;
}

}

/* =========================
   404 page
========================= */

.page-404 {
	padding: 0 0 100px;
}
.page-404-container {
	    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-404-container p {
	    margin-bottom: 50px;
}

.page-404-button a {
	    background: #333;
    padding: 12px 30px;
    color: #fff;
    border-radius: 999px;
    transition: .3s;
    border: 2px solid #333;
    position: relative;
	    font-weight: bold;
	    display: block;
    max-width: 240px;
    text-align: center;
}

.page-404-button a span {
	position: relative;
	z-index: 2;
}

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

.page-404-button a:hover::before {
	transform: scaleX(1);
}

.page-404-button a:hover span {
	color: #333;
}

@media screen and (max-width: 768px) {
	.page-404 {
	padding: 0 0 50px;
}
}