/* 
 * ------- additional css elements  ---------------------
 */


/*===========================
list
===========================*/

ul.circle, ul.check {
	position: relative;
}
ul.circle li {
	padding: 0 0 0.5em 1.2em;
	margin-bottom: 0.7em;
	border-bottom: 1px dashed #CCC;
}
ul.check li {
	padding: 0 0 0.5em 2em;
	margin-bottom: 0.7em;
	border-bottom: 1px dashed #CCC;
}
ul.circle li:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background-color: #333;
	border-radius: 50%;
	left: 0.5em;
	margin-top: 0.6em;
}
ul.check li::before {
	position: absolute;
	content: "\f14a";
	font-family: FontAwesome;
	left: 0.3em;
	font-size: 1.3em;
}


ul.nb_circle li {
	padding: 0 0 0.2em 1.2em;
	margin-bottom: 0;
}
ul.nb_circle li:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background-color: #222;
	border-radius: 50%;
	left: 0.3em;
	margin-top: 0.5em;
}
ul.nb_circle, ul.circle2, ul.circle3, ul.check2, ul.check3 {
	position: relative;
}
ul.circle2 li, ul.check2 li {
	float: left;
	width: 45%;
	padding: 0 0 0.5em 1.8em;
	margin: 0 1% 0.5em;
	border-bottom: 1px dashed #CCC;
	box-sizing: border-box;
}
ul.circle2 li:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background-color: #222;
	border-radius: 50%;
	/* [disabled]left: 0.5em;
*/
	margin-top: 0.6em;
	margin-left: -1em;
}
ul.check2 li::before {
	display: block;
	position: absolute;
	content: "\f14a";
	font-family: FontAwesome;
	font-size: 1.3em;
	margin-left: -1.2em;
}
ul.circle3 li, ul.check3 li {
	float: left;
	width: 28%;
	margin: 0 1% 0.5em;
	padding: 0 0 0.5em 1.8em;
	border-bottom: 1px dashed #CCC;
}
ul.circle3 li:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background-color: #222;
	border-radius: 50%;
	/* [disabled]left: 0.5em;
*/
	margin-top: 0.6em;
	margin-left: -1em;
}
ul.check3 li::before {
	display: block;
	position: absolute;
	content: "\f14a";
	font-family: FontAwesome;
	font-size: 1.3em;
	margin-left: -1.2em;
}
ul.circle4 li, ul.check4 li {
	float: left;
	padding: 0 0 0.5em 1.8em;
	margin: 0 1.5% 0.5em;
	width: 22%;
}
ul.circle4 li:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background-color: #222;
	border-radius: 50%;
	/* [disabled]left: 0.5em;
*/
	margin-top: 0.6em;
	margin-left: -1em;
}
ul.check4 li::before {
	display: block;
	position: absolute;
	content: "\f14a";
	font-family: FontAwesome;
	font-size: 1.3em;
	margin-left: -1.2em;
}

ul.circle5 li {
	margin-bottom: 0.2em;
	margin-top: 0.2em;
	float: left;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0.5em;
	padding-left: 1.8em;
	margin-right: 35px;
}
ul.circle5 li:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background-color: #222;
	border-radius: 50%;
	/* [disabled]left: 0.5em;
*/
	margin-top: 0.6em;
	margin-left: -1em;
}
ul.point2 li{
	background: #C93232;
	padding: 0.4em 0;
	margin: 0 1%;
	margin-bottom:10px;
	font-size:1rem;
	color:#FFF;
	text-align:center;
	border-radius: 2px;        /* CSS3草案 */
	-webkit-border-radius: 2px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 2px;   /* Firefox用 */
	float: left;
	width: 48%;
}
ul.li_pdf {
	position: relative;
}

ul.li_pdf li {
	padding: 0 0 0.5em 1.8em;
	margin-bottom: 0.5em;
}
ul.li_pdf li:before {
	display: block;
	position: absolute;
	content: "\f1c1";
	font-family: FontAwesome;
	font-size: 1.3em;
	margin-left: -1.2em;
}

ul.li_pdf2 {
	position: relative;
}

ul.li_pdf2 li {
	float: left;
	width: 45%;
	padding: 0 0 0.5em 1.8em;
	margin: 0 1% 0.5em;
}
ul.li_pdf2 li:before {
	display: block;
	position: absolute;
	content: "\f1c1";
	font-family: FontAwesome;
	font-size: 1.3em;
	margin-left: -1.2em;
}
ol.num-list {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;
}
ol.num-list li{
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}

ol.num-list li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #ee8800;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align:center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -moz-transform: translateY(-50%);
  	-webkit-transform: translateY(-50%);
  	-o-transform: translateY(-50%);
  	-ms-transform: translateY(-50%);
  	transform: translateY(-50%);

}

 @media screen and (max-width: 768px) {
.content ul.circle2 li, .content ul.check2 li {
	float: none;
	padding: 0 0 0.5em 1.8em;
	margin: 0 1% 0.7em; 
	width: 90%;
}
ul.circle5 li {
	width: 90%;
}
ul.li_pdf2 li {
	float: none;
	width: 90%;
	margin: 0 auto;
	margin-bottom: 0.5em;
}

}

/*===========================
table
===========================*/

table {
	border-collapse:collapse;
	border-spacing: 0;
}
table th {
	text-align: center;
	vertical-align:middle;
	background-color: #eee;
	color:#333;
	border:1px #ccc solid;
}
table td {
	vertical-align:middle;
	background-color:#FFF;
	border:1px #ccc solid;
}
table.table-various1 td.td_right {
	text-align:right;
}
.inquiry table {
	border: none;
}
/* 線のtable */

table.table-various3 th {
	text-align:center;
	vertical-align:middle;
}


 @media only screen and (max-width: 768px) {
table {
	border-top: 1px #ccc solid;
}
table th {
	width: 100%;
	display: block;
	border-top: none;
	border-bottom: none;
	box-sizing: border-box;
}
table td {
	width: 100%;
	display: block;
	box-sizing: border-box;
}

}
/*===========================
others
===========================*/

.content h4.various1 {
	font-size: 1.2em;
	padding: .5em .75em;
	background-color: #E5E8E8;
}

.pc {
	display: block;
}

/* テキスト */

.mb25 {
	margin-bottom:25px !important;
}
.mb45 {
	margin-bottom:45px !important;
}
.mb55 {
	margin-bottom:55px !important;
}
.txtsize1 {
	font-size:1.2rem;
}
.txtsize2 {
	font-size:1.4rem;
}

.txtsize2Tel {
	font-size:1.4rem;
	display:inline-block;
	vertical-align:bottom;
}

@media screen and (max-width: 640px) {
.txtsize2Tel {
		margin-bottom:10px
}

}


.tx-center-sp {
	text-align: left;
}
.tx-right {
	text-align:right;
}
.indent-1 {
	padding-left: 1em; /*1em（1文字）分、右に動かす*/
	text-indent: -1em; /*最初の行だけ1em（1文字）分、左に動かす*/
	line-height: 1.5em;
}
.catchcopy {
	font-size:1.7rem;
	font-family: 'Noto Sans Japanese';
	font-weight: 300;
	line-height:1.1em;
	color: #E66700;
}
.orange {
	color:#d58400;
}

@media screen and (max-width: 768px) {
.pc {
	display: none;
}
.tx-center-sp {
	text-align: center;
}
}

/* ボックス */

.Boxwrap {
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-webkit-flex-wrap:wrap;
	-moz-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
}
.Boxwrap .box {
	width: 44%;
	border: 4px solid #3BB3B3;
	background-color: #FFF;
	box-shadow: none;
	list-style: none;
	padding: 20px;
	margin-bottom: 40px;
	position: relative;
	margin-left:2%;
	-moz-border-radius:8px; /* Firefox */
	-webkit-border-radius:8px; /* Google Chrome、Safari  */
	-o-border-radius:8px; /* Opera  */
	-ms-border-radius:8px; /* Internet Explorer  */
	border-radius:8px;
}
.Boxwrap .no-border {
	border: none;
}
.Boxwrap .first {
	margin-left: 0 !important;
}

.box {
	background-color: #f6f6f6;
	border: 2px dashed #fff;
	border-radius: 8px;
	box-shadow: 0 0 0 8px #f6f6f6;
	padding: 2em;
}
.box h3 {
	font-size: 1.4em;
	margin-bottom: 1em;
}
.box h3::after {
	position: relative;
	background: none;
	bottom: 0;
}
.box2 {
	background-color: #f6f6f6;
	border: 2px solid #fff;
	box-shadow: 0 0 0 2px #f6f6f6;
	padding: 2em;
}
.box2 h3 {
	font-size: 1.4em;
	margin-bottom: 1em;
}
.box2 h3::after {
	position: relative;
	background: none;
	bottom: 0;
}
.box3 {
	border: 4px double #ccc;
	padding: 2em;
}
.box3 h3 {
	font-size: 1.4em;
	margin-bottom: 1em;
	border: none;
	padding: 0;
}
.box3 h3::after {
	position: relative;
	background: none;
	bottom: 0;
}
ul.box4 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
ul.box4 li {
	border: 1px solid #b8e1a6;
	padding: 2em 1.5em;
	border-radius: 10px;
	width: 31%;
	margin: 1%;
}
ul.box5 {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
ul.box5 li {
	border: 1px solid #b8e1a6;
	padding: 2em 1.5em;
	border-radius: 10px;
	width: 40%;
	margin: 1%;
}

@media screen and (max-width: 768px) {
ul.box4 li, ul.box5 li {
	width: 90%;
}
}


/* ボタン */

.btn2 a {
	text-decoration: none;
	text-align:center;
	color: #FFF !important;
	position: relative;
	display: inline-block;
	padding: 0 1em;
	line-height: 30px;
	background:#3D8330;
	-webkit-border-radius:2px;
	-moz-border-radius:2px;
	border-radius: 2px;
	transition: all .3s;
	-webkit-transition: all .3s;
}



@media screen and (max-width: 768px) {
.btn2 a {
	margin-bottom:15px;
}
}

/* PDF */

.pdf {
	background-color:#ffffff;
	display:block;
}
.pdf img:hover, .pdf a:hover {
	cursor:pointer;
	filter: alpha(opacity=60);        /* ie lt 8 */
	-ms-filter: "alpha(opacity=60)";  /* ie 8 */
	-moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
	-khtml-opacity: 0.6;              /* Safari 1.x */
	opacity:0.6;
	zoom:1;
	transition: all .5s;
	-webkit-transition: all .5s;
}
.service {
	background: #8fafc3;
	padding: 0.4em 1em;
	margin-bottom:10px;
	font-size:1.1rem;
	color:#FFF;
	text-align:center;
	border-radius: 20px;        /* CSS3草案 */
	-webkit-border-radius: 20px;    /* Safari,Google Chrome用 */
	-moz-border-radius: 20px;   /* Firefox用 */
}


/* 画像とテキストを交互に表示 */


.contents-wrap {
	display: -webkit-box; /*Android4.3*/
	display: -moz-box;    /*Firefox21*/
	display: -ms-flexbox; /*IE10*/
	display: -webkit-flex; /*PC-Safari,iOS8.4*/
	display: flex;
	-webkit-box-pack: justify; /*Android4.3*/
	-moz-box-pack: justify;    /*Firefox21*/
	-ms-flex-pack: justify;    /*IE10*/
	-webkit-justify-content: space-between; /*PC-Safari,iOS8.4*/
	justify-content: space-between;
}
.contents-wrap:nth-child(odd) {
	-ms-flex-direction:row-reverse; /*IE10*/
	-webkit-flex-direction:row-reverse; /*old webkit browser*/
	flex-direction:row-reverse;
}
.contents-text {
	width: 47.5%; /*flex: 2;*/
}
.contents-img {
	width: 47.5%; /*flex: 1;*/
}
.contents-text h3 {
	margin-bottom: 2rem;
	font-size: 2rem;
	line-height:1.1em;
	border: none;
	padding:0;
}
.contents-img img {
	display: block;
	width: auto;
	max-width: 100%;
}
@media screen and (max-width: 768px) {
.contents-wrap, .contents-wrap:nth-child(odd) {
	-ms-flex-direction:row-reverse; /*IE10*/
	-webkit-flex-direction:row-reverse; /*old webkit browser*/
	flex-direction: column-reverse;
}
.contents-text, .contents-img {
	width: 100%; /*flex: 1;*/
	margin-bottom:3em;
}
.contents-text h3 {
	text-align: center;
}
}

/*----------------------------
variable grid
-----------------------------*/

.one_half2, .one_third2, .one_quarter2 {
	display: inline;
	float: left;
	margin: 0 0 0 5%;
	list-style: none;
}
.one_half2:first-child, .one_third2:first-child, .one_quarter2:first-child {
	margin-left: 0;
}

.one_half2 {
	width: 47.5%;
}

.one_third2 {
	width: 30%;
}
.one_quarter2 {
	width: 21.25%;
}

@media screen and (max-width: 500px) {
.one_half2, .one_third2, .one_quarter2 {
	width: 100%;
	margin: 0 0 3em 0;
}
}

/*----------------------------
レスポ化対応
-----------------------------*/

.telNoDeco a {
	text-decoration:none !important;
	color:#333 !important;
}

.telNoDeco a:hover {
	filter: alpha(opacity=100) !important;
	-moz-opacity: 1 !important;
	opacity: 1 !important;
}


.fs60p {
	font-size:60% !important;
}

.fs70p {
	font-size:70% !important;
}

.fs80p {
	font-size:80% !important;
}

.fs90p {
	font-size:90% !important;
}

.fs110p {
	font-size:110% !important;
}

.fs120p {
	font-size:120% !important;
	line-height:1.4em !important;
}

.fs130p {
	font-size:130% !important;
	line-height:1.4em !important;
}

.fs140p {
	font-size:140% !important;
	line-height:1.4em !important;
}

.fs140pM {
	font-size:140% !important;
	line-height:1.8em !important;
}

.fs150p {
	font-size:150% !important;
	line-height:1.4em !important;
}

.fs200p {
	font-size:200% !important;
	line-height:1.4em !important;
}



/*===========================
onOff
===========================*/

.pcOFFtabletON
 {
	display:none;
}

.pcONtabletOFF {
}

.pcONtabletOFFspON {
}


.pcOFFspON {
	display:none;
}

.pcOFFtabletONspOFF {
	display:none;
}


.pcONspOFF {
}

.txtPCcenterSPLeft {
	text-align:center;
}

.txtPCLeftSPcenter {
	text-align:left;
}


.txtPCcenterTabletLeft {
	text-align:center;
}


.contPad80p {
	width:80%;
	margin:0 auto;
}

.contPad70p {
	width:70%;
	margin:0 auto;
}

.contPad60p {
	width:60%;
	margin:0 auto;
}

.contPad50p {
	width:50%;
	margin:0 auto;
}

.contPad40p {
	width:40%;
	margin:0 auto;
}

.contPad30p {
	width:30%;
	margin:0 auto;
}

.contPad20p {
	width:20%;
	margin:0 auto;
}

/* contactBtn */

.contactBtnWrap {
	clear:both;
	padding:0;
	text-align:center;
}

.contactBtn {
	display:inline-block;
	vertical-align:top;
	line-height:1;
	margin:0 10px;
}

.txtContacBnr a {
	display:block;
	text-align:center;
	color:#FFF !important;
	text-decoration:none;
	line-height:normal;
	padding:0.5em 1.5em 0.5em 1em;
	background-color:#599333;
	width:200px;
	box-sizing: border-box;
	background-image:url(../img/common/btn_arrow.png);
	background-position:right 0.5em center;
	background-repeat:no-repeat;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

.txtContacBnrPC {
	display:block;
	text-align:center;
	color:#FFF;
	text-decoration:none;
	line-height:normal;
	padding:0.5em 1em 0.5em 1em;
	background-color:#599333;
	width:200px;
	box-sizing: border-box;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

/* table */

.nowrap {
	white-space: nowrap;
}

.tdW50p {
	width:50%;
	box-sizing: border-box;
}

.tdW40p {
	width:40%;
	box-sizing: border-box;
}


.tdW30p {
	width:30%;
	box-sizing: border-box;
}

.tdW20p {
	width:20%;
	box-sizing: border-box;
}

.tdCenter {
	text-align:center;
	vertical-align:middle;
}

/*tableをスクロールさせる*/
/* 	スクロール用テーブル  */

.scroll table th {
	text-align:center;
	vertical-align:middle;
}




/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar {
 height: 5px;
}

/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar-track {
 border-radius: 5px;
 background: #F1F1F1;
}

/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar-thumb {
 border-radius: 5px;
 background: #BCBCBC;
}





@media screen and (max-width: 768px) {

/*===========================
onOff
===========================*/


.pcONtabletOFF {
	display:none;
}

.pcOFFtabletON {
	display:block;
}

.pcOFFtabletONspOFF {
	display:block;
}

.pcONtabletOFFspON {
	display:none;
}


.txtPCcenterTabletLeft {
	text-align:left;
}



.tdW50p , .tdW40p , .tdW30p, .tdW20p {
	width:100%;
}

/* contactBtn */

.contactBtnWrap {
}

.contactBtn {
	margin:0 10px 10px 0;
}


/*tableのセル内にある文字の折り返しを禁止*/
.scroll {
	overflow: auto;
	white-space: nowrap;
	width:100% !important;
	box-sizing: border-box;
}


/*table右に線*/

.scroll {
	border-right: 2px solid #4f4d47;
	overflow-x: scroll;
}

/*tableにスクロールバーを追加*/

.scroll table {
	overflow:scroll;
}
.scroll table th {
	width:auto;
	display:table-cell;
	vertical-align:middle;
	border-top: 1px #ccc solid;
	border-bottom: 1px #ccc solid;
	box-sizing: border-box;
}
.scroll table td {
	width:auto;
	display:table-cell;
}


}

@media only screen and (max-width: 600px) {
/*===========================
onOff
===========================*/

.pcOFFspON {
	display:block;
}

.pcONspOFF {
	display:none;
}

.pcONtabletOFFspON {
	display:block;
}

.pcOFFtabletONspOFF {
	display:none;
}


.txtPCcenterSPLeft {
	text-align:left;
}


.txtPCLeftSPcenter  {
	text-align:center;
}

.contPad80p , .contPad70p , .contPad60p , .contPad50p , .contPad40p  , .contPad30p  , .contPad20p  {
	width:100%;
	box-sizing: border-box;
}



}

.hoverTrans a:hover {
    cursor:pointer;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"; 
    -moz-opacity:0.7; 
    -khtml-opacity: 0.7; 
    opacity:0.7;
    zoom:1;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.fs80p {
	font-size:80% !important;
}

.fs90p {
	font-size:90% !important;
}

.fs110p {
	font-size:110% !important;
}

.fs120p {
	font-size:120% !important;
	line-height:1.4em !important;
}

.fs130p {
	font-size:130% !important;
	line-height:1.4em !important;
}

.fs140p {
	font-size:140% !important;
	line-height:1.4em !important;
}

.fs140pM {
	font-size:140% !important;
	line-height:1.8em !important;
}

.fs150p {
	font-size:150% !important;
	line-height:1.4em !important;
}

.fs200p {
	font-size:200% !important;
	line-height:1.4em !important;
}


ul.liReseter  {
	line-height:1.8em;
	margin-left:15px;
}

ul.liReseter li {
	display:list-item;
	list-style-type: disc;
	list-style-position: outside;
	padding-left:-10px;
}

ol.liReseter {
	line-height:1.8em;
	margin-left:20px;
}

ol.liReseter li {
	display:list-item;
	list-style-type:decimal;
	list-style-position: outside;
	padding-left:-10px;
}

/*//////////////////////////
add for クライアント名
//////////////////////////*/

/* 共通 */

.w100{
	width: 100% !important;
	margin: 0 auto;
}
.w90{
	width: 90% !important;
	margin: 0 auto;
}
.w80{
	width: 80% !important;
	margin: 0 auto;
}
.w70{
	width: 70% !important;
	margin: 0 auto;
}
.w60{
	width: 60% !important;
	margin: 0 auto;
}
.w50{
	width: 50% !important;
	margin: 0 auto;
}
.w40{
	width: 40% !important;
	margin: 0 auto;
}
.w30{
	width: 30% !important;
	margin: 0 auto;
}
.w20{
	width: 20% !important;
	margin: 0 auto;
}
.w15{
	width: 15% !important;
	margin: 0 auto;
}
.w10{
	width: 10% !important;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
.w100, .w90, .w80, .w70, .w60, .w50, .w40, .w30{
	width: 100% !important;
}
.w20, .w15, .w10{
	width: 60% !important;
}
}
@media only screen and (min-width: 768px) {
a[href^="tel:"] {
	pointer-events: none;
	color: #333;
}
}
a:hover, a img:hover{
opacity: 0.7;
}
.logo a:hover, .logo a img:hover{
opacity: 1.0;
}
a[href^="tel:"] {
	text-decoration: none !important;	
}
ul.sns_list li{
	display:inline-block;
	margin-right: 5px;
}
ul.sns_list li img{
	width: 46px;
	height: auto;
}
h3.headding_extra,
h4.headding_extra{
	text-align: center;
	border: none;
}
h3.headding_extra span,
h4.headding_extra span{
	font-size: 18px;
	font-weight: normal !important;
  position: relative;
  line-height: 1.4;
  padding:0.25em 1em;
  display: inline-block;
  top:0;
	margin-bottom: 20px;
}
h3.headding_extra span::before,
h3.headding_extra span::after,
h4.headding_extra span::before,
h4.headding_extra span::after{ 
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
h3.headding_extra span::before,
h4.headding_extra span::before{
  border-left: solid 1px #666;
  border-top: solid 1px #666;
  border-bottom: solid 1px #666;
  left: 0;
}
h3.headding_extra span::after,
h4.headding_extra span::after{
  content: '';
  border-top: solid 1px #666;
  border-right: solid 1px #666;
  border-bottom: solid 1px #666;
  right: 0;
}
h3.headding_extra2,
h4.headding_extra2{
	text-align: center;	
	background-color: #B3A06F;
	color: #fff;
	font-weight: normal;
	padding: 0.5em;
	border-radius: 2px;
	border: none;
}
h5.headding_extra{	
}
.box_extra01{			/* single_line / no_bg */
	border: 1px solid #ccc;
	padding: 2em 3em;
}
.box_extra01_bg{	/* single_line / bg #fefefe */
	border: 1px solid #ccc;
	padding: 2em 3em;
	background-color: #fefefe;
}
.box_extra02{			/* double_line / no_bg */
}
.box_extra02_bg{	/* double_line / bg #[$] */
	border: 4px double #fff;
	padding: 2em 3em;
	background-color: #E5C85C;
	color: #fff;
}
.box_extra03{			/* bold_line / border-radius / no_bg */
}
.box_extra03_bg{	/* bold_line / border-radius / bg #[$] */
}
.tx-em {
	background: linear-gradient(transparent 62%, rgba(255, 250, 137, 0.71) 0%);
}
/* color */
.red {
	color:#bc2d2d !important;
}
.orange {
	color:#E26000 !important;	
}
.yellow {
	color:#E2CB00 !important;	
}
.green {
	color:#3b7a28 !important;
}
.brown {
	color:#a67435 !important;
}
.blue {
	color:#325f99 !important;
}
.white {
	color:#ffffff !important;
}
.black {
	color:#333333 !important;
}
.txtBold {
	font-weight: 900 !important;
}
.link_btn{
	display: inline-block;
	padding: 0.5em 1em;
	background-color: #B72F32;
	border-radius: 30px;
	color: #fff;
}
.link_btn2{
	display: inline-block;
	padding: 0.5em 1em;
	background-color: #579A43;
	border-radius: 30px;
	color: #fff;
}
table.price_table td{
	text-align: center;
}
a.link_pdf::after{
	content: " \f1c1";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
a.link_pdf{
	display: inline-block;
	padding: 0.5em 1em;
	background-color: #B72F32;
	border-radius: 30px;
	color: #fff;
	text-align: center;
	width: 100%;
}
.indent-1 {
	padding-left: 1em;
	text-indent: -1em;
	line-height: 1.5em;
}
.flex_contact_box{
	display: flex;
	justify-content: space-around;
}
.flex_contact_box .item_btn{
	width: 40%;
}
.flex_contact_box .item_btn a{
	display: block;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	background-color: #333;
	padding: 0.8em 1em 0.8em 1em;
	border-radius: 6px;
	text-align: center;
}
.flex_contact_box .item_btn a.ico_tel::before{
	content: "\f879";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;	
}
.flex_contact_box .item_btn a.ico_fax::before{
	content: "\f1ac";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;	
}
.flex_contact_box .item_btn a.ico_email::before{
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;	
}
@media screen and (max-width: 768px) {
.flex_contact_box{
	display: block;
}
.flex_contact_box .item_btn{
	width: 100%;
}
.flex_contact_box .item_btn a{
	padding: 0.8em 0em;
	margin-bottom: 10px;
}
}
ol.circle_num, ol.circle_alpha{
  counter-reset:number;
  list-style-type: none!important;
  padding:0.5em;
}
ol.circle_num li, ol.circle_alpha li{
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}
ol.circle_num li:before{
  content: counter(number);	
}
ol.circle_alpha li:before{
  content: counter(number, upper-alpha);
}
ol.circle_num li:before, ol.circle_alpha li:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  /*以下数字のデザイン変える*/
  display:inline-block;
  background: #333;
  color: white;
  font-family: 'Avenir','Arial Black','Arial',sans-serif;
  font-weight:bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 5px;
/*  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);*/
}
.ceo_name{
	font-size: 16px;
	font-family:"Noto Serif JP","ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}
.before, .after {
	position: relative;
	overflow: hidden;
}
.before::after {
	position: absolute;
	content: " ";
	display: inline-block;
	background: url("../img/common/watermark_before.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 26%;
	height: 26%;
	bottom: 1%;
	right: 3%;
	z-index: 1;
}
.after::after {
	position: absolute;
	content: " ";
	display: inline-block;
	background: url("../img/common/watermark_after.png");
	background-repeat: no-repeat;
	background-size: contain;
	width: 26%;
	height: 26%;
	bottom: 1%;
	right: 3%;
	z-index: 1;
}
a.scroll_point{
	display: block;
	height: 1px;
	margin-top: -95px;
	padding-top: 95px;
}
@media screen and (max-width: 768px) {
a.scroll_point{
	margin-top: -10px;
	padding-top: 10px;
}
}
ul.float_col2 li{
	float: left;
	width: 18em;
}
ul.float_col2_2 li{
	float: left;
	width: 21em;
	margin-right: 3em;
}
ul.float_col2_3{
	margin-left: 50px;
}
ul.float_col2_3 li{
	display: inline-block;
	margin-right: 2em;
}
@media screen and (max-width: 768px) {
ul.float_col2 li,
ul.float_col2_2 li{
	float: none;
}
ul.float_col2_3{
	margin-left: 0;
}
ul.float_col2_3 li{
	display: block;
}
}
/*tableをスクロールさせる*/
/* 	.scroll=スクロール用テーブル  */
/* 	.fix_table=スクロールしない  */
.fix_table table th,
.scroll table th {
	text-align:center;
	vertical-align:middle;
}
/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar {
 height: 5px;
}
/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar-track {
 border-radius: 5px;
 background: #F1F1F1;
}
/*tableにスクロールバーを追加*/
.scroll::-webkit-scrollbar-thumb {
 border-radius: 5px;
 background: #BCBCBC;
}

@media screen and (max-width: 768px) {
/*tableのセル内にある文字の折り返しを禁止*/
.fix_table, 
.scroll {
	overflow: auto;
	white-space: nowrap;
	width:100% !important;
	box-sizing: border-box;
}
/*table右に線*/
.scroll {
	border-right: 2px solid #4f4d47;
	overflow-x: scroll;
}
/*tableにスクロールバーを追加*/
.scroll table {
	overflow:scroll;
}
.fix_table table th, 
.scroll table th {
	width:auto;
	display:table-cell;
	vertical-align:middle;
	border: 1px #ccc solid;
	box-sizing: border-box;
}
.fix_table table td,
.scroll table td {
	width:auto;
	display:table-cell;
	border: 1px #ccc solid;
}
}

/*// リスト //*/

/* 共通 */
.li_disc,.li_num,.li_check,.li_circle{
	margin-left: 20px;
}
/* ディスク */
.li_disc li{
	list-style-type: disc !important;
}
/* 数字 */
.li_num li{
	list-style-type: decimal!important;
}
/* チェックマーク */
.li_check li::before{
	content: "\f14a";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	padding-right: 0.5em;
}
.li_check li{
	text-indent: -1.4em;
}
/* 黒丸 */
.li_circle li::before{
	content: "\f111";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;	
	padding-right: 0.5em;
}
.li_circle li{
	text-indent: -1.4em;
}
/* 下線（破線） */
.li_underline li{
	border-bottom: 1px dashed #333;
	margin-bottom: 1.0em;
}
/* 複数カラム */
.li_col2,.li_col3,.li_col3-2,.li_col4{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
.li_col2 li{
	width: calc(50% - 4em);
	margin-right: 4em;
}
.li_col3 li,.li_col3-2 li{
	width: calc(33% - 3em);
	margin-right: 3em;
}
.li_col4 li{
	width: calc(25% - 4em);
	margin-right: 4em;
}
@media screen and (max-width: 768px) {
.li_disc,.li_num,.li_check,.li_circle{
	margin-left: 18px;
}
.li_col2,.li_col3,.li_col4{
	display: block;
}
.li_col2 li,.li_col3 li,.li_col4 li{
	width: 100%;
	margin-right: 0;
}
.li_col3-2 li{
	width: calc(50% - 2em);
	margin-right: 2em;
}
}

/*///////////////////////////////////////////////
写真を隙間なく交互に配置
///////////////////////////////////////////////*/
.content_full {
	width: 100% !important;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0;
	padding-right: 0;
	padding-top: 25px;
}
.content_full h2 {
	width: 1200px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;

	font-size: 2.6rem;
	margin-bottom: 1.6em;
}
.content_full h3 {/* 要調整 */
	font-size: 1.4rem;
	line-height: 1.3em;
	text-align: center;
	margin-bottom: 5rem;
	position: relative;
}
.content_full h3::after {/* 要調整 */
	position: absolute;
	bottom: -16px;
	left: 50%;
	z-index: 1;
	content: '';
	display: block;
	height: 3px;
	background: #dcdcdc;
	width: 120px;
	margin-left: -60px;
}
/* h3左寄せ */
.content_full h3.tx-left {/* 要調整 */
	text-align: left;
}

.flex_box{
	display: flex;
	justify-content: space-between;
}
.flex_box.row_reverse{
	flex-flow: row-reverse wrap;
}
.item{
	width: 50%;
	min-height: 16em;/* 要調整 */
}
.txt_area{
	background-color: #ebf3f3;
  padding: 80px 0;
}
.txt_box{
	width: 70%;
	margin: 0 auto;
}
.photo_area{
	background-position: 50% 50%;
	background-size: cover;
}
.photo01{
	background-image:url("../img/content/5.jpg");
}
.photo02{
	background-image:url("../img/content/6.jpg");
}
.photo03{
	background-image:url("../img/content/7.jpg");
}
@media screen and (max-width: 768px) {
.content_full {
	width: 100%;
}
.content_full h2 {/* 要調整 */
	width: 85%;
	font-size: 1.8rem;
}
.flex_box{
	flex-flow: column wrap;
}
.item{
	width: 100%;
}
.txt_area{
	padding: 40px 0;
}
.txt_box{
	width: 85%;
}
.photo_area{
	min-height: 50vh;
}
}


/*// 追加 //*/

@media screen and (max-width: 768px) {
.footLogo img{
	width: 70%;
}
}



