@charset "UTF-8";
/* CSS Document */

/*Reset==============================
===================================*/
/* display以外のすべてのUAスタイルを削除 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)){
    all: unset;
    display: revert;
}

/* box-sizingの優先値 */
*,
*::before,
*::after{
    box-sizing: border-box;
}

/* リストのスタイル（箇条書き・番号）を削除します */
ol, ul {
    list-style: none;
}

/* 画像がコンテナを超えないようにするため */
img {
    max-width: 100%;
}

/* テーブルのセル間のスペースを削除します */
table{
    border-collapse: collapse;
}

/*===================================
========================= Reset END*/

/*Clearfix===========================
===================================*/
.clearfix:after{
	content: "";
	display: block;
	clear: both;
	}
/*===================================
====================== Clearfix END*/


/*common=共通=========================
===================================*/
html{background-color: aliceblue;}
body{
	width: 800px;
	background-color: #fff;
	margin: 0 auto;
	padding: 50px;
	font-family: sans-serif;
	color: #000;
	}
header{
	width: 100%;
	margin-bottom: 70px;
	}
header h1 {
	text-align: center;
	font-size: 2rem;
	line-height: 60px;
	height: 60px;
	margin: 0 50px 50px;
	padding: 0 2rem;
	background: #f0758a;
	position: relative;
	}
header h1:before,header h1:after {
	position: absolute;
	top: 0;
	display: block;
	height: 48px;
	content: '';
	border: 30px solid #f0758a;
	}
header h1:before {
	border-left-width: 15px;
	border-left-color: transparent;
	left: -40px;
	}
header h1:after {
	border-right-width: 15px;
	border-right-color: transparent;
	right: -40px;
	}
header h1 span {
	position: relative;
	display: block;
	}

header p{
	margin: 0 30px 30px;
	}

div.unit{
	margin-bottom: 50px;
	}
.unit h2 {
	font-size: 1.5rem;
	position: relative;
	padding: 0px 10px 5px;
	margin-bottom: 30px;
	}
.unit h2:after {
	content: "";
	width: 100%;
	height: 5px;
	background: linear-gradient(110deg, #f0758a 0%,#91b1f3 100%);
	position: absolute;
	bottom: 0;
	left: 0;
	}

.unit dl{
	margin-top:30px;
	margin-left: 20px;
	}
.unit dl dd{
	margin-left: 40px;
	margin-bottom: 1em;
	text-indent: -16px;
	}

.unit p.point{
	margin: 0 20px 80px;
	border: 2px solid #F9ACAD;
	padding: 10px;
	}
pre{
	display: block;
	padding: 10px;
	background-color: #1F1010;
	border-radius: 5px;
	color:#fff;
	font-family: monospace;
	font-size: 1.2rem;
	white-space: pre;
	text-indent: 0;
	overflow-x: auto;
	margin-bottom: 1em;
	}
pre .codePink{color: #FF6091;}
a{text-decoration: underline;}
a:hover{color:#999;}
/*各ページのCSS=======================
===================================*/
.unit ul{
list-style: disc;
}
.unit ol{
list-style: decimal;
}
#list1{}
#list1 ul,#list1 ol{
	background: #dedede;
	width: 300px;
	margin-bottom: 30px;
	}
#list1 ul li{
	/*list-style-type: square;
	list-style-position: inside;*/
	}
#list1 ol{
	list-style: decimal;
	}
ol#sample{
	width: 300px;
	list-style-type:none;
	counter-reset:list;
	margin-left: 100px;
	margin-top: 20px;
	}
ol#sample li{
	margin-top: 5px;
	padding-left: 5px;
	background: #fef6f3;
	line-height: 30px;
	position:relative;
	}
ol#sample li:before{
	counter-increment: list;
	content: counter(list);
	width: 30px;
	height: 30px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: -40px;
	background: #F26090;
	color: #fff;
	font-weight: bold;
	transform: translateY(-50%);
	}
ol#sample li:after{
	display: block;
	content:"";
	width: 0;
	height: 0;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 7px solid #F26090;
	position: absolute;
	top: 50%;
	left: -10px;
	transform: translateY(-50%);
	}



/*list-styleの種類一覧=================
===================================*/

#markerList{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
	}
#markerList .listStyle{
	width: 220px;
	background-color: #F5F5F5;
	margin-bottom: 50px;
	}
#markerList .listStyle p{
	width: 220px;
	margin-bottom: 10px;
	}
#markerList .listStyle ul,#markerList .listStyle ol{
	width: 220px;
	list-style-position: inside;
	}

ul#disc {
	list-style-type: disc;
}
ul#circle {
	list-style-type: circle;
}
ul#square {
	list-style-type: square;
}
ol#decimal {
	list-style-type: decimal;
}
ol#decimal-leading-zero {
	list-style-type: decimal-leading-zero;
}
ol#lower-roman {
	list-style-type: lower-roman;
}
ol#upper-roman {
	list-style-type: upper-roman;
}
ol#lower-greek {
	list-style-type: lower-greek;
}
ol#lower-alpha {
	list-style-type: lower-alpha;
}
ol#lower-latin {
	list-style-type: lower-latin;
}
ol#upper-alpha {
	list-style-type: upper-alpha;
}
ol#upper-latin {
	list-style-type: upper-latin;
}
ol#hebrew {
	list-style-type: hebrew;
}
ol#armenian {
	list-style-type: armenian;
}
ol#lower-armenian {
	list-style-type: lower-armenian;
}
ol#georgian	{
	list-style-type: georgian;
}
ol#cjk-ideographic	{
	list-style-type: cjk-ideographic;
}
ol#hiragana {
	list-style-type: hiragana;
}
ol#katakana {
	list-style-type: katakana;
}
ol#hiragana-iroha {
	list-style-type: hiragana-iroha;
}
ol#katakana-iroha {
	list-style-type: katakana-iroha;
}
ol#japanese-informal  {
	list-style-type: japanese-informal;
}
ol#korean-hangul-formal {
	list-style-type: korean-hangul-formal;
}
ol#korean-hanja-informal {
	list-style-type: korean-hanja-informal;
}
ol#simp-chinese-formal {
	list-style-type: simp-chinese-formal;
}
ol#simp-chinese-informal {
	list-style-type: simp-chinese-informal;
}
ol#trad-chinese-formal {
	list-style-type: trad-chinese-formal;
}
ol#trad-chinese-informal {
	list-style-type: trad-chinese-informal;
}
ol#cjk-earthly-branch {
	list-style-type: cjk-earthly-branch;
}
ol#cjk-heavenly-stem {
	list-style-type: cjk-heavenly-stem;
}
ol#arabic-indic {
	list-style-type: arabic-indic;
}
ol#bengali {
	list-style-type: bengali;
}
ol#khmer {
	list-style-type: khmer;
}
ol#devanagari {
	list-style-type: devanagari;
}
ol#gujarati {
	list-style-type: gujarati;
}
ol#gurmukhi {
	list-style-type: gurmukhi;
}
ol#kannada {
	list-style-type: kannada;
}
ol#lao {
	list-style-type: lao;
}
ol#malayalam {
	list-style-type: malayalam;
}
ol#mongolian {
	list-style-type: mongolian;
}
ol#myanmar {
	list-style-type: myanmar;
}
ol#oriya {
	list-style-type: oriya;
}
ol#persian {
	list-style-type: persian;
}
ol#tamil {
	list-style-type: tamil;
}
ol#telugu {
	list-style-type: telugu;
}
ol#thai {
	list-style-type: thai;
}
ol#tibetan {
	list-style-type: tibetan;
}
ol#nini{list-style-type: "★";}

