@charset "utf-8";

/* ============================
guidance.css　もくじ
-------------------------------
1.ブレイクポイント
2.メインビジュアル
3.ページ内共通部品
4.納品までの流れ
5.利用規約
6.よくある質問
============================== */

/* ===========================
1.ブレイクポイント
============================== */
@media screen and (min-width: 30em) { /* 480px */
}
@media screen and (min-width: 40em) { /* 640px */
}
@media screen and (min-width: 48em) { /* 768px：PC用 */
}
@media screen and (min-width: 64em) {/* 1024px */
}
@media screen and (min-width: 80em) {/* 1280px */
}

/* ===========================
2.メインビジュアル
============================== */
#main_visual {
	background-image: url(../img/main-visual/mv_guidance.jpg);
}

/* ===========================
3.ページ内共通部品
============================== */
.content_wrapper .block_layer01 {
	margin-bottom: 30px;
	border-bottom: var(--color-pale-gray) solid 10px;
	padding-top: 4px;
	padding-bottom: 34px;
}
.content_wrapper .block_layer01:first-child,
.content_wrapper .block_layer01:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.content_wrapper .block_layer01:first-child {
	margin-bottom: 40px;
	padding-top: 0;
}
.content_wrapper .block_layer01 > .ttl {
	margin-bottom: 20px;
	border: var(--primary-color) solid 1px;
	padding: 0.125em 0.5em 0.25em;
	color: var(--primary-color);
}
.content_wrapper .block_layer01 .copy {
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.7;
}
@media screen and (min-width: 30em) { /* 480px */
	.content_wrapper .block_layer01 > .ttl {
		font-size: 28px;
	}
	.content_wrapper .block_layer01 .copy {
		margin-bottom: 30px;
		font-size: 15px;
	}
}
@media screen and (min-width: 40em) { /* 640px */
	.content_wrapper .block_layer01 > .ttl {
		font-size: 30px;
	}
	.content_wrapper .block_layer01 .copy {
		font-size: 16px;
	}
}
@media screen and (min-width: 48em) { /* 768px：PC用 */
	.content_wrapper .block_layer01 {
		margin-bottom: 60px;
		border-bottom: none;
		padding-bottom: 0;
	}
	.content_wrapper .block_layer01:last-child {
		margin-bottom: 40px;
	}
	.content_wrapper .block_layer01 > .ttl {
		margin-bottom: 40px;
		border: var(--primary-color) solid 2px;
		font-size: 34px;
	}
	.content_wrapper .block_layer01 .copy {
		margin-bottom: 40px;
		font-size: 18px;
	}
}
@media screen and (min-width: 64em) {/* 1024px */
	.content_wrapper .block_layer01 {
		margin-bottom: 70px;
	}
	.content_wrapper .block_layer01:last-child {
		margin-bottom: 50px;
	}
	.content_wrapper .block_layer01 .copy {
		font-size: 20px;
	}
}

/* ===========================
4.納品までの流れ
============================== */
.flow-chart-area {
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	max-width: 420px;
}
.flow-chart-area .step-main {
	position: relative;
	padding-top: 16px;
}
.flow-chart-area .step-main .numbering-circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
}
.flow-chart-area .step-main .numbering-circle .number {
	display: inline-block;
	border: var(--primary-color) solid 1px;
	border-radius: 50%;
	width: 1.8em;
	height: 1.8em;
	background-color: #fff;
	font-size: 20px;
	font-weight: bold;
	color: var(--primary-color);
	line-height: 1.7;
}
.flow-chart-area .step-main .step-main_cont {
	border: var(--primary-color) solid 1px;
	padding: 1.25em 10px 10px;
}
.flow-chart-area .step-main .step-main_cont .ttl {
	margin-bottom: 6px;
}
.flow-chart-area .arrow {
	padding: 10px 15px 4px;
	text-align: center;
}
.flow-chart-area .arrow .right {
	display: none;
}
.flow-chart-area .step-point .step-point_inner {
	border: var(--primary-color) solid 1px;
	border-radius: 4px;
	padding: 10px 12px 12px;
	background-color: var(--primary-color);
	font-size: 18px;
	color: #fff;
}
.flow-chart-area .step-point + .step-main {
	margin-top: 12px;
}
@media screen and (min-width: 48em) { /* 768px：PC用 */
	.flow-chart-area {
		display: grid;
		grid-template-columns: 26% 3.5% 26% 3.5% 8.5% 3.5% 1fr 3.5% 8.5%;
		grid-template-rows: 1fr 1fr;
		gap: 20px 4px;
		max-width: 760px;
	}
	.flow-chart-area > *:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	.flow-chart-area > *:nth-child(2) {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	.flow-chart-area > *:nth-child(3) {
		grid-column: 3 / 4;
		grid-row: 1 / 2;
	}
	.flow-chart-area > *:nth-child(4) {
		grid-column: 4 / 5;
		grid-row: 1 / 2;
	}
	.flow-chart-area > *:nth-child(5) {
		grid-column: 5 / 8;
		grid-row: 1 / 2;
	}
	.flow-chart-area > *:nth-child(6) {
		grid-column: 8 / 9;
		grid-row: 1 / 2;
	}
	.flow-chart-area > *:nth-child(7) {
		grid-column: 9 / 10;
		grid-row: 1 / 2;
	}
	.flow-chart-area > *:nth-child(8) {
		grid-column: 1 / 2;
		grid-row: 2 / 3;
	}
	.flow-chart-area > *:nth-child(9) {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
	.flow-chart-area > *:nth-child(10) {
		grid-column: 3 / 4;
		grid-row: 2 / 3;
	}
	.flow-chart-area > *:nth-child(11) {
		grid-column: 4 / 5;
		grid-row: 2 / 3;
	}
	.flow-chart-area > *:nth-child(12) {
		grid-column: 5 / 6;
		grid-row: 2 / 3;
	}
	.flow-chart-area > *:nth-child(13) {
		grid-column: 6 / 7;
		grid-row: 2 / 3;
	}
	.flow-chart-area > *:nth-child(14) {
		grid-column: 7 /10;
		grid-row: 2 / 3;
	}
	.flow-chart-area .step-main {
		padding-top: 20px;
	}
	.flow-chart-area .step-main .numbering-circle .number {
		font-size: 24px;
	}
	.flow-chart-area .step-main .step-main_cont {
		padding: 1.625em 10px 10px;
		height: 100%;
	}
	.flow-chart-area .step-main .step-main_cont .ttl {
		text-align: center;
	}
	.flow-chart-area .step-main .step-main_cont .txt {
		font-size: 16px;
		line-height: 1.7;
	}
	.flow-chart-area .arrow {
		padding: 1.25em 3px 0;
		writing-mode: vertical-rl;
		text-align: center;
	}
	.flow-chart-area .arrow .right {
		display: inline-block;
		width: 100%;
		height: auto;
	}
	.flow-chart-area .arrow .under {
		display: none;
	}
	.flow-chart-area .step-point {
		display: flex;
		justify-content: center;
		padding: 1.125em 0 0;
	}
	.flow-chart-area .step-point .step-point_inner {
		writing-mode: vertical-rl;
		width: 100%;
		text-align: center;
		font-size: 22px;
		line-height: 2;
	}
	.flow-chart-area .step-point + .step-main {
		margin-top: 0;
	}
}

/* ===========================
5.利用規約
============================== */
#termsOfService .txt,
#termsOfService .list_item {
	font-size: 14px;
	line-height: 1.7;
}
#termsOfService .txt {
	margin-bottom: 1.7em;
}
#termsOfService .notation-list {
	margin-left: 1.5em;
}
#termsOfService .notation-list .list_item {
	list-style-type: disc;
}
@media screen and (min-width: 40em) { /* 640px */
	#termsOfService .txt,
	#termsOfService .list_item {
		font-size: 15px;
	}
}
@media screen and (min-width: 48em) { /* 768px：PC用 */
	#termsOfService .term-content {
		border: var(--color-pale-gray) solid 20px;
		padding: 30px 40px;
	}
	#termsOfService .txt,
	#termsOfService .list_item {
		font-size: 16px;
	}
}

/* ===========================
6.よくある質問
============================== */
#FAQ .faq-content {
	background-color: var(--color-pale-gray);
	padding: 6px;
	border-radius: 8px;
}
#FAQ .faq-item {
	margin-bottom: 6px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid var(--color-light-gray);
	border-radius: 5px;
}
#FAQ .faq-item:last-child {
	margin-bottom: 0;
}
#FAQ .question {
	border-bottom: var(--color-light-gray) dotted 1px;
	padding-bottom: 0.365em;
	padding-left: 1.25em;
	text-indent: -1.25em;
	font-size: 16px;
	font-weight: normal;
	color: var(--primary-color);
}
#FAQ .answer {
	margin-top: 5px;
	padding-left: 1.125em;
	text-indent: -1.125em;
	font-size: 14px;
	color: var(--color-black);
	line-height: 1.7;
}
@media screen and (min-width: 40em) { /* 640px */
	#FAQ .question {
		font-size: 18px;
	}
	#FAQ .answer {
		font-size: 15px;
	}
}
@media screen and (min-width: 48em) { /* 768px：PC用 */
	#FAQ .faq-content {
		padding: 16px;
		border-radius: 8px;
	}
	#FAQ .faq-item {
		margin-bottom: 12px;
	}
	#FAQ .question {
		padding-left: 1.5em;
		font-size: 20px;
	}
	#FAQ .answer {
		padding-left: 1.75em;
		font-size: 16px;
	}
}

