@charset "utf-8";

/* リスト画像 */
.panda {
list-style-image: url("panda.gif");
}

/* リストsample1 */
ul.sample1 {
 padding: 1em 1em 1em 3em; /*余白*/
 background: #e3f6f5; /*背景色*/
 border-radius: 10px; /*角丸*/
}

/* リストsample2 */
ul.sample2 li {
  position: relative;
  list-style-type: none;
}
ul.sample2 li::after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 6px;
  height: 6px;
  background-color:hotpink;
  border-radius: 100%;
}

/* リストsample3 */
ul.sample3 li {
  position: relative;
  list-style-type: none;
}
ul.sample3 li::after {
  display: block;
  content: '';
  position: absolute;
  top: .5em;
  left: -1em;
  width: 8px;
  height: 3px;
  border-left: 2px solid #3498db;
  border-bottom: 2px solid #3498db;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* リストsample4 */
ul.sample4 li{
padding:5px 10px;
border-bottom:1px solid #84b2e0;
list-style-position:inside;
}


/* リストmihon1 */
ol.mihon1 {
	counter-reset:cp_clist; /*数字をリセット*/
	list-style-type: none;
	padding:0.5em;
}
ol.mihon1 li {
	position: relative;
	padding-left: 30px;
	padding: 0.5em 0.5em 0.5em 35px;
}
ol.mihon1 li::before {
	position: absolute;
	display:inline-block;
	top: 50%;
	left: 0;
	/* カウントさせる */
	counter-increment: cp_clist;
	content: counter(cp_clist);
	/*装飾*/
	padding: 0 0.1em 0 0.1em;
	background: #F4511E;
	color: #fff;
	font-weight:bold;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align:center;
	transform: translateY(-50%);
}


/* ベース */
body {
	margin: 0;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	color:#252525;
	font-size:16px;
	background-color: #fff;
}

.container {
	margin: 0 auto;
	max-width: 1000px;
}

header {
	padding: 10px 10px 5px 10px;
	background: #009999;
	margin-bottom: 80px;
}

header h1{
	font-size: 24px;
	color: #fff;
}

.kakomi1{
	background-color: crimson;
	color: white;
	padding: 0 10px;
}

.kakomi2{
	background-color:#3366cc;
	color: white;
	padding: 0 10px;
}


hr {
	margin-top: 20px;
	margin-bottom: 20px;
}

h3 {
  position: relative;
  padding: 0.6em;
  background: #20b2aa;
margin-bottom: 30px;
color: #fff;
}

h3:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #20b2aa;
  width: 0;
  height: 0;
}

h3.mura{
  position: relative;
  padding: 0.6em;
  background: #6a5acd;
margin-bottom: 30px;
color: #fff;
}

h3.mura:after {
  position: absolute;
  content: '';
  top: 100%;
  left: 30px;
  border: 15px solid transparent;
  border-top: 15px solid #6a5acd;
  width: 0;
  height: 0;
}

h4 {
  padding: 5px 10px;
  background: #66cccc;
margin-bottom: 30px;
}

h4.mura2 {
  padding: 5px 10px;
  background: #9999ff;
margin-bottom: 30px;
}

.blue1 {
	color:#20b2aa;
}

.futoji{
	font-weight: bold;
}

.pkfutoji{
	font-weight: bold;
	color: deeppink;
}

/* 下段リンク */
.link6 {
padding: 0.1em 0.5em;
background-image: linear-gradient(to right, rgba(0,0,0,0) 50%, rgba(32,178,170,1) 50%);
background-position: 0 0;
background-size: 200% auto;
transition: .3s;
color: #20b2aa;
border-radius: 10px;
}
.link6:hover {
background-position: -100% 0;
color: #fff;
}

/* フレックスボックスで横ならび2 */

.narabi {
	display:flex;
	justify-content:space-between;
    flex-wrap: wrap;
	margin-bottom: 30px;
    margin-top: 15px;
	padding: 10px 5px 15px;
}

.half-box {
	width:45%;
	background-color: #b0e0e6;
	padding: 15px;
}

.half-box2 {
	width:44%;
	background-color: #ffe4e1;
	padding: 15px;
}

.half-box3 {
	width:44%;
	background-color: #fafad2;
	padding: 15px;
}

@media screen and (max-width: 767px) {
  .narabi {
    flex-direction: column;
  }
  .narabi .half-box{
    width: 100%;
  }
  .narabi .half-box2{
    width: 100%;
  }
}