/* Base */
h1, h2, h3, h4, h5, h6, p {
	font-feature-settings: "palt";
  letter-spacing: 0.1rem;
}



/*追加したブロックスタイル*/
.is-style-outer-blue {
  font-weight: bold;
  padding: 0.5em 1em;
  border: 3px solid #4c9ac0;
  overflow: hidden;
  position: relative;
color:#4c9ac0;
}
.is-style-outer-blue::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-width: 25px 25px 0 0;
  border-style: solid;
  border-color: #4c9ac0 #fff #4c9ac0;
}

/*吹き出し*/
.is-style-fukidashi{
 position:relative;
 padding-bottom:0.5rem;
 border-bottom:1px solid currentColor;
}

.is-style-fukidashi::before{
 content:'';
 position: absolute;
 top: 100%;
 left: 50%;
 transform: translateX(-50%) skew(-25deg);
 height: 15px;
 width: 15px;
 border-right: 1px solid currentColor;
 background-color: #fff !important;
}

/*ノート風*/
.is-style-note {
  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(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 95%, #4c9ac0 100%);
    background-size: 8px 100%, 100% 2.5em;
    line-height: 2.5;
    margin: 0;
}


/*スラッシュ囲み*/
.is-style-slash {
	position: relative;
	display: inline-block;
	padding: 0 2.5em;
}
.is-style-slash:before,
.is-style-slash:after {
	position: absolute;
	display: inline-block;
	content: '';
	top: 50%;
	width: 44px;
	height: 2px;
	background-color: #000;
	-webkit-transform: rotate(-60deg);
	transform: rotate(-60deg);
}
.is-style-slash:before {
	left:0;
}
.is-style-slash:after {
	right: 0;
}