/* 見出しのカスタマイズ */
/* 見出し h2 */
h2.mainSection-title {
	color: #505050;/*文字色*/
	padding: 0.5em;/*文字周りの余白*/
	display: inline-block;/*おまじない*/
	line-height: 1.3;/*行高*/
	width: 100%;/*行幅*/
	background: #C5E99B;/*背景色*/
	vertical-align: middle;/*上下中央*/
	border-radius: 25px 0px 0px 25px;/*左側の角を丸く*/
    border-top-color: #ffffff;
}
h2.mainSection-title:before {
	content: '●';
	color: white;
	margin-right: 8px;
}
/* END 見出し　h2 */

/* 見出しのカスタマイズ */
/* 見出し h3  .childPage_list_title*/
h3.childPage_list_title {
	position: relative;
	color: #333333;
	text-shadow: 0 0 2px white;
	background: #C5E99B;
	z-index: -4;
	border-radius: 0 10px 10px;
}
h3.childPage_list_title:before {
	content: "";
	position: absolute;
	background: #8CD790;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
/* border: dashed 1px white; */
	left: -20px;
-moz-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: -1;
}
h3.childPage_list_title:after {
    content: ".";
    line-height: 0;
    display: block;
    overflow: hidden;
    position: absolute;
    bottom: -1px;
    width: 0%;
    border-bottom: 1px solid #9de5ff;
}
/* END 見出し　h3 */

/* 見出しのカスタマイズ */
/* 見出し h3 .h3_yajirushi-title*/
h3.h3_yajirushi-title {
	position: relative;
	padding-left: 35px;
}
h3.h3_yajirushi-title:before {
	position: absolute;
	content: '';
	bottom: -3px;
	left: -2px;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 15px transparent;
	border-bottom: solid 15px #8CD790
}
h3.h3_yajirushi-title:after {
	position: absolute;
	content: '';
	bottom: -3px;
	left: 10px;
	width: 100%;
	border-bottom: solid 3px #8CD790;
}
/* END 見出し　h3 .h3_yajirushi-title */

/* 見出しのカスタマイズ */
/* 見出し h4 */
h4 {
	background: none;
	position: relative;
	color: #333333;
	text-shadow: 0 0 2px white;
}
h4:before {
	content: "";
	position: absolute;
	background: #8CD790;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: 50%;
/* border: dashed 1px white; */
	left: -15px;
-moz-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
z-index: -1;
}
/* END 見出し　h4 */

/* 見出しのカスタマイズ */
/* 見出し h5 */
h5 {
	padding: 0.25em 0.5em;/*上下 左右の余白*/
	color: #494949;/*文字色*/
	background: transparent;/*背景透明に*/
	border-left: solid 5px #7db4e6;/*左線*/
}
/* END 見出し　h5 */

/*見出し　リボン１*/
.ribbon1 {
    display: inline-block;
    position: relative;
    height: 60px;/*高さ*/
    line-height: 60px;/*高さ*/
    vertical-align: middle;
    text-align: center;
    padding: 0 40px 0 18px;/*文字の左右の余白*/
    font-size: 18px;/*文字サイズ*/
    background: #ffc668;/*背景色*/
    color: #FFF;/*文字色*/
    box-sizing: border-box;
}

.ribbon1:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}

.ribbon1:after {
    top: 0;
    right: 0;
    border-width: 30px 15px 30px 0px;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
}
/* END 見出し　リボン１ */

/*見出し　リボン２*/
.ribbon2 {
    display: inline-block;
    position: relative;
    padding: 15px 20px;
    font-size: 18px;/*フォントサイズ*/
    color: #FFF;/*フォントカラー*/
    background: #a6d3c8;/*リボンの色*/
}

.ribbon2:before {
position: absolute;
content: '';
top: 100%;
left: 0;
border: none;
border-bottom: solid 15px transparent;
border-right: solid 20px rgb(149, 158, 155);/*折り返し部分*/
}
/* END 見出し　リボン２ */

/* 見出し　リボン３ */
.ribbon3 {
    display: inline-block;
    position: relative;
    height: 60px;
    line-height: 60px;
    vertical-align: middle;
    text-align: center;
    padding: 7px 0;
    font-size: 18px;
    background: #acd879;
    color: #FFF;
    box-sizing: border-box;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
}

.ribbon3 h3 {
    vertical-align: middle;
    margin: 0;
    padding: 0 30px;
    border-top: dashed 2px rgba(255, 255, 255, 0.5);
    border-bottom: dashed 2px rgba(255, 255, 255, 0.5);
    line-height: 42px;
}

.ribbon3:before, .ribbon3:after{
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.ribbon3:before{
    top: -2px;
    left: -2px;
    border-width: 32px 0px 32px 15px;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
}

.ribbon3:after{
    top: -2px;
    right: -2px;
    border-width: 32px 15px 32px 0px;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
}
/* END 見出し　リボン３ */


/* ラベルをつけたようなデザイン */
.box_midashi1 {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px #8cd790;
}
.box_midashi1 .box_midashi1-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
    height: 25px;
    line-height: 25px;
    vertical-align: middle;
    font-size: 17px;
    background: #8cd790;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.box_midashi1 p {
    margin: 0; 
    padding: 0;
}
/* END ラベルをつけたようなデザイン */

/* Contact Form 7カスタマイズ */
/* 見出し欄 */
#contact .inquiry th {
	text-align: left;
	font-size: 14px;
	color: #444;
	padding-right:5px;
	width: 30%;
	background:#f7f7f7;
	border: solid 1px #d7d7d7;
}
/* 通常欄 */
#contact .inquiry td {
	font-size: 13px;
	border: solid 1px #d7d7d7;
}
/* 必須の調整 */
#contact .haveto {
	font-size: 7px;
	padding: 5px;
	background: #ff9393;
	color: #fff;
	border-radius: 2px;
	margin-right: 5px;
	position:relative;
	bottom:1px;
}
/* 任意の調整 */
#contact .any {
	font-size: 7px;
	padding: 5px;
	background: #93c9ff;
	color: #fff;
	border-radius: 2px;
	margin-right: 5px;
	position:relative;
	bottom:1px;
}
/* ラジオボタンを縦並び指定 */
#contact .verticallist .wpcf7-list-item {
	display: block;
}
/* 送信ボタンのデザイン変更 */
#contact .soushinbtn{
	padding:10px!important;
	width:40%;
	background: #a8dba8!important;
	color: #fff;
	font-size: 18px!important;
	border-radius: 2px!important;
}
.soushinbtn:hover{
	background:#fff!important;
	color:#ff870f;
	border:2px solid #77AF9C;
}
/* スマホContact Form 7カスタマイズ */
@media screen and (max-width: 700px) {
#contact .inquiry th, .inquiry td {
	display:block;
	width: 100%!important;
	border-top: none!important;
}
#contact .inquiry tr:first-child th {
	border-top: 1px solid #d7d7d7!important;
}
#contact .soushinbtn{
	width:80%!important;
}}

/*コピーライト非表示*/
footer .copySection p:nth-child(2) {
    display:none !important;
    }

/*リストの黒ポチを消す*/
ul li {
  list-style-type: none!important;
}

/*色指定*/
.my-gray {color: gray}
.my-skyblue {color: skyblue}
.my-orange {color: #fecb81}
.my-green1 {color: #c5e99b}
.my-green2 {color: #8cd790}
.my-green3 {color: #77af9c}