@charset "utf-8";
/* CSS Document */

/*==========
変数
==========*/
:root {
	--bg_color1: #FFF;
	--bg_color2: #EBF7FF;
	--font_color1: #383838;
	--main_color: #33AAFF;
	--sub_color: #FFFF33;
	--drawer_bg_color: #FFF;
	--border_color1: #bbbbbb;
	--a_color: #29A6FF;
	--a_hover_color: #ff29b8;
	--footer_color: #383838;
}

/*==========
共通
==========*/
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
	height: 100%;
}

body {
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
	color: var(--font_color1);
	font-feature-settings: "palt"1;
	-webkit-text-size-adjust: 100%;
	background-color: var(--bg_color);
	position: relative;
	margin: 0;
	overflow-wrap: break-word;
	min-height: 100svh;
}

a {
	color: var(--a_color);
	text-decoration: none;
	transition: .3s;
}

a:hover {
	transition: .3s;
	color: var(--a_hover_color);
}

body {
	animation: fade .3s;
}

@keyframes fade {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

img {
	max-width: 100%;
	height: auto;
}

.wrap {
	width: 100%;
	min-height: calc(100vh - 150px);
}

.container {
	width: 100%;
}

@media (min-width: 768px) {
	body {
		font-size: 1.7rem;
		line-height: 1.67;
	}

	.wrap {
		width: 540px;
		margin-inline: auto;
	}

	.container {
		max-width: 540px;
		margin-inline: auto;
	}
}


.site_header {
	height: 60px;
	width: 100%;
	display: grid;
	place-content: center;
}

.header_logo {
	height: 54px;
	width: auto;
}

/*==========
MV
==========*/
.mv {
	display: grid;
	place-items: center;
	margin-bottom: 60px;
}

.mv>* {
	grid-area: 1 / -1 / 1 / -1;
}

.mv_layer {
	background-color: #FFF;
	border-radius: 15px;
	width: 72%;
	transform: translateY(-30px);
	padding: 24px 12px 60px;
	position: relative;
}

.mv_layer ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 6px;
	margin-bottom: 12px;
}

.mv_layer ul li {
	background-color: var(--sub_color);
	padding: 2px 12px;
	border-radius: 3px;
	font-size: 1.2rem;
	font-weight: 900;
}

.mv_layer h1 {
	font-size: 3.2rem;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 12px;
}

.mv_layer h1 .color {
	color: var(--main_color);
}

.mv_layer h1 .big {
	font-size: 10.5vw;
	color: var(--main_color);
}

.mv_layer .description {
	font-weight: 900;
	line-height: 1.65;
}

.mv_layer .circle {
	background-color: #FF8AAB;
	width: 150px;
	height: 150px;
	aspect-ratio: 1 /1;
	border-radius: 100vmax;
	display: grid;
	place-items: center;
	position: absolute;
	bottom: -90px;
	right: -40px;
}

.mv_layer .circle p {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.3;
	color: #FFF;
	text-align: center;
	transform: rotate(16deg) translateY(5px);
}

.mv_layer .circle p span {
	font-size: 3rem;
	font-weight: 900;
}

@media (min-width: 768px) {
	.mv {
		height: 90vh;
		min-height: 840px;
		overflow: hidden;
	}

	.mv_layer {
		padding: 60px 18px;
	}

	.mv_layer ul {
		margin-bottom: 24px;
	}

	.mv_layer ul li {
		font-size: 1.3rem;
	}

	.mv_layer h1 {
		font-size: 4.2rem;
		margin-bottom: 24px;
	}

	.mv_layer h1 .big {
		font-size: 5.8rem;
	}

	.mv_layer .description {
		line-height: 2;
		width: 86%;
		margin-inline: auto;
		font-size: 1.8rem;
	}

	.mv_layer .circle {
		background-color: #FF8AAB;
		width: 180px;
		height: 180px;
		aspect-ratio: 1 /1;
		border-radius: 100vmax;
		display: grid;
		place-items: center;
		position: absolute;
		bottom: -75px;
		right: -40px;
	}

	.mv_layer .circle p {
		font-size: 1.8rem;
		font-weight: 600;
		line-height: 1.3;
		color: #FFF;
		text-align: center;
		transform: rotate(16deg) translateY(5px);
	}

	.mv_layer .circle p span {
		font-size: 3.6rem;
	}
}



/*==========
セクションタイトル
==========*/
.section_title {
	margin-bottom: 36px;
	text-align: center;
}

.section_title h1,
.section_title h2 {
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 9px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.section_title h1::before,
.section_title h1::after,
.section_title h2::before,
.section_title h2::after {
	width: 2px;
	height: 20px;
	background-color: var(--main_color);
	content: '';
}

.section_title h1::before,
.section_title h2::before {
	transform: rotate(-20deg);
	margin-right: 12px;
}

.section_title h1::after,
.section_title h2::after {
	transform: rotate(20deg);
	margin-left: 12px;
}

.section_title span {
	color: var(--main_color);
}

.section_title p {
	font-size: 3rem;
	font-weight: 900;
	display: inline-block;
	background: linear-gradient(transparent 60%, var(--sub_color) 60%);
	padding: 0 12px 6px;
	margin-inline: auto;
}

@media (min-width: 768px) {
	.section_title {
		margin-bottom: 54px;
	}

	.section_title h1,
	.section_title h2 {
		font-size: 2.4rem;
	}

	.section_title h1::before,
	.section_title h1::after,
	.section_title h2::before,
	.section_title h2::after {
		width: 2px;
		height: 30px;
		content: '';
	}

	.section_title h1::before,
	.section_title h2::before {
		margin-right: 15px;
	}

	.section_title h1::after,
	.section_title h2::after {
		margin-left: 15px;
	}

	.section_title span {
		color: var(--main_color);
	}

	.section_title p {
		font-size: 4.2rem;
		padding: 0 15px 9px;
		line-height: 1;
	}
}


/*==========
特色
==========*/
.feature {
	padding: 42px 0 78px;
}

.feature_list {
	width: 96%;
	margin-inline: auto;
}

.feature_list li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	border-bottom: solid 1px var(--border_color1);
	padding: 12px 0;
}

.feature_list li img {
	width: 30%;
}

.feature_list li div {
	width: calc(100% - 30% - 12px);
}

.feature_list li div p {
	font-size: 2rem;
	font-weight: 900;
	line-height: 1.2;
}

.feature_list li div p span {
	font-size: 3rem;
	color: var(--main_color);
}

@media (min-width: 768px) {
	.feature {
		padding: 60px 0 90px;
	}

	.feature_list li {
		gap: 18px;
		padding: 15px 0;
	}

	.feature_list li img {
		width: 150px;
	}

	.feature_list li div {
		width: calc(100% - 150px - 18px);
	}

	.feature_list li div p {
		font-size: 2rem;
		line-height: 1.3;
	}

	.feature_list li div p span {
		font-size: 3.6rem;
	}
}


/*==========
制作実績
==========*/
.works {
	padding: 42px 0 78px;
}

.work_item {
	background-color: var(--bg_color2);
	padding: 15px 15px 30px;
	margin-bottom: 30px;
}

.work_item .cat {
	font-size: 1.2rem;
	font-weight: 900;
	display: inline-block;
	padding: 6px 24px;
	border-radius: 100vmax;
	background-color: var(--sub_color);
	margin-bottom: 12px;
}

.work_item img {
	width: 100%;
	margin-bottom: 18px;
}

.work_item h3 {
	font-size: 2.4rem;
	font-weight: 900;
	margin-bottom: 12px;
}

.work_item p {
	line-height: 1.6;
}

@media (min-width: 768px) {
	.works {
		padding: 60px 0 90px;
	}

	.work_item {
		padding: 24px 24px 54px;
		margin-bottom: 42px;
	}

	.work_item .cat {
		font-size: 1.35rem;
		padding: 6px 24px;
		margin-bottom: 15px;
	}

	.work_item h3 {
		font-size: 3rem;
	}

	.work_item p {
		line-height: 1.8;
	}
}


/*==========
制作実績
==========*/
.worry {
	padding: 42px 0 78px;
	background-color: var(--bg_color2);
}

.speech_wrap {
	width: 96%;
	margin-inline: auto;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 12px;
}

.speech {
	width: calc((100% - 12px)/2);
	position: relative;
	display: inline-block;
	padding: 18px 6px 24px;
	border: 3px solid #d5d5d5;
	border-radius: 12px;
	background-color: #ffffff;
}

.speech::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20%;
	border-style: solid;
	border-width: 20px 10px 0 10px;
	border-color: #d5d5d5 transparent transparent;
	translate: -50% 100%;
}

.speech::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20%;
	border-style: solid;
	border-width: 13.3px 6.6px 0 6.6px;
	border-color: #ffffff transparent transparent;
	translate: -50% 100%;
}

.speech p {
	font-weight: 900;
	text-align: center;
	line-height: 1.6;
}

@media (min-width: 768px) {
	.worry {
		padding: 60px 0 120px;
		box-shadow: 0 0 0 100vmax var(--bg_color2);
		clip-path: inset(0 -100vmax);
	}

	.speech p {
		font-size: 1.9rem;
	}
}


/*==========
選ばれる理由
==========*/
.reason {
	padding: 42px 0 78px;
}

.reason_wrap {
	width: 96%;
	margin-inline: auto;
}

.reason_item {
	margin-bottom: 36px;
}

.reason_item header {
	font-size: 2.4rem;
	font-weight: 900;
	transform: skew(-15deg, 0deg);
	display: inline-block;
	background: linear-gradient(transparent 80%, var(--sub_color) 80%);
	padding: 0 48px 3px 6px;
	margin-bottom: 6px;
}

.reason_item header span {
	font-size: 4.2rem;
}

.reason_item img {
	width: 100%;
	margin-bottom: 12px;
}

.reason_item h3 {
	font-size: 2.4rem;
	font-weight: 900;
	color: var(--main_color);
	margin-bottom: 9px;
}

.reason_item p {
	line-height: 1.6;
}

@media (min-width: 768px) {
	.reason {
		padding: 60px 0 90px;
	}

	.reason_item {
		margin-bottom: 42px;
	}

	.reason_item header {
		font-size: 3rem;
		padding: 0 48px 6px 6px;
		margin-bottom: 12px;
		line-height: 1;
	}

	.reason_item header span {
		font-size: 6rem;
	}

	.reason_item h3 {
		font-size: 3.6rem;
	}

	.reason_item p {
		line-height: 1.8;
	}
}



/*==========
まずは無料相談
==========*/
.flow {
	padding: 42px 0 78px;
	background-color: var(--bg_color2);
}

.flow_wrap {
	width: 96%;
	margin-inline: auto;
}

.flow_item {
	background-color: #FFF;
	padding: 36px 24px 42px;
	margin-bottom: 30px;
}

.flow_item h3 {
	font-size: 2.4rem;
	font-weight: 900;
	text-align: center;
	color: var(--main_color);
	margin-bottom: 24px;
}

.flow_item p {
	font-weight: 600;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.flow {
		padding: 60px 0 120px;
		box-shadow: 0 0 0 100vmax var(--bg_color2);
		clip-path: inset(0 -100vmax);
	}

	.flow_item {
		padding: 42px 36px 54px;
	}

	.flow_item h3 {
		font-size: 3rem;
		margin-bottom: 30px;
	}

	.flow_item p {
		font-size: 1.8rem;
		line-height: 1.5;
	}

}


/*==========
よくある質問
==========*/
.faq {
	padding: 42px 0 78px;
}

.faq_wrap {
	width: 96%;
	margin-inline: auto;
}

.faq_item {
	margin-bottom: 30px;
}

.faq_item header {
	font-size: 2rem;
	font-weight: 900;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin-bottom: 9px;
}

.faq_item header div {
	width: 60px;
	height: 60px;
	border-radius: 100vmax;
	display: grid;
	place-content: center;
	background-color: var(--main_color);
}

.faq_item header div span {
	font-size: 3.6rem;
	color: #FFF;
	transform: skew(-15deg, 0deg) translateY(-4px);
}

.faq_item p {
	font-weight: 600;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.faq {
		padding: 60px 0 90px;
	}

	.faq_item {
		margin-bottom: 42px;
	}

	.faq_item header {
		font-size: 2.4rem;
		margin-bottom: 12px;
	}

	.faq_item header div {
		width: 72px;
		height: 72px;
	}

	.faq_item header div span {
		font-size: 4.2rem;
	}

	.faq_item p {
		line-height: 1.8;
	}

}



/*==========
クロージング
==========*/
.closing {
	padding: 42px 0 78px;
	background-color: var(--bg_color2);
}

.closing hgroup {
	text-align: center;
	margin-bottom: 30px;
}

.closing hgroup p,
.closing hgroup h3 {
	font-weight: 900;
	display: inline-block;
	background: linear-gradient(transparent 60%, var(--sub_color) 60%);
	padding: 0 12px 6px;
}

.closing hgroup p {
	font-size: 2rem;
	margin-bottom: 6px;
}

.closing hgroup p span {
	font-size: 2.4rem;
	color: var(--main_color);
}

.closing hgroup h3 {
	font-size: 2.4rem;
}

.closing hgroup h3 span {
	font-size: 3.6rem;
	color: var(--main_color);
}

.closing_item {
	width: 96%;
	margin-inline: auto;
}

.closing_item p {
	line-height: 1.5;
}


@media (min-width: 768px) {
	.closing {
		padding: 60px 0 120px;
		box-shadow: 0 0 0 100vmax var(--bg_color2);
		clip-path: inset(0 -100vmax);
	}

	.closing hgroup {
		margin-bottom: 42px;
	}

	.closing hgroup p,
	.closing hgroup h3 {
		background: linear-gradient(transparent 70%, var(--sub_color) 70%);
		line-height: 1.2;
	}

	.closing hgroup p {
		font-size: 2.4rem;
	}

	.closing hgroup p span {
		font-size: 3.6rem;
	}

	.closing hgroup h3 {
		font-size: 3.6rem;
	}

	.closing hgroup h3 span {
		font-size: 4.8rem;
	}

	.closing_item p {
		line-height: 1.8;
	}
}


/*==========
404ページ
==========*/
.not_found {
	padding: 42px 0 78px;
}

.not_found_body {
	width: 96%;
	margin: 0 auto;
}

.not_found_body p {
	line-height: 1.6;
	margin-bottom: 36px;
}

.section_link {
	width: 84%;
	max-width: 360px;
	height: 60px;
	margin-inline: auto;
	display: grid;
	place-items: center;
	background-color: var(--main_color);
}

.section_link span {
	font-weight: 900;
	color: #FFF;
}



/*==========
フッター
==========*/
.site_footer {
	padding: 90px 0;
	background-color: #383838;
}

.site_footer_copyright {
	font-size: 1.2rem;
	color: #FFF;
	text-align: center;
}

@media (min-width: 768px) {
	.site_footer_copyright {
		font-size: 1.35rem;
	}

}


/*==========
固定フッター
==========*/
.fix_footer {
	width: 100%;
	max-width: 540px;
	position: fixed;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background-color: #FFF;
}

.fix_footer_link {
	display: flex;
	flex-wrap: wrap;
}

.fix_footer_link a {
	width: 50%;
	height: 72px;
	display: grid;
	place-items: center;
}

.fix_footer_link a img {
	height: 42px;
	width: auto;
	transform: translateY(3px);
}

.fix_footer_link a p {
	font-size: 1.2rem;
	font-weight: 600;
	color: #FFF;
}

.fix_footer_link a.tel {
	background-color: var(--main_color);
}

.fix_footer_link a.line {
	background-color: #06C755;
}

.fix_footer_link a.line img {
	transform: translateY(4px);
}
