/* カスタム CSS をここに入力してください */

/*　注釈　*/
.note {
	margin-top: 15;
	font-size: 12px;
	font-style: italic;
	line-height: 1.5em;
}


/* 引用 */
blockquote {
    position: relative;
    padding: 10px 15px 10px 60px;
    box-sizing: border-box;
    font-style: italic;
    background: #efefef;
    color: #555;
}

blockquote:before{
    display: inline-block;
    position: absolute;
    top: 18px;
    left: 15px;
    content: "\f10d";
    font-family: FontAwesome;
    color: #cfcfcf;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

blockquote p {
    padding: 0;
    margin: 10px 0;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 0.9em;
}


/* アンダーライン（蛍光マーカー太:ピンク） */
.under {
  background: linear-gradient(transparent 0%, #ffcccc 0%);
	font-weight: bold;
}

/* アンダーライン（蛍光マーカー細：ピンク） */
.under2 {
  background: linear-gradient(transparent 70%, #ffcccc 70%);
	font-weight: bold;
}

/* アンダーライン（点線） */
.under3 {
 border-bottom: dotted 2px #EC404D;
}

/* アンダーライン（蛍光マーカー細：黄色） */
.under_y {
  background: linear-gradient(transparent 70%, #F0E465 70%);
}


/* PCの時に横に並べるコンテイナー */
@media (min-width: 768px) {
	.container_pic {
		width: 95%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
}

	.container_pic img {
		max-width: 100%;
		height: auto;
		vertical-align: bottom;
}

	.container_pic div + div {
		margin-left: 10px;
	}
}


/* clearfix  */
	.clearfix::after {
		content: "";
		display: block;
		clear: both;
	}
	


/* BOX1（TOP部分にラインの） */
.box1{
    padding: 0.5em 1em;
    margin: 1em auto;
    color: #006e54;
    background: white;
    border-top: solid 5px #006e54;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.22);
}
.box1 p {
    margin: 0; 
    padding: 0;
	  color: #006e54;
}

/* タイトル付　枠　*/
.box3 {
 position: relative;
 margin: 2em auto;
 padding: 1.2em;
 color: #555555; /* 文章色 */
 background-color: #FFEDBD; /* 背景色 */
 border: 1px solid #80775E; /* 枠線の太さ・色 */
 width: 90%;
 line-height: 1.5;
}
.box3 .box-title {
 position: absolute;
 padding: 0 .5em;
 left: 20px;
 top: -12px;
 border-radius: 4px;
 font-weight: bold;
 background-color: #80775E; /* タイトル背景色 */
 color: #fff; /* タイトル文字色 */
}

/* 点線の枠 */

.box5 {
    padding: 0.5em 1em;
    margin: 1em auto;
    background: #fef4f4;
    border: dashed 2px #ffb3b3;
	  line-height:150%;
	  border-radius: 8px;
}
.box5 p {
    margin: 0; 
    padding: 0;
}


/* カギカッコ */

.box6 {
	padding: 15px;
	position: relative;
	line-height:150%;
	background-color: #fef4f4;
	margin: 20px auto;
	width: 300px;
	text-align: center
}

.box6::before, .box6::after {
	content: '';
	width: 30px;
	height: 30px;
	position: absolute;
}

.box6::before {
	border-left: solid 2px #F06671;
	border-top: solid 2px #F06671;
	top: 0;
	left: 0;
}

.box6::after {
	border-right: solid 2px #F06671;
	border-bottom: solid 2px #F06671;
	bottom: 0;
	right: 0;
}

/* 見出しあり */

.box7 {
    position: relative;
    margin: 2em 0;
    padding: 1em;
    border: solid 3px #ffcccc;
    border-radius: 8px;
	  line-height:180%;
}
.box7 .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #EC404D;
    font-weight: bold;
}
.box7 p {
    margin: 0; 
    padding: 0;
}



/* ボタン白抜き */
.btn {
  position: relative;
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #FFF;
  background: #EC404D;/*背景色*/
  border-bottom: solid 2px #b3303b;/*少し濃い目の色に*/
  border-radius: 4px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold;
}

.btn:active {
  border-bottom: solid 2px #b3303b;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}



/* ボタン赤文字 */
.btn2 {
  position: relative;
  display: inline-block;
	padding: 0.5em 0.5em;
  text-decoration: none;
  color: #EC404D;
  background: #ffffff;/*背景色*/
  border: solid 1.5px #EC404D;/*少し濃い目の色に*/
  border-radius: 20px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
  font-weight: bold;
}

.btn:active {
  border-bottom: solid 2px #EC404D;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}


/* リスト */

ul.cp_list {
	padding: 1.5em;
	list-style: none;
	line-height: 120%;
}
ul.cp_list li {
	position: relative;
	padding: 0.5em 1em 0.5em 2.3em;
	margin-bottom:5px;
	border-bottom: 1px solid rgba(255,143,0,1);
}
ul.cp_list li:after,
ul.cp_list li:before {
	content:'';
	position: absolute;
	transform: rotate(45deg);
}
ul.cp_list li:before {
	top: 0.7em;
	left: 0.2em;
	width: 12px;
	height: 12px;
	border:2px solid rgba(255,143,0,1);
}
ul.cp_list li:after {
	top: 0.9em;
	left: 0.7em;
	width: 14px;
	height: 14px;
	background: rgba(255,143,0,0.5);
	transform: rotate(60deg);
}


/* 吹き出し 緑　*/
.balloon_g {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon_g .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon_g .faceicon img{
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.balloon_g .chatting_g {
  width: 100%;
}

.says_g {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #DCF0C0;
}

.says_g:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #DCF0C0;
}

.says_g p {
  margin: 0;
  padding: 0;
}

/* 吹き出し 黄　*/
.balloon_y {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon_y .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon_y .faceicon img{
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.balloon_y .chatting_y {
  width: 100%;
}

.says_y {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #fffcc5;
}

.says_y:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #fffcc5;
}

.says_y p {
  margin: 0;
  padding: 0;
}

/* 吹き出し ピンク　*/
.balloon_p {
  width: 100%;
  margin: 1.5em 0;
  overflow: hidden;
}

.balloon_p .faceicon {
  float: left;
  margin-right: -90px;
  width: 80px;
}

.balloon_p .faceicon img{
  width: 100%;
  height: auto;
  border-radius: 50%;
}

.balloon_p .chatting_p {
  width: 100%;
}

.says_p {
  display: inline-block;
  position: relative; 
  margin: 5px 0 0 105px;
  padding: 17px 13px;
  border-radius: 12px;
  background: #fcdce8;
}

.says_p:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 18px; 
  left: -24px;
  border: 12px solid transparent;
  border-right: 12px solid #fcdce8;
}

.says_p p {
  margin: 0;
  padding: 0;
}





