@charset "UTF-8";
/* ------------------------------ reset css */

/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ------------------------------ custom css */

body{
	/* font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "Noto Sans JP", Arial, sans-serif; */
	font-size: 16px;
	line-height: 1.5;
}

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

.margin-m{
	margin-top: 20px;
}

.main{
	width: 90%;
	margin: 0 auto;
	max-width: 800px;
}

.inner{
	width: 90%;
	margin: 0 auto;
}

.logo{
	margin: 20px 0;
	text-align: center;
}

.logo img{
	width: 90%;
	max-width: 300px;
}

h1{
	background: #e6e6e6;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
	padding: 20px 5px;
	margin-bottom: 46px;
}

.title{
	margin: 60px 0 14px;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}

li{
	padding-left: 1em;
	text-indent: -1em;
	margin-block: .3em;
}

li::before{
	content:"・";
}

ol{
	counter-reset: number;
}

ol li::before{
	counter-increment: number;
	content: counter(number) '. ';
}

.circle-num li{
	padding-left: 25px;
	position: relative;
	text-indent: 0;
}

.circle-num li::before{
	content: counter(number);
    counter-increment: number;
    border: 1px solid;
    border-radius: 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 18px;
    width: 18px;
    font-size: 13px;
    line-height: 1;
    position: absolute;
    top: 0.24em;
    left: 0;
    padding-top: 1px;
}

.mark{
	display: flex;
}

.mark_text{
	flex: 1;
}

footer{
	background: #eae9da;
	padding: 10px 0;
	font-size: 12px;
	color: #666666;
	text-align: center;
	margin-top: 92px;
}

@media screen and (min-width: 769px) {
	.sp{
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}

	.main{
		width: 100%;
	}
	
	.logo img{
		max-width: 230px;
	}
	
	h1{
		font-size: 20px;
	}

	.title{
		margin-top: 50px;
	}
	
	footer{
		font-size: 10px;
	}
}