/* カスタム CSS をここに入力してください */

/* 吹き出し左側から */
.balloon1-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #bbfafa;
	border-radius: 15px;
}

.balloon1-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #bbfafa;
}

.balloon1-left p {
  margin: 0;
  padding: 0;
}



/* 吹き出し右側から */
.balloon1-right {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 16px;
  background: #FADCE9;
	border-radius: 15px;
}

.balloon1-right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #FADCE9;
}

.balloon1-right p {
  margin: 0;
  padding: 0;
}



/* 文字のアウトライン(グレー) */
.outline {
text-shadow: 
        #b39ba6 1px 1px 0, #b39ba6 -1px -1px 0,/*右下、左上*/
        #b39ba6 -1px 1px 0, #b39ba6 1px -1px 0,/*右上、左下*/
        #b39ba6 0px 1px 0, #b39ba6  0-1px 0,/*右、左*/
        #b39ba6 -1px 0 0,#b39ba6 1px 0 0;/*上、下*/
}


/* 文字のアウトライン(白) */
.outline2 {
text-shadow: 
        #ffffff 1px 1px 0, #ffffff -1px -1px 0,/*右下、左上*/
        #ffffff -1px 1px 0, #ffffff 1px -1px 0,/*右上、左下*/
        #ffffff 0px 1px 0, #ffffff  0-1px 0,/*右、左*/
        #ffffff -1px 0 0,#ffffff 1px 0 0;/*上、下*/
}


/* 文字のアウトライン(水色) */
.outline3 {
text-shadow: 
        #80d5ff 1px 1px 0, #80d5ff -1px -1px 0,/*右下、左上*/
        #80d5ff -1px 1px 0, #80d5ff 1px -1px 0,/*右上、左下*/
        #80d5ff 0px 1px 0, #80d5ff  0-1px 0,/*右、左*/
        #80d5ff -1px 0 0,#80d5ff 1px 0 0;/*上、下*/
}


/* 小リンクボタン(緑グラデーション) */
.s-btn-gr-g {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  border-radius: 4px;
  color: #ffffff;
		font-family:ヒラギノ丸ゴ Pro W4;
  background-image: linear-gradient(#61e453 0%, #bef4b8 100%);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #1b7312;
}

.btn-gradient-3d-simple:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}



/* リンクボタン(緑グラデーション) */
.btn-gr-g {
  display: inline-block;
 padding: 1.0em 1.5em;
  text-decoration: none;
	font-size: 1.4em;
 border-radius: 20px;
  color: #ffffff;
		font-family:ヒラギノ丸ゴ Pro W4;
  background-image: linear-gradient(#61e453 0%, #bef4b8 100%);
 box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #1b7312;
}

.btn-gradient-3d-simple:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
 box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}


/* 【これはエラー出るから使用禁止。↑の「リンクボタン緑グラデーション」を同じ仕様にしたので、そっちを使う事】リンクボタン大(緑グラデーション) */
.b-btn-gr-g {
  display: inline-block;
padding: 1.0em 1.5em;
  text-decoration: none;
	font-size: 1.5em;
	  color: #ffffff;
	font-family:ヒラギノ丸ゴ Pro W4;
border-radius: 20px;
  background-image: linear-gradient(#61e453 0%, #bef4b8 100%);
 box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.29);
  border-bottom: solid 3px #1b7312;
}

.btn-gradient-3d-simple:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}


.b-btn-gr-g::after{
  content: "";
  display: block;
  width: 8px;
	height: 8px;
border-top: #fff 10px solid;
border-right: #fff 10px solid;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}



/* テーブル横スクロール */
.scroll-table {
  overflow: auto;
}

