@charset "utf-8";
/* CSS Document */

.tape-orange{
		background-color:rgba(255,128,0,0.8);
	}
	
	.tape-green{
		background-color:rgba(46,170,102,0.8);
	}

@media only screen and (min-width: 768px) {
	

	
/*トップリスト*/

.point-list {
  position: relative;
  margin: 3em auto 1em;
  background-image:url("img/back/note.jpg");
	padding:10px 35px 20px;
	max-width:450px;
  box-shadow: 0 2px 3px rgba(0,0,0,.22);
}

.point-list-title {
	text-align: center;
	font-size: 1.6em;
	padding: 30px 0 4px 10px;
	color: #58a44b;
	font-weight:bold;
}

.point-list:after {
  position: absolute;
  content: "";
  top: 25px;
  width: 30%;
  height: 40px;
  mix-blend-mode: multiply;
  margin: -40px auto 10px 35%;
  background-color:rgba(157,190,71,0.8);
  transform: rotate(-2deg);
  left: 10px;
  right: 10px;
	box-shadow: 1px 1px 3px #ddd;
}

.point-list ul,.point-list ol  {
  position: relative;
  margin: 0;
  padding: 0 0.5em 0 0.5em;
  color: #363636;
  border: none;
  list-style-type: none;
}
.point-list ol {
  counter-reset: number;
}

.point-list ul li,.point-list ol li {
  line-height: 1.5;
  padding:10px 0 10px 2.0em;
  border-bottom: dashed 1px #999;
  text-align: left;
	position: relative;
	color:#363636;
}

.point-list ul li,.point-list ol li:hover {
  padding-left:2.5em;
  text-align: left;
  transition:0.2s;
}


/*hover時に文字の下にマーカー線引くアニメーション*/

.drow-marker{
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.drow-marker::after{
  content:"";
  width: 0%;    /*最初はwidth:0にする*/
  height: 8px;
  background:rgba(157,190,71,0.8);
  position: absolute;
  bottom:1px;
  left: 0;
  z-index: -1;
  transition: all .3s;  /*アニメーションの長さ*/
}	
.drow-marker:hover::after{
  width: 100%;    /*hover時に100%で広がる*/
}



.point-list ol li:before {
  display: inline-block;
  position: absolute;
  font-family: "Quicksand", sans-serif;
  content: counter(number);
  counter-increment: number;
  margin: 2px;
  left: 0.5em;
  width: 22px;
  height: 22px;
  border-radius: 20%;
  background: #363636;
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 22px;
}


/*解説文*/
	
.comment{
  margin: 1em auto 150px;
  padding:10px 30px 20px;
  max-width: 660px;
	border:2px solid #aaa;
  text-align:left;
	border-radius: 20px;
}

.comment-orange{
  position: relative;
  margin: 3em auto 1em;
  background-image:url("img/back/note.jpg");
  padding:10px 30px 20px 40px;
  max-width: 660px;
  box-shadow: 0 2px 3px rgba(0,0,0,.22);
  text-align:left;
}

.comment-sentence{
	mix-blend-mode: multiply;
  background-image:
  linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 97.5%, #646464 100%);
  background-size: 8px 100%,100% 2em;
  line-height: 2em;
  padding: 2em 0 0 0.3em;
}
	
.comment-sentence .img{
	text-align: center;
	width:99%;
	}

.comment-tape{
	font-family: 'open Sans One', sans-serif;
	font-size:33px;
	font-weight:bold;
	position: absolute;
	padding:3px 5px 5px;
	text-align: center;
	color:#fff;
  top: 25px;
  width: 25%;
  height:45px;
  mix-blend-mode: multiply;
  margin: -45px auto 10px 5%;
  transform: rotate(-4deg);
  left: 10px;
	box-shadow: 0 1px 3px #ccc;
}
	

.comment-orange:after {
  position: absolute;
  content: "";
  bottom:0;
	right:0;
  width:20%;
  height: 45px;
	padding:3px 5px 5px;
  mix-blend-mode: multiply;
  margin:0 5% -30px auto;
  background-color:rgba(255,128,0,0.8);
  transform: rotate(4deg);
box-shadow: 1px 1px 3px #ddd;
}
	
	.comment-green:after {
  position: absolute;
  content: "";
  bottom:0;
	right:0;
  width:20%;
  height: 45px;
	padding:3px 5px 5px;
  mix-blend-mode: multiply;
  margin:0 5% -30px auto;
  background-color:rgba(46,170,102,0.8);
  transform: rotate(4deg);
box-shadow: 1px 1px 3px #ddd;
}
	
}

@media only screen and (max-width: 767px) {
	
/*トップリスト*/

.point-list {
  position: relative;
  margin: 3em 1.5em 1em;
  background-image:url("img/back/note.jpg");
  padding: 6px 15px 15px 20px;
  max-width: 450px;
  box-shadow: 0 2px 3px rgba(0,0,0,.22);
}

.point-list-title {
	text-align: center;
	font-size: 1.6em;
	padding: 30px 0 10px 10px;
	color: #58a44b;
	font-weight:bold;
}

.point-list:after {
  position: absolute;
  content: "";
  top: 20px;
  width: 40%;
  height: 40px;
  mix-blend-mode: multiply;
  margin: -40px auto 10px 27%;
  background-color:rgba(157,190,71,0.8);
  transform: rotate(-2deg);
  left: 10px;
  right: 10px;
	box-shadow: 1px 1px 3px #ddd;
}

.point-list ul,.point-list ol  {
  position: relative;
  margin: 0;
  padding: 0 0.5em 0 0.5em;
  color: #363636;
  border: none;
  list-style-type: none;
}
.point-list ol {
  counter-reset: number;
}

.point-list ul li,.point-list ol li {
  line-height: 1.5;
  padding:10px 0 10px 2.0em;
  border-bottom: dashed 1px #999;
  text-align: left;
	position: relative;
	color:#363636;
}

.point-list ul li,.point-list ol li:hover {
  padding-left:2.5em;
  text-align: left;
  transition:0.2s;
}


/*hover時に文字の下にマーカー線引くアニメーション*/

.drow-marker{
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.drow-marker::after{
  content:"";
  width: 0%;    /*最初はwidth:0にする*/
  height: 8px;
  background:rgba(157,190,71,0.8);
  position: absolute;
  bottom:1px;
  left: 0;
  z-index: -1;
  transition: all .3s;  /*アニメーションの長さ*/
}	
.drow-marker:hover::after{
  width: 100%;    /*hover時に100%で広がる*/
}



.point-list ol li:before {
  display: inline-block;
  position: absolute;
  font-family: "Quicksand", sans-serif;
  content: counter(number);
  counter-increment: number;
  margin: 2px;
  left: 0.5em;
  width: 22px;
  height: 22px;
  border-radius: 20%;
  background: #363636;
  color: white;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  line-height: 22px;
}


/*解説文*/
.comment{
  margin: 1em 1em 100px;
  padding:20px;
  max-width: 660px;
	border:2px solid #aaa;
  text-align:left;
	border-radius: 20px;
}

.comment-orange{
  position: relative;
  margin: 2em 1.0em 1em;
  background-image:url("img/back/note.jpg");
  padding:10px 10px 20px 30px;
  max-width: 660px;
  box-shadow: 0 2px 3px rgba(0,0,0,.22);
  text-align:left;
}

.comment-sentence{
	mix-blend-mode: multiply;
  background-image:
  linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(100, 100, 100, 0) 0%, rgba(100, 100, 100, 0) 97.5%, #646464 100%);
  background-size: 8px 100%,100% 1.8em;
  line-height: 1.8em;
  padding: 1.8em 0 0 0.3em;
}

.comment-tape{
	font-family: 'open Sans One', sans-serif;
	font-size:1.4em;
	font-weight:bold;
	position: absolute;
	padding:8px 5px 5px;
	text-align: center;
	color:#fff;
  top: 30px;
  width: 40%;
  height:40px;
  mix-blend-mode: multiply;
  margin: -45px auto 10px 7%;
  transform: rotate(-4deg);
  left: 10px;
	box-shadow: 0 1px 3px #ccc;
}
	

.comment-orange:after {
  position: absolute;
  content: "";
  bottom:10px;
	right:0;
  width:30%;
  height: 30px;
	padding:3px 5px 5px;
  mix-blend-mode: multiply;
  margin:0 5% -30px auto;
background-color:rgba(255,128,0,0.8);
  transform: rotate(4deg);

	box-shadow: 1px 1px 3px #ddd;
}
	
	
}

