@charset "utf-8";

* {box-sizing: border-box;}

html, body {
    width: 100%;
    height: 100%;
    min-width: 320px;
}

body {
	color: #000;
    font-size: 14px;
	font-family: 'Noto Sans JP',"Hiragino Kaku Gothic ProN","メイリオ",sans-serif;
	line-height: 1.5;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

#wrapper {
	position: relative;
	min-height: 100vh;
	padding-bottom: 280px;	/* フッターの高さ */
	padding-bottom: 60vw;
}
@media screen and (min-width: 769px) {
	#wrapper {
		padding-bottom: 255px;	/* フッターの高さ */
	}
}

/*  ヘッダー、フッター、コンテンツエリア　===================*/
header {
	position: relative;
	width: 100%;
	top: 0;
	left: 0;
}
main {
	position: relative;
	width: 100%;
}
.container {
	position: relative;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	padding: 0 4vw;
}
footer {
	position: absolute;
	width: 100%;
	height: 60vw;
	padding-top: 1rem;
	bottom: 0;
	left: 0;
}
@media screen and (min-width: 481px) {
}
@media screen and (min-width: 560px) {
}
@media screen and (min-width: 769px) {
	.container {
		padding: 0 2rem;
	}
	footer {
		height: 255px;
	}
}
@media screen and (min-width: 1200px) {
}




/* リンク ===========================*/
body ul li a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
a {
	color: inherit;
	text-decoration: underline;
}
a:focus {
	outline: 0;
	outline-width: 0;
	outline-style: none;
	outline-color: transparent
}
a:hover {
	color: #775b8f;
}

/* 画像　===========================*/
img {
	max-width: 100%;
	height: auto;
	border: none;
	margin: auto;
	outline: none;
	vertical-align: bottom;
}

/* ライン、枠線　===========================*/
/* 水平線 */
hr {
	margin: 24px 0;
	margin-bottom: 1em;
	height: 1px;
	border: 0;
	background-color: #b3b3b1
}

/* 背景　===========================*/
.bg_black {background-color: #000;}
.bg_gray {background-color: #ddd;}
.bg_white {background-color: #fff;}

/* テキスト関連　===========================*/
.txt_area {margin: 1.8vw;}
@media screen and (min-width: 769px) {
	.txt_area {margin: 0.8rem;}
}
.nowrap {white-space: nowrap;}
.noline {text-decoration: none;}
.fw_bold {font-weight: bolder;}
.fw_nomal {font-weight: normal;}

.center {text-align: center;}
.right {text-align: right;}
.left {text-align: left;}

.black {color: #000;}
.white {color: #fff;}
.gray {color: #777;}
.dark_gray {color: #333332;}
.red {color: #f00;}
.yellow_green {color: #00B050;}
.blue {color: #00f;}
.pink {color: deeppink;}

.size_s {font-size:90%;}
.size_ss {font-size:80%;}
.size_l {font-size:120%;}
.size_ll {font-size:130%;}
/* スマホ向け */
.size_2vw {font-size: 2vw;}
@media screen and (min-width: 769px) {
	.size_2vw {font-size: 1rem;}
}
/* リスト関連　===========================*/
ul, ol {
	padding-left: 1rem;
}
ol > li {
	padding-left: 0.2em;
	margin-bottom: 0.4em;
}

/* マーカー：ディスク（黒丸） */
ul.disc, ol.disc {
	margin-left: 1rem;
	list-style-type: disc;
}
/* マーカー：■ */
ul.square, ol.square {
	margin-left: 1rem;
	list-style-type: square;
}

/* マーカー：なし */
.no-disc {
	list-style-type: none;
}
.no-disc li {
	/*	text-indent: 1em;*/
}

/* 半角マーカー： 「-」 */
ul.list-line, ol.list-line {
	list-style: none;
	padding-left: 0.5rem;
}
ul.list-line > li, ol.list-line > li {
	list-style-type: none;
	text-indent: -0.8em;
}
ul.list-line > li::before, ol.list-line > li::before {
	display: inline;
	content: "- ";
}

/* 半角マーカー： 「>」 */
ul.list-greater-than, ol.list-greater-than {
	list-style: none;
	padding-left: 0.5rem;
}
ul.list-greater-than > li, ol.list-greater-than > li {
	list-style-type: none;
	text-indent: -0.6em;
}
ul.list-greater-than > li::before, ol.list-greater-than > li::before {
	display: inline;
	content: ">";
}

/* 半角マーカー： 「*」 */
ul.asterisk, ol.asterisk {
	list-style: none;
	padding-left: 0.5rem;
}
ul.asterisk > li, ol.asterisk > li {
	list-style-type: none;
	text-indent: -0.6em;
}
ul.asterisk > li::before, ol.asterisk > li::before {
	display: inline;
	content: "*";
}

/* 半角マーカー： 「・」 */
ul.dot, ol.dot {
	list-style: none;
	padding-left: 0.5rem;
}
ul.dot > li, ol.dot > li {
	list-style-type: none;
	text-indent: -1em;
}
ul.dot > li::before, ol.dot > li::before {
	display: inline;
	content: "・";
}

/* 全角マーカー： 「※」 */
ul.kome, ol.kome {
	list-style: none;
	padding-left: 1rem;
}
ul.kome > li, ol.kome > li {
	list-style-type: none;
	text-indent: -1.2em;
	margin-bottom: 0.2rem;
}
ul.kome > li::before, ol.kome > li::before {
	display: inline;
	padding-right: 0.2em;
	content: "※";
}

/* 全角マーカー： 「★」 */
ul.star, ol.star {
	list-style: none;
	padding-left: 1rem;
}
ul.star > li, ol.star > li {
	list-style-type: none;
	text-indent: -1.2em;
	margin-bottom: 0.2rem;
}
ul.star > li::before, ol.star > li::before {
	display: inline;
	padding-right: 0.2em;
	content: "★";
}


