@charset "UTF-8";
/* CSS Document */
/*---------------------------
	COMMON
---------------------------*/
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
}
.header {
	display: none;
}
.roboto {
	font-family: "Roboto", sans-serif;
	font-weight: 900;
}
.cta-btn {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: clamp(17.5rem, 16.25rem + 4vw, 20rem);
	height: clamp(3.75rem, 3.125rem + 2vw, 5rem);
	background-image: linear-gradient(180deg, rgba(255, 208, 133, 1), rgba(255, 164, 16, 1) 48%, rgba(174, 107, 0, 1));
	border-radius: 10px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	font-size: clamp(1.25rem, 1.063rem + 0.6vw, 1.625rem);
	font-weight: 900;
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	position: relative;
}
.triangle {
	display: inline-block;
	width: 14px;
	height: 26px;
	position: absolute;
	top: 50%;
	right: 3%;
	transform: translateY(-50%);
	overflow: hidden;
}
.triangle::before {
	content: "";
	display: inline-block;
	background: #fff;
	height: 14px;
	width: 14px;
	border: 1px solid #EBEBEB;
	border-radius: 3px;
	position: absolute;
	left: -7px;
	top: 50%;
	transform: translateY(-50%) rotate(-36deg) skew(15deg);
}
.section-title {
	padding-bottom: min(9vw, 60px);
	font-size: clamp(1.875rem, 1.563rem + 1vw, 2.5rem);
	text-align: center;
}
.section-title span {
	display: block;
	padding-bottom: 5px;
	font-size: clamp(0.875rem, 0.813rem + 0.2vw, 1rem);
}

.max750 {
	display: none;
}
@media screen and (max-width: 750px) {
	.max750 {
		display: block;
	}
}

/*---------------------------
	HERO
---------------------------*/
.hero {
	width: 100%;
	background-image: url("../ai-contents/img/bg-hero.webp");
	background-repeat: no-repeat;
	background-size: cover;
	height: min(65vw, 900px);
	max-height: 900px;
	aspect-ratio: 1920 / 900;
	position: relative;
	z-index: 0;
}
.hero::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.3);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.hero-wrap {
	max-width: 1300px;
	width: 83%;
	margin: 0 auto 0 10%;
	padding-top: 15%;
}
.hero-title {
	width: 100%;
	margin-bottom: 2%;
	font-weight: 900;
	font-size: clamp(2.625rem, 1.125rem + 4.8vw, 5.625rem);
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}
.hero-lead {
	width: 100%;
	margin-bottom: 5%;
	font-weight: 900;
	font-size: clamp(1.25rem, 0.469rem + 2.5vw, 2.813rem);
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
}


@media screen and (max-width: 750px) {
	.hero {
		height: 600px;
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.hero-wrap {
	max-width: 1300px;
	width: fit-content;
	margin: 0 auto;
	padding-top: 0;
}
	.hero-title {
		margin-bottom: 7%;
	}
	.hero-lead {
		margin-bottom: 10%;
	}
	.hero .cta-btn {
		margin: 0 auto;
	}
}

/*---------------------------
	AI SERVICE
---------------------------*/
.ai-service {
	padding-top: min(15vw, 100px);
}
.ai-service-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.ai-service-item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
}
.ai-service-item2 {
	flex-direction: row-reverse;
}
.service-img {
	width: 54%;
	height: 287px;
	object-fit: cover;
}
.ai-service-txt {
	max-width: 450px;
	width: 46%;
	border: 1px solid #E4E4E4;
	height: 287px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 40px;
}
.ai-service-txt h3 {
	max-width: 380px;
	width: 93%;
	font-size: clamp(1.25rem, 1.063rem + 0.6vw, 1.625rem);
	text-align: center;
}
.ai-service-txt p {
	max-width: 380px;
	width: 90%;
	font-size: clamp(1rem, 0.938rem + 0.2vw, 1.125rem);
}
@media screen and (max-width: 1260px) {
	.ai-service-wrap {
		width: 93%;
		column-gap: 20px;
		margin: 0 auto;
	}
	.ai-service-item {
		flex-direction: column;
		width: calc((100% - 20px) / 2);
	}
	.ai-service-item2 {
		flex-direction: column;
	}
	.service-img {
		width: 100%;
	}
	.ai-service-txt {
		max-width: 100%;
		width: 100%;
		height: 200px;
		grid-row-gap: 20px;
	}
}
@media screen and (max-width: 750px) {
	.ai-service {
	padding: min(15vw, 100px) 0;
}
	.ai-service-item {
		max-width: 550px;
		width: 100%;
	}
	.ai-service-wrap {
		grid-row-gap: 30px;
	}
}
/*---------------------------
	PRICING
---------------------------*/
.pricing {
	padding: min(15vw, 100px) 0;
	background-color: #F4FBFF;
}
.pricing-sns {
	max-width: 680px;
	width: 93%;
	margin: 0 auto 60px;
}
.pricing-title {
	margin-bottom: 25px;
	font-size: clamp(1.25rem, 1.063rem + 0.6vw, 1.625rem);
	font-weight: 900;
	text-align: center;
}
.pricing-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	column-gap: 3%;
}
.pricing-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	border: 1px solid #CDCDCD;
}
.pricing-sns .pricing-item {
	width: 200px;
	aspect-ratio: 1 / 1;
	padding: 5% 0;
}
.pricing-item h4 {
	font-size: clamp(1.125rem, 1rem + 0.4vw, 1.375rem);
}
.pricing-price {
	font-size: clamp(1.563rem, 1.344rem + 0.7vw, 2rem);
	color: #3169B3;
	font-weight: 900;
}
.per {
	font-size: clamp(1rem, 0.875rem + 0.4vw, 1.25rem);
}
.pricing-p {
	font-size: clamp(0.875rem, 0.813rem + 0.2vw, 1rem);
}
.pricing-ad {
	max-width: 875px;
	width: 93%;
	margin: 25px auto;
}
.pricing-ad .pricing-item {
	width: 265px;
	padding: 3% 0;
	grid-row-gap: 15px;
}
.pricing-recommend {
	width: 100%;
	padding: 10px;
	background-color: #3E84A9;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	text-align: center;
}
.pricing-info {
	display: flex;
	align-items: center;
	flex-direction: column;
	grid-row-gap: 5px;
	font-weight: 500;
}
.pricing-note {
	margin-top: 40px;
	text-align: center;
	font-weight: 500;
}

@media screen and (max-width: 850px) {
	.pricing-wrap {
		column-gap: 1%;
	}
	.pricing-ad .pricing-item {
		width: calc(98% / 3);
	}
}
@media screen and (max-width: 740px) {
	.pricing-wrap {
		flex-direction: column;
		grid-row-gap: 30px;
	}
	.pricing-sns .pricing-item {
		max-width: 450px;
		width: 100%;
		aspect-ratio: unset;
		grid-row-gap: 30px;
	}
	.pricing-ad .pricing-item {
		max-width: 450px;
		width: 100%;
	}
}

@media screen and (max-width: 500px) {
	.pricing-sns .pricing-item {
		grid-row-gap: 15px;
		padding: 8% 0;
	}
	.pricing-ad .pricing-item {
		padding: 8% 0;
	}
}
/*---------------------------
	CTA SECTION
---------------------------*/
.cta-sec {
	padding: min(12vw, 80px) 0;
	background-image: linear-gradient(200deg, rgba(212, 212, 212, 1), rgba(0, 67, 115, 1) 73%);
	text-align: center;
	letter-spacing: 0.05em;
}
.cta-message {
	width: 93%;
	margin: 0 auto;
	font-size: clamp(1.25rem, 1.125rem + 0.4vw, 1.5rem);
	color: #fff;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	font-weight: 600;
	line-height: 1.5;
}
.cta-sec .cta-btn {
	margin: 30px auto 0;
}
/*---------------------------
	STRENGTH
---------------------------*/
.strength {
	padding: min(15vw, 100px) 0;
	background-color: #282830;
	color: #fff;
}
.strength-wrap {
	max-width: 850px;
	width: 93%;
	margin: 25px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.strength-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-row-gap: 15px;
}
@media screen and (max-width: 740px) {
	.strength-wrap {
		max-width: 450px;
		flex-direction: column;
		align-items: center;
		grid-row-gap: 30px;
}
.strength-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	grid-row-gap: 15px;
}
}
/*---------------------------
	GALLERY
---------------------------*/
.gallery {
	max-width: 1200px;
	width: 93%;
	margin: 0 auto;
	padding: min(15vw, 100px) 0;
	display: grid;
	grid-template-columns: 49% 49%;
	grid-template-rows: auto auto;
	column-gap: 2%;
}
.gallery .section-title {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
}
.gallery-sns {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	display: grid;
	grid-template-columns: 49% 49%;
	grid-template-rows: auto auto;
	column-gap: 2%;
	grid-row-gap: 25px;
}
.gallery-title {
	grid-column: 1 / 3;
	grid-row: 1 / 2;
	font-size: clamp(1.25rem, 1.063rem + 0.6vw, 1.625rem);
	font-weight: 900;
	text-align: center;
}
.tiktok-mochi {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}
.tiktok-cn {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}
.gallery-ad {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	display: grid;
	grid-template-columns: 49% 49%;
	grid-template-rows: auto auto;
	column-gap: 2%;
	grid-row-gap: 25px;
}
.ad-img1 {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}
.ad-img2 {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
	width: 100%;
	border-radius: 10px;
	object-fit: cover;
}

@media screen and (max-width: 1245px) {
	
.gallery {
	max-width: 900px;
	grid-template-columns: 100%;
	grid-template-rows: auto auto auto;
	column-gap: 0;
}
	.gallery .section-title {
	grid-column: 1 / 2;
}
	.gallery-sns {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
}
	.gallery-ad {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
		margin-top: 45px;
}
}

@media screen and (max-width: 650px) {
	.gallery-sns {
	grid-template-columns: 100%;
	grid-template-rows: auto auto auto;
	column-gap: 0;
	grid-row-gap: 25px;
}
.gallery-title {
	grid-column: 1 / 2;
	margin-bottom: 10px;
}
.tiktok-mochi {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	max-width: 450px;
	margin: 0 auto;
}
.tiktok-cn {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
	max-width: 450px;
	margin: 0 auto;
}
	
	blockquote {
		margin: 0 auto!important;
		width: 100%!important;
	}
	
.gallery-ad {
	grid-template-columns: 100%;
	grid-template-rows: auto auto auto;
	column-gap: 0;
	grid-row-gap: 25px;
}
.ad-img1 {
	grid-column: 1 / 2;
	grid-row: 2 / 3;
	aspect-ratio: 1 / 1;
	max-width: 298px;
	margin: 0 auto;
}
.ad-img2 {
	grid-column: 1 / 2;
	grid-row: 3 / 4;
	aspect-ratio: 1 / 1;
	max-width: 298px;
	margin: 0 auto;
}
}
/*---------------------------
	SCHEDULE
---------------------------*/
.schedule {
	background-color: #F4FBFF;
	padding: min(15vw, 100px) 0;
}

.flow-wrap {
	max-width: 1365px;
	width: 93%;
	margin: 50px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	column-gap: 1%;
}

.flow-item {
	width: 33%;
	display: grid;
	grid-template-columns: 100%;
	grid-template-rows: 80px auto;
	place-items: center;
	align-items: center;
}

.flow-item:nth-of-type(2) {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}

.flow-title {
	align-self: flex-start;
	font-size: clamp(1.25rem, 1.063rem + 0.6vw, 1.625rem);
}
.process-list {
	max-width: 360px;
	width: 93%;
	margin: 0 auto;
	list-style: none;
	position: relative;
}
.process-list::before {
	content: "";
	position: absolute;
	left: 20px;
	top: 10px;
	width: 2px;
	height: 85%;
	background: #222;
}
.sns-process-list::before {
	height: 75%;
}
.process-item {
	position: relative;
	padding-left: 75px;
	margin-bottom: 30px;
}
.process-circle {
	position: absolute;
	left: 4px;
	top: 0;
	width: 34px;
	height: 34px;
	border: 1px solid currentColor;
	border-radius: 50%;
}
.process-circle::before {
	content: "";
	background: currentColor;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.process-circle::after {
	content: "";
	width: 25px;
	height: 1px;
	background-color: currentColor;
	position: absolute;
	top: 50%;
	right: -25px;
}

.process-step {
	font-size: 18px;
	font-weight: 600;
}

.process-step span {
	margin-right: 10px;
	font-family: "Roboto", sans-serif;
	font-weight: 900;
}

.step {
	font-size: clamp(0.875rem, 0.813rem + 0.2vw, 1rem);
}

.number {
	font-size: 25px;
}

.process-item1 {
	color: #E42828;
}
.process-item2 {
	color: #E47628;
}
.process-item3 {
	color: #7CA911;
}
.process-item4 {
	color: #02A37B;
}
.process-item5 {
	color: #1144A9;
}
.process-item-last {
	color: #A91113;
}

.process-txt {
	font-size: clamp(0.938rem, 0.906rem + 0.1vw, 1rem);
	color: #000;
}

@media screen and (max-width: 900px) {
	.flow-wrap {
	flex-direction: column;
		margin-top: 0;
}
	.flow-item {
	width: 100%;
	grid-template-rows: auto auto;
		grid-row-gap: 30px;
		padding: 50px 0;
}
	.flow-item:nth-of-type(1) {
		padding-top: 0;
	}
	.flow-item:nth-of-type(3) {
		padding-bottom: 0;
	}
	.flow-item:nth-of-type(2) {
		border: none;
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
}

/* ------------------------------
footer
------------------------------ */
@media screen and (max-width: 768px) {
	footer {
		margin-top: min(15vw, 100px);
	}
}
