@charset "UTF-8";

#wrap {
	padding: 0;
}

header {
	display: none;
}

footer {
	background: #fff;
	padding-bottom: 100px;
}

.contents {
	width: 1000px;
    margin: 0 auto;
}

#synalio-iframe {
	display: none;
}

/* メインビュー */
.mainview {
	background: #EBF4F9;
	padding: 55px 0;
}

.mainview > h1 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	justify-content: space-between;
	gap: 20px;
}

.mainview > h1 img {
	display: block;
	width: 235px;
	height: 235px;
}

.mainview > h1 img:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.mainview > h1 img:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
.mainview > h1 img:nth-child(3) { grid-area: 1 / 2 / 3 / 3; width: 490px; height: 490px;}
.mainview > h1 img:nth-child(4) { grid-area: 1 / 3 / 2 / 4; }
.mainview > h1 img:nth-child(5) { grid-area: 2 / 3 / 3 / 4; }

/* 使い方はとても簡単 */
.mainTitle {
	color: #192B5B;
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}

.howtoList_wrap {
	padding: 80px 0;
}

.howtoList {
	margin-top: 40px;
}

.howtoList > li {
	display: flex;
	align-items: center;
	border-top: 1px solid #CCCCCC;
	padding: 40px 0;
}

.howtoList > li:last-child {
	border-bottom: 1px solid #CCCCCC;
}

.howtoList_body {
	padding: 20px;
}

.howtoList_title {
	color: #192B5B;
	font-size: 24px;
	font-weight: bold;
}

.howtoList_text {
	margin-top: 1em;
}

.howtoList_note {
	font-size: 14px;
	margin-top: 1em;
}

/* 注意事項 */
.attentionList_wrap {
	background: #F0F0F0;
	padding: 80px 0;
}

.attentionTitle {
	color: #192B5B;
	font-size: 24px;
	font-weight: bold;
}

.attentionList {
	margin-top: 1em;
}

.attentionList > li {
	line-height: 1.5;
}

/* 固定ボタン */
.fixedButton_wrap {
	position: fixed;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 13px 0;
	background: #F0F0F0;
}

.fixedButton {
	display: block;
	width: 235px;
	height: 50px;
	background: #192B5B;
	border-radius: 3px;
	color: #FFF;
	font-size: 14px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
}

.fixedButton_note {
	font-size: 14px;
	line-height: 1;
	margin-top: 10px;
}